From 783d79e5caeaf5fd79eddef294044ed1a726ec6f Mon Sep 17 00:00:00 2001 From: nohehf Date: Tue, 11 Jun 2024 14:35:24 +0200 Subject: [PATCH] fix: decorators of call expressions can have type arguments --- common/define-grammar.js | 9 + test/corpus/declarations.txt | 27 + tsx/src/grammar.json | 27 +- tsx/src/parser.c | 490093 ++++++++++++++++---------------- typescript/src/grammar.json | 27 +- typescript/src/parser.c | 473776 +++++++++++++++--------------- 6 files changed, 482186 insertions(+), 481773 deletions(-) diff --git a/common/define-grammar.js b/common/define-grammar.js index d5cb7b3e..d12422cf 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -379,6 +379,15 @@ module.exports = function defineGrammar(dialect) { choice($._semicolon, $._function_signature_automatic_semicolon), ), + decorator_call_expression: $ => prec('call', seq( + field('function', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + optional(field('type_arguments', $.type_arguments)), + field('arguments', $.arguments), + )), + class_body: ($) => seq( '{', repeat(choice( diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 2747f8aa..02273fb3 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -922,6 +922,33 @@ class Foo { (string (string_fragment)))))) +=========================================================== +Classes with decorator calls that have type arguments +=========================================================== + +class Foo { + @bar() + method() { + } +} + +--- + +(program + (class_declaration + (type_identifier) + (class_body + (decorator + (call_expression + (identifier) + (type_arguments + (type_identifier)) + (arguments))) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block))))) + ======================================= Classes with decorators ======================================= diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index b9b66bde..0facfe7f 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -1,15 +1,6 @@ { - "0": "j", - "1": "a", - "2": "v", - "3": "a", - "4": "s", - "5": "c", - "6": "r", - "7": "i", - "8": "p", - "9": "t", "name": "tsx", + "inherits": "javascript", "word": "identifier", "rules": { "program": { @@ -6549,6 +6540,22 @@ ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "arguments", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 1bf0f14e..34f7e8d9 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -13,7 +13,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7480 +#define STATE_COUNT 7486 #define LARGE_STATE_COUNT 1852 #define SYMBOL_COUNT 400 #define ALIAS_COUNT 7 @@ -4670,125 +4670,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 14, + [17] = 12, [18] = 18, [19] = 18, - [20] = 20, - [21] = 18, - [22] = 22, - [23] = 22, + [20] = 18, + [21] = 21, + [22] = 18, + [23] = 21, [24] = 18, [25] = 18, - [26] = 22, - [27] = 22, - [28] = 18, - [29] = 18, - [30] = 22, - [31] = 22, - [32] = 22, - [33] = 18, - [34] = 22, - [35] = 22, - [36] = 18, - [37] = 18, - [38] = 22, - [39] = 22, - [40] = 18, + [26] = 18, + [27] = 18, + [28] = 21, + [29] = 21, + [30] = 18, + [31] = 21, + [32] = 18, + [33] = 21, + [34] = 21, + [35] = 18, + [36] = 36, + [37] = 21, + [38] = 18, + [39] = 21, + [40] = 21, [41] = 18, - [42] = 18, + [42] = 21, [43] = 18, - [44] = 18, - [45] = 22, - [46] = 22, - [47] = 22, - [48] = 18, + [44] = 21, + [45] = 18, + [46] = 21, + [47] = 18, + [48] = 21, [49] = 18, - [50] = 22, - [51] = 22, + [50] = 18, + [51] = 21, [52] = 18, - [53] = 18, - [54] = 22, + [53] = 53, + [54] = 21, [55] = 18, - [56] = 18, - [57] = 22, - [58] = 22, - [59] = 18, - [60] = 18, - [61] = 22, - [62] = 22, - [63] = 22, - [64] = 22, - [65] = 22, + [56] = 21, + [57] = 18, + [58] = 58, + [59] = 21, + [60] = 21, + [61] = 21, + [62] = 18, + [63] = 21, + [64] = 21, + [65] = 18, [66] = 18, - [67] = 22, - [68] = 18, - [69] = 18, - [70] = 70, - [71] = 22, - [72] = 72, + [67] = 18, + [68] = 21, + [69] = 21, + [70] = 18, + [71] = 21, + [72] = 21, [73] = 73, - [74] = 74, + [74] = 73, [75] = 75, - [76] = 73, + [76] = 76, [77] = 77, [78] = 78, - [79] = 78, + [79] = 79, [80] = 80, [81] = 81, - [82] = 82, - [83] = 82, - [84] = 81, - [85] = 82, + [82] = 75, + [83] = 83, + [84] = 79, + [85] = 83, [86] = 78, - [87] = 80, - [88] = 74, - [89] = 82, - [90] = 81, - [91] = 91, - [92] = 75, - [93] = 82, - [94] = 94, - [95] = 73, + [87] = 77, + [88] = 73, + [89] = 89, + [90] = 76, + [91] = 83, + [92] = 78, + [93] = 73, + [94] = 73, + [95] = 76, [96] = 77, - [97] = 75, - [98] = 91, + [97] = 83, + [98] = 75, [99] = 80, - [100] = 73, - [101] = 77, - [102] = 91, - [103] = 94, - [104] = 94, - [105] = 81, - [106] = 74, - [107] = 78, - [108] = 80, - [109] = 77, - [110] = 73, + [100] = 78, + [101] = 89, + [102] = 75, + [103] = 80, + [104] = 81, + [105] = 80, + [106] = 80, + [107] = 81, + [108] = 89, + [109] = 79, + [110] = 77, [111] = 81, - [112] = 78, - [113] = 77, - [114] = 94, - [115] = 80, - [116] = 74, - [117] = 91, - [118] = 94, - [119] = 75, - [120] = 74, - [121] = 91, - [122] = 75, + [112] = 79, + [113] = 76, + [114] = 89, + [115] = 78, + [116] = 81, + [117] = 79, + [118] = 76, + [119] = 77, + [120] = 83, + [121] = 75, + [122] = 89, [123] = 123, - [124] = 124, - [125] = 124, - [126] = 124, - [127] = 123, + [124] = 123, + [125] = 123, + [126] = 123, + [127] = 127, [128] = 123, - [129] = 124, - [130] = 124, - [131] = 124, - [132] = 124, - [133] = 124, - [134] = 124, - [135] = 124, + [129] = 123, + [130] = 123, + [131] = 127, + [132] = 123, + [133] = 123, + [134] = 123, + [135] = 127, [136] = 136, [137] = 137, [138] = 138, @@ -4799,68 +4799,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [143] = 139, [144] = 144, [145] = 145, - [146] = 145, + [146] = 144, [147] = 147, - [148] = 147, + [148] = 148, [149] = 149, - [150] = 147, + [150] = 149, [151] = 151, - [152] = 152, - [153] = 151, - [154] = 154, - [155] = 149, - [156] = 156, - [157] = 151, - [158] = 154, - [159] = 152, - [160] = 151, - [161] = 156, - [162] = 151, - [163] = 151, - [164] = 156, - [165] = 154, - [166] = 154, - [167] = 152, - [168] = 156, - [169] = 156, - [170] = 154, + [152] = 147, + [153] = 149, + [154] = 147, + [155] = 155, + [156] = 148, + [157] = 157, + [158] = 148, + [159] = 155, + [160] = 147, + [161] = 155, + [162] = 157, + [163] = 157, + [164] = 151, + [165] = 155, + [166] = 147, + [167] = 147, + [168] = 157, + [169] = 157, + [170] = 155, [171] = 171, - [172] = 144, + [172] = 172, [173] = 173, - [174] = 174, - [175] = 151, - [176] = 149, - [177] = 152, - [178] = 151, - [179] = 151, - [180] = 145, + [174] = 145, + [175] = 144, + [176] = 176, + [177] = 147, + [178] = 147, + [179] = 147, + [180] = 147, [181] = 151, - [182] = 152, - [183] = 183, - [184] = 151, + [182] = 148, + [183] = 148, + [184] = 147, [185] = 185, - [186] = 151, - [187] = 152, + [186] = 148, + [187] = 147, [188] = 171, - [189] = 151, - [190] = 151, - [191] = 151, - [192] = 152, - [193] = 174, - [194] = 151, - [195] = 152, + [189] = 148, + [190] = 147, + [191] = 147, + [192] = 147, + [193] = 147, + [194] = 148, + [195] = 173, [196] = 196, [197] = 196, - [198] = 198, + [198] = 147, [199] = 196, - [200] = 151, + [200] = 148, [201] = 196, [202] = 196, [203] = 196, - [204] = 196, + [204] = 204, [205] = 196, [206] = 196, - [207] = 152, + [207] = 196, [208] = 208, [209] = 208, [210] = 208, @@ -4884,54 +4884,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [228] = 220, [229] = 229, [230] = 229, - [231] = 231, - [232] = 229, - [233] = 231, - [234] = 231, - [235] = 231, - [236] = 229, - [237] = 231, - [238] = 229, - [239] = 231, + [231] = 229, + [232] = 232, + [233] = 229, + [234] = 232, + [235] = 229, + [236] = 232, + [237] = 232, + [238] = 232, + [239] = 232, [240] = 229, [241] = 241, [242] = 241, [243] = 241, [244] = 244, [245] = 245, - [246] = 244, - [247] = 247, + [246] = 246, + [247] = 246, [248] = 241, - [249] = 244, - [250] = 247, + [249] = 241, + [250] = 245, [251] = 241, - [252] = 241, + [252] = 245, [253] = 253, [254] = 254, - [255] = 241, - [256] = 253, - [257] = 253, - [258] = 258, + [255] = 253, + [256] = 256, + [257] = 244, + [258] = 253, [259] = 254, - [260] = 245, - [261] = 258, - [262] = 254, - [263] = 241, - [264] = 258, - [265] = 265, + [260] = 254, + [261] = 256, + [262] = 241, + [263] = 256, + [264] = 241, + [265] = 241, [266] = 266, - [267] = 265, - [268] = 265, - [269] = 265, - [270] = 270, - [271] = 265, - [272] = 265, - [273] = 273, - [274] = 265, - [275] = 241, + [267] = 266, + [268] = 268, + [269] = 266, + [270] = 266, + [271] = 266, + [272] = 272, + [273] = 266, + [274] = 274, + [275] = 266, [276] = 276, [277] = 277, - [278] = 266, + [278] = 272, [279] = 276, [280] = 276, [281] = 276, @@ -4939,10 +4939,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [283] = 283, [284] = 284, [285] = 285, - [286] = 286, - [287] = 283, - [288] = 266, - [289] = 286, + [286] = 285, + [287] = 287, + [288] = 272, + [289] = 283, [290] = 290, [291] = 291, [292] = 292, @@ -4950,516 +4950,516 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [294] = 294, [295] = 295, [296] = 296, - [297] = 293, - [298] = 291, - [299] = 294, - [300] = 295, - [301] = 266, - [302] = 295, - [303] = 303, - [304] = 266, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 291, + [302] = 272, + [303] = 272, + [304] = 304, [305] = 305, - [306] = 295, - [307] = 291, - [308] = 293, - [309] = 292, - [310] = 310, - [311] = 311, + [306] = 306, + [307] = 272, + [308] = 292, + [309] = 293, + [310] = 272, + [311] = 294, [312] = 312, - [313] = 266, + [313] = 305, [314] = 314, [315] = 315, - [316] = 316, - [317] = 295, - [318] = 266, - [319] = 319, + [316] = 272, + [317] = 317, + [318] = 318, + [319] = 272, [320] = 320, [321] = 321, - [322] = 294, - [323] = 295, - [324] = 324, + [322] = 322, + [323] = 291, + [324] = 294, [325] = 325, - [326] = 266, + [326] = 326, [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, + [328] = 305, + [329] = 272, + [330] = 305, [331] = 331, - [332] = 332, + [332] = 305, [333] = 333, - [334] = 266, + [334] = 334, [335] = 335, - [336] = 266, + [336] = 336, [337] = 337, [338] = 338, - [339] = 339, - [340] = 340, - [341] = 295, - [342] = 342, - [343] = 292, - [344] = 337, + [339] = 305, + [340] = 293, + [341] = 305, + [342] = 292, + [343] = 343, + [344] = 315, [345] = 345, - [346] = 331, - [347] = 333, - [348] = 335, - [349] = 349, - [350] = 339, - [351] = 303, - [352] = 327, - [353] = 311, - [354] = 312, - [355] = 345, - [356] = 303, - [357] = 324, - [358] = 342, - [359] = 359, - [360] = 312, - [361] = 310, - [362] = 305, - [363] = 314, - [364] = 338, - [365] = 345, - [366] = 324, - [367] = 367, - [368] = 332, - [369] = 359, - [370] = 345, - [371] = 292, - [372] = 293, - [373] = 291, - [374] = 339, - [375] = 296, - [376] = 311, + [346] = 334, + [347] = 347, + [348] = 331, + [349] = 345, + [350] = 304, + [351] = 325, + [352] = 338, + [353] = 325, + [354] = 345, + [355] = 320, + [356] = 295, + [357] = 322, + [358] = 318, + [359] = 345, + [360] = 294, + [361] = 293, + [362] = 347, + [363] = 336, + [364] = 300, + [365] = 315, + [366] = 292, + [367] = 326, + [368] = 368, + [369] = 299, + [370] = 291, + [371] = 336, + [372] = 321, + [373] = 321, + [374] = 345, + [375] = 345, + [376] = 334, [377] = 345, - [378] = 294, - [379] = 345, - [380] = 345, - [381] = 310, - [382] = 332, - [383] = 337, - [384] = 319, - [385] = 321, - [386] = 340, - [387] = 330, - [388] = 345, - [389] = 342, - [390] = 345, - [391] = 327, - [392] = 359, - [393] = 328, - [394] = 305, - [395] = 338, - [396] = 359, - [397] = 315, - [398] = 321, - [399] = 399, - [400] = 345, - [401] = 340, - [402] = 345, + [378] = 345, + [379] = 379, + [380] = 322, + [381] = 343, + [382] = 345, + [383] = 320, + [384] = 327, + [385] = 314, + [386] = 306, + [387] = 312, + [388] = 331, + [389] = 296, + [390] = 327, + [391] = 347, + [392] = 343, + [393] = 345, + [394] = 337, + [395] = 333, + [396] = 314, + [397] = 337, + [398] = 398, + [399] = 298, + [400] = 326, + [401] = 312, + [402] = 338, [403] = 345, - [404] = 359, - [405] = 331, - [406] = 296, + [404] = 304, + [405] = 306, + [406] = 333, [407] = 407, - [408] = 319, - [409] = 320, - [410] = 335, - [411] = 407, - [412] = 333, - [413] = 315, - [414] = 345, - [415] = 329, - [416] = 314, - [417] = 328, + [408] = 398, + [409] = 298, + [410] = 295, + [411] = 318, + [412] = 300, + [413] = 345, + [414] = 296, + [415] = 347, + [416] = 297, + [417] = 299, [418] = 418, - [419] = 330, - [420] = 329, - [421] = 345, - [422] = 320, - [423] = 423, - [424] = 339, - [425] = 329, - [426] = 426, - [427] = 427, - [428] = 337, - [429] = 315, - [430] = 342, - [431] = 305, - [432] = 423, - [433] = 433, - [434] = 314, - [435] = 328, - [436] = 436, - [437] = 330, - [438] = 312, - [439] = 335, - [440] = 333, - [441] = 324, - [442] = 331, - [443] = 427, - [444] = 320, - [445] = 423, - [446] = 426, - [447] = 423, - [448] = 303, - [449] = 340, - [450] = 338, - [451] = 296, - [452] = 321, - [453] = 319, - [454] = 327, - [455] = 455, - [456] = 310, - [457] = 457, - [458] = 311, - [459] = 423, - [460] = 332, + [419] = 345, + [420] = 347, + [421] = 297, + [422] = 345, + [423] = 337, + [424] = 334, + [425] = 425, + [426] = 300, + [427] = 314, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 331, + [433] = 431, + [434] = 312, + [435] = 299, + [436] = 298, + [437] = 297, + [438] = 425, + [439] = 430, + [440] = 296, + [441] = 295, + [442] = 442, + [443] = 325, + [444] = 315, + [445] = 318, + [446] = 431, + [447] = 333, + [448] = 448, + [449] = 304, + [450] = 322, + [451] = 431, + [452] = 343, + [453] = 321, + [454] = 336, + [455] = 320, + [456] = 306, + [457] = 326, + [458] = 338, + [459] = 431, + [460] = 327, [461] = 461, [462] = 462, - [463] = 462, - [464] = 462, - [465] = 462, - [466] = 462, + [463] = 461, + [464] = 461, + [465] = 461, + [466] = 461, [467] = 467, [468] = 468, [469] = 469, [470] = 470, [471] = 471, - [472] = 467, - [473] = 470, + [472] = 472, + [473] = 473, [474] = 474, - [475] = 470, - [476] = 476, + [475] = 473, + [476] = 467, [477] = 470, - [478] = 478, - [479] = 479, - [480] = 471, - [481] = 468, - [482] = 474, - [483] = 468, + [478] = 471, + [479] = 473, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 471, [484] = 484, - [485] = 469, - [486] = 469, - [487] = 474, - [488] = 468, - [489] = 489, - [490] = 479, - [491] = 476, + [485] = 481, + [486] = 473, + [487] = 473, + [488] = 481, + [489] = 471, + [490] = 470, + [491] = 470, [492] = 492, - [493] = 467, - [494] = 468, - [495] = 495, - [496] = 470, - [497] = 497, - [498] = 469, + [493] = 493, + [494] = 494, + [495] = 481, + [496] = 468, + [497] = 471, + [498] = 470, [499] = 470, - [500] = 471, - [501] = 470, - [502] = 502, - [503] = 471, - [504] = 474, - [505] = 470, - [506] = 474, - [507] = 479, - [508] = 476, - [509] = 509, - [510] = 467, - [511] = 476, - [512] = 479, - [513] = 467, - [514] = 476, - [515] = 479, - [516] = 479, - [517] = 471, - [518] = 476, - [519] = 467, - [520] = 474, - [521] = 468, - [522] = 467, - [523] = 469, - [524] = 524, - [525] = 525, - [526] = 476, - [527] = 479, - [528] = 468, + [500] = 500, + [501] = 481, + [502] = 471, + [503] = 480, + [504] = 468, + [505] = 474, + [506] = 480, + [507] = 468, + [508] = 481, + [509] = 468, + [510] = 482, + [511] = 473, + [512] = 480, + [513] = 474, + [514] = 514, + [515] = 515, + [516] = 474, + [517] = 517, + [518] = 469, + [519] = 474, + [520] = 470, + [521] = 471, + [522] = 481, + [523] = 473, + [524] = 468, + [525] = 468, + [526] = 469, + [527] = 481, + [528] = 480, [529] = 469, - [530] = 469, - [531] = 469, - [532] = 478, - [533] = 469, - [534] = 468, - [535] = 484, - [536] = 536, - [537] = 537, - [538] = 470, - [539] = 539, - [540] = 540, - [541] = 479, - [542] = 467, - [543] = 476, - [544] = 544, - [545] = 476, - [546] = 479, - [547] = 467, - [548] = 468, - [549] = 474, + [530] = 530, + [531] = 481, + [532] = 474, + [533] = 533, + [534] = 470, + [535] = 473, + [536] = 471, + [537] = 480, + [538] = 469, + [539] = 480, + [540] = 480, + [541] = 480, + [542] = 542, + [543] = 474, + [544] = 468, + [545] = 545, + [546] = 468, + [547] = 473, + [548] = 471, + [549] = 470, [550] = 550, [551] = 551, [552] = 552, - [553] = 551, + [553] = 553, [554] = 554, [555] = 555, - [556] = 552, - [557] = 550, + [556] = 553, + [557] = 557, [558] = 558, [559] = 559, [560] = 560, [561] = 561, - [562] = 562, + [562] = 553, [563] = 563, [564] = 564, [565] = 565, - [566] = 559, - [567] = 558, + [566] = 558, + [567] = 550, [568] = 568, - [569] = 561, - [570] = 555, + [569] = 569, + [570] = 553, [571] = 571, [572] = 572, [573] = 573, - [574] = 574, + [574] = 551, [575] = 575, [576] = 576, - [577] = 577, + [577] = 559, [578] = 578, - [579] = 579, - [580] = 580, + [579] = 552, + [580] = 571, [581] = 581, - [582] = 563, - [583] = 579, - [584] = 577, + [582] = 582, + [583] = 583, + [584] = 584, [585] = 585, - [586] = 577, - [587] = 573, - [588] = 579, - [589] = 578, - [590] = 563, - [591] = 591, - [592] = 575, - [593] = 572, - [594] = 560, - [595] = 581, - [596] = 596, - [597] = 597, - [598] = 561, - [599] = 580, - [600] = 558, - [601] = 559, - [602] = 578, - [603] = 575, - [604] = 585, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 560, - [609] = 568, - [610] = 577, - [611] = 611, - [612] = 612, - [613] = 560, - [614] = 605, - [615] = 606, - [616] = 563, - [617] = 581, - [618] = 563, - [619] = 597, - [620] = 561, - [621] = 580, - [622] = 555, - [623] = 568, - [624] = 564, - [625] = 585, - [626] = 564, - [627] = 573, - [628] = 605, - [629] = 551, - [630] = 551, - [631] = 579, - [632] = 579, - [633] = 585, - [634] = 606, - [635] = 552, - [636] = 563, - [637] = 606, - [638] = 596, - [639] = 605, - [640] = 564, - [641] = 563, - [642] = 551, - [643] = 579, - [644] = 564, - [645] = 555, - [646] = 559, - [647] = 551, - [648] = 558, - [649] = 562, - [650] = 572, - [651] = 578, - [652] = 565, - [653] = 563, - [654] = 575, - [655] = 575, - [656] = 578, - [657] = 551, - [658] = 581, - [659] = 562, - [660] = 607, - [661] = 573, - [662] = 564, - [663] = 572, - [664] = 579, - [665] = 550, - [666] = 606, - [667] = 560, - [668] = 573, - [669] = 577, - [670] = 606, - [671] = 671, - [672] = 605, - [673] = 579, - [674] = 596, - [675] = 605, - [676] = 581, - [677] = 580, - [678] = 568, - [679] = 552, - [680] = 550, - [681] = 561, - [682] = 580, - [683] = 568, - [684] = 552, - [685] = 550, - [686] = 574, - [687] = 597, - [688] = 585, - [689] = 562, - [690] = 690, - [691] = 565, - [692] = 560, - [693] = 563, - [694] = 573, - [695] = 564, - [696] = 574, - [697] = 558, - [698] = 585, - [699] = 565, - [700] = 559, - [701] = 573, - [702] = 551, - [703] = 562, - [704] = 550, - [705] = 562, - [706] = 563, - [707] = 555, - [708] = 561, - [709] = 574, - [710] = 562, - [711] = 550, - [712] = 612, - [713] = 552, - [714] = 568, - [715] = 580, - [716] = 560, - [717] = 581, - [718] = 564, - [719] = 572, - [720] = 577, - [721] = 578, - [722] = 575, - [723] = 572, - [724] = 597, - [725] = 555, - [726] = 558, - [727] = 559, - [728] = 559, - [729] = 565, - [730] = 558, - [731] = 561, - [732] = 561, - [733] = 572, - [734] = 579, - [735] = 735, + [586] = 586, + [587] = 564, + [588] = 571, + [589] = 555, + [590] = 590, + [591] = 555, + [592] = 572, + [593] = 558, + [594] = 553, + [595] = 582, + [596] = 558, + [597] = 581, + [598] = 550, + [599] = 569, + [600] = 582, + [601] = 586, + [602] = 585, + [603] = 584, + [604] = 581, + [605] = 583, + [606] = 578, + [607] = 582, + [608] = 608, + [609] = 576, + [610] = 581, + [611] = 575, + [612] = 551, + [613] = 573, + [614] = 582, + [615] = 581, + [616] = 568, + [617] = 617, + [618] = 564, + [619] = 569, + [620] = 586, + [621] = 617, + [622] = 585, + [623] = 584, + [624] = 569, + [625] = 625, + [626] = 572, + [627] = 569, + [628] = 554, + [629] = 583, + [630] = 578, + [631] = 561, + [632] = 576, + [633] = 559, + [634] = 565, + [635] = 635, + [636] = 552, + [637] = 575, + [638] = 551, + [639] = 573, + [640] = 550, + [641] = 568, + [642] = 568, + [643] = 550, + [644] = 573, + [645] = 575, + [646] = 646, + [647] = 553, + [648] = 565, + [649] = 576, + [650] = 561, + [651] = 557, + [652] = 578, + [653] = 553, + [654] = 555, + [655] = 554, + [656] = 583, + [657] = 584, + [658] = 585, + [659] = 586, + [660] = 564, + [661] = 608, + [662] = 572, + [663] = 558, + [664] = 617, + [665] = 569, + [666] = 581, + [667] = 559, + [668] = 552, + [669] = 552, + [670] = 582, + [671] = 559, + [672] = 572, + [673] = 564, + [674] = 586, + [675] = 585, + [676] = 676, + [677] = 557, + [678] = 571, + [679] = 571, + [680] = 617, + [681] = 584, + [682] = 583, + [683] = 578, + [684] = 576, + [685] = 569, + [686] = 575, + [687] = 551, + [688] = 573, + [689] = 568, + [690] = 550, + [691] = 691, + [692] = 565, + [693] = 561, + [694] = 569, + [695] = 554, + [696] = 617, + [697] = 554, + [698] = 617, + [699] = 564, + [700] = 586, + [701] = 585, + [702] = 569, + [703] = 584, + [704] = 583, + [705] = 578, + [706] = 576, + [707] = 553, + [708] = 572, + [709] = 575, + [710] = 582, + [711] = 551, + [712] = 581, + [713] = 573, + [714] = 558, + [715] = 568, + [716] = 569, + [717] = 717, + [718] = 550, + [719] = 554, + [720] = 558, + [721] = 581, + [722] = 582, + [723] = 565, + [724] = 561, + [725] = 554, + [726] = 561, + [727] = 565, + [728] = 561, + [729] = 729, + [730] = 557, + [731] = 565, + [732] = 550, + [733] = 568, + [734] = 573, + [735] = 551, [736] = 555, - [737] = 560, - [738] = 575, - [739] = 597, - [740] = 563, - [741] = 585, - [742] = 574, - [743] = 555, - [744] = 606, - [745] = 605, - [746] = 746, - [747] = 606, - [748] = 605, - [749] = 560, - [750] = 559, - [751] = 574, - [752] = 574, - [753] = 555, - [754] = 578, - [755] = 559, - [756] = 558, - [757] = 572, - [758] = 575, - [759] = 578, - [760] = 565, - [761] = 577, - [762] = 581, - [763] = 580, - [764] = 568, - [765] = 552, - [766] = 574, - [767] = 558, - [768] = 572, - [769] = 573, - [770] = 550, - [771] = 562, - [772] = 577, - [773] = 562, - [774] = 564, - [775] = 551, - [776] = 561, - [777] = 575, - [778] = 550, - [779] = 565, - [780] = 552, - [781] = 585, - [782] = 782, + [737] = 575, + [738] = 553, + [739] = 576, + [740] = 572, + [741] = 578, + [742] = 583, + [743] = 564, + [744] = 584, + [745] = 569, + [746] = 585, + [747] = 565, + [748] = 586, + [749] = 749, + [750] = 552, + [751] = 559, + [752] = 586, + [753] = 585, + [754] = 564, + [755] = 561, + [756] = 571, + [757] = 569, + [758] = 558, + [759] = 617, + [760] = 646, + [761] = 568, + [762] = 558, + [763] = 763, + [764] = 584, + [765] = 573, + [766] = 590, + [767] = 583, + [768] = 578, + [769] = 582, + [770] = 552, + [771] = 581, + [772] = 551, + [773] = 575, + [774] = 576, + [775] = 576, + [776] = 569, + [777] = 578, + [778] = 575, + [779] = 559, + [780] = 583, + [781] = 584, + [782] = 572, [783] = 783, - [784] = 596, - [785] = 568, - [786] = 565, - [787] = 578, - [788] = 581, - [789] = 580, - [790] = 563, - [791] = 574, - [792] = 565, - [793] = 793, - [794] = 563, - [795] = 568, - [796] = 571, - [797] = 573, - [798] = 552, - [799] = 580, - [800] = 581, - [801] = 577, - [802] = 563, - [803] = 606, - [804] = 605, - [805] = 805, - [806] = 585, + [784] = 784, + [785] = 551, + [786] = 571, + [787] = 573, + [788] = 585, + [789] = 568, + [790] = 586, + [791] = 571, + [792] = 550, + [793] = 617, + [794] = 565, + [795] = 552, + [796] = 617, + [797] = 559, + [798] = 561, + [799] = 569, + [800] = 554, + [801] = 571, + [802] = 564, + [803] = 554, + [804] = 559, + [805] = 552, + [806] = 572, [807] = 807, [808] = 807, [809] = 807, @@ -5478,10 +5478,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [822] = 821, [823] = 821, [824] = 824, - [825] = 825, - [826] = 825, - [827] = 824, - [828] = 825, + [825] = 824, + [826] = 826, + [827] = 826, + [828] = 826, [829] = 824, [830] = 830, [831] = 830, @@ -5489,837 +5489,837 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [833] = 830, [834] = 830, [835] = 835, - [836] = 836, + [836] = 835, [837] = 837, - [838] = 837, + [838] = 835, [839] = 837, - [840] = 836, + [840] = 840, [841] = 837, - [842] = 837, + [842] = 835, [843] = 835, - [844] = 836, - [845] = 835, - [846] = 837, + [844] = 835, + [845] = 840, + [846] = 840, [847] = 847, - [848] = 848, - [849] = 848, + [848] = 847, + [849] = 849, [850] = 850, [851] = 850, - [852] = 852, - [853] = 850, - [854] = 854, - [855] = 850, - [856] = 852, - [857] = 852, - [858] = 852, - [859] = 847, - [860] = 852, + [852] = 850, + [853] = 853, + [854] = 853, + [855] = 853, + [856] = 856, + [857] = 850, + [858] = 853, + [859] = 849, + [860] = 850, [861] = 850, - [862] = 850, - [863] = 850, - [864] = 864, + [862] = 853, + [863] = 863, + [864] = 850, [865] = 850, - [866] = 848, - [867] = 867, + [866] = 866, + [867] = 866, [868] = 868, - [869] = 850, + [869] = 847, [870] = 850, - [871] = 868, - [872] = 850, - [873] = 868, - [874] = 868, - [875] = 850, - [876] = 868, - [877] = 877, - [878] = 878, - [879] = 868, + [871] = 866, + [872] = 872, + [873] = 866, + [874] = 850, + [875] = 866, + [876] = 876, + [877] = 850, + [878] = 850, + [879] = 866, [880] = 850, - [881] = 867, - [882] = 847, - [883] = 867, - [884] = 850, + [881] = 850, + [882] = 850, + [883] = 314, + [884] = 876, [885] = 850, - [886] = 305, - [887] = 338, - [888] = 850, - [889] = 854, - [890] = 890, - [891] = 293, - [892] = 890, - [893] = 305, - [894] = 867, - [895] = 890, - [896] = 896, - [897] = 890, - [898] = 890, - [899] = 890, - [900] = 850, - [901] = 338, - [902] = 305, - [903] = 338, - [904] = 331, - [905] = 338, - [906] = 342, - [907] = 305, - [908] = 890, - [909] = 292, - [910] = 890, - [911] = 890, - [912] = 291, - [913] = 338, - [914] = 914, - [915] = 305, - [916] = 342, + [886] = 304, + [887] = 849, + [888] = 876, + [889] = 856, + [890] = 294, + [891] = 891, + [892] = 892, + [893] = 876, + [894] = 304, + [895] = 892, + [896] = 892, + [897] = 314, + [898] = 304, + [899] = 892, + [900] = 314, + [901] = 293, + [902] = 892, + [903] = 892, + [904] = 314, + [905] = 892, + [906] = 304, + [907] = 892, + [908] = 300, + [909] = 892, + [910] = 850, + [911] = 299, + [912] = 912, + [913] = 913, + [914] = 314, + [915] = 915, + [916] = 300, [917] = 917, - [918] = 331, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 305, - [924] = 924, - [925] = 338, + [918] = 918, + [919] = 292, + [920] = 299, + [921] = 293, + [922] = 294, + [923] = 923, + [924] = 304, + [925] = 925, [926] = 926, - [927] = 338, - [928] = 292, - [929] = 929, - [930] = 293, - [931] = 305, - [932] = 338, - [933] = 310, - [934] = 896, - [935] = 342, - [936] = 342, + [927] = 927, + [928] = 294, + [929] = 293, + [930] = 304, + [931] = 300, + [932] = 932, + [933] = 933, + [934] = 304, + [935] = 296, + [936] = 936, [937] = 937, - [938] = 331, + [938] = 337, [939] = 939, - [940] = 940, - [941] = 342, - [942] = 917, - [943] = 331, - [944] = 305, - [945] = 314, - [946] = 305, - [947] = 293, - [948] = 292, - [949] = 949, + [940] = 314, + [941] = 941, + [942] = 299, + [943] = 943, + [944] = 304, + [945] = 300, + [946] = 946, + [947] = 304, + [948] = 299, + [949] = 314, [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 896, - [955] = 955, - [956] = 333, - [957] = 335, - [958] = 338, - [959] = 331, - [960] = 960, - [961] = 953, - [962] = 293, + [951] = 891, + [952] = 299, + [953] = 325, + [954] = 913, + [955] = 314, + [956] = 956, + [957] = 322, + [958] = 891, + [959] = 314, + [960] = 300, + [961] = 961, + [962] = 917, [963] = 963, [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, + [965] = 300, + [966] = 923, + [967] = 304, + [968] = 943, + [969] = 299, [970] = 970, - [971] = 971, - [972] = 950, + [971] = 299, + [972] = 314, [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, + [974] = 926, + [975] = 927, + [976] = 299, + [977] = 300, [978] = 978, [979] = 979, [980] = 980, [981] = 981, - [982] = 982, + [982] = 322, [983] = 983, - [984] = 305, - [985] = 985, + [984] = 325, + [985] = 300, [986] = 986, - [987] = 987, - [988] = 988, + [987] = 314, + [988] = 325, [989] = 989, [990] = 990, - [991] = 991, + [991] = 296, [992] = 992, - [993] = 993, + [993] = 296, [994] = 994, - [995] = 939, - [996] = 996, - [997] = 914, - [998] = 929, - [999] = 999, - [1000] = 924, - [1001] = 1001, - [1002] = 338, + [995] = 995, + [996] = 912, + [997] = 304, + [998] = 314, + [999] = 939, + [1000] = 337, + [1001] = 950, + [1002] = 314, [1003] = 1003, - [1004] = 950, + [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 953, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [1007] = 912, + [1008] = 299, + [1009] = 891, + [1010] = 300, + [1011] = 322, [1012] = 1012, - [1013] = 937, - [1014] = 1014, + [1013] = 1013, + [1014] = 956, [1015] = 1015, - [1016] = 917, + [1016] = 913, [1017] = 1017, - [1018] = 1018, - [1019] = 314, - [1020] = 949, - [1021] = 335, + [1018] = 939, + [1019] = 1019, + [1020] = 941, + [1021] = 956, [1022] = 1022, - [1023] = 952, - [1024] = 333, + [1023] = 1023, + [1024] = 1024, [1025] = 1025, [1026] = 1026, [1027] = 1027, - [1028] = 310, + [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1031, + [1031] = 337, [1032] = 1032, [1033] = 1033, - [1034] = 955, - [1035] = 331, - [1036] = 1036, + [1034] = 1034, + [1035] = 1035, + [1036] = 925, [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 291, + [1041] = 1041, [1042] = 1042, - [1043] = 917, - [1044] = 919, - [1045] = 940, - [1046] = 1046, + [1043] = 1043, + [1044] = 1044, + [1045] = 941, + [1046] = 327, [1047] = 1047, [1048] = 1048, - [1049] = 292, + [1049] = 943, [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 939, - [1057] = 305, - [1058] = 929, + [1056] = 1056, + [1057] = 1057, + [1058] = 918, [1059] = 1059, [1060] = 1060, - [1061] = 331, - [1062] = 305, - [1063] = 342, - [1064] = 1064, - [1065] = 331, + [1061] = 1061, + [1062] = 950, + [1063] = 1063, + [1064] = 338, + [1065] = 1065, [1066] = 1066, - [1067] = 342, - [1068] = 291, - [1069] = 1069, - [1070] = 926, - [1071] = 338, - [1072] = 960, + [1067] = 915, + [1068] = 1068, + [1069] = 322, + [1070] = 294, + [1071] = 293, + [1072] = 1072, [1073] = 1073, - [1074] = 331, - [1075] = 305, - [1076] = 1076, - [1077] = 342, - [1078] = 342, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, + [1074] = 1074, + [1075] = 1075, + [1076] = 325, + [1077] = 1077, + [1078] = 932, + [1079] = 927, + [1080] = 926, + [1081] = 933, + [1082] = 946, [1083] = 1083, - [1084] = 937, - [1085] = 1085, - [1086] = 1086, + [1084] = 1084, + [1085] = 292, + [1086] = 299, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 920, - [1091] = 338, - [1092] = 305, + [1090] = 1090, + [1091] = 1091, + [1092] = 913, [1093] = 1093, [1094] = 1094, - [1095] = 921, + [1095] = 1095, [1096] = 1096, - [1097] = 338, + [1097] = 300, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 331, - [1102] = 321, - [1103] = 949, - [1104] = 342, - [1105] = 310, - [1106] = 314, - [1107] = 926, + [1100] = 915, + [1101] = 932, + [1102] = 1102, + [1103] = 923, + [1104] = 933, + [1105] = 1105, + [1106] = 1106, + [1107] = 304, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 951, + [1110] = 304, + [1111] = 917, [1112] = 1112, - [1113] = 914, - [1114] = 1114, + [1113] = 1113, + [1114] = 946, [1115] = 1115, - [1116] = 924, + [1116] = 314, [1117] = 1117, - [1118] = 1118, + [1118] = 334, [1119] = 1119, - [1120] = 952, - [1121] = 338, + [1120] = 1120, + [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 920, - [1125] = 921, - [1126] = 1126, - [1127] = 331, - [1128] = 342, + [1124] = 918, + [1125] = 299, + [1126] = 300, + [1127] = 1127, + [1128] = 1128, [1129] = 1129, [1130] = 1130, - [1131] = 922, - [1132] = 922, - [1133] = 339, + [1131] = 333, + [1132] = 1132, + [1133] = 1133, [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 936, [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 940, - [1143] = 919, + [1139] = 292, + [1140] = 937, + [1141] = 937, + [1142] = 1142, + [1143] = 925, [1144] = 1144, - [1145] = 896, - [1146] = 333, - [1147] = 324, + [1145] = 936, + [1146] = 1146, + [1147] = 1147, [1148] = 1148, - [1149] = 310, + [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 960, - [1153] = 335, + [1152] = 304, + [1153] = 1153, [1154] = 1154, - [1155] = 319, - [1156] = 951, - [1157] = 955, - [1158] = 314, - [1159] = 1006, - [1160] = 963, - [1161] = 291, - [1162] = 1151, - [1163] = 1150, - [1164] = 1148, - [1165] = 990, - [1166] = 955, - [1167] = 989, - [1168] = 951, - [1169] = 1059, - [1170] = 988, - [1171] = 926, - [1172] = 987, - [1173] = 960, - [1174] = 1048, - [1175] = 1046, - [1176] = 1039, - [1177] = 929, - [1178] = 1066, - [1179] = 1141, - [1180] = 1064, - [1181] = 1066, - [1182] = 331, - [1183] = 339, - [1184] = 981, - [1185] = 914, - [1186] = 939, - [1187] = 986, - [1188] = 1033, - [1189] = 987, - [1190] = 1076, - [1191] = 988, - [1192] = 982, - [1193] = 1079, - [1194] = 989, - [1195] = 342, - [1196] = 981, - [1197] = 1088, - [1198] = 990, - [1199] = 324, - [1200] = 963, - [1201] = 1140, - [1202] = 967, - [1203] = 1139, - [1204] = 919, - [1205] = 940, - [1206] = 310, - [1207] = 980, - [1208] = 314, - [1209] = 1060, - [1210] = 314, - [1211] = 992, - [1212] = 979, - [1213] = 1032, - [1214] = 1053, - [1215] = 1047, - [1216] = 338, - [1217] = 1138, - [1218] = 321, - [1219] = 310, - [1220] = 319, - [1221] = 1117, - [1222] = 1134, - [1223] = 310, - [1224] = 974, - [1225] = 1042, - [1226] = 1136, - [1227] = 1051, - [1228] = 978, - [1229] = 971, - [1230] = 975, - [1231] = 342, - [1232] = 968, - [1233] = 1135, - [1234] = 983, - [1235] = 993, - [1236] = 996, - [1237] = 980, - [1238] = 966, - [1239] = 331, - [1240] = 964, - [1241] = 999, - [1242] = 985, - [1243] = 331, - [1244] = 1060, - [1245] = 1245, - [1246] = 1050, - [1247] = 979, - [1248] = 1052, - [1249] = 1001, - [1250] = 1005, - [1251] = 1054, - [1252] = 342, - [1253] = 991, - [1254] = 1064, - [1255] = 992, - [1256] = 1038, - [1257] = 1059, - [1258] = 1055, - [1259] = 1115, - [1260] = 1006, - [1261] = 1069, - [1262] = 1037, - [1263] = 1036, - [1264] = 1031, - [1265] = 1085, - [1266] = 977, - [1267] = 1003, - [1268] = 1080, - [1269] = 1040, - [1270] = 1032, - [1271] = 976, - [1272] = 1003, - [1273] = 1053, - [1274] = 1089, - [1275] = 1081, - [1276] = 305, - [1277] = 993, - [1278] = 1110, - [1279] = 1081, - [1280] = 1080, - [1281] = 970, - [1282] = 1112, - [1283] = 339, - [1284] = 1123, - [1285] = 978, - [1286] = 969, - [1287] = 1126, - [1288] = 1129, - [1289] = 971, - [1290] = 968, - [1291] = 1130, - [1292] = 1137, - [1293] = 1108, - [1294] = 1030, - [1295] = 324, - [1296] = 1144, - [1297] = 1154, - [1298] = 1029, - [1299] = 1027, - [1300] = 1025, - [1301] = 973, - [1302] = 1008, - [1303] = 1082, - [1304] = 966, - [1305] = 1114, - [1306] = 1026, - [1307] = 996, - [1308] = 924, - [1309] = 964, - [1310] = 1076, - [1311] = 985, - [1312] = 1109, - [1313] = 1099, - [1314] = 1050, - [1315] = 1052, - [1316] = 1096, - [1317] = 983, - [1318] = 1093, - [1319] = 338, - [1320] = 1087, - [1321] = 1073, - [1322] = 1054, - [1323] = 1151, - [1324] = 1150, - [1325] = 1148, - [1326] = 975, - [1327] = 1100, - [1328] = 1088, - [1329] = 1082, - [1330] = 937, - [1331] = 1083, - [1332] = 1086, - [1333] = 1030, - [1334] = 1029, - [1335] = 1141, - [1336] = 1140, - [1337] = 1139, - [1338] = 994, - [1339] = 314, - [1340] = 986, - [1341] = 1138, - [1342] = 1026, - [1343] = 1118, - [1344] = 977, - [1345] = 976, - [1346] = 1136, - [1347] = 1098, - [1348] = 1094, - [1349] = 1117, - [1350] = 1135, - [1351] = 321, - [1352] = 999, - [1353] = 1001, - [1354] = 1005, - [1355] = 333, - [1356] = 974, - [1357] = 319, - [1358] = 1038, - [1359] = 994, - [1360] = 1037, - [1361] = 950, - [1362] = 1055, - [1363] = 335, - [1364] = 1115, - [1365] = 1069, - [1366] = 1134, - [1367] = 342, - [1368] = 1085, - [1369] = 1008, - [1370] = 1119, - [1371] = 1122, - [1372] = 1036, - [1373] = 991, - [1374] = 920, - [1375] = 1083, - [1376] = 921, - [1377] = 1086, - [1378] = 305, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1039, + [1160] = 296, + [1161] = 1117, + [1162] = 1102, + [1163] = 1123, + [1164] = 1129, + [1165] = 1133, + [1166] = 1134, + [1167] = 912, + [1168] = 314, + [1169] = 939, + [1170] = 1053, + [1171] = 1099, + [1172] = 1096, + [1173] = 941, + [1174] = 1150, + [1175] = 956, + [1176] = 1034, + [1177] = 1151, + [1178] = 322, + [1179] = 1115, + [1180] = 937, + [1181] = 1135, + [1182] = 1136, + [1183] = 1138, + [1184] = 1094, + [1185] = 1113, + [1186] = 1112, + [1187] = 1095, + [1188] = 1158, + [1189] = 1150, + [1190] = 299, + [1191] = 1034, + [1192] = 1048, + [1193] = 1051, + [1194] = 994, + [1195] = 1053, + [1196] = 1121, + [1197] = 1120, + [1198] = 1109, + [1199] = 1151, + [1200] = 1108, + [1201] = 1138, + [1202] = 925, + [1203] = 936, + [1204] = 1122, + [1205] = 1105, + [1206] = 1127, + [1207] = 978, + [1208] = 1128, + [1209] = 1098, + [1210] = 1091, + [1211] = 1088, + [1212] = 1142, + [1213] = 1029, + [1214] = 300, + [1215] = 1147, + [1216] = 1157, + [1217] = 1149, + [1218] = 1132, + [1219] = 1144, + [1220] = 1156, + [1221] = 1154, + [1222] = 1146, + [1223] = 1136, + [1224] = 1135, + [1225] = 1072, + [1226] = 1158, + [1227] = 322, + [1228] = 994, + [1229] = 325, + [1230] = 1134, + [1231] = 1074, + [1232] = 1147, + [1233] = 1084, + [1234] = 1133, + [1235] = 1032, + [1236] = 1090, + [1237] = 1106, + [1238] = 1129, + [1239] = 1123, + [1240] = 1019, + [1241] = 1013, + [1242] = 1117, + [1243] = 1115, + [1244] = 1113, + [1245] = 973, + [1246] = 963, + [1247] = 1054, + [1248] = 1050, + [1249] = 1035, + [1250] = 1012, + [1251] = 1112, + [1252] = 1037, + [1253] = 1121, + [1254] = 923, + [1255] = 1120, + [1256] = 1033, + [1257] = 1040, + [1258] = 1041, + [1259] = 1119, + [1260] = 1052, + [1261] = 1087, + [1262] = 1047, + [1263] = 979, + [1264] = 299, + [1265] = 327, + [1266] = 1083, + [1267] = 1043, + [1268] = 1109, + [1269] = 1108, + [1270] = 1077, + [1271] = 300, + [1272] = 1068, + [1273] = 1073, + [1274] = 1075, + [1275] = 1042, + [1276] = 333, + [1277] = 980, + [1278] = 300, + [1279] = 1065, + [1280] = 338, + [1281] = 981, + [1282] = 1105, + [1283] = 322, + [1284] = 325, + [1285] = 304, + [1286] = 1066, + [1287] = 1098, + [1288] = 973, + [1289] = 1063, + [1290] = 1091, + [1291] = 963, + [1292] = 334, + [1293] = 1054, + [1294] = 1119, + [1295] = 1077, + [1296] = 1035, + [1297] = 1073, + [1298] = 1063, + [1299] = 1088, + [1300] = 1061, + [1301] = 334, + [1302] = 1044, + [1303] = 1027, + [1304] = 1059, + [1305] = 1060, + [1306] = 964, + [1307] = 926, + [1308] = 1052, + [1309] = 1050, + [1310] = 986, + [1311] = 333, + [1312] = 1057, + [1313] = 1056, + [1314] = 1055, + [1315] = 992, + [1316] = 1061, + [1317] = 1059, + [1318] = 1038, + [1319] = 995, + [1320] = 1027, + [1321] = 1032, + [1322] = 1038, + [1323] = 1017, + [1324] = 1033, + [1325] = 1039, + [1326] = 1040, + [1327] = 1041, + [1328] = 1026, + [1329] = 1042, + [1330] = 1028, + [1331] = 1025, + [1332] = 1083, + [1333] = 1068, + [1334] = 1066, + [1335] = 1025, + [1336] = 1003, + [1337] = 978, + [1338] = 1030, + [1339] = 961, + [1340] = 1157, + [1341] = 1156, + [1342] = 1154, + [1343] = 970, + [1344] = 983, + [1345] = 1003, + [1346] = 1057, + [1347] = 1012, + [1348] = 1013, + [1349] = 990, + [1350] = 1019, + [1351] = 299, + [1352] = 989, + [1353] = 983, + [1354] = 1093, + [1355] = 970, + [1356] = 989, + [1357] = 990, + [1358] = 1047, + [1359] = 300, + [1360] = 1087, + [1361] = 979, + [1362] = 1065, + [1363] = 325, + [1364] = 1004, + [1365] = 1056, + [1366] = 950, + [1367] = 927, + [1368] = 946, + [1369] = 1055, + [1370] = 1048, + [1371] = 1024, + [1372] = 1043, + [1373] = 1037, + [1374] = 1029, + [1375] = 1093, + [1376] = 1096, + [1377] = 1099, + [1378] = 1024, [1379] = 1051, - [1380] = 949, - [1381] = 1042, - [1382] = 1009, - [1383] = 1010, - [1384] = 1009, - [1385] = 1011, - [1386] = 952, - [1387] = 922, - [1388] = 1089, - [1389] = 1122, - [1390] = 1119, - [1391] = 1118, - [1392] = 1012, - [1393] = 965, - [1394] = 1010, - [1395] = 1011, - [1396] = 1014, - [1397] = 1012, - [1398] = 1110, - [1399] = 1094, - [1400] = 1015, - [1401] = 1017, - [1402] = 982, - [1403] = 1022, - [1404] = 953, - [1405] = 1047, - [1406] = 1098, - [1407] = 1031, - [1408] = 1079, - [1409] = 970, - [1410] = 1123, - [1411] = 1073, - [1412] = 1126, - [1413] = 1129, - [1414] = 967, - [1415] = 1130, - [1416] = 1137, - [1417] = 1144, - [1418] = 1154, - [1419] = 1018, - [1420] = 1087, - [1421] = 331, - [1422] = 1048, - [1423] = 969, - [1424] = 1018, - [1425] = 973, - [1426] = 1046, - [1427] = 1093, - [1428] = 1096, - [1429] = 1099, - [1430] = 1017, - [1431] = 1015, - [1432] = 1040, - [1433] = 1014, - [1434] = 1108, - [1435] = 1109, - [1436] = 1039, - [1437] = 1112, - [1438] = 1114, - [1439] = 1022, - [1440] = 1025, - [1441] = 1033, - [1442] = 1027, - [1443] = 965, - [1444] = 1100, - [1445] = 1055, - [1446] = 974, - [1447] = 1052, + [1380] = 1102, + [1381] = 1122, + [1382] = 292, + [1383] = 918, + [1384] = 304, + [1385] = 917, + [1386] = 933, + [1387] = 932, + [1388] = 915, + [1389] = 1127, + [1390] = 1132, + [1391] = 1144, + [1392] = 1146, + [1393] = 961, + [1394] = 1030, + [1395] = 337, + [1396] = 943, + [1397] = 1005, + [1398] = 1004, + [1399] = 1005, + [1400] = 1028, + [1401] = 1106, + [1402] = 1006, + [1403] = 1155, + [1404] = 1090, + [1405] = 1084, + [1406] = 1074, + [1407] = 1026, + [1408] = 1072, + [1409] = 1015, + [1410] = 1153, + [1411] = 1411, + [1412] = 1023, + [1413] = 1044, + [1414] = 1130, + [1415] = 1015, + [1416] = 1017, + [1417] = 980, + [1418] = 1060, + [1419] = 964, + [1420] = 314, + [1421] = 1022, + [1422] = 1089, + [1423] = 1148, + [1424] = 1130, + [1425] = 1155, + [1426] = 986, + [1427] = 1089, + [1428] = 992, + [1429] = 1153, + [1430] = 981, + [1431] = 995, + [1432] = 1149, + [1433] = 1148, + [1434] = 327, + [1435] = 1142, + [1436] = 1128, + [1437] = 1095, + [1438] = 299, + [1439] = 1094, + [1440] = 1006, + [1441] = 338, + [1442] = 1075, + [1443] = 1022, + [1444] = 1023, + [1445] = 1005, + [1446] = 1026, + [1447] = 983, [1448] = 1054, - [1449] = 1050, - [1450] = 319, - [1451] = 1060, - [1452] = 1059, - [1453] = 964, - [1454] = 1064, - [1455] = 1073, - [1456] = 996, - [1457] = 1087, - [1458] = 966, - [1459] = 1066, - [1460] = 982, - [1461] = 969, - [1462] = 994, - [1463] = 968, - [1464] = 1008, - [1465] = 971, - [1466] = 978, - [1467] = 986, - [1468] = 999, - [1469] = 1076, - [1470] = 1112, - [1471] = 1048, - [1472] = 1046, - [1473] = 1022, - [1474] = 324, - [1475] = 1001, - [1476] = 1005, - [1477] = 977, - [1478] = 1039, - [1479] = 1079, - [1480] = 1018, - [1481] = 1017, - [1482] = 1033, - [1483] = 976, - [1484] = 963, - [1485] = 1015, - [1486] = 1014, - [1487] = 993, - [1488] = 989, - [1489] = 967, - [1490] = 1088, - [1491] = 1032, - [1492] = 992, - [1493] = 1115, - [1494] = 1093, - [1495] = 1069, - [1496] = 1114, - [1497] = 1053, - [1498] = 1025, - [1499] = 991, - [1500] = 1085, - [1501] = 1027, - [1502] = 1154, - [1503] = 1096, - [1504] = 1099, - [1505] = 1144, - [1506] = 1037, - [1507] = 1137, - [1508] = 1151, - [1509] = 1130, - [1510] = 1150, - [1511] = 1129, - [1512] = 1089, - [1513] = 988, - [1514] = 1086, - [1515] = 1047, - [1516] = 1108, - [1517] = 1083, - [1518] = 1148, - [1519] = 1126, - [1520] = 321, - [1521] = 1141, - [1522] = 973, - [1523] = 1123, - [1524] = 1082, - [1525] = 970, - [1526] = 1134, - [1527] = 990, - [1528] = 981, - [1529] = 1122, - [1530] = 1119, - [1531] = 1140, - [1532] = 1012, - [1533] = 1042, - [1534] = 1139, - [1535] = 1011, - [1536] = 1051, - [1537] = 1138, - [1538] = 331, - [1539] = 1136, - [1540] = 1010, - [1541] = 975, - [1542] = 1036, - [1543] = 983, - [1544] = 985, - [1545] = 987, - [1546] = 1109, - [1547] = 1118, - [1548] = 1117, - [1549] = 310, - [1550] = 1009, - [1551] = 1135, - [1552] = 1110, - [1553] = 1038, - [1554] = 965, - [1555] = 342, - [1556] = 1245, - [1557] = 1094, - [1558] = 1100, - [1559] = 1081, - [1560] = 1006, - [1561] = 1098, - [1562] = 1080, - [1563] = 339, - [1564] = 314, - [1565] = 1026, - [1566] = 1031, - [1567] = 980, - [1568] = 979, - [1569] = 1029, - [1570] = 1040, - [1571] = 1003, - [1572] = 1030, + [1449] = 989, + [1450] = 1074, + [1451] = 1024, + [1452] = 986, + [1453] = 1003, + [1454] = 1077, + [1455] = 1035, + [1456] = 1073, + [1457] = 1128, + [1458] = 980, + [1459] = 963, + [1460] = 1037, + [1461] = 970, + [1462] = 1034, + [1463] = 1156, + [1464] = 973, + [1465] = 1063, + [1466] = 990, + [1467] = 1015, + [1468] = 1075, + [1469] = 1061, + [1470] = 1029, + [1471] = 1032, + [1472] = 1072, + [1473] = 1150, + [1474] = 1146, + [1475] = 1096, + [1476] = 1059, + [1477] = 1057, + [1478] = 1056, + [1479] = 1055, + [1480] = 1119, + [1481] = 1109, + [1482] = 1154, + [1483] = 1095, + [1484] = 1043, + [1485] = 1025, + [1486] = 1112, + [1487] = 1113, + [1488] = 1108, + [1489] = 1115, + [1490] = 322, + [1491] = 1066, + [1492] = 1130, + [1493] = 1117, + [1494] = 1120, + [1495] = 1121, + [1496] = 1084, + [1497] = 994, + [1498] = 1089, + [1499] = 1105, + [1500] = 1068, + [1501] = 1099, + [1502] = 1158, + [1503] = 1094, + [1504] = 1023, + [1505] = 1022, + [1506] = 1148, + [1507] = 1153, + [1508] = 1083, + [1509] = 1149, + [1510] = 1098, + [1511] = 1102, + [1512] = 334, + [1513] = 1091, + [1514] = 1151, + [1515] = 1122, + [1516] = 1088, + [1517] = 1027, + [1518] = 1042, + [1519] = 1050, + [1520] = 1038, + [1521] = 1090, + [1522] = 1123, + [1523] = 300, + [1524] = 1052, + [1525] = 1129, + [1526] = 964, + [1527] = 1157, + [1528] = 1106, + [1529] = 1133, + [1530] = 1041, + [1531] = 1053, + [1532] = 1051, + [1533] = 1060, + [1534] = 1411, + [1535] = 1147, + [1536] = 1040, + [1537] = 327, + [1538] = 1134, + [1539] = 961, + [1540] = 1030, + [1541] = 325, + [1542] = 1028, + [1543] = 1155, + [1544] = 1044, + [1545] = 992, + [1546] = 333, + [1547] = 1142, + [1548] = 1065, + [1549] = 1048, + [1550] = 299, + [1551] = 981, + [1552] = 1093, + [1553] = 1135, + [1554] = 979, + [1555] = 1127, + [1556] = 1012, + [1557] = 338, + [1558] = 1132, + [1559] = 1136, + [1560] = 1017, + [1561] = 1138, + [1562] = 1006, + [1563] = 1087, + [1564] = 1144, + [1565] = 1004, + [1566] = 1039, + [1567] = 1019, + [1568] = 978, + [1569] = 1047, + [1570] = 1013, + [1571] = 1033, + [1572] = 995, [1573] = 1573, [1574] = 1573, [1575] = 1573, [1576] = 1573, [1577] = 1573, [1578] = 1578, - [1579] = 1579, + [1579] = 950, [1580] = 1580, [1581] = 1581, - [1582] = 1582, - [1583] = 1579, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1578, - [1588] = 924, - [1589] = 1579, - [1590] = 1579, + [1582] = 1578, + [1583] = 1583, + [1584] = 1583, + [1585] = 1583, + [1586] = 1578, + [1587] = 1587, + [1588] = 1578, + [1589] = 1578, + [1590] = 1583, [1591] = 1591, [1592] = 1592, - [1593] = 1593, - [1594] = 1578, + [1593] = 1583, + [1594] = 1594, [1595] = 1595, - [1596] = 1578, - [1597] = 950, - [1598] = 1578, - [1599] = 1579, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 943, [1600] = 1600, [1601] = 1601, - [1602] = 1601, - [1603] = 1603, - [1604] = 1601, + [1602] = 1602, + [1603] = 1602, + [1604] = 1602, [1605] = 1605, [1606] = 1606, - [1607] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1605, - [1610] = 1610, - [1611] = 1608, - [1612] = 1605, - [1613] = 1613, - [1614] = 1613, + [1609] = 1606, + [1610] = 1607, + [1611] = 1611, + [1612] = 1608, + [1613] = 1607, + [1614] = 1614, [1615] = 1606, - [1616] = 1608, - [1617] = 1613, - [1618] = 1605, - [1619] = 1619, - [1620] = 1605, - [1621] = 1613, - [1622] = 1610, - [1623] = 1613, - [1624] = 1606, - [1625] = 1608, - [1626] = 1610, + [1616] = 1611, + [1617] = 1605, + [1618] = 1611, + [1619] = 1608, + [1620] = 1607, + [1621] = 1611, + [1622] = 1605, + [1623] = 1605, + [1624] = 1614, + [1625] = 1607, + [1626] = 1614, [1627] = 1608, - [1628] = 1610, - [1629] = 1619, - [1630] = 1605, - [1631] = 1606, - [1632] = 1613, - [1633] = 1613, - [1634] = 1619, - [1635] = 1610, - [1636] = 1619, - [1637] = 1608, - [1638] = 1610, - [1639] = 1619, + [1628] = 1608, + [1629] = 1606, + [1630] = 1607, + [1631] = 1608, + [1632] = 1606, + [1633] = 1607, + [1634] = 1614, + [1635] = 1606, + [1636] = 1608, + [1637] = 1614, + [1638] = 1605, + [1639] = 1611, [1640] = 1605, - [1641] = 1606, - [1642] = 1619, - [1643] = 1610, - [1644] = 1608, - [1645] = 1619, - [1646] = 1606, + [1641] = 1611, + [1642] = 1614, + [1643] = 1606, + [1644] = 1605, + [1645] = 1611, + [1646] = 1614, [1647] = 1647, [1648] = 1648, - [1649] = 1649, - [1650] = 1649, - [1651] = 1649, - [1652] = 1649, - [1653] = 1648, - [1654] = 1649, - [1655] = 1649, - [1656] = 1649, + [1649] = 1648, + [1650] = 1647, + [1651] = 1647, + [1652] = 1647, + [1653] = 1647, + [1654] = 1654, + [1655] = 1647, + [1656] = 1647, [1657] = 1657, [1658] = 1657, [1659] = 1659, - [1660] = 1657, + [1660] = 1659, [1661] = 1659, - [1662] = 1659, + [1662] = 1657, [1663] = 1659, [1664] = 1657, - [1665] = 1659, - [1666] = 1657, + [1665] = 1657, + [1666] = 1659, [1667] = 1667, [1668] = 1667, [1669] = 1667, @@ -6334,18 +6334,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1678] = 1667, [1679] = 1679, [1680] = 1680, - [1681] = 1679, + [1681] = 1681, [1682] = 1680, [1683] = 1679, [1684] = 1684, - [1685] = 1685, + [1685] = 1681, [1686] = 1679, - [1687] = 1684, - [1688] = 1685, - [1689] = 1680, - [1690] = 1690, - [1691] = 1679, - [1692] = 1685, + [1687] = 1680, + [1688] = 1680, + [1689] = 1684, + [1690] = 1680, + [1691] = 1691, + [1692] = 1681, [1693] = 1684, [1694] = 1694, [1695] = 1695, @@ -6353,582 +6353,582 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1697] = 1697, [1698] = 1698, [1699] = 1699, - [1700] = 1700, + [1700] = 1697, [1701] = 1701, - [1702] = 1702, + [1702] = 1694, [1703] = 1703, [1704] = 1704, - [1705] = 1703, + [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 1699, - [1709] = 1706, + [1708] = 1708, + [1709] = 1699, [1710] = 1696, - [1711] = 1711, - [1712] = 1707, - [1713] = 1696, - [1714] = 1695, + [1711] = 1695, + [1712] = 1712, + [1713] = 1713, + [1714] = 1708, [1715] = 1715, - [1716] = 1696, - [1717] = 1697, - [1718] = 1718, - [1719] = 1702, - [1720] = 1720, - [1721] = 1697, - [1722] = 1722, - [1723] = 1707, - [1724] = 1694, - [1725] = 1718, - [1726] = 1698, - [1727] = 1711, - [1728] = 1728, + [1716] = 1716, + [1717] = 1717, + [1718] = 1713, + [1719] = 1719, + [1720] = 1705, + [1721] = 1715, + [1722] = 1707, + [1723] = 1713, + [1724] = 1724, + [1725] = 1725, + [1726] = 1715, + [1727] = 1727, + [1728] = 1712, [1729] = 1729, - [1730] = 1706, - [1731] = 1731, - [1732] = 1732, - [1733] = 1706, - [1734] = 1701, - [1735] = 1707, - [1736] = 1736, - [1737] = 1700, - [1738] = 1698, - [1739] = 1739, - [1740] = 1729, - [1741] = 1699, + [1730] = 1730, + [1731] = 1729, + [1732] = 1705, + [1733] = 1733, + [1734] = 1713, + [1735] = 1717, + [1736] = 1729, + [1737] = 1725, + [1738] = 1712, + [1739] = 1706, + [1740] = 1712, + [1741] = 1715, [1742] = 1742, - [1743] = 1704, - [1744] = 1701, - [1745] = 1722, - [1746] = 1731, - [1747] = 1736, - [1748] = 1729, - [1749] = 1729, - [1750] = 1728, - [1751] = 1729, - [1752] = 1752, - [1753] = 1722, - [1754] = 1718, - [1755] = 1755, - [1756] = 1720, - [1757] = 1736, - [1758] = 1703, - [1759] = 1698, - [1760] = 1732, - [1761] = 1694, - [1762] = 1703, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1719, + [1747] = 1696, + [1748] = 1748, + [1749] = 1749, + [1750] = 1699, + [1751] = 1708, + [1752] = 1716, + [1753] = 1707, + [1754] = 1695, + [1755] = 1704, + [1756] = 1712, + [1757] = 1706, + [1758] = 1704, + [1759] = 1742, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1704, + [1764] = 1748, + [1765] = 1694, [1766] = 1694, - [1767] = 1718, - [1768] = 1698, - [1769] = 1728, - [1770] = 1731, - [1771] = 1771, - [1772] = 1711, - [1773] = 1728, - [1774] = 1722, - [1775] = 1736, - [1776] = 1731, - [1777] = 1703, - [1778] = 1720, - [1779] = 1700, - [1780] = 1728, - [1781] = 1736, - [1782] = 1699, - [1783] = 1699, - [1784] = 1707, - [1785] = 1703, - [1786] = 1700, - [1787] = 1711, - [1788] = 1695, - [1789] = 1789, - [1790] = 1695, - [1791] = 1720, - [1792] = 1700, - [1793] = 1731, - [1794] = 1722, - [1795] = 1702, - [1796] = 1718, - [1797] = 1701, - [1798] = 1701, - [1799] = 1697, - [1800] = 1696, - [1801] = 1720, - [1802] = 1802, - [1803] = 1803, - [1804] = 1702, - [1805] = 1805, - [1806] = 1702, - [1807] = 1706, - [1808] = 1808, - [1809] = 1809, - [1810] = 1697, - [1811] = 1711, - [1812] = 1695, - [1813] = 1694, + [1767] = 1749, + [1768] = 1708, + [1769] = 1699, + [1770] = 1705, + [1771] = 1707, + [1772] = 1749, + [1773] = 1708, + [1774] = 1713, + [1775] = 1775, + [1776] = 1697, + [1777] = 1725, + [1778] = 1748, + [1779] = 1697, + [1780] = 1715, + [1781] = 1698, + [1782] = 1697, + [1783] = 1696, + [1784] = 1695, + [1785] = 1748, + [1786] = 1706, + [1787] = 1729, + [1788] = 1698, + [1789] = 1748, + [1790] = 1725, + [1791] = 1717, + [1792] = 1707, + [1793] = 1742, + [1794] = 1749, + [1795] = 1698, + [1796] = 1742, + [1797] = 1695, + [1798] = 1717, + [1799] = 1706, + [1800] = 1704, + [1801] = 1717, + [1802] = 1725, + [1803] = 1696, + [1804] = 1715, + [1805] = 1698, + [1806] = 1749, + [1807] = 1807, + [1808] = 1705, + [1809] = 1742, + [1810] = 1729, + [1811] = 1694, + [1812] = 1699, + [1813] = 1813, [1814] = 1814, - [1815] = 1702, - [1816] = 1701, + [1815] = 1705, + [1816] = 1713, [1817] = 1817, - [1818] = 1817, - [1819] = 1819, + [1818] = 1818, + [1819] = 1817, [1820] = 1820, - [1821] = 1821, - [1822] = 1820, - [1823] = 1821, + [1821] = 1820, + [1822] = 1822, + [1823] = 1822, [1824] = 1824, [1825] = 1825, - [1826] = 1824, - [1827] = 1827, - [1828] = 1824, - [1829] = 1827, - [1830] = 1825, - [1831] = 1827, - [1832] = 1825, + [1826] = 1822, + [1827] = 1822, + [1828] = 1828, + [1829] = 1822, + [1830] = 1830, + [1831] = 1822, + [1832] = 1830, [1833] = 1824, - [1834] = 1820, - [1835] = 1827, - [1836] = 1820, - [1837] = 1825, - [1838] = 1827, - [1839] = 1824, - [1840] = 1820, - [1841] = 1819, - [1842] = 1820, - [1843] = 1843, - [1844] = 1844, - [1845] = 1825, + [1834] = 1828, + [1835] = 1835, + [1836] = 1824, + [1837] = 1828, + [1838] = 1818, + [1839] = 1828, + [1840] = 1824, + [1841] = 1824, + [1842] = 1828, + [1843] = 1830, + [1844] = 1830, + [1845] = 1830, [1846] = 1846, - [1847] = 1820, - [1848] = 1846, - [1849] = 1820, - [1850] = 1850, - [1851] = 1846, + [1847] = 1847, + [1848] = 1822, + [1849] = 1846, + [1850] = 1846, + [1851] = 1822, [1852] = 1852, - [1853] = 1853, + [1853] = 1822, [1854] = 1854, - [1855] = 1852, + [1855] = 1822, [1856] = 1856, [1857] = 1857, - [1858] = 1858, - [1859] = 1820, - [1860] = 1817, + [1858] = 1854, + [1859] = 1859, + [1860] = 1860, [1861] = 1861, - [1862] = 1861, - [1863] = 1852, - [1864] = 1864, - [1865] = 1861, - [1866] = 1864, - [1867] = 1861, - [1868] = 1868, - [1869] = 1820, - [1870] = 1852, - [1871] = 1820, - [1872] = 1820, + [1862] = 1862, + [1863] = 1863, + [1864] = 1861, + [1865] = 1865, + [1866] = 1866, + [1867] = 1854, + [1868] = 1817, + [1869] = 1869, + [1870] = 1822, + [1871] = 1871, + [1872] = 1856, [1873] = 1856, [1874] = 1874, - [1875] = 1820, - [1876] = 1876, - [1877] = 1877, - [1878] = 1852, - [1879] = 1879, - [1880] = 1820, - [1881] = 1856, - [1882] = 1861, - [1883] = 1883, - [1884] = 1868, - [1885] = 1852, - [1886] = 1861, - [1887] = 1820, - [1888] = 1820, - [1889] = 1868, - [1890] = 1890, - [1891] = 1843, - [1892] = 1820, - [1893] = 1864, - [1894] = 1894, - [1895] = 1864, - [1896] = 1820, - [1897] = 1819, - [1898] = 1820, - [1899] = 950, - [1900] = 1900, - [1901] = 1901, - [1902] = 1864, - [1903] = 1820, - [1904] = 924, - [1905] = 1864, - [1906] = 1906, + [1875] = 1822, + [1876] = 1859, + [1877] = 1854, + [1878] = 1856, + [1879] = 1822, + [1880] = 1874, + [1881] = 1854, + [1882] = 1856, + [1883] = 1822, + [1884] = 1822, + [1885] = 1822, + [1886] = 1856, + [1887] = 1874, + [1888] = 1859, + [1889] = 1854, + [1890] = 1822, + [1891] = 1822, + [1892] = 1892, + [1893] = 1861, + [1894] = 1822, + [1895] = 1895, + [1896] = 1861, + [1897] = 1897, + [1898] = 943, + [1899] = 1899, + [1900] = 1822, + [1901] = 950, + [1902] = 1818, + [1903] = 1861, + [1904] = 1904, + [1905] = 1825, + [1906] = 1892, [1907] = 1907, - [1908] = 1864, - [1909] = 1909, - [1910] = 1910, + [1908] = 1908, + [1909] = 1892, + [1910] = 1861, [1911] = 1911, - [1912] = 1890, - [1913] = 1909, - [1914] = 1914, - [1915] = 1915, + [1912] = 1912, + [1913] = 1913, + [1914] = 1861, + [1915] = 1913, [1916] = 1916, - [1917] = 1909, - [1918] = 1909, + [1917] = 1917, + [1918] = 1918, [1919] = 1919, - [1920] = 1820, - [1921] = 1890, - [1922] = 1915, - [1923] = 1909, - [1924] = 1901, - [1925] = 1919, - [1926] = 1901, - [1927] = 1909, - [1928] = 1864, - [1929] = 1864, + [1920] = 1913, + [1921] = 1913, + [1922] = 1861, + [1923] = 1904, + [1924] = 1924, + [1925] = 1913, + [1926] = 1913, + [1927] = 1924, + [1928] = 1913, + [1929] = 1929, [1930] = 1930, - [1931] = 1931, - [1932] = 1909, - [1933] = 1933, - [1934] = 1909, - [1935] = 1935, - [1936] = 1909, - [1937] = 1864, + [1931] = 1930, + [1932] = 1822, + [1933] = 1904, + [1934] = 1913, + [1935] = 1913, + [1936] = 1861, + [1937] = 979, [1938] = 1938, - [1939] = 1939, + [1939] = 1908, [1940] = 1940, - [1941] = 1941, - [1942] = 1914, - [1943] = 1901, + [1941] = 978, + [1942] = 1938, + [1943] = 1861, [1944] = 1944, - [1945] = 1941, - [1946] = 1946, - [1947] = 1947, - [1948] = 1941, - [1949] = 1931, - [1950] = 1901, - [1951] = 1941, - [1952] = 1931, - [1953] = 1864, - [1954] = 1947, - [1955] = 1108, - [1956] = 1082, - [1957] = 1901, - [1958] = 1864, - [1959] = 1940, - [1960] = 1914, - [1961] = 1944, - [1962] = 1939, - [1963] = 1941, - [1964] = 1964, - [1965] = 1901, - [1966] = 1966, - [1967] = 1901, - [1968] = 1964, - [1969] = 1933, - [1970] = 1930, - [1971] = 969, - [1972] = 1931, - [1973] = 1939, - [1974] = 1947, + [1945] = 1908, + [1946] = 1944, + [1947] = 1904, + [1948] = 1861, + [1949] = 1917, + [1950] = 1950, + [1951] = 1904, + [1952] = 1904, + [1953] = 1944, + [1954] = 1954, + [1955] = 1955, + [1956] = 1955, + [1957] = 1950, + [1958] = 1861, + [1959] = 1917, + [1960] = 1960, + [1961] = 1954, + [1962] = 1944, + [1963] = 1944, + [1964] = 1908, + [1965] = 1904, + [1966] = 1950, + [1967] = 1918, + [1968] = 1968, + [1969] = 1969, + [1970] = 943, + [1971] = 1971, + [1972] = 1950, + [1973] = 1852, + [1974] = 1916, [1975] = 1975, - [1976] = 1947, - [1977] = 1939, - [1978] = 1978, - [1979] = 1979, - [1980] = 973, - [1981] = 1864, - [1982] = 1874, - [1983] = 1042, - [1984] = 1979, - [1985] = 1964, - [1986] = 1914, - [1987] = 1979, - [1988] = 1051, - [1989] = 1939, - [1990] = 1964, - [1991] = 1991, - [1992] = 1979, - [1993] = 1933, - [1994] = 1947, - [1995] = 1857, - [1996] = 1900, - [1997] = 950, - [1998] = 1916, - [1999] = 924, - [2000] = 1930, - [2001] = 1930, - [2002] = 1975, - [2003] = 1879, - [2004] = 1933, - [2005] = 1939, - [2006] = 1964, - [2007] = 2007, - [2008] = 1876, - [2009] = 1979, - [2010] = 1901, - [2011] = 1853, - [2012] = 2012, - [2013] = 1900, - [2014] = 2014, - [2015] = 2015, - [2016] = 1854, - [2017] = 1877, - [2018] = 1947, - [2019] = 1931, - [2020] = 2020, - [2021] = 1931, - [2022] = 1864, - [2023] = 1947, - [2024] = 1931, - [2025] = 2025, - [2026] = 1900, - [2027] = 2027, - [2028] = 2028, - [2029] = 1931, - [2030] = 2028, - [2031] = 1938, - [2032] = 1910, - [2033] = 2033, - [2034] = 1901, - [2035] = 2028, - [2036] = 1939, - [2037] = 2028, - [2038] = 1900, - [2039] = 1947, - [2040] = 1939, - [2041] = 2028, - [2042] = 2028, - [2043] = 1931, - [2044] = 1919, - [2045] = 1900, - [2046] = 1939, - [2047] = 1939, - [2048] = 2048, - [2049] = 2048, - [2050] = 2048, - [2051] = 1930, - [2052] = 2048, - [2053] = 2048, - [2054] = 2048, - [2055] = 1931, - [2056] = 1947, - [2057] = 2048, - [2058] = 1947, - [2059] = 1939, - [2060] = 1915, - [2061] = 1939, - [2062] = 1933, - [2063] = 2063, - [2064] = 1947, - [2065] = 1947, + [1976] = 1954, + [1977] = 1977, + [1978] = 1908, + [1979] = 1907, + [1980] = 1908, + [1981] = 1022, + [1982] = 1023, + [1983] = 1904, + [1984] = 1907, + [1985] = 1985, + [1986] = 1986, + [1987] = 1871, + [1988] = 1954, + [1989] = 950, + [1990] = 1990, + [1991] = 1857, + [1992] = 1862, + [1993] = 1916, + [1994] = 1954, + [1995] = 1916, + [1996] = 1860, + [1997] = 1907, + [1998] = 1998, + [1999] = 1861, + [2000] = 1986, + [2001] = 2001, + [2002] = 1052, + [2003] = 1897, + [2004] = 1050, + [2005] = 1865, + [2006] = 1904, + [2007] = 1977, + [2008] = 2008, + [2009] = 2009, + [2010] = 1975, + [2011] = 1977, + [2012] = 1950, + [2013] = 1975, + [2014] = 1897, + [2015] = 1861, + [2016] = 1866, + [2017] = 1977, + [2018] = 1975, + [2019] = 1917, + [2020] = 1954, + [2021] = 1975, + [2022] = 1977, + [2023] = 1950, + [2024] = 2024, + [2025] = 2024, + [2026] = 2024, + [2027] = 1908, + [2028] = 1897, + [2029] = 1908, + [2030] = 2030, + [2031] = 2031, + [2032] = 2024, + [2033] = 2024, + [2034] = 1950, + [2035] = 2024, + [2036] = 1950, + [2037] = 1954, + [2038] = 1911, + [2039] = 1908, + [2040] = 1897, + [2041] = 1904, + [2042] = 2042, + [2043] = 1954, + [2044] = 1940, + [2045] = 2045, + [2046] = 1950, + [2047] = 2045, + [2048] = 1954, + [2049] = 1954, + [2050] = 2045, + [2051] = 1897, + [2052] = 2045, + [2053] = 2045, + [2054] = 2054, + [2055] = 1908, + [2056] = 1924, + [2057] = 1950, + [2058] = 2058, + [2059] = 1954, + [2060] = 1930, + [2061] = 2045, + [2062] = 2062, + [2063] = 1950, + [2064] = 2045, + [2065] = 1950, [2066] = 2066, - [2067] = 2067, - [2068] = 2048, - [2069] = 2048, - [2070] = 2070, - [2071] = 1947, - [2072] = 1900, - [2073] = 1916, - [2074] = 1939, - [2075] = 1939, - [2076] = 1940, - [2077] = 1939, - [2078] = 1947, - [2079] = 1939, - [2080] = 1991, - [2081] = 1947, - [2082] = 2020, - [2083] = 1947, - [2084] = 1900, - [2085] = 2085, + [2067] = 1907, + [2068] = 1954, + [2069] = 2045, + [2070] = 1916, + [2071] = 2045, + [2072] = 1918, + [2073] = 1938, + [2074] = 1990, + [2075] = 1897, + [2076] = 1897, + [2077] = 1950, + [2078] = 1954, + [2079] = 1954, + [2080] = 1985, + [2081] = 1950, + [2082] = 1954, + [2083] = 1950, + [2084] = 1954, + [2085] = 1950, [2086] = 2086, - [2087] = 1900, - [2088] = 2086, + [2087] = 2086, + [2088] = 2088, [2089] = 2089, [2090] = 2090, - [2091] = 1939, - [2092] = 2089, - [2093] = 1947, - [2094] = 2085, - [2095] = 2095, - [2096] = 2085, - [2097] = 2095, - [2098] = 2089, - [2099] = 2085, - [2100] = 2086, - [2101] = 2086, - [2102] = 2085, - [2103] = 2095, + [2091] = 2091, + [2092] = 2088, + [2093] = 1954, + [2094] = 2086, + [2095] = 2088, + [2096] = 2089, + [2097] = 2090, + [2098] = 2086, + [2099] = 2089, + [2100] = 2088, + [2101] = 2091, + [2102] = 2088, + [2103] = 2091, [2104] = 2090, - [2105] = 2090, - [2106] = 2090, + [2105] = 2086, + [2106] = 2086, [2107] = 2089, - [2108] = 2089, - [2109] = 2085, - [2110] = 2086, - [2111] = 1938, - [2112] = 1900, - [2113] = 2090, - [2114] = 2089, - [2115] = 2086, - [2116] = 2086, - [2117] = 2095, - [2118] = 2085, - [2119] = 2090, - [2120] = 2095, - [2121] = 2089, - [2122] = 2086, - [2123] = 2095, - [2124] = 2086, - [2125] = 2090, - [2126] = 2025, - [2127] = 2095, - [2128] = 2085, - [2129] = 2089, + [2108] = 2086, + [2109] = 2042, + [2110] = 1950, + [2111] = 2088, + [2112] = 2089, + [2113] = 1940, + [2114] = 1897, + [2115] = 2088, + [2116] = 2089, + [2117] = 2091, + [2118] = 2086, + [2119] = 2089, + [2120] = 2088, + [2121] = 2090, + [2122] = 2089, + [2123] = 2091, + [2124] = 2090, + [2125] = 2091, + [2126] = 2090, + [2127] = 2089, + [2128] = 1897, + [2129] = 2091, [2130] = 2090, - [2131] = 2095, - [2132] = 2089, + [2131] = 2088, + [2132] = 2091, [2133] = 2090, - [2134] = 2085, - [2135] = 2095, - [2136] = 2136, - [2137] = 2136, - [2138] = 2136, - [2139] = 2136, - [2140] = 2136, - [2141] = 2136, - [2142] = 2136, - [2143] = 2136, - [2144] = 2136, - [2145] = 2145, + [2134] = 2090, + [2135] = 2086, + [2136] = 2091, + [2137] = 2137, + [2138] = 2137, + [2139] = 2137, + [2140] = 2137, + [2141] = 2137, + [2142] = 2137, + [2143] = 2137, + [2144] = 2137, + [2145] = 2137, [2146] = 2146, - [2147] = 2145, - [2148] = 2145, - [2149] = 2145, - [2150] = 2145, - [2151] = 2145, - [2152] = 2145, - [2153] = 2145, - [2154] = 2145, - [2155] = 2155, - [2156] = 2155, - [2157] = 2155, - [2158] = 2155, - [2159] = 2155, - [2160] = 2160, + [2147] = 2146, + [2148] = 2148, + [2149] = 2146, + [2150] = 2146, + [2151] = 2146, + [2152] = 2146, + [2153] = 2146, + [2154] = 2146, + [2155] = 2146, + [2156] = 2156, + [2157] = 2156, + [2158] = 2156, + [2159] = 2156, + [2160] = 2156, [2161] = 2161, - [2162] = 2162, + [2162] = 2161, [2163] = 2163, - [2164] = 2161, - [2165] = 2163, - [2166] = 2162, + [2164] = 2163, + [2165] = 2165, + [2166] = 2161, [2167] = 2161, [2168] = 2163, [2169] = 2161, - [2170] = 2161, - [2171] = 2162, + [2170] = 2165, + [2171] = 2161, [2172] = 2161, - [2173] = 2161, - [2174] = 2163, - [2175] = 2162, + [2173] = 2165, + [2174] = 2165, + [2175] = 2165, [2176] = 2163, - [2177] = 2163, - [2178] = 2161, - [2179] = 2161, - [2180] = 2163, - [2181] = 2161, - [2182] = 2162, - [2183] = 2163, - [2184] = 2163, + [2177] = 2161, + [2178] = 2165, + [2179] = 2163, + [2180] = 2165, + [2181] = 2163, + [2182] = 2165, + [2183] = 2161, + [2184] = 2184, [2185] = 2163, [2186] = 2161, - [2187] = 2161, - [2188] = 2163, - [2189] = 2161, - [2190] = 2162, - [2191] = 2163, - [2192] = 2163, - [2193] = 2163, - [2194] = 2162, + [2187] = 2165, + [2188] = 2161, + [2189] = 2165, + [2190] = 2165, + [2191] = 2165, + [2192] = 2165, + [2193] = 2161, + [2194] = 2165, [2195] = 2161, - [2196] = 2163, - [2197] = 2161, + [2196] = 2161, + [2197] = 2165, [2198] = 2161, - [2199] = 2163, - [2200] = 2200, - [2201] = 324, + [2199] = 2161, + [2200] = 2165, + [2201] = 2201, [2202] = 2202, - [2203] = 339, - [2204] = 2204, + [2203] = 327, + [2204] = 338, [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 2012, + [2211] = 2008, [2212] = 2212, - [2213] = 339, - [2214] = 2214, - [2215] = 2215, - [2216] = 292, - [2217] = 293, + [2213] = 2213, + [2214] = 292, + [2215] = 1969, + [2216] = 2216, + [2217] = 2217, [2218] = 2218, - [2219] = 324, - [2220] = 2220, - [2221] = 291, + [2219] = 327, + [2220] = 293, + [2221] = 294, [2222] = 2222, - [2223] = 2007, - [2224] = 2015, - [2225] = 2225, - [2226] = 294, - [2227] = 2227, + [2223] = 2223, + [2224] = 1998, + [2225] = 338, + [2226] = 2226, + [2227] = 291, [2228] = 2228, [2229] = 2229, [2230] = 2230, [2231] = 2231, [2232] = 2232, [2233] = 2233, - [2234] = 2230, + [2234] = 2234, [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 2238, - [2239] = 2230, + [2238] = 314, + [2239] = 2239, [2240] = 2240, [2241] = 2241, - [2242] = 2230, - [2243] = 1031, + [2242] = 2242, + [2243] = 2243, [2244] = 2244, - [2245] = 333, + [2245] = 2245, [2246] = 2246, - [2247] = 335, + [2247] = 2247, [2248] = 2248, [2249] = 2249, [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2253, - [2254] = 2254, + [2251] = 1015, + [2252] = 1024, + [2253] = 304, + [2254] = 2250, [2255] = 2255, [2256] = 2256, [2257] = 2257, [2258] = 2258, - [2259] = 2259, - [2260] = 2260, + [2259] = 2250, + [2260] = 2250, [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, - [2265] = 2265, + [2265] = 2250, [2266] = 2266, [2267] = 2267, - [2268] = 2268, + [2268] = 2250, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 1040, - [2275] = 2230, + [2274] = 2274, + [2275] = 2275, [2276] = 2276, [2277] = 2277, [2278] = 2278, @@ -6937,23 +6937,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2281] = 2281, [2282] = 2282, [2283] = 2283, - [2284] = 2284, - [2285] = 2285, + [2284] = 292, + [2285] = 293, [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 2289, + [2289] = 294, [2290] = 2290, [2291] = 2291, - [2292] = 2292, - [2293] = 338, + [2292] = 2250, + [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, [2299] = 2299, - [2300] = 1036, + [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, @@ -6962,21 +6962,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2306] = 2306, [2307] = 2307, [2308] = 2308, - [2309] = 2309, - [2310] = 2310, + [2309] = 2255, + [2310] = 296, [2311] = 2311, - [2312] = 2299, - [2313] = 1037, - [2314] = 1038, - [2315] = 2315, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 337, [2316] = 2316, [2317] = 2317, [2318] = 2318, [2319] = 2319, - [2320] = 2230, + [2320] = 2320, [2321] = 2321, [2322] = 2322, - [2323] = 2230, + [2323] = 2323, [2324] = 2324, [2325] = 2325, [2326] = 2326, @@ -6985,12 +6985,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2329] = 2329, [2330] = 2330, [2331] = 2331, - [2332] = 2332, + [2332] = 2255, [2333] = 2333, [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 2337, + [2337] = 2255, [2338] = 2338, [2339] = 2339, [2340] = 2340, @@ -6998,17 +6998,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2342] = 2342, [2343] = 2343, [2344] = 2344, - [2345] = 291, - [2346] = 293, + [2345] = 2345, + [2346] = 2346, [2347] = 2347, - [2348] = 2348, + [2348] = 1029, [2349] = 2349, [2350] = 2350, [2351] = 2351, [2352] = 2352, [2353] = 2353, [2354] = 2354, - [2355] = 2355, + [2355] = 2250, [2356] = 2356, [2357] = 2357, [2358] = 2358, @@ -7017,1008 +7017,1008 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2361] = 2361, [2362] = 2362, [2363] = 2363, - [2364] = 2364, + [2364] = 1043, [2365] = 2365, - [2366] = 292, + [2366] = 2366, [2367] = 2367, - [2368] = 2230, + [2368] = 2368, [2369] = 2369, - [2370] = 2370, - [2371] = 2230, + [2370] = 2250, + [2371] = 2371, [2372] = 2372, - [2373] = 2373, + [2373] = 2255, [2374] = 2374, [2375] = 2375, - [2376] = 2299, - [2377] = 2299, + [2376] = 2376, + [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2299, - [2382] = 2382, + [2381] = 2381, + [2382] = 1037, [2383] = 2383, [2384] = 2384, [2385] = 2385, [2386] = 2386, - [2387] = 305, + [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 2390, + [2390] = 2304, [2391] = 2391, - [2392] = 2311, + [2392] = 2279, [2393] = 2393, - [2394] = 314, - [2395] = 2395, + [2394] = 2394, + [2395] = 2272, [2396] = 2396, [2397] = 2397, - [2398] = 2358, + [2398] = 2398, [2399] = 2399, - [2400] = 2317, - [2401] = 2205, + [2400] = 2400, + [2401] = 2401, [2402] = 2402, [2403] = 2403, [2404] = 2404, [2405] = 2405, - [2406] = 2395, - [2407] = 2352, - [2408] = 2316, - [2409] = 2395, - [2410] = 2238, - [2411] = 2393, + [2406] = 2405, + [2407] = 2407, + [2408] = 2408, + [2409] = 2409, + [2410] = 2308, + [2411] = 2391, [2412] = 2412, [2413] = 2413, - [2414] = 2414, - [2415] = 2355, - [2416] = 2416, - [2417] = 2402, + [2414] = 2402, + [2415] = 337, + [2416] = 296, + [2417] = 2417, [2418] = 2418, - [2419] = 314, + [2419] = 2419, [2420] = 2420, [2421] = 2421, - [2422] = 2350, - [2423] = 2231, + [2422] = 2422, + [2423] = 2423, [2424] = 2424, - [2425] = 2425, - [2426] = 2426, + [2425] = 2401, + [2426] = 2288, [2427] = 2427, - [2428] = 2402, - [2429] = 2412, + [2428] = 2428, + [2429] = 2429, [2430] = 2430, - [2431] = 2343, + [2431] = 2431, [2432] = 2432, - [2433] = 2248, - [2434] = 2393, + [2433] = 2402, + [2434] = 2401, [2435] = 2435, - [2436] = 2436, - [2437] = 2272, - [2438] = 2438, - [2439] = 2315, - [2440] = 335, + [2436] = 2401, + [2437] = 2437, + [2438] = 2314, + [2439] = 2293, + [2440] = 2440, [2441] = 2441, - [2442] = 2442, + [2442] = 2402, [2443] = 333, [2444] = 2444, - [2445] = 2445, - [2446] = 2446, - [2447] = 2319, - [2448] = 2416, - [2449] = 2449, - [2450] = 2450, + [2445] = 2405, + [2446] = 2297, + [2447] = 2447, + [2448] = 2448, + [2449] = 2228, + [2450] = 2237, [2451] = 2451, [2452] = 2452, - [2453] = 2453, + [2453] = 2314, [2454] = 2454, [2455] = 2455, - [2456] = 2307, + [2456] = 2456, [2457] = 2457, [2458] = 2458, - [2459] = 319, - [2460] = 319, - [2461] = 2367, - [2462] = 2462, - [2463] = 2322, - [2464] = 2357, - [2465] = 2465, - [2466] = 2412, - [2467] = 2402, - [2468] = 2468, - [2469] = 2469, - [2470] = 2206, - [2471] = 2319, - [2472] = 2472, + [2459] = 2301, + [2460] = 2460, + [2461] = 333, + [2462] = 299, + [2463] = 2463, + [2464] = 2464, + [2465] = 2262, + [2466] = 2466, + [2467] = 2235, + [2468] = 2305, + [2469] = 2229, + [2470] = 2230, + [2471] = 2277, + [2472] = 2306, [2473] = 2473, - [2474] = 2465, + [2474] = 2474, [2475] = 2475, - [2476] = 2207, + [2476] = 2476, [2477] = 2477, - [2478] = 2416, - [2479] = 2416, + [2478] = 2478, + [2479] = 2479, [2480] = 2480, - [2481] = 2481, - [2482] = 2356, - [2483] = 2311, + [2481] = 2349, + [2482] = 2347, + [2483] = 2483, [2484] = 2484, - [2485] = 2358, - [2486] = 2356, - [2487] = 2209, - [2488] = 2204, - [2489] = 310, - [2490] = 2490, - [2491] = 2307, - [2492] = 2352, + [2485] = 2405, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2391, + [2491] = 2412, + [2492] = 2492, [2493] = 2493, - [2494] = 2350, - [2495] = 2495, + [2494] = 2483, + [2495] = 325, [2496] = 2496, - [2497] = 2497, - [2498] = 2343, - [2499] = 2241, - [2500] = 338, - [2501] = 2501, - [2502] = 2502, - [2503] = 2249, - [2504] = 2246, - [2505] = 2416, - [2506] = 2355, - [2507] = 2395, - [2508] = 2508, - [2509] = 2367, - [2510] = 2393, - [2511] = 2309, - [2512] = 2512, - [2513] = 2513, - [2514] = 342, - [2515] = 2515, - [2516] = 2233, - [2517] = 2517, - [2518] = 2232, - [2519] = 2232, - [2520] = 2322, - [2521] = 2521, + [2497] = 2328, + [2498] = 2325, + [2499] = 2499, + [2500] = 2500, + [2501] = 2301, + [2502] = 334, + [2503] = 2412, + [2504] = 2504, + [2505] = 2505, + [2506] = 2476, + [2507] = 2507, + [2508] = 2293, + [2509] = 2308, + [2510] = 2317, + [2511] = 2511, + [2512] = 2316, + [2513] = 2313, + [2514] = 2229, + [2515] = 2294, + [2516] = 2206, + [2517] = 2307, + [2518] = 2207, + [2519] = 2230, + [2520] = 2389, + [2521] = 2321, [2522] = 2522, - [2523] = 2523, - [2524] = 2233, - [2525] = 310, - [2526] = 2526, - [2527] = 2375, - [2528] = 2328, - [2529] = 2529, - [2530] = 2330, - [2531] = 2531, - [2532] = 331, - [2533] = 2357, - [2534] = 2246, - [2535] = 321, - [2536] = 2241, - [2537] = 2309, - [2538] = 2248, - [2539] = 2249, - [2540] = 321, + [2523] = 2304, + [2524] = 2524, + [2525] = 2294, + [2526] = 2306, + [2527] = 2405, + [2528] = 2528, + [2529] = 2402, + [2530] = 2530, + [2531] = 2401, + [2532] = 2305, + [2533] = 334, + [2534] = 2205, + [2535] = 2535, + [2536] = 2272, + [2537] = 300, + [2538] = 2412, + [2539] = 314, + [2540] = 2307, [2541] = 2541, - [2542] = 2341, - [2543] = 342, - [2544] = 305, - [2545] = 2545, - [2546] = 2416, - [2547] = 2547, - [2548] = 2548, - [2549] = 331, + [2542] = 325, + [2543] = 2235, + [2544] = 2237, + [2545] = 2228, + [2546] = 2350, + [2547] = 2277, + [2548] = 322, + [2549] = 2405, [2550] = 2550, - [2551] = 2393, - [2552] = 2490, - [2553] = 2484, + [2551] = 2297, + [2552] = 2279, + [2553] = 2313, [2554] = 2554, - [2555] = 2315, - [2556] = 2316, - [2557] = 2238, - [2558] = 2558, - [2559] = 2317, - [2560] = 2560, - [2561] = 2561, - [2562] = 2341, - [2563] = 2272, - [2564] = 2330, - [2565] = 2565, - [2566] = 2566, - [2567] = 2395, - [2568] = 2568, - [2569] = 2231, - [2570] = 2570, - [2571] = 2328, - [2572] = 2572, - [2573] = 2412, - [2574] = 2375, - [2575] = 2402, - [2576] = 2412, - [2577] = 2577, - [2578] = 2379, + [2555] = 2555, + [2556] = 2391, + [2557] = 2557, + [2558] = 2349, + [2559] = 2316, + [2560] = 2347, + [2561] = 300, + [2562] = 304, + [2563] = 2563, + [2564] = 2317, + [2565] = 2350, + [2566] = 2209, + [2567] = 2391, + [2568] = 2412, + [2569] = 2321, + [2570] = 2208, + [2571] = 2288, + [2572] = 2262, + [2573] = 2325, + [2574] = 2574, + [2575] = 299, + [2576] = 2328, + [2577] = 322, + [2578] = 2213, [2579] = 2579, [2580] = 2580, [2581] = 2581, - [2582] = 2484, - [2583] = 2465, - [2584] = 2309, - [2585] = 2585, - [2586] = 2241, - [2587] = 2587, - [2588] = 2588, - [2589] = 2589, - [2590] = 2222, - [2591] = 2581, - [2592] = 2592, - [2593] = 2210, - [2594] = 2212, - [2595] = 2595, + [2582] = 2582, + [2583] = 2574, + [2584] = 2217, + [2585] = 2216, + [2586] = 2230, + [2587] = 2277, + [2588] = 2349, + [2589] = 2347, + [2590] = 2333, + [2591] = 2591, + [2592] = 2008, + [2593] = 2293, + [2594] = 2297, + [2595] = 2301, [2596] = 2596, - [2597] = 2597, - [2598] = 2225, - [2599] = 2311, - [2600] = 2561, - [2601] = 2601, - [2602] = 2007, - [2603] = 2355, - [2604] = 2589, - [2605] = 2383, - [2606] = 2561, - [2607] = 2589, - [2608] = 2358, - [2609] = 2356, - [2610] = 2589, - [2611] = 2352, - [2612] = 2350, - [2613] = 2343, - [2614] = 2248, - [2615] = 2238, - [2616] = 2231, - [2617] = 2272, - [2618] = 2310, - [2619] = 2379, - [2620] = 2215, - [2621] = 2621, - [2622] = 2581, - [2623] = 2577, + [2597] = 2582, + [2598] = 2598, + [2599] = 2599, + [2600] = 2328, + [2601] = 2325, + [2602] = 2598, + [2603] = 2603, + [2604] = 2321, + [2605] = 2582, + [2606] = 2308, + [2607] = 2229, + [2608] = 2317, + [2609] = 2316, + [2610] = 2313, + [2611] = 2307, + [2612] = 2218, + [2613] = 2212, + [2614] = 2476, + [2615] = 2304, + [2616] = 2596, + [2617] = 2294, + [2618] = 2618, + [2619] = 2582, + [2620] = 2237, + [2621] = 2226, + [2622] = 2228, + [2623] = 2603, [2624] = 2624, - [2625] = 2595, - [2626] = 2601, - [2627] = 2220, - [2628] = 2628, - [2629] = 2601, - [2630] = 2630, + [2625] = 2625, + [2626] = 2303, + [2627] = 2222, + [2628] = 2262, + [2629] = 2582, + [2630] = 2342, [2631] = 2631, - [2632] = 2632, - [2633] = 2595, - [2634] = 2581, - [2635] = 2635, - [2636] = 2490, + [2632] = 2235, + [2633] = 2633, + [2634] = 2389, + [2635] = 2483, + [2636] = 2223, [2637] = 2637, - [2638] = 2589, - [2639] = 2015, - [2640] = 2640, - [2641] = 2641, - [2642] = 2012, - [2643] = 2595, - [2644] = 2367, - [2645] = 2322, - [2646] = 2595, - [2647] = 2357, - [2648] = 2648, - [2649] = 2333, - [2650] = 2632, - [2651] = 2651, - [2652] = 2341, + [2638] = 2333, + [2639] = 2342, + [2640] = 2305, + [2641] = 2306, + [2642] = 2633, + [2643] = 1969, + [2644] = 2644, + [2645] = 2645, + [2646] = 2618, + [2647] = 2633, + [2648] = 2582, + [2649] = 2649, + [2650] = 2650, + [2651] = 2618, + [2652] = 2350, [2653] = 2653, - [2654] = 2581, + [2654] = 2375, [2655] = 2655, - [2656] = 2595, - [2657] = 2630, - [2658] = 2330, - [2659] = 2383, - [2660] = 2218, - [2661] = 2601, - [2662] = 2214, - [2663] = 2379, - [2664] = 2383, - [2665] = 2648, - [2666] = 2328, - [2667] = 2246, - [2668] = 2375, - [2669] = 2249, - [2670] = 2641, - [2671] = 2233, - [2672] = 2307, - [2673] = 2319, - [2674] = 2317, - [2675] = 2232, - [2676] = 2316, - [2677] = 2315, - [2678] = 2678, - [2679] = 2601, + [2656] = 2624, + [2657] = 2657, + [2658] = 2658, + [2659] = 2574, + [2660] = 2618, + [2661] = 2272, + [2662] = 2279, + [2663] = 2288, + [2664] = 2618, + [2665] = 2314, + [2666] = 2666, + [2667] = 1998, + [2668] = 2624, + [2669] = 2669, + [2670] = 2670, + [2671] = 2633, + [2672] = 2672, + [2673] = 2333, + [2674] = 2582, + [2675] = 2580, + [2676] = 2633, + [2677] = 2624, + [2678] = 2342, + [2679] = 2644, [2680] = 2680, - [2681] = 2595, - [2682] = 2572, - [2683] = 2260, - [2684] = 2288, - [2685] = 2290, - [2686] = 2291, - [2687] = 2294, - [2688] = 2297, - [2689] = 2298, - [2690] = 2301, - [2691] = 2302, - [2692] = 1038, - [2693] = 2305, - [2694] = 2308, + [2681] = 2681, + [2682] = 2624, + [2683] = 2357, + [2684] = 2350, + [2685] = 2685, + [2686] = 2686, + [2687] = 2687, + [2688] = 2688, + [2689] = 2375, + [2690] = 2418, + [2691] = 2691, + [2692] = 1015, + [2693] = 2685, + [2694] = 2333, [2695] = 2695, - [2696] = 2490, - [2697] = 2572, - [2698] = 2585, + [2696] = 2342, + [2697] = 2697, + [2698] = 2296, [2699] = 2699, - [2700] = 2570, - [2701] = 2413, - [2702] = 2332, - [2703] = 2329, - [2704] = 2704, - [2705] = 2304, - [2706] = 2292, - [2707] = 2289, - [2708] = 2383, - [2709] = 2286, - [2710] = 2378, - [2711] = 2413, - [2712] = 2285, - [2713] = 2570, - [2714] = 2307, - [2715] = 2284, - [2716] = 2716, - [2717] = 2369, - [2718] = 2365, - [2719] = 2370, - [2720] = 2363, - [2721] = 2359, - [2722] = 2351, - [2723] = 2348, - [2724] = 2724, - [2725] = 2347, - [2726] = 2374, - [2727] = 2727, - [2728] = 2283, - [2729] = 2342, - [2730] = 2340, - [2731] = 2335, - [2732] = 2334, - [2733] = 1037, - [2734] = 2282, - [2735] = 2331, - [2736] = 2326, - [2737] = 2325, - [2738] = 2324, - [2739] = 294, - [2740] = 2740, - [2741] = 2740, - [2742] = 2236, - [2743] = 2280, - [2744] = 2585, - [2745] = 2745, - [2746] = 2570, - [2747] = 2278, - [2748] = 2370, - [2749] = 2277, - [2750] = 2273, - [2751] = 2695, - [2752] = 2386, - [2753] = 2338, + [2700] = 2700, + [2701] = 2701, + [2702] = 2702, + [2703] = 1024, + [2704] = 2701, + [2705] = 2688, + [2706] = 2323, + [2707] = 2326, + [2708] = 2708, + [2709] = 1029, + [2710] = 2428, + [2711] = 2711, + [2712] = 2681, + [2713] = 2713, + [2714] = 2272, + [2715] = 2261, + [2716] = 2279, + [2717] = 2288, + [2718] = 2431, + [2719] = 2685, + [2720] = 2314, + [2721] = 2275, + [2722] = 291, + [2723] = 1037, + [2724] = 2431, + [2725] = 2343, + [2726] = 1043, + [2727] = 2276, + [2728] = 2375, + [2729] = 2685, + [2730] = 2278, + [2731] = 2280, + [2732] = 2281, + [2733] = 2282, + [2734] = 2283, + [2735] = 2342, + [2736] = 2418, + [2737] = 2286, + [2738] = 2287, + [2739] = 2291, + [2740] = 2295, + [2741] = 291, + [2742] = 2299, + [2743] = 2302, + [2744] = 2318, + [2745] = 2319, + [2746] = 2320, + [2747] = 2322, + [2748] = 2346, + [2749] = 2324, + [2750] = 2327, + [2751] = 2330, + [2752] = 2334, + [2753] = 2753, [2754] = 2339, - [2755] = 2755, - [2756] = 2385, - [2757] = 2757, - [2758] = 2241, - [2759] = 2309, - [2760] = 2355, - [2761] = 2367, - [2762] = 2322, - [2763] = 2384, - [2764] = 2764, - [2765] = 2357, - [2766] = 2341, - [2767] = 2767, - [2768] = 2330, - [2769] = 2268, - [2770] = 2328, - [2771] = 2375, - [2772] = 2267, - [2773] = 2319, - [2774] = 2266, - [2775] = 1040, - [2776] = 2317, - [2777] = 2265, - [2778] = 2316, - [2779] = 2757, - [2780] = 2780, - [2781] = 2264, - [2782] = 2695, - [2783] = 2379, - [2784] = 2241, - [2785] = 2309, - [2786] = 2355, - [2787] = 2364, - [2788] = 2362, - [2789] = 2367, - [2790] = 2322, - [2791] = 2357, + [2755] = 2340, + [2756] = 2341, + [2757] = 2344, + [2758] = 2680, + [2759] = 2759, + [2760] = 2701, + [2761] = 2246, + [2762] = 2384, + [2763] = 2483, + [2764] = 2377, + [2765] = 2333, + [2766] = 2766, + [2767] = 2374, + [2768] = 2372, + [2769] = 2358, + [2770] = 2352, + [2771] = 2359, + [2772] = 2356, + [2773] = 2354, + [2774] = 2386, + [2775] = 2383, + [2776] = 2369, + [2777] = 2367, + [2778] = 2361, + [2779] = 2353, + [2780] = 2351, + [2781] = 2338, + [2782] = 2336, + [2783] = 2701, + [2784] = 2335, + [2785] = 2312, + [2786] = 2311, + [2787] = 2787, + [2788] = 2275, + [2789] = 2789, + [2790] = 2790, + [2791] = 2791, [2792] = 2792, - [2793] = 2248, - [2794] = 2361, - [2795] = 2341, - [2796] = 2262, - [2797] = 2330, - [2798] = 2328, - [2799] = 2287, - [2800] = 2375, - [2801] = 2307, - [2802] = 2319, - [2803] = 2317, - [2804] = 2316, - [2805] = 2805, - [2806] = 2315, - [2807] = 1036, - [2808] = 2310, - [2809] = 2315, - [2810] = 2232, - [2811] = 2232, - [2812] = 2233, - [2813] = 2327, - [2814] = 2246, - [2815] = 2233, - [2816] = 2246, - [2817] = 2249, - [2818] = 2258, - [2819] = 2257, - [2820] = 2256, - [2821] = 2343, - [2822] = 2350, - [2823] = 2352, - [2824] = 2740, - [2825] = 2249, - [2826] = 2356, - [2827] = 2358, - [2828] = 2740, - [2829] = 2255, - [2830] = 2704, - [2831] = 2343, - [2832] = 2251, - [2833] = 2350, - [2834] = 2352, - [2835] = 2740, - [2836] = 2695, - [2837] = 2311, - [2838] = 2413, - [2839] = 2356, - [2840] = 2303, - [2841] = 2271, - [2842] = 2704, - [2843] = 2704, - [2844] = 2296, - [2845] = 2295, - [2846] = 2281, - [2847] = 2279, - [2848] = 2276, - [2849] = 2270, - [2850] = 2378, - [2851] = 2269, - [2852] = 2240, - [2853] = 2237, - [2854] = 2227, - [2855] = 2349, - [2856] = 2263, - [2857] = 2261, - [2858] = 2254, - [2859] = 2253, - [2860] = 2358, - [2861] = 2311, - [2862] = 2680, - [2863] = 2863, - [2864] = 2353, - [2865] = 2252, - [2866] = 2250, - [2867] = 2306, - [2868] = 2372, - [2869] = 2382, - [2870] = 2354, - [2871] = 2360, - [2872] = 2344, - [2873] = 2337, - [2874] = 2272, - [2875] = 2383, - [2876] = 2231, - [2877] = 2572, - [2878] = 2238, - [2879] = 2379, - [2880] = 2336, - [2881] = 2235, - [2882] = 2740, - [2883] = 2248, - [2884] = 2310, - [2885] = 2244, - [2886] = 2259, - [2887] = 294, - [2888] = 2229, - [2889] = 2889, - [2890] = 2318, - [2891] = 2680, - [2892] = 2321, - [2893] = 2863, - [2894] = 2894, - [2895] = 2695, - [2896] = 2896, - [2897] = 2373, - [2898] = 2228, - [2899] = 2380, - [2900] = 2272, - [2901] = 2901, - [2902] = 2695, - [2903] = 2903, - [2904] = 2704, - [2905] = 2704, - [2906] = 2231, - [2907] = 2907, - [2908] = 2383, - [2909] = 2484, - [2910] = 2910, - [2911] = 2911, - [2912] = 2238, - [2913] = 2704, - [2914] = 1031, - [2915] = 2379, - [2916] = 2465, - [2917] = 2917, - [2918] = 2413, - [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 327, - [2923] = 2923, - [2924] = 2640, - [2925] = 2495, - [2926] = 2926, - [2927] = 2927, - [2928] = 328, - [2929] = 296, - [2930] = 2358, - [2931] = 2370, - [2932] = 2566, - [2933] = 2565, - [2934] = 2356, - [2935] = 2919, - [2936] = 337, - [2937] = 340, - [2938] = 2938, + [2793] = 2688, + [2794] = 2753, + [2795] = 2232, + [2796] = 2234, + [2797] = 2239, + [2798] = 2241, + [2799] = 2245, + [2800] = 2428, + [2801] = 2306, + [2802] = 2248, + [2803] = 2247, + [2804] = 2242, + [2805] = 2233, + [2806] = 2290, + [2807] = 2329, + [2808] = 2331, + [2809] = 2688, + [2810] = 2345, + [2811] = 2368, + [2812] = 2376, + [2813] = 2274, + [2814] = 2269, + [2815] = 2231, + [2816] = 2236, + [2817] = 2243, + [2818] = 2244, + [2819] = 2342, + [2820] = 2305, + [2821] = 2333, + [2822] = 2262, + [2823] = 2228, + [2824] = 2237, + [2825] = 2825, + [2826] = 2235, + [2827] = 2294, + [2828] = 2304, + [2829] = 2307, + [2830] = 2313, + [2831] = 2316, + [2832] = 2314, + [2833] = 2306, + [2834] = 2317, + [2835] = 2321, + [2836] = 2325, + [2837] = 2328, + [2838] = 2347, + [2839] = 2349, + [2840] = 2305, + [2841] = 2277, + [2842] = 2230, + [2843] = 2685, + [2844] = 2293, + [2845] = 2701, + [2846] = 2297, + [2847] = 2301, + [2848] = 2308, + [2849] = 2229, + [2850] = 2256, + [2851] = 2257, + [2852] = 2262, + [2853] = 2350, + [2854] = 2258, + [2855] = 2362, + [2856] = 2343, + [2857] = 2431, + [2858] = 2681, + [2859] = 2418, + [2860] = 2428, + [2861] = 2228, + [2862] = 2237, + [2863] = 2235, + [2864] = 2300, + [2865] = 2298, + [2866] = 2272, + [2867] = 2279, + [2868] = 2288, + [2869] = 2294, + [2870] = 2371, + [2871] = 2304, + [2872] = 2307, + [2873] = 2313, + [2874] = 2316, + [2875] = 2317, + [2876] = 2321, + [2877] = 2325, + [2878] = 2328, + [2879] = 2378, + [2880] = 2379, + [2881] = 2380, + [2882] = 2381, + [2883] = 2385, + [2884] = 2347, + [2885] = 2388, + [2886] = 2240, + [2887] = 2263, + [2888] = 2264, + [2889] = 2349, + [2890] = 2360, + [2891] = 2277, + [2892] = 2266, + [2893] = 2230, + [2894] = 2267, + [2895] = 2363, + [2896] = 2688, + [2897] = 2366, + [2898] = 2688, + [2899] = 2270, + [2900] = 2271, + [2901] = 2273, + [2902] = 2680, + [2903] = 2759, + [2904] = 2249, + [2905] = 2387, + [2906] = 2365, + [2907] = 2293, + [2908] = 2297, + [2909] = 2301, + [2910] = 2476, + [2911] = 2308, + [2912] = 2912, + [2913] = 2913, + [2914] = 2229, + [2915] = 2701, + [2916] = 2701, + [2917] = 2389, + [2918] = 2685, + [2919] = 2473, + [2920] = 2237, + [2921] = 2428, + [2922] = 2413, + [2923] = 2419, + [2924] = 2541, + [2925] = 2420, + [2926] = 2421, + [2927] = 2422, + [2928] = 2328, + [2929] = 2408, + [2930] = 2325, + [2931] = 2931, + [2932] = 2428, + [2933] = 2321, + [2934] = 2934, + [2935] = 2935, + [2936] = 2417, + [2937] = 2317, + [2938] = 2680, [2939] = 2939, - [2940] = 2547, - [2941] = 2352, - [2942] = 2942, - [2943] = 2350, - [2944] = 2475, + [2940] = 298, + [2941] = 2409, + [2942] = 2404, + [2943] = 2943, + [2944] = 2316, [2945] = 2343, - [2946] = 2919, - [2947] = 2926, - [2948] = 2370, + [2946] = 2431, + [2947] = 2670, + [2948] = 2313, [2949] = 2949, [2950] = 2950, - [2951] = 2919, + [2951] = 2951, [2952] = 2952, [2953] = 2953, [2954] = 2954, [2955] = 2955, [2956] = 2956, - [2957] = 2432, - [2958] = 2311, - [2959] = 2959, - [2960] = 2493, - [2961] = 2961, - [2962] = 2962, + [2957] = 297, + [2958] = 2958, + [2959] = 2954, + [2960] = 2307, + [2961] = 2953, + [2962] = 2304, [2963] = 2963, - [2964] = 2964, - [2965] = 2965, - [2966] = 2462, - [2967] = 2473, - [2968] = 2457, - [2969] = 2453, - [2970] = 2523, - [2971] = 2952, - [2972] = 2445, - [2973] = 303, - [2974] = 2926, - [2975] = 2444, + [2964] = 295, + [2965] = 2489, + [2966] = 2966, + [2967] = 2967, + [2968] = 2953, + [2969] = 2969, + [2970] = 2970, + [2971] = 2954, + [2972] = 2972, + [2973] = 2973, + [2974] = 2294, + [2975] = 2975, [2976] = 2976, - [2977] = 2442, - [2978] = 2441, - [2979] = 2640, - [2980] = 2980, - [2981] = 2413, - [2982] = 2568, - [2983] = 2438, - [2984] = 2378, - [2985] = 2435, - [2986] = 2426, - [2987] = 2425, + [2977] = 2977, + [2978] = 2400, + [2979] = 2399, + [2980] = 2398, + [2981] = 2981, + [2982] = 2982, + [2983] = 2480, + [2984] = 2954, + [2985] = 2275, + [2986] = 2953, + [2987] = 2333, [2988] = 2988, - [2989] = 2424, - [2990] = 2990, - [2991] = 332, - [2992] = 2950, - [2993] = 2911, - [2994] = 330, - [2995] = 2995, - [2996] = 329, - [2997] = 2997, - [2998] = 2404, - [2999] = 320, - [3000] = 312, - [3001] = 311, - [3002] = 3002, - [3003] = 2272, - [3004] = 2231, - [3005] = 2585, - [3006] = 2238, - [3007] = 2403, - [3008] = 2397, - [3009] = 2248, - [3010] = 2919, - [3011] = 2926, - [3012] = 2640, - [3013] = 3013, - [3014] = 3014, - [3015] = 2396, - [3016] = 2391, - [3017] = 2446, - [3018] = 2920, - [3019] = 3019, - [3020] = 2911, - [3021] = 330, - [3022] = 2420, - [3023] = 332, - [3024] = 2421, - [3025] = 2512, - [3026] = 3002, - [3027] = 3027, - [3028] = 2427, - [3029] = 2952, - [3030] = 3030, - [3031] = 2399, - [3032] = 2249, - [3033] = 2246, - [3034] = 2233, - [3035] = 2430, - [3036] = 2414, - [3037] = 2232, - [3038] = 2561, - [3039] = 2513, - [3040] = 315, - [3041] = 2585, - [3042] = 2450, - [3043] = 2451, - [3044] = 2452, - [3045] = 2454, - [3046] = 2926, - [3047] = 311, - [3048] = 2919, - [3049] = 3049, - [3050] = 2572, - [3051] = 2383, - [3052] = 2315, - [3053] = 2496, - [3054] = 312, - [3055] = 2316, - [3056] = 2317, - [3057] = 2529, - [3058] = 2526, - [3059] = 2522, - [3060] = 2521, - [3061] = 3014, - [3062] = 2515, - [3063] = 337, - [3064] = 3064, - [3065] = 2405, - [3066] = 2319, - [3067] = 2497, - [3068] = 2952, - [3069] = 2501, - [3070] = 2307, - [3071] = 2375, - [3072] = 2449, - [3073] = 2502, - [3074] = 3074, - [3075] = 2508, - [3076] = 2490, - [3077] = 2953, - [3078] = 2952, - [3079] = 2328, - [3080] = 2330, - [3081] = 3081, - [3082] = 3082, - [3083] = 2341, - [3084] = 2952, - [3085] = 2541, - [3086] = 3086, - [3087] = 2545, - [3088] = 2585, - [3089] = 2680, - [3090] = 2248, - [3091] = 2357, - [3092] = 2322, - [3093] = 2241, - [3094] = 2436, - [3095] = 2367, - [3096] = 3096, - [3097] = 2418, - [3098] = 3098, - [3099] = 2309, - [3100] = 2238, - [3101] = 2355, - [3102] = 2388, - [3103] = 2481, - [3104] = 2367, - [3105] = 2480, - [3106] = 2322, - [3107] = 2357, - [3108] = 2341, - [3109] = 2330, - [3110] = 2328, - [3111] = 327, - [3112] = 2389, - [3113] = 2375, - [3114] = 2307, - [3115] = 2319, - [3116] = 2231, - [3117] = 3117, - [3118] = 2458, - [3119] = 2952, - [3120] = 2317, - [3121] = 3086, - [3122] = 2316, - [3123] = 2272, - [3124] = 2311, - [3125] = 3125, - [3126] = 2358, - [3127] = 3127, - [3128] = 2356, - [3129] = 2315, - [3130] = 2952, - [3131] = 2232, - [3132] = 2352, - [3133] = 2233, - [3134] = 2246, - [3135] = 2926, - [3136] = 3136, - [3137] = 2952, - [3138] = 3138, - [3139] = 303, - [3140] = 2560, - [3141] = 3141, - [3142] = 3142, - [3143] = 2558, - [3144] = 2355, - [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 2554, - [3149] = 328, - [3150] = 3150, - [3151] = 2350, - [3152] = 2550, - [3153] = 3027, - [3154] = 3014, - [3155] = 3027, - [3156] = 3156, - [3157] = 3027, - [3158] = 3014, - [3159] = 2249, - [3160] = 2548, - [3161] = 3117, - [3162] = 315, - [3163] = 2343, - [3164] = 3027, - [3165] = 3014, - [3166] = 2379, - [3167] = 2531, - [3168] = 2517, - [3169] = 2383, - [3170] = 296, - [3171] = 340, - [3172] = 3172, - [3173] = 2241, - [3174] = 2309, - [3175] = 2465, - [3176] = 2484, - [3177] = 2919, - [3178] = 2926, - [3179] = 3179, - [3180] = 2572, - [3181] = 329, - [3182] = 320, - [3183] = 2379, - [3184] = 3184, - [3185] = 2997, - [3186] = 2383, - [3187] = 2352, + [2989] = 2457, + [2990] = 2275, + [2991] = 2397, + [2992] = 2992, + [2993] = 2993, + [2994] = 2994, + [2995] = 2342, + [2996] = 2396, + [2997] = 2557, + [2998] = 2235, + [2999] = 2228, + [3000] = 2394, + [3001] = 3001, + [3002] = 2955, + [3003] = 2393, + [3004] = 2563, + [3005] = 2429, + [3006] = 2670, + [3007] = 2437, + [3008] = 3008, + [3009] = 2447, + [3010] = 2448, + [3011] = 2454, + [3012] = 3012, + [3013] = 2487, + [3014] = 2458, + [3015] = 2350, + [3016] = 2460, + [3017] = 2955, + [3018] = 315, + [3019] = 336, + [3020] = 2333, + [3021] = 321, + [3022] = 2528, + [3023] = 336, + [3024] = 2342, + [3025] = 321, + [3026] = 2524, + [3027] = 2511, + [3028] = 2507, + [3029] = 2505, + [3030] = 331, + [3031] = 3031, + [3032] = 3032, + [3033] = 2913, + [3034] = 2230, + [3035] = 2277, + [3036] = 3036, + [3037] = 2504, + [3038] = 3038, + [3039] = 2423, + [3040] = 2424, + [3041] = 2466, + [3042] = 331, + [3043] = 320, + [3044] = 2955, + [3045] = 2475, + [3046] = 2228, + [3047] = 2463, + [3048] = 2500, + [3049] = 2484, + [3050] = 306, + [3051] = 2479, + [3052] = 2478, + [3053] = 3053, + [3054] = 2955, + [3055] = 3055, + [3056] = 2554, + [3057] = 2488, + [3058] = 2441, + [3059] = 2955, + [3060] = 2492, + [3061] = 2493, + [3062] = 2982, + [3063] = 2981, + [3064] = 2456, + [3065] = 312, + [3066] = 315, + [3067] = 2262, + [3068] = 3068, + [3069] = 3068, + [3070] = 2455, + [3071] = 2967, + [3072] = 2955, + [3073] = 2935, + [3074] = 2403, + [3075] = 2555, + [3076] = 2496, + [3077] = 2293, + [3078] = 2297, + [3079] = 2301, + [3080] = 2430, + [3081] = 2432, + [3082] = 312, + [3083] = 2308, + [3084] = 2229, + [3085] = 2486, + [3086] = 2955, + [3087] = 2349, + [3088] = 3088, + [3089] = 2953, + [3090] = 2347, + [3091] = 2954, + [3092] = 318, + [3093] = 2982, + [3094] = 2314, + [3095] = 2954, + [3096] = 2953, + [3097] = 2444, + [3098] = 2407, + [3099] = 2681, + [3100] = 3100, + [3101] = 2288, + [3102] = 3102, + [3103] = 2306, + [3104] = 343, + [3105] = 2279, + [3106] = 2981, + [3107] = 3107, + [3108] = 3108, + [3109] = 2305, + [3110] = 3036, + [3111] = 2262, + [3112] = 2982, + [3113] = 3113, + [3114] = 326, + [3115] = 3115, + [3116] = 2981, + [3117] = 2464, + [3118] = 2954, + [3119] = 2982, + [3120] = 2981, + [3121] = 2237, + [3122] = 3122, + [3123] = 2681, + [3124] = 2953, + [3125] = 2235, + [3126] = 2389, + [3127] = 2272, + [3128] = 3128, + [3129] = 2350, + [3130] = 2476, + [3131] = 3131, + [3132] = 2272, + [3133] = 2279, + [3134] = 2288, + [3135] = 2314, + [3136] = 343, + [3137] = 2574, + [3138] = 2229, + [3139] = 2305, + [3140] = 3140, + [3141] = 3088, + [3142] = 2530, + [3143] = 306, + [3144] = 2483, + [3145] = 2474, + [3146] = 2294, + [3147] = 320, + [3148] = 2304, + [3149] = 2913, + [3150] = 2307, + [3151] = 2313, + [3152] = 295, + [3153] = 3153, + [3154] = 3032, + [3155] = 326, + [3156] = 2328, + [3157] = 2308, + [3158] = 2316, + [3159] = 2317, + [3160] = 2321, + [3161] = 2325, + [3162] = 2550, + [3163] = 3163, + [3164] = 2431, + [3165] = 2943, + [3166] = 3166, + [3167] = 2670, + [3168] = 2347, + [3169] = 2349, + [3170] = 2306, + [3171] = 3171, + [3172] = 2277, + [3173] = 2230, + [3174] = 2293, + [3175] = 3175, + [3176] = 2297, + [3177] = 2477, + [3178] = 2535, + [3179] = 2955, + [3180] = 318, + [3181] = 2301, + [3182] = 298, + [3183] = 297, + [3184] = 2522, + [3185] = 2681, + [3186] = 3186, + [3187] = 2347, [3188] = 3188, - [3189] = 2238, - [3190] = 2585, - [3191] = 2322, - [3192] = 2413, - [3193] = 2379, - [3194] = 3194, - [3195] = 2570, - [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 3199, - [3200] = 3200, - [3201] = 3200, - [3202] = 3202, - [3203] = 2367, + [3189] = 2428, + [3190] = 2645, + [3191] = 2333, + [3192] = 2342, + [3193] = 3193, + [3194] = 2681, + [3195] = 2275, + [3196] = 2305, + [3197] = 2262, + [3198] = 2306, + [3199] = 2228, + [3200] = 2237, + [3201] = 2235, + [3202] = 2294, + [3203] = 2325, [3204] = 3204, - [3205] = 2355, - [3206] = 2465, - [3207] = 2231, - [3208] = 3208, - [3209] = 2272, - [3210] = 2309, - [3211] = 3198, - [3212] = 2248, - [3213] = 2241, - [3214] = 2357, - [3215] = 2341, - [3216] = 2624, - [3217] = 2585, - [3218] = 3218, - [3219] = 2370, + [3205] = 2913, + [3206] = 2288, + [3207] = 3207, + [3208] = 2304, + [3209] = 2343, + [3210] = 3210, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, + [3214] = 3214, + [3215] = 3215, + [3216] = 2681, + [3217] = 2431, + [3218] = 2313, + [3219] = 3219, [3220] = 3220, - [3221] = 2911, - [3222] = 3200, - [3223] = 3223, - [3224] = 2328, - [3225] = 3225, - [3226] = 2378, - [3227] = 3227, - [3228] = 2311, - [3229] = 2375, - [3230] = 3230, - [3231] = 2330, - [3232] = 3232, - [3233] = 3233, - [3234] = 3200, - [3235] = 2307, - [3236] = 3200, - [3237] = 2585, - [3238] = 3196, - [3239] = 2319, - [3240] = 3197, - [3241] = 2317, - [3242] = 2358, - [3243] = 2356, - [3244] = 3244, - [3245] = 2572, - [3246] = 2350, - [3247] = 3200, - [3248] = 2343, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3233, + [3221] = 2316, + [3222] = 2317, + [3223] = 2375, + [3224] = 2321, + [3225] = 3204, + [3226] = 2314, + [3227] = 2307, + [3228] = 2328, + [3229] = 2349, + [3230] = 2277, + [3231] = 2279, + [3232] = 2272, + [3233] = 2230, + [3234] = 3211, + [3235] = 2476, + [3236] = 2681, + [3237] = 3237, + [3238] = 3211, + [3239] = 3239, + [3240] = 3214, + [3241] = 3241, + [3242] = 3242, + [3243] = 3243, + [3244] = 3211, + [3245] = 2293, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, + [3249] = 2297, + [3250] = 2301, + [3251] = 2308, + [3252] = 2229, [3253] = 3253, - [3254] = 2249, - [3255] = 3253, - [3256] = 2246, - [3257] = 3257, - [3258] = 2233, - [3259] = 2232, - [3260] = 2315, - [3261] = 2310, - [3262] = 2570, - [3263] = 3200, - [3264] = 2316, + [3254] = 3215, + [3255] = 2350, + [3256] = 3211, + [3257] = 3211, + [3258] = 3241, + [3259] = 2418, + [3260] = 3210, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, + [3264] = 2418, [3265] = 3265, - [3266] = 3266, - [3267] = 3267, + [3266] = 3211, + [3267] = 2431, [3268] = 3268, [3269] = 3269, [3270] = 3270, - [3271] = 2490, - [3272] = 2370, - [3273] = 2465, + [3271] = 3271, + [3272] = 3272, + [3273] = 3273, [3274] = 3274, - [3275] = 2484, - [3276] = 3276, - [3277] = 3277, + [3275] = 3275, + [3276] = 2418, + [3277] = 2603, [3278] = 3278, - [3279] = 3279, - [3280] = 3280, + [3279] = 2375, + [3280] = 2389, [3281] = 3281, - [3282] = 3282, + [3282] = 2476, [3283] = 3283, [3284] = 3284, - [3285] = 2370, - [3286] = 2640, - [3287] = 2570, + [3285] = 3285, + [3286] = 3286, + [3287] = 2483, [3288] = 3288, - [3289] = 3289, - [3290] = 2572, + [3289] = 2275, + [3290] = 3290, [3291] = 3291, - [3292] = 2648, - [3293] = 3293, + [3292] = 3292, + [3293] = 2428, [3294] = 3294, [3295] = 3295, - [3296] = 3296, + [3296] = 2670, [3297] = 3297, - [3298] = 2585, + [3298] = 2275, [3299] = 3299, - [3300] = 3300, - [3301] = 2310, + [3300] = 2418, + [3301] = 3301, [3302] = 3302, - [3303] = 2413, + [3303] = 2681, [3304] = 3304, - [3305] = 2570, + [3305] = 3305, [3306] = 3306, - [3307] = 3014, - [3308] = 2954, - [3309] = 3027, - [3310] = 3014, - [3311] = 3027, - [3312] = 3014, - [3313] = 3014, - [3314] = 2220, + [3307] = 3307, + [3308] = 2981, + [3309] = 2982, + [3310] = 3310, + [3311] = 3311, + [3312] = 2988, + [3313] = 2981, + [3314] = 2275, [3315] = 3315, - [3316] = 3027, + [3316] = 2981, [3317] = 3317, [3318] = 3318, - [3319] = 3027, + [3319] = 3319, [3320] = 3320, - [3321] = 3321, - [3322] = 3322, - [3323] = 2370, - [3324] = 3324, - [3325] = 3014, - [3326] = 2490, - [3327] = 3027, - [3328] = 3328, + [3321] = 2982, + [3322] = 2981, + [3323] = 3323, + [3324] = 2275, + [3325] = 2982, + [3326] = 2222, + [3327] = 3286, + [3328] = 2981, [3329] = 3329, - [3330] = 3014, - [3331] = 2465, - [3332] = 3332, - [3333] = 2484, - [3334] = 3027, + [3330] = 3330, + [3331] = 2389, + [3332] = 2982, + [3333] = 2982, + [3334] = 3334, [3335] = 3335, - [3336] = 3014, + [3336] = 3336, [3337] = 3337, - [3338] = 3266, - [3339] = 2370, + [3338] = 3338, + [3339] = 3339, [3340] = 3340, - [3341] = 3341, - [3342] = 2911, - [3343] = 3343, - [3344] = 3344, - [3345] = 3345, - [3346] = 3346, - [3347] = 3027, + [3341] = 2982, + [3342] = 2483, + [3343] = 2981, + [3344] = 2981, + [3345] = 2476, + [3346] = 2913, + [3347] = 2982, [3348] = 3348, [3349] = 3349, - [3350] = 3349, - [3351] = 3349, - [3352] = 3349, - [3353] = 3353, - [3354] = 3349, - [3355] = 3349, - [3356] = 3349, - [3357] = 3349, - [3358] = 3349, - [3359] = 3359, + [3350] = 3350, + [3351] = 3350, + [3352] = 3350, + [3353] = 3350, + [3354] = 3350, + [3355] = 3355, + [3356] = 3350, + [3357] = 3350, + [3358] = 3350, + [3359] = 3350, [3360] = 3360, [3361] = 3361, [3362] = 3362, [3363] = 3363, [3364] = 3364, - [3365] = 3365, + [3365] = 3295, [3366] = 3366, [3367] = 3367, [3368] = 3368, @@ -8029,10 +8029,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3373] = 3373, [3374] = 3374, [3375] = 3375, - [3376] = 331, + [3376] = 3376, [3377] = 3377, [3378] = 3378, - [3379] = 342, + [3379] = 3379, [3380] = 3380, [3381] = 3381, [3382] = 3382, @@ -8045,130 +8045,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3389] = 3389, [3390] = 3390, [3391] = 3391, - [3392] = 3268, - [3393] = 305, + [3392] = 3392, + [3393] = 3393, [3394] = 3394, - [3395] = 3269, - [3396] = 3396, + [3395] = 3395, + [3396] = 299, [3397] = 3397, - [3398] = 3398, - [3399] = 3399, + [3398] = 304, + [3399] = 314, [3400] = 3400, - [3401] = 338, + [3401] = 300, [3402] = 3402, - [3403] = 305, + [3403] = 3403, [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 3407, + [3407] = 1895, [3408] = 3408, [3409] = 3409, [3410] = 3410, - [3411] = 338, + [3411] = 3411, [3412] = 3412, - [3413] = 3413, + [3413] = 314, [3414] = 3414, - [3415] = 3415, + [3415] = 304, [3416] = 3416, - [3417] = 3417, + [3417] = 3294, [3418] = 3418, [3419] = 3419, [3420] = 3420, - [3421] = 3421, - [3422] = 3064, - [3423] = 342, - [3424] = 331, - [3425] = 3425, - [3426] = 2990, - [3427] = 3427, - [3428] = 3125, + [3421] = 3107, + [3422] = 3422, + [3423] = 2992, + [3424] = 3424, + [3425] = 299, + [3426] = 3140, + [3427] = 300, + [3428] = 3428, [3429] = 3429, [3430] = 3430, [3431] = 3431, - [3432] = 3156, + [3432] = 3128, [3433] = 3433, - [3434] = 3196, + [3434] = 3434, [3435] = 3435, [3436] = 3436, - [3437] = 3435, - [3438] = 3249, - [3439] = 3197, - [3440] = 3440, - [3441] = 3204, - [3442] = 3257, - [3443] = 3220, - [3444] = 1907, - [3445] = 3249, - [3446] = 3446, + [3437] = 3214, + [3438] = 3248, + [3439] = 3193, + [3440] = 3239, + [3441] = 3212, + [3442] = 3239, + [3443] = 3215, + [3444] = 3241, + [3445] = 3215, + [3446] = 3261, [3447] = 3447, - [3448] = 3198, - [3449] = 3225, - [3450] = 3198, - [3451] = 3196, - [3452] = 3233, - [3453] = 3225, - [3454] = 3230, - [3455] = 3244, - [3456] = 3197, - [3457] = 3232, - [3458] = 3447, - [3459] = 3251, - [3460] = 3220, - [3461] = 3257, - [3462] = 3233, + [3448] = 3188, + [3449] = 3449, + [3450] = 3247, + [3451] = 3451, + [3452] = 3248, + [3453] = 3210, + [3454] = 3241, + [3455] = 3188, + [3456] = 3449, + [3457] = 3210, + [3458] = 3214, + [3459] = 3447, + [3460] = 3460, + [3461] = 3261, + [3462] = 3207, [3463] = 3463, - [3464] = 3464, - [3465] = 3465, + [3464] = 3213, + [3465] = 1960, [3466] = 3466, [3467] = 3467, [3468] = 3468, - [3469] = 3465, - [3470] = 3464, + [3469] = 3469, + [3470] = 3467, [3471] = 3471, [3472] = 3472, - [3473] = 3473, - [3474] = 3464, - [3475] = 3475, - [3476] = 3475, + [3473] = 3467, + [3474] = 3474, + [3475] = 3474, + [3476] = 3466, [3477] = 3477, - [3478] = 3472, - [3479] = 3465, - [3480] = 3480, - [3481] = 3467, - [3482] = 3471, - [3483] = 3466, - [3484] = 3472, - [3485] = 3465, - [3486] = 3472, + [3478] = 3478, + [3479] = 3468, + [3480] = 3474, + [3481] = 3468, + [3482] = 3477, + [3483] = 3483, + [3484] = 3483, + [3485] = 3485, + [3486] = 3466, [3487] = 3466, - [3488] = 3464, - [3489] = 1946, - [3490] = 3475, - [3491] = 3475, - [3492] = 3471, - [3493] = 3467, + [3488] = 3469, + [3489] = 1929, + [3490] = 3467, + [3491] = 3469, + [3492] = 3466, + [3493] = 3477, [3494] = 3494, - [3495] = 3467, - [3496] = 1935, - [3497] = 3497, - [3498] = 3466, - [3499] = 3475, - [3500] = 3471, - [3501] = 3471, - [3502] = 3467, - [3503] = 3464, - [3504] = 3472, - [3505] = 3464, - [3506] = 3472, - [3507] = 3467, - [3508] = 3508, - [3509] = 3471, - [3510] = 3475, - [3511] = 3465, - [3512] = 3465, - [3513] = 3466, - [3514] = 3466, - [3515] = 3515, + [3495] = 3468, + [3496] = 3469, + [3497] = 3477, + [3498] = 3477, + [3499] = 3474, + [3500] = 3468, + [3501] = 3501, + [3502] = 3483, + [3503] = 3466, + [3504] = 3474, + [3505] = 3505, + [3506] = 3483, + [3507] = 3469, + [3508] = 3468, + [3509] = 3477, + [3510] = 3467, + [3511] = 3483, + [3512] = 3483, + [3513] = 3469, + [3514] = 3467, + [3515] = 3474, [3516] = 3516, [3517] = 3517, [3518] = 3518, @@ -8183,388 +8183,388 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 3530, + [3530] = 3262, [3531] = 3531, - [3532] = 3265, + [3532] = 3532, [3533] = 3533, [3534] = 3534, [3535] = 3535, [3536] = 3536, - [3537] = 3537, - [3538] = 3538, + [3537] = 1971, + [3538] = 2008, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3536, - [3543] = 2012, + [3542] = 3542, + [3543] = 1998, [3544] = 3544, - [3545] = 2007, + [3545] = 3545, [3546] = 3546, [3547] = 3547, - [3548] = 3548, + [3548] = 2009, [3549] = 3549, [3550] = 3550, - [3551] = 2015, + [3551] = 3551, [3552] = 3552, - [3553] = 3549, - [3554] = 3554, - [3555] = 3539, + [3553] = 3553, + [3554] = 3541, + [3555] = 3555, [3556] = 3556, - [3557] = 2014, + [3557] = 3557, [3558] = 3558, - [3559] = 3538, - [3560] = 3560, - [3561] = 3561, + [3559] = 3552, + [3560] = 3551, + [3561] = 3546, [3562] = 3562, - [3563] = 3563, - [3564] = 3564, - [3565] = 3552, + [3563] = 3539, + [3564] = 1969, + [3565] = 3565, [3566] = 3566, [3567] = 3567, [3568] = 3568, - [3569] = 3535, - [3570] = 3570, - [3571] = 3571, + [3569] = 3569, + [3570] = 3562, + [3571] = 3553, [3572] = 3572, [3573] = 3573, - [3574] = 3574, + [3574] = 3549, [3575] = 3575, - [3576] = 3576, + [3576] = 3556, [3577] = 3577, - [3578] = 3548, - [3579] = 3550, + [3578] = 1968, + [3579] = 3566, [3580] = 3580, [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3585, + [3585] = 3550, [3586] = 3586, - [3587] = 3572, - [3588] = 3584, - [3589] = 3556, + [3587] = 3587, + [3588] = 3588, + [3589] = 3565, [3590] = 3590, [3591] = 3591, - [3592] = 3560, + [3592] = 3592, [3593] = 3593, - [3594] = 1966, - [3595] = 1978, + [3594] = 2001, + [3595] = 3595, [3596] = 3596, - [3597] = 2012, - [3598] = 2204, - [3599] = 2209, - [3600] = 2207, - [3601] = 2015, - [3602] = 2007, - [3603] = 339, - [3604] = 324, - [3605] = 2264, - [3606] = 2349, - [3607] = 2262, - [3608] = 2206, - [3609] = 2265, - [3610] = 2284, - [3611] = 2266, - [3612] = 2267, - [3613] = 2268, - [3614] = 2285, - [3615] = 2286, - [3616] = 2287, - [3617] = 2327, - [3618] = 2288, - [3619] = 2258, - [3620] = 2257, - [3621] = 2290, - [3622] = 2291, - [3623] = 2294, - [3624] = 2297, - [3625] = 2298, - [3626] = 2260, - [3627] = 2301, - [3628] = 2302, - [3629] = 2344, - [3630] = 2305, - [3631] = 2308, - [3632] = 2360, - [3633] = 2354, - [3634] = 2372, - [3635] = 2306, - [3636] = 2240, - [3637] = 2353, - [3638] = 2237, - [3639] = 2227, - [3640] = 3640, - [3641] = 3640, + [3597] = 3597, + [3598] = 3598, + [3599] = 1969, + [3600] = 2008, + [3601] = 2206, + [3602] = 2207, + [3603] = 2205, + [3604] = 1998, + [3605] = 327, + [3606] = 338, + [3607] = 2346, + [3608] = 2299, + [3609] = 2344, + [3610] = 2322, + [3611] = 2312, + [3612] = 2311, + [3613] = 2340, + [3614] = 2327, + [3615] = 2338, + [3616] = 2330, + [3617] = 2336, + [3618] = 2335, + [3619] = 2334, + [3620] = 2339, + [3621] = 2209, + [3622] = 2341, + [3623] = 2302, + [3624] = 2324, + [3625] = 2295, + [3626] = 2291, + [3627] = 2287, + [3628] = 2286, + [3629] = 2283, + [3630] = 2354, + [3631] = 2386, + [3632] = 2383, + [3633] = 2369, + [3634] = 2367, + [3635] = 2361, + [3636] = 2282, + [3637] = 2281, + [3638] = 2357, + [3639] = 2353, + [3640] = 2351, + [3641] = 2280, [3642] = 3642, - [3643] = 3640, - [3644] = 2210, - [3645] = 3640, - [3646] = 3640, - [3647] = 3642, - [3648] = 2207, - [3649] = 2326, - [3650] = 2364, - [3651] = 2362, - [3652] = 2292, - [3653] = 2304, - [3654] = 2361, - [3655] = 2329, - [3656] = 2250, - [3657] = 2332, - [3658] = 1038, - [3659] = 2334, - [3660] = 324, - [3661] = 2289, - [3662] = 2222, - [3663] = 2347, - [3664] = 2348, - [3665] = 2209, - [3666] = 2324, - [3667] = 1036, - [3668] = 2384, - [3669] = 1037, - [3670] = 2385, - [3671] = 2386, - [3672] = 2204, - [3673] = 1031, - [3674] = 339, - [3675] = 1040, - [3676] = 2214, - [3677] = 2215, - [3678] = 2225, - [3679] = 2212, - [3680] = 2218, - [3681] = 2228, - [3682] = 2308, - [3683] = 2254, - [3684] = 2277, - [3685] = 2273, - [3686] = 2207, - [3687] = 2209, - [3688] = 2282, - [3689] = 2283, - [3690] = 2303, - [3691] = 3691, - [3692] = 2296, - [3693] = 2295, - [3694] = 3694, - [3695] = 3691, - [3696] = 3696, - [3697] = 3694, - [3698] = 3698, - [3699] = 2281, - [3700] = 3694, - [3701] = 2279, - [3702] = 3702, - [3703] = 3696, - [3704] = 3698, - [3705] = 2261, - [3706] = 3691, - [3707] = 2204, - [3708] = 2280, - [3709] = 3702, - [3710] = 2269, - [3711] = 3702, - [3712] = 3702, - [3713] = 2325, - [3714] = 3702, - [3715] = 3698, - [3716] = 3696, - [3717] = 2253, - [3718] = 2331, + [3643] = 3642, + [3644] = 3644, + [3645] = 3644, + [3646] = 3642, + [3647] = 2212, + [3648] = 3642, + [3649] = 3642, + [3650] = 2207, + [3651] = 2241, + [3652] = 2329, + [3653] = 2236, + [3654] = 1015, + [3655] = 2258, + [3656] = 2257, + [3657] = 2256, + [3658] = 2246, + [3659] = 2365, + [3660] = 2244, + [3661] = 327, + [3662] = 2384, + [3663] = 1024, + [3664] = 338, + [3665] = 1043, + [3666] = 1037, + [3667] = 2226, + [3668] = 2232, + [3669] = 2234, + [3670] = 2245, + [3671] = 2206, + [3672] = 1029, + [3673] = 2377, + [3674] = 2205, + [3675] = 2269, + [3676] = 2239, + [3677] = 2331, + [3678] = 2218, + [3679] = 2213, + [3680] = 2216, + [3681] = 2217, + [3682] = 2223, + [3683] = 3683, + [3684] = 3684, + [3685] = 2360, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 2206, + [3690] = 2207, + [3691] = 3684, + [3692] = 2240, + [3693] = 3684, + [3694] = 2388, + [3695] = 2385, + [3696] = 2205, + [3697] = 2273, + [3698] = 2381, + [3699] = 2380, + [3700] = 2379, + [3701] = 2378, + [3702] = 2271, + [3703] = 2371, + [3704] = 2320, + [3705] = 2270, + [3706] = 2267, + [3707] = 2248, + [3708] = 2326, + [3709] = 2266, + [3710] = 2274, + [3711] = 3683, + [3712] = 2231, + [3713] = 2264, + [3714] = 2263, + [3715] = 2319, + [3716] = 2318, + [3717] = 2247, + [3718] = 2242, [3719] = 2278, - [3720] = 2335, - [3721] = 3702, - [3722] = 2252, - [3723] = 3696, - [3724] = 3698, - [3725] = 2340, - [3726] = 2342, - [3727] = 2337, - [3728] = 2374, - [3729] = 2263, - [3730] = 2351, - [3731] = 2359, - [3732] = 2363, - [3733] = 3694, - [3734] = 2365, - [3735] = 2369, - [3736] = 2306, - [3737] = 2305, - [3738] = 2302, - [3739] = 2301, - [3740] = 2298, - [3741] = 2297, - [3742] = 2294, - [3743] = 2291, - [3744] = 2290, - [3745] = 2288, - [3746] = 2287, - [3747] = 2286, - [3748] = 2285, - [3749] = 2284, - [3750] = 2244, - [3751] = 3691, - [3752] = 2344, - [3753] = 2259, - [3754] = 2360, - [3755] = 2354, - [3756] = 2372, - [3757] = 2206, - [3758] = 2318, - [3759] = 2321, - [3760] = 3691, - [3761] = 3694, - [3762] = 3698, - [3763] = 2373, - [3764] = 2229, - [3765] = 2380, - [3766] = 3696, - [3767] = 2256, - [3768] = 2255, - [3769] = 2251, - [3770] = 3702, - [3771] = 3702, - [3772] = 2268, - [3773] = 2267, - [3774] = 2266, - [3775] = 2265, - [3776] = 2264, - [3777] = 2262, - [3778] = 2260, - [3779] = 2327, - [3780] = 2258, - [3781] = 2257, - [3782] = 3702, - [3783] = 2336, - [3784] = 2271, - [3785] = 2270, - [3786] = 2276, - [3787] = 2240, - [3788] = 2237, - [3789] = 2227, - [3790] = 2349, - [3791] = 2353, - [3792] = 3792, - [3793] = 3793, + [3720] = 2363, + [3721] = 3683, + [3722] = 3683, + [3723] = 2280, + [3724] = 2281, + [3725] = 2282, + [3726] = 3683, + [3727] = 2209, + [3728] = 3683, + [3729] = 3684, + [3730] = 3686, + [3731] = 2243, + [3732] = 3687, + [3733] = 3684, + [3734] = 3683, + [3735] = 3688, + [3736] = 3686, + [3737] = 2283, + [3738] = 2299, + [3739] = 3686, + [3740] = 2311, + [3741] = 2312, + [3742] = 2335, + [3743] = 2336, + [3744] = 2338, + [3745] = 2351, + [3746] = 2353, + [3747] = 2357, + [3748] = 2361, + [3749] = 2367, + [3750] = 2369, + [3751] = 2383, + [3752] = 2386, + [3753] = 2354, + [3754] = 3687, + [3755] = 3688, + [3756] = 2286, + [3757] = 2287, + [3758] = 2291, + [3759] = 2295, + [3760] = 3687, + [3761] = 3683, + [3762] = 2276, + [3763] = 2233, + [3764] = 2290, + [3765] = 3683, + [3766] = 3688, + [3767] = 2345, + [3768] = 2356, + [3769] = 2296, + [3770] = 2323, + [3771] = 2359, + [3772] = 2352, + [3773] = 2358, + [3774] = 2344, + [3775] = 2341, + [3776] = 2340, + [3777] = 2339, + [3778] = 2334, + [3779] = 2330, + [3780] = 2327, + [3781] = 2324, + [3782] = 2346, + [3783] = 2322, + [3784] = 2368, + [3785] = 2387, + [3786] = 2372, + [3787] = 2374, + [3788] = 2376, + [3789] = 2366, + [3790] = 3688, + [3791] = 3687, + [3792] = 3686, + [3793] = 2302, [3794] = 3794, [3795] = 3795, [3796] = 3796, [3797] = 3797, [3798] = 3798, - [3799] = 3799, - [3800] = 3793, + [3799] = 3796, + [3800] = 3800, [3801] = 3801, - [3802] = 3802, + [3802] = 2212, [3803] = 3803, - [3804] = 3793, - [3805] = 3802, + [3804] = 3804, + [3805] = 3805, [3806] = 3806, [3807] = 3807, - [3808] = 3802, + [3808] = 3808, [3809] = 3809, [3810] = 3810, - [3811] = 3793, - [3812] = 3812, - [3813] = 3813, - [3814] = 3814, - [3815] = 3815, - [3816] = 3801, - [3817] = 3801, + [3811] = 3811, + [3812] = 3796, + [3813] = 3796, + [3814] = 3806, + [3815] = 3806, + [3816] = 3805, + [3817] = 3817, [3818] = 3818, [3819] = 3819, [3820] = 3820, - [3821] = 2210, - [3822] = 3802, + [3821] = 3806, + [3822] = 3822, [3823] = 3823, - [3824] = 3801, + [3824] = 3806, [3825] = 3825, - [3826] = 3826, - [3827] = 3802, + [3826] = 3796, + [3827] = 3805, [3828] = 3828, - [3829] = 3801, - [3830] = 3830, + [3829] = 3829, + [3830] = 3805, [3831] = 3831, - [3832] = 3793, + [3832] = 3832, [3833] = 3833, - [3834] = 2258, - [3835] = 3835, - [3836] = 2329, + [3834] = 3805, + [3835] = 2311, + [3836] = 2209, [3837] = 3837, - [3838] = 3838, + [3838] = 2280, [3839] = 3839, - [3840] = 2332, - [3841] = 2386, + [3840] = 3840, + [3841] = 2281, [3842] = 3842, - [3843] = 2385, - [3844] = 3844, - [3845] = 2384, - [3846] = 2015, - [3847] = 2304, - [3848] = 2289, - [3849] = 3835, - [3850] = 3850, - [3851] = 2268, - [3852] = 2267, - [3853] = 2012, - [3854] = 2266, - [3855] = 2265, - [3856] = 2292, - [3857] = 3833, - [3858] = 2264, - [3859] = 2206, - [3860] = 2262, - [3861] = 3861, - [3862] = 2260, - [3863] = 3863, - [3864] = 2327, - [3865] = 3833, - [3866] = 2348, - [3867] = 2257, - [3868] = 2347, - [3869] = 2284, - [3870] = 2344, - [3871] = 2285, - [3872] = 3872, - [3873] = 2286, - [3874] = 2334, - [3875] = 2287, - [3876] = 2288, - [3877] = 2326, - [3878] = 3850, - [3879] = 2324, - [3880] = 2360, - [3881] = 2354, - [3882] = 2222, - [3883] = 3835, - [3884] = 3835, - [3885] = 2372, - [3886] = 2306, - [3887] = 2290, - [3888] = 2353, - [3889] = 2349, - [3890] = 2227, - [3891] = 2291, - [3892] = 3892, - [3893] = 3820, - [3894] = 2294, - [3895] = 2364, - [3896] = 2362, - [3897] = 2237, - [3898] = 2361, - [3899] = 2007, - [3900] = 3833, - [3901] = 2297, - [3902] = 2308, - [3903] = 2305, - [3904] = 2250, - [3905] = 2240, - [3906] = 2302, - [3907] = 2301, - [3908] = 2298, - [3909] = 3909, - [3910] = 3910, - [3911] = 3911, + [3843] = 2282, + [3844] = 2283, + [3845] = 2286, + [3846] = 3839, + [3847] = 1969, + [3848] = 2331, + [3849] = 2234, + [3850] = 2269, + [3851] = 3851, + [3852] = 2236, + [3853] = 3853, + [3854] = 3854, + [3855] = 2287, + [3856] = 2245, + [3857] = 2226, + [3858] = 2291, + [3859] = 2241, + [3860] = 2239, + [3861] = 2295, + [3862] = 3854, + [3863] = 2299, + [3864] = 3864, + [3865] = 2302, + [3866] = 2232, + [3867] = 2244, + [3868] = 1998, + [3869] = 3869, + [3870] = 3870, + [3871] = 2365, + [3872] = 2322, + [3873] = 2346, + [3874] = 2324, + [3875] = 2327, + [3876] = 2330, + [3877] = 2312, + [3878] = 2258, + [3879] = 2257, + [3880] = 2256, + [3881] = 2334, + [3882] = 2339, + [3883] = 2335, + [3884] = 2336, + [3885] = 2338, + [3886] = 2351, + [3887] = 2353, + [3888] = 2340, + [3889] = 2357, + [3890] = 2341, + [3891] = 2361, + [3892] = 2367, + [3893] = 3893, + [3894] = 2369, + [3895] = 2383, + [3896] = 2386, + [3897] = 2344, + [3898] = 2354, + [3899] = 3854, + [3900] = 3839, + [3901] = 3840, + [3902] = 3854, + [3903] = 3903, + [3904] = 2008, + [3905] = 3839, + [3906] = 2384, + [3907] = 3907, + [3908] = 2246, + [3909] = 2329, + [3910] = 2377, + [3911] = 3798, [3912] = 3912, [3913] = 3913, [3914] = 3914, @@ -8577,425 +8577,425 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3921] = 3921, [3922] = 3922, [3923] = 3923, - [3924] = 3924, - [3925] = 2212, - [3926] = 3921, - [3927] = 3927, + [3924] = 2223, + [3925] = 3925, + [3926] = 2213, + [3927] = 3921, [3928] = 3928, - [3929] = 3921, - [3930] = 3915, + [3929] = 3929, + [3930] = 3930, [3931] = 3931, [3932] = 3932, [3933] = 3933, [3934] = 3934, [3935] = 3935, - [3936] = 3912, - [3937] = 3937, - [3938] = 2218, - [3939] = 3915, - [3940] = 3940, - [3941] = 3941, - [3942] = 2210, - [3943] = 3912, - [3944] = 3944, + [3936] = 3916, + [3937] = 3921, + [3938] = 3916, + [3939] = 3939, + [3940] = 3935, + [3941] = 3935, + [3942] = 3921, + [3943] = 3943, + [3944] = 3935, [3945] = 3945, - [3946] = 2215, - [3947] = 3915, + [3946] = 3916, + [3947] = 3947, [3948] = 3948, - [3949] = 3949, + [3949] = 3921, [3950] = 3950, - [3951] = 2225, + [3951] = 3951, [3952] = 3952, [3953] = 3953, - [3954] = 3912, + [3954] = 3954, [3955] = 3955, - [3956] = 3956, - [3957] = 2214, + [3956] = 3935, + [3957] = 3957, [3958] = 3958, [3959] = 3959, [3960] = 3960, - [3961] = 3921, - [3962] = 3912, - [3963] = 3963, + [3961] = 2218, + [3962] = 3962, + [3963] = 2212, [3964] = 3964, - [3965] = 3921, - [3966] = 3966, - [3967] = 2279, - [3968] = 2251, - [3969] = 2256, - [3970] = 2337, - [3971] = 2255, - [3972] = 2283, - [3973] = 2273, - [3974] = 2336, - [3975] = 3975, - [3976] = 2277, - [3977] = 1031, - [3978] = 2278, - [3979] = 3979, - [3980] = 3980, - [3981] = 2250, - [3982] = 2280, - [3983] = 2012, - [3984] = 1038, - [3985] = 2229, - [3986] = 2282, - [3987] = 2222, - [3988] = 2369, - [3989] = 2244, - [3990] = 2365, - [3991] = 2259, - [3992] = 2318, - [3993] = 2321, - [3994] = 2270, - [3995] = 2271, - [3996] = 2373, - [3997] = 2228, - [3998] = 1040, - [3999] = 2380, - [4000] = 2363, - [4001] = 2334, - [4002] = 2348, - [4003] = 4003, - [4004] = 2347, - [4005] = 2359, - [4006] = 2252, - [4007] = 2326, - [4008] = 2007, - [4009] = 2324, - [4010] = 2351, - [4011] = 1037, - [4012] = 2253, - [4013] = 2254, - [4014] = 2261, - [4015] = 2263, - [4016] = 2269, - [4017] = 1036, - [4018] = 2374, - [4019] = 2281, - [4020] = 2295, - [4021] = 2296, - [4022] = 2276, - [4023] = 2303, - [4024] = 2342, - [4025] = 2325, - [4026] = 2331, - [4027] = 2015, - [4028] = 2335, - [4029] = 2340, - [4030] = 4030, - [4031] = 3820, + [3965] = 3965, + [3966] = 2216, + [3967] = 2217, + [3968] = 2387, + [3969] = 2359, + [3970] = 2290, + [3971] = 1043, + [3972] = 2236, + [3973] = 2371, + [3974] = 2233, + [3975] = 2242, + [3976] = 2226, + [3977] = 1024, + [3978] = 3978, + [3979] = 2263, + [3980] = 2271, + [3981] = 2320, + [3982] = 2319, + [3983] = 2318, + [3984] = 2266, + [3985] = 3985, + [3986] = 1037, + [3987] = 2374, + [3988] = 1029, + [3989] = 2378, + [3990] = 2270, + [3991] = 2379, + [3992] = 2366, + [3993] = 3993, + [3994] = 2244, + [3995] = 2296, + [3996] = 2264, + [3997] = 2372, + [3998] = 2267, + [3999] = 2276, + [4000] = 2380, + [4001] = 2381, + [4002] = 1015, + [4003] = 2243, + [4004] = 4004, + [4005] = 2365, + [4006] = 2326, + [4007] = 2323, + [4008] = 2247, + [4009] = 2248, + [4010] = 2385, + [4011] = 2329, + [4012] = 2356, + [4013] = 2008, + [4014] = 2388, + [4015] = 2231, + [4016] = 2278, + [4017] = 1998, + [4018] = 2363, + [4019] = 2273, + [4020] = 2331, + [4021] = 2360, + [4022] = 2274, + [4023] = 4023, + [4024] = 2240, + [4025] = 1969, + [4026] = 2358, + [4027] = 2376, + [4028] = 2368, + [4029] = 2269, + [4030] = 2352, + [4031] = 2345, [4032] = 4032, - [4033] = 2218, - [4034] = 4034, - [4035] = 4035, + [4033] = 4033, + [4034] = 4032, + [4035] = 4032, [4036] = 4036, [4037] = 4037, - [4038] = 4032, + [4038] = 4038, [4039] = 4039, [4040] = 4040, - [4041] = 4041, - [4042] = 4037, + [4041] = 4032, + [4042] = 4042, [4043] = 4043, - [4044] = 2225, - [4045] = 4037, - [4046] = 4034, + [4044] = 4044, + [4045] = 4043, + [4046] = 4043, [4047] = 4047, - [4048] = 4048, + [4048] = 4043, [4049] = 4049, - [4050] = 2212, - [4051] = 4051, - [4052] = 4032, - [4053] = 2214, - [4054] = 4034, - [4055] = 4055, - [4056] = 4032, - [4057] = 4037, - [4058] = 4058, - [4059] = 4049, + [4050] = 2217, + [4051] = 4038, + [4052] = 2216, + [4053] = 2213, + [4054] = 4054, + [4055] = 2223, + [4056] = 4038, + [4057] = 4054, + [4058] = 4038, + [4059] = 4043, [4060] = 4032, - [4061] = 4036, - [4062] = 4032, - [4063] = 4034, - [4064] = 4064, - [4065] = 4034, - [4066] = 4034, - [4067] = 2215, + [4061] = 4061, + [4062] = 4040, + [4063] = 4032, + [4064] = 3798, + [4065] = 4043, + [4066] = 4066, + [4067] = 4067, [4068] = 4068, - [4069] = 2280, + [4069] = 2218, [4070] = 4070, [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 3921, + [4072] = 2384, + [4073] = 2276, + [4074] = 2387, [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 2276, + [4076] = 2240, + [4077] = 2366, + [4078] = 2363, [4079] = 4079, [4080] = 4080, [4081] = 4081, [4082] = 4082, - [4083] = 4083, + [4083] = 2360, [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4083, - [4088] = 4088, - [4089] = 4084, + [4085] = 4075, + [4086] = 2388, + [4087] = 4087, + [4088] = 4081, + [4089] = 4089, [4090] = 4090, - [4091] = 324, - [4092] = 4092, - [4093] = 2303, - [4094] = 4094, - [4095] = 2369, + [4091] = 4091, + [4092] = 4079, + [4093] = 4080, + [4094] = 4082, + [4095] = 2381, [4096] = 4096, - [4097] = 2365, - [4098] = 4096, - [4099] = 2363, - [4100] = 2229, + [4097] = 2380, + [4098] = 4084, + [4099] = 2379, + [4100] = 2378, [4101] = 4101, - [4102] = 4088, - [4103] = 2359, - [4104] = 4073, - [4105] = 2351, - [4106] = 4086, - [4107] = 4088, + [4102] = 4102, + [4103] = 2232, + [4104] = 4104, + [4105] = 4104, + [4106] = 4106, + [4107] = 4070, [4108] = 4108, - [4109] = 4109, - [4110] = 339, - [4111] = 4111, - [4112] = 2374, - [4113] = 2342, - [4114] = 4114, - [4115] = 2361, - [4116] = 4073, - [4117] = 4117, - [4118] = 2340, - [4119] = 4119, - [4120] = 4096, + [4109] = 4039, + [4110] = 4036, + [4111] = 4070, + [4112] = 4106, + [4113] = 2234, + [4114] = 2239, + [4115] = 4115, + [4116] = 4116, + [4117] = 4102, + [4118] = 4118, + [4119] = 4101, + [4120] = 4120, [4121] = 4121, [4122] = 4122, [4123] = 4123, - [4124] = 2335, - [4125] = 4125, + [4124] = 4124, + [4125] = 4070, [4126] = 4126, [4127] = 4127, - [4128] = 1038, - [4129] = 2331, - [4130] = 4096, + [4128] = 2296, + [4129] = 2368, + [4130] = 4090, [4131] = 4131, - [4132] = 4088, - [4133] = 2325, + [4132] = 2241, + [4133] = 2245, [4134] = 4134, - [4135] = 1037, - [4136] = 4073, + [4135] = 4135, + [4136] = 4136, [4137] = 4137, - [4138] = 1036, - [4139] = 4086, - [4140] = 4035, - [4141] = 4086, - [4142] = 4127, - [4143] = 4143, + [4138] = 4096, + [4139] = 4139, + [4140] = 4140, + [4141] = 2318, + [4142] = 2319, + [4143] = 2320, [4144] = 4144, - [4145] = 4108, + [4145] = 4145, [4146] = 4146, [4147] = 4147, - [4148] = 4111, + [4148] = 2376, [4149] = 4149, - [4150] = 4039, - [4151] = 4114, - [4152] = 4070, + [4150] = 4150, + [4151] = 2278, + [4152] = 4152, [4153] = 4153, - [4154] = 4119, - [4155] = 4121, - [4156] = 4144, - [4157] = 2270, + [4154] = 4154, + [4155] = 2246, + [4156] = 3935, + [4157] = 4157, [4158] = 4158, [4159] = 4159, - [4160] = 4160, + [4160] = 2359, [4161] = 4161, - [4162] = 2271, - [4163] = 4127, - [4164] = 4164, - [4165] = 4108, - [4166] = 4166, - [4167] = 4096, + [4162] = 4091, + [4163] = 4163, + [4164] = 4144, + [4165] = 4154, + [4166] = 3935, + [4167] = 4167, [4168] = 4168, - [4169] = 4088, + [4169] = 4169, [4170] = 4170, - [4171] = 4171, + [4171] = 4167, [4172] = 4172, - [4173] = 4084, - [4174] = 4083, - [4175] = 4073, - [4176] = 4176, - [4177] = 4086, - [4178] = 4178, - [4179] = 4127, - [4180] = 2362, - [4181] = 4108, - [4182] = 4166, - [4183] = 4168, - [4184] = 4171, - [4185] = 4172, - [4186] = 4176, - [4187] = 1031, - [4188] = 4178, - [4189] = 4189, - [4190] = 4190, - [4191] = 4191, - [4192] = 1040, - [4193] = 4146, - [4194] = 4194, - [4195] = 4111, - [4196] = 4196, - [4197] = 4197, - [4198] = 4198, - [4199] = 2283, - [4200] = 2282, + [4173] = 2323, + [4174] = 4174, + [4175] = 2326, + [4176] = 3935, + [4177] = 4122, + [4178] = 2231, + [4179] = 4179, + [4180] = 4096, + [4181] = 4181, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 4186, + [4187] = 4104, + [4188] = 4157, + [4189] = 4082, + [4190] = 4080, + [4191] = 2345, + [4192] = 4079, + [4193] = 4090, + [4194] = 2374, + [4195] = 4101, + [4196] = 4102, + [4197] = 4116, + [4198] = 4115, + [4199] = 4199, + [4200] = 4200, [4201] = 4201, - [4202] = 4202, - [4203] = 4203, - [4204] = 4153, - [4205] = 2278, - [4206] = 4114, - [4207] = 4207, - [4208] = 2277, - [4209] = 2273, - [4210] = 4210, - [4211] = 4108, - [4212] = 4123, - [4213] = 3921, - [4214] = 4166, - [4215] = 4215, - [4216] = 4216, - [4217] = 3921, + [4202] = 4152, + [4203] = 2372, + [4204] = 2358, + [4205] = 2352, + [4206] = 4096, + [4207] = 4089, + [4208] = 4070, + [4209] = 4209, + [4210] = 4106, + [4211] = 4089, + [4212] = 1015, + [4213] = 4081, + [4214] = 4214, + [4215] = 2356, + [4216] = 4044, + [4217] = 4217, [4218] = 4218, - [4219] = 4219, - [4220] = 4220, - [4221] = 4221, - [4222] = 4168, - [4223] = 4114, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4171, - [4228] = 2296, - [4229] = 2295, - [4230] = 3921, - [4231] = 2281, - [4232] = 2279, - [4233] = 4233, - [4234] = 4111, - [4235] = 2384, - [4236] = 4236, - [4237] = 2269, - [4238] = 4096, - [4239] = 4051, - [4240] = 2263, - [4241] = 2261, - [4242] = 4088, - [4243] = 2385, - [4244] = 2254, - [4245] = 4084, - [4246] = 4083, - [4247] = 2253, - [4248] = 4073, - [4249] = 2252, - [4250] = 4086, - [4251] = 4127, - [4252] = 2386, - [4253] = 2380, - [4254] = 4108, - [4255] = 4055, - [4256] = 2332, - [4257] = 4166, - [4258] = 4168, - [4259] = 4171, - [4260] = 4172, - [4261] = 4176, - [4262] = 4178, - [4263] = 2329, - [4264] = 3921, - [4265] = 4203, - [4266] = 2256, - [4267] = 2255, - [4268] = 4111, - [4269] = 3921, - [4270] = 4203, - [4271] = 2251, - [4272] = 4114, - [4273] = 4203, - [4274] = 2304, - [4275] = 2292, - [4276] = 4114, - [4277] = 2228, - [4278] = 2289, - [4279] = 2373, - [4280] = 2364, - [4281] = 4172, - [4282] = 4282, - [4283] = 4283, - [4284] = 2321, + [4219] = 2243, + [4220] = 4102, + [4221] = 4084, + [4222] = 4081, + [4223] = 4089, + [4224] = 4090, + [4225] = 4084, + [4226] = 4079, + [4227] = 4080, + [4228] = 4082, + [4229] = 2290, + [4230] = 3935, + [4231] = 3935, + [4232] = 4168, + [4233] = 2233, + [4234] = 1024, + [4235] = 1895, + [4236] = 4104, + [4237] = 4096, + [4238] = 4238, + [4239] = 1029, + [4240] = 4122, + [4241] = 1037, + [4242] = 2385, + [4243] = 4070, + [4244] = 1043, + [4245] = 4245, + [4246] = 4106, + [4247] = 4106, + [4248] = 4248, + [4249] = 4084, + [4250] = 2371, + [4251] = 4084, + [4252] = 2242, + [4253] = 4096, + [4254] = 2247, + [4255] = 2273, + [4256] = 2248, + [4257] = 2377, + [4258] = 4157, + [4259] = 4137, + [4260] = 2271, + [4261] = 4116, + [4262] = 4102, + [4263] = 4122, + [4264] = 4101, + [4265] = 4157, + [4266] = 2270, + [4267] = 4267, + [4268] = 4157, + [4269] = 4269, + [4270] = 4270, + [4271] = 4115, + [4272] = 4218, + [4273] = 3935, + [4274] = 4274, + [4275] = 4275, + [4276] = 3935, + [4277] = 4115, + [4278] = 4278, + [4279] = 4116, + [4280] = 2274, + [4281] = 4281, + [4282] = 2258, + [4283] = 2257, + [4284] = 2256, [4285] = 4285, - [4286] = 2318, - [4287] = 4111, - [4288] = 4288, + [4286] = 4061, + [4287] = 4157, + [4288] = 4106, [4289] = 4289, - [4290] = 4207, - [4291] = 3921, - [4292] = 4101, - [4293] = 2336, - [4294] = 2337, + [4290] = 4102, + [4291] = 4101, + [4292] = 2267, + [4293] = 4104, + [4294] = 4101, [4295] = 4295, - [4296] = 4296, - [4297] = 2244, - [4298] = 2259, - [4299] = 4178, - [4300] = 4176, + [4296] = 327, + [4297] = 4297, + [4298] = 338, + [4299] = 2263, + [4300] = 2264, [4301] = 4301, - [4302] = 4302, + [4302] = 2266, [4303] = 4303, [4304] = 4304, [4305] = 4305, - [4306] = 4306, + [4306] = 4304, [4307] = 4307, [4308] = 4308, - [4309] = 4035, - [4310] = 4039, - [4311] = 4311, + [4309] = 4309, + [4310] = 4310, + [4311] = 4039, [4312] = 4312, - [4313] = 4313, - [4314] = 4302, - [4315] = 4302, - [4316] = 4316, - [4317] = 4302, - [4318] = 4318, + [4313] = 4036, + [4314] = 4304, + [4315] = 4315, + [4316] = 293, + [4317] = 4317, + [4318] = 294, [4319] = 4319, [4320] = 4320, - [4321] = 4311, + [4321] = 4321, [4322] = 4322, - [4323] = 4302, - [4324] = 4320, + [4323] = 4304, + [4324] = 4304, [4325] = 4325, - [4326] = 4311, - [4327] = 4311, - [4328] = 4311, - [4329] = 292, - [4330] = 293, + [4326] = 4304, + [4327] = 4327, + [4328] = 4328, + [4329] = 4329, + [4330] = 4305, [4331] = 4331, - [4332] = 4332, - [4333] = 4333, - [4334] = 4311, - [4335] = 4311, - [4336] = 4311, - [4337] = 4332, - [4338] = 4331, - [4339] = 4302, - [4340] = 4340, - [4341] = 4341, - [4342] = 4342, + [4332] = 4305, + [4333] = 4305, + [4334] = 4334, + [4335] = 4335, + [4336] = 4305, + [4337] = 4327, + [4338] = 4310, + [4339] = 4308, + [4340] = 4304, + [4341] = 4305, + [4342] = 4304, [4343] = 4343, [4344] = 4344, [4345] = 4345, @@ -9020,7 +9020,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4364] = 4364, [4365] = 4365, [4366] = 4366, - [4367] = 305, + [4367] = 4367, [4368] = 4368, [4369] = 4369, [4370] = 4370, @@ -9035,115 +9035,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4379] = 4379, [4380] = 4380, [4381] = 4381, - [4382] = 4381, - [4383] = 4380, + [4382] = 4382, + [4383] = 4383, [4384] = 4384, - [4385] = 4372, + [4385] = 4385, [4386] = 4386, [4387] = 4387, - [4388] = 4370, - [4389] = 4288, - [4390] = 4347, + [4388] = 4388, + [4389] = 4389, + [4390] = 4390, [4391] = 4391, - [4392] = 4344, + [4392] = 4392, [4393] = 4393, - [4394] = 4341, + [4394] = 4349, [4395] = 4395, - [4396] = 4351, - [4397] = 4215, - [4398] = 305, - [4399] = 4363, + [4396] = 4396, + [4397] = 4343, + [4398] = 314, + [4399] = 4399, [4400] = 4400, - [4401] = 4401, - [4402] = 4402, + [4401] = 4347, + [4402] = 4345, [4403] = 4403, [4404] = 4404, - [4405] = 4405, + [4405] = 4348, [4406] = 4406, - [4407] = 4407, - [4408] = 4197, - [4409] = 4381, - [4410] = 4410, - [4411] = 4380, - [4412] = 4372, - [4413] = 4370, + [4407] = 4352, + [4408] = 4360, + [4409] = 4353, + [4410] = 4354, + [4411] = 4360, + [4412] = 4412, + [4413] = 4413, [4414] = 4414, - [4415] = 4347, - [4416] = 4416, + [4415] = 4354, + [4416] = 4353, [4417] = 4417, - [4418] = 4344, - [4419] = 335, - [4420] = 4341, - [4421] = 4351, - [4422] = 4363, - [4423] = 4423, - [4424] = 331, + [4418] = 4418, + [4419] = 4419, + [4420] = 4420, + [4421] = 4349, + [4422] = 4352, + [4423] = 4343, + [4424] = 4424, [4425] = 4425, - [4426] = 342, + [4426] = 4426, [4427] = 4427, - [4428] = 4428, + [4428] = 4347, [4429] = 4429, [4430] = 4430, - [4431] = 338, + [4431] = 4345, [4432] = 4432, [4433] = 4433, - [4434] = 4363, + [4434] = 4434, [4435] = 4435, [4436] = 4436, - [4437] = 333, - [4438] = 4134, + [4437] = 4348, + [4438] = 4438, [4439] = 4439, [4440] = 4440, - [4441] = 4131, - [4442] = 4381, + [4441] = 4348, + [4442] = 4442, [4443] = 4443, [4444] = 4444, - [4445] = 4380, + [4445] = 4445, [4446] = 4446, - [4447] = 4447, - [4448] = 4372, - [4449] = 4449, - [4450] = 4450, - [4451] = 4370, - [4452] = 4347, - [4453] = 4453, - [4454] = 4079, - [4455] = 4455, - [4456] = 4344, - [4457] = 4457, - [4458] = 4341, - [4459] = 4351, - [4460] = 4460, - [4461] = 4363, - [4462] = 4462, - [4463] = 4463, - [4464] = 4381, - [4465] = 4465, - [4466] = 4380, - [4467] = 4372, + [4447] = 4352, + [4448] = 4353, + [4449] = 4354, + [4450] = 4167, + [4451] = 4154, + [4452] = 4144, + [4453] = 4137, + [4454] = 4091, + [4455] = 4075, + [4456] = 4456, + [4457] = 4360, + [4458] = 4458, + [4459] = 4459, + [4460] = 4345, + [4461] = 4347, + [4462] = 4349, + [4463] = 4343, + [4464] = 4347, + [4465] = 4348, + [4466] = 4352, + [4467] = 4360, [4468] = 4468, - [4469] = 4347, - [4470] = 4344, - [4471] = 4341, - [4472] = 4351, - [4473] = 4473, + [4469] = 4353, + [4470] = 4470, + [4471] = 4354, + [4472] = 4343, + [4473] = 4349, [4474] = 4474, - [4475] = 4363, - [4476] = 4344, - [4477] = 4352, - [4478] = 3979, + [4475] = 4360, + [4476] = 4476, + [4477] = 4477, + [4478] = 4478, [4479] = 4479, [4480] = 4480, - [4481] = 4351, - [4482] = 4341, - [4483] = 4483, + [4481] = 4481, + [4482] = 4482, + [4483] = 304, [4484] = 4484, [4485] = 4485, [4486] = 4486, [4487] = 4487, [4488] = 4488, [4489] = 4489, - [4490] = 4485, + [4490] = 4490, [4491] = 4491, [4492] = 4492, [4493] = 4493, @@ -9153,354 +9153,354 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4497] = 4497, [4498] = 4498, [4499] = 4499, - [4500] = 291, + [4500] = 4500, [4501] = 4501, [4502] = 4502, - [4503] = 4346, + [4503] = 4503, [4504] = 4504, - [4505] = 4347, - [4506] = 4348, - [4507] = 4322, - [4508] = 4489, - [4509] = 4509, - [4510] = 310, - [4511] = 4511, - [4512] = 333, - [4513] = 335, - [4514] = 4514, - [4515] = 4515, + [4505] = 4505, + [4506] = 4506, + [4507] = 4507, + [4508] = 4508, + [4509] = 299, + [4510] = 4486, + [4511] = 4495, + [4512] = 4512, + [4513] = 4513, + [4514] = 4495, + [4515] = 300, [4516] = 4516, [4517] = 4517, - [4518] = 4485, - [4519] = 4519, - [4520] = 4370, - [4521] = 4372, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 4527, - [4528] = 4489, + [4518] = 4518, + [4519] = 4413, + [4520] = 4406, + [4521] = 4521, + [4522] = 304, + [4523] = 4486, + [4524] = 4344, + [4525] = 4495, + [4526] = 3993, + [4527] = 4354, + [4528] = 4528, [4529] = 4529, [4530] = 4530, - [4531] = 314, + [4531] = 4353, [4532] = 4532, - [4533] = 4485, - [4534] = 4534, + [4533] = 4533, + [4534] = 4486, [4535] = 4535, - [4536] = 4501, - [4537] = 4489, - [4538] = 4489, - [4539] = 4064, - [4540] = 4489, - [4541] = 4541, + [4536] = 4536, + [4537] = 4537, + [4538] = 4495, + [4539] = 4539, + [4540] = 4540, + [4541] = 4344, [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 4485, + [4545] = 4545, [4546] = 4546, [4547] = 4547, - [4548] = 4548, - [4549] = 4549, - [4550] = 4550, + [4548] = 4004, + [4549] = 4352, + [4550] = 4528, [4551] = 4551, - [4552] = 4552, + [4552] = 1960, [4553] = 4553, [4554] = 4554, [4555] = 4555, - [4556] = 4556, + [4556] = 292, [4557] = 4557, [4558] = 4558, [4559] = 4559, [4560] = 4560, [4561] = 4561, - [4562] = 4379, - [4563] = 4563, - [4564] = 4380, - [4565] = 4381, - [4566] = 1907, + [4562] = 4562, + [4563] = 4433, + [4564] = 4476, + [4565] = 4565, + [4566] = 4566, [4567] = 4567, - [4568] = 4568, - [4569] = 4559, - [4570] = 4395, - [4571] = 4571, - [4572] = 4572, - [4573] = 4554, - [4574] = 4574, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, - [4578] = 4578, - [4579] = 4492, - [4580] = 4580, - [4581] = 338, - [4582] = 3980, + [4568] = 4486, + [4569] = 4569, + [4570] = 322, + [4571] = 337, + [4572] = 296, + [4573] = 4348, + [4574] = 325, + [4575] = 4406, + [4576] = 4349, + [4577] = 4343, + [4578] = 4439, + [4579] = 4344, + [4580] = 4468, + [4581] = 4329, + [4582] = 4582, [4583] = 4583, - [4584] = 4485, - [4585] = 4549, - [4586] = 4559, - [4587] = 4549, + [4584] = 4584, + [4585] = 4585, + [4586] = 4345, + [4587] = 4347, [4588] = 4588, - [4589] = 4559, - [4590] = 4549, - [4591] = 4549, + [4589] = 4406, + [4590] = 4344, + [4591] = 4245, [4592] = 4592, [4593] = 4593, [4594] = 4594, - [4595] = 4070, - [4596] = 4596, + [4595] = 4595, + [4596] = 4406, [4597] = 4597, - [4598] = 4598, - [4599] = 4153, - [4600] = 4119, - [4601] = 4121, - [4602] = 4602, - [4603] = 4603, - [4604] = 4604, + [4598] = 4181, + [4599] = 4599, + [4600] = 4169, + [4601] = 314, + [4602] = 4486, + [4603] = 4557, + [4604] = 4344, [4605] = 4605, - [4606] = 4144, - [4607] = 4146, - [4608] = 4559, - [4609] = 4549, - [4610] = 4610, - [4611] = 4611, - [4612] = 4559, - [4613] = 4613, - [4614] = 4557, - [4615] = 4615, - [4616] = 4616, - [4617] = 4615, + [4606] = 4140, + [4607] = 4607, + [4608] = 4495, + [4609] = 4406, + [4610] = 4551, + [4611] = 4037, + [4612] = 4135, + [4613] = 4127, + [4614] = 337, + [4615] = 296, + [4616] = 4567, + [4617] = 4617, [4618] = 4618, - [4619] = 4613, - [4620] = 4615, + [4619] = 299, + [4620] = 4620, [4621] = 4621, [4622] = 4622, - [4623] = 4615, - [4624] = 867, - [4625] = 4615, + [4623] = 4623, + [4624] = 4624, + [4625] = 4625, [4626] = 4626, - [4627] = 4627, - [4628] = 4628, + [4627] = 4505, + [4628] = 4504, [4629] = 4629, - [4630] = 4630, + [4630] = 4502, [4631] = 4631, [4632] = 4632, [4633] = 4633, - [4634] = 342, - [4635] = 4635, - [4636] = 4613, - [4637] = 4626, - [4638] = 4567, - [4639] = 4627, - [4640] = 2388, - [4641] = 4641, - [4642] = 4642, - [4643] = 4516, + [4634] = 4634, + [4635] = 4500, + [4636] = 4636, + [4637] = 4637, + [4638] = 4638, + [4639] = 4637, + [4640] = 4640, + [4641] = 4636, + [4642] = 4620, + [4643] = 4023, [4644] = 4644, - [4645] = 2481, - [4646] = 4561, - [4647] = 4647, - [4648] = 4515, - [4649] = 4647, - [4650] = 4644, - [4651] = 4651, - [4652] = 4514, - [4653] = 4653, - [4654] = 4509, - [4655] = 4635, - [4656] = 4626, - [4657] = 4529, - [4658] = 4530, - [4659] = 4659, - [4660] = 4627, - [4661] = 2421, - [4662] = 4662, - [4663] = 4616, - [4664] = 2420, - [4665] = 4332, - [4666] = 4331, - [4667] = 4532, - [4668] = 2424, - [4669] = 4534, - [4670] = 4621, - [4671] = 4622, - [4672] = 4635, + [4645] = 4645, + [4646] = 4629, + [4647] = 4621, + [4648] = 4513, + [4649] = 4649, + [4650] = 4622, + [4651] = 4623, + [4652] = 4484, + [4653] = 4516, + [4654] = 4649, + [4655] = 4517, + [4656] = 4518, + [4657] = 4624, + [4658] = 4626, + [4659] = 4638, + [4660] = 4660, + [4661] = 4661, + [4662] = 4631, + [4663] = 4632, + [4664] = 4664, + [4665] = 4470, + [4666] = 4638, + [4667] = 4632, + [4668] = 4668, + [4669] = 300, + [4670] = 4670, + [4671] = 4631, + [4672] = 4672, [4673] = 4673, - [4674] = 4626, + [4674] = 4637, [4675] = 4675, - [4676] = 4627, - [4677] = 2425, - [4678] = 4629, - [4679] = 4630, - [4680] = 4632, - [4681] = 4633, - [4682] = 4560, - [4683] = 4055, - [4684] = 4684, - [4685] = 4644, + [4676] = 4636, + [4677] = 4677, + [4678] = 4638, + [4679] = 4621, + [4680] = 4621, + [4681] = 4620, + [4682] = 4537, + [4683] = 876, + [4684] = 4490, + [4685] = 4626, [4686] = 4686, - [4687] = 2435, - [4688] = 4613, - [4689] = 2438, + [4687] = 4687, + [4688] = 4624, + [4689] = 4622, [4690] = 4690, - [4691] = 331, - [4692] = 4692, - [4693] = 4647, + [4691] = 4623, + [4692] = 4624, + [4693] = 4626, [4694] = 4694, - [4695] = 4695, - [4696] = 4662, - [4697] = 4644, - [4698] = 2441, - [4699] = 4647, - [4700] = 4613, - [4701] = 4651, - [4702] = 4702, - [4703] = 4616, - [4704] = 4704, - [4705] = 4705, - [4706] = 4488, - [4707] = 4621, - [4708] = 4622, - [4709] = 4633, - [4710] = 4580, - [4711] = 4711, - [4712] = 4633, - [4713] = 4632, - [4714] = 4322, - [4715] = 4715, - [4716] = 4629, - [4717] = 2550, - [4718] = 4630, - [4719] = 4632, - [4720] = 4720, - [4721] = 2554, - [4722] = 4632, - [4723] = 2405, - [4724] = 4633, - [4725] = 4613, - [4726] = 4726, - [4727] = 4644, - [4728] = 2399, - [4729] = 4487, - [4730] = 4647, - [4731] = 4715, - [4732] = 4627, - [4733] = 4486, + [4695] = 2460, + [4696] = 2409, + [4697] = 2408, + [4698] = 4623, + [4699] = 4622, + [4700] = 4631, + [4701] = 4632, + [4702] = 4536, + [4703] = 2394, + [4704] = 4638, + [4705] = 2393, + [4706] = 1929, + [4707] = 4670, + [4708] = 4660, + [4709] = 4501, + [4710] = 4637, + [4711] = 4539, + [4712] = 4712, + [4713] = 4327, + [4714] = 4636, + [4715] = 4044, + [4716] = 4308, + [4717] = 2447, + [4718] = 2448, + [4719] = 4719, + [4720] = 4621, + [4721] = 2454, + [4722] = 4722, + [4723] = 4712, + [4724] = 4724, + [4725] = 4725, + [4726] = 4622, + [4727] = 4623, + [4728] = 2457, + [4729] = 4729, + [4730] = 4730, + [4731] = 4626, + [4732] = 2458, + [4733] = 4491, [4734] = 4734, - [4735] = 4630, - [4736] = 4736, - [4737] = 4629, - [4738] = 4621, - [4739] = 4622, - [4740] = 4630, - [4741] = 4741, - [4742] = 4632, - [4743] = 4633, + [4735] = 4620, + [4736] = 4499, + [4737] = 4498, + [4738] = 4738, + [4739] = 4729, + [4740] = 4620, + [4741] = 4631, + [4742] = 4742, + [4743] = 4712, [4744] = 4744, - [4745] = 4613, - [4746] = 4635, - [4747] = 4626, - [4748] = 4553, - [4749] = 4690, - [4750] = 4622, - [4751] = 4751, - [4752] = 4621, - [4753] = 2496, - [4754] = 4621, - [4755] = 2426, + [4745] = 4632, + [4746] = 4620, + [4747] = 4645, + [4748] = 4622, + [4749] = 4749, + [4750] = 4496, + [4751] = 4638, + [4752] = 4623, + [4753] = 4753, + [4754] = 4754, + [4755] = 4755, [4756] = 4622, - [4757] = 4630, - [4758] = 4758, - [4759] = 4550, + [4757] = 4623, + [4758] = 4626, + [4759] = 4631, [4760] = 4632, - [4761] = 4568, - [4762] = 4762, - [4763] = 4763, - [4764] = 4633, - [4765] = 4613, - [4766] = 4766, - [4767] = 4627, - [4768] = 4051, - [4769] = 4630, - [4770] = 4632, - [4771] = 1935, - [4772] = 4633, - [4773] = 4613, + [4761] = 4638, + [4762] = 4329, + [4763] = 2430, + [4764] = 4626, + [4765] = 4631, + [4766] = 4632, + [4767] = 4767, + [4768] = 4632, + [4769] = 4638, + [4770] = 2496, + [4771] = 4631, + [4772] = 4636, + [4773] = 4637, [4774] = 4774, - [4775] = 4630, - [4776] = 4616, - [4777] = 4632, - [4778] = 4633, - [4779] = 4779, - [4780] = 4615, - [4781] = 4781, - [4782] = 4766, - [4783] = 1946, + [4775] = 4626, + [4776] = 4776, + [4777] = 4631, + [4778] = 4670, + [4779] = 2500, + [4780] = 2504, + [4781] = 4633, + [4782] = 4632, + [4783] = 4638, [4784] = 4784, - [4785] = 4785, - [4786] = 4786, + [4785] = 4744, + [4786] = 4565, [4787] = 4787, - [4788] = 4741, - [4789] = 4789, + [4788] = 2463, + [4789] = 4566, [4790] = 4790, [4791] = 4791, - [4792] = 4588, - [4793] = 4793, + [4792] = 4792, + [4793] = 2474, [4794] = 4794, - [4795] = 4684, + [4795] = 4719, [4796] = 4796, - [4797] = 4630, - [4798] = 4455, - [4799] = 4736, - [4800] = 4635, - [4801] = 4801, - [4802] = 4802, + [4797] = 4797, + [4798] = 4633, + [4799] = 4458, + [4800] = 4800, + [4801] = 4672, + [4802] = 4633, [4803] = 4803, - [4804] = 4543, - [4805] = 4544, - [4806] = 4806, - [4807] = 3966, - [4808] = 4801, - [4809] = 2545, - [4810] = 4692, - [4811] = 4647, - [4812] = 4644, - [4813] = 4813, - [4814] = 4629, - [4815] = 4546, + [4804] = 4784, + [4805] = 4719, + [4806] = 4712, + [4807] = 4633, + [4808] = 4624, + [4809] = 4809, + [4810] = 4810, + [4811] = 4617, + [4812] = 4670, + [4813] = 4061, + [4814] = 4670, + [4815] = 4719, [4816] = 4816, - [4817] = 4817, - [4818] = 4659, - [4819] = 4548, - [4820] = 4758, - [4821] = 4675, - [4822] = 4653, - [4823] = 4803, - [4824] = 4817, - [4825] = 4825, - [4826] = 4816, - [4827] = 4827, + [4817] = 4712, + [4818] = 4719, + [4819] = 4633, + [4820] = 4599, + [4821] = 4821, + [4822] = 4637, + [4823] = 4636, + [4824] = 4640, + [4825] = 4634, + [4826] = 4712, + [4827] = 4626, [4828] = 4828, - [4829] = 4622, - [4830] = 4621, + [4829] = 4829, + [4830] = 4830, [4831] = 4831, [4832] = 4832, - [4833] = 4684, + [4833] = 4833, [4834] = 4834, - [4835] = 4626, - [4836] = 4836, + [4835] = 4494, + [4836] = 4625, [4837] = 4837, - [4838] = 4684, - [4839] = 4558, - [4840] = 4616, - [4841] = 4684, - [4842] = 4802, - [4843] = 4843, - [4844] = 4844, + [4838] = 4724, + [4839] = 4839, + [4840] = 4493, + [4841] = 4661, + [4842] = 4794, + [4843] = 4686, + [4844] = 4800, [4845] = 4845, [4846] = 4846, - [4847] = 1009, + [4847] = 4847, [4848] = 4848, [4849] = 4849, [4850] = 4850, @@ -9525,17 +9525,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4869] = 4869, [4870] = 4870, [4871] = 4871, - [4872] = 2348, - [4873] = 4873, + [4872] = 4872, + [4873] = 4863, [4874] = 4874, [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 1094, + [4878] = 4878, [4879] = 4879, - [4880] = 1008, + [4880] = 4880, [4881] = 4881, - [4882] = 2347, + [4882] = 4882, [4883] = 4883, [4884] = 4884, [4885] = 4885, @@ -9545,525 +9545,525 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4889] = 4889, [4890] = 4890, [4891] = 4891, - [4892] = 4892, - [4893] = 1010, + [4892] = 294, + [4893] = 334, [4894] = 4894, - [4895] = 1011, - [4896] = 4896, + [4895] = 4895, + [4896] = 4562, [4897] = 4897, [4898] = 4898, [4899] = 4899, - [4900] = 2545, + [4900] = 4900, [4901] = 4901, [4902] = 4902, [4903] = 4903, - [4904] = 1012, + [4904] = 4904, [4905] = 4905, [4906] = 4906, [4907] = 4907, [4908] = 4908, - [4909] = 4871, + [4909] = 4909, [4910] = 4910, [4911] = 4911, - [4912] = 4912, - [4913] = 4856, - [4914] = 4861, + [4912] = 4879, + [4913] = 4913, + [4914] = 4914, [4915] = 4915, - [4916] = 1017, - [4917] = 4917, - [4918] = 4844, - [4919] = 4864, + [4916] = 4852, + [4917] = 4863, + [4918] = 4918, + [4919] = 4919, [4920] = 4920, - [4921] = 4865, - [4922] = 4869, + [4921] = 4852, + [4922] = 4922, [4923] = 4923, - [4924] = 4844, + [4924] = 4924, [4925] = 4925, [4926] = 4926, [4927] = 4927, - [4928] = 4869, + [4928] = 4928, [4929] = 4929, - [4930] = 4873, - [4931] = 4875, + [4930] = 4930, + [4931] = 4931, [4932] = 4932, - [4933] = 4885, - [4934] = 4876, - [4935] = 953, + [4933] = 4933, + [4934] = 333, + [4935] = 4935, [4936] = 4936, - [4937] = 4937, - [4938] = 4876, + [4937] = 4924, + [4938] = 4938, [4939] = 4939, [4940] = 4940, [4941] = 4941, [4942] = 4942, [4943] = 4943, [4944] = 4944, - [4945] = 1086, + [4945] = 4945, [4946] = 4946, - [4947] = 4947, - [4948] = 4948, - [4949] = 4949, - [4950] = 4891, + [4947] = 293, + [4948] = 1055, + [4949] = 4861, + [4950] = 4950, [4951] = 4951, - [4952] = 1014, + [4952] = 4952, [4953] = 4953, [4954] = 4954, - [4955] = 4875, - [4956] = 1005, + [4955] = 4955, + [4956] = 4956, [4957] = 4957, [4958] = 4958, - [4959] = 4959, + [4959] = 4924, [4960] = 4960, - [4961] = 4961, - [4962] = 4873, - [4963] = 1001, - [4964] = 999, + [4961] = 4880, + [4962] = 4962, + [4963] = 4860, + [4964] = 1088, [4965] = 4965, [4966] = 4966, - [4967] = 2441, - [4968] = 1015, + [4967] = 4859, + [4968] = 4848, [4969] = 4969, - [4970] = 2438, - [4971] = 4971, - [4972] = 2426, - [4973] = 4973, - [4974] = 2425, + [4970] = 4970, + [4971] = 4898, + [4972] = 4958, + [4973] = 4924, + [4974] = 4974, [4975] = 4975, [4976] = 4976, [4977] = 4977, - [4978] = 2424, - [4979] = 4865, - [4980] = 4864, - [4981] = 4960, - [4982] = 4982, - [4983] = 996, - [4984] = 4984, + [4978] = 4978, + [4979] = 4979, + [4980] = 4980, + [4981] = 4981, + [4982] = 4900, + [4983] = 4983, + [4984] = 4854, [4985] = 4985, [4986] = 4986, - [4987] = 4563, - [4988] = 4982, + [4987] = 4987, + [4988] = 4988, [4989] = 4989, - [4990] = 993, - [4991] = 4991, - [4992] = 4992, - [4993] = 992, + [4990] = 4990, + [4991] = 4862, + [4992] = 4919, + [4993] = 1098, [4994] = 4994, - [4995] = 991, - [4996] = 321, + [4995] = 4995, + [4996] = 1105, [4997] = 4997, [4998] = 4998, [4999] = 4999, - [5000] = 5000, + [5000] = 4870, [5001] = 5001, - [5002] = 5002, - [5003] = 5003, - [5004] = 2361, + [5002] = 4871, + [5003] = 4939, + [5004] = 4923, [5005] = 5005, - [5006] = 4844, + [5006] = 5006, [5007] = 5007, [5008] = 5008, [5009] = 5009, [5010] = 5010, [5011] = 5011, - [5012] = 2362, - [5013] = 5013, - [5014] = 4869, - [5015] = 5015, - [5016] = 4856, - [5017] = 4865, + [5012] = 1108, + [5013] = 4924, + [5014] = 4952, + [5015] = 4939, + [5016] = 1109, + [5017] = 4874, [5018] = 5018, - [5019] = 5019, + [5019] = 4955, [5020] = 5020, [5021] = 5021, - [5022] = 4861, - [5023] = 5023, - [5024] = 319, + [5022] = 5022, + [5023] = 4861, + [5024] = 4797, [5025] = 5025, - [5026] = 2364, - [5027] = 5000, - [5028] = 4998, - [5029] = 4864, - [5030] = 5030, - [5031] = 5031, - [5032] = 4985, - [5033] = 4864, - [5034] = 4865, + [5026] = 4957, + [5027] = 4879, + [5028] = 4880, + [5029] = 5029, + [5030] = 925, + [5031] = 1112, + [5032] = 5032, + [5033] = 5033, + [5034] = 5034, [5035] = 5035, - [5036] = 5036, + [5036] = 4749, [5037] = 5037, - [5038] = 1083, - [5039] = 4751, + [5038] = 1113, + [5039] = 5039, [5040] = 5040, - [5041] = 4869, + [5041] = 5041, [5042] = 5042, - [5043] = 5043, + [5043] = 2246, [5044] = 5044, - [5045] = 4861, - [5046] = 5046, - [5047] = 4856, + [5045] = 2384, + [5046] = 2377, + [5047] = 5047, [5048] = 5048, - [5049] = 1018, - [5050] = 5050, - [5051] = 1022, + [5049] = 4939, + [5050] = 4755, + [5051] = 5051, [5052] = 5052, - [5053] = 5053, + [5053] = 4852, [5054] = 5054, - [5055] = 5055, - [5056] = 5056, - [5057] = 4844, - [5058] = 2550, + [5055] = 4767, + [5056] = 4592, + [5057] = 5057, + [5058] = 5058, [5059] = 5059, - [5060] = 5003, + [5060] = 4919, [5061] = 5061, - [5062] = 4850, - [5063] = 4876, - [5064] = 2420, + [5062] = 5062, + [5063] = 5063, + [5064] = 5064, [5065] = 5065, [5066] = 5066, - [5067] = 2421, - [5068] = 4873, - [5069] = 4875, - [5070] = 990, - [5071] = 4527, - [5072] = 4526, - [5073] = 293, - [5074] = 292, + [5067] = 5067, + [5068] = 5068, + [5069] = 1123, + [5070] = 5070, + [5071] = 5071, + [5072] = 4900, + [5073] = 5073, + [5074] = 1129, [5075] = 5075, - [5076] = 1096, + [5076] = 1133, [5077] = 5077, - [5078] = 5078, - [5079] = 2435, + [5078] = 4898, + [5079] = 5079, [5080] = 5080, [5081] = 5081, - [5082] = 5082, - [5083] = 2554, - [5084] = 989, - [5085] = 4873, - [5086] = 988, - [5087] = 987, - [5088] = 955, + [5082] = 4880, + [5083] = 5083, + [5084] = 4879, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 1134, [5089] = 5089, - [5090] = 5090, + [5090] = 1135, [5091] = 5091, - [5092] = 951, - [5093] = 4876, - [5094] = 4873, + [5092] = 5092, + [5093] = 4863, + [5094] = 1136, [5095] = 5095, - [5096] = 5096, + [5096] = 1138, [5097] = 5097, - [5098] = 960, - [5099] = 5065, - [5100] = 5100, + [5098] = 5098, + [5099] = 1151, + [5100] = 918, [5101] = 5101, - [5102] = 4991, + [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 982, - [5106] = 4844, - [5107] = 4869, - [5108] = 5020, - [5109] = 981, - [5110] = 5110, - [5111] = 5035, + [5105] = 5105, + [5106] = 5106, + [5107] = 5107, + [5108] = 5108, + [5109] = 4861, + [5110] = 917, + [5111] = 915, [5112] = 5112, [5113] = 5113, - [5114] = 4865, + [5114] = 1023, [5115] = 5115, - [5116] = 5116, - [5117] = 5117, - [5118] = 5118, - [5119] = 4864, - [5120] = 5120, + [5116] = 1022, + [5117] = 1158, + [5118] = 5065, + [5119] = 5119, + [5120] = 1050, [5121] = 5121, [5122] = 5122, - [5123] = 4861, - [5124] = 4856, + [5123] = 5123, + [5124] = 5124, [5125] = 5125, [5126] = 5126, - [5127] = 2496, - [5128] = 5128, + [5127] = 4903, + [5128] = 1052, [5129] = 5129, [5130] = 5130, - [5131] = 4875, - [5132] = 1081, - [5133] = 5133, - [5134] = 1080, + [5131] = 5131, + [5132] = 5132, + [5133] = 2463, + [5134] = 4879, [5135] = 5135, - [5136] = 5136, + [5136] = 4955, [5137] = 5137, - [5138] = 5138, - [5139] = 5007, + [5138] = 1120, + [5139] = 4952, [5140] = 5140, - [5141] = 4954, - [5142] = 5142, - [5143] = 335, - [5144] = 333, - [5145] = 5145, - [5146] = 1042, + [5141] = 5141, + [5142] = 2329, + [5143] = 2331, + [5144] = 5144, + [5145] = 4925, + [5146] = 5146, [5147] = 5147, [5148] = 5148, [5149] = 5149, [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, - [5154] = 5037, - [5155] = 5155, + [5151] = 4923, + [5152] = 4889, + [5153] = 2232, + [5154] = 4862, + [5155] = 2234, [5156] = 5156, - [5157] = 4954, - [5158] = 4828, - [5159] = 1073, - [5160] = 1093, - [5161] = 4861, - [5162] = 5162, - [5163] = 5163, - [5164] = 5164, + [5157] = 5157, + [5158] = 5158, + [5159] = 5159, + [5160] = 4958, + [5161] = 5161, + [5162] = 4957, + [5163] = 4925, + [5164] = 4875, [5165] = 5165, [5166] = 5166, - [5167] = 5167, - [5168] = 5168, - [5169] = 970, - [5170] = 1099, - [5171] = 1100, - [5172] = 5172, - [5173] = 4886, + [5167] = 4856, + [5168] = 4903, + [5169] = 5169, + [5170] = 5170, + [5171] = 4898, + [5172] = 2239, + [5173] = 2241, [5174] = 5174, - [5175] = 1109, - [5176] = 4871, + [5175] = 4875, + [5176] = 5176, [5177] = 5177, - [5178] = 5178, - [5179] = 5179, + [5178] = 4900, + [5179] = 2245, [5180] = 5180, - [5181] = 4885, + [5181] = 936, [5182] = 5182, - [5183] = 5183, - [5184] = 4711, + [5183] = 4878, + [5184] = 5184, [5185] = 5185, - [5186] = 5186, - [5187] = 4705, + [5186] = 933, + [5187] = 932, [5188] = 5188, - [5189] = 5189, - [5190] = 5190, + [5189] = 941, + [5190] = 1119, [5191] = 5191, - [5192] = 5192, + [5192] = 1077, [5193] = 5193, - [5194] = 4704, - [5195] = 4891, - [5196] = 4871, - [5197] = 4856, - [5198] = 5043, + [5194] = 5194, + [5195] = 5195, + [5196] = 4821, + [5197] = 5197, + [5198] = 5198, [5199] = 5199, - [5200] = 939, - [5201] = 4991, - [5202] = 5046, - [5203] = 4885, - [5204] = 4999, - [5205] = 973, - [5206] = 969, - [5207] = 4954, - [5208] = 5015, + [5200] = 4878, + [5201] = 5201, + [5202] = 1073, + [5203] = 5203, + [5204] = 1063, + [5205] = 5205, + [5206] = 1061, + [5207] = 4875, + [5208] = 5208, [5209] = 5209, [5210] = 5210, [5211] = 5211, - [5212] = 949, - [5213] = 5213, + [5212] = 2409, + [5213] = 2408, [5214] = 5214, - [5215] = 952, + [5215] = 5215, [5216] = 5216, - [5217] = 5013, - [5218] = 5218, - [5219] = 4891, - [5220] = 5220, - [5221] = 926, + [5217] = 5065, + [5218] = 4939, + [5219] = 5219, + [5220] = 5177, + [5221] = 5221, [5222] = 5222, - [5223] = 5223, - [5224] = 5011, + [5223] = 4852, + [5224] = 4903, [5225] = 5225, - [5226] = 4960, - [5227] = 4982, + [5226] = 1059, + [5227] = 4919, [5228] = 5228, [5229] = 5229, - [5230] = 5230, - [5231] = 5231, - [5232] = 4991, - [5233] = 5065, + [5230] = 1057, + [5231] = 1056, + [5232] = 5232, + [5233] = 4955, [5234] = 5234, [5235] = 5235, - [5236] = 5236, + [5236] = 4952, [5237] = 5237, - [5238] = 5238, + [5238] = 4900, [5239] = 5239, - [5240] = 5240, - [5241] = 1026, - [5242] = 5242, + [5240] = 4923, + [5241] = 5241, + [5242] = 1156, [5243] = 5243, - [5244] = 5046, - [5245] = 4958, - [5246] = 971, - [5247] = 5043, - [5248] = 968, - [5249] = 966, - [5250] = 2481, - [5251] = 5251, - [5252] = 5037, - [5253] = 2388, - [5254] = 5035, - [5255] = 5255, - [5256] = 5020, - [5257] = 5257, - [5258] = 5258, - [5259] = 4982, - [5260] = 964, - [5261] = 4960, - [5262] = 1060, - [5263] = 1050, - [5264] = 1052, - [5265] = 5265, - [5266] = 4960, - [5267] = 5035, - [5268] = 4982, - [5269] = 914, - [5270] = 5270, - [5271] = 4891, - [5272] = 1054, - [5273] = 5273, - [5274] = 4885, - [5275] = 4774, + [5244] = 4862, + [5245] = 1154, + [5246] = 1157, + [5247] = 5247, + [5248] = 4854, + [5249] = 1087, + [5250] = 5119, + [5251] = 1047, + [5252] = 5252, + [5253] = 5253, + [5254] = 5254, + [5255] = 4898, + [5256] = 1005, + [5257] = 4880, + [5258] = 1004, + [5259] = 4958, + [5260] = 4957, + [5261] = 5261, + [5262] = 980, + [5263] = 5263, + [5264] = 5264, + [5265] = 981, + [5266] = 2504, + [5267] = 5267, + [5268] = 2500, + [5269] = 5269, + [5270] = 1012, + [5271] = 4957, + [5272] = 1013, + [5273] = 4958, + [5274] = 1019, + [5275] = 5275, [5276] = 5276, - [5277] = 2289, - [5278] = 1114, - [5279] = 5037, - [5280] = 2292, - [5281] = 1025, + [5277] = 2496, + [5278] = 2430, + [5279] = 4903, + [5280] = 5280, + [5281] = 5281, [5282] = 5282, - [5283] = 5283, - [5284] = 5284, - [5285] = 1029, - [5286] = 5286, - [5287] = 5287, - [5288] = 5288, - [5289] = 2384, - [5290] = 5290, - [5291] = 5291, - [5292] = 2304, - [5293] = 5020, - [5294] = 2329, - [5295] = 2332, - [5296] = 1030, - [5297] = 5297, - [5298] = 2385, - [5299] = 4876, - [5300] = 2386, - [5301] = 5035, - [5302] = 5302, + [5283] = 4875, + [5284] = 4878, + [5285] = 1093, + [5286] = 1096, + [5287] = 1042, + [5288] = 2474, + [5289] = 1102, + [5290] = 4863, + [5291] = 1122, + [5292] = 4861, + [5293] = 1003, + [5294] = 5294, + [5295] = 5295, + [5296] = 5296, + [5297] = 956, + [5298] = 4854, + [5299] = 939, + [5300] = 912, + [5301] = 4924, + [5302] = 923, [5303] = 5303, - [5304] = 1055, + [5304] = 5304, [5305] = 5305, - [5306] = 5043, - [5307] = 2405, - [5308] = 2399, - [5309] = 1144, - [5310] = 5310, + [5306] = 4862, + [5307] = 5307, + [5308] = 1127, + [5309] = 5309, + [5310] = 1132, [5311] = 5311, [5312] = 5312, - [5313] = 5037, - [5314] = 5046, - [5315] = 1115, - [5316] = 5316, - [5317] = 978, - [5318] = 1098, + [5313] = 1144, + [5314] = 5314, + [5315] = 1146, + [5316] = 1148, + [5317] = 1153, + [5318] = 4923, [5319] = 5319, - [5320] = 5065, + [5320] = 1089, [5321] = 5321, [5322] = 5322, [5323] = 5323, - [5324] = 1085, + [5324] = 4925, [5325] = 5325, - [5326] = 922, - [5327] = 5172, - [5328] = 5328, - [5329] = 5182, - [5330] = 1137, - [5331] = 5331, - [5332] = 5332, + [5326] = 5326, + [5327] = 990, + [5328] = 4861, + [5329] = 5329, + [5330] = 5330, + [5331] = 1130, + [5332] = 4928, [5333] = 5333, - [5334] = 5046, - [5335] = 921, - [5336] = 5043, - [5337] = 920, - [5338] = 1089, - [5339] = 5043, - [5340] = 5340, + [5334] = 4932, + [5335] = 2460, + [5336] = 5336, + [5337] = 989, + [5338] = 2458, + [5339] = 4872, + [5340] = 2457, [5341] = 5341, [5342] = 5342, - [5343] = 5046, - [5344] = 5037, - [5345] = 5035, - [5346] = 5020, - [5347] = 1130, - [5348] = 5348, - [5349] = 5349, + [5343] = 5343, + [5344] = 4952, + [5345] = 5345, + [5346] = 4863, + [5347] = 2454, + [5348] = 4955, + [5349] = 2448, [5350] = 5350, - [5351] = 1129, - [5352] = 5352, - [5353] = 4982, - [5354] = 5291, - [5355] = 5355, - [5356] = 5356, - [5357] = 4960, - [5358] = 1051, - [5359] = 1126, - [5360] = 5360, + [5351] = 5351, + [5352] = 5148, + [5353] = 5353, + [5354] = 5354, + [5355] = 2447, + [5356] = 4998, + [5357] = 4879, + [5358] = 5358, + [5359] = 4994, + [5360] = 4787, [5361] = 5361, - [5362] = 5362, - [5363] = 5363, - [5364] = 1123, - [5365] = 5365, - [5366] = 5366, - [5367] = 5367, - [5368] = 5368, - [5369] = 4891, - [5370] = 4885, - [5371] = 4871, - [5372] = 4887, - [5373] = 5373, + [5362] = 983, + [5363] = 970, + [5364] = 5364, + [5365] = 4878, + [5366] = 5065, + [5367] = 4919, + [5368] = 1155, + [5369] = 4875, + [5370] = 1006, + [5371] = 5371, + [5372] = 5372, + [5373] = 4880, [5374] = 5374, - [5375] = 5375, - [5376] = 5376, + [5375] = 2394, + [5376] = 4939, [5377] = 5377, - [5378] = 5378, - [5379] = 5340, - [5380] = 4875, - [5381] = 5209, - [5382] = 4991, - [5383] = 5065, - [5384] = 5384, - [5385] = 5050, - [5386] = 5386, - [5387] = 4502, - [5388] = 5388, - [5389] = 5389, - [5390] = 5148, - [5391] = 5391, - [5392] = 5392, - [5393] = 5393, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, - [5397] = 5397, - [5398] = 4991, - [5399] = 5399, - [5400] = 5400, - [5401] = 5401, - [5402] = 5162, - [5403] = 5403, - [5404] = 5404, - [5405] = 5405, - [5406] = 5065, - [5407] = 5407, - [5408] = 5408, + [5378] = 4605, + [5379] = 4955, + [5380] = 1121, + [5381] = 5381, + [5382] = 4952, + [5383] = 5383, + [5384] = 5144, + [5385] = 1099, + [5386] = 4851, + [5387] = 2258, + [5388] = 4906, + [5389] = 5065, + [5390] = 4923, + [5391] = 2257, + [5392] = 4862, + [5393] = 4854, + [5394] = 4903, + [5395] = 5209, + [5396] = 4597, + [5397] = 4898, + [5398] = 4900, + [5399] = 4852, + [5400] = 4919, + [5401] = 2393, + [5402] = 4958, + [5403] = 4957, + [5404] = 2256, + [5405] = 337, + [5406] = 5374, + [5407] = 296, + [5408] = 5065, [5409] = 5409, - [5410] = 2014, + [5410] = 5410, [5411] = 5411, [5412] = 5412, [5413] = 5413, @@ -10072,284 +10072,284 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5416] = 5416, [5417] = 5417, [5418] = 5418, - [5419] = 5419, - [5420] = 5408, - [5421] = 5421, + [5419] = 891, + [5420] = 5420, + [5421] = 5417, [5422] = 5422, [5423] = 5423, - [5424] = 5424, + [5424] = 926, [5425] = 5425, [5426] = 5426, [5427] = 5427, - [5428] = 5426, + [5428] = 5428, [5429] = 5429, - [5430] = 5411, - [5431] = 5431, - [5432] = 5409, + [5430] = 5430, + [5431] = 5428, + [5432] = 5432, [5433] = 5433, [5434] = 5434, [5435] = 5435, - [5436] = 5413, - [5437] = 5412, + [5436] = 5436, + [5437] = 5437, [5438] = 5438, - [5439] = 5414, - [5440] = 919, + [5439] = 5439, + [5440] = 5440, [5441] = 5441, - [5442] = 5415, - [5443] = 5416, - [5444] = 5444, + [5442] = 5442, + [5443] = 5443, + [5444] = 5439, [5445] = 5445, - [5446] = 5446, - [5447] = 5447, - [5448] = 5412, + [5446] = 5432, + [5447] = 5430, + [5448] = 5411, [5449] = 5449, - [5450] = 5418, - [5451] = 5412, - [5452] = 5425, - [5453] = 5426, - [5454] = 5408, - [5455] = 5419, - [5456] = 5456, - [5457] = 5411, + [5450] = 5450, + [5451] = 5439, + [5452] = 5437, + [5453] = 5436, + [5454] = 5433, + [5455] = 5432, + [5456] = 5430, + [5457] = 5416, [5458] = 5415, - [5459] = 5416, - [5460] = 5418, - [5461] = 5425, - [5462] = 5446, - [5463] = 5445, - [5464] = 5429, - [5465] = 5434, - [5466] = 5435, - [5467] = 5444, - [5468] = 5438, - [5469] = 5469, + [5459] = 5435, + [5460] = 5412, + [5461] = 5414, + [5462] = 950, + [5463] = 5412, + [5464] = 5415, + [5465] = 5416, + [5466] = 5466, + [5467] = 5414, + [5468] = 5468, + [5469] = 5417, [5470] = 5470, - [5471] = 5446, - [5472] = 5445, + [5471] = 5471, + [5472] = 5428, [5473] = 5473, - [5474] = 5417, - [5475] = 5408, - [5476] = 5419, - [5477] = 5444, - [5478] = 5415, + [5474] = 5429, + [5475] = 5449, + [5476] = 5434, + [5477] = 5477, + [5478] = 5411, [5479] = 5479, - [5480] = 5438, - [5481] = 5416, - [5482] = 5418, - [5483] = 5425, - [5484] = 5434, - [5485] = 5435, - [5486] = 5438, - [5487] = 5438, - [5488] = 5488, - [5489] = 5489, - [5490] = 5408, - [5491] = 5419, - [5492] = 5418, - [5493] = 5425, - [5494] = 5408, - [5495] = 5419, - [5496] = 5496, - [5497] = 5497, - [5498] = 5418, - [5499] = 5425, - [5500] = 5417, - [5501] = 5501, - [5502] = 5435, - [5503] = 5434, - [5504] = 5433, - [5505] = 5409, - [5506] = 5431, - [5507] = 5408, - [5508] = 5508, - [5509] = 5419, - [5510] = 5418, - [5511] = 5425, - [5512] = 5435, - [5513] = 5434, - [5514] = 950, - [5515] = 5433, - [5516] = 5409, - [5517] = 5431, - [5518] = 5408, - [5519] = 5419, - [5520] = 5429, - [5521] = 5418, - [5522] = 5425, - [5523] = 5408, - [5524] = 5524, + [5480] = 5480, + [5481] = 5481, + [5482] = 5445, + [5483] = 5440, + [5484] = 5443, + [5485] = 5443, + [5486] = 5442, + [5487] = 5445, + [5488] = 5411, + [5489] = 5449, + [5490] = 5441, + [5491] = 5491, + [5492] = 5466, + [5493] = 5439, + [5494] = 5432, + [5495] = 5430, + [5496] = 5430, + [5497] = 5432, + [5498] = 5433, + [5499] = 5440, + [5500] = 5436, + [5501] = 5437, + [5502] = 5414, + [5503] = 5436, + [5504] = 5439, + [5505] = 5505, + [5506] = 5506, + [5507] = 2001, + [5508] = 5437, + [5509] = 5470, + [5510] = 5417, + [5511] = 5414, + [5512] = 5512, + [5513] = 5513, + [5514] = 5514, + [5515] = 5515, + [5516] = 4687, + [5517] = 5429, + [5518] = 5434, + [5519] = 5443, + [5520] = 5449, + [5521] = 5434, + [5522] = 5429, + [5523] = 5411, + [5524] = 5445, [5525] = 5525, - [5526] = 5414, - [5527] = 5418, - [5528] = 5528, + [5526] = 5411, + [5527] = 5433, + [5528] = 5466, [5529] = 5429, - [5530] = 5530, - [5531] = 5425, - [5532] = 5532, - [5533] = 5425, - [5534] = 5534, - [5535] = 5418, - [5536] = 5417, - [5537] = 5408, - [5538] = 5419, - [5539] = 5418, - [5540] = 5416, - [5541] = 5415, - [5542] = 5414, - [5543] = 5425, - [5544] = 5479, - [5545] = 5413, - [5546] = 5546, - [5547] = 5411, - [5548] = 5456, - [5549] = 5411, - [5550] = 5429, - [5551] = 5551, - [5552] = 1978, - [5553] = 5553, - [5554] = 5554, - [5555] = 5555, - [5556] = 5446, - [5557] = 5470, - [5558] = 5445, - [5559] = 5425, - [5560] = 5418, - [5561] = 5561, - [5562] = 896, - [5563] = 5563, - [5564] = 5564, - [5565] = 5419, - [5566] = 5449, - [5567] = 5408, - [5568] = 5419, - [5569] = 5413, - [5570] = 5419, - [5571] = 5415, - [5572] = 5416, + [5530] = 5434, + [5531] = 5531, + [5532] = 5432, + [5533] = 5430, + [5534] = 5414, + [5535] = 5535, + [5536] = 5435, + [5537] = 5537, + [5538] = 5445, + [5539] = 5443, + [5540] = 5442, + [5541] = 5441, + [5542] = 5429, + [5543] = 5434, + [5544] = 5428, + [5545] = 5411, + [5546] = 5449, + [5547] = 5449, + [5548] = 5548, + [5549] = 5429, + [5550] = 5434, + [5551] = 5440, + [5552] = 5440, + [5553] = 5442, + [5554] = 5411, + [5555] = 5449, + [5556] = 5535, + [5557] = 5557, + [5558] = 5438, + [5559] = 5559, + [5560] = 4675, + [5561] = 5506, + [5562] = 5417, + [5563] = 1968, + [5564] = 5429, + [5565] = 5434, + [5566] = 5434, + [5567] = 5429, + [5568] = 5411, + [5569] = 943, + [5570] = 5449, + [5571] = 5571, + [5572] = 5429, [5573] = 5573, - [5574] = 5426, - [5575] = 5416, - [5576] = 5415, - [5577] = 5577, - [5578] = 5414, - [5579] = 5413, - [5580] = 5426, - [5581] = 5581, - [5582] = 5582, - [5583] = 5408, - [5584] = 5584, - [5585] = 5585, - [5586] = 5418, - [5587] = 5425, - [5588] = 5588, - [5589] = 5589, - [5590] = 5412, - [5591] = 4631, - [5592] = 5417, - [5593] = 5411, - [5594] = 5554, - [5595] = 5595, - [5596] = 5488, - [5597] = 5597, - [5598] = 5598, - [5599] = 5508, - [5600] = 5554, - [5601] = 5419, - [5602] = 5446, - [5603] = 5445, - [5604] = 5408, - [5605] = 5444, - [5606] = 5584, - [5607] = 5444, - [5608] = 5608, - [5609] = 4686, - [5610] = 5438, - [5611] = 5611, - [5612] = 1966, - [5613] = 924, + [5574] = 5441, + [5575] = 5442, + [5576] = 5443, + [5577] = 5445, + [5578] = 5434, + [5579] = 5466, + [5580] = 5449, + [5581] = 5429, + [5582] = 5434, + [5583] = 5535, + [5584] = 5411, + [5585] = 5449, + [5586] = 5429, + [5587] = 5434, + [5588] = 5429, + [5589] = 5434, + [5590] = 5411, + [5591] = 5411, + [5592] = 5449, + [5593] = 5593, + [5594] = 5594, + [5595] = 5416, + [5596] = 5415, + [5597] = 5449, + [5598] = 5412, + [5599] = 5599, + [5600] = 5600, + [5601] = 5449, + [5602] = 5535, + [5603] = 5603, + [5604] = 5604, + [5605] = 5411, + [5606] = 5412, + [5607] = 5559, + [5608] = 2009, + [5609] = 5609, + [5610] = 5610, + [5611] = 5535, + [5612] = 5612, + [5613] = 5525, [5614] = 5614, - [5615] = 5489, - [5616] = 291, + [5615] = 5440, + [5616] = 5428, [5617] = 5617, - [5618] = 5584, - [5619] = 5429, - [5620] = 5554, - [5621] = 5584, - [5622] = 5622, - [5623] = 5623, - [5624] = 5438, - [5625] = 5625, + [5618] = 5618, + [5619] = 5610, + [5620] = 5414, + [5621] = 5621, + [5622] = 5441, + [5623] = 1971, + [5624] = 5439, + [5625] = 5466, [5626] = 5626, - [5627] = 5627, - [5628] = 5431, - [5629] = 5419, - [5630] = 5433, - [5631] = 5435, - [5632] = 5434, - [5633] = 5434, - [5634] = 5435, + [5627] = 5437, + [5628] = 5436, + [5629] = 5433, + [5630] = 5432, + [5631] = 5430, + [5632] = 5632, + [5633] = 292, + [5634] = 5450, [5635] = 5635, - [5636] = 5433, - [5637] = 5584, - [5638] = 5554, - [5639] = 5409, - [5640] = 5431, - [5641] = 5641, - [5642] = 5642, - [5643] = 5643, + [5636] = 5415, + [5637] = 5637, + [5638] = 5416, + [5639] = 5639, + [5640] = 5435, + [5641] = 5435, + [5642] = 5443, + [5643] = 5445, [5644] = 5644, [5645] = 5645, [5646] = 5646, - [5647] = 5647, - [5648] = 5648, + [5647] = 2385, + [5648] = 2371, [5649] = 5649, [5650] = 5650, [5651] = 5651, [5652] = 5652, - [5653] = 5653, + [5653] = 946, [5654] = 5654, - [5655] = 5655, - [5656] = 5656, + [5655] = 5652, + [5656] = 937, [5657] = 5657, - [5658] = 5658, - [5659] = 5659, + [5658] = 925, + [5659] = 936, [5660] = 5660, - [5661] = 5661, + [5661] = 5654, [5662] = 5662, - [5663] = 5663, + [5663] = 5652, [5664] = 5664, [5665] = 5665, [5666] = 5666, - [5667] = 5667, - [5668] = 5668, + [5667] = 4557, + [5668] = 5654, [5669] = 5669, - [5670] = 5670, - [5671] = 5671, - [5672] = 5672, + [5670] = 5652, + [5671] = 918, + [5672] = 917, [5673] = 5673, [5674] = 5674, [5675] = 5675, - [5676] = 5676, - [5677] = 5677, - [5678] = 5660, + [5676] = 5652, + [5677] = 933, + [5678] = 932, [5679] = 5679, [5680] = 5680, [5681] = 5681, [5682] = 5682, - [5683] = 5683, + [5683] = 915, [5684] = 5684, [5685] = 5685, [5686] = 5686, - [5687] = 5687, - [5688] = 5688, - [5689] = 5689, + [5687] = 4895, + [5688] = 5654, + [5689] = 4490, [5690] = 5690, - [5691] = 5691, + [5691] = 5113, [5692] = 5692, - [5693] = 5677, - [5694] = 5660, + [5693] = 5693, + [5694] = 5694, [5695] = 5695, - [5696] = 5641, + [5696] = 5696, [5697] = 5697, [5698] = 5698, [5699] = 5699, @@ -10358,73 +10358,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5702] = 5702, [5703] = 5703, [5704] = 5704, - [5705] = 5705, - [5706] = 5706, - [5707] = 5707, + [5705] = 956, + [5706] = 941, + [5707] = 939, [5708] = 5708, - [5709] = 5709, + [5709] = 912, [5710] = 5710, - [5711] = 5711, + [5711] = 5644, [5712] = 5712, [5713] = 5713, - [5714] = 4554, - [5715] = 5677, - [5716] = 5660, - [5717] = 5717, + [5714] = 5714, + [5715] = 5715, + [5716] = 5716, + [5717] = 5654, [5718] = 5718, - [5719] = 5719, - [5720] = 5720, + [5719] = 5652, + [5720] = 5660, [5721] = 5721, [5722] = 5722, - [5723] = 5723, - [5724] = 5724, + [5723] = 923, + [5724] = 5662, [5725] = 5725, - [5726] = 5642, + [5726] = 5726, [5727] = 5727, [5728] = 5728, [5729] = 5729, - [5730] = 5730, + [5730] = 5666, [5731] = 5731, - [5732] = 5732, + [5732] = 5664, [5733] = 5733, [5734] = 5734, [5735] = 5735, [5736] = 5736, - [5737] = 5660, + [5737] = 5737, [5738] = 5738, - [5739] = 5739, + [5739] = 5131, [5740] = 5740, [5741] = 5741, - [5742] = 5742, + [5742] = 5690, [5743] = 5743, [5744] = 5744, [5745] = 5745, [5746] = 5746, - [5747] = 5747, - [5748] = 5677, - [5749] = 5749, + [5747] = 5746, + [5748] = 913, + [5749] = 927, [5750] = 5750, [5751] = 5751, [5752] = 5752, - [5753] = 5753, - [5754] = 5754, - [5755] = 5755, + [5753] = 5700, + [5754] = 5666, + [5755] = 5682, [5756] = 5756, [5757] = 5757, - [5758] = 5758, + [5758] = 5664, [5759] = 5759, [5760] = 5760, [5761] = 5761, - [5762] = 4561, + [5762] = 5762, [5763] = 5763, - [5764] = 5764, + [5764] = 5744, [5765] = 5765, [5766] = 5766, [5767] = 5767, - [5768] = 5768, - [5769] = 5769, + [5768] = 4484, + [5769] = 5741, [5770] = 5770, - [5771] = 5771, + [5771] = 5665, [5772] = 5772, [5773] = 5773, [5774] = 5774, @@ -10438,23 +10438,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5782] = 5782, [5783] = 5783, [5784] = 5784, - [5785] = 5785, + [5785] = 5746, [5786] = 5786, [5787] = 5787, [5788] = 5788, [5789] = 5789, [5790] = 5790, [5791] = 5791, - [5792] = 5792, + [5792] = 5646, [5793] = 5793, [5794] = 5794, [5795] = 5795, [5796] = 5796, [5797] = 5797, [5798] = 5798, - [5799] = 5799, + [5799] = 5666, [5800] = 5800, - [5801] = 5801, + [5801] = 5664, [5802] = 5802, [5803] = 5803, [5804] = 5804, @@ -10463,19 +10463,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5807] = 5807, [5808] = 5808, [5809] = 5809, - [5810] = 5677, - [5811] = 5660, + [5810] = 5810, + [5811] = 5811, [5812] = 5812, [5813] = 5813, [5814] = 5814, [5815] = 5815, - [5816] = 5763, + [5816] = 5816, [5817] = 5817, [5818] = 5818, [5819] = 5819, [5820] = 5820, [5821] = 5821, - [5822] = 917, + [5822] = 5822, [5823] = 5823, [5824] = 5824, [5825] = 5825, @@ -10483,78 +10483,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5827] = 5827, [5828] = 5828, [5829] = 5829, - [5830] = 5830, + [5830] = 5657, [5831] = 5831, [5832] = 5832, [5833] = 5833, [5834] = 5834, [5835] = 5835, - [5836] = 5651, + [5836] = 5836, [5837] = 5837, [5838] = 5838, - [5839] = 2361, - [5840] = 5652, - [5841] = 5654, - [5842] = 2362, + [5839] = 5839, + [5840] = 5840, + [5841] = 5651, + [5842] = 5649, [5843] = 5843, [5844] = 5844, - [5845] = 2364, - [5846] = 5846, - [5847] = 5792, - [5848] = 5740, - [5849] = 5849, + [5845] = 5845, + [5846] = 5650, + [5847] = 5651, + [5848] = 5848, + [5849] = 5650, [5850] = 5850, [5851] = 5851, [5852] = 5852, [5853] = 5853, [5854] = 5854, - [5855] = 5855, + [5855] = 5649, [5856] = 5856, [5857] = 5857, - [5858] = 2289, - [5859] = 5642, + [5858] = 5858, + [5859] = 5859, [5860] = 5860, [5861] = 5861, - [5862] = 5724, + [5862] = 5862, [5863] = 5863, - [5864] = 937, + [5864] = 5864, [5865] = 5865, - [5866] = 2292, - [5867] = 2304, - [5868] = 5670, + [5866] = 5866, + [5867] = 5867, + [5868] = 5868, [5869] = 5869, - [5870] = 2329, - [5871] = 2332, + [5870] = 5870, + [5871] = 5669, [5872] = 5872, - [5873] = 2386, + [5873] = 5873, [5874] = 5874, - [5875] = 2385, - [5876] = 2384, + [5875] = 5875, + [5876] = 5876, [5877] = 5877, [5878] = 5878, [5879] = 5879, - [5880] = 5880, - [5881] = 5881, + [5880] = 5673, + [5881] = 5674, [5882] = 5882, - [5883] = 5883, + [5883] = 5675, [5884] = 5884, [5885] = 5885, [5886] = 5886, [5887] = 5887, [5888] = 5888, [5889] = 5889, - [5890] = 5666, + [5890] = 5890, [5891] = 5891, [5892] = 5892, - [5893] = 5692, + [5893] = 5893, [5894] = 5894, [5895] = 5895, - [5896] = 5896, + [5896] = 5741, [5897] = 5897, - [5898] = 5642, - [5899] = 5724, + [5898] = 5898, + [5899] = 5899, [5900] = 5900, - [5901] = 4944, + [5901] = 5901, [5902] = 5902, [5903] = 5903, [5904] = 5904, @@ -10566,71 +10566,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5910] = 5910, [5911] = 5911, [5912] = 5912, - [5913] = 5874, + [5913] = 5913, [5914] = 5914, [5915] = 5915, [5916] = 5916, [5917] = 5917, - [5918] = 5654, - [5919] = 5652, + [5918] = 5918, + [5919] = 5919, [5920] = 5920, [5921] = 5921, - [5922] = 5884, + [5922] = 5922, [5923] = 5923, [5924] = 5924, - [5925] = 5884, + [5925] = 5925, [5926] = 5926, - [5927] = 5927, + [5927] = 5746, [5928] = 5928, - [5929] = 5651, - [5930] = 5930, - [5931] = 5724, + [5929] = 5929, + [5930] = 5686, + [5931] = 5931, [5932] = 5932, [5933] = 5933, - [5934] = 929, - [5935] = 5648, - [5936] = 914, + [5934] = 5666, + [5935] = 5664, + [5936] = 5936, [5937] = 5937, - [5938] = 939, + [5938] = 5938, [5939] = 5939, [5940] = 5940, - [5941] = 5941, + [5941] = 5646, [5942] = 5942, [5943] = 5943, [5944] = 5944, [5945] = 5945, [5946] = 5946, - [5947] = 5824, + [5947] = 5947, [5948] = 5948, [5949] = 5949, [5950] = 5950, [5951] = 5951, - [5952] = 4567, - [5953] = 5643, + [5952] = 5952, + [5953] = 5953, [5954] = 5954, [5955] = 5955, - [5956] = 5663, - [5957] = 5957, + [5956] = 5956, + [5957] = 2258, [5958] = 5958, - [5959] = 5648, - [5960] = 5667, - [5961] = 5668, - [5962] = 5962, - [5963] = 5963, + [5959] = 2257, + [5960] = 5960, + [5961] = 5961, + [5962] = 5669, + [5963] = 2256, [5964] = 5964, [5965] = 5965, - [5966] = 5966, - [5967] = 5967, + [5966] = 5673, + [5967] = 5674, [5968] = 5968, - [5969] = 953, + [5969] = 5969, [5970] = 5970, - [5971] = 5680, + [5971] = 5971, [5972] = 5972, [5973] = 5973, [5974] = 5974, [5975] = 5975, - [5976] = 5976, - [5977] = 5977, + [5976] = 5701, + [5977] = 5686, [5978] = 5978, [5979] = 5979, [5980] = 5980, @@ -10638,83 +10638,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5982] = 5982, [5983] = 5983, [5984] = 5984, - [5985] = 5874, - [5986] = 5695, - [5987] = 5641, - [5988] = 5988, + [5985] = 2245, + [5986] = 2241, + [5987] = 2239, + [5988] = 4470, [5989] = 5989, - [5990] = 5990, - [5991] = 5991, - [5992] = 5992, - [5993] = 5993, - [5994] = 5994, - [5995] = 5995, - [5996] = 5706, + [5990] = 2234, + [5991] = 2232, + [5992] = 5701, + [5993] = 5702, + [5994] = 2377, + [5995] = 2384, + [5996] = 2246, [5997] = 5997, [5998] = 5998, - [5999] = 5999, - [6000] = 5710, + [5999] = 5702, + [6000] = 6000, [6001] = 6001, - [6002] = 6002, + [6002] = 5712, [6003] = 6003, [6004] = 6004, [6005] = 6005, - [6006] = 5884, + [6006] = 5716, [6007] = 6007, [6008] = 6008, [6009] = 6009, - [6010] = 5720, + [6010] = 6010, [6011] = 6011, - [6012] = 5722, - [6013] = 5723, + [6012] = 6012, + [6013] = 6013, [6014] = 6014, - [6015] = 5727, - [6016] = 6016, - [6017] = 5730, - [6018] = 6018, - [6019] = 5732, + [6015] = 6015, + [6016] = 5726, + [6017] = 6017, + [6018] = 5728, + [6019] = 5729, [6020] = 6020, - [6021] = 6021, - [6022] = 5642, - [6023] = 6023, - [6024] = 5724, - [6025] = 6025, + [6021] = 5733, + [6022] = 5712, + [6023] = 5736, + [6024] = 6024, + [6025] = 5738, [6026] = 6026, - [6027] = 6027, + [6027] = 5716, [6028] = 6028, [6029] = 6029, - [6030] = 920, + [6030] = 6030, [6031] = 6031, - [6032] = 6032, - [6033] = 921, + [6032] = 5741, + [6033] = 6033, [6034] = 6034, - [6035] = 949, + [6035] = 6035, [6036] = 6036, [6037] = 6037, [6038] = 6038, [6039] = 6039, - [6040] = 952, - [6041] = 922, + [6040] = 6040, + [6041] = 6041, [6042] = 6042, [6043] = 6043, - [6044] = 5761, + [6044] = 5776, [6045] = 6045, [6046] = 6046, [6047] = 6047, [6048] = 6048, [6049] = 6049, - [6050] = 5663, - [6051] = 5768, + [6050] = 5767, + [6051] = 6051, [6052] = 6052, - [6053] = 5770, + [6053] = 5774, [6054] = 6054, [6055] = 6055, [6056] = 6056, - [6057] = 6057, - [6058] = 5667, - [6059] = 6059, - [6060] = 5668, - [6061] = 5669, + [6057] = 5774, + [6058] = 6058, + [6059] = 5776, + [6060] = 6060, + [6061] = 6061, [6062] = 6062, [6063] = 6063, [6064] = 6064, @@ -10723,11 +10723,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6067] = 6067, [6068] = 6068, [6069] = 6069, - [6070] = 6070, - [6071] = 5680, + [6070] = 5767, + [6071] = 6071, [6072] = 6072, - [6073] = 6073, - [6074] = 5130, + [6073] = 5746, + [6074] = 6074, [6075] = 6075, [6076] = 6076, [6077] = 6077, @@ -10739,916 +10739,916 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6083] = 6083, [6084] = 6084, [6085] = 6085, - [6086] = 6086, + [6086] = 5726, [6087] = 6087, - [6088] = 6088, - [6089] = 6089, - [6090] = 6090, - [6091] = 6091, - [6092] = 6092, + [6088] = 5728, + [6089] = 5729, + [6090] = 5733, + [6091] = 5736, + [6092] = 5738, [6093] = 6093, [6094] = 6094, [6095] = 6095, [6096] = 6096, [6097] = 6097, [6098] = 6098, - [6099] = 6099, - [6100] = 5770, - [6101] = 5768, + [6099] = 5698, + [6100] = 6100, + [6101] = 6101, [6102] = 6102, [6103] = 6103, [6104] = 6104, - [6105] = 5651, + [6105] = 6105, [6106] = 6106, [6107] = 6107, [6108] = 6108, - [6109] = 5652, - [6110] = 5654, - [6111] = 5651, + [6109] = 6109, + [6110] = 6110, + [6111] = 5649, [6112] = 6112, [6113] = 6113, [6114] = 6114, - [6115] = 6115, - [6116] = 6116, + [6115] = 5650, + [6116] = 5651, [6117] = 6117, - [6118] = 5695, - [6119] = 5874, - [6120] = 5652, - [6121] = 5654, + [6118] = 5666, + [6119] = 5664, + [6120] = 6120, + [6121] = 6121, [6122] = 6122, [6123] = 6123, [6124] = 6124, [6125] = 6125, [6126] = 6126, [6127] = 6127, - [6128] = 5692, + [6128] = 6128, [6129] = 6129, [6130] = 6130, [6131] = 6131, [6132] = 6132, - [6133] = 5755, - [6134] = 6134, + [6133] = 6133, + [6134] = 4458, [6135] = 6135, [6136] = 6136, [6137] = 6137, [6138] = 6138, [6139] = 6139, - [6140] = 4580, + [6140] = 6140, [6141] = 6141, [6142] = 6142, - [6143] = 5739, - [6144] = 5884, - [6145] = 5740, - [6146] = 5792, - [6147] = 5743, + [6143] = 6143, + [6144] = 5741, + [6145] = 6145, + [6146] = 6146, + [6147] = 6147, [6148] = 6148, [6149] = 6149, [6150] = 6150, - [6151] = 5763, - [6152] = 6152, - [6153] = 5773, - [6154] = 5783, - [6155] = 5774, - [6156] = 5776, - [6157] = 5396, - [6158] = 5777, - [6159] = 2303, - [6160] = 5706, - [6161] = 5761, - [6162] = 5642, - [6163] = 5724, + [6151] = 6151, + [6152] = 5738, + [6153] = 6153, + [6154] = 6154, + [6155] = 6155, + [6156] = 5736, + [6157] = 6157, + [6158] = 5733, + [6159] = 6159, + [6160] = 5649, + [6161] = 6161, + [6162] = 6162, + [6163] = 5650, [6164] = 6164, - [6165] = 5710, + [6165] = 5651, [6166] = 6166, - [6167] = 2276, + [6167] = 5729, [6168] = 6168, [6169] = 6169, [6170] = 6170, - [6171] = 5794, - [6172] = 6172, - [6173] = 5759, - [6174] = 6174, - [6175] = 5757, + [6171] = 6171, + [6172] = 5728, + [6173] = 6173, + [6174] = 5726, + [6175] = 5657, [6176] = 6176, [6177] = 6177, - [6178] = 5804, + [6178] = 6178, [6179] = 6179, [6180] = 6180, [6181] = 6181, [6182] = 6182, [6183] = 6183, - [6184] = 5720, + [6184] = 6184, [6185] = 6185, [6186] = 6186, [6187] = 6187, - [6188] = 5722, - [6189] = 5723, + [6188] = 6188, + [6189] = 6189, [6190] = 6190, [6191] = 6191, - [6192] = 5869, - [6193] = 5727, - [6194] = 5648, - [6195] = 5885, - [6196] = 5770, - [6197] = 5730, - [6198] = 5732, - [6199] = 5666, - [6200] = 6200, - [6201] = 5753, - [6202] = 6202, - [6203] = 6203, - [6204] = 5643, - [6205] = 5648, - [6206] = 5970, - [6207] = 5768, - [6208] = 5972, - [6209] = 5663, - [6210] = 6210, - [6211] = 6211, + [6192] = 6192, + [6193] = 6193, + [6194] = 5716, + [6195] = 6195, + [6196] = 6196, + [6197] = 6197, + [6198] = 6198, + [6199] = 6199, + [6200] = 5646, + [6201] = 6201, + [6202] = 5712, + [6203] = 5680, + [6204] = 5682, + [6205] = 6205, + [6206] = 6206, + [6207] = 5700, + [6208] = 5759, + [6209] = 5702, + [6210] = 5761, + [6211] = 5685, [6212] = 6212, - [6213] = 5667, - [6214] = 5668, - [6215] = 6215, - [6216] = 6216, + [6213] = 5701, + [6214] = 5763, + [6215] = 5669, + [6216] = 5765, [6217] = 6217, - [6218] = 5761, - [6219] = 960, - [6220] = 6220, + [6218] = 6218, + [6219] = 5673, + [6220] = 5674, [6221] = 6221, - [6222] = 926, - [6223] = 951, - [6224] = 940, - [6225] = 6225, + [6222] = 6222, + [6223] = 6223, + [6224] = 5767, + [6225] = 5690, [6226] = 6226, - [6227] = 5732, - [6228] = 6228, - [6229] = 5730, - [6230] = 5727, - [6231] = 6231, - [6232] = 6045, - [6233] = 5723, + [6227] = 5738, + [6228] = 5736, + [6229] = 6229, + [6230] = 6230, + [6231] = 5733, + [6232] = 5729, + [6233] = 6233, [6234] = 6234, - [6235] = 5695, - [6236] = 5641, - [6237] = 955, + [6235] = 6235, + [6236] = 6236, + [6237] = 6237, [6238] = 6238, - [6239] = 5668, - [6240] = 5667, - [6241] = 6241, - [6242] = 5663, + [6239] = 5674, + [6240] = 5673, + [6241] = 5701, + [6242] = 5702, [6243] = 6243, - [6244] = 5667, - [6245] = 5706, - [6246] = 5668, - [6247] = 5669, - [6248] = 6248, - [6249] = 5710, - [6250] = 6250, - [6251] = 6251, - [6252] = 6252, + [6244] = 6244, + [6245] = 5686, + [6246] = 6246, + [6247] = 6247, + [6248] = 5692, + [6249] = 5693, + [6250] = 5694, + [6251] = 5712, + [6252] = 5695, [6253] = 6253, [6254] = 6254, - [6255] = 6255, + [6255] = 5716, [6256] = 6256, - [6257] = 5720, + [6257] = 6257, [6258] = 6258, - [6259] = 5722, - [6260] = 5723, - [6261] = 5670, - [6262] = 5727, - [6263] = 5770, - [6264] = 5730, - [6265] = 6265, - [6266] = 5732, - [6267] = 5768, - [6268] = 6268, + [6259] = 6259, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 5726, + [6264] = 6264, + [6265] = 5728, + [6266] = 5729, + [6267] = 6267, + [6268] = 5733, [6269] = 6269, - [6270] = 6270, + [6270] = 5736, [6271] = 6271, - [6272] = 6272, - [6273] = 5732, - [6274] = 5730, - [6275] = 6275, - [6276] = 5680, - [6277] = 5727, - [6278] = 5723, + [6272] = 5738, + [6273] = 6273, + [6274] = 5774, + [6275] = 5776, + [6276] = 6276, + [6277] = 5776, + [6278] = 6278, [6279] = 6279, - [6280] = 5722, + [6280] = 6280, [6281] = 6281, - [6282] = 5720, + [6282] = 5774, [6283] = 6283, [6284] = 6284, - [6285] = 5641, - [6286] = 5695, - [6287] = 5753, + [6285] = 6285, + [6286] = 5704, + [6287] = 6287, [6288] = 6288, - [6289] = 5755, + [6289] = 5675, [6290] = 6290, - [6291] = 5757, - [6292] = 4588, + [6291] = 5674, + [6292] = 5738, [6293] = 5759, - [6294] = 6294, + [6294] = 5736, [6295] = 5761, - [6296] = 6296, - [6297] = 6297, - [6298] = 6298, - [6299] = 5668, - [6300] = 5667, - [6301] = 5663, - [6302] = 5768, - [6303] = 6303, - [6304] = 5770, - [6305] = 5695, - [6306] = 6306, + [6296] = 5733, + [6297] = 5763, + [6298] = 5729, + [6299] = 5765, + [6300] = 6300, + [6301] = 5767, + [6302] = 5728, + [6303] = 5726, + [6304] = 5673, + [6305] = 5702, + [6306] = 5701, [6307] = 6307, - [6308] = 5641, - [6309] = 5706, - [6310] = 5874, - [6311] = 5710, + [6308] = 5774, + [6309] = 6309, + [6310] = 5776, + [6311] = 5669, [6312] = 6312, [6313] = 6313, [6314] = 6314, - [6315] = 5732, - [6316] = 6316, - [6317] = 6317, - [6318] = 6318, - [6319] = 6319, + [6315] = 5660, + [6316] = 5721, + [6317] = 5722, + [6318] = 5662, + [6319] = 5674, [6320] = 6320, - [6321] = 6321, - [6322] = 5720, - [6323] = 5722, - [6324] = 5723, + [6321] = 5673, + [6322] = 5669, + [6323] = 6323, + [6324] = 5665, [6325] = 6325, - [6326] = 5730, + [6326] = 5646, [6327] = 6327, - [6328] = 6328, - [6329] = 6329, + [6328] = 5797, + [6329] = 5803, [6330] = 6330, [6331] = 6331, - [6332] = 5727, + [6332] = 6332, [6333] = 6333, [6334] = 6334, - [6335] = 968, + [6335] = 5857, [6336] = 6336, [6337] = 6337, - [6338] = 6338, - [6339] = 321, + [6338] = 4749, + [6339] = 6339, [6340] = 6340, [6341] = 6341, - [6342] = 6342, + [6342] = 2530, [6343] = 6343, [6344] = 6344, - [6345] = 6345, + [6345] = 2522, [6346] = 6346, [6347] = 6347, [6348] = 6348, - [6349] = 6349, + [6349] = 334, [6350] = 6350, [6351] = 6351, [6352] = 6352, - [6353] = 1108, + [6353] = 6353, [6354] = 6354, - [6355] = 965, + [6355] = 6355, [6356] = 6356, [6357] = 6357, [6358] = 6358, [6359] = 6359, - [6360] = 1100, - [6361] = 992, - [6362] = 6362, + [6360] = 6360, + [6361] = 2489, + [6362] = 3384, [6363] = 6363, - [6364] = 6364, + [6364] = 3386, [6365] = 6365, - [6366] = 991, + [6366] = 6366, [6367] = 6367, - [6368] = 6351, - [6369] = 6369, + [6368] = 6340, + [6369] = 3394, [6370] = 6370, - [6371] = 6371, + [6371] = 3360, [6372] = 6372, - [6373] = 6373, - [6374] = 6374, + [6373] = 1088, + [6374] = 6350, [6375] = 6375, - [6376] = 996, + [6376] = 1091, [6377] = 6377, [6378] = 6378, [6379] = 1098, [6380] = 6380, - [6381] = 6381, - [6382] = 6382, - [6383] = 6375, - [6384] = 6373, - [6385] = 1094, + [6381] = 1105, + [6382] = 1108, + [6383] = 6383, + [6384] = 1109, + [6385] = 6385, [6386] = 6386, [6387] = 6387, - [6388] = 6334, - [6389] = 6352, - [6390] = 6356, + [6388] = 6388, + [6389] = 6344, + [6390] = 6348, [6391] = 6391, - [6392] = 6336, - [6393] = 6393, - [6394] = 6394, - [6395] = 1008, - [6396] = 6396, + [6392] = 3416, + [6393] = 6366, + [6394] = 3364, + [6395] = 6395, + [6396] = 1034, [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6400, - [6401] = 6401, + [6398] = 6340, + [6399] = 6395, + [6400] = 6395, + [6401] = 6391, [6402] = 6402, - [6403] = 6403, - [6404] = 6404, + [6403] = 6350, + [6404] = 6363, [6405] = 6405, - [6406] = 6406, - [6407] = 6407, - [6408] = 6408, - [6409] = 6409, - [6410] = 6406, + [6406] = 3371, + [6407] = 1112, + [6408] = 1113, + [6409] = 6367, + [6410] = 6410, [6411] = 6411, - [6412] = 6409, - [6413] = 6411, - [6414] = 6406, - [6415] = 6415, + [6412] = 6412, + [6413] = 3372, + [6414] = 6410, + [6415] = 6411, [6416] = 6416, [6417] = 6417, - [6418] = 6411, - [6419] = 6380, - [6420] = 6409, - [6421] = 6351, - [6422] = 6377, + [6418] = 6418, + [6419] = 6419, + [6420] = 1115, + [6421] = 6421, + [6422] = 6366, [6423] = 6423, - [6424] = 6362, - [6425] = 6357, - [6426] = 976, - [6427] = 6374, - [6428] = 6397, - [6429] = 6429, + [6424] = 6424, + [6425] = 6425, + [6426] = 6348, + [6427] = 1117, + [6428] = 1123, + [6429] = 6344, [6430] = 6430, [6431] = 6431, [6432] = 6432, [6433] = 6433, - [6434] = 6434, - [6435] = 6394, - [6436] = 6434, - [6437] = 6386, - [6438] = 6393, - [6439] = 6423, - [6440] = 6382, - [6441] = 6433, - [6442] = 6434, - [6443] = 6443, - [6444] = 6433, - [6445] = 6432, + [6434] = 3378, + [6435] = 6360, + [6436] = 1129, + [6437] = 6437, + [6438] = 6438, + [6439] = 6439, + [6440] = 6440, + [6441] = 6421, + [6442] = 6442, + [6443] = 6423, + [6444] = 6383, + [6445] = 6445, [6446] = 6446, - [6447] = 6423, - [6448] = 6432, - [6449] = 6356, - [6450] = 6334, - [6451] = 6402, - [6452] = 6401, - [6453] = 988, - [6454] = 999, - [6455] = 977, - [6456] = 6456, - [6457] = 1001, - [6458] = 6372, + [6447] = 1133, + [6448] = 6448, + [6449] = 6449, + [6450] = 6449, + [6451] = 6451, + [6452] = 6452, + [6453] = 6453, + [6454] = 6454, + [6455] = 6380, + [6456] = 6378, + [6457] = 6433, + [6458] = 6424, [6459] = 6459, - [6460] = 6387, - [6461] = 6378, - [6462] = 990, - [6463] = 6371, - [6464] = 6369, - [6465] = 989, - [6466] = 6466, - [6467] = 1005, - [6468] = 6357, - [6469] = 6362, - [6470] = 6345, - [6471] = 1141, + [6460] = 6451, + [6461] = 6461, + [6462] = 6448, + [6463] = 6445, + [6464] = 1134, + [6465] = 6465, + [6466] = 6423, + [6467] = 6421, + [6468] = 1135, + [6469] = 6411, + [6470] = 6410, + [6471] = 1136, [6472] = 6472, - [6473] = 6380, - [6474] = 6474, - [6475] = 6475, - [6476] = 6351, - [6477] = 6477, - [6478] = 6478, - [6479] = 6479, - [6480] = 6354, - [6481] = 319, - [6482] = 6362, - [6483] = 986, - [6484] = 6429, - [6485] = 6485, - [6486] = 994, - [6487] = 987, - [6488] = 6488, - [6489] = 6356, - [6490] = 6357, - [6491] = 1086, + [6473] = 6473, + [6474] = 6431, + [6475] = 6430, + [6476] = 6353, + [6477] = 6346, + [6478] = 6424, + [6479] = 1138, + [6480] = 6480, + [6481] = 6350, + [6482] = 6482, + [6483] = 6419, + [6484] = 1150, + [6485] = 3363, + [6486] = 6486, + [6487] = 6380, + [6488] = 6377, + [6489] = 1120, + [6490] = 6366, + [6491] = 1048, [6492] = 6492, - [6493] = 6493, - [6494] = 6492, - [6495] = 6485, - [6496] = 6488, - [6497] = 6380, - [6498] = 1006, - [6499] = 6429, - [6500] = 6349, - [6501] = 6501, - [6502] = 6475, - [6503] = 3371, - [6504] = 6382, - [6505] = 6393, - [6506] = 6394, - [6507] = 6346, - [6508] = 1134, - [6509] = 6466, - [6510] = 6417, - [6511] = 1117, - [6512] = 6409, - [6513] = 6411, - [6514] = 3359, - [6515] = 6406, - [6516] = 6456, - [6517] = 6415, - [6518] = 6518, - [6519] = 6408, + [6493] = 1051, + [6494] = 6494, + [6495] = 1053, + [6496] = 6366, + [6497] = 6497, + [6498] = 6498, + [6499] = 1151, + [6500] = 6433, + [6501] = 6425, + [6502] = 6502, + [6503] = 6503, + [6504] = 6504, + [6505] = 6505, + [6506] = 6506, + [6507] = 6507, + [6508] = 6508, + [6509] = 6509, + [6510] = 6510, + [6511] = 6511, + [6512] = 6418, + [6513] = 6383, + [6514] = 6417, + [6515] = 6416, + [6516] = 6516, + [6517] = 6517, + [6518] = 6416, + [6519] = 6519, [6520] = 6520, - [6521] = 6432, - [6522] = 6433, - [6523] = 6523, + [6521] = 6521, + [6522] = 6497, + [6523] = 6417, [6524] = 6524, [6525] = 6525, - [6526] = 6526, - [6527] = 1083, - [6528] = 6434, - [6529] = 1082, - [6530] = 6356, + [6526] = 6418, + [6527] = 6527, + [6528] = 6528, + [6529] = 6529, + [6530] = 6530, [6531] = 6531, - [6532] = 6334, - [6533] = 6533, - [6534] = 6423, - [6535] = 6407, - [6536] = 1088, - [6537] = 6537, - [6538] = 6434, - [6539] = 982, - [6540] = 6433, - [6541] = 6402, - [6542] = 6401, - [6543] = 6417, - [6544] = 6526, - [6545] = 6336, - [6546] = 6430, - [6547] = 1079, - [6548] = 6432, - [6549] = 1151, - [6550] = 6423, - [6551] = 1081, - [6552] = 2513, - [6553] = 6553, - [6554] = 6554, - [6555] = 2517, - [6556] = 6429, - [6557] = 1003, - [6558] = 6558, - [6559] = 6559, - [6560] = 6338, - [6561] = 6334, - [6562] = 6417, - [6563] = 6526, - [6564] = 6415, - [6565] = 6565, - [6566] = 6352, - [6567] = 6408, - [6568] = 6363, - [6569] = 6365, - [6570] = 1076, - [6571] = 6571, - [6572] = 1150, - [6573] = 1148, - [6574] = 6574, - [6575] = 6415, - [6576] = 993, - [6577] = 6407, - [6578] = 6578, - [6579] = 6336, - [6580] = 6554, - [6581] = 6338, - [6582] = 6582, - [6583] = 6352, - [6584] = 964, - [6585] = 6346, - [6586] = 6402, - [6587] = 6401, - [6588] = 981, + [6532] = 6438, + [6533] = 1158, + [6534] = 6505, + [6535] = 6504, + [6536] = 6502, + [6537] = 6440, + [6538] = 994, + [6539] = 1121, + [6540] = 6540, + [6541] = 1119, + [6542] = 6442, + [6543] = 6543, + [6544] = 6446, + [6545] = 1077, + [6546] = 6503, + [6547] = 1073, + [6548] = 6340, + [6549] = 6377, + [6550] = 6387, + [6551] = 1063, + [6552] = 1061, + [6553] = 6395, + [6554] = 6521, + [6555] = 6555, + [6556] = 6391, + [6557] = 6520, + [6558] = 6363, + [6559] = 3379, + [6560] = 6560, + [6561] = 6459, + [6562] = 6416, + [6563] = 6417, + [6564] = 1059, + [6565] = 6360, + [6566] = 1057, + [6567] = 6567, + [6568] = 6568, + [6569] = 1056, + [6570] = 6509, + [6571] = 6508, + [6572] = 6348, + [6573] = 6344, + [6574] = 6430, + [6575] = 6383, + [6576] = 6431, + [6577] = 6380, + [6578] = 6506, + [6579] = 6378, + [6580] = 6498, + [6581] = 6352, + [6582] = 6418, + [6583] = 6583, + [6584] = 1055, + [6585] = 6585, + [6586] = 6586, + [6587] = 6587, + [6588] = 6347, [6589] = 6589, - [6590] = 6590, - [6591] = 6349, - [6592] = 6387, - [6593] = 6593, - [6594] = 6373, - [6595] = 6378, - [6596] = 6375, - [6597] = 6363, - [6598] = 6365, - [6599] = 6369, - [6600] = 6600, - [6601] = 6601, - [6602] = 6602, - [6603] = 6603, - [6604] = 6604, - [6605] = 6377, - [6606] = 1140, - [6607] = 1139, - [6608] = 6387, - [6609] = 6373, - [6610] = 6357, - [6611] = 6378, - [6612] = 6604, - [6613] = 6371, - [6614] = 6375, - [6615] = 973, - [6616] = 6408, - [6617] = 6617, - [6618] = 6618, + [6590] = 6378, + [6591] = 6591, + [6592] = 3406, + [6593] = 6339, + [6594] = 1038, + [6595] = 6595, + [6596] = 1027, + [6597] = 6505, + [6598] = 6598, + [6599] = 6599, + [6600] = 6498, + [6601] = 6506, + [6602] = 6508, + [6603] = 6509, + [6604] = 6486, + [6605] = 6472, + [6606] = 6504, + [6607] = 1032, + [6608] = 6520, + [6609] = 6521, + [6610] = 1033, + [6611] = 1039, + [6612] = 6445, + [6613] = 6598, + [6614] = 6448, + [6615] = 6449, + [6616] = 6451, + [6617] = 1040, + [6618] = 6482, [6619] = 6619, - [6620] = 6374, + [6620] = 6620, [6621] = 6621, - [6622] = 1138, - [6623] = 6372, - [6624] = 6407, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, [6625] = 6625, - [6626] = 1136, - [6627] = 6377, - [6628] = 6628, - [6629] = 6629, - [6630] = 6374, - [6631] = 6369, - [6632] = 1135, - [6633] = 980, - [6634] = 6367, - [6635] = 969, - [6636] = 6636, - [6637] = 6362, - [6638] = 6372, - [6639] = 6364, - [6640] = 979, + [6626] = 6626, + [6627] = 1041, + [6628] = 6503, + [6629] = 6360, + [6630] = 1042, + [6631] = 1083, + [6632] = 6632, + [6633] = 1068, + [6634] = 6634, + [6635] = 6635, + [6636] = 1066, + [6637] = 6637, + [6638] = 6638, + [6639] = 6378, + [6640] = 6640, [6641] = 6641, [6642] = 6642, [6643] = 6643, - [6644] = 985, - [6645] = 6601, - [6646] = 6646, - [6647] = 978, - [6648] = 6342, - [6649] = 6343, - [6650] = 983, - [6651] = 975, - [6652] = 971, - [6653] = 6345, - [6654] = 6344, - [6655] = 6372, - [6656] = 6656, - [6657] = 6643, + [6644] = 6452, + [6645] = 6452, + [6646] = 1025, + [6647] = 6641, + [6648] = 6637, + [6649] = 6632, + [6650] = 6380, + [6651] = 6624, + [6652] = 6454, + [6653] = 3375, + [6654] = 6341, + [6655] = 6343, + [6656] = 6453, + [6657] = 6623, [6658] = 6658, - [6659] = 6659, - [6660] = 6660, - [6661] = 6661, - [6662] = 2475, - [6663] = 6374, - [6664] = 6533, - [6665] = 6619, - [6666] = 6666, - [6667] = 6617, - [6668] = 6668, - [6669] = 966, - [6670] = 6351, - [6671] = 6671, - [6672] = 6672, - [6673] = 6641, - [6674] = 6367, - [6675] = 3369, - [6676] = 6558, - [6677] = 3407, - [6678] = 4751, - [6679] = 6679, - [6680] = 3413, - [6681] = 3410, - [6682] = 3368, - [6683] = 6600, - [6684] = 1115, - [6685] = 1066, - [6686] = 6590, - [6687] = 6356, - [6688] = 6380, - [6689] = 6604, + [6659] = 3393, + [6660] = 1003, + [6661] = 3403, + [6662] = 6425, + [6663] = 6663, + [6664] = 990, + [6665] = 989, + [6666] = 6620, + [6667] = 983, + [6668] = 970, + [6669] = 6669, + [6670] = 6507, + [6671] = 6352, + [6672] = 6347, + [6673] = 6451, + [6674] = 6449, + [6675] = 6346, + [6676] = 1004, + [6677] = 4787, + [6678] = 6448, + [6679] = 6339, + [6680] = 6680, + [6681] = 1005, + [6682] = 6540, + [6683] = 6683, + [6684] = 1006, + [6685] = 1155, + [6686] = 6686, + [6687] = 1130, + [6688] = 6387, + [6689] = 6383, [6690] = 6690, - [6691] = 1051, - [6692] = 1042, - [6693] = 6601, - [6694] = 6377, - [6695] = 6600, - [6696] = 6696, - [6697] = 3373, - [6698] = 6698, - [6699] = 6590, - [6700] = 974, - [6701] = 3388, - [6702] = 6342, - [6703] = 6582, - [6704] = 6704, - [6705] = 6582, - [6706] = 6706, - [6707] = 6578, - [6708] = 1047, - [6709] = 6578, - [6710] = 6604, - [6711] = 967, + [6691] = 6446, + [6692] = 6445, + [6693] = 3392, + [6694] = 6350, + [6695] = 1153, + [6696] = 1075, + [6697] = 1094, + [6698] = 6472, + [6699] = 1095, + [6700] = 6700, + [6701] = 1089, + [6702] = 333, + [6703] = 6350, + [6704] = 1128, + [6705] = 6599, + [6706] = 6498, + [6707] = 6589, + [6708] = 6586, + [6709] = 1142, + [6710] = 6366, + [6711] = 6442, [6712] = 6712, - [6713] = 6713, - [6714] = 3402, - [6715] = 6601, - [6716] = 3399, - [6717] = 6717, - [6718] = 6600, - [6719] = 6719, - [6720] = 6590, - [6721] = 6721, + [6713] = 6353, + [6714] = 6440, + [6715] = 6344, + [6716] = 6425, + [6717] = 6348, + [6718] = 6421, + [6719] = 1149, + [6720] = 6430, + [6721] = 6341, [6722] = 6722, - [6723] = 6337, - [6724] = 3398, - [6725] = 6351, - [6726] = 6726, - [6727] = 6727, - [6728] = 6728, - [6729] = 6582, - [6730] = 6578, - [6731] = 1110, - [6732] = 6493, - [6733] = 1060, - [6734] = 1050, - [6735] = 1052, - [6736] = 1054, - [6737] = 6354, - [6738] = 6348, - [6739] = 6350, + [6723] = 1148, + [6724] = 1022, + [6725] = 6725, + [6726] = 1023, + [6727] = 6431, + [6728] = 1072, + [6729] = 6729, + [6730] = 1074, + [6731] = 1084, + [6732] = 6732, + [6733] = 1090, + [6734] = 1106, + [6735] = 6367, + [6736] = 6410, + [6737] = 6411, + [6738] = 6438, + [6739] = 6739, [6740] = 6740, - [6741] = 6741, - [6742] = 6359, - [6743] = 6741, - [6744] = 963, - [6745] = 1033, - [6746] = 6375, - [6747] = 6373, - [6748] = 3362, + [6741] = 6421, + [6742] = 6423, + [6743] = 6433, + [6744] = 6424, + [6745] = 6745, + [6746] = 6746, + [6747] = 6747, + [6748] = 1146, [6749] = 6749, - [6750] = 6345, - [6751] = 6751, - [6752] = 6354, - [6753] = 6533, - [6754] = 6754, - [6755] = 6354, - [6756] = 6660, - [6757] = 6757, - [6758] = 6345, - [6759] = 6759, - [6760] = 6382, - [6761] = 6344, - [6762] = 6565, - [6763] = 3394, - [6764] = 6359, - [6765] = 1039, - [6766] = 1046, - [6767] = 6751, - [6768] = 3397, - [6769] = 6493, - [6770] = 6401, - [6771] = 6350, - [6772] = 6712, - [6773] = 6354, - [6774] = 6348, + [6750] = 6424, + [6751] = 3370, + [6752] = 6752, + [6753] = 3366, + [6754] = 6433, + [6755] = 6506, + [6756] = 1144, + [6757] = 6438, + [6758] = 6440, + [6759] = 6442, + [6760] = 6446, + [6761] = 6353, + [6762] = 6762, + [6763] = 1132, + [6764] = 3369, + [6765] = 6765, + [6766] = 6430, + [6767] = 6452, + [6768] = 6700, + [6769] = 6769, + [6770] = 6451, + [6771] = 6449, + [6772] = 6423, + [6773] = 6448, + [6774] = 6568, [6775] = 6775, - [6776] = 6712, - [6777] = 6578, - [6778] = 6778, - [6779] = 6582, - [6780] = 6780, - [6781] = 6660, - [6782] = 6393, - [6783] = 6394, - [6784] = 6359, - [6785] = 6337, - [6786] = 6350, - [6787] = 6787, - [6788] = 6590, - [6789] = 6348, + [6776] = 6749, + [6777] = 6497, + [6778] = 6510, + [6779] = 1127, + [6780] = 6445, + [6781] = 322, + [6782] = 6431, + [6783] = 3368, + [6784] = 6508, + [6785] = 1122, + [6786] = 6472, + [6787] = 6411, + [6788] = 6762, + [6789] = 1102, [6790] = 6790, - [6791] = 6791, - [6792] = 6396, - [6793] = 6741, - [6794] = 6337, + [6791] = 6410, + [6792] = 6412, + [6793] = 6793, + [6794] = 6402, [6795] = 6795, - [6796] = 1064, - [6797] = 6797, - [6798] = 6398, - [6799] = 3361, - [6800] = 6403, - [6801] = 1059, - [6802] = 6802, - [6803] = 6717, - [6804] = 6728, - [6805] = 6805, - [6806] = 1032, - [6807] = 6679, - [6808] = 6558, - [6809] = 6600, - [6810] = 6726, - [6811] = 6811, - [6812] = 4711, - [6813] = 6601, - [6814] = 6754, - [6815] = 6604, - [6816] = 6719, - [6817] = 1048, - [6818] = 6409, - [6819] = 6741, - [6820] = 6820, - [6821] = 6558, - [6822] = 6533, - [6823] = 1053, - [6824] = 6344, - [6825] = 6411, - [6826] = 6406, - [6827] = 6345, - [6828] = 6344, - [6829] = 6367, - [6830] = 6672, - [6831] = 6416, - [6832] = 1130, - [6833] = 4704, - [6834] = 4705, - [6835] = 6371, - [6836] = 1030, - [6837] = 6402, - [6838] = 1029, - [6839] = 310, - [6840] = 6343, - [6841] = 1073, - [6842] = 6397, - [6843] = 1087, - [6844] = 1093, - [6845] = 1026, - [6846] = 6386, - [6847] = 6372, - [6848] = 1096, - [6849] = 1080, - [6850] = 6374, - [6851] = 6719, + [6796] = 325, + [6797] = 6397, + [6798] = 6405, + [6799] = 6431, + [6800] = 6509, + [6801] = 1099, + [6802] = 6430, + [6803] = 6388, + [6804] = 6586, + [6805] = 6507, + [6806] = 1096, + [6807] = 6425, + [6808] = 6589, + [6809] = 1093, + [6810] = 6367, + [6811] = 1044, + [6812] = 6812, + [6813] = 1019, + [6814] = 1013, + [6815] = 6599, + [6816] = 6816, + [6817] = 6725, + [6818] = 6425, + [6819] = 1012, + [6820] = 6472, + [6821] = 6821, + [6822] = 6822, + [6823] = 6503, + [6824] = 6824, + [6825] = 6504, + [6826] = 6505, + [6827] = 6827, + [6828] = 961, + [6829] = 6510, + [6830] = 6712, + [6831] = 6445, + [6832] = 1030, + [6833] = 1028, + [6834] = 6418, + [6835] = 6417, + [6836] = 6416, + [6837] = 1026, + [6838] = 6762, + [6839] = 6520, + [6840] = 6840, + [6841] = 6503, + [6842] = 1017, + [6843] = 995, + [6844] = 6502, + [6845] = 6749, + [6846] = 992, + [6847] = 6448, + [6848] = 6848, + [6849] = 6732, + [6850] = 986, + [6851] = 6851, [6852] = 6852, - [6853] = 6377, - [6854] = 6443, - [6855] = 1099, - [6856] = 6740, - [6857] = 6712, - [6858] = 6858, - [6859] = 6859, - [6860] = 1055, - [6861] = 3391, + [6853] = 6521, + [6854] = 6449, + [6855] = 6725, + [6856] = 6451, + [6857] = 1050, + [6858] = 6504, + [6859] = 6505, + [6860] = 6353, + [6861] = 1052, [6862] = 6862, - [6863] = 6660, - [6864] = 6367, - [6865] = 6369, - [6866] = 6371, - [6867] = 6378, - [6868] = 6387, - [6869] = 6387, - [6870] = 6401, - [6871] = 1069, - [6872] = 1109, - [6873] = 6402, - [6874] = 6874, - [6875] = 6741, - [6876] = 6359, - [6877] = 314, - [6878] = 6378, - [6879] = 6407, - [6880] = 1085, - [6881] = 6408, - [6882] = 6415, - [6883] = 6417, - [6884] = 6726, - [6885] = 6885, - [6886] = 6886, - [6887] = 6429, - [6888] = 6432, - [6889] = 1089, - [6890] = 1122, - [6891] = 6342, - [6892] = 6343, - [6893] = 6433, - [6894] = 1119, - [6895] = 6434, - [6896] = 6375, - [6897] = 6373, - [6898] = 6719, - [6899] = 6899, - [6900] = 6423, - [6901] = 6350, - [6902] = 1118, - [6903] = 3408, - [6904] = 6904, - [6905] = 6533, - [6906] = 3406, + [6863] = 6531, + [6864] = 6775, + [6865] = 6363, + [6866] = 6790, + [6867] = 6712, + [6868] = 964, + [6869] = 6530, + [6870] = 3385, + [6871] = 6529, + [6872] = 6391, + [6873] = 6873, + [6874] = 6540, + [6875] = 6875, + [6876] = 981, + [6877] = 6507, + [6878] = 6528, + [6879] = 6446, + [6880] = 6880, + [6881] = 6442, + [6882] = 1065, + [6883] = 980, + [6884] = 6884, + [6885] = 6440, + [6886] = 6418, + [6887] = 6749, + [6888] = 6343, + [6889] = 979, + [6890] = 6340, + [6891] = 6377, + [6892] = 6417, + [6893] = 6416, + [6894] = 6387, + [6895] = 1047, + [6896] = 1087, + [6897] = 6341, + [6898] = 6343, + [6899] = 1035, + [6900] = 6438, + [6901] = 6516, + [6902] = 1054, + [6903] = 6395, + [6904] = 963, + [6905] = 6395, + [6906] = 6595, [6907] = 6907, - [6908] = 6404, - [6909] = 6518, - [6910] = 6348, - [6911] = 6365, - [6912] = 6371, - [6913] = 6363, - [6914] = 970, - [6915] = 6369, - [6916] = 1123, - [6917] = 6357, - [6918] = 6558, - [6919] = 1009, - [6920] = 3404, - [6921] = 6520, - [6922] = 6719, - [6923] = 6923, - [6924] = 6362, - [6925] = 6523, - [6926] = 6926, - [6927] = 6533, - [6928] = 6726, - [6929] = 3387, - [6930] = 6337, - [6931] = 6365, - [6932] = 6741, - [6933] = 6554, - [6934] = 6352, - [6935] = 6935, + [6908] = 4797, + [6909] = 6391, + [6910] = 973, + [6911] = 6507, + [6912] = 6712, + [6913] = 4755, + [6914] = 6540, + [6915] = 6363, + [6916] = 1154, + [6917] = 1156, + [6918] = 6432, + [6919] = 6510, + [6920] = 6433, + [6921] = 6502, + [6922] = 6439, + [6923] = 6752, + [6924] = 1157, + [6925] = 1147, + [6926] = 978, + [6927] = 6497, + [6928] = 6725, + [6929] = 6762, + [6930] = 6424, + [6931] = 6348, + [6932] = 6344, + [6933] = 6907, + [6934] = 6732, + [6935] = 6383, [6936] = 6936, - [6937] = 6660, - [6938] = 6380, - [6939] = 6602, - [6940] = 6382, - [6941] = 6393, - [6942] = 6712, - [6943] = 6524, - [6944] = 6338, - [6945] = 6363, - [6946] = 6726, - [6947] = 6394, - [6948] = 6343, - [6949] = 6342, - [6950] = 1112, - [6951] = 6554, - [6952] = 6336, - [6953] = 6953, - [6954] = 1114, - [6955] = 1010, - [6956] = 1126, - [6957] = 1011, - [6958] = 1129, - [6959] = 6336, - [6960] = 6409, - [6961] = 6411, - [6962] = 6406, - [6963] = 6963, - [6964] = 6338, - [6965] = 1012, - [6966] = 3386, - [6967] = 6397, - [6968] = 1137, - [6969] = 6386, - [6970] = 1014, - [6971] = 6621, + [6937] = 6452, + [6938] = 6749, + [6939] = 6380, + [6940] = 6378, + [6941] = 6941, + [6942] = 6492, + [6943] = 6762, + [6944] = 6421, + [6945] = 6346, + [6946] = 6946, + [6947] = 6749, + [6948] = 6510, + [6949] = 6949, + [6950] = 6411, + [6951] = 6746, + [6952] = 6732, + [6953] = 6410, + [6954] = 6498, + [6955] = 6506, + [6956] = 6508, + [6957] = 6509, + [6958] = 6958, + [6959] = 6520, + [6960] = 6521, + [6961] = 6961, + [6962] = 6367, + [6963] = 6725, + [6964] = 6419, + [6965] = 6360, + [6966] = 6377, + [6967] = 6967, + [6968] = 6540, + [6969] = 6507, + [6970] = 6387, + [6971] = 6339, [6972] = 6972, - [6973] = 6554, - [6974] = 6628, - [6975] = 6574, - [6976] = 6642, - [6977] = 1144, - [6978] = 1015, - [6979] = 6979, - [6980] = 1017, - [6981] = 1018, - [6982] = 1022, - [6983] = 6983, - [6984] = 1154, - [6985] = 1027, - [6986] = 6352, - [6987] = 6862, - [6988] = 6988, - [6989] = 1025, + [6973] = 6423, + [6974] = 6974, + [6975] = 3362, + [6976] = 6347, + [6977] = 6352, + [6978] = 1060, + [6979] = 6356, + [6980] = 6347, + [6981] = 6346, + [6982] = 6357, + [6983] = 6339, + [6984] = 6358, + [6985] = 6352, + [6986] = 6459, + [6987] = 6359, + [6988] = 6353, + [6989] = 6732, [6990] = 6990, - [6991] = 6991, - [6992] = 6992, - [6993] = 6993, - [6994] = 6994, - [6995] = 6995, + [6991] = 6712, + [6992] = 6360, + [6993] = 6343, + [6994] = 6341, + [6995] = 6340, [6996] = 6996, [6997] = 6997, [6998] = 6998, @@ -11659,480 +11659,486 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7003] = 7003, [7004] = 7004, [7005] = 7005, - [7006] = 7000, + [7006] = 7006, [7007] = 7007, [7008] = 7008, - [7009] = 6993, - [7010] = 6999, + [7009] = 7009, + [7010] = 7010, [7011] = 7011, - [7012] = 7001, + [7012] = 7012, [7013] = 7013, - [7014] = 6997, - [7015] = 6990, + [7014] = 7014, + [7015] = 7015, [7016] = 7016, [7017] = 7017, [7018] = 7018, [7019] = 7019, - [7020] = 6991, + [7020] = 6997, [7021] = 7021, [7022] = 7022, [7023] = 7023, [7024] = 7024, - [7025] = 7011, - [7026] = 7026, + [7025] = 7025, + [7026] = 7025, [7027] = 7027, [7028] = 7028, [7029] = 7029, - [7030] = 7030, + [7030] = 6998, [7031] = 7031, - [7032] = 7031, - [7033] = 7030, - [7034] = 7029, + [7032] = 7032, + [7033] = 7033, + [7034] = 7003, [7035] = 7035, [7036] = 7036, - [7037] = 7028, - [7038] = 7023, - [7039] = 7027, + [7037] = 7037, + [7038] = 7038, + [7039] = 7039, [7040] = 7040, [7041] = 7041, [7042] = 7042, [7043] = 7043, - [7044] = 7017, - [7045] = 7016, - [7046] = 7011, + [7044] = 7044, + [7045] = 7045, + [7046] = 7046, [7047] = 7047, [7048] = 7048, - [7049] = 7049, - [7050] = 7022, + [7049] = 7009, + [7050] = 7050, [7051] = 7051, - [7052] = 7052, - [7053] = 7053, + [7052] = 7019, + [7053] = 7000, [7054] = 7054, - [7055] = 7055, + [7055] = 7001, [7056] = 7056, - [7057] = 7057, + [7057] = 7002, [7058] = 7058, - [7059] = 7059, - [7060] = 7004, + [7059] = 7056, + [7060] = 7019, [7061] = 7061, [7062] = 7062, - [7063] = 7018, + [7063] = 7045, [7064] = 7064, - [7065] = 7065, + [7065] = 7043, [7066] = 7066, - [7067] = 7067, - [7068] = 6996, - [7069] = 6995, + [7067] = 7038, + [7068] = 7068, + [7069] = 7054, [7070] = 7070, - [7071] = 6994, + [7071] = 7036, [7072] = 7072, - [7073] = 7073, - [7074] = 6992, - [7075] = 7075, - [7076] = 7035, - [7077] = 6998, - [7078] = 7078, - [7079] = 7079, + [7073] = 7035, + [7074] = 7029, + [7075] = 7023, + [7076] = 7022, + [7077] = 7021, + [7078] = 7004, + [7079] = 7056, [7080] = 7080, - [7081] = 6990, - [7082] = 7016, - [7083] = 7017, - [7084] = 7084, - [7085] = 7004, - [7086] = 7086, - [7087] = 7018, + [7081] = 7070, + [7082] = 7005, + [7083] = 7006, + [7084] = 7008, + [7085] = 6996, + [7086] = 6999, + [7087] = 7021, [7088] = 7022, [7089] = 7023, - [7090] = 7090, - [7091] = 7075, - [7092] = 7092, - [7093] = 7047, - [7094] = 7036, + [7090] = 7068, + [7091] = 7016, + [7092] = 7017, + [7093] = 7093, + [7094] = 7094, [7095] = 7029, - [7096] = 7030, - [7097] = 7097, - [7098] = 7031, - [7099] = 6996, - [7100] = 6995, - [7101] = 6994, - [7102] = 7067, - [7103] = 7028, - [7104] = 7104, - [7105] = 7027, - [7106] = 6992, + [7096] = 6997, + [7097] = 7011, + [7098] = 7013, + [7099] = 7014, + [7100] = 7015, + [7101] = 7035, + [7102] = 7036, + [7103] = 7103, + [7104] = 7038, + [7105] = 7018, + [7106] = 7010, [7107] = 7107, [7108] = 7108, - [7109] = 7109, - [7110] = 7110, - [7111] = 7111, - [7112] = 7011, - [7113] = 7113, - [7114] = 7114, - [7115] = 7115, - [7116] = 7022, - [7117] = 7117, - [7118] = 7117, - [7119] = 7115, + [7109] = 7043, + [7110] = 7002, + [7111] = 7045, + [7112] = 7001, + [7113] = 7000, + [7114] = 7027, + [7115] = 7003, + [7116] = 6998, + [7117] = 7025, + [7118] = 7019, + [7119] = 7119, [7120] = 7120, - [7121] = 7121, - [7122] = 7122, - [7123] = 7113, + [7121] = 7028, + [7122] = 7056, + [7123] = 7010, [7124] = 7124, - [7125] = 7111, + [7125] = 7066, [7126] = 7126, [7127] = 7127, - [7128] = 7018, - [7129] = 7018, + [7128] = 7031, + [7129] = 7032, [7130] = 7130, - [7131] = 7073, - [7132] = 7110, - [7133] = 7109, - [7134] = 7107, - [7135] = 7135, - [7136] = 7075, - [7137] = 7040, - [7138] = 7042, - [7139] = 7072, - [7140] = 7036, - [7141] = 7047, - [7142] = 7142, - [7143] = 7016, - [7144] = 7017, - [7145] = 6992, - [7146] = 7075, - [7147] = 7073, - [7148] = 7023, - [7149] = 7149, - [7150] = 7027, - [7151] = 7029, - [7152] = 6992, - [7153] = 7031, - [7154] = 7073, - [7155] = 7086, - [7156] = 7080, - [7157] = 7028, - [7158] = 7079, - [7159] = 7027, - [7160] = 7075, - [7161] = 7011, - [7162] = 7086, - [7163] = 6992, - [7164] = 7022, - [7165] = 7022, - [7166] = 7073, - [7167] = 7167, - [7168] = 7168, - [7169] = 7078, - [7170] = 7011, - [7171] = 7121, - [7172] = 6995, - [7173] = 7173, - [7174] = 7066, - [7175] = 7027, - [7176] = 7028, - [7177] = 7065, - [7178] = 7178, - [7179] = 7117, - [7180] = 7028, - [7181] = 7064, - [7182] = 7121, - [7183] = 7115, - [7184] = 7113, - [7185] = 7185, - [7186] = 7186, - [7187] = 7075, - [7188] = 7111, - [7189] = 7189, - [7190] = 7110, - [7191] = 6992, - [7192] = 7053, - [7193] = 7073, - [7194] = 7194, - [7195] = 7031, - [7196] = 7196, - [7197] = 7109, - [7198] = 7198, - [7199] = 7107, - [7200] = 6994, - [7201] = 7201, - [7202] = 6995, - [7203] = 6994, - [7204] = 7030, - [7205] = 6995, - [7206] = 6996, - [7207] = 6996, - [7208] = 7061, - [7209] = 7029, - [7210] = 7117, - [7211] = 7058, - [7212] = 7072, - [7213] = 7115, - [7214] = 7113, - [7215] = 7004, - [7216] = 7216, - [7217] = 7198, - [7218] = 6994, - [7219] = 7111, - [7220] = 7173, - [7221] = 7019, - [7222] = 7168, - [7223] = 7142, - [7224] = 7110, - [7225] = 7109, - [7226] = 7107, - [7227] = 7042, - [7228] = 7072, - [7229] = 7036, - [7230] = 6996, - [7231] = 7008, - [7232] = 7047, - [7233] = 7049, - [7234] = 7108, - [7235] = 7075, - [7236] = 7031, - [7237] = 7023, - [7238] = 7238, - [7239] = 7017, - [7240] = 924, - [7241] = 7216, - [7242] = 7016, - [7243] = 6990, - [7244] = 7004, - [7245] = 7245, - [7246] = 7021, - [7247] = 7036, - [7248] = 7086, - [7249] = 7084, - [7250] = 7080, - [7251] = 7079, - [7252] = 7252, - [7253] = 7084, - [7254] = 7004, - [7255] = 7073, - [7256] = 7245, - [7257] = 7047, - [7258] = 7078, - [7259] = 7035, - [7260] = 6996, - [7261] = 6995, - [7262] = 7067, - [7263] = 6994, - [7264] = 7066, - [7265] = 7265, - [7266] = 7065, - [7267] = 7024, - [7268] = 7064, - [7269] = 7061, - [7270] = 7058, - [7271] = 7080, - [7272] = 7026, - [7273] = 7004, - [7274] = 7084, - [7275] = 7238, - [7276] = 7040, - [7277] = 7042, - [7278] = 7079, - [7279] = 7042, - [7280] = 7040, - [7281] = 7040, - [7282] = 7121, - [7283] = 7030, - [7284] = 6994, - [7285] = 7040, - [7286] = 7042, - [7287] = 7042, - [7288] = 7121, - [7289] = 6995, - [7290] = 7053, - [7291] = 7049, - [7292] = 7040, - [7293] = 6997, - [7294] = 7029, - [7295] = 7040, - [7296] = 7042, - [7297] = 7000, - [7298] = 6997, - [7299] = 6996, - [7300] = 6993, - [7301] = 7078, - [7302] = 7302, - [7303] = 7303, - [7304] = 7048, - [7305] = 6997, - [7306] = 7040, - [7307] = 7307, - [7308] = 7035, - [7309] = 7042, - [7310] = 6999, - [7311] = 7041, - [7312] = 7121, - [7313] = 7001, - [7314] = 950, - [7315] = 7067, - [7316] = 7053, - [7317] = 7317, - [7318] = 7075, - [7319] = 6992, - [7320] = 7066, - [7321] = 6994, - [7322] = 6995, - [7323] = 6996, - [7324] = 7065, - [7325] = 7049, - [7326] = 7064, - [7327] = 7041, - [7328] = 6997, - [7329] = 7040, - [7330] = 7042, - [7331] = 7004, - [7332] = 7332, - [7333] = 7000, - [7334] = 7023, - [7335] = 6993, - [7336] = 7336, - [7337] = 7121, - [7338] = 6999, - [7339] = 7194, - [7340] = 7001, - [7341] = 7048, - [7342] = 7061, - [7343] = 7054, - [7344] = 6997, - [7345] = 7019, - [7346] = 7189, - [7347] = 7194, - [7348] = 7040, - [7349] = 7042, - [7350] = 6991, - [7351] = 7351, - [7352] = 7004, - [7353] = 7026, - [7354] = 7021, - [7355] = 7216, - [7356] = 7198, - [7357] = 7056, - [7358] = 7024, - [7359] = 7073, - [7360] = 7173, - [7361] = 7059, - [7362] = 7168, - [7363] = 7142, - [7364] = 7008, - [7365] = 7084, - [7366] = 7108, - [7367] = 7024, - [7368] = 7238, - [7369] = 7021, - [7370] = 6992, - [7371] = 6991, - [7372] = 7019, - [7373] = 7026, - [7374] = 7072, - [7375] = 7375, - [7376] = 7017, - [7377] = 7016, - [7378] = 7073, - [7379] = 7189, - [7380] = 7380, - [7381] = 7189, - [7382] = 7194, - [7383] = 7383, - [7384] = 7041, - [7385] = 7002, - [7386] = 7386, - [7387] = 7048, - [7388] = 7058, - [7389] = 7048, - [7390] = 7216, - [7391] = 7198, - [7392] = 7075, - [7393] = 6998, - [7394] = 7173, - [7395] = 7024, - [7396] = 7168, - [7397] = 7142, - [7398] = 7008, - [7399] = 7121, - [7400] = 7108, - [7401] = 7021, - [7402] = 7238, - [7403] = 7041, - [7404] = 7303, - [7405] = 6990, - [7406] = 7049, - [7407] = 6998, - [7408] = 7053, - [7409] = 7189, - [7410] = 7194, - [7411] = 4794, - [7412] = 6997, - [7413] = 7040, - [7414] = 7042, - [7415] = 7019, - [7416] = 6991, + [7131] = 7037, + [7132] = 7040, + [7133] = 7041, + [7134] = 7134, + [7135] = 7054, + [7136] = 7042, + [7137] = 7137, + [7138] = 7138, + [7139] = 7044, + [7140] = 7140, + [7141] = 7046, + [7142] = 7048, + [7143] = 7143, + [7144] = 7144, + [7145] = 7145, + [7146] = 7146, + [7147] = 7103, + [7148] = 7148, + [7149] = 7022, + [7150] = 7023, + [7151] = 7032, + [7152] = 7152, + [7153] = 7153, + [7154] = 7029, + [7155] = 7155, + [7156] = 7156, + [7157] = 7035, + [7158] = 7158, + [7159] = 7038, + [7160] = 7160, + [7161] = 7143, + [7162] = 7103, + [7163] = 7043, + [7164] = 7148, + [7165] = 7045, + [7166] = 7134, + [7167] = 7019, + [7168] = 7054, + [7169] = 7152, + [7170] = 7056, + [7171] = 7156, + [7172] = 7094, + [7173] = 7072, + [7174] = 7068, + [7175] = 7056, + [7176] = 7072, + [7177] = 7048, + [7178] = 7019, + [7179] = 7046, + [7180] = 7044, + [7181] = 7181, + [7182] = 7182, + [7183] = 7042, + [7184] = 7041, + [7185] = 7040, + [7186] = 7037, + [7187] = 7032, + [7188] = 7031, + [7189] = 7064, + [7190] = 7062, + [7191] = 7028, + [7192] = 7192, + [7193] = 7025, + [7194] = 7045, + [7195] = 7195, + [7196] = 7045, + [7197] = 6998, + [7198] = 7043, + [7199] = 7003, + [7200] = 7200, + [7201] = 7018, + [7202] = 7015, + [7203] = 7014, + [7204] = 7013, + [7205] = 7205, + [7206] = 7156, + [7207] = 7011, + [7208] = 7009, + [7209] = 7000, + [7210] = 7008, + [7211] = 7001, + [7212] = 7002, + [7213] = 7006, + [7214] = 7214, + [7215] = 7152, + [7216] = 7148, + [7217] = 7005, + [7218] = 7000, + [7219] = 7219, + [7220] = 7038, + [7221] = 7010, + [7222] = 7222, + [7223] = 7223, + [7224] = 7043, + [7225] = 7225, + [7226] = 7214, + [7227] = 7004, + [7228] = 7205, + [7229] = 7192, + [7230] = 7014, + [7231] = 7134, + [7232] = 7027, + [7233] = 7143, + [7234] = 7036, + [7235] = 4845, + [7236] = 7028, + [7237] = 7007, + [7238] = 7035, + [7239] = 7223, + [7240] = 7041, + [7241] = 7025, + [7242] = 7050, + [7243] = 7037, + [7244] = 7182, + [7245] = 7029, + [7246] = 7040, + [7247] = 7041, + [7248] = 7094, + [7249] = 7001, + [7250] = 7002, + [7251] = 7042, + [7252] = 7023, + [7253] = 7022, + [7254] = 7010, + [7255] = 7021, + [7256] = 7044, + [7257] = 7058, + [7258] = 7046, + [7259] = 7025, + [7260] = 7048, + [7261] = 7003, + [7262] = 7038, + [7263] = 7263, + [7264] = 6998, + [7265] = 7222, + [7266] = 7266, + [7267] = 7267, + [7268] = 7003, + [7269] = 7269, + [7270] = 7094, + [7271] = 7271, + [7272] = 7058, + [7273] = 7010, + [7274] = 7274, + [7275] = 7064, + [7276] = 7062, + [7277] = 7134, + [7278] = 7002, + [7279] = 7001, + [7280] = 7225, + [7281] = 7000, + [7282] = 7064, + [7283] = 7283, + [7284] = 7062, + [7285] = 7050, + [7286] = 7027, + [7287] = 7064, + [7288] = 7062, + [7289] = 7000, + [7290] = 7001, + [7291] = 7291, + [7292] = 7002, + [7293] = 7064, + [7294] = 7062, + [7295] = 7010, + [7296] = 7058, + [7297] = 7025, + [7298] = 7062, + [7299] = 6998, + [7300] = 7036, + [7301] = 7064, + [7302] = 7003, + [7303] = 7156, + [7304] = 7070, + [7305] = 7050, + [7306] = 7064, + [7307] = 7062, + [7308] = 7152, + [7309] = 7050, + [7310] = 7148, + [7311] = 7035, + [7312] = 7103, + [7313] = 7070, + [7314] = 7143, + [7315] = 6999, + [7316] = 7016, + [7317] = 7017, + [7318] = 7318, + [7319] = 7070, + [7320] = 7004, + [7321] = 7321, + [7322] = 7066, + [7323] = 7064, + [7324] = 7025, + [7325] = 6998, + [7326] = 7062, + [7327] = 7000, + [7328] = 7001, + [7329] = 7002, + [7330] = 6997, + [7331] = 7200, + [7332] = 7050, + [7333] = 7072, + [7334] = 7005, + [7335] = 7335, + [7336] = 7050, + [7337] = 7010, + [7338] = 7068, + [7339] = 7006, + [7340] = 7008, + [7341] = 7009, + [7342] = 7011, + [7343] = 7066, + [7344] = 7070, + [7345] = 7064, + [7346] = 7346, + [7347] = 7029, + [7348] = 7062, + [7349] = 7349, + [7350] = 7061, + [7351] = 7143, + [7352] = 7195, + [7353] = 7200, + [7354] = 7103, + [7355] = 7050, + [7356] = 7013, + [7357] = 7148, + [7358] = 7047, + [7359] = 7152, + [7360] = 7000, + [7361] = 7001, + [7362] = 7222, + [7363] = 7223, + [7364] = 7002, + [7365] = 7039, + [7366] = 7214, + [7367] = 7274, + [7368] = 7205, + [7369] = 7192, + [7370] = 7007, + [7371] = 7156, + [7372] = 6996, + [7373] = 7010, + [7374] = 7182, + [7375] = 7058, + [7376] = 7134, + [7377] = 7051, + [7378] = 7094, + [7379] = 7072, + [7380] = 7068, + [7381] = 7003, + [7382] = 6998, + [7383] = 7152, + [7384] = 7003, + [7385] = 7385, + [7386] = 7148, + [7387] = 7195, + [7388] = 7200, + [7389] = 7062, + [7390] = 7064, + [7391] = 7015, + [7392] = 7070, + [7393] = 7023, + [7394] = 7039, + [7395] = 7048, + [7396] = 7222, + [7397] = 7223, + [7398] = 7022, + [7399] = 7195, + [7400] = 7214, + [7401] = 7046, + [7402] = 7205, + [7403] = 7192, + [7404] = 7007, + [7405] = 7044, + [7406] = 6996, + [7407] = 7064, + [7408] = 7182, + [7409] = 7070, + [7410] = 7031, + [7411] = 7025, + [7412] = 7017, + [7413] = 7021, + [7414] = 7070, + [7415] = 7195, + [7416] = 7200, [7417] = 7042, - [7418] = 7216, - [7419] = 7198, - [7420] = 7040, - [7421] = 7021, - [7422] = 7173, - [7423] = 7024, - [7424] = 7168, - [7425] = 7142, - [7426] = 7008, - [7427] = 7026, - [7428] = 7108, - [7429] = 7121, - [7430] = 7238, - [7431] = 7058, - [7432] = 7061, - [7433] = 7064, - [7434] = 7189, - [7435] = 7194, - [7436] = 7065, - [7437] = 7054, - [7438] = 7066, - [7439] = 7067, - [7440] = 7035, - [7441] = 7216, - [7442] = 7198, - [7443] = 6997, - [7444] = 7173, - [7445] = 7078, - [7446] = 7168, - [7447] = 7142, - [7448] = 7001, - [7449] = 7108, - [7450] = 7238, - [7451] = 6999, - [7452] = 7079, - [7453] = 7453, - [7454] = 7336, - [7455] = 7332, - [7456] = 6993, - [7457] = 7080, - [7458] = 7056, - [7459] = 7086, - [7460] = 7117, - [7461] = 7336, - [7462] = 7332, - [7463] = 7115, - [7464] = 7056, - [7465] = 7000, - [7466] = 7336, - [7467] = 7332, - [7468] = 7113, - [7469] = 7056, - [7470] = 7111, - [7471] = 7336, - [7472] = 7332, - [7473] = 7110, - [7474] = 7056, - [7475] = 7109, - [7476] = 7336, - [7477] = 7332, - [7478] = 7107, - [7479] = 7479, + [7418] = 7064, + [7419] = 7016, + [7420] = 7062, + [7421] = 7421, + [7422] = 7422, + [7423] = 6998, + [7424] = 7222, + [7425] = 7223, + [7426] = 7040, + [7427] = 7427, + [7428] = 7214, + [7429] = 7037, + [7430] = 7205, + [7431] = 7192, + [7432] = 7007, + [7433] = 7032, + [7434] = 6996, + [7435] = 6999, + [7436] = 7182, + [7437] = 7050, + [7438] = 7031, + [7439] = 7028, + [7440] = 7195, + [7441] = 7200, + [7442] = 7054, + [7443] = 6999, + [7444] = 7016, + [7445] = 7017, + [7446] = 6997, + [7447] = 7222, + [7448] = 7223, + [7449] = 7449, + [7450] = 7214, + [7451] = 7027, + [7452] = 7205, + [7453] = 7192, + [7454] = 7004, + [7455] = 6996, + [7456] = 7182, + [7457] = 7062, + [7458] = 7005, + [7459] = 7006, + [7460] = 7349, + [7461] = 7346, + [7462] = 7008, + [7463] = 7009, + [7464] = 7047, + [7465] = 7011, + [7466] = 7013, + [7467] = 7349, + [7468] = 7346, + [7469] = 7014, + [7470] = 7047, + [7471] = 7015, + [7472] = 7349, + [7473] = 7346, + [7474] = 950, + [7475] = 7047, + [7476] = 943, + [7477] = 7349, + [7478] = 7346, + [7479] = 7018, + [7480] = 7047, + [7481] = 7481, + [7482] = 7349, + [7483] = 7346, + [7484] = 7018, + [7485] = 7485, }; static TSCharacterRange extras_character_set_1[] = { @@ -12160,91 +12166,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 34, - '$', 1032, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 571, - ',', 438, - '-', 575, - '.', 502, - '/', 628, - '0', 660, - ':', 473, - ';', 472, - '<', 584, - '=', 427, - '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - '\\', 345, - ']', 481, - '^', 561, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 894, - 'f', 880, - 'g', 900, - 'i', 909, - 'l', 837, - 'm', 945, - 'n', 780, - 'o', 815, - 'r', 839, - 's', 785, - 't', 789, - 'u', 930, - 'v', 792, - 'w', 878, - '{', 437, - '|', 564, - '}', 439, - '~', 601, - 0x2028, 677, - 0x2029, 677, + '$', 1031, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 570, + ',', 437, + '-', 574, + '.', 501, + '/', 627, + '0', 659, + ':', 472, + ';', 471, + '<', 583, + '=', 426, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + '\\', 344, + ']', 480, + '^', 560, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 893, + 'f', 879, + 'g', 899, + 'i', 908, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 814, + 'r', 838, + 's', 784, + 't', 788, + 'u', 929, + 'v', 791, + 'w', 877, + '{', 436, + '|', 563, + '}', 438, + '~', 600, + 0x2028, 676, + 0x2029, 676, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(403); - if (lookahead > '@') ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(402); + if (lookahead > '@') ADVANCE(1041); END_STATE(); case 1: if (lookahead == '\n') SKIP(65); if (lookahead == ' ') ADVANCE(1); if (lookahead == '&') ADVANCE(60); - if (lookahead == '/') ADVANCE(488); - if (lookahead == '<') ADVANCE(583); - if (lookahead == '{') ADVANCE(436); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(490); + if (lookahead == '/') ADVANCE(487); + if (lookahead == '<') ADVANCE(582); + if (lookahead == '{') ADVANCE(435); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(489); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); case 2: if (lookahead == '\n') SKIP(2); - if (lookahead == '/') ADVANCE(483); - if (lookahead == '<') ADVANCE(485); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(484); - if (lookahead != 0) ADVANCE(482); + if (lookahead == '/') ADVANCE(482); + if (lookahead == '<') ADVANCE(484); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(483); + if (lookahead != 0) ADVANCE(481); END_STATE(); case 3: if (lookahead == '\n') SKIP(90); if (lookahead == '/') ADVANCE(69); if (lookahead == '[') ADVANCE(140); - if (lookahead == '\\') ADVANCE(402); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(629); - if (lookahead != 0) ADVANCE(630); + if (lookahead == '\\') ADVANCE(401); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(628); + if (lookahead != 0) ADVANCE(629); END_STATE(); case 4: if (lookahead == ' ') ADVANCE(4); @@ -12254,12 +12260,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); case 5: ADVANCE_MAP( ' ', 5, - '*', 491, + '*', 490, '\n', 72, '&', 72, '<', 72, @@ -12267,2133 +12273,2133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 72, '}', 72, ); - if (lookahead != 0) ADVANCE(492); + if (lookahead != 0) ADVANCE(491); END_STATE(); case 6: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 502, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 586, - '=', 427, - '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '^', 561, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 563, - '}', 439, - '~', 601, - 0x2028, 750, - 0x2029, 750, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 501, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 585, + '=', 426, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '^', 560, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 562, + '}', 438, + '~', 600, + 0x2028, 749, + 0x2029, 749, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(6); - if (lookahead > '#') ADVANCE(1042); + if (lookahead > '#') ADVANCE(1041); END_STATE(); case 7: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 502, - '/', 577, - '0', 660, - ':', 473, - '<', 586, - '=', 427, - '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 780, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'u', 930, - 'v', 946, - '{', 437, - '|', 563, - '~', 601, - 0x2028, 747, - 0x2029, 747, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 501, + '/', 576, + '0', 659, + ':', 472, + '<', 585, + '=', 426, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'u', 929, + 'v', 945, + '{', 436, + '|', 562, + '~', 600, + 0x2028, 746, + 0x2029, 746, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 8: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - '|', 563, - '}', 439, - 0x2028, 755, - 0x2029, 755, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + '|', 562, + '}', 438, + 0x2028, 754, + 0x2029, 754, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 9: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - '|', 563, - '}', 439, - 0x2028, 756, - 0x2029, 756, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + '|', 562, + '}', 438, + 0x2028, 755, + 0x2029, 755, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 10: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ';', 472, - '<', 586, - '=', 427, - '>', 498, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ';', 471, + '<', 585, + '=', 426, + '>', 497, '?', 78, - '@', 1046, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 815, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 563, - '~', 601, - 0x2028, 749, - 0x2029, 749, + '@', 1045, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 814, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 562, + '~', 600, + 0x2028, 748, + 0x2029, 748, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 11: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - '<', 586, - '=', 427, - '>', 498, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + '<', 585, + '=', 426, + '>', 497, '?', 78, - '@', 1046, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 910, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 563, - '~', 601, - 0x2028, 751, - 0x2029, 751, + '@', 1045, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 909, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 562, + '~', 600, + 0x2028, 750, + 0x2029, 750, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(11); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 12: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - ')', 458, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ':', 473, - ';', 472, - '<', 588, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + ')', 457, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ':', 472, + ';', 471, + '<', 587, '=', 134, - '>', 499, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '^', 560, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 565, - '}', 439, - '~', 601, - 0x2028, 750, - 0x2029, 750, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '^', 559, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 564, + '}', 438, + '~', 600, + 0x2028, 749, + 0x2029, 749, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(12); - if (lookahead > '#') ADVANCE(1042); + if (lookahead > '#') ADVANCE(1041); END_STATE(); case 13: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 588, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 587, '=', 134, - '>', 499, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - '^', 560, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 815, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 565, - '~', 601, - 0x2028, 749, - 0x2029, 749, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 814, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 564, + '~', 600, + 0x2028, 748, + 0x2029, 748, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(13); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 14: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 588, - '=', 426, - '>', 499, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 587, + '=', 425, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - '^', 560, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '|', 565, - '}', 439, - '~', 601, - 0x2028, 744, - 0x2029, 744, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '|', 564, + '}', 438, + '~', 600, + 0x2028, 743, + 0x2029, 743, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(14); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); + (lookahead < '[' || '^' < lookahead)) ADVANCE(1041); END_STATE(); case 15: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 588, - '=', 426, - '>', 499, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 587, + '=', 425, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - '^', 560, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '|', 565, - '}', 439, - '~', 601, - 0x2028, 745, - 0x2029, 745, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '|', 564, + '}', 438, + '~', 600, + 0x2028, 744, + 0x2029, 744, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(15); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); + (lookahead < '[' || '^' < lookahead)) ADVANCE(1041); END_STATE(); case 16: ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - '<', 588, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + '<', 587, '=', 134, - '>', 499, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - '^', 560, - '`', 626, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 910, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, - '{', 436, - '|', 565, - '~', 601, - 0x2028, 751, - 0x2029, 751, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 909, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, + '{', 435, + '|', 564, + '~', 600, + 0x2028, 750, + 0x2029, 750, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(16); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 17: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - ']', 481, - '^', 561, - '`', 626, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 934, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, - '{', 437, - '|', 563, - '}', 439, - 0x2028, 753, - 0x2029, 753, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + ']', 480, + '^', 560, + '`', 625, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 933, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, + '{', 436, + '|', 562, + '}', 438, + 0x2028, 752, + 0x2029, 752, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(17); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 18: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - ']', 481, - '^', 561, - '`', 626, - 'a', 985, - 'i', 934, - 's', 786, - '{', 436, - '|', 563, - '}', 439, - 0x2028, 800, - 0x2029, 800, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + ']', 480, + '^', 560, + '`', 625, + 'a', 984, + 'i', 933, + 's', 785, + '{', 435, + '|', 562, + '}', 438, + 0x2028, 799, + 0x2029, 799, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(18); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 19: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 934, - 'n', 838, - 'o', 815, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, - '{', 437, - '|', 563, - 0x2028, 752, - 0x2029, 752, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 933, + 'n', 837, + 'o', 814, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, + '{', 436, + '|', 562, + 0x2028, 751, + 0x2029, 751, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(19); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 20: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 915, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, - '{', 437, - '|', 563, - 0x2028, 754, - 0x2029, 754, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 914, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, + '{', 436, + '|', 562, + 0x2028, 753, + 0x2029, 753, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(20); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 21: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - ';', 472, - '<', 585, - '=', 427, - '>', 498, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + ';', 471, + '<', 584, + '=', 426, + '>', 497, '?', 78, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 985, - 'i', 934, - 'o', 869, - 's', 786, - '{', 436, - '|', 563, - 0x2028, 799, - 0x2029, 799, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 984, + 'i', 933, + 'o', 868, + 's', 785, + '{', 435, + '|', 562, + 0x2028, 798, + 0x2029, 798, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(21); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 22: ADVANCE_MAP( - '!', 454, - '"', 506, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - '<', 585, - '=', 427, - '>', 498, + '!', 453, + '"', 505, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + '<', 584, + '=', 426, + '>', 497, '?', 78, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 985, - 'i', 915, - 's', 786, - '{', 436, - '|', 563, - 0x2028, 801, - 0x2029, 801, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 984, + 'i', 914, + 's', 785, + '{', 435, + '|', 562, + 0x2028, 800, + 0x2029, 800, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(22); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 23: ADVANCE_MAP( - '!', 454, - '%', 579, - '&', 558, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - '\\', 352, - ']', 481, - '^', 561, - '`', 626, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - '|', 563, - '}', 439, - 0x2028, 783, - 0x2029, 783, + '!', 453, + '%', 578, + '&', 557, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + '\\', 351, + ']', 480, + '^', 560, + '`', 625, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + '|', 562, + '}', 438, + 0x2028, 782, + 0x2029, 782, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(23); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 24: ADVANCE_MAP( - '!', 454, - '%', 579, - '&', 558, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '[', 480, - ']', 481, - '^', 561, - '`', 626, - 'a', 317, - 'e', 358, - 'f', 306, - 'i', 262, + '!', 453, + '%', 578, + '&', 557, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '[', 479, + ']', 480, + '^', 560, + '`', 625, + 'a', 316, + 'e', 357, + 'f', 305, + 'i', 261, 'o', 213, 's', 147, - '{', 436, - '|', 564, - '}', 439, + '{', 435, + '|', 563, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '!', 454, - '%', 579, - '&', 558, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - ';', 472, - '<', 585, - '=', 427, - '>', 498, + '!', 453, + '%', 578, + '&', 557, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + ';', 471, + '<', 584, + '=', 426, + '>', 497, '?', 78, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 815, - 'r', 862, - 's', 785, - 't', 1030, - '|', 563, - 0x2028, 782, - 0x2029, 782, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 814, + 'r', 861, + 's', 784, + 't', 1029, + '|', 562, + 0x2028, 781, + 0x2029, 781, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(25); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 26: ADVANCE_MAP( - '!', 454, - '%', 579, - '&', 558, - '(', 457, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 501, - '/', 577, - '<', 585, - '=', 427, - '>', 498, + '!', 453, + '%', 578, + '&', 557, + '(', 456, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 500, + '/', 576, + '<', 584, + '=', 426, + '>', 497, '?', 78, - '[', 480, - '\\', 352, - '^', 561, - '`', 626, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 915, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - '{', 436, - '|', 563, - 0x2028, 784, - 0x2029, 784, + '[', 479, + '\\', 351, + '^', 560, + '`', 625, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 914, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + '{', 435, + '|', 562, + 0x2028, 783, + 0x2029, 783, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(26); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 27: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - ')', 458, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - ':', 473, - ';', 472, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + ')', 457, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + ':', 472, + ';', 471, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - ']', 481, - '^', 560, - '`', 626, - 'a', 651, - 'i', 646, - 's', 631, - '{', 437, - '|', 565, - '}', 439, + '[', 479, + ']', 480, + '^', 559, + '`', 625, + 'a', 650, + 'i', 645, + 's', 630, + '{', 436, + '|', 564, + '}', 438, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 28: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - ')', 458, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - ':', 473, - ';', 472, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + ')', 457, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + ':', 472, + ';', 471, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - ']', 481, - '^', 560, - '`', 626, - 'a', 317, - 'i', 269, + '[', 479, + ']', 480, + '^', 559, + '`', 625, + 'a', 316, + 'i', 268, 's', 147, - '{', 437, - '|', 565, - '}', 439, + '{', 436, + '|', 564, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - ')', 458, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - ':', 473, - ';', 472, - '<', 587, - '=', 426, - '>', 499, - '?', 1053, - '[', 480, - ']', 481, - '^', 560, - '`', 626, - 'a', 317, - 'e', 238, - 'i', 263, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + ')', 457, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + ':', 472, + ';', 471, + '<', 586, + '=', 425, + '>', 498, + '?', 1052, + '[', 479, + ']', 480, + '^', 559, + '`', 625, + 'a', 316, + 'e', 237, + 'i', 262, 'o', 213, 's', 147, 'w', 220, - '{', 436, - '|', 566, - '}', 439, + '{', 435, + '|', 565, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - ';', 472, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + ';', 471, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - '^', 560, - '`', 626, - 'a', 651, - 'i', 646, - 'o', 639, - 's', 631, - '|', 565, + '[', 479, + '^', 559, + '`', 625, + 'a', 650, + 'i', 645, + 'o', 638, + 's', 630, + '|', 564, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 31: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - ';', 472, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + ';', 471, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - '^', 560, - '`', 626, - 'a', 317, - 'i', 269, + '[', 479, + '^', 559, + '`', 625, + 'a', 316, + 'i', 268, 'o', 213, 's', 147, - '|', 565, + '|', 564, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - '^', 560, - '`', 626, - 'a', 651, - 'i', 644, - 's', 631, - '{', 436, - '|', 565, + '[', 479, + '^', 559, + '`', 625, + 'a', 650, + 'i', 643, + 's', 630, + '{', 435, + '|', 564, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 33: ADVANCE_MAP( - '!', 454, - '%', 578, - '&', 559, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 501, - '/', 576, - '<', 587, + '!', 453, + '%', 577, + '&', 558, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 500, + '/', 575, + '<', 586, '=', 134, - '>', 499, + '>', 498, '?', 79, - '[', 480, - '^', 560, - '`', 626, - 'a', 317, - 'i', 262, + '[', 479, + '^', 559, + '`', 625, + 'a', 316, + 'i', 261, 's', 147, - '{', 436, - '|', 565, + '{', 435, + '|', 564, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(415); - if (lookahead == '\\') ADVANCE(351); - if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1043); + if (lookahead == '!') ADVANCE(414); + if (lookahead == '\\') ADVANCE(350); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1042); END_STATE(); case 35: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '&', 557, - '\'', 507, - '(', 457, - ')', 458, - '*', 418, - '+', 569, - ',', 438, - '-', 573, + '&', 556, + '\'', 506, + '(', 456, + ')', 457, + '*', 417, + '+', 568, + ',', 437, + '-', 572, '.', 76, - '/', 576, - '0', 660, - '<', 589, - '?', 1050, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 780, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'u', 930, - 'v', 946, - '{', 437, - '|', 562, - '~', 601, - 0x2028, 769, - 0x2029, 769, + '/', 575, + '0', 659, + '<', 588, + '?', 1049, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'u', 929, + 'v', 945, + '{', 436, + '|', 561, + '~', 600, + 0x2028, 768, + 0x2029, 768, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(35); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 36: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '&', 557, - '\'', 507, - '(', 457, - ')', 458, - '+', 569, - ',', 438, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '>', 497, - '?', 1050, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '`', 626, - 'a', 925, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1024, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 946, - '{', 436, - '|', 567, - '}', 439, - '~', 601, - 0x2028, 776, - 0x2029, 776, + '&', 556, + '\'', 506, + '(', 456, + ')', 457, + '+', 568, + ',', 437, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '>', 496, + '?', 1049, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '`', 625, + 'a', 924, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1023, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 945, + '{', 435, + '|', 566, + '}', 438, + '~', 600, + 0x2028, 775, + 0x2029, 775, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(36); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); + (lookahead < '[' || '^' < lookahead)) ADVANCE(1041); END_STATE(); case 37: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - ')', 458, - '+', 569, - ',', 438, - '-', 573, - '.', 502, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '`', 626, - 'a', 925, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 946, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 775, - 0x2029, 775, + '\'', 506, + '(', 456, + ')', 457, + '+', 568, + ',', 437, + '-', 572, + '.', 501, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '`', 625, + 'a', 924, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 945, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 774, + 0x2029, 774, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(37); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 38: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '*', 418, - '+', 568, - ',', 438, - '-', 572, - '.', 502, + '\'', 506, + '(', 456, + '*', 417, + '+', 567, + ',', 437, + '-', 571, + '.', 501, '/', 69, - '0', 660, - ':', 473, - ';', 472, - '<', 582, - '=', 425, - '?', 1050, - '@', 1046, - '[', 480, - '\\', 352, - 'a', 813, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - '{', 436, - '|', 371, - '}', 439, - 0x2028, 777, - 0x2029, 777, + '0', 659, + ':', 472, + ';', 471, + '<', 581, + '=', 424, + '?', 1049, + '@', 1045, + '[', 479, + '\\', 351, + 'a', 812, + 'b', 950, + 'd', 855, + 'e', 1024, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + '{', 435, + '|', 370, + '}', 438, + 0x2028, 776, + 0x2029, 776, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(38); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 39: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '*', 418, - ',', 438, + '\'', 506, + '(', 456, + '*', 417, + ',', 437, '.', 76, '/', 69, - '0', 660, - ':', 473, - ';', 472, - '<', 582, - '=', 428, - '?', 1050, - '[', 480, - '\\', 352, - 'a', 926, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - '{', 436, - '|', 371, - '}', 439, - 0x2028, 778, - 0x2029, 778, + '0', 659, + ':', 472, + ';', 471, + '<', 581, + '=', 427, + '?', 1049, + '[', 479, + '\\', 351, + 'a', 925, + 'b', 950, + 'd', 855, + 'e', 1024, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + '{', 435, + '|', 370, + '}', 438, + 0x2028, 777, + 0x2029, 777, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(39); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 40: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 763, - 0x2029, 763, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 762, + 0x2029, 762, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(40); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 41: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 765, - 0x2029, 765, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 764, + 0x2029, 764, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(41); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 42: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 760, - 0x2029, 760, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 759, + 0x2029, 759, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(42); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 43: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 761, - 0x2029, 761, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(43); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); - END_STATE(); - case 44: - ADVANCE_MAP( - '!', 453, - '"', 506, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 760, + 0x2029, 760, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(43); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + END_STATE(); + case 44: + ADVANCE_MAP( + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 762, - 0x2029, 762, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 761, + 0x2029, 761, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(44); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 45: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 764, - 0x2029, 764, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 763, + 0x2029, 763, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(45); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 46: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 925, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - '{', 436, - '~', 601, - 0x2028, 774, - 0x2029, 774, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 924, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + '{', 435, + '~', 600, + 0x2028, 773, + 0x2029, 773, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(46); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 47: ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - '{', 436, - '~', 601, - 0x2028, 768, - 0x2029, 768, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + '{', 435, + '~', 600, + 0x2028, 767, + 0x2029, 767, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(47); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 48: ADVANCE_MAP( - '!', 453, - '"', 506, - '&', 557, - '\'', 507, - '(', 457, - ')', 458, - '*', 418, - ',', 438, - '.', 501, + '!', 452, + '"', 505, + '&', 556, + '\'', 506, + '(', 456, + ')', 457, + '*', 417, + ',', 437, + '.', 500, '/', 69, - ':', 473, - ';', 472, - '<', 582, - '=', 428, - '>', 497, - '?', 1050, - '@', 1046, - '[', 480, - ']', 481, - '`', 626, + ':', 472, + ';', 471, + '<', 581, + '=', 427, + '>', 496, + '?', 1049, + '@', 1045, + '[', 479, + ']', 480, + '`', 625, 'a', 164, - 'c', 241, + 'c', 240, 'd', 185, - 'e', 237, - 'f', 347, - 'i', 257, + 'e', 236, + 'f', 346, + 'i', 256, 'l', 197, - 'm', 282, + 'm', 281, 'n', 143, - 't', 362, + 't', 361, 'v', 150, 'w', 221, - '{', 436, - '|', 567, - '}', 439, + '{', 435, + '|', 566, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(48); END_STATE(); case 49: ADVANCE_MAP( - '!', 453, - '&', 557, - '(', 457, - ')', 458, - ',', 438, - '.', 501, + '!', 452, + '&', 556, + '(', 456, + ')', 457, + ',', 437, + '.', 500, '/', 69, - ':', 473, - ';', 472, - '<', 582, - '=', 428, - '>', 497, - '?', 1051, - '@', 1046, - '[', 480, - ']', 481, - '`', 626, + ':', 472, + ';', 471, + '<', 581, + '=', 427, + '>', 496, + '?', 1050, + '@', 1045, + '[', 479, + ']', 480, + '`', 625, 'a', 165, - 'c', 240, - 'e', 357, - 'i', 270, + 'c', 239, + 'e', 356, + 'i', 269, 'o', 213, - '{', 436, - '|', 567, - '}', 439, + '{', 435, + '|', 566, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(49); END_STATE(); case 50: ADVANCE_MAP( - '"', 506, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '*', 418, - '.', 501, + '\'', 506, + '(', 456, + '*', 417, + '.', 500, '/', 69, - ';', 472, - '<', 582, + ';', 471, + '<', 581, '?', 77, - '[', 480, - '\\', 352, - '`', 626, - '{', 436, - 0x2028, 1036, - 0x2029, 1036, + '[', 479, + '\\', 351, + '`', 625, + '{', 435, + 0x2028, 1035, + 0x2029, 1035, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(50); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 51: ADVANCE_MAP( - '"', 506, - '&', 557, - '\'', 507, - '(', 457, - '*', 418, - '+', 568, - ',', 438, - '-', 572, + '"', 505, + '&', 556, + '\'', 506, + '(', 456, + '*', 417, + '+', 567, + ',', 437, + '-', 571, '.', 76, '/', 69, - '0', 660, - '<', 582, - '?', 1050, - '[', 480, - '\\', 352, - ']', 481, - '`', 626, - 'a', 814, - 'b', 951, - 'c', 950, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 994, - 'u', 930, - 'v', 946, - '{', 437, - '|', 562, - 0x2028, 758, - 0x2029, 758, + '0', 659, + '<', 581, + '?', 1049, + '[', 479, + '\\', 351, + ']', 480, + '`', 625, + 'a', 813, + 'b', 950, + 'c', 949, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 993, + 'u', 929, + 'v', 945, + '{', 436, + '|', 561, + 0x2028, 757, + 0x2029, 757, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(51); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 52: ADVANCE_MAP( - '"', 506, - '&', 557, - '\'', 507, - '(', 457, - '*', 418, - '+', 568, - '-', 572, - '.', 378, + '"', 505, + '&', 556, + '\'', 506, + '(', 456, + '*', 417, + '+', 567, + '-', 571, + '.', 377, '/', 69, - '0', 660, - '<', 582, - '>', 497, - '?', 1050, - '[', 480, - '\\', 352, - '`', 626, - 'a', 814, - 'b', 951, - 'c', 950, - 'i', 922, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 994, - 'u', 930, - 'v', 946, - '{', 437, - '|', 562, - 0x2028, 757, - 0x2029, 757, + '0', 659, + '<', 581, + '>', 496, + '?', 1049, + '[', 479, + '\\', 351, + '`', 625, + 'a', 813, + 'b', 950, + 'c', 949, + 'i', 921, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 993, + 'u', 929, + 'v', 945, + '{', 436, + '|', 561, + 0x2028, 756, + 0x2029, 756, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(52); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 53: ADVANCE_MAP( - '"', 506, - '&', 557, - '\'', 507, - '(', 457, - '*', 418, - '+', 568, - '-', 572, - '.', 378, + '"', 505, + '&', 556, + '\'', 506, + '(', 456, + '*', 417, + '+', 567, + '-', 571, + '.', 377, '/', 69, - '0', 660, - '<', 582, - '?', 1050, - '[', 480, - '\\', 352, - '`', 626, - 'a', 681, - 'b', 721, - 'c', 719, - 'n', 690, - 'o', 682, - 'r', 691, - 's', 731, - 'u', 708, - 'v', 716, - '{', 437, - '|', 562, - 0x2028, 759, - 0x2029, 759, + '0', 659, + '<', 581, + '?', 1049, + '[', 479, + '\\', 351, + '`', 625, + 'a', 680, + 'b', 720, + 'c', 718, + 'n', 689, + 'o', 681, + 'r', 690, + 's', 730, + 'u', 707, + 'v', 715, + '{', 436, + '|', 561, + 0x2028, 758, + 0x2029, 758, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(53); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead > '~') ADVANCE(1042); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (lookahead > '~') ADVANCE(1041); END_STATE(); case 54: - if (lookahead == '"') ADVANCE(506); + if (lookahead == '"') ADVANCE(505); if (lookahead == '&') ADVANCE(62); - if (lookahead == '/') ADVANCE(510); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(509); - if (lookahead != 0) ADVANCE(511); + if (lookahead == '/') ADVANCE(509); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(508); + if (lookahead != 0) ADVANCE(510); END_STATE(); case 55: ADVANCE_MAP( - '"', 506, - '\'', 507, - '(', 457, - '*', 418, - ',', 438, - '.', 501, + '"', 505, + '\'', 506, + '(', 456, + '*', 417, + ',', 437, + '.', 500, '/', 69, - '<', 582, + '<', 581, '?', 77, - '\\', 352, - '`', 626, - 't', 1030, - '{', 436, - '}', 439, - 0x2028, 1006, - 0x2029, 1006, + '\\', 351, + '`', 625, + 't', 1029, + '{', 435, + '}', 438, + 0x2028, 1005, + 0x2029, 1005, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(55); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 56: ADVANCE_MAP( - '"', 506, - '\'', 507, - '*', 418, - ',', 438, + '"', 505, + '\'', 506, + '*', 417, + ',', 437, '/', 69, - '\\', 352, - 'f', 973, - 't', 1030, - '{', 436, - 0x2028, 873, - 0x2029, 873, + '\\', 351, + 'f', 972, + 't', 1029, + '{', 435, + 0x2028, 872, + 0x2029, 872, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(56); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 57: ADVANCE_MAP( - '"', 506, - '\'', 507, - ',', 438, + '"', 505, + '\'', 506, + ',', 437, '/', 69, - '\\', 352, - 'a', 985, - 't', 1030, - '}', 439, - 0x2028, 802, - 0x2029, 802, + '\\', 351, + 'a', 984, + 't', 1029, + '}', 438, + 0x2028, 801, + 0x2029, 801, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(57); if (lookahead > '#' && @@ -14401,137 +14407,137 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || '^' < lookahead) && lookahead != '`' && lookahead != 'a' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 58: - if (lookahead == '"') ADVANCE(506); + if (lookahead == '"') ADVANCE(505); if (lookahead == '/') ADVANCE(69); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(58); END_STATE(); case 59: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '/') ADVANCE(607); - if (lookahead == '\\') ADVANCE(354); + if (lookahead == '"') ADVANCE(505); + if (lookahead == '/') ADVANCE(606); + if (lookahead == '\\') ADVANCE(353); if (lookahead == '\n' || lookahead == '\r') SKIP(58); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(610); - if (lookahead != 0) ADVANCE(611); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(609); + if (lookahead != 0) ADVANCE(610); END_STATE(); case 60: - if (lookahead == '#') ADVANCE(374); + if (lookahead == '#') ADVANCE(373); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); END_STATE(); case 61: - if (lookahead == '#') ADVANCE(374); + if (lookahead == '#') ADVANCE(373); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); - if (lookahead != 0) ADVANCE(517); + if (lookahead != 0) ADVANCE(516); END_STATE(); case 62: - if (lookahead == '#') ADVANCE(374); + if (lookahead == '#') ADVANCE(373); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); - if (lookahead != 0) ADVANCE(511); + if (lookahead != 0) ADVANCE(510); END_STATE(); case 63: ADVANCE_MAP( - '&', 557, - '(', 457, - ')', 458, - ',', 438, - '.', 501, + '&', 556, + '(', 456, + ')', 457, + ',', 437, + '.', 500, '/', 69, - ':', 473, - '<', 582, - '=', 428, - '>', 497, - '?', 1050, - '[', 480, - ']', 481, - '`', 626, - 'a', 317, - 'e', 238, - 'f', 306, - 'i', 271, + ':', 472, + '<', 581, + '=', 427, + '>', 496, + '?', 1049, + '[', 479, + ']', 480, + '`', 625, + 'a', 316, + 'e', 237, + 'f', 305, + 'i', 270, 'o', 213, 'w', 220, - '{', 436, - '|', 562, - '}', 439, + '{', 435, + '|', 561, + '}', 438, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(63); END_STATE(); case 64: ADVANCE_MAP( - '&', 557, - ',', 438, - '.', 501, + '&', 556, + ',', 437, + '.', 500, '/', 70, - ':', 473, - '<', 582, - '=', 425, - '>', 497, - '[', 480, - '\\', 352, - 'e', 740, - '{', 436, - '|', 562, - 0x2028, 850, - 0x2029, 850, + ':', 472, + '<', 581, + '=', 424, + '>', 496, + '[', 479, + '\\', 351, + 'e', 739, + '{', 435, + '|', 561, + 0x2028, 849, + 0x2029, 849, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(64); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead > '~') ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (lookahead > '~') ADVANCE(1041); END_STATE(); case 65: if (lookahead == '&') ADVANCE(60); - if (lookahead == '/') ADVANCE(488); - if (lookahead == '<') ADVANCE(583); - if (lookahead == '{') ADVANCE(436); + if (lookahead == '/') ADVANCE(487); + if (lookahead == '<') ADVANCE(582); + if (lookahead == '{') ADVANCE(435); if (lookahead == '\n' || lookahead == ' ') SKIP(65); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(490); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(489); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); case 66: if (lookahead == '&') ADVANCE(61); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '/') ADVANCE(516); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(515); - if (lookahead != 0) ADVANCE(517); + if (lookahead == '\'') ADVANCE(506); + if (lookahead == '/') ADVANCE(515); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(514); + if (lookahead != 0) ADVANCE(516); END_STATE(); case 67: - if (lookahead == '\'') ADVANCE(507); + if (lookahead == '\'') ADVANCE(506); if (lookahead == '/') ADVANCE(69); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(67); END_STATE(); case 68: - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '/') ADVANCE(612); - if (lookahead == '\\') ADVANCE(354); + if (lookahead == '\'') ADVANCE(506); + if (lookahead == '/') ADVANCE(611); + if (lookahead == '\\') ADVANCE(353); if (lookahead == '\n' || lookahead == '\r') SKIP(67); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(615); - if (lookahead != 0) ADVANCE(616); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(614); + if (lookahead != 0) ADVANCE(615); END_STATE(); case 69: if (lookahead == '*') ADVANCE(72); - if (lookahead == '/') ADVANCE(625); + if (lookahead == '/') ADVANCE(624); END_STATE(); case 70: if (lookahead == '*') ADVANCE(72); - if (lookahead == '/') ADVANCE(625); - if (lookahead == '>') ADVANCE(505); + if (lookahead == '/') ADVANCE(624); + if (lookahead == '>') ADVANCE(504); END_STATE(); case 71: if (lookahead == '*') ADVANCE(71); - if (lookahead == '/') ADVANCE(622); + if (lookahead == '/') ADVANCE(621); if (lookahead != 0) ADVANCE(72); END_STATE(); case 72: @@ -14539,192 +14545,192 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(72); END_STATE(); case 73: - if (lookahead == '*') ADVANCE(518); + if (lookahead == '*') ADVANCE(517); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(519); + if (lookahead != 0) ADVANCE(518); END_STATE(); case 74: - if (lookahead == '*') ADVANCE(512); + if (lookahead == '*') ADVANCE(511); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(513); + if (lookahead != 0) ADVANCE(512); END_STATE(); case 75: ADVANCE_MAP( '+', 137, - ',', 438, + ',', 437, '-', 138, - '.', 501, + '.', 500, '/', 69, - ':', 473, - '<', 582, + ':', 472, + '<', 581, '?', 94, - 'e', 358, - '{', 437, + 'e', 357, + '{', 436, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(75); END_STATE(); case 76: if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 77: - if (lookahead == '.') ADVANCE(527); + if (lookahead == '.') ADVANCE(526); END_STATE(); case 78: - if (lookahead == '.') ADVANCE(527); - if (lookahead == '?') ADVANCE(597); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '?') ADVANCE(596); END_STATE(); case 79: - if (lookahead == '.') ADVANCE(527); - if (lookahead == '?') ADVANCE(596); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '?') ADVANCE(595); END_STATE(); case 80: - if (lookahead == '.') ADVANCE(546); + if (lookahead == '.') ADVANCE(545); END_STATE(); case 81: ADVANCE_MAP( - '.', 501, + '.', 500, '/', 70, - ':', 473, - '<', 582, - '=', 425, - '>', 497, - '\\', 352, - '{', 436, - 0x2028, 1035, - 0x2029, 1035, + ':', 472, + '<', 581, + '=', 424, + '>', 496, + '\\', 351, + '{', 435, + 0x2028, 1034, + 0x2029, 1034, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(81); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead > '~') ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (lookahead > '~') ADVANCE(1041); END_STATE(); case 82: - if (lookahead == '/') ADVANCE(628); + if (lookahead == '/') ADVANCE(627); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(90); END_STATE(); case 83: if (lookahead == '/') ADVANCE(69); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1026); - if (lookahead == 'i') ADVANCE(916); - if (lookahead == '{') ADVANCE(436); + if (lookahead == '<') ADVANCE(581); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1025); + if (lookahead == 'i') ADVANCE(915); + if (lookahead == '{') ADVANCE(435); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(852); + lookahead == 0x2029) ADVANCE(851); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(83); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 84: if (lookahead == '/') ADVANCE(69); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(950); + if (lookahead == '>') ADVANCE(496); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(949); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(826); + lookahead == 0x2029) ADVANCE(825); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(84); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 85: if (lookahead == '/') ADVANCE(69); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == '{') ADVANCE(436); + if (lookahead == '[') ADVANCE(479); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(928); + if (lookahead == '{') ADVANCE(435); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(865); + lookahead == 0x2029) ADVANCE(864); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(85); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 86: ADVANCE_MAP( '/', 69, - '\\', 352, - 'a', 926, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 0x2028, 790, - 0x2029, 790, + '\\', 351, + 'a', 925, + 'b', 950, + 'd', 855, + 'e', 1024, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 0x2028, 789, + 0x2029, 789, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(86); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 87: ADVANCE_MAP( '/', 69, - '\\', 352, - 'a', 927, - 'b', 951, - 'n', 851, - 'o', 816, - 's', 994, - 'u', 930, - 'v', 946, - 0x2028, 804, - 0x2029, 804, + '\\', 351, + 'a', 926, + 'b', 950, + 'n', 850, + 'o', 815, + 's', 993, + 'u', 929, + 'v', 945, + 0x2028, 803, + 0x2029, 803, ); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(87); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 88: if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(922); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(921); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(883); + lookahead == 0x2029) ADVANCE(882); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(88); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 89: if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(867); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(866); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(980); + lookahead == 0x2029) ADVANCE(979); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(89); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 90: if (lookahead == '/') ADVANCE(69); @@ -14732,229 +14738,229 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 91: if (lookahead == '/') ADVANCE(70); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(719); + if (lookahead == '>') ADVANCE(496); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(718); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(822); + lookahead == 0x2029) ADVANCE(821); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(91); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead > '~') ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (lookahead > '~') ADVANCE(1041); END_STATE(); case 92: - if (lookahead == ':') ADVANCE(1097); + if (lookahead == ':') ADVANCE(1096); END_STATE(); case 93: - if (lookahead == ':') ADVANCE(1096); + if (lookahead == ':') ADVANCE(1095); END_STATE(); case 94: - if (lookahead == ':') ADVANCE(1098); + if (lookahead == ':') ADVANCE(1097); END_STATE(); case 95: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); END_STATE(); case 96: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); END_STATE(); case 97: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); END_STATE(); case 98: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); END_STATE(); case 99: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); END_STATE(); case 100: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); END_STATE(); case 101: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); case 102: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); END_STATE(); case 103: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 104: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); case 105: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 106: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); END_STATE(); case 107: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); END_STATE(); case 108: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(107); END_STATE(); case 109: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); case 110: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(109); END_STATE(); case 111: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 112: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(111); END_STATE(); case 113: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); END_STATE(); case 114: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(113); END_STATE(); case 115: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); case 116: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(115); END_STATE(); case 117: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); END_STATE(); case 118: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(117); END_STATE(); case 119: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); END_STATE(); case 120: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(119); END_STATE(); case 121: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(120); END_STATE(); case 122: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(121); END_STATE(); case 123: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); END_STATE(); case 124: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(123); END_STATE(); case 125: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); END_STATE(); case 126: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); END_STATE(); case 127: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(126); END_STATE(); case 128: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(127); END_STATE(); case 129: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); END_STATE(); case 130: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); case 131: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); END_STATE(); case 132: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 133: - if (lookahead == ';') ADVANCE(496); + if (lookahead == ';') ADVANCE(495); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); case 134: - if (lookahead == '=') ADVANCE(591); + if (lookahead == '=') ADVANCE(590); END_STATE(); case 135: - if (lookahead == '>') ADVANCE(486); + if (lookahead == '>') ADVANCE(485); END_STATE(); case 136: - if (lookahead == '>') ADVANCE(487); + if (lookahead == '>') ADVANCE(486); END_STATE(); case 137: if (lookahead == '?') ADVANCE(92); @@ -14963,77 +14969,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(93); END_STATE(); case 139: - if (lookahead == '\\') ADVANCE(351); - if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1043); + if (lookahead == '\\') ADVANCE(350); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1042); END_STATE(); case 140: - if (lookahead == '\\') ADVANCE(401); - if (lookahead == ']') ADVANCE(630); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == ']') ADVANCE(629); if (lookahead != 0 && lookahead != '\n') ADVANCE(140); END_STATE(); case 141: - if (lookahead == 'a') ADVANCE(335); + if (lookahead == 'a') ADVANCE(334); END_STATE(); case 142: - if (lookahead == 'a') ADVANCE(322); + if (lookahead == 'a') ADVANCE(321); if (lookahead == 'l') ADVANCE(149); - if (lookahead == 'o') ADVANCE(281); + if (lookahead == 'o') ADVANCE(280); END_STATE(); case 143: - if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'a') ADVANCE(259); END_STATE(); case 144: - if (lookahead == 'a') ADVANCE(260); - if (lookahead == 'e') ADVANCE(355); - if (lookahead == 'u') ADVANCE(258); + if (lookahead == 'a') ADVANCE(259); + if (lookahead == 'e') ADVANCE(354); + if (lookahead == 'u') ADVANCE(257); END_STATE(); case 145: if (lookahead == 'a') ADVANCE(181); - if (lookahead == 'q') ADVANCE(349); + if (lookahead == 'q') ADVANCE(348); END_STATE(); case 146: - if (lookahead == 'a') ADVANCE(301); - if (lookahead == 'y') ADVANCE(297); + if (lookahead == 'a') ADVANCE(300); + if (lookahead == 'y') ADVANCE(296); END_STATE(); case 147: - if (lookahead == 'a') ADVANCE(337); + if (lookahead == 'a') ADVANCE(336); END_STATE(); case 148: - if (lookahead == 'a') ADVANCE(337); - if (lookahead == 't') ADVANCE(307); - if (lookahead == 'y') ADVANCE(259); + if (lookahead == 'a') ADVANCE(336); + if (lookahead == 't') ADVANCE(306); + if (lookahead == 'y') ADVANCE(258); END_STATE(); case 149: - if (lookahead == 'a') ADVANCE(320); + if (lookahead == 'a') ADVANCE(319); END_STATE(); case 150: - if (lookahead == 'a') ADVANCE(302); + if (lookahead == 'a') ADVANCE(301); END_STATE(); case 151: - if (lookahead == 'a') ADVANCE(302); + if (lookahead == 'a') ADVANCE(301); if (lookahead == 'o') ADVANCE(224); END_STATE(); case 152: if (lookahead == 'a') ADVANCE(226); END_STATE(); case 153: - if (lookahead == 'a') ADVANCE(244); + if (lookahead == 'a') ADVANCE(243); END_STATE(); case 154: if (lookahead == 'a') ADVANCE(234); END_STATE(); case 155: - if (lookahead == 'a') ADVANCE(311); + if (lookahead == 'a') ADVANCE(310); END_STATE(); case 156: - if (lookahead == 'a') ADVANCE(276); + if (lookahead == 'a') ADVANCE(275); END_STATE(); case 157: - if (lookahead == 'a') ADVANCE(266); + if (lookahead == 'a') ADVANCE(265); END_STATE(); case 158: - if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'a') ADVANCE(347); END_STATE(); case 159: if (lookahead == 'a') ADVANCE(175); @@ -15045,21 +15051,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(176); END_STATE(); case 162: - if (lookahead == 'a') ADVANCE(343); + if (lookahead == 'a') ADVANCE(342); END_STATE(); case 163: - if (lookahead == 'b') ADVANCE(321); - if (lookahead == 'n') ADVANCE(359); - if (lookahead == 's') ADVANCE(432); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 'n') ADVANCE(358); + if (lookahead == 's') ADVANCE(431); if (lookahead == 'w') ADVANCE(152); END_STATE(); case 164: - if (lookahead == 'b') ADVANCE(321); - if (lookahead == 's') ADVANCE(432); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 's') ADVANCE(431); END_STATE(); case 165: - if (lookahead == 'b') ADVANCE(321); - if (lookahead == 's') ADVANCE(429); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 's') ADVANCE(428); END_STATE(); case 166: if (lookahead == 'b') ADVANCE(232); @@ -15068,22 +15074,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(154); END_STATE(); case 168: - if (lookahead == 'b') ADVANCE(290); + if (lookahead == 'b') ADVANCE(289); END_STATE(); case 169: if (lookahead == 'b') ADVANCE(204); END_STATE(); case 170: - if (lookahead == 'c') ADVANCE(522); + if (lookahead == 'c') ADVANCE(521); END_STATE(); case 171: if (lookahead == 'c') ADVANCE(219); END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'c') ADVANCE(330); END_STATE(); case 173: - if (lookahead == 'c') ADVANCE(334); + if (lookahead == 'c') ADVANCE(333); END_STATE(); case 174: if (lookahead == 'c') ADVANCE(205); @@ -15095,26 +15101,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(196); END_STATE(); case 177: - if (lookahead == 'c') ADVANCE(245); + if (lookahead == 'c') ADVANCE(244); if (lookahead == 'f') ADVANCE(158); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(338); + if (lookahead == 'c') ADVANCE(337); END_STATE(); case 179: - if (lookahead == 'd') ADVANCE(602); + if (lookahead == 'd') ADVANCE(601); END_STATE(); case 180: - if (lookahead == 'd') ADVANCE(353); + if (lookahead == 'd') ADVANCE(352); END_STATE(); case 181: - if (lookahead == 'd') ADVANCE(291); + if (lookahead == 'd') ADVANCE(290); END_STATE(); case 182: - if (lookahead == 'd') ADVANCE(314); + if (lookahead == 'd') ADVANCE(313); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 184: if (lookahead == 'e') ADVANCE(135); @@ -15126,70 +15132,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(145); END_STATE(); case 187: - if (lookahead == 'e') ADVANCE(474); + if (lookahead == 'e') ADVANCE(473); END_STATE(); case 188: - if (lookahead == 'e') ADVANCE(455); + if (lookahead == 'e') ADVANCE(454); END_STATE(); case 189: - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 190: - if (lookahead == 'e') ADVANCE(470); + if (lookahead == 'e') ADVANCE(469); END_STATE(); case 191: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1055); END_STATE(); case 192: - if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'e') ADVANCE(1100); END_STATE(); case 193: - if (lookahead == 'e') ADVANCE(1054); + if (lookahead == 'e') ADVANCE(1053); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == 'e') ADVANCE(1081); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(434); + if (lookahead == 'e') ADVANCE(433); END_STATE(); case 197: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 198: if (lookahead == 'e') ADVANCE(136); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(319); + if (lookahead == 'e') ADVANCE(318); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(303); + if (lookahead == 'e') ADVANCE(302); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(275); + if (lookahead == 'e') ADVANCE(274); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'e') ADVANCE(303); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'e') ADVANCE(314); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'e') ADVANCE(304); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'e') ADVANCE(286); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(332); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'e') ADVANCE(279); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(261); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 209: if (lookahead == 'e') ADVANCE(172); @@ -15198,13 +15204,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(157); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'e') ADVANCE(263); END_STATE(); case 212: - if (lookahead == 'f') ADVANCE(598); + if (lookahead == 'f') ADVANCE(597); END_STATE(); case 213: - if (lookahead == 'f') ADVANCE(467); + if (lookahead == 'f') ADVANCE(466); END_STATE(); case 214: if (lookahead == 'f') ADVANCE(228); @@ -15213,56 +15219,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(159); END_STATE(); case 216: - if (lookahead == 'g') ADVANCE(1067); + if (lookahead == 'g') ADVANCE(1066); END_STATE(); case 217: if (lookahead == 'g') ADVANCE(206); END_STATE(); case 218: - if (lookahead == 'h') ADVANCE(444); + if (lookahead == 'h') ADVANCE(443); END_STATE(); case 219: - if (lookahead == 'h') ADVANCE(476); + if (lookahead == 'h') ADVANCE(475); END_STATE(); case 220: if (lookahead == 'h') ADVANCE(229); END_STATE(); case 221: if (lookahead == 'h') ADVANCE(229); - if (lookahead == 'i') ADVANCE(326); + if (lookahead == 'i') ADVANCE(325); END_STATE(); case 222: - if (lookahead == 'i') ADVANCE(300); - if (lookahead == 'k') ADVANCE(279); + if (lookahead == 'i') ADVANCE(299); + if (lookahead == 'k') ADVANCE(278); END_STATE(); case 223: - if (lookahead == 'i') ADVANCE(277); - if (lookahead == 'r') ADVANCE(288); - if (lookahead == 'u') ADVANCE(272); + if (lookahead == 'i') ADVANCE(276); + if (lookahead == 'r') ADVANCE(287); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 224: if (lookahead == 'i') ADVANCE(179); END_STATE(); case 225: - if (lookahead == 'i') ADVANCE(318); + if (lookahead == 'i') ADVANCE(317); END_STATE(); case 226: - if (lookahead == 'i') ADVANCE(327); + if (lookahead == 'i') ADVANCE(326); END_STATE(); case 227: - if (lookahead == 'i') ADVANCE(273); + if (lookahead == 'i') ADVANCE(272); END_STATE(); case 228: if (lookahead == 'i') ADVANCE(203); END_STATE(); case 229: - if (lookahead == 'i') ADVANCE(248); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 230: - if (lookahead == 'i') ADVANCE(292); + if (lookahead == 'i') ADVANCE(291); END_STATE(); case 231: - if (lookahead == 'i') ADVANCE(312); + if (lookahead == 'i') ADVANCE(311); END_STATE(); case 232: if (lookahead == 'j') ADVANCE(209); @@ -15271,425 +15277,426 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(141); END_STATE(); case 234: - if (lookahead == 'l') ADVANCE(1090); + if (lookahead == 'l') ADVANCE(1089); END_STATE(); case 235: - if (lookahead == 'l') ADVANCE(1070); + if (lookahead == 'l') ADVANCE(1069); END_STATE(); case 236: - if (lookahead == 'l') ADVANCE(323); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'x') ADVANCE(295); + if (lookahead == 'l') ADVANCE(322); + if (lookahead == 'n') ADVANCE(345); + if (lookahead == 'x') ADVANCE(294); END_STATE(); case 237: - if (lookahead == 'l') ADVANCE(323); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'x') ADVANCE(339); + if (lookahead == 'l') ADVANCE(322); + if (lookahead == 'x') ADVANCE(338); END_STATE(); case 238: - if (lookahead == 'l') ADVANCE(323); - if (lookahead == 'x') ADVANCE(339); + if (lookahead == 'l') ADVANCE(359); END_STATE(); case 239: - if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 240: if (lookahead == 'l') ADVANCE(149); + if (lookahead == 'o') ADVANCE(280); END_STATE(); case 241: - if (lookahead == 'l') ADVANCE(149); - if (lookahead == 'o') ADVANCE(281); + if (lookahead == 'l') ADVANCE(360); END_STATE(); case 242: - if (lookahead == 'l') ADVANCE(361); + if (lookahead == 'l') ADVANCE(283); END_STATE(); case 243: - if (lookahead == 'l') ADVANCE(284); + if (lookahead == 'l') ADVANCE(238); END_STATE(); case 244: - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'l') ADVANCE(155); END_STATE(); case 245: - if (lookahead == 'l') ADVANCE(155); + if (lookahead == 'l') ADVANCE(332); END_STATE(); case 246: - if (lookahead == 'l') ADVANCE(333); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 247: - if (lookahead == 'l') ADVANCE(210); + if (lookahead == 'l') ADVANCE(190); END_STATE(); case 248: - if (lookahead == 'l') ADVANCE(190); + if (lookahead == 'l') ADVANCE(191); END_STATE(); case 249: - if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'l') ADVANCE(208); END_STATE(); case 250: if (lookahead == 'l') ADVANCE(208); + if (lookahead == 'o') ADVANCE(309); END_STATE(); case 251: - if (lookahead == 'l') ADVANCE(208); - if (lookahead == 'o') ADVANCE(310); + if (lookahead == 'l') ADVANCE(162); END_STATE(); case 252: - if (lookahead == 'l') ADVANCE(162); + if (lookahead == 'm') ADVANCE(292); END_STATE(); case 253: - if (lookahead == 'm') ADVANCE(293); + if (lookahead == 'm') ADVANCE(1093); END_STATE(); case 254: - if (lookahead == 'm') ADVANCE(1094); + if (lookahead == 'm') ADVANCE(441); END_STATE(); case 255: - if (lookahead == 'm') ADVANCE(442); + if (lookahead == 'm') ADVANCE(293); + if (lookahead == 'n') ADVANCE(465); + if (lookahead == 's') ADVANCE(1098); END_STATE(); case 256: - if (lookahead == 'm') ADVANCE(294); - if (lookahead == 'n') ADVANCE(466); - if (lookahead == 's') ADVANCE(1099); + if (lookahead == 'm') ADVANCE(293); + if (lookahead == 'n') ADVANCE(340); + if (lookahead == 's') ADVANCE(1098); END_STATE(); case 257: - if (lookahead == 'm') ADVANCE(294); - if (lookahead == 'n') ADVANCE(341); - if (lookahead == 's') ADVANCE(1099); + if (lookahead == 'm') ADVANCE(169); END_STATE(); case 258: - if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'm') ADVANCE(168); END_STATE(); case 259: - if (lookahead == 'm') ADVANCE(168); + if (lookahead == 'm') ADVANCE(199); END_STATE(); case 260: - if (lookahead == 'm') ADVANCE(199); + if (lookahead == 'm') ADVANCE(207); END_STATE(); case 261: - if (lookahead == 'm') ADVANCE(207); + if (lookahead == 'm') ADVANCE(295); + if (lookahead == 'n') ADVANCE(464); END_STATE(); case 262: - if (lookahead == 'm') ADVANCE(296); - if (lookahead == 'n') ADVANCE(465); + if (lookahead == 'm') ADVANCE(295); + if (lookahead == 'n') ADVANCE(464); + if (lookahead == 's') ADVANCE(1098); END_STATE(); case 263: - if (lookahead == 'm') ADVANCE(296); - if (lookahead == 'n') ADVANCE(465); - if (lookahead == 's') ADVANCE(1099); + if (lookahead == 'm') ADVANCE(298); END_STATE(); case 264: - if (lookahead == 'm') ADVANCE(299); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 265: - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'n') ADVANCE(1063); END_STATE(); case 266: - if (lookahead == 'n') ADVANCE(1064); + if (lookahead == 'n') ADVANCE(1103); END_STATE(); case 267: - if (lookahead == 'n') ADVANCE(1104); + if (lookahead == 'n') ADVANCE(523); END_STATE(); case 268: - if (lookahead == 'n') ADVANCE(524); + if (lookahead == 'n') ADVANCE(464); END_STATE(); case 269: - if (lookahead == 'n') ADVANCE(465); + if (lookahead == 'n') ADVANCE(460); END_STATE(); case 270: - if (lookahead == 'n') ADVANCE(461); + if (lookahead == 'n') ADVANCE(460); + if (lookahead == 's') ADVANCE(1098); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(461); - if (lookahead == 's') ADVANCE(1099); + if (lookahead == 'n') ADVANCE(178); END_STATE(); case 272: - if (lookahead == 'n') ADVANCE(178); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 273: - if (lookahead == 'n') ADVANCE(216); + if (lookahead == 'n') ADVANCE(170); END_STATE(); case 274: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'n') ADVANCE(182); END_STATE(); case 275: - if (lookahead == 'n') ADVANCE(182); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 276: - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(153); END_STATE(); case 277: - if (lookahead == 'n') ADVANCE(153); + if (lookahead == 'n') ADVANCE(241); END_STATE(); case 278: - if (lookahead == 'n') ADVANCE(242); + if (lookahead == 'n') ADVANCE(282); END_STATE(); case 279: - if (lookahead == 'n') ADVANCE(283); + if (lookahead == 'n') ADVANCE(341); END_STATE(); case 280: - if (lookahead == 'n') ADVANCE(342); + if (lookahead == 'n') ADVANCE(323); END_STATE(); case 281: - if (lookahead == 'n') ADVANCE(324); + if (lookahead == 'o') ADVANCE(180); END_STATE(); case 282: - if (lookahead == 'o') ADVANCE(180); + if (lookahead == 'o') ADVANCE(355); END_STATE(); case 283: - if (lookahead == 'o') ADVANCE(356); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 284: - if (lookahead == 'o') ADVANCE(167); + if (lookahead == 'o') ADVANCE(246); END_STATE(); case 285: - if (lookahead == 'o') ADVANCE(247); + if (lookahead == 'o') ADVANCE(284); END_STATE(); case 286: - if (lookahead == 'o') ADVANCE(285); + if (lookahead == 'o') ADVANCE(212); END_STATE(); case 287: - if (lookahead == 'o') ADVANCE(212); + if (lookahead == 'o') ADVANCE(254); END_STATE(); case 288: - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'o') ADVANCE(308); END_STATE(); case 289: - if (lookahead == 'o') ADVANCE(309); + if (lookahead == 'o') ADVANCE(235); END_STATE(); case 290: - if (lookahead == 'o') ADVANCE(235); + if (lookahead == 'o') ADVANCE(277); END_STATE(); case 291: - if (lookahead == 'o') ADVANCE(278); + if (lookahead == 'o') ADVANCE(267); END_STATE(); case 292: - if (lookahead == 'o') ADVANCE(268); + if (lookahead == 'p') ADVANCE(233); END_STATE(); case 293: - if (lookahead == 'p') ADVANCE(233); + if (lookahead == 'p') ADVANCE(250); END_STATE(); case 294: - if (lookahead == 'p') ADVANCE(251); + if (lookahead == 'p') ADVANCE(288); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 295: - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'p') ADVANCE(249); END_STATE(); case 296: - if (lookahead == 'p') ADVANCE(250); + if (lookahead == 'p') ADVANCE(189); END_STATE(); case 297: - if (lookahead == 'p') ADVANCE(189); + if (lookahead == 'p') ADVANCE(161); END_STATE(); case 298: - if (lookahead == 'p') ADVANCE(161); + if (lookahead == 'p') ADVANCE(251); END_STATE(); case 299: - if (lookahead == 'p') ADVANCE(252); + if (lookahead == 'q') ADVANCE(349); END_STATE(); case 300: - if (lookahead == 'q') ADVANCE(350); + if (lookahead == 'r') ADVANCE(217); END_STATE(); case 301: - if (lookahead == 'r') ADVANCE(217); + if (lookahead == 'r') ADVANCE(445); END_STATE(); case 302: - if (lookahead == 'r') ADVANCE(446); + if (lookahead == 'r') ADVANCE(215); END_STATE(); case 303: - if (lookahead == 'r') ADVANCE(215); + if (lookahead == 'r') ADVANCE(1106); END_STATE(); case 304: - if (lookahead == 'r') ADVANCE(1107); + if (lookahead == 'r') ADVANCE(1060); END_STATE(); case 305: - if (lookahead == 'r') ADVANCE(1061); + if (lookahead == 'r') ADVANCE(287); END_STATE(); case 306: - if (lookahead == 'r') ADVANCE(288); + if (lookahead == 'r') ADVANCE(227); END_STATE(); case 307: - if (lookahead == 'r') ADVANCE(227); + if (lookahead == 'r') ADVANCE(160); END_STATE(); case 308: - if (lookahead == 'r') ADVANCE(160); + if (lookahead == 'r') ADVANCE(328); END_STATE(); case 309: if (lookahead == 'r') ADVANCE(329); END_STATE(); case 310: - if (lookahead == 'r') ADVANCE(330); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 311: - if (lookahead == 'r') ADVANCE(193); + if (lookahead == 'r') ADVANCE(194); END_STATE(); case 312: - if (lookahead == 'r') ADVANCE(194); + if (lookahead == 's') ADVANCE(519); END_STATE(); case 313: - if (lookahead == 's') ADVANCE(520); + if (lookahead == 's') ADVANCE(1083); END_STATE(); case 314: - if (lookahead == 's') ADVANCE(1084); + if (lookahead == 's') ADVANCE(1078); END_STATE(); case 315: - if (lookahead == 's') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1086); END_STATE(); case 316: - if (lookahead == 's') ADVANCE(1087); + if (lookahead == 's') ADVANCE(428); END_STATE(); case 317: - if (lookahead == 's') ADVANCE(429); + if (lookahead == 's') ADVANCE(214); END_STATE(); case 318: - if (lookahead == 's') ADVANCE(214); + if (lookahead == 's') ADVANCE(297); END_STATE(); case 319: - if (lookahead == 's') ADVANCE(298); + if (lookahead == 's') ADVANCE(312); END_STATE(); case 320: - if (lookahead == 's') ADVANCE(313); + if (lookahead == 's') ADVANCE(335); END_STATE(); case 321: - if (lookahead == 's') ADVANCE(336); - END_STATE(); - case 322: if (lookahead == 's') ADVANCE(187); if (lookahead == 't') ADVANCE(171); END_STATE(); - case 323: + case 322: if (lookahead == 's') ADVANCE(188); END_STATE(); + case 323: + if (lookahead == 's') ADVANCE(327); + END_STATE(); case 324: - if (lookahead == 's') ADVANCE(328); + if (lookahead == 't') ADVANCE(447); END_STATE(); case 325: - if (lookahead == 't') ADVANCE(448); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 326: - if (lookahead == 't') ADVANCE(218); + if (lookahead == 't') ADVANCE(458); END_STATE(); case 327: - if (lookahead == 't') ADVANCE(459); + if (lookahead == 't') ADVANCE(449); END_STATE(); case 328: - if (lookahead == 't') ADVANCE(450); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 329: - if (lookahead == 't') ADVANCE(416); + if (lookahead == 't') ADVANCE(439); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(440); + if (lookahead == 't') ADVANCE(1072); END_STATE(); case 331: - if (lookahead == 't') ADVANCE(1073); + if (lookahead == 't') ADVANCE(1043); END_STATE(); case 332: - if (lookahead == 't') ADVANCE(1044); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 333: - if (lookahead == 't') ADVANCE(421); + if (lookahead == 't') ADVANCE(1075); END_STATE(); case 334: - if (lookahead == 't') ADVANCE(1076); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 335: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 't') ADVANCE(307); END_STATE(); case 336: - if (lookahead == 't') ADVANCE(308); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 337: - if (lookahead == 't') ADVANCE(225); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 338: - if (lookahead == 't') ADVANCE(230); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(201); + if (lookahead == 't') ADVANCE(156); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(156); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 341: - if (lookahead == 't') ADVANCE(200); + if (lookahead == 't') ADVANCE(315); END_STATE(); case 342: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 't') ADVANCE(198); END_STATE(); case 343: - if (lookahead == 't') ADVANCE(198); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 344: - if (lookahead == 't') ADVANCE(211); + if (lookahead == 'u') ADVANCE(363); + if (lookahead == 'x') ADVANCE(390); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(620); + if (lookahead != 0) ADVANCE(616); END_STATE(); case 345: - if (lookahead == 'u') ADVANCE(364); - if (lookahead == 'x') ADVANCE(391); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(619); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(621); - if (lookahead != 0) ADVANCE(617); + if (lookahead == 'u') ADVANCE(253); END_STATE(); case 346: - if (lookahead == 'u') ADVANCE(254); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 347: - if (lookahead == 'u') ADVANCE(272); + if (lookahead == 'u') ADVANCE(245); END_STATE(); case 348: - if (lookahead == 'u') ADVANCE(246); + if (lookahead == 'u') ADVANCE(231); END_STATE(); case 349: - if (lookahead == 'u') ADVANCE(231); + if (lookahead == 'u') ADVANCE(192); END_STATE(); case 350: - if (lookahead == 'u') ADVANCE(192); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 351: if (lookahead == 'u') ADVANCE(365); END_STATE(); case 352: - if (lookahead == 'u') ADVANCE(366); + if (lookahead == 'u') ADVANCE(248); END_STATE(); case 353: - if (lookahead == 'u') ADVANCE(249); + if (lookahead == 'u') ADVANCE(366); + if (lookahead == 'x') ADVANCE(390); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(620); + if (lookahead != 0) ADVANCE(616); END_STATE(); case 354: - if (lookahead == 'u') ADVANCE(367); - if (lookahead == 'x') ADVANCE(391); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(619); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(621); - if (lookahead != 0) ADVANCE(617); + if (lookahead == 'v') ADVANCE(202); + if (lookahead == 'w') ADVANCE(527); END_STATE(); case 355: - if (lookahead == 'v') ADVANCE(202); - if (lookahead == 'w') ADVANCE(528); + if (lookahead == 'w') ADVANCE(266); END_STATE(); case 356: - if (lookahead == 'w') ADVANCE(267); + if (lookahead == 'x') ADVANCE(294); END_STATE(); case 357: - if (lookahead == 'x') ADVANCE(295); + if (lookahead == 'x') ADVANCE(338); END_STATE(); case 358: - if (lookahead == 'x') ADVANCE(339); + if (lookahead == 'y') ADVANCE(1057); END_STATE(); case 359: - if (lookahead == 'y') ADVANCE(1058); + if (lookahead == 'y') ADVANCE(477); END_STATE(); case 360: - if (lookahead == 'y') ADVANCE(478); + if (lookahead == 'y') ADVANCE(1046); END_STATE(); case 361: - if (lookahead == 'y') ADVANCE(1047); + if (lookahead == 'y') ADVANCE(296); END_STATE(); case 362: - if (lookahead == 'y') ADVANCE(297); + if (lookahead == '{') ADVANCE(626); END_STATE(); case 363: - if (lookahead == '{') ADVANCE(627); + if (lookahead == '{') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); END_STATE(); case 364: - if (lookahead == '{') ADVANCE(385); + if (lookahead == '{') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); @@ -15701,16 +15708,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(397); END_STATE(); case 366: - if (lookahead == '{') ADVANCE(390); + if (lookahead == '{') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(387); END_STATE(); case 367: - if (lookahead == '{') ADVANCE(392); + if (lookahead == '}') ADVANCE(1041); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(388); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(367); END_STATE(); case 368: if (lookahead == '}') ADVANCE(1042); @@ -15719,54 +15726,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); END_STATE(); case 369: - if (lookahead == '}') ADVANCE(1043); + if (lookahead == '}') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); END_STATE(); case 370: - if (lookahead == '}') ADVANCE(617); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(370); + if (lookahead == '}') ADVANCE(1110); END_STATE(); case 371: - if (lookahead == '}') ADVANCE(1111); - END_STATE(); - case 372: - if (lookahead == '}') ADVANCE(618); + if (lookahead == '}') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(371); END_STATE(); - case 373: + case 372: if (lookahead == '+' || - lookahead == '-') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + lookahead == '-') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); - case 374: + case 373: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(387); + lookahead == 'x') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); - case 375: + case 374: if (lookahead == '0' || - lookahead == '1') ADVANCE(671); + lookahead == '1') ADVANCE(670); + END_STATE(); + case 375: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(671); END_STATE(); case 376: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); END_STATE(); case 377: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 378: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); END_STATE(); case 379: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 380: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1041); END_STATE(); case 381: if (('0' <= lookahead && lookahead <= '9') || @@ -15776,72 +15782,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 382: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1043); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(616); END_STATE(); case 383: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(617); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); END_STATE(); case 384: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(673); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(371); END_STATE(); case 385: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(617); END_STATE(); case 386: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(618); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 387: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(390); END_STATE(); case 388: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(391); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); END_STATE(); case 389: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(367); END_STATE(); case 390: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(382); END_STATE(); case 391: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(383); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); END_STATE(); case 392: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(370); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(385); END_STATE(); case 393: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(386); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(381); END_STATE(); case 394: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(382); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(380); END_STATE(); case 395: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(381); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); END_STATE(); case 396: if (('0' <= lookahead && lookahead <= '9') || @@ -15854,919 +15860,914 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(394); END_STATE(); case 398: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(516); END_STATE(); case 399: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(510); END_STATE(); case 400: if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(511); + lookahead != '\n') ADVANCE(140); END_STATE(); case 401: if (lookahead != 0 && - lookahead != '\n') ADVANCE(140); + lookahead != '\n') ADVANCE(629); END_STATE(); case 402: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(630); + if (eof) ADVANCE(413); + ADVANCE_MAP( + '!', 453, + '"', 505, + '#', 34, + '$', 1031, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 570, + ',', 437, + '-', 574, + '.', 501, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 583, + '=', 426, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + '\\', 351, + ']', 480, + '^', 560, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 893, + 'f', 879, + 'g', 899, + 'i', 908, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 814, + 'r', 838, + 's', 784, + 't', 788, + 'u', 929, + 'v', 791, + 'w', 877, + '{', 436, + '|', 563, + '}', 438, + '~', 600, + 0x2028, 676, + 0x2029, 676, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(402); + if (lookahead > '@') ADVANCE(1041); END_STATE(); case 403: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 454, - '"', 506, - '#', 34, - '$', 1032, - '%', 579, + '!', 453, + '"', 505, + '#', 139, + '%', 577, '&', 558, - '\'', 507, - '(', 457, - ')', 458, + '\'', 506, + '(', 456, '*', 419, - '+', 571, - ',', 438, - '-', 575, + '+', 568, + ',', 437, + '-', 572, '.', 502, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 584, - '=', 427, + '/', 575, + '0', 659, + ';', 471, + '<', 587, + '=', 425, '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - '\\', 352, - ']', 481, - '^', 561, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 894, - 'f', 880, - 'g', 900, - 'i', 909, - 'l', 837, - 'm', 945, + '?', 79, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, 'n', 780, 'o', 815, - 'r', 839, - 's', 785, - 't', 789, - 'u', 930, - 'v', 792, - 'w', 878, - '{', 437, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, '|', 564, - '}', 439, - '~', 601, - 0x2028, 677, - 0x2029, 677, + '}', 438, + '~', 600, + 0x2028, 745, + 0x2029, 745, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(403); - if (lookahead > '@') ADVANCE(1042); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1041); END_STATE(); case 404: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 454, - '"', 506, + '!', 453, + '"', 505, '#', 139, - '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, - '+', 569, - ',', 438, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 588, - '=', 426, - '>', 499, + '%', 577, + '&', 558, + '\'', 506, + '(', 456, + '*', 419, + '+', 568, + ',', 437, + '-', 572, + '.', 502, + '/', 575, + '0', 659, + ';', 471, + '<', 587, + '=', 425, + '>', 498, '?', 79, - '@', 1046, - '[', 480, - '\\', 352, - '^', 560, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '|', 565, - '}', 439, - '~', 601, - 0x2028, 746, - 0x2029, 746, + '@', 1045, + '[', 479, + '\\', 351, + '^', 559, + '`', 625, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '|', 564, + '}', 438, + '~', 600, + 0x2028, 747, + 0x2029, 747, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(404); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); + (lookahead < '[' || '^' < lookahead)) ADVANCE(1041); END_STATE(); case 405: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 454, - '"', 506, - '#', 139, + '!', 453, + '"', 505, + '$', 362, '%', 578, - '&', 559, - '\'', 507, - '(', 457, - '*', 420, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, '+', 569, - ',', 438, + ',', 437, '-', 573, - '.', 503, + '.', 502, '/', 576, - '0', 660, - ';', 472, - '<', 588, + '0', 659, + ':', 472, + ';', 471, + '<', 584, '=', 426, - '>', 499, - '?', 79, - '@', 1046, - '[', 480, - '\\', 352, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + '\\', 353, + ']', 480, '^', 560, - '`', 626, - 'a', 810, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 895, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '|', 565, - '}', 439, - '~', 601, - 0x2028, 748, - 0x2029, 748, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(405); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); - END_STATE(); - case 406: - if (eof) ADVANCE(414); - ADVANCE_MAP( - '!', 454, - '"', 506, - '$', 363, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - '\\', 354, - ']', 481, - '^', 561, - '`', 626, + '`', 625, 'a', 163, - 'b', 286, + 'b', 285, 'c', 142, 'd', 185, 'e', 236, 'f', 223, - 'g', 243, - 'i', 256, + 'g', 242, + 'i', 255, 'l', 197, - 'm', 282, + 'm', 281, 'n', 144, 'o', 166, 'r', 186, 's', 148, 't', 146, - 'u', 265, + 'u', 264, 'v', 151, 'w', 221, - '{', 436, - '|', 564, - '}', 439, + '{', 435, + '|', 563, + '}', 438, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(406); END_STATE(); - case 407: - if (eof) ADVANCE(414); + case 406: + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 454, - '"', 506, - '$', 363, - '%', 579, - '&', 558, - '\'', 507, - '(', 457, - ')', 458, - '*', 419, - '+', 570, - ',', 438, - '-', 574, - '.', 503, - '/', 577, - '0', 660, - ':', 473, - ';', 472, - '<', 585, - '=', 427, - '>', 498, - '?', 1052, - '@', 1046, - '[', 480, - ']', 481, - '^', 561, - '`', 626, + '!', 453, + '"', 505, + '$', 362, + '%', 578, + '&', 557, + '\'', 506, + '(', 456, + ')', 457, + '*', 418, + '+', 569, + ',', 437, + '-', 573, + '.', 502, + '/', 576, + '0', 659, + ':', 472, + ';', 471, + '<', 584, + '=', 426, + '>', 497, + '?', 1051, + '@', 1045, + '[', 479, + ']', 480, + '^', 560, + '`', 625, 'a', 163, - 'b', 286, + 'b', 285, 'c', 142, 'd', 185, 'e', 236, 'f', 223, - 'g', 243, - 'i', 256, + 'g', 242, + 'i', 255, 'l', 197, - 'm', 282, + 'm', 281, 'n', 144, 'o', 166, 'r', 186, 's', 148, 't', 146, - 'u', 265, + 'u', 264, 'v', 151, 'w', 221, - '{', 436, - '|', 564, - '}', 439, + '{', 435, + '|', 563, + '}', 438, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(406); END_STATE(); - case 408: - if (eof) ADVANCE(414); + case 407: + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 34, - '\'', 507, - '(', 457, - '*', 418, - '+', 569, - ',', 438, - '-', 573, + '\'', 506, + '(', 456, + '*', 417, + '+', 568, + ',', 437, + '-', 572, + '.', 501, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 766, + 0x2029, 766, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(407); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + END_STATE(); + case 408: + if (eof) ADVANCE(413); + ADVANCE_MAP( + '!', 452, + '"', 505, + '#', 139, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, '.', 502, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 767, - 0x2029, 767, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 770, + 0x2029, 770, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(408); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 409: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 503, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 895, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 771, - 0x2029, 771, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 765, + 0x2029, 765, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(409); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 410: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 766, - 0x2029, 766, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 769, + 0x2029, 769, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(410); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 411: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 770, - 0x2029, 770, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 804, + 'd', 855, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, + 0x2028, 771, + 0x2029, 771, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(411); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 412: - if (eof) ADVANCE(414); + if (eof) ADVANCE(413); ADVANCE_MAP( - '!', 453, - '"', 506, + '!', 452, + '"', 505, '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 805, - 'd', 856, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, + '\'', 506, + '(', 456, + '+', 568, + '-', 572, + '.', 377, + '/', 575, + '0', 659, + ';', 471, + '<', 588, + '@', 1045, + '[', 479, + '\\', 351, + '`', 625, + 'a', 811, + 'b', 950, + 'c', 804, + 'd', 855, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, + '{', 435, + '}', 438, + '~', 600, 0x2028, 772, 0x2029, 772, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(412); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); END_STATE(); case 413: - if (eof) ADVANCE(414); - ADVANCE_MAP( - '!', 453, - '"', 506, - '#', 139, - '\'', 507, - '(', 457, - '+', 569, - '-', 573, - '.', 378, - '/', 576, - '0', 660, - ';', 472, - '<', 589, - '@', 1046, - '[', 480, - '\\', 352, - '`', 626, - 'a', 812, - 'b', 951, - 'c', 805, - 'd', 856, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, - '{', 436, - '}', 439, - '~', 601, - 0x2028, 773, - 0x2029, 773, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(413); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); - END_STATE(); - case 414: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 415: + case 414: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(415); + lookahead != '\n') ADVANCE(414); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 416: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 418: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(580); + if (lookahead == '=') ADVANCE(532); END_STATE(); case 419: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(581); - if (lookahead == '=') ADVANCE(533); + if (lookahead == '*') ADVANCE(579); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(580); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 421: ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym_default); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 423: ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 425: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(590); END_STATE(); case 426: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(591); + if (lookahead == '=') ADVANCE(590); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 427: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(591); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(526); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 429: ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(936); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 430: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(937); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 431: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == 'y') ADVANCE(273); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(274); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 433: - ACCEPT_TOKEN(anon_sym_as); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); case 434: ACCEPT_TOKEN(anon_sym_namespace); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym_namespace); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(1109); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(1110); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 440: ACCEPT_TOKEN(anon_sym_import); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_import); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_from); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_from); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 444: ACCEPT_TOKEN(anon_sym_with); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_with); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 446: ACCEPT_TOKEN(anon_sym_var); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_var); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 448: ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 450: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 451: + case 450: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 452: + case 451: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 452: + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 453: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(592); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(593); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 455: ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 459: ACCEPT_TOKEN(anon_sym_await); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 461: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1010); + if (lookahead == 't') ADVANCE(854); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 462: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1011); - if (lookahead == 't') ADVANCE(855); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1010); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1011); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == 's') ADVANCE(655); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 464: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(656); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 's') ADVANCE(339); END_STATE(); case 465: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(340); + if (lookahead == 's') ADVANCE(339); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(340); - if (lookahead == 't') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 467: ACCEPT_TOKEN(anon_sym_of); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 468: ACCEPT_TOKEN(anon_sym_of); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym_of); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 470: ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 472: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 474: ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 476: ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 478: ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 479: - ACCEPT_TOKEN(anon_sym_finally); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 480: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 481: + case 480: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 482: + case 481: ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); - case 483: + case 482: ACCEPT_TOKEN(sym__glimmer_template_content); if (lookahead == '*') ADVANCE(72); - if (lookahead == '/') ADVANCE(625); + if (lookahead == '/') ADVANCE(624); END_STATE(); - case 484: + case 483: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(483); - if (lookahead == '<') ADVANCE(485); + if (lookahead == '/') ADVANCE(482); + if (lookahead == '<') ADVANCE(484); if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(484); + lookahead != '\n') ADVANCE(483); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(482); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(481); END_STATE(); - case 485: + case 484: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(344); + if (lookahead == '/') ADVANCE(343); END_STATE(); - case 486: + case 485: ACCEPT_TOKEN(anon_sym_LTtemplate_GT); END_STATE(); - case 487: + case 486: ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); - case 488: + case 487: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(4); - if (lookahead == '*') ADVANCE(492); - if (lookahead == '/') ADVANCE(493); + if (lookahead == '*') ADVANCE(491); + if (lookahead == '/') ADVANCE(492); if (lookahead != 0 && lookahead != '\n' && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); - case 489: + case 488: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(4); if (lookahead != 0 && @@ -16775,28 +16776,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); - case 490: + case 489: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(1); - if (lookahead == '/') ADVANCE(488); + if (lookahead == '/') ADVANCE(487); if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(490); + lookahead != '\n') ADVANCE(489); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(489); + lookahead != '}') ADVANCE(488); END_STATE(); - case 491: + case 490: ACCEPT_TOKEN(aux_sym_jsx_text_token1); ADVANCE_MAP( ' ', 5, - '*', 491, - '/', 489, + '*', 490, + '/', 488, '\n', 72, '&', 72, '<', 72, @@ -16804,13 +16805,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 72, '}', 72, ); - if (lookahead != 0) ADVANCE(492); + if (lookahead != 0) ADVANCE(491); END_STATE(); - case 492: + case 491: ACCEPT_TOKEN(aux_sym_jsx_text_token1); ADVANCE_MAP( ' ', 5, - '*', 491, + '*', 490, '\n', 72, '&', 72, '<', 72, @@ -16818,4843 +16819,4843 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 72, '}', 72, ); - if (lookahead != 0) ADVANCE(492); + if (lookahead != 0) ADVANCE(491); END_STATE(); - case 493: + case 492: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(494); + if (lookahead == ' ') ADVANCE(493); if (lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(495); + lookahead == '}') ADVANCE(494); if (lookahead != 0 && - lookahead != '\n') ADVANCE(493); + lookahead != '\n') ADVANCE(492); END_STATE(); - case 494: + case 493: ACCEPT_TOKEN(aux_sym_jsx_text_token2); - if (lookahead == ' ') ADVANCE(494); + if (lookahead == ' ') ADVANCE(493); if (lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(495); + lookahead == '}') ADVANCE(494); if (lookahead != 0 && - lookahead != '\n') ADVANCE(493); + lookahead != '\n') ADVANCE(492); END_STATE(); - case 495: + case 494: ACCEPT_TOKEN(aux_sym_jsx_text_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(495); + lookahead != '\n') ADVANCE(494); END_STATE(); - case 496: + case 495: ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); case 497: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(594); + if (lookahead == '>') ADVANCE(550); END_STATE(); case 498: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(595); + if (lookahead == '=') ADVANCE(594); if (lookahead == '>') ADVANCE(551); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(595); - if (lookahead == '>') ADVANCE(552); - END_STATE(); - case 500: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(500); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 501: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 502: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_LT_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_SLASH_GT); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '\n') ADVANCE(510); + if (lookahead == '&') ADVANCE(623); + if (lookahead != 0 && + lookahead != '"') ADVANCE(507); END_STATE(); case 508: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '\n') ADVANCE(511); - if (lookahead == '&') ADVANCE(624); + if (lookahead == '&') ADVANCE(62); + if (lookahead == '/') ADVANCE(509); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(508); if (lookahead != 0 && - lookahead != '"') ADVANCE(508); + lookahead != '"') ADVANCE(510); END_STATE(); case 509: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(62); - if (lookahead == '/') ADVANCE(510); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(509); + if (lookahead == '&') ADVANCE(399); + if (lookahead == '*') ADVANCE(512); + if (lookahead == '/') ADVANCE(507); if (lookahead != 0 && - lookahead != '"') ADVANCE(511); + lookahead != '"') ADVANCE(510); END_STATE(); case 510: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(400); - if (lookahead == '*') ADVANCE(513); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '&') ADVANCE(399); if (lookahead != 0 && - lookahead != '"') ADVANCE(511); + lookahead != '"') ADVANCE(510); END_STATE(); case 511: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(400); + if (lookahead == '&') ADVANCE(74); + if (lookahead == '*') ADVANCE(511); + if (lookahead == '/') ADVANCE(510); if (lookahead != 0 && - lookahead != '"') ADVANCE(511); + lookahead != '"') ADVANCE(512); END_STATE(); case 512: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '&') ADVANCE(74); - if (lookahead == '*') ADVANCE(512); - if (lookahead == '/') ADVANCE(511); + if (lookahead == '*') ADVANCE(511); if (lookahead != 0 && - lookahead != '"') ADVANCE(513); + lookahead != '"') ADVANCE(512); END_STATE(); case 513: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(74); - if (lookahead == '*') ADVANCE(512); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '\n') ADVANCE(516); + if (lookahead == '&') ADVANCE(622); if (lookahead != 0 && - lookahead != '"') ADVANCE(513); + lookahead != '&' && + lookahead != '\'') ADVANCE(513); END_STATE(); case 514: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '\n') ADVANCE(517); - if (lookahead == '&') ADVANCE(623); + if (lookahead == '&') ADVANCE(61); + if (lookahead == '/') ADVANCE(515); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(514); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(514); + lookahead != '\'') ADVANCE(516); END_STATE(); case 515: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(61); - if (lookahead == '/') ADVANCE(516); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(515); + if (lookahead == '&') ADVANCE(398); + if (lookahead == '*') ADVANCE(518); + if (lookahead == '/') ADVANCE(513); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(517); + lookahead != '\'') ADVANCE(516); END_STATE(); case 516: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(399); - if (lookahead == '*') ADVANCE(519); - if (lookahead == '/') ADVANCE(514); + if (lookahead == '&') ADVANCE(398); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(517); + lookahead != '\'') ADVANCE(516); END_STATE(); case 517: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(399); + if (lookahead == '&') ADVANCE(73); + if (lookahead == '*') ADVANCE(517); + if (lookahead == '/') ADVANCE(516); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(517); + lookahead != '\'') ADVANCE(518); END_STATE(); case 518: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); if (lookahead == '&') ADVANCE(73); - if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(517); + if (lookahead == '*') ADVANCE(517); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(519); + lookahead != '\'') ADVANCE(518); END_STATE(); case 519: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '*') ADVANCE(518); - if (lookahead != 0 && - lookahead != '&' && - lookahead != '\'') ADVANCE(519); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 520: ACCEPT_TOKEN(anon_sym_class); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_class); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 522: ACCEPT_TOKEN(anon_sym_async); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 524: ACCEPT_TOKEN(anon_sym_function); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_function); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 526: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 527: + case 526: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 528: + case 527: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 529: + case 528: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 530: + case 529: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 531: + case 530: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 532: + case 531: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 533: + case 532: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 534: + case 533: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 535: + case 534: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 536: + case 535: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 537: + case 536: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 538: + case 537: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 539: + case 538: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 540: + case 539: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 541: + case 540: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 542: + case 541: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 543: + case 542: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 544: + case 543: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 545: + case 544: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 546: + case 545: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); case 547: ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(542); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(543); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 549: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(543); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(544); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(538); + if (lookahead == '>') ADVANCE(553); END_STATE(); case 551: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(539); - if (lookahead == '>') ADVANCE(554); + if (lookahead == '>') ADVANCE(552); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(553); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 553: ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(539); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(540); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 555: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(540); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(541); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 557: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(547); + if (lookahead == '=') ADVANCE(536); END_STATE(); case 558: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(548); - if (lookahead == '=') ADVANCE(537); + if (lookahead == '&') ADVANCE(546); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(547); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 560: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(535); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(536); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 562: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '|') ADVANCE(549); END_STATE(); case 563: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(538); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '|') ADVANCE(549); + if (lookahead == '}') ADVANCE(1110); END_STATE(); case 564: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(538); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(1111); + if (lookahead == '|') ADVANCE(548); END_STATE(); case 565: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(549); + if (lookahead == '|') ADVANCE(548); + if (lookahead == '}') ADVANCE(1110); END_STATE(); case 566: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(1111); + if (lookahead == '}') ADVANCE(1110); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 568: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(604); END_STATE(); case 569: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(605); + if (lookahead == '+') ADVANCE(604); + if (lookahead == '=') ADVANCE(530); END_STATE(); case 570: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(605); - if (lookahead == '=') ADVANCE(531); + if (lookahead == '+') ADVANCE(604); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '?') ADVANCE(92); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(605); - if (lookahead == '=') ADVANCE(531); - if (lookahead == '?') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 572: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(605); END_STATE(); case 573: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(606); + if (lookahead == '-') ADVANCE(605); + if (lookahead == '=') ADVANCE(531); END_STATE(); case 574: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(606); - if (lookahead == '=') ADVANCE(532); + if (lookahead == '-') ADVANCE(605); + if (lookahead == '=') ADVANCE(531); + if (lookahead == '?') ADVANCE(93); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(606); - if (lookahead == '=') ADVANCE(532); - if (lookahead == '?') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(72); + if (lookahead == '/') ADVANCE(624); END_STATE(); case 576: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(72); - if (lookahead == '/') ADVANCE(625); + if (lookahead == '/') ADVANCE(624); + if (lookahead == '=') ADVANCE(533); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(72); - if (lookahead == '/') ADVANCE(625); - if (lookahead == '=') ADVANCE(534); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 578: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(534); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(535); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 580: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(541); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(542); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 582: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(503); END_STATE(); case 583: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(504); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '<') ADVANCE(555); + if (lookahead == '=') ADVANCE(589); + if (lookahead == 't') ADVANCE(183); END_STATE(); case 584: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(504); - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(590); - if (lookahead == 't') ADVANCE(183); + if (lookahead == '<') ADVANCE(555); + if (lookahead == '=') ADVANCE(589); END_STATE(); case 585: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(590); + if (lookahead == '<') ADVANCE(555); + if (lookahead == '=') ADVANCE(589); + if (lookahead == 't') ADVANCE(183); END_STATE(); case 586: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(590); - if (lookahead == 't') ADVANCE(183); + if (lookahead == '<') ADVANCE(554); + if (lookahead == '=') ADVANCE(589); END_STATE(); case 587: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(555); - if (lookahead == '=') ADVANCE(590); + if (lookahead == '<') ADVANCE(554); + if (lookahead == '=') ADVANCE(589); + if (lookahead == 't') ADVANCE(183); END_STATE(); case 588: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(555); - if (lookahead == '=') ADVANCE(590); if (lookahead == 't') ADVANCE(183); END_STATE(); case 589: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(591); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(592); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(593); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(594); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 596: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(544); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(545); + ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_instanceof); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 599: ACCEPT_TOKEN(anon_sym_instanceof); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_instanceof); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); - END_STATE(); - case 601: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 602: + case 601: ACCEPT_TOKEN(anon_sym_void); END_STATE(); - case 603: + case 602: ACCEPT_TOKEN(anon_sym_void); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 604: + case 603: ACCEPT_TOKEN(anon_sym_void); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 605: + case 604: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 606: + case 605: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 607: + case 606: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(609); - if (lookahead == '/') ADVANCE(611); + if (lookahead == '*') ADVANCE(608); + if (lookahead == '/') ADVANCE(610); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(611); + lookahead != '\\') ADVANCE(610); END_STATE(); - case 608: + case 607: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(608); - if (lookahead == '/') ADVANCE(611); + if (lookahead == '*') ADVANCE(607); + if (lookahead == '/') ADVANCE(610); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(609); + lookahead != '\\') ADVANCE(608); END_STATE(); - case 609: + case 608: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(608); + if (lookahead == '*') ADVANCE(607); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(609); + lookahead != '\\') ADVANCE(608); END_STATE(); - case 610: + case 609: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(607); + if (lookahead == '/') ADVANCE(606); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(610); + lookahead != '\r') ADVANCE(609); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(611); + lookahead != '\\') ADVANCE(610); END_STATE(); - case 611: + case 610: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(611); + lookahead != '\\') ADVANCE(610); END_STATE(); - case 612: + case 611: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(614); - if (lookahead == '/') ADVANCE(616); + if (lookahead == '*') ADVANCE(613); + if (lookahead == '/') ADVANCE(615); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(616); + lookahead != '\\') ADVANCE(615); END_STATE(); - case 613: + case 612: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(616); + if (lookahead == '*') ADVANCE(612); + if (lookahead == '/') ADVANCE(615); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(614); + lookahead != '\\') ADVANCE(613); END_STATE(); - case 614: + case 613: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(613); + if (lookahead == '*') ADVANCE(612); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(614); + lookahead != '\\') ADVANCE(613); END_STATE(); - case 615: + case 614: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(612); + if (lookahead == '/') ADVANCE(611); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(615); + lookahead != '\r') ADVANCE(614); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(616); + lookahead != '\\') ADVANCE(615); END_STATE(); - case 616: + case 615: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(616); + lookahead != '\\') ADVANCE(615); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 617: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 618: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(616); END_STATE(); case 619: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n' || - lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(617); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(616); END_STATE(); case 620: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(617); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(619); END_STATE(); case 621: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(620); - END_STATE(); - case 622: ACCEPT_TOKEN(aux_sym_comment_token1); END_STATE(); - case 623: + case 622: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\n') ADVANCE(517); + if (lookahead == '\n') ADVANCE(516); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(625); - if (lookahead != 0) ADVANCE(514); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(624); + if (lookahead != 0) ADVANCE(513); END_STATE(); - case 624: + case 623: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\n') ADVANCE(511); + if (lookahead == '\n') ADVANCE(510); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(625); - if (lookahead != 0) ADVANCE(508); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(624); + if (lookahead != 0) ADVANCE(507); END_STATE(); - case 625: + case 624: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(625); + lookahead != '\n') ADVANCE(624); END_STATE(); - case 626: + case 625: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 627: + case 626: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 628: + case 627: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 629: + case 628: ACCEPT_TOKEN(sym_regex_pattern); if (lookahead == '\n') SKIP(90); if (lookahead == '/') ADVANCE(69); if (lookahead == '[') ADVANCE(140); - if (lookahead == '\\') ADVANCE(402); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(629); - if (lookahead != 0) ADVANCE(630); + if (lookahead == '\\') ADVANCE(401); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(628); + if (lookahead != 0) ADVANCE(629); END_STATE(); - case 630: + case 629: ACCEPT_TOKEN(sym_regex_pattern); if (lookahead == '[') ADVANCE(140); - if (lookahead == '\\') ADVANCE(402); + if (lookahead == '\\') ADVANCE(401); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(630); + lookahead != '/') ADVANCE(629); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'a') ADVANCE(654); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 631: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(655); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'a') ADVANCE(646); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 632: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(647); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'c') ADVANCE(633); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 633: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(634); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'e') ADVANCE(648); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 634: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(649); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'e') ADVANCE(644); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 635: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(645); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'e') ADVANCE(652); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 636: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(653); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'e') ADVANCE(647); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 637: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(648); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'f') ADVANCE(599); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 638: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(600); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'f') ADVANCE(468); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 639: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(469); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'f') ADVANCE(641); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 640: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(642); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'i') ADVANCE(651); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 641: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'i') ADVANCE(652); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'i') ADVANCE(635); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 642: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'i') ADVANCE(636); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'l') ADVANCE(634); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 643: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'l') ADVANCE(635); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'm') ADVANCE(649); + if (lookahead == 'n') ADVANCE(463); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 644: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'm') ADVANCE(650); - if (lookahead == 'n') ADVANCE(464); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'm') ADVANCE(636); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 645: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'm') ADVANCE(637); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'n') ADVANCE(463); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 646: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(464); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'n') ADVANCE(632); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 647: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(633); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'n') ADVANCE(656); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 648: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(657); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'o') ADVANCE(637); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 649: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(638); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 'p') ADVANCE(642); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 650: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'p') ADVANCE(643); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 's') ADVANCE(432); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 651: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(433); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 's') ADVANCE(639); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 652: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(640); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 's') ADVANCE(1080); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 653: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(1081); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 's') ADVANCE(1088); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 654: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(1089); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 't') ADVANCE(640); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 655: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(641); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 't') ADVANCE(631); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 656: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(632); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (lookahead == 't') ADVANCE(653); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 657: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(654); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 658: - ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + ACCEPT_TOKEN(sym_number); END_STATE(); case 659: ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 675, + '0', 669, + '_', 378, + 'n', 658, + 'B', 374, + 'b', 374, + 'E', 372, + 'e', 372, + 'O', 375, + 'o', 375, + 'X', 383, + 'x', 383, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); END_STATE(); case 660: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 676, - '0', 670, - '_', 379, - 'n', 659, - 'B', 375, - 'b', 375, - 'E', 373, - 'e', 373, - 'O', 376, - 'o', 376, - 'X', 384, - 'x', 384, + '.', 675, + '0', 663, + '\\', 351, + '_', 1038, + 'n', 668, + 'B', 1033, + 'b', 1033, + 'E', 1032, + 'e', 1032, + 'O', 1036, + 'o', 1036, + 'X', 1040, + 'x', 1040, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 661: ACCEPT_TOKEN(sym_number); - ADVANCE_MAP( - '.', 676, - '0', 664, - '\\', 352, - '_', 1039, - 'n', 669, - 'B', 1034, - 'b', 1034, - 'E', 1033, - 'e', 1033, - 'O', 1037, - 'o', 1037, - 'X', 1041, - 'x', 1041, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '.') ADVANCE(675); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(668); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 662: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(676); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1038); - if (lookahead == 'n') ADVANCE(669); + if (lookahead == '.') ADVANCE(675); + if (lookahead == '_') ADVANCE(376); + if (lookahead == 'n') ADVANCE(658); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1033); + lookahead == 'e') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 663: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(676); - if (lookahead == '_') ADVANCE(377); - if (lookahead == 'n') ADVANCE(659); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1038); + if (lookahead == 'n') ADVANCE(668); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 664: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1039); - if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(664); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1033); + if (lookahead == 'n') ADVANCE(668); + if (lookahead == '0' || + lookahead == '1') ADVANCE(664); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 665: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1034); - if (lookahead == 'n') ADVANCE(669); - if (lookahead == '0' || - lookahead == '1') ADVANCE(665); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1036); + if (lookahead == 'n') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(665); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 666: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(666); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1040); + if (lookahead == 'n') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 667: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1041); - if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '_') ADVANCE(1039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 668: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 669: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '_') ADVANCE(378); + if (lookahead == 'n') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); END_STATE(); case 670: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(379); - if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (lookahead == '_') ADVANCE(374); + if (lookahead == 'n') ADVANCE(658); + if (lookahead == '0' || + lookahead == '1') ADVANCE(670); END_STATE(); case 671: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(375); - if (lookahead == 'n') ADVANCE(659); - if (lookahead == '0' || - lookahead == '1') ADVANCE(671); + if (lookahead == 'n') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(671); END_STATE(); case 672: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(376); - if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(672); + if (lookahead == '_') ADVANCE(383); + if (lookahead == 'n') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); END_STATE(); case 673: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(384); - if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(673); + if (lookahead == '_') ADVANCE(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(372); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 674: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); + if (lookahead == '_') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 675: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - END_STATE(); - case 676: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + lookahead == 'e') ADVANCE(372); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); - case 677: + case 676: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '$', 1032, - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 894, - 'f', 880, - 'g', 900, - 'i', 909, - 'l', 837, - 'm', 945, - 'n', 780, - 'o', 815, - 'r', 839, - 's', 785, - 't', 789, - 'u', 930, - 'v', 792, - 'w', 878, - 0x2028, 677, - 0x2029, 677, + '$', 1031, + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 893, + 'f', 879, + 'g', 899, + 'i', 908, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 814, + 'r', 838, + 's', 784, + 't', 788, + 'u', 929, + 'v', 791, + 'w', 877, + 0x2028, 676, + 0x2029, 676, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(688); + if (lookahead == '$' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(689); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(709); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(710); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(685); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(686); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(727); + if (lookahead == 'n') ADVANCE(740); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(728); - if (lookahead == 'n') ADVANCE(741); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(701); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(702); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(719); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(720); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(695); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(696); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(732); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'c') ADVANCE(733); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(734); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(602); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(603); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(728); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(729); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(721); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(722); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == 'u') ADVANCE(705); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(738); - if (lookahead == 'u') ADVANCE(706); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(677); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(678); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(684); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(685); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1101); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1102); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(678); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(679); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(723); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'e') ADVANCE(724); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(725); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(712); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(713); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'g') ADVANCE(1067); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'g') ADVANCE(1068); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(722); + if (lookahead == 'k') ADVANCE(713); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(723); - if (lookahead == 'k') ADVANCE(714); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(686); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(687); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(708); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(709); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'j') ADVANCE(691); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'j') ADVANCE(692); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1070); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1071); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(741); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(742); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(693); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(694); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(683); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(684); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(682); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(683); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(698); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(699); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(697); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(698); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1064); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1065); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1104); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1105); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(703); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(704); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(687); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(688); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(717); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(718); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(729); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(730); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(699); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(700); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(704); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(705); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(738); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(739); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(714); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(715); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(702); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(703); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(716); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(717); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(711); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(712); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'q') ADVANCE(736); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'q') ADVANCE(737); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1107); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(1108); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1061); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(1062); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(679); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(680); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(700); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(701); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(734); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(735); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1084); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1085); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(731); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(732); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(726); + if (lookahead == 'y') ADVANCE(706); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(727); - if (lookahead == 'y') ADVANCE(707); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(450); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(451); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1073); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1074); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1076); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1077); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(725); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(726); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(696); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(697); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(692); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(693); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'v') ADVANCE(694); + if (lookahead == 'w') ADVANCE(528); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'v') ADVANCE(695); - if (lookahead == 'w') ADVANCE(529); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'w') ADVANCE(710); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'w') ADVANCE(711); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'x') ADVANCE(735); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'x') ADVANCE(736); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(1058); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(1059); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(1047); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(1048); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '$' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ADVANCE_MAP( + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, + 0x2028, 743, + 0x2029, 743, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 744, 0x2029, 744, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 1015, - 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 745, 0x2029, 745, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'u', 929, + 'v', 945, 0x2028, 746, 0x2029, 746, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, + '0', 660, + '\\', 351, + 'a', 809, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 1014, + 'i', 918, + 'l', 836, + 'm', 944, 'n', 780, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'u', 930, - 'v', 946, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 747, 0x2029, 747, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 810, - 'b', 951, + '0', 660, + '\\', 351, + 'a', 922, + 'b', 950, 'c', 897, - 'd', 856, - 'e', 895, - 'f', 1015, + 'd', 855, + 'e', 1024, + 'f', 1014, 'i', 919, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 792, - 'w', 878, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 814, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, 0x2028, 748, 0x2029, 748, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, + '0', 660, + '\\', 351, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 919, + 'l', 836, + 'm', 944, + 'n', 780, 'o', 815, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, 0x2028, 749, 0x2029, 749, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 920, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 922, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 909, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, + 'v', 945, 0x2028, 750, 0x2029, 750, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 923, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 910, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 933, + 'n', 837, + 'o', 814, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, 0x2028, 751, 0x2029, 751, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 934, - 'n', 838, + '0', 660, + '\\', 351, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 933, + 'n', 837, 'o', 815, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, 0x2028, 752, 0x2029, 752, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 934, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 810, + 'b', 950, + 'c', 949, + 'i', 914, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 784, + 'u', 929, + 'v', 945, 0x2028, 753, 0x2029, 753, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 811, - 'b', 951, - 'c', 950, - 'i', 915, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 785, - 'u', 930, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, 0x2028, 754, 0x2029, 754, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, + '0', 660, + '\\', 351, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, 0x2028, 755, 0x2029, 755, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, + '0', 660, + '\\', 351, + 'a', 813, + 'b', 950, + 'c', 949, + 'i', 921, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 993, + 'u', 929, + 'v', 945, 0x2028, 756, 0x2029, 756, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 814, - 'b', 951, - 'c', 950, - 'i', 922, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 994, - 'u', 930, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 813, + 'b', 950, + 'c', 949, + 'n', 837, + 'o', 815, + 'r', 861, + 's', 993, + 'u', 929, + 'v', 945, 0x2028, 757, 0x2029, 757, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 814, - 'b', 951, - 'c', 950, - 'n', 838, - 'o', 816, - 'r', 862, - 's', 994, - 'u', 930, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 680, + 'b', 720, + 'c', 718, + 'n', 689, + 'o', 681, + 'r', 690, + 's', 730, + 'u', 707, + 'v', 715, 0x2028, 758, 0x2029, 758, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 681, - 'b', 721, - 'c', 719, - 'n', 690, - 'o', 682, - 'r', 691, - 's', 731, - 'u', 708, - 'v', 716, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 759, 0x2029, 759, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 778, + 'd', 835, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 760, 0x2029, 760, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 779, - 'd', 836, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 761, 0x2029, 761, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 762, 0x2029, 762, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 928, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 763, 0x2029, 763, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 805, + 'd', 835, + 'e', 894, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 764, 0x2029, 764, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 806, - 'd', 836, - 'e', 895, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 765, 0x2029, 765, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 766, 0x2029, 766, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 927, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, 0x2028, 767, 0x2029, 767, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 928, - 'f', 1015, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, + 'l', 836, + 'm', 944, + 'n', 779, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'u', 929, + 'v', 945, 0x2028, 768, 0x2029, 768, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, 'n', 780, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'u', 930, - 'v', 946, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 769, 0x2029, 769, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 895, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 894, + 'f', 1014, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 770, 0x2029, 770, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 897, - 'd', 856, - 'e', 895, - 'f', 1015, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 804, + 'd', 855, + 'e', 927, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 771, 0x2029, 771, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 805, - 'd', 856, - 'e', 928, - 'f', 881, - 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + '0', 660, + '\\', 351, + 'a', 811, + 'b', 950, + 'c', 804, + 'd', 855, + 'e', 894, + 'f', 880, + 'i', 920, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, + 'w', 877, 0x2028, 772, 0x2029, 772, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 812, - 'b', 951, - 'c', 805, - 'd', 856, - 'e', 895, - 'f', 881, + '0', 660, + '\\', 351, + 'a', 924, + 'b', 950, + 'c', 896, + 'd', 855, + 'e', 1024, + 'f', 1014, 'i', 921, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, - 'w', 878, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 791, 0x2028, 773, 0x2029, 773, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 925, - 'b', 951, + '0', 660, + '\\', 351, + 'a', 924, + 'b', 950, 'c', 897, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 792, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 945, 0x2028, 774, 0x2029, 774, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 925, - 'b', 951, - 'c', 898, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 946, + '0', 660, + '\\', 351, + 'a', 924, + 'b', 950, + 'c', 897, + 'd', 855, + 'e', 1023, + 'f', 1014, + 'i', 921, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 'v', 945, 0x2028, 775, 0x2029, 775, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 925, - 'b', 951, - 'c', 898, - 'd', 856, + '0', 660, + '\\', 351, + 'a', 812, + 'b', 950, + 'd', 855, 'e', 1024, - 'f', 1015, - 'i', 922, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 'v', 946, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, 0x2028, 776, 0x2029, 776, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 813, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, + '0', 660, + '\\', 351, + 'a', 925, + 'b', 950, + 'd', 855, + 'e', 1024, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, 0x2028, 777, 0x2029, 777, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - '0', 661, - '\\', 352, - 'a', 926, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 0x2028, 778, - 0x2029, 778, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(987); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'o') ADVANCE(943); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(988); - if (lookahead == 'l') ADVANCE(791); - if (lookahead == 'o') ADVANCE(944); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(916); + if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'u') ADVANCE(912); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(917); - if (lookahead == 'e') ADVANCE(1020); - if (lookahead == 'u') ADVANCE(913); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(916); + if (lookahead == 'e') ADVANCE(1021); + if (lookahead == 'u') ADVANCE(912); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(917); - if (lookahead == 'e') ADVANCE(1022); - if (lookahead == 'u') ADVANCE(913); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ADVANCE_MAP( + '\\', 351, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 814, + 'r', 861, + 's', 784, + 't', 1029, + 0x2028, 781, + 0x2029, 781, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '\\', 352, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, + '\\', 351, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 933, + 'l', 836, + 'm', 944, + 'n', 780, 'o', 815, - 'r', 862, - 's', 785, - 't', 1030, + 'r', 861, + 's', 784, + 't', 1029, 0x2028, 782, 0x2029, 782, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( - '\\', 352, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 934, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, + '\\', 351, + 'a', 923, + 'b', 950, + 'd', 855, + 'e', 1024, + 'f', 1014, + 'i', 914, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 784, + 't', 1029, 0x2028, 783, 0x2029, 783, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - '\\', 352, - 'a', 924, - 'b', 951, - 'd', 856, - 'e', 1025, - 'f', 1015, - 'i', 915, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 785, - 't', 1030, - 0x2028, 784, - 0x2029, 784, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(1007); + if (lookahead == 't') ADVANCE(973); + if (lookahead == 'y') ADVANCE(913); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(1008); - if (lookahead == 't') ADVANCE(974); - if (lookahead == 'y') ADVANCE(914); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(1007); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(1008); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(833); + if (lookahead == 'q') ADVANCE(1016); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(834); - if (lookahead == 'q') ADVANCE(1017); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(833); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(834); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(967); + if (lookahead == 'y') ADVANCE(961); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(968); - if (lookahead == 'y') ADVANCE(962); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ADVANCE_MAP( + '\\', 351, + 'a', 925, + 'b', 950, + 'd', 855, + 'e', 1024, + 'l', 836, + 'm', 944, + 'n', 780, + 'o', 815, + 'r', 861, + 's', 993, + 't', 1029, + 0x2028, 789, + 0x2029, 789, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - '\\', 352, - 'a', 926, - 'b', 951, - 'd', 856, - 'e', 1025, - 'l', 837, - 'm', 945, - 'n', 781, - 'o', 816, - 'r', 862, - 's', 994, - 't', 1030, - 0x2028, 790, - 0x2029, 790, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(989); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(990); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(968); + if (lookahead == 'o') ADVANCE(881); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(969); - if (lookahead == 'o') ADVANCE(882); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(885); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(901); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(902); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(1015); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(1016); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(891); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(892); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(977); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(978); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(939); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(940); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 'i') ADVANCE(933); + if (lookahead == 'o') ADVANCE(868); + if (lookahead == 's') ADVANCE(785); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(798); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'o') ADVANCE(869); - if (lookahead == 's') ADVANCE(786); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 'i') ADVANCE(933); + if (lookahead == 's') ADVANCE(785); if (lookahead == 0x2028 || lookahead == 0x2029) ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 's') ADVANCE(786); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 'i') ADVANCE(914); + if (lookahead == 's') ADVANCE(785); if (lookahead == 0x2028 || lookahead == 0x2029) ADVANCE(800); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 's') ADVANCE(786); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 't') ADVANCE(1029); if (lookahead == 0x2028 || lookahead == 0x2029) ADVANCE(801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(802); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(930); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(931); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ADVANCE_MAP( + '\\', 351, + 'a', 926, + 'b', 950, + 'n', 850, + 'o', 815, + 's', 993, + 'u', 929, + 'v', 945, + 0x2028, 803, + 0x2029, 803, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - '\\', 352, - 'a', 927, - 'b', 951, - 'n', 851, - 'o', 816, - 's', 994, - 'u', 930, - 'v', 946, - 0x2028, 804, - 0x2029, 804, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(994); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'o') ADVANCE(943); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(995); - if (lookahead == 'l') ADVANCE(791); - if (lookahead == 'o') ADVANCE(944); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(988); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'o') ADVANCE(943); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(989); - if (lookahead == 'l') ADVANCE(791); - if (lookahead == 'o') ADVANCE(944); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(826); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(827); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'a') ADVANCE(828); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'a') ADVANCE(829); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(830); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(429); + if (lookahead == 'w') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(991); - if (lookahead == 'n') ADVANCE(1027); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1026); if (lookahead == 's') ADVANCE(430); - if (lookahead == 'w') ADVANCE(793); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(991); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(431); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(1030); + if (lookahead == 'w') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(991); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(1031); - if (lookahead == 'w') ADVANCE(793); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(1030); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(991); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(1031); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1026); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(991); - if (lookahead == 'n') ADVANCE(1027); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(890); + if (lookahead == 'f') ADVANCE(467); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(891); - if (lookahead == 'f') ADVANCE(468); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(890); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(891); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(795); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(796); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(954); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(955); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'b') ADVANCE(859); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'b') ADVANCE(860); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(522); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(523); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(876); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(877); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 822: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(719); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(718); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + lookahead == 0x2029) ADVANCE(821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(900); + if (lookahead == 'f') ADVANCE(794); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(901); - if (lookahead == 'f') ADVANCE(795); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(900); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(901); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(1001); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(1002); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(949); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(1004); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(1005); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(860); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(861); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(847); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'c') ADVANCE(848); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(849); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'c') ADVANCE(1011); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'c') ADVANCE(1012); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(603); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(604); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(1018); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(1019); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(955); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(956); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'd') ADVANCE(981); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'd') ADVANCE(982); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(822); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(823); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(995); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 837: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(996); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'u') ADVANCE(912); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 838: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1020); - if (lookahead == 'u') ADVANCE(913); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(786); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(787); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(474); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(475); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(455); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(456); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(423); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(424); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(470); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(471); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1056); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1102); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1103); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1054); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1055); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1082); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1083); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1092); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(434); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(435); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 850: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(740); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(739); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + lookahead == 0x2029) ADVANCE(849); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1020); + if (lookahead == 'u') ADVANCE(912); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1021); - if (lookahead == 'u') ADVANCE(913); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1025); + if (lookahead == 'i') ADVANCE(915); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1026); - if (lookahead == 'i') ADVANCE(916); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(852); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(824); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(825); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(986); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(987); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(969); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(970); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(823); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(824); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(938); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(939); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(970); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(971); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(982); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(983); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(971); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(972); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(951); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(952); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(787); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(788); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1002); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(1003); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(942); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(943); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(928); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(864); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(917); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(918); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(965); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(966); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'e') ADVANCE(802); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(803); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'f') ADVANCE(467); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(468); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'f') ADVANCE(598); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(599); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'f') ADVANCE(886); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(887); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'f') ADVANCE(807); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(808); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'f') ADVANCE(972); + if (lookahead == 't') ADVANCE(1029); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(872); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(973); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'g') ADVANCE(1068); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'g') ADVANCE(1069); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'g') ADVANCE(862); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'g') ADVANCE(863); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'h') ADVANCE(444); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'h') ADVANCE(445); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'h') ADVANCE(476); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'h') ADVANCE(477); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'h') ADVANCE(887); + if (lookahead == 'i') ADVANCE(996); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'h') ADVANCE(888); - if (lookahead == 'i') ADVANCE(997); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(966); + if (lookahead == 'k') ADVANCE(940); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(967); - if (lookahead == 'k') ADVANCE(941); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(937); + if (lookahead == 'r') ADVANCE(952); + if (lookahead == 'u') ADVANCE(934); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'r') ADVANCE(953); - if (lookahead == 'u') ADVANCE(935); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(937); + if (lookahead == 'u') ADVANCE(934); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'u') ADVANCE(935); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(831); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(832); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(921); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(882); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(985); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(986); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(997); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(998); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(935); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 886: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(936); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(858); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 887: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(859); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(906); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 888: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(907); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(956); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 889: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(957); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'i') ADVANCE(978); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 890: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'i') ADVANCE(979); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'j') ADVANCE(852); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 891: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'j') ADVANCE(853); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1090); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 892: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1091); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1071); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 893: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1072); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(991); + if (lookahead == 'n') ADVANCE(1013); + if (lookahead == 'x') ADVANCE(959); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 894: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(992); - if (lookahead == 'n') ADVANCE(1014); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(991); + if (lookahead == 'n') ADVANCE(1013); if (lookahead == 'x') ADVANCE(960); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 895: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(992); - if (lookahead == 'n') ADVANCE(1014); - if (lookahead == 'x') ADVANCE(961); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1027); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 896: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1028); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'o') ADVANCE(943); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 897: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(791); - if (lookahead == 'o') ADVANCE(944); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(790); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 898: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(791); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1028); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 899: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1029); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 900: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(947); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(796); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 901: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(797); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(895); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 902: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(896); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(867); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(868); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(1003); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(1004); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(865); + if (lookahead == 'o') ADVANCE(976); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(866); - if (lookahead == 'o') ADVANCE(977); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(865); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(866); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'l') ADVANCE(842); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'l') ADVANCE(843); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'l') ADVANCE(844); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(958); + if (lookahead == 'n') ADVANCE(461); + if (lookahead == 's') ADVANCE(1099); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(959); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(958); if (lookahead == 'n') ADVANCE(462); - if (lookahead == 's') ADVANCE(1100); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(463); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(1094); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(1095); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(442); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(443); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(818); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(819); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(817); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(818); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(963); + if (lookahead == 'n') ADVANCE(462); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(964); - if (lookahead == 'n') ADVANCE(463); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(963); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(964); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(853); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(854); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(863); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(864); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(962); + if (lookahead == 'n') ADVANCE(461); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(963); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(962); if (lookahead == 'n') ADVANCE(462); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(963); - if (lookahead == 'n') ADVANCE(463); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(962); + if (lookahead == 'n') ADVANCE(1009); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(963); - if (lookahead == 'n') ADVANCE(1010); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'm') ADVANCE(962); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'm') ADVANCE(963); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(429); + if (lookahead == 'w') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(430); - if (lookahead == 'w') ADVANCE(793); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(429); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(430); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(1030); + if (lookahead == 'w') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(1031); - if (lookahead == 'w') ADVANCE(793); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1026); + if (lookahead == 's') ADVANCE(1030); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1027); - if (lookahead == 's') ADVANCE(1031); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1026); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1027); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1013); + if (lookahead == 'x') ADVANCE(960); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1014); - if (lookahead == 'x') ADVANCE(961); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1013); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1014); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(878); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(879); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1065); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1066); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1105); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1106); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(524); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(525); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(462); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(463); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(830); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(831); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(873); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(874); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(819); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(820); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(793); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(794); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(834); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(835); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(827); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(828); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(947); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(948); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(898); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(899); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(1012); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(1013); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'n') ADVANCE(992); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'n') ADVANCE(993); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(832); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(833); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(881); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(882); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(816); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(817); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(1022); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(1023); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(902); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(903); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(943); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(944); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(948); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(949); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(869); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(870); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(911); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(912); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(975); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(976); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(892); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(893); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(941); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(942); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(932); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(933); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'o') ADVANCE(976); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'o') ADVANCE(977); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(904); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(905); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(953); + if (lookahead == 't') ADVANCE(856); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(954); - if (lookahead == 't') ADVANCE(857); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(953); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(954); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(841); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(842); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(957); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(958); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(905); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(906); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'p') ADVANCE(808); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'p') ADVANCE(809); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'q') ADVANCE(1016); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'q') ADVANCE(1017); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'q') ADVANCE(1018); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(874); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(875); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(446); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(447); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(871); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(872); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1108); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(1109); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1062); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(1063); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(952); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(953); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(886); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(806); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(807); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(999); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'r') ADVANCE(1000); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(1001); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(845); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'r') ADVANCE(846); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(847); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'r') ADVANCE(866); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'r') ADVANCE(867); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(520); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(521); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1085); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1086); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1079); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1080); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1087); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1088); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(430); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(431); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(870); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(871); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(964); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(965); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(839); + if (lookahead == 't') ADVANCE(820); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(840); - if (lookahead == 't') ADVANCE(821); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(839); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(840); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(980); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(981); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(1006); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(1007); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(840); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(841); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 's') ADVANCE(998); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 's') ADVANCE(999); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(973); + if (lookahead == 'y') ADVANCE(913); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(974); - if (lookahead == 'y') ADVANCE(914); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(820); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 995: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(821); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(448); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 996: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(449); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(875); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 997: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(876); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(459); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 998: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(460); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(451); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 999: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(452); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(416); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1000: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(417); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(440); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1001: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(441); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1074); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1002: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1075); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1044); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1003: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1045); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(421); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1004: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(422); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1077); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1005: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1078); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(1029); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(1005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1006: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(974); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1007: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(975); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(883); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1008: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(884); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(856); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1009: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(857); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(854); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1010: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(855); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(797); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1011: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(798); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(888); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1012: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(889); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 't') ADVANCE(983); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1013: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 't') ADVANCE(984); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(910); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1014: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(911); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(934); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1015: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(935); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(903); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1016: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(904); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(889); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1017: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(890); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(844); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1018: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(845); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'u') ADVANCE(907); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1019: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'u') ADVANCE(908); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'v') ADVANCE(857); + if (lookahead == 'w') ADVANCE(529); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1020: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'v') ADVANCE(858); - if (lookahead == 'w') ADVANCE(530); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'v') ADVANCE(857); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1021: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'v') ADVANCE(858); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'w') ADVANCE(529); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1022: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'w') ADVANCE(530); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'w') ADVANCE(931); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1023: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'w') ADVANCE(932); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'x') ADVANCE(959); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1024: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 'x') ADVANCE(960); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1025: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'x') ADVANCE(961); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'x') ADVANCE(1008); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1026: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'x') ADVANCE(1009); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(1059); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1027: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(1060); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(478); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1028: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(479); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(1048); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1029: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(1049); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(961); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1030: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(962); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 'y') ADVANCE(936); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1031: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'y') ADVANCE(937); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '{') ADVANCE(626); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1032: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '{') ADVANCE(627); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '+' || + lookahead == '-') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1033: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '+' || - lookahead == '-') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '0' || + lookahead == '1') ADVANCE(664); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1034: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '0' || - lookahead == '1') ADVANCE(665); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(1034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1035: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '\\') ADVANCE(351); if (lookahead == 0x2028 || lookahead == 0x2029) ADVANCE(1035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1036: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(1036); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(665); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1037: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(666); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1038: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1039: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(664); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1040: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1041: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1042: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(350); if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1043: - ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(351); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1043); + ACCEPT_TOKEN(anon_sym_target); END_STATE(); case 1044: ACCEPT_TOKEN(anon_sym_target); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1045: - ACCEPT_TOKEN(anon_sym_target); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 1046: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 1047: + case 1046: ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); - case 1048: + case 1047: ACCEPT_TOKEN(anon_sym_readonly); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1049: + case 1048: ACCEPT_TOKEN(anon_sym_readonly); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 1049: + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1050: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(526); END_STATE(); case 1051: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(527); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '?') ADVANCE(596); END_STATE(); case 1052: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(527); - if (lookahead == '?') ADVANCE(597); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '?') ADVANCE(595); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(527); - if (lookahead == '?') ADVANCE(596); + ACCEPT_TOKEN(anon_sym_declare); END_STATE(); case 1054: ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_declare); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1056: ACCEPT_TOKEN(anon_sym_module); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 1058: ACCEPT_TOKEN(anon_sym_any); END_STATE(); - case 1059: + case 1058: ACCEPT_TOKEN(anon_sym_any); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1060: + case 1059: ACCEPT_TOKEN(anon_sym_any); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1061: + case 1060: ACCEPT_TOKEN(anon_sym_number); END_STATE(); - case 1062: + case 1061: ACCEPT_TOKEN(anon_sym_number); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1063: + case 1062: ACCEPT_TOKEN(anon_sym_number); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1064: + case 1063: ACCEPT_TOKEN(anon_sym_boolean); END_STATE(); - case 1065: + case 1064: ACCEPT_TOKEN(anon_sym_boolean); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1066: + case 1065: ACCEPT_TOKEN(anon_sym_boolean); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1067: + case 1066: ACCEPT_TOKEN(anon_sym_string); END_STATE(); - case 1068: + case 1067: ACCEPT_TOKEN(anon_sym_string); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1069: + case 1068: ACCEPT_TOKEN(anon_sym_string); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1070: + case 1069: ACCEPT_TOKEN(anon_sym_symbol); END_STATE(); - case 1071: + case 1070: ACCEPT_TOKEN(anon_sym_symbol); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1072: + case 1071: ACCEPT_TOKEN(anon_sym_symbol); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1073: + case 1072: ACCEPT_TOKEN(anon_sym_object); END_STATE(); - case 1074: + case 1073: ACCEPT_TOKEN(anon_sym_object); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1075: + case 1074: ACCEPT_TOKEN(anon_sym_object); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1076: + case 1075: ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); - case 1077: + case 1076: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1078: + case 1077: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 1078: + ACCEPT_TOKEN(anon_sym_satisfies); END_STATE(); case 1079: ACCEPT_TOKEN(anon_sym_satisfies); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1080: ACCEPT_TOKEN(anon_sym_satisfies); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_satisfies); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + ACCEPT_TOKEN(anon_sym_require); END_STATE(); case 1082: ACCEPT_TOKEN(anon_sym_require); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_require); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 1084: ACCEPT_TOKEN(anon_sym_extends); END_STATE(); - case 1085: + case 1084: ACCEPT_TOKEN(anon_sym_extends); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1086: + case 1085: ACCEPT_TOKEN(anon_sym_extends); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); + END_STATE(); + case 1086: + ACCEPT_TOKEN(anon_sym_implements); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_implements); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_implements); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(657); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_implements); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 1090: ACCEPT_TOKEN(anon_sym_global); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_global); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_interface); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_interface); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_interface); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 1094: ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 1099: ACCEPT_TOKEN(anon_sym_is); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); case 1100: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); - END_STATE(); - case 1101: ACCEPT_TOKEN(anon_sym_unique); END_STATE(); - case 1102: + case 1101: ACCEPT_TOKEN(anon_sym_unique); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1103: + case 1102: ACCEPT_TOKEN(anon_sym_unique); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1104: + case 1103: ACCEPT_TOKEN(anon_sym_unknown); END_STATE(); - case 1105: + case 1104: ACCEPT_TOKEN(anon_sym_unknown); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1106: + case 1105: ACCEPT_TOKEN(anon_sym_unknown); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1107: + case 1106: ACCEPT_TOKEN(anon_sym_never); END_STATE(); - case 1108: + case 1107: ACCEPT_TOKEN(anon_sym_never); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(499); + if (lookahead == '\\') ADVANCE(351); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1109: + case 1108: ACCEPT_TOKEN(anon_sym_never); - if (lookahead == '\\') ADVANCE(352); - if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); + if (lookahead == '\\') ADVANCE(351); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1041); END_STATE(); - case 1110: + case 1109: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 1111: + case 1110: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -22134,141 +22135,141 @@ 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 = 408, .external_lex_state = 2}, + [1] = {.lex_state = 407, .external_lex_state = 2}, [2] = {.lex_state = 7, .external_lex_state = 3}, [3] = {.lex_state = 7, .external_lex_state = 3}, - [4] = {.lex_state = 408, .external_lex_state = 2}, - [5] = {.lex_state = 408, .external_lex_state = 2}, - [6] = {.lex_state = 408, .external_lex_state = 2}, - [7] = {.lex_state = 408, .external_lex_state = 2}, - [8] = {.lex_state = 408, .external_lex_state = 2}, - [9] = {.lex_state = 408, .external_lex_state = 2}, - [10] = {.lex_state = 408, .external_lex_state = 2}, - [11] = {.lex_state = 408, .external_lex_state = 2}, + [4] = {.lex_state = 407, .external_lex_state = 2}, + [5] = {.lex_state = 407, .external_lex_state = 2}, + [6] = {.lex_state = 407, .external_lex_state = 2}, + [7] = {.lex_state = 407, .external_lex_state = 2}, + [8] = {.lex_state = 407, .external_lex_state = 2}, + [9] = {.lex_state = 407, .external_lex_state = 2}, + [10] = {.lex_state = 407, .external_lex_state = 2}, + [11] = {.lex_state = 407, .external_lex_state = 2}, [12] = {.lex_state = 40, .external_lex_state = 2}, [13] = {.lex_state = 40, .external_lex_state = 2}, [14] = {.lex_state = 40, .external_lex_state = 2}, [15] = {.lex_state = 40, .external_lex_state = 2}, [16] = {.lex_state = 40, .external_lex_state = 2}, - [17] = {.lex_state = 408, .external_lex_state = 2}, - [18] = {.lex_state = 408, .external_lex_state = 2}, - [19] = {.lex_state = 408, .external_lex_state = 2}, - [20] = {.lex_state = 408, .external_lex_state = 2}, - [21] = {.lex_state = 408, .external_lex_state = 2}, - [22] = {.lex_state = 408, .external_lex_state = 2}, - [23] = {.lex_state = 408, .external_lex_state = 2}, - [24] = {.lex_state = 408, .external_lex_state = 2}, - [25] = {.lex_state = 408, .external_lex_state = 2}, - [26] = {.lex_state = 408, .external_lex_state = 2}, - [27] = {.lex_state = 408, .external_lex_state = 2}, - [28] = {.lex_state = 408, .external_lex_state = 2}, - [29] = {.lex_state = 408, .external_lex_state = 2}, - [30] = {.lex_state = 408, .external_lex_state = 2}, - [31] = {.lex_state = 408, .external_lex_state = 2}, - [32] = {.lex_state = 408, .external_lex_state = 2}, - [33] = {.lex_state = 408, .external_lex_state = 2}, - [34] = {.lex_state = 408, .external_lex_state = 2}, - [35] = {.lex_state = 408, .external_lex_state = 2}, - [36] = {.lex_state = 408, .external_lex_state = 2}, - [37] = {.lex_state = 408, .external_lex_state = 2}, - [38] = {.lex_state = 408, .external_lex_state = 2}, - [39] = {.lex_state = 408, .external_lex_state = 2}, - [40] = {.lex_state = 408, .external_lex_state = 2}, - [41] = {.lex_state = 408, .external_lex_state = 2}, - [42] = {.lex_state = 408, .external_lex_state = 2}, - [43] = {.lex_state = 408, .external_lex_state = 2}, - [44] = {.lex_state = 408, .external_lex_state = 2}, - [45] = {.lex_state = 408, .external_lex_state = 2}, - [46] = {.lex_state = 408, .external_lex_state = 2}, - [47] = {.lex_state = 408, .external_lex_state = 2}, - [48] = {.lex_state = 408, .external_lex_state = 2}, - [49] = {.lex_state = 408, .external_lex_state = 2}, - [50] = {.lex_state = 408, .external_lex_state = 2}, - [51] = {.lex_state = 408, .external_lex_state = 2}, - [52] = {.lex_state = 408, .external_lex_state = 2}, - [53] = {.lex_state = 408, .external_lex_state = 2}, - [54] = {.lex_state = 408, .external_lex_state = 2}, - [55] = {.lex_state = 408, .external_lex_state = 2}, - [56] = {.lex_state = 408, .external_lex_state = 2}, - [57] = {.lex_state = 408, .external_lex_state = 2}, - [58] = {.lex_state = 408, .external_lex_state = 2}, - [59] = {.lex_state = 408, .external_lex_state = 2}, - [60] = {.lex_state = 408, .external_lex_state = 2}, - [61] = {.lex_state = 408, .external_lex_state = 2}, - [62] = {.lex_state = 408, .external_lex_state = 2}, - [63] = {.lex_state = 408, .external_lex_state = 2}, - [64] = {.lex_state = 408, .external_lex_state = 2}, - [65] = {.lex_state = 408, .external_lex_state = 2}, - [66] = {.lex_state = 408, .external_lex_state = 2}, - [67] = {.lex_state = 408, .external_lex_state = 2}, - [68] = {.lex_state = 408, .external_lex_state = 2}, - [69] = {.lex_state = 408, .external_lex_state = 2}, - [70] = {.lex_state = 408, .external_lex_state = 2}, - [71] = {.lex_state = 408, .external_lex_state = 2}, - [72] = {.lex_state = 408, .external_lex_state = 2}, - [73] = {.lex_state = 408, .external_lex_state = 2}, - [74] = {.lex_state = 408, .external_lex_state = 2}, - [75] = {.lex_state = 408, .external_lex_state = 2}, - [76] = {.lex_state = 408, .external_lex_state = 2}, - [77] = {.lex_state = 408, .external_lex_state = 2}, - [78] = {.lex_state = 408, .external_lex_state = 2}, - [79] = {.lex_state = 408, .external_lex_state = 2}, - [80] = {.lex_state = 408, .external_lex_state = 2}, - [81] = {.lex_state = 408, .external_lex_state = 2}, - [82] = {.lex_state = 408, .external_lex_state = 2}, - [83] = {.lex_state = 408, .external_lex_state = 2}, - [84] = {.lex_state = 408, .external_lex_state = 2}, - [85] = {.lex_state = 408, .external_lex_state = 2}, - [86] = {.lex_state = 408, .external_lex_state = 2}, - [87] = {.lex_state = 408, .external_lex_state = 2}, - [88] = {.lex_state = 408, .external_lex_state = 2}, - [89] = {.lex_state = 408, .external_lex_state = 2}, - [90] = {.lex_state = 408, .external_lex_state = 2}, - [91] = {.lex_state = 408, .external_lex_state = 2}, - [92] = {.lex_state = 408, .external_lex_state = 2}, - [93] = {.lex_state = 408, .external_lex_state = 2}, - [94] = {.lex_state = 408, .external_lex_state = 2}, - [95] = {.lex_state = 408, .external_lex_state = 2}, - [96] = {.lex_state = 408, .external_lex_state = 2}, - [97] = {.lex_state = 408, .external_lex_state = 2}, - [98] = {.lex_state = 408, .external_lex_state = 2}, - [99] = {.lex_state = 408, .external_lex_state = 2}, - [100] = {.lex_state = 408, .external_lex_state = 2}, - [101] = {.lex_state = 408, .external_lex_state = 2}, - [102] = {.lex_state = 408, .external_lex_state = 2}, - [103] = {.lex_state = 408, .external_lex_state = 2}, - [104] = {.lex_state = 408, .external_lex_state = 2}, - [105] = {.lex_state = 408, .external_lex_state = 2}, - [106] = {.lex_state = 408, .external_lex_state = 2}, - [107] = {.lex_state = 408, .external_lex_state = 2}, - [108] = {.lex_state = 408, .external_lex_state = 2}, - [109] = {.lex_state = 408, .external_lex_state = 2}, - [110] = {.lex_state = 408, .external_lex_state = 2}, - [111] = {.lex_state = 408, .external_lex_state = 2}, - [112] = {.lex_state = 408, .external_lex_state = 2}, - [113] = {.lex_state = 408, .external_lex_state = 2}, - [114] = {.lex_state = 408, .external_lex_state = 2}, - [115] = {.lex_state = 408, .external_lex_state = 2}, - [116] = {.lex_state = 408, .external_lex_state = 2}, - [117] = {.lex_state = 408, .external_lex_state = 2}, - [118] = {.lex_state = 408, .external_lex_state = 2}, - [119] = {.lex_state = 408, .external_lex_state = 2}, - [120] = {.lex_state = 408, .external_lex_state = 2}, - [121] = {.lex_state = 408, .external_lex_state = 2}, - [122] = {.lex_state = 408, .external_lex_state = 2}, - [123] = {.lex_state = 6, .external_lex_state = 4}, + [17] = {.lex_state = 407, .external_lex_state = 2}, + [18] = {.lex_state = 407, .external_lex_state = 2}, + [19] = {.lex_state = 407, .external_lex_state = 2}, + [20] = {.lex_state = 407, .external_lex_state = 2}, + [21] = {.lex_state = 407, .external_lex_state = 2}, + [22] = {.lex_state = 407, .external_lex_state = 2}, + [23] = {.lex_state = 407, .external_lex_state = 2}, + [24] = {.lex_state = 407, .external_lex_state = 2}, + [25] = {.lex_state = 407, .external_lex_state = 2}, + [26] = {.lex_state = 407, .external_lex_state = 2}, + [27] = {.lex_state = 407, .external_lex_state = 2}, + [28] = {.lex_state = 407, .external_lex_state = 2}, + [29] = {.lex_state = 407, .external_lex_state = 2}, + [30] = {.lex_state = 407, .external_lex_state = 2}, + [31] = {.lex_state = 407, .external_lex_state = 2}, + [32] = {.lex_state = 407, .external_lex_state = 2}, + [33] = {.lex_state = 407, .external_lex_state = 2}, + [34] = {.lex_state = 407, .external_lex_state = 2}, + [35] = {.lex_state = 407, .external_lex_state = 2}, + [36] = {.lex_state = 407, .external_lex_state = 2}, + [37] = {.lex_state = 407, .external_lex_state = 2}, + [38] = {.lex_state = 407, .external_lex_state = 2}, + [39] = {.lex_state = 407, .external_lex_state = 2}, + [40] = {.lex_state = 407, .external_lex_state = 2}, + [41] = {.lex_state = 407, .external_lex_state = 2}, + [42] = {.lex_state = 407, .external_lex_state = 2}, + [43] = {.lex_state = 407, .external_lex_state = 2}, + [44] = {.lex_state = 407, .external_lex_state = 2}, + [45] = {.lex_state = 407, .external_lex_state = 2}, + [46] = {.lex_state = 407, .external_lex_state = 2}, + [47] = {.lex_state = 407, .external_lex_state = 2}, + [48] = {.lex_state = 407, .external_lex_state = 2}, + [49] = {.lex_state = 407, .external_lex_state = 2}, + [50] = {.lex_state = 407, .external_lex_state = 2}, + [51] = {.lex_state = 407, .external_lex_state = 2}, + [52] = {.lex_state = 407, .external_lex_state = 2}, + [53] = {.lex_state = 407, .external_lex_state = 2}, + [54] = {.lex_state = 407, .external_lex_state = 2}, + [55] = {.lex_state = 407, .external_lex_state = 2}, + [56] = {.lex_state = 407, .external_lex_state = 2}, + [57] = {.lex_state = 407, .external_lex_state = 2}, + [58] = {.lex_state = 407, .external_lex_state = 2}, + [59] = {.lex_state = 407, .external_lex_state = 2}, + [60] = {.lex_state = 407, .external_lex_state = 2}, + [61] = {.lex_state = 407, .external_lex_state = 2}, + [62] = {.lex_state = 407, .external_lex_state = 2}, + [63] = {.lex_state = 407, .external_lex_state = 2}, + [64] = {.lex_state = 407, .external_lex_state = 2}, + [65] = {.lex_state = 407, .external_lex_state = 2}, + [66] = {.lex_state = 407, .external_lex_state = 2}, + [67] = {.lex_state = 407, .external_lex_state = 2}, + [68] = {.lex_state = 407, .external_lex_state = 2}, + [69] = {.lex_state = 407, .external_lex_state = 2}, + [70] = {.lex_state = 407, .external_lex_state = 2}, + [71] = {.lex_state = 407, .external_lex_state = 2}, + [72] = {.lex_state = 407, .external_lex_state = 2}, + [73] = {.lex_state = 407, .external_lex_state = 2}, + [74] = {.lex_state = 407, .external_lex_state = 2}, + [75] = {.lex_state = 407, .external_lex_state = 2}, + [76] = {.lex_state = 407, .external_lex_state = 2}, + [77] = {.lex_state = 407, .external_lex_state = 2}, + [78] = {.lex_state = 407, .external_lex_state = 2}, + [79] = {.lex_state = 407, .external_lex_state = 2}, + [80] = {.lex_state = 407, .external_lex_state = 2}, + [81] = {.lex_state = 407, .external_lex_state = 2}, + [82] = {.lex_state = 407, .external_lex_state = 2}, + [83] = {.lex_state = 407, .external_lex_state = 2}, + [84] = {.lex_state = 407, .external_lex_state = 2}, + [85] = {.lex_state = 407, .external_lex_state = 2}, + [86] = {.lex_state = 407, .external_lex_state = 2}, + [87] = {.lex_state = 407, .external_lex_state = 2}, + [88] = {.lex_state = 407, .external_lex_state = 2}, + [89] = {.lex_state = 407, .external_lex_state = 2}, + [90] = {.lex_state = 407, .external_lex_state = 2}, + [91] = {.lex_state = 407, .external_lex_state = 2}, + [92] = {.lex_state = 407, .external_lex_state = 2}, + [93] = {.lex_state = 407, .external_lex_state = 2}, + [94] = {.lex_state = 407, .external_lex_state = 2}, + [95] = {.lex_state = 407, .external_lex_state = 2}, + [96] = {.lex_state = 407, .external_lex_state = 2}, + [97] = {.lex_state = 407, .external_lex_state = 2}, + [98] = {.lex_state = 407, .external_lex_state = 2}, + [99] = {.lex_state = 407, .external_lex_state = 2}, + [100] = {.lex_state = 407, .external_lex_state = 2}, + [101] = {.lex_state = 407, .external_lex_state = 2}, + [102] = {.lex_state = 407, .external_lex_state = 2}, + [103] = {.lex_state = 407, .external_lex_state = 2}, + [104] = {.lex_state = 407, .external_lex_state = 2}, + [105] = {.lex_state = 407, .external_lex_state = 2}, + [106] = {.lex_state = 407, .external_lex_state = 2}, + [107] = {.lex_state = 407, .external_lex_state = 2}, + [108] = {.lex_state = 407, .external_lex_state = 2}, + [109] = {.lex_state = 407, .external_lex_state = 2}, + [110] = {.lex_state = 407, .external_lex_state = 2}, + [111] = {.lex_state = 407, .external_lex_state = 2}, + [112] = {.lex_state = 407, .external_lex_state = 2}, + [113] = {.lex_state = 407, .external_lex_state = 2}, + [114] = {.lex_state = 407, .external_lex_state = 2}, + [115] = {.lex_state = 407, .external_lex_state = 2}, + [116] = {.lex_state = 407, .external_lex_state = 2}, + [117] = {.lex_state = 407, .external_lex_state = 2}, + [118] = {.lex_state = 407, .external_lex_state = 2}, + [119] = {.lex_state = 407, .external_lex_state = 2}, + [120] = {.lex_state = 407, .external_lex_state = 2}, + [121] = {.lex_state = 407, .external_lex_state = 2}, + [122] = {.lex_state = 407, .external_lex_state = 2}, + [123] = {.lex_state = 35, .external_lex_state = 2}, [124] = {.lex_state = 35, .external_lex_state = 2}, [125] = {.lex_state = 35, .external_lex_state = 2}, [126] = {.lex_state = 35, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 4}, - [128] = {.lex_state = 6, .external_lex_state = 4}, + [128] = {.lex_state = 35, .external_lex_state = 2}, [129] = {.lex_state = 35, .external_lex_state = 2}, [130] = {.lex_state = 35, .external_lex_state = 2}, - [131] = {.lex_state = 35, .external_lex_state = 2}, + [131] = {.lex_state = 6, .external_lex_state = 4}, [132] = {.lex_state = 35, .external_lex_state = 2}, [133] = {.lex_state = 35, .external_lex_state = 2}, [134] = {.lex_state = 35, .external_lex_state = 2}, - [135] = {.lex_state = 35, .external_lex_state = 2}, + [135] = {.lex_state = 6, .external_lex_state = 4}, [136] = {.lex_state = 6, .external_lex_state = 3}, [137] = {.lex_state = 6, .external_lex_state = 3}, [138] = {.lex_state = 6, .external_lex_state = 3}, @@ -22280,64 +22281,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 6, .external_lex_state = 3}, [145] = {.lex_state = 6, .external_lex_state = 3}, [146] = {.lex_state = 6, .external_lex_state = 3}, - [147] = {.lex_state = 35, .external_lex_state = 2}, - [148] = {.lex_state = 35, .external_lex_state = 2}, - [149] = {.lex_state = 6, .external_lex_state = 3}, + [147] = {.lex_state = 6, .external_lex_state = 3}, + [148] = {.lex_state = 6, .external_lex_state = 3}, + [149] = {.lex_state = 35, .external_lex_state = 2}, [150] = {.lex_state = 35, .external_lex_state = 2}, [151] = {.lex_state = 6, .external_lex_state = 3}, [152] = {.lex_state = 6, .external_lex_state = 3}, - [153] = {.lex_state = 6, .external_lex_state = 3}, - [154] = {.lex_state = 35, .external_lex_state = 2}, - [155] = {.lex_state = 6, .external_lex_state = 3}, + [153] = {.lex_state = 35, .external_lex_state = 2}, + [154] = {.lex_state = 6, .external_lex_state = 4}, + [155] = {.lex_state = 6, .external_lex_state = 4}, [156] = {.lex_state = 6, .external_lex_state = 4}, - [157] = {.lex_state = 10, .external_lex_state = 4}, - [158] = {.lex_state = 35, .external_lex_state = 2}, + [157] = {.lex_state = 35, .external_lex_state = 2}, + [158] = {.lex_state = 10, .external_lex_state = 4}, [159] = {.lex_state = 6, .external_lex_state = 4}, [160] = {.lex_state = 10, .external_lex_state = 4}, [161] = {.lex_state = 6, .external_lex_state = 4}, - [162] = {.lex_state = 6, .external_lex_state = 4}, - [163] = {.lex_state = 6, .external_lex_state = 4}, - [164] = {.lex_state = 6, .external_lex_state = 4}, - [165] = {.lex_state = 35, .external_lex_state = 2}, - [166] = {.lex_state = 35, .external_lex_state = 2}, - [167] = {.lex_state = 10, .external_lex_state = 4}, - [168] = {.lex_state = 6, .external_lex_state = 4}, - [169] = {.lex_state = 6, .external_lex_state = 4}, - [170] = {.lex_state = 35, .external_lex_state = 2}, + [162] = {.lex_state = 35, .external_lex_state = 2}, + [163] = {.lex_state = 35, .external_lex_state = 2}, + [164] = {.lex_state = 6, .external_lex_state = 3}, + [165] = {.lex_state = 6, .external_lex_state = 4}, + [166] = {.lex_state = 10, .external_lex_state = 4}, + [167] = {.lex_state = 6, .external_lex_state = 4}, + [168] = {.lex_state = 35, .external_lex_state = 2}, + [169] = {.lex_state = 35, .external_lex_state = 2}, + [170] = {.lex_state = 6, .external_lex_state = 4}, [171] = {.lex_state = 10, .external_lex_state = 4}, [172] = {.lex_state = 6, .external_lex_state = 3}, [173] = {.lex_state = 6, .external_lex_state = 3}, [174] = {.lex_state = 6, .external_lex_state = 3}, - [175] = {.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}, - [178] = {.lex_state = 11, .external_lex_state = 3}, - [179] = {.lex_state = 6, .external_lex_state = 3}, + [177] = {.lex_state = 11, .external_lex_state = 3}, + [178] = {.lex_state = 6, .external_lex_state = 3}, + [179] = {.lex_state = 11, .external_lex_state = 3}, [180] = {.lex_state = 6, .external_lex_state = 3}, - [181] = {.lex_state = 6, .external_lex_state = 4}, + [181] = {.lex_state = 6, .external_lex_state = 3}, [182] = {.lex_state = 11, .external_lex_state = 3}, - [183] = {.lex_state = 6, .external_lex_state = 3}, - [184] = {.lex_state = 11, .external_lex_state = 3}, + [183] = {.lex_state = 6, .external_lex_state = 4}, + [184] = {.lex_state = 6, .external_lex_state = 4}, [185] = {.lex_state = 6, .external_lex_state = 3}, [186] = {.lex_state = 6, .external_lex_state = 3}, [187] = {.lex_state = 6, .external_lex_state = 4}, [188] = {.lex_state = 10, .external_lex_state = 3}, - [189] = {.lex_state = 6, .external_lex_state = 3}, - [190] = {.lex_state = 10, .external_lex_state = 3}, + [189] = {.lex_state = 10, .external_lex_state = 3}, + [190] = {.lex_state = 6, .external_lex_state = 3}, [191] = {.lex_state = 6, .external_lex_state = 3}, [192] = {.lex_state = 10, .external_lex_state = 3}, - [193] = {.lex_state = 6, .external_lex_state = 3}, - [194] = {.lex_state = 10, .external_lex_state = 3}, + [193] = {.lex_state = 10, .external_lex_state = 3}, + [194] = {.lex_state = 6, .external_lex_state = 3}, [195] = {.lex_state = 6, .external_lex_state = 3}, [196] = {.lex_state = 6, .external_lex_state = 3}, [197] = {.lex_state = 6, .external_lex_state = 3}, - [198] = {.lex_state = 35, .external_lex_state = 2}, + [198] = {.lex_state = 6, .external_lex_state = 3}, [199] = {.lex_state = 6, .external_lex_state = 3}, [200] = {.lex_state = 6, .external_lex_state = 3}, [201] = {.lex_state = 6, .external_lex_state = 3}, [202] = {.lex_state = 6, .external_lex_state = 3}, [203] = {.lex_state = 6, .external_lex_state = 3}, - [204] = {.lex_state = 6, .external_lex_state = 3}, + [204] = {.lex_state = 35, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 3}, [206] = {.lex_state = 6, .external_lex_state = 3}, [207] = {.lex_state = 6, .external_lex_state = 3}, @@ -22356,11 +22357,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 12, .external_lex_state = 3}, [221] = {.lex_state = 12, .external_lex_state = 4}, [222] = {.lex_state = 13, .external_lex_state = 4}, - [223] = {.lex_state = 16, .external_lex_state = 3}, - [224] = {.lex_state = 12, .external_lex_state = 3}, - [225] = {.lex_state = 12, .external_lex_state = 4}, - [226] = {.lex_state = 13, .external_lex_state = 3}, - [227] = {.lex_state = 12, .external_lex_state = 3}, + [223] = {.lex_state = 12, .external_lex_state = 3}, + [224] = {.lex_state = 12, .external_lex_state = 4}, + [225] = {.lex_state = 16, .external_lex_state = 3}, + [226] = {.lex_state = 12, .external_lex_state = 3}, + [227] = {.lex_state = 13, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, [229] = {.lex_state = 47, .external_lex_state = 2}, [230] = {.lex_state = 47, .external_lex_state = 2}, @@ -22375,40 +22376,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 47, .external_lex_state = 2}, [240] = {.lex_state = 47, .external_lex_state = 2}, [241] = {.lex_state = 17, .external_lex_state = 3}, - [242] = {.lex_state = 17, .external_lex_state = 4}, - [243] = {.lex_state = 19, .external_lex_state = 4}, + [242] = {.lex_state = 19, .external_lex_state = 4}, + [243] = {.lex_state = 17, .external_lex_state = 4}, [244] = {.lex_state = 17, .external_lex_state = 3}, [245] = {.lex_state = 17, .external_lex_state = 3}, - [246] = {.lex_state = 17, .external_lex_state = 3}, + [246] = {.lex_state = 37, .external_lex_state = 2}, [247] = {.lex_state = 37, .external_lex_state = 2}, - [248] = {.lex_state = 17, .external_lex_state = 3}, - [249] = {.lex_state = 17, .external_lex_state = 3}, - [250] = {.lex_state = 37, .external_lex_state = 2}, - [251] = {.lex_state = 20, .external_lex_state = 3}, - [252] = {.lex_state = 17, .external_lex_state = 4}, + [248] = {.lex_state = 17, .external_lex_state = 4}, + [249] = {.lex_state = 20, .external_lex_state = 3}, + [250] = {.lex_state = 17, .external_lex_state = 3}, + [251] = {.lex_state = 17, .external_lex_state = 3}, + [252] = {.lex_state = 17, .external_lex_state = 3}, [253] = {.lex_state = 37, .external_lex_state = 2}, [254] = {.lex_state = 37, .external_lex_state = 2}, - [255] = {.lex_state = 19, .external_lex_state = 3}, + [255] = {.lex_state = 37, .external_lex_state = 2}, [256] = {.lex_state = 37, .external_lex_state = 2}, - [257] = {.lex_state = 37, .external_lex_state = 2}, + [257] = {.lex_state = 17, .external_lex_state = 3}, [258] = {.lex_state = 37, .external_lex_state = 2}, [259] = {.lex_state = 37, .external_lex_state = 2}, - [260] = {.lex_state = 17, .external_lex_state = 3}, + [260] = {.lex_state = 37, .external_lex_state = 2}, [261] = {.lex_state = 37, .external_lex_state = 2}, - [262] = {.lex_state = 37, .external_lex_state = 2}, - [263] = {.lex_state = 17, .external_lex_state = 3}, - [264] = {.lex_state = 37, .external_lex_state = 2}, - [265] = {.lex_state = 37, .external_lex_state = 2}, - [266] = {.lex_state = 36, .external_lex_state = 2}, + [262] = {.lex_state = 17, .external_lex_state = 3}, + [263] = {.lex_state = 37, .external_lex_state = 2}, + [264] = {.lex_state = 19, .external_lex_state = 3}, + [265] = {.lex_state = 17, .external_lex_state = 3}, + [266] = {.lex_state = 37, .external_lex_state = 2}, [267] = {.lex_state = 37, .external_lex_state = 2}, [268] = {.lex_state = 37, .external_lex_state = 2}, [269] = {.lex_state = 37, .external_lex_state = 2}, [270] = {.lex_state = 37, .external_lex_state = 2}, [271] = {.lex_state = 37, .external_lex_state = 2}, - [272] = {.lex_state = 37, .external_lex_state = 2}, + [272] = {.lex_state = 36, .external_lex_state = 2}, [273] = {.lex_state = 37, .external_lex_state = 2}, [274] = {.lex_state = 37, .external_lex_state = 2}, - [275] = {.lex_state = 17, .external_lex_state = 3}, + [275] = {.lex_state = 37, .external_lex_state = 2}, [276] = {.lex_state = 46, .external_lex_state = 2}, [277] = {.lex_state = 37, .external_lex_state = 2}, [278] = {.lex_state = 36, .external_lex_state = 5}, @@ -22428,174 +22429,174 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [292] = {.lex_state = 15, .external_lex_state = 4}, [293] = {.lex_state = 15, .external_lex_state = 4}, [294] = {.lex_state = 15, .external_lex_state = 4}, - [295] = {.lex_state = 37, .external_lex_state = 2}, + [295] = {.lex_state = 15, .external_lex_state = 4}, [296] = {.lex_state = 15, .external_lex_state = 4}, - [297] = {.lex_state = 405, .external_lex_state = 4}, - [298] = {.lex_state = 405, .external_lex_state = 4}, - [299] = {.lex_state = 405, .external_lex_state = 4}, - [300] = {.lex_state = 37, .external_lex_state = 2}, - [301] = {.lex_state = 36, .external_lex_state = 2}, - [302] = {.lex_state = 37, .external_lex_state = 2}, - [303] = {.lex_state = 15, .external_lex_state = 4}, - [304] = {.lex_state = 36, .external_lex_state = 2}, - [305] = {.lex_state = 15, .external_lex_state = 4}, - [306] = {.lex_state = 37, .external_lex_state = 2}, - [307] = {.lex_state = 14, .external_lex_state = 4}, - [308] = {.lex_state = 14, .external_lex_state = 4}, - [309] = {.lex_state = 14, .external_lex_state = 4}, - [310] = {.lex_state = 15, .external_lex_state = 4}, - [311] = {.lex_state = 15, .external_lex_state = 4}, + [297] = {.lex_state = 15, .external_lex_state = 4}, + [298] = {.lex_state = 15, .external_lex_state = 4}, + [299] = {.lex_state = 15, .external_lex_state = 4}, + [300] = {.lex_state = 15, .external_lex_state = 4}, + [301] = {.lex_state = 404, .external_lex_state = 4}, + [302] = {.lex_state = 36, .external_lex_state = 2}, + [303] = {.lex_state = 36, .external_lex_state = 2}, + [304] = {.lex_state = 15, .external_lex_state = 4}, + [305] = {.lex_state = 37, .external_lex_state = 2}, + [306] = {.lex_state = 15, .external_lex_state = 4}, + [307] = {.lex_state = 36, .external_lex_state = 2}, + [308] = {.lex_state = 404, .external_lex_state = 4}, + [309] = {.lex_state = 404, .external_lex_state = 4}, + [310] = {.lex_state = 36, .external_lex_state = 2}, + [311] = {.lex_state = 404, .external_lex_state = 4}, [312] = {.lex_state = 15, .external_lex_state = 4}, - [313] = {.lex_state = 36, .external_lex_state = 2}, + [313] = {.lex_state = 37, .external_lex_state = 2}, [314] = {.lex_state = 15, .external_lex_state = 4}, [315] = {.lex_state = 15, .external_lex_state = 4}, - [316] = {.lex_state = 37, .external_lex_state = 2}, + [316] = {.lex_state = 36, .external_lex_state = 2}, [317] = {.lex_state = 37, .external_lex_state = 2}, - [318] = {.lex_state = 36, .external_lex_state = 2}, - [319] = {.lex_state = 15, .external_lex_state = 4}, + [318] = {.lex_state = 15, .external_lex_state = 4}, + [319] = {.lex_state = 36, .external_lex_state = 2}, [320] = {.lex_state = 15, .external_lex_state = 4}, [321] = {.lex_state = 15, .external_lex_state = 4}, - [322] = {.lex_state = 14, .external_lex_state = 4}, - [323] = {.lex_state = 37, .external_lex_state = 2}, - [324] = {.lex_state = 15, .external_lex_state = 4}, - [325] = {.lex_state = 37, .external_lex_state = 2}, - [326] = {.lex_state = 36, .external_lex_state = 2}, + [322] = {.lex_state = 15, .external_lex_state = 4}, + [323] = {.lex_state = 14, .external_lex_state = 4}, + [324] = {.lex_state = 14, .external_lex_state = 4}, + [325] = {.lex_state = 15, .external_lex_state = 4}, + [326] = {.lex_state = 15, .external_lex_state = 4}, [327] = {.lex_state = 15, .external_lex_state = 4}, - [328] = {.lex_state = 15, .external_lex_state = 4}, - [329] = {.lex_state = 15, .external_lex_state = 4}, - [330] = {.lex_state = 15, .external_lex_state = 4}, + [328] = {.lex_state = 37, .external_lex_state = 2}, + [329] = {.lex_state = 36, .external_lex_state = 2}, + [330] = {.lex_state = 37, .external_lex_state = 2}, [331] = {.lex_state = 15, .external_lex_state = 4}, - [332] = {.lex_state = 15, .external_lex_state = 4}, + [332] = {.lex_state = 37, .external_lex_state = 2}, [333] = {.lex_state = 15, .external_lex_state = 4}, - [334] = {.lex_state = 36, .external_lex_state = 2}, - [335] = {.lex_state = 15, .external_lex_state = 4}, - [336] = {.lex_state = 36, .external_lex_state = 2}, + [334] = {.lex_state = 15, .external_lex_state = 4}, + [335] = {.lex_state = 37, .external_lex_state = 2}, + [336] = {.lex_state = 15, .external_lex_state = 4}, [337] = {.lex_state = 15, .external_lex_state = 4}, [338] = {.lex_state = 15, .external_lex_state = 4}, - [339] = {.lex_state = 15, .external_lex_state = 4}, - [340] = {.lex_state = 15, .external_lex_state = 4}, + [339] = {.lex_state = 37, .external_lex_state = 2}, + [340] = {.lex_state = 14, .external_lex_state = 4}, [341] = {.lex_state = 37, .external_lex_state = 2}, - [342] = {.lex_state = 15, .external_lex_state = 4}, - [343] = {.lex_state = 405, .external_lex_state = 4}, + [342] = {.lex_state = 14, .external_lex_state = 4}, + [343] = {.lex_state = 15, .external_lex_state = 4}, [344] = {.lex_state = 14, .external_lex_state = 4}, [345] = {.lex_state = 37, .external_lex_state = 2}, [346] = {.lex_state = 14, .external_lex_state = 4}, - [347] = {.lex_state = 14, .external_lex_state = 4}, + [347] = {.lex_state = 37, .external_lex_state = 2}, [348] = {.lex_state = 14, .external_lex_state = 4}, [349] = {.lex_state = 37, .external_lex_state = 2}, - [350] = {.lex_state = 14, .external_lex_state = 4}, - [351] = {.lex_state = 405, .external_lex_state = 4}, - [352] = {.lex_state = 405, .external_lex_state = 4}, + [350] = {.lex_state = 404, .external_lex_state = 4}, + [351] = {.lex_state = 404, .external_lex_state = 4}, + [352] = {.lex_state = 404, .external_lex_state = 4}, [353] = {.lex_state = 14, .external_lex_state = 4}, - [354] = {.lex_state = 14, .external_lex_state = 4}, - [355] = {.lex_state = 37, .external_lex_state = 2}, + [354] = {.lex_state = 37, .external_lex_state = 2}, + [355] = {.lex_state = 404, .external_lex_state = 4}, [356] = {.lex_state = 14, .external_lex_state = 4}, - [357] = {.lex_state = 405, .external_lex_state = 4}, - [358] = {.lex_state = 405, .external_lex_state = 4}, + [357] = {.lex_state = 14, .external_lex_state = 4}, + [358] = {.lex_state = 404, .external_lex_state = 4}, [359] = {.lex_state = 37, .external_lex_state = 2}, - [360] = {.lex_state = 405, .external_lex_state = 4}, - [361] = {.lex_state = 14, .external_lex_state = 4}, - [362] = {.lex_state = 405, .external_lex_state = 4}, - [363] = {.lex_state = 14, .external_lex_state = 4}, - [364] = {.lex_state = 405, .external_lex_state = 4}, - [365] = {.lex_state = 37, .external_lex_state = 2}, - [366] = {.lex_state = 14, .external_lex_state = 4}, - [367] = {.lex_state = 37, .external_lex_state = 2}, - [368] = {.lex_state = 14, .external_lex_state = 4}, - [369] = {.lex_state = 37, .external_lex_state = 2}, - [370] = {.lex_state = 37, .external_lex_state = 2}, - [371] = {.lex_state = 404, .external_lex_state = 4}, - [372] = {.lex_state = 404, .external_lex_state = 4}, + [360] = {.lex_state = 403, .external_lex_state = 4}, + [361] = {.lex_state = 403, .external_lex_state = 4}, + [362] = {.lex_state = 37, .external_lex_state = 2}, + [363] = {.lex_state = 404, .external_lex_state = 4}, + [364] = {.lex_state = 404, .external_lex_state = 4}, + [365] = {.lex_state = 404, .external_lex_state = 4}, + [366] = {.lex_state = 403, .external_lex_state = 4}, + [367] = {.lex_state = 404, .external_lex_state = 4}, + [368] = {.lex_state = 37, .external_lex_state = 2}, + [369] = {.lex_state = 404, .external_lex_state = 4}, + [370] = {.lex_state = 403, .external_lex_state = 4}, + [371] = {.lex_state = 14, .external_lex_state = 4}, + [372] = {.lex_state = 14, .external_lex_state = 4}, [373] = {.lex_state = 404, .external_lex_state = 4}, - [374] = {.lex_state = 405, .external_lex_state = 4}, - [375] = {.lex_state = 14, .external_lex_state = 4}, - [376] = {.lex_state = 405, .external_lex_state = 4}, + [374] = {.lex_state = 37, .external_lex_state = 2}, + [375] = {.lex_state = 37, .external_lex_state = 2}, + [376] = {.lex_state = 404, .external_lex_state = 4}, [377] = {.lex_state = 37, .external_lex_state = 2}, - [378] = {.lex_state = 404, .external_lex_state = 4}, + [378] = {.lex_state = 37, .external_lex_state = 2}, [379] = {.lex_state = 37, .external_lex_state = 2}, - [380] = {.lex_state = 37, .external_lex_state = 2}, - [381] = {.lex_state = 405, .external_lex_state = 4}, - [382] = {.lex_state = 405, .external_lex_state = 4}, - [383] = {.lex_state = 405, .external_lex_state = 4}, - [384] = {.lex_state = 405, .external_lex_state = 4}, - [385] = {.lex_state = 405, .external_lex_state = 4}, + [380] = {.lex_state = 404, .external_lex_state = 4}, + [381] = {.lex_state = 14, .external_lex_state = 4}, + [382] = {.lex_state = 37, .external_lex_state = 2}, + [383] = {.lex_state = 14, .external_lex_state = 4}, + [384] = {.lex_state = 404, .external_lex_state = 4}, + [385] = {.lex_state = 14, .external_lex_state = 4}, [386] = {.lex_state = 14, .external_lex_state = 4}, - [387] = {.lex_state = 14, .external_lex_state = 4}, - [388] = {.lex_state = 37, .external_lex_state = 2}, + [387] = {.lex_state = 404, .external_lex_state = 4}, + [388] = {.lex_state = 404, .external_lex_state = 4}, [389] = {.lex_state = 14, .external_lex_state = 4}, - [390] = {.lex_state = 37, .external_lex_state = 2}, - [391] = {.lex_state = 14, .external_lex_state = 4}, - [392] = {.lex_state = 37, .external_lex_state = 2}, - [393] = {.lex_state = 405, .external_lex_state = 4}, - [394] = {.lex_state = 14, .external_lex_state = 4}, + [390] = {.lex_state = 14, .external_lex_state = 4}, + [391] = {.lex_state = 37, .external_lex_state = 2}, + [392] = {.lex_state = 404, .external_lex_state = 4}, + [393] = {.lex_state = 37, .external_lex_state = 2}, + [394] = {.lex_state = 404, .external_lex_state = 4}, [395] = {.lex_state = 14, .external_lex_state = 4}, - [396] = {.lex_state = 37, .external_lex_state = 2}, - [397] = {.lex_state = 405, .external_lex_state = 4}, - [398] = {.lex_state = 14, .external_lex_state = 4}, - [399] = {.lex_state = 37, .external_lex_state = 2}, - [400] = {.lex_state = 37, .external_lex_state = 2}, - [401] = {.lex_state = 405, .external_lex_state = 4}, - [402] = {.lex_state = 37, .external_lex_state = 2}, + [396] = {.lex_state = 404, .external_lex_state = 4}, + [397] = {.lex_state = 14, .external_lex_state = 4}, + [398] = {.lex_state = 37, .external_lex_state = 2}, + [399] = {.lex_state = 14, .external_lex_state = 4}, + [400] = {.lex_state = 14, .external_lex_state = 4}, + [401] = {.lex_state = 14, .external_lex_state = 4}, + [402] = {.lex_state = 14, .external_lex_state = 4}, [403] = {.lex_state = 37, .external_lex_state = 2}, - [404] = {.lex_state = 37, .external_lex_state = 2}, - [405] = {.lex_state = 405, .external_lex_state = 4}, - [406] = {.lex_state = 405, .external_lex_state = 4}, + [404] = {.lex_state = 14, .external_lex_state = 4}, + [405] = {.lex_state = 404, .external_lex_state = 4}, + [406] = {.lex_state = 404, .external_lex_state = 4}, [407] = {.lex_state = 37, .external_lex_state = 2}, - [408] = {.lex_state = 14, .external_lex_state = 4}, - [409] = {.lex_state = 405, .external_lex_state = 4}, - [410] = {.lex_state = 405, .external_lex_state = 4}, - [411] = {.lex_state = 37, .external_lex_state = 2}, - [412] = {.lex_state = 405, .external_lex_state = 4}, - [413] = {.lex_state = 14, .external_lex_state = 4}, - [414] = {.lex_state = 37, .external_lex_state = 2}, - [415] = {.lex_state = 405, .external_lex_state = 4}, - [416] = {.lex_state = 405, .external_lex_state = 4}, + [408] = {.lex_state = 37, .external_lex_state = 2}, + [409] = {.lex_state = 404, .external_lex_state = 4}, + [410] = {.lex_state = 404, .external_lex_state = 4}, + [411] = {.lex_state = 14, .external_lex_state = 4}, + [412] = {.lex_state = 14, .external_lex_state = 4}, + [413] = {.lex_state = 37, .external_lex_state = 2}, + [414] = {.lex_state = 404, .external_lex_state = 4}, + [415] = {.lex_state = 37, .external_lex_state = 2}, + [416] = {.lex_state = 404, .external_lex_state = 4}, [417] = {.lex_state = 14, .external_lex_state = 4}, [418] = {.lex_state = 37, .external_lex_state = 2}, - [419] = {.lex_state = 405, .external_lex_state = 4}, - [420] = {.lex_state = 14, .external_lex_state = 4}, - [421] = {.lex_state = 37, .external_lex_state = 2}, - [422] = {.lex_state = 14, .external_lex_state = 4}, - [423] = {.lex_state = 37, .external_lex_state = 5}, - [424] = {.lex_state = 404, .external_lex_state = 4}, - [425] = {.lex_state = 404, .external_lex_state = 4}, - [426] = {.lex_state = 6, .external_lex_state = 3}, - [427] = {.lex_state = 6, .external_lex_state = 3}, - [428] = {.lex_state = 404, .external_lex_state = 4}, - [429] = {.lex_state = 404, .external_lex_state = 4}, - [430] = {.lex_state = 404, .external_lex_state = 4}, - [431] = {.lex_state = 404, .external_lex_state = 4}, - [432] = {.lex_state = 37, .external_lex_state = 5}, - [433] = {.lex_state = 37, .external_lex_state = 2}, - [434] = {.lex_state = 404, .external_lex_state = 4}, - [435] = {.lex_state = 404, .external_lex_state = 4}, - [436] = {.lex_state = 37, .external_lex_state = 2}, - [437] = {.lex_state = 404, .external_lex_state = 4}, - [438] = {.lex_state = 404, .external_lex_state = 4}, - [439] = {.lex_state = 404, .external_lex_state = 4}, - [440] = {.lex_state = 404, .external_lex_state = 4}, - [441] = {.lex_state = 404, .external_lex_state = 4}, - [442] = {.lex_state = 404, .external_lex_state = 4}, - [443] = {.lex_state = 6, .external_lex_state = 3}, - [444] = {.lex_state = 404, .external_lex_state = 4}, - [445] = {.lex_state = 37, .external_lex_state = 5}, - [446] = {.lex_state = 6, .external_lex_state = 3}, - [447] = {.lex_state = 37, .external_lex_state = 5}, - [448] = {.lex_state = 404, .external_lex_state = 4}, - [449] = {.lex_state = 404, .external_lex_state = 4}, - [450] = {.lex_state = 404, .external_lex_state = 4}, - [451] = {.lex_state = 404, .external_lex_state = 4}, - [452] = {.lex_state = 404, .external_lex_state = 4}, - [453] = {.lex_state = 404, .external_lex_state = 4}, - [454] = {.lex_state = 404, .external_lex_state = 4}, - [455] = {.lex_state = 37, .external_lex_state = 2}, - [456] = {.lex_state = 404, .external_lex_state = 4}, - [457] = {.lex_state = 37, .external_lex_state = 2}, - [458] = {.lex_state = 404, .external_lex_state = 4}, + [419] = {.lex_state = 37, .external_lex_state = 2}, + [420] = {.lex_state = 37, .external_lex_state = 2}, + [421] = {.lex_state = 14, .external_lex_state = 4}, + [422] = {.lex_state = 37, .external_lex_state = 2}, + [423] = {.lex_state = 403, .external_lex_state = 4}, + [424] = {.lex_state = 403, .external_lex_state = 4}, + [425] = {.lex_state = 6, .external_lex_state = 3}, + [426] = {.lex_state = 403, .external_lex_state = 4}, + [427] = {.lex_state = 403, .external_lex_state = 4}, + [428] = {.lex_state = 37, .external_lex_state = 2}, + [429] = {.lex_state = 37, .external_lex_state = 2}, + [430] = {.lex_state = 6, .external_lex_state = 3}, + [431] = {.lex_state = 37, .external_lex_state = 5}, + [432] = {.lex_state = 403, .external_lex_state = 4}, + [433] = {.lex_state = 37, .external_lex_state = 5}, + [434] = {.lex_state = 403, .external_lex_state = 4}, + [435] = {.lex_state = 403, .external_lex_state = 4}, + [436] = {.lex_state = 403, .external_lex_state = 4}, + [437] = {.lex_state = 403, .external_lex_state = 4}, + [438] = {.lex_state = 6, .external_lex_state = 3}, + [439] = {.lex_state = 6, .external_lex_state = 3}, + [440] = {.lex_state = 403, .external_lex_state = 4}, + [441] = {.lex_state = 403, .external_lex_state = 4}, + [442] = {.lex_state = 37, .external_lex_state = 2}, + [443] = {.lex_state = 403, .external_lex_state = 4}, + [444] = {.lex_state = 403, .external_lex_state = 4}, + [445] = {.lex_state = 403, .external_lex_state = 4}, + [446] = {.lex_state = 37, .external_lex_state = 5}, + [447] = {.lex_state = 403, .external_lex_state = 4}, + [448] = {.lex_state = 37, .external_lex_state = 2}, + [449] = {.lex_state = 403, .external_lex_state = 4}, + [450] = {.lex_state = 403, .external_lex_state = 4}, + [451] = {.lex_state = 37, .external_lex_state = 5}, + [452] = {.lex_state = 403, .external_lex_state = 4}, + [453] = {.lex_state = 403, .external_lex_state = 4}, + [454] = {.lex_state = 403, .external_lex_state = 4}, + [455] = {.lex_state = 403, .external_lex_state = 4}, + [456] = {.lex_state = 403, .external_lex_state = 4}, + [457] = {.lex_state = 403, .external_lex_state = 4}, + [458] = {.lex_state = 403, .external_lex_state = 4}, [459] = {.lex_state = 37, .external_lex_state = 5}, - [460] = {.lex_state = 404, .external_lex_state = 4}, - [461] = {.lex_state = 46, .external_lex_state = 2}, - [462] = {.lex_state = 37, .external_lex_state = 2}, + [460] = {.lex_state = 403, .external_lex_state = 4}, + [461] = {.lex_state = 37, .external_lex_state = 2}, + [462] = {.lex_state = 46, .external_lex_state = 2}, [463] = {.lex_state = 37, .external_lex_state = 2}, [464] = {.lex_state = 37, .external_lex_state = 2}, [465] = {.lex_state = 37, .external_lex_state = 2}, @@ -22940,20 +22941,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [804] = {.lex_state = 37, .external_lex_state = 2}, [805] = {.lex_state = 37, .external_lex_state = 2}, [806] = {.lex_state = 37, .external_lex_state = 2}, - [807] = {.lex_state = 406, .external_lex_state = 4}, - [808] = {.lex_state = 406, .external_lex_state = 4}, - [809] = {.lex_state = 406, .external_lex_state = 4}, + [807] = {.lex_state = 405, .external_lex_state = 4}, + [808] = {.lex_state = 405, .external_lex_state = 4}, + [809] = {.lex_state = 405, .external_lex_state = 4}, [810] = {.lex_state = 8, .external_lex_state = 4}, [811] = {.lex_state = 8, .external_lex_state = 4}, [812] = {.lex_state = 8, .external_lex_state = 4}, - [813] = {.lex_state = 406, .external_lex_state = 4}, - [814] = {.lex_state = 406, .external_lex_state = 4}, - [815] = {.lex_state = 406, .external_lex_state = 4}, - [816] = {.lex_state = 406, .external_lex_state = 4}, - [817] = {.lex_state = 406, .external_lex_state = 4}, - [818] = {.lex_state = 406, .external_lex_state = 4}, - [819] = {.lex_state = 406, .external_lex_state = 4}, - [820] = {.lex_state = 406, .external_lex_state = 4}, + [813] = {.lex_state = 405, .external_lex_state = 4}, + [814] = {.lex_state = 405, .external_lex_state = 4}, + [815] = {.lex_state = 405, .external_lex_state = 4}, + [816] = {.lex_state = 405, .external_lex_state = 4}, + [817] = {.lex_state = 405, .external_lex_state = 4}, + [818] = {.lex_state = 405, .external_lex_state = 4}, + [819] = {.lex_state = 405, .external_lex_state = 4}, + [820] = {.lex_state = 405, .external_lex_state = 4}, [821] = {.lex_state = 9, .external_lex_state = 4}, [822] = {.lex_state = 9, .external_lex_state = 4}, [823] = {.lex_state = 9, .external_lex_state = 4}, @@ -22963,780 +22964,780 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [827] = {.lex_state = 9, .external_lex_state = 4}, [828] = {.lex_state = 9, .external_lex_state = 4}, [829] = {.lex_state = 9, .external_lex_state = 4}, - [830] = {.lex_state = 406, .external_lex_state = 4}, - [831] = {.lex_state = 406, .external_lex_state = 4}, - [832] = {.lex_state = 406, .external_lex_state = 4}, - [833] = {.lex_state = 406, .external_lex_state = 4}, - [834] = {.lex_state = 406, .external_lex_state = 4}, - [835] = {.lex_state = 9, .external_lex_state = 4}, - [836] = {.lex_state = 9, .external_lex_state = 4}, - [837] = {.lex_state = 406, .external_lex_state = 4}, - [838] = {.lex_state = 406, .external_lex_state = 4}, - [839] = {.lex_state = 406, .external_lex_state = 4}, + [830] = {.lex_state = 405, .external_lex_state = 4}, + [831] = {.lex_state = 405, .external_lex_state = 4}, + [832] = {.lex_state = 405, .external_lex_state = 4}, + [833] = {.lex_state = 405, .external_lex_state = 4}, + [834] = {.lex_state = 405, .external_lex_state = 4}, + [835] = {.lex_state = 405, .external_lex_state = 4}, + [836] = {.lex_state = 405, .external_lex_state = 4}, + [837] = {.lex_state = 9, .external_lex_state = 4}, + [838] = {.lex_state = 405, .external_lex_state = 4}, + [839] = {.lex_state = 9, .external_lex_state = 4}, [840] = {.lex_state = 9, .external_lex_state = 4}, - [841] = {.lex_state = 406, .external_lex_state = 4}, - [842] = {.lex_state = 406, .external_lex_state = 4}, - [843] = {.lex_state = 9, .external_lex_state = 4}, - [844] = {.lex_state = 9, .external_lex_state = 4}, + [841] = {.lex_state = 9, .external_lex_state = 4}, + [842] = {.lex_state = 405, .external_lex_state = 4}, + [843] = {.lex_state = 405, .external_lex_state = 4}, + [844] = {.lex_state = 405, .external_lex_state = 4}, [845] = {.lex_state = 9, .external_lex_state = 4}, - [846] = {.lex_state = 406, .external_lex_state = 4}, + [846] = {.lex_state = 9, .external_lex_state = 4}, [847] = {.lex_state = 23, .external_lex_state = 3}, [848] = {.lex_state = 23, .external_lex_state = 3}, [849] = {.lex_state = 23, .external_lex_state = 3}, [850] = {.lex_state = 23, .external_lex_state = 3}, [851] = {.lex_state = 23, .external_lex_state = 3}, - [852] = {.lex_state = 23, .external_lex_state = 4}, + [852] = {.lex_state = 25, .external_lex_state = 4}, [853] = {.lex_state = 23, .external_lex_state = 4}, - [854] = {.lex_state = 25, .external_lex_state = 4}, - [855] = {.lex_state = 25, .external_lex_state = 4}, - [856] = {.lex_state = 23, .external_lex_state = 4}, - [857] = {.lex_state = 23, .external_lex_state = 4}, + [854] = {.lex_state = 23, .external_lex_state = 4}, + [855] = {.lex_state = 23, .external_lex_state = 4}, + [856] = {.lex_state = 25, .external_lex_state = 4}, + [857] = {.lex_state = 25, .external_lex_state = 4}, [858] = {.lex_state = 23, .external_lex_state = 4}, [859] = {.lex_state = 23, .external_lex_state = 3}, [860] = {.lex_state = 23, .external_lex_state = 4}, - [861] = {.lex_state = 25, .external_lex_state = 4}, + [861] = {.lex_state = 23, .external_lex_state = 4}, [862] = {.lex_state = 23, .external_lex_state = 4}, - [863] = {.lex_state = 26, .external_lex_state = 3}, - [864] = {.lex_state = 23, .external_lex_state = 3}, + [863] = {.lex_state = 23, .external_lex_state = 3}, + [864] = {.lex_state = 26, .external_lex_state = 3}, [865] = {.lex_state = 26, .external_lex_state = 3}, - [866] = {.lex_state = 23, .external_lex_state = 3}, - [867] = {.lex_state = 43, .external_lex_state = 2}, - [868] = {.lex_state = 23, .external_lex_state = 4}, - [869] = {.lex_state = 23, .external_lex_state = 4}, + [866] = {.lex_state = 23, .external_lex_state = 4}, + [867] = {.lex_state = 23, .external_lex_state = 4}, + [868] = {.lex_state = 23, .external_lex_state = 3}, + [869] = {.lex_state = 23, .external_lex_state = 3}, [870] = {.lex_state = 23, .external_lex_state = 4}, [871] = {.lex_state = 23, .external_lex_state = 4}, [872] = {.lex_state = 23, .external_lex_state = 3}, [873] = {.lex_state = 23, .external_lex_state = 4}, [874] = {.lex_state = 23, .external_lex_state = 4}, - [875] = {.lex_state = 23, .external_lex_state = 3}, - [876] = {.lex_state = 23, .external_lex_state = 4}, + [875] = {.lex_state = 23, .external_lex_state = 4}, + [876] = {.lex_state = 43, .external_lex_state = 2}, [877] = {.lex_state = 23, .external_lex_state = 3}, [878] = {.lex_state = 23, .external_lex_state = 3}, [879] = {.lex_state = 23, .external_lex_state = 4}, [880] = {.lex_state = 23, .external_lex_state = 3}, - [881] = {.lex_state = 42, .external_lex_state = 2}, + [881] = {.lex_state = 25, .external_lex_state = 3}, [882] = {.lex_state = 23, .external_lex_state = 3}, - [883] = {.lex_state = 413, .external_lex_state = 2}, - [884] = {.lex_state = 25, .external_lex_state = 3}, + [883] = {.lex_state = 43, .external_lex_state = 5}, + [884] = {.lex_state = 42, .external_lex_state = 2}, [885] = {.lex_state = 25, .external_lex_state = 3}, [886] = {.lex_state = 43, .external_lex_state = 5}, - [887] = {.lex_state = 43, .external_lex_state = 5}, - [888] = {.lex_state = 23, .external_lex_state = 3}, + [887] = {.lex_state = 23, .external_lex_state = 3}, + [888] = {.lex_state = 412, .external_lex_state = 2}, [889] = {.lex_state = 25, .external_lex_state = 3}, - [890] = {.lex_state = 23, .external_lex_state = 3}, - [891] = {.lex_state = 41, .external_lex_state = 2}, + [890] = {.lex_state = 41, .external_lex_state = 2}, + [891] = {.lex_state = 45, .external_lex_state = 2}, [892] = {.lex_state = 23, .external_lex_state = 3}, - [893] = {.lex_state = 42, .external_lex_state = 5}, - [894] = {.lex_state = 412, .external_lex_state = 2}, + [893] = {.lex_state = 411, .external_lex_state = 2}, + [894] = {.lex_state = 45, .external_lex_state = 5}, [895] = {.lex_state = 23, .external_lex_state = 3}, - [896] = {.lex_state = 45, .external_lex_state = 2}, - [897] = {.lex_state = 23, .external_lex_state = 3}, - [898] = {.lex_state = 23, .external_lex_state = 3}, + [896] = {.lex_state = 23, .external_lex_state = 3}, + [897] = {.lex_state = 412, .external_lex_state = 5}, + [898] = {.lex_state = 42, .external_lex_state = 5}, [899] = {.lex_state = 23, .external_lex_state = 3}, - [900] = {.lex_state = 23, .external_lex_state = 3}, - [901] = {.lex_state = 413, .external_lex_state = 5}, - [902] = {.lex_state = 413, .external_lex_state = 5}, - [903] = {.lex_state = 45, .external_lex_state = 5}, - [904] = {.lex_state = 43, .external_lex_state = 2}, - [905] = {.lex_state = 42, .external_lex_state = 5}, - [906] = {.lex_state = 43, .external_lex_state = 2}, - [907] = {.lex_state = 45, .external_lex_state = 5}, - [908] = {.lex_state = 23, .external_lex_state = 3}, - [909] = {.lex_state = 41, .external_lex_state = 2}, + [900] = {.lex_state = 42, .external_lex_state = 5}, + [901] = {.lex_state = 41, .external_lex_state = 2}, + [902] = {.lex_state = 23, .external_lex_state = 3}, + [903] = {.lex_state = 23, .external_lex_state = 3}, + [904] = {.lex_state = 45, .external_lex_state = 5}, + [905] = {.lex_state = 23, .external_lex_state = 3}, + [906] = {.lex_state = 412, .external_lex_state = 5}, + [907] = {.lex_state = 23, .external_lex_state = 3}, + [908] = {.lex_state = 43, .external_lex_state = 2}, + [909] = {.lex_state = 23, .external_lex_state = 3}, [910] = {.lex_state = 23, .external_lex_state = 3}, - [911] = {.lex_state = 23, .external_lex_state = 3}, - [912] = {.lex_state = 41, .external_lex_state = 2}, - [913] = {.lex_state = 41, .external_lex_state = 5}, - [914] = {.lex_state = 41, .external_lex_state = 5}, - [915] = {.lex_state = 44, .external_lex_state = 5}, + [911] = {.lex_state = 43, .external_lex_state = 2}, + [912] = {.lex_state = 41, .external_lex_state = 5}, + [913] = {.lex_state = 41, .external_lex_state = 2}, + [914] = {.lex_state = 410, .external_lex_state = 5}, + [915] = {.lex_state = 41, .external_lex_state = 5}, [916] = {.lex_state = 42, .external_lex_state = 2}, - [917] = {.lex_state = 41, .external_lex_state = 2}, - [918] = {.lex_state = 42, .external_lex_state = 2}, - [919] = {.lex_state = 41, .external_lex_state = 5}, - [920] = {.lex_state = 41, .external_lex_state = 5}, - [921] = {.lex_state = 41, .external_lex_state = 5}, - [922] = {.lex_state = 41, .external_lex_state = 5}, - [923] = {.lex_state = 412, .external_lex_state = 5}, - [924] = {.lex_state = 41, .external_lex_state = 5}, - [925] = {.lex_state = 44, .external_lex_state = 5}, + [917] = {.lex_state = 41, .external_lex_state = 5}, + [918] = {.lex_state = 41, .external_lex_state = 5}, + [919] = {.lex_state = 41, .external_lex_state = 2}, + [920] = {.lex_state = 42, .external_lex_state = 2}, + [921] = {.lex_state = 40, .external_lex_state = 2}, + [922] = {.lex_state = 40, .external_lex_state = 2}, + [923] = {.lex_state = 41, .external_lex_state = 5}, + [924] = {.lex_state = 44, .external_lex_state = 5}, + [925] = {.lex_state = 41, .external_lex_state = 5}, [926] = {.lex_state = 41, .external_lex_state = 5}, - [927] = {.lex_state = 412, .external_lex_state = 5}, - [928] = {.lex_state = 409, .external_lex_state = 2}, - [929] = {.lex_state = 45, .external_lex_state = 2}, - [930] = {.lex_state = 409, .external_lex_state = 2}, - [931] = {.lex_state = 41, .external_lex_state = 5}, + [927] = {.lex_state = 45, .external_lex_state = 2}, + [928] = {.lex_state = 408, .external_lex_state = 2}, + [929] = {.lex_state = 408, .external_lex_state = 2}, + [930] = {.lex_state = 411, .external_lex_state = 5}, + [931] = {.lex_state = 412, .external_lex_state = 2}, [932] = {.lex_state = 41, .external_lex_state = 5}, [933] = {.lex_state = 41, .external_lex_state = 5}, - [934] = {.lex_state = 44, .external_lex_state = 2}, - [935] = {.lex_state = 45, .external_lex_state = 2}, - [936] = {.lex_state = 413, .external_lex_state = 2}, + [934] = {.lex_state = 410, .external_lex_state = 5}, + [935] = {.lex_state = 41, .external_lex_state = 2}, + [936] = {.lex_state = 41, .external_lex_state = 5}, [937] = {.lex_state = 45, .external_lex_state = 2}, - [938] = {.lex_state = 45, .external_lex_state = 2}, + [938] = {.lex_state = 41, .external_lex_state = 2}, [939] = {.lex_state = 41, .external_lex_state = 5}, - [940] = {.lex_state = 45, .external_lex_state = 2}, + [940] = {.lex_state = 411, .external_lex_state = 5}, [941] = {.lex_state = 41, .external_lex_state = 5}, - [942] = {.lex_state = 41, .external_lex_state = 2}, + [942] = {.lex_state = 41, .external_lex_state = 5}, [943] = {.lex_state = 41, .external_lex_state = 5}, - [944] = {.lex_state = 411, .external_lex_state = 5}, - [945] = {.lex_state = 41, .external_lex_state = 5}, - [946] = {.lex_state = 41, .external_lex_state = 5}, - [947] = {.lex_state = 40, .external_lex_state = 2}, - [948] = {.lex_state = 40, .external_lex_state = 2}, + [944] = {.lex_state = 41, .external_lex_state = 5}, + [945] = {.lex_state = 45, .external_lex_state = 2}, + [946] = {.lex_state = 45, .external_lex_state = 2}, + [947] = {.lex_state = 41, .external_lex_state = 5}, + [948] = {.lex_state = 412, .external_lex_state = 2}, [949] = {.lex_state = 41, .external_lex_state = 5}, [950] = {.lex_state = 41, .external_lex_state = 5}, - [951] = {.lex_state = 41, .external_lex_state = 5}, - [952] = {.lex_state = 41, .external_lex_state = 5}, + [951] = {.lex_state = 410, .external_lex_state = 2}, + [952] = {.lex_state = 45, .external_lex_state = 2}, [953] = {.lex_state = 41, .external_lex_state = 5}, - [954] = {.lex_state = 411, .external_lex_state = 2}, + [954] = {.lex_state = 41, .external_lex_state = 2}, [955] = {.lex_state = 41, .external_lex_state = 5}, - [956] = {.lex_state = 41, .external_lex_state = 2}, - [957] = {.lex_state = 41, .external_lex_state = 2}, - [958] = {.lex_state = 411, .external_lex_state = 5}, - [959] = {.lex_state = 413, .external_lex_state = 2}, + [956] = {.lex_state = 41, .external_lex_state = 5}, + [957] = {.lex_state = 41, .external_lex_state = 5}, + [958] = {.lex_state = 44, .external_lex_state = 2}, + [959] = {.lex_state = 44, .external_lex_state = 5}, [960] = {.lex_state = 41, .external_lex_state = 5}, - [961] = {.lex_state = 40, .external_lex_state = 5}, - [962] = {.lex_state = 408, .external_lex_state = 2}, + [961] = {.lex_state = 41, .external_lex_state = 2}, + [962] = {.lex_state = 40, .external_lex_state = 5}, [963] = {.lex_state = 41, .external_lex_state = 2}, [964] = {.lex_state = 41, .external_lex_state = 2}, - [965] = {.lex_state = 41, .external_lex_state = 2}, - [966] = {.lex_state = 41, .external_lex_state = 2}, - [967] = {.lex_state = 41, .external_lex_state = 2}, - [968] = {.lex_state = 41, .external_lex_state = 2}, - [969] = {.lex_state = 41, .external_lex_state = 2}, + [965] = {.lex_state = 40, .external_lex_state = 5}, + [966] = {.lex_state = 408, .external_lex_state = 5}, + [967] = {.lex_state = 409, .external_lex_state = 5}, + [968] = {.lex_state = 40, .external_lex_state = 5}, + [969] = {.lex_state = 411, .external_lex_state = 2}, [970] = {.lex_state = 41, .external_lex_state = 2}, - [971] = {.lex_state = 41, .external_lex_state = 2}, + [971] = {.lex_state = 40, .external_lex_state = 5}, [972] = {.lex_state = 409, .external_lex_state = 5}, [973] = {.lex_state = 41, .external_lex_state = 2}, - [974] = {.lex_state = 41, .external_lex_state = 2}, - [975] = {.lex_state = 41, .external_lex_state = 2}, - [976] = {.lex_state = 41, .external_lex_state = 2}, - [977] = {.lex_state = 41, .external_lex_state = 2}, + [974] = {.lex_state = 408, .external_lex_state = 5}, + [975] = {.lex_state = 410, .external_lex_state = 2}, + [976] = {.lex_state = 408, .external_lex_state = 5}, + [977] = {.lex_state = 408, .external_lex_state = 5}, [978] = {.lex_state = 41, .external_lex_state = 2}, [979] = {.lex_state = 41, .external_lex_state = 2}, [980] = {.lex_state = 41, .external_lex_state = 2}, [981] = {.lex_state = 41, .external_lex_state = 2}, [982] = {.lex_state = 41, .external_lex_state = 2}, [983] = {.lex_state = 41, .external_lex_state = 2}, - [984] = {.lex_state = 410, .external_lex_state = 5}, - [985] = {.lex_state = 41, .external_lex_state = 2}, + [984] = {.lex_state = 41, .external_lex_state = 2}, + [985] = {.lex_state = 411, .external_lex_state = 2}, [986] = {.lex_state = 41, .external_lex_state = 2}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, + [987] = {.lex_state = 408, .external_lex_state = 5}, + [988] = {.lex_state = 408, .external_lex_state = 5}, [989] = {.lex_state = 41, .external_lex_state = 2}, [990] = {.lex_state = 41, .external_lex_state = 2}, - [991] = {.lex_state = 41, .external_lex_state = 2}, + [991] = {.lex_state = 408, .external_lex_state = 2}, [992] = {.lex_state = 41, .external_lex_state = 2}, - [993] = {.lex_state = 41, .external_lex_state = 2}, + [993] = {.lex_state = 40, .external_lex_state = 2}, [994] = {.lex_state = 41, .external_lex_state = 2}, - [995] = {.lex_state = 409, .external_lex_state = 5}, - [996] = {.lex_state = 41, .external_lex_state = 2}, - [997] = {.lex_state = 409, .external_lex_state = 5}, - [998] = {.lex_state = 411, .external_lex_state = 2}, - [999] = {.lex_state = 41, .external_lex_state = 2}, - [1000] = {.lex_state = 40, .external_lex_state = 5}, - [1001] = {.lex_state = 41, .external_lex_state = 2}, - [1002] = {.lex_state = 410, .external_lex_state = 5}, + [995] = {.lex_state = 41, .external_lex_state = 2}, + [996] = {.lex_state = 40, .external_lex_state = 5}, + [997] = {.lex_state = 408, .external_lex_state = 5}, + [998] = {.lex_state = 40, .external_lex_state = 5}, + [999] = {.lex_state = 40, .external_lex_state = 5}, + [1000] = {.lex_state = 408, .external_lex_state = 2}, + [1001] = {.lex_state = 408, .external_lex_state = 5}, + [1002] = {.lex_state = 408, .external_lex_state = 5}, [1003] = {.lex_state = 41, .external_lex_state = 2}, - [1004] = {.lex_state = 40, .external_lex_state = 5}, + [1004] = {.lex_state = 41, .external_lex_state = 2}, [1005] = {.lex_state = 41, .external_lex_state = 2}, [1006] = {.lex_state = 41, .external_lex_state = 2}, - [1007] = {.lex_state = 409, .external_lex_state = 5}, - [1008] = {.lex_state = 41, .external_lex_state = 2}, - [1009] = {.lex_state = 41, .external_lex_state = 2}, - [1010] = {.lex_state = 41, .external_lex_state = 2}, - [1011] = {.lex_state = 41, .external_lex_state = 2}, + [1007] = {.lex_state = 408, .external_lex_state = 5}, + [1008] = {.lex_state = 410, .external_lex_state = 2}, + [1009] = {.lex_state = 409, .external_lex_state = 2}, + [1010] = {.lex_state = 410, .external_lex_state = 2}, + [1011] = {.lex_state = 408, .external_lex_state = 5}, [1012] = {.lex_state = 41, .external_lex_state = 2}, - [1013] = {.lex_state = 411, .external_lex_state = 2}, - [1014] = {.lex_state = 41, .external_lex_state = 2}, + [1013] = {.lex_state = 41, .external_lex_state = 2}, + [1014] = {.lex_state = 40, .external_lex_state = 5}, [1015] = {.lex_state = 41, .external_lex_state = 2}, - [1016] = {.lex_state = 409, .external_lex_state = 2}, + [1016] = {.lex_state = 408, .external_lex_state = 2}, [1017] = {.lex_state = 41, .external_lex_state = 2}, - [1018] = {.lex_state = 41, .external_lex_state = 2}, - [1019] = {.lex_state = 409, .external_lex_state = 5}, - [1020] = {.lex_state = 40, .external_lex_state = 5}, - [1021] = {.lex_state = 409, .external_lex_state = 2}, + [1018] = {.lex_state = 408, .external_lex_state = 5}, + [1019] = {.lex_state = 41, .external_lex_state = 2}, + [1020] = {.lex_state = 408, .external_lex_state = 5}, + [1021] = {.lex_state = 408, .external_lex_state = 5}, [1022] = {.lex_state = 41, .external_lex_state = 2}, - [1023] = {.lex_state = 40, .external_lex_state = 5}, - [1024] = {.lex_state = 409, .external_lex_state = 2}, + [1023] = {.lex_state = 41, .external_lex_state = 2}, + [1024] = {.lex_state = 41, .external_lex_state = 2}, [1025] = {.lex_state = 41, .external_lex_state = 2}, [1026] = {.lex_state = 41, .external_lex_state = 2}, [1027] = {.lex_state = 41, .external_lex_state = 2}, - [1028] = {.lex_state = 409, .external_lex_state = 5}, + [1028] = {.lex_state = 41, .external_lex_state = 2}, [1029] = {.lex_state = 41, .external_lex_state = 2}, [1030] = {.lex_state = 41, .external_lex_state = 2}, - [1031] = {.lex_state = 41, .external_lex_state = 2}, + [1031] = {.lex_state = 40, .external_lex_state = 2}, [1032] = {.lex_state = 41, .external_lex_state = 2}, [1033] = {.lex_state = 41, .external_lex_state = 2}, - [1034] = {.lex_state = 409, .external_lex_state = 5}, - [1035] = {.lex_state = 412, .external_lex_state = 2}, - [1036] = {.lex_state = 41, .external_lex_state = 2}, + [1034] = {.lex_state = 41, .external_lex_state = 2}, + [1035] = {.lex_state = 41, .external_lex_state = 2}, + [1036] = {.lex_state = 40, .external_lex_state = 5}, [1037] = {.lex_state = 41, .external_lex_state = 2}, [1038] = {.lex_state = 41, .external_lex_state = 2}, [1039] = {.lex_state = 41, .external_lex_state = 2}, [1040] = {.lex_state = 41, .external_lex_state = 2}, - [1041] = {.lex_state = 40, .external_lex_state = 2}, + [1041] = {.lex_state = 41, .external_lex_state = 2}, [1042] = {.lex_state = 41, .external_lex_state = 2}, - [1043] = {.lex_state = 409, .external_lex_state = 2}, - [1044] = {.lex_state = 409, .external_lex_state = 5}, - [1045] = {.lex_state = 411, .external_lex_state = 2}, + [1043] = {.lex_state = 41, .external_lex_state = 2}, + [1044] = {.lex_state = 41, .external_lex_state = 2}, + [1045] = {.lex_state = 40, .external_lex_state = 5}, [1046] = {.lex_state = 41, .external_lex_state = 2}, [1047] = {.lex_state = 41, .external_lex_state = 2}, [1048] = {.lex_state = 41, .external_lex_state = 2}, - [1049] = {.lex_state = 408, .external_lex_state = 2}, + [1049] = {.lex_state = 408, .external_lex_state = 5}, [1050] = {.lex_state = 41, .external_lex_state = 2}, [1051] = {.lex_state = 41, .external_lex_state = 2}, [1052] = {.lex_state = 41, .external_lex_state = 2}, [1053] = {.lex_state = 41, .external_lex_state = 2}, [1054] = {.lex_state = 41, .external_lex_state = 2}, [1055] = {.lex_state = 41, .external_lex_state = 2}, - [1056] = {.lex_state = 40, .external_lex_state = 5}, - [1057] = {.lex_state = 409, .external_lex_state = 5}, - [1058] = {.lex_state = 44, .external_lex_state = 2}, + [1056] = {.lex_state = 41, .external_lex_state = 2}, + [1057] = {.lex_state = 41, .external_lex_state = 2}, + [1058] = {.lex_state = 40, .external_lex_state = 5}, [1059] = {.lex_state = 41, .external_lex_state = 2}, [1060] = {.lex_state = 41, .external_lex_state = 2}, - [1061] = {.lex_state = 40, .external_lex_state = 5}, + [1061] = {.lex_state = 41, .external_lex_state = 2}, [1062] = {.lex_state = 40, .external_lex_state = 5}, - [1063] = {.lex_state = 40, .external_lex_state = 5}, + [1063] = {.lex_state = 41, .external_lex_state = 2}, [1064] = {.lex_state = 41, .external_lex_state = 2}, - [1065] = {.lex_state = 44, .external_lex_state = 2}, + [1065] = {.lex_state = 41, .external_lex_state = 2}, [1066] = {.lex_state = 41, .external_lex_state = 2}, - [1067] = {.lex_state = 44, .external_lex_state = 2}, - [1068] = {.lex_state = 409, .external_lex_state = 2}, - [1069] = {.lex_state = 41, .external_lex_state = 2}, - [1070] = {.lex_state = 409, .external_lex_state = 5}, - [1071] = {.lex_state = 40, .external_lex_state = 5}, - [1072] = {.lex_state = 409, .external_lex_state = 5}, + [1067] = {.lex_state = 40, .external_lex_state = 5}, + [1068] = {.lex_state = 41, .external_lex_state = 2}, + [1069] = {.lex_state = 40, .external_lex_state = 5}, + [1070] = {.lex_state = 407, .external_lex_state = 2}, + [1071] = {.lex_state = 407, .external_lex_state = 2}, + [1072] = {.lex_state = 41, .external_lex_state = 2}, [1073] = {.lex_state = 41, .external_lex_state = 2}, [1074] = {.lex_state = 41, .external_lex_state = 2}, - [1075] = {.lex_state = 409, .external_lex_state = 5}, - [1076] = {.lex_state = 41, .external_lex_state = 2}, - [1077] = {.lex_state = 412, .external_lex_state = 2}, - [1078] = {.lex_state = 41, .external_lex_state = 2}, - [1079] = {.lex_state = 41, .external_lex_state = 2}, - [1080] = {.lex_state = 41, .external_lex_state = 2}, - [1081] = {.lex_state = 41, .external_lex_state = 2}, - [1082] = {.lex_state = 41, .external_lex_state = 2}, + [1075] = {.lex_state = 41, .external_lex_state = 2}, + [1076] = {.lex_state = 40, .external_lex_state = 5}, + [1077] = {.lex_state = 41, .external_lex_state = 2}, + [1078] = {.lex_state = 40, .external_lex_state = 5}, + [1079] = {.lex_state = 44, .external_lex_state = 2}, + [1080] = {.lex_state = 40, .external_lex_state = 5}, + [1081] = {.lex_state = 40, .external_lex_state = 5}, + [1082] = {.lex_state = 44, .external_lex_state = 2}, [1083] = {.lex_state = 41, .external_lex_state = 2}, - [1084] = {.lex_state = 44, .external_lex_state = 2}, - [1085] = {.lex_state = 41, .external_lex_state = 2}, - [1086] = {.lex_state = 41, .external_lex_state = 2}, + [1084] = {.lex_state = 41, .external_lex_state = 2}, + [1085] = {.lex_state = 408, .external_lex_state = 2}, + [1086] = {.lex_state = 44, .external_lex_state = 2}, [1087] = {.lex_state = 41, .external_lex_state = 2}, [1088] = {.lex_state = 41, .external_lex_state = 2}, [1089] = {.lex_state = 41, .external_lex_state = 2}, - [1090] = {.lex_state = 409, .external_lex_state = 5}, - [1091] = {.lex_state = 409, .external_lex_state = 5}, - [1092] = {.lex_state = 40, .external_lex_state = 5}, + [1090] = {.lex_state = 41, .external_lex_state = 2}, + [1091] = {.lex_state = 41, .external_lex_state = 2}, + [1092] = {.lex_state = 408, .external_lex_state = 2}, [1093] = {.lex_state = 41, .external_lex_state = 2}, [1094] = {.lex_state = 41, .external_lex_state = 2}, - [1095] = {.lex_state = 409, .external_lex_state = 5}, + [1095] = {.lex_state = 41, .external_lex_state = 2}, [1096] = {.lex_state = 41, .external_lex_state = 2}, - [1097] = {.lex_state = 40, .external_lex_state = 5}, + [1097] = {.lex_state = 44, .external_lex_state = 2}, [1098] = {.lex_state = 41, .external_lex_state = 2}, [1099] = {.lex_state = 41, .external_lex_state = 2}, - [1100] = {.lex_state = 41, .external_lex_state = 2}, - [1101] = {.lex_state = 409, .external_lex_state = 5}, + [1100] = {.lex_state = 408, .external_lex_state = 5}, + [1101] = {.lex_state = 408, .external_lex_state = 5}, [1102] = {.lex_state = 41, .external_lex_state = 2}, - [1103] = {.lex_state = 409, .external_lex_state = 5}, - [1104] = {.lex_state = 409, .external_lex_state = 5}, + [1103] = {.lex_state = 40, .external_lex_state = 5}, + [1104] = {.lex_state = 408, .external_lex_state = 5}, [1105] = {.lex_state = 41, .external_lex_state = 2}, [1106] = {.lex_state = 41, .external_lex_state = 2}, - [1107] = {.lex_state = 40, .external_lex_state = 5}, + [1107] = {.lex_state = 408, .external_lex_state = 5}, [1108] = {.lex_state = 41, .external_lex_state = 2}, [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 409, .external_lex_state = 5}, + [1110] = {.lex_state = 40, .external_lex_state = 5}, + [1111] = {.lex_state = 408, .external_lex_state = 5}, [1112] = {.lex_state = 41, .external_lex_state = 2}, - [1113] = {.lex_state = 40, .external_lex_state = 5}, - [1114] = {.lex_state = 41, .external_lex_state = 2}, + [1113] = {.lex_state = 41, .external_lex_state = 2}, + [1114] = {.lex_state = 410, .external_lex_state = 2}, [1115] = {.lex_state = 41, .external_lex_state = 2}, - [1116] = {.lex_state = 409, .external_lex_state = 5}, + [1116] = {.lex_state = 40, .external_lex_state = 5}, [1117] = {.lex_state = 41, .external_lex_state = 2}, [1118] = {.lex_state = 41, .external_lex_state = 2}, [1119] = {.lex_state = 41, .external_lex_state = 2}, - [1120] = {.lex_state = 409, .external_lex_state = 5}, - [1121] = {.lex_state = 409, .external_lex_state = 5}, + [1120] = {.lex_state = 41, .external_lex_state = 2}, + [1121] = {.lex_state = 41, .external_lex_state = 2}, [1122] = {.lex_state = 41, .external_lex_state = 2}, [1123] = {.lex_state = 41, .external_lex_state = 2}, - [1124] = {.lex_state = 40, .external_lex_state = 5}, - [1125] = {.lex_state = 40, .external_lex_state = 5}, + [1124] = {.lex_state = 408, .external_lex_state = 5}, + [1125] = {.lex_state = 41, .external_lex_state = 2}, [1126] = {.lex_state = 41, .external_lex_state = 2}, - [1127] = {.lex_state = 411, .external_lex_state = 2}, - [1128] = {.lex_state = 411, .external_lex_state = 2}, + [1127] = {.lex_state = 41, .external_lex_state = 2}, + [1128] = {.lex_state = 41, .external_lex_state = 2}, [1129] = {.lex_state = 41, .external_lex_state = 2}, [1130] = {.lex_state = 41, .external_lex_state = 2}, - [1131] = {.lex_state = 409, .external_lex_state = 5}, - [1132] = {.lex_state = 40, .external_lex_state = 5}, + [1131] = {.lex_state = 41, .external_lex_state = 2}, + [1132] = {.lex_state = 41, .external_lex_state = 2}, [1133] = {.lex_state = 41, .external_lex_state = 2}, [1134] = {.lex_state = 41, .external_lex_state = 2}, [1135] = {.lex_state = 41, .external_lex_state = 2}, [1136] = {.lex_state = 41, .external_lex_state = 2}, - [1137] = {.lex_state = 41, .external_lex_state = 2}, + [1137] = {.lex_state = 40, .external_lex_state = 5}, [1138] = {.lex_state = 41, .external_lex_state = 2}, - [1139] = {.lex_state = 41, .external_lex_state = 2}, - [1140] = {.lex_state = 41, .external_lex_state = 2}, - [1141] = {.lex_state = 41, .external_lex_state = 2}, - [1142] = {.lex_state = 44, .external_lex_state = 2}, - [1143] = {.lex_state = 40, .external_lex_state = 5}, + [1139] = {.lex_state = 40, .external_lex_state = 2}, + [1140] = {.lex_state = 410, .external_lex_state = 2}, + [1141] = {.lex_state = 44, .external_lex_state = 2}, + [1142] = {.lex_state = 41, .external_lex_state = 2}, + [1143] = {.lex_state = 408, .external_lex_state = 5}, [1144] = {.lex_state = 41, .external_lex_state = 2}, - [1145] = {.lex_state = 410, .external_lex_state = 2}, - [1146] = {.lex_state = 40, .external_lex_state = 2}, + [1145] = {.lex_state = 408, .external_lex_state = 5}, + [1146] = {.lex_state = 41, .external_lex_state = 2}, [1147] = {.lex_state = 41, .external_lex_state = 2}, [1148] = {.lex_state = 41, .external_lex_state = 2}, - [1149] = {.lex_state = 40, .external_lex_state = 5}, + [1149] = {.lex_state = 41, .external_lex_state = 2}, [1150] = {.lex_state = 41, .external_lex_state = 2}, [1151] = {.lex_state = 41, .external_lex_state = 2}, [1152] = {.lex_state = 40, .external_lex_state = 5}, - [1153] = {.lex_state = 40, .external_lex_state = 2}, + [1153] = {.lex_state = 41, .external_lex_state = 2}, [1154] = {.lex_state = 41, .external_lex_state = 2}, [1155] = {.lex_state = 41, .external_lex_state = 2}, - [1156] = {.lex_state = 40, .external_lex_state = 5}, - [1157] = {.lex_state = 40, .external_lex_state = 5}, - [1158] = {.lex_state = 40, .external_lex_state = 5}, - [1159] = {.lex_state = 409, .external_lex_state = 2}, - [1160] = {.lex_state = 40, .external_lex_state = 2}, + [1156] = {.lex_state = 41, .external_lex_state = 2}, + [1157] = {.lex_state = 41, .external_lex_state = 2}, + [1158] = {.lex_state = 41, .external_lex_state = 2}, + [1159] = {.lex_state = 40, .external_lex_state = 2}, + [1160] = {.lex_state = 407, .external_lex_state = 2}, [1161] = {.lex_state = 408, .external_lex_state = 2}, - [1162] = {.lex_state = 409, .external_lex_state = 2}, - [1163] = {.lex_state = 409, .external_lex_state = 2}, - [1164] = {.lex_state = 409, .external_lex_state = 2}, - [1165] = {.lex_state = 40, .external_lex_state = 2}, - [1166] = {.lex_state = 408, .external_lex_state = 5}, - [1167] = {.lex_state = 40, .external_lex_state = 2}, - [1168] = {.lex_state = 408, .external_lex_state = 5}, - [1169] = {.lex_state = 40, .external_lex_state = 2}, + [1162] = {.lex_state = 40, .external_lex_state = 2}, + [1163] = {.lex_state = 408, .external_lex_state = 2}, + [1164] = {.lex_state = 408, .external_lex_state = 2}, + [1165] = {.lex_state = 408, .external_lex_state = 2}, + [1166] = {.lex_state = 408, .external_lex_state = 2}, + [1167] = {.lex_state = 407, .external_lex_state = 5}, + [1168] = {.lex_state = 407, .external_lex_state = 5}, + [1169] = {.lex_state = 407, .external_lex_state = 5}, [1170] = {.lex_state = 40, .external_lex_state = 2}, - [1171] = {.lex_state = 408, .external_lex_state = 5}, + [1171] = {.lex_state = 40, .external_lex_state = 2}, [1172] = {.lex_state = 40, .external_lex_state = 2}, - [1173] = {.lex_state = 408, .external_lex_state = 5}, - [1174] = {.lex_state = 409, .external_lex_state = 2}, - [1175] = {.lex_state = 409, .external_lex_state = 2}, - [1176] = {.lex_state = 409, .external_lex_state = 2}, - [1177] = {.lex_state = 410, .external_lex_state = 2}, - [1178] = {.lex_state = 409, .external_lex_state = 2}, - [1179] = {.lex_state = 409, .external_lex_state = 2}, - [1180] = {.lex_state = 40, .external_lex_state = 2}, - [1181] = {.lex_state = 40, .external_lex_state = 2}, - [1182] = {.lex_state = 408, .external_lex_state = 5}, - [1183] = {.lex_state = 40, .external_lex_state = 2}, - [1184] = {.lex_state = 409, .external_lex_state = 2}, - [1185] = {.lex_state = 408, .external_lex_state = 5}, - [1186] = {.lex_state = 408, .external_lex_state = 5}, + [1173] = {.lex_state = 407, .external_lex_state = 5}, + [1174] = {.lex_state = 40, .external_lex_state = 2}, + [1175] = {.lex_state = 407, .external_lex_state = 5}, + [1176] = {.lex_state = 40, .external_lex_state = 2}, + [1177] = {.lex_state = 40, .external_lex_state = 2}, + [1178] = {.lex_state = 407, .external_lex_state = 5}, + [1179] = {.lex_state = 408, .external_lex_state = 2}, + [1180] = {.lex_state = 409, .external_lex_state = 2}, + [1181] = {.lex_state = 408, .external_lex_state = 2}, + [1182] = {.lex_state = 408, .external_lex_state = 2}, + [1183] = {.lex_state = 408, .external_lex_state = 2}, + [1184] = {.lex_state = 40, .external_lex_state = 2}, + [1185] = {.lex_state = 408, .external_lex_state = 2}, + [1186] = {.lex_state = 408, .external_lex_state = 2}, [1187] = {.lex_state = 40, .external_lex_state = 2}, - [1188] = {.lex_state = 409, .external_lex_state = 2}, - [1189] = {.lex_state = 409, .external_lex_state = 2}, + [1188] = {.lex_state = 40, .external_lex_state = 2}, + [1189] = {.lex_state = 408, .external_lex_state = 2}, [1190] = {.lex_state = 40, .external_lex_state = 2}, - [1191] = {.lex_state = 409, .external_lex_state = 2}, - [1192] = {.lex_state = 40, .external_lex_state = 2}, - [1193] = {.lex_state = 40, .external_lex_state = 2}, - [1194] = {.lex_state = 409, .external_lex_state = 2}, - [1195] = {.lex_state = 408, .external_lex_state = 5}, + [1191] = {.lex_state = 408, .external_lex_state = 2}, + [1192] = {.lex_state = 408, .external_lex_state = 2}, + [1193] = {.lex_state = 408, .external_lex_state = 2}, + [1194] = {.lex_state = 40, .external_lex_state = 2}, + [1195] = {.lex_state = 408, .external_lex_state = 2}, [1196] = {.lex_state = 40, .external_lex_state = 2}, [1197] = {.lex_state = 40, .external_lex_state = 2}, - [1198] = {.lex_state = 409, .external_lex_state = 2}, - [1199] = {.lex_state = 40, .external_lex_state = 2}, - [1200] = {.lex_state = 409, .external_lex_state = 2}, - [1201] = {.lex_state = 409, .external_lex_state = 2}, - [1202] = {.lex_state = 409, .external_lex_state = 2}, - [1203] = {.lex_state = 409, .external_lex_state = 2}, - [1204] = {.lex_state = 408, .external_lex_state = 5}, - [1205] = {.lex_state = 410, .external_lex_state = 2}, - [1206] = {.lex_state = 409, .external_lex_state = 2}, - [1207] = {.lex_state = 40, .external_lex_state = 2}, + [1198] = {.lex_state = 408, .external_lex_state = 2}, + [1199] = {.lex_state = 408, .external_lex_state = 2}, + [1200] = {.lex_state = 408, .external_lex_state = 2}, + [1201] = {.lex_state = 40, .external_lex_state = 2}, + [1202] = {.lex_state = 407, .external_lex_state = 5}, + [1203] = {.lex_state = 407, .external_lex_state = 5}, + [1204] = {.lex_state = 40, .external_lex_state = 2}, + [1205] = {.lex_state = 408, .external_lex_state = 2}, + [1206] = {.lex_state = 40, .external_lex_state = 2}, + [1207] = {.lex_state = 408, .external_lex_state = 2}, [1208] = {.lex_state = 40, .external_lex_state = 2}, - [1209] = {.lex_state = 409, .external_lex_state = 2}, - [1210] = {.lex_state = 409, .external_lex_state = 2}, - [1211] = {.lex_state = 40, .external_lex_state = 2}, + [1209] = {.lex_state = 408, .external_lex_state = 2}, + [1210] = {.lex_state = 408, .external_lex_state = 2}, + [1211] = {.lex_state = 408, .external_lex_state = 2}, [1212] = {.lex_state = 40, .external_lex_state = 2}, - [1213] = {.lex_state = 40, .external_lex_state = 2}, + [1213] = {.lex_state = 408, .external_lex_state = 2}, [1214] = {.lex_state = 40, .external_lex_state = 2}, - [1215] = {.lex_state = 409, .external_lex_state = 2}, - [1216] = {.lex_state = 408, .external_lex_state = 5}, - [1217] = {.lex_state = 409, .external_lex_state = 2}, + [1215] = {.lex_state = 408, .external_lex_state = 2}, + [1216] = {.lex_state = 408, .external_lex_state = 2}, + [1217] = {.lex_state = 40, .external_lex_state = 2}, [1218] = {.lex_state = 40, .external_lex_state = 2}, [1219] = {.lex_state = 40, .external_lex_state = 2}, - [1220] = {.lex_state = 40, .external_lex_state = 2}, - [1221] = {.lex_state = 40, .external_lex_state = 2}, + [1220] = {.lex_state = 408, .external_lex_state = 2}, + [1221] = {.lex_state = 408, .external_lex_state = 2}, [1222] = {.lex_state = 40, .external_lex_state = 2}, - [1223] = {.lex_state = 408, .external_lex_state = 5}, - [1224] = {.lex_state = 409, .external_lex_state = 2}, - [1225] = {.lex_state = 409, .external_lex_state = 2}, - [1226] = {.lex_state = 409, .external_lex_state = 2}, - [1227] = {.lex_state = 409, .external_lex_state = 2}, - [1228] = {.lex_state = 40, .external_lex_state = 2}, + [1223] = {.lex_state = 40, .external_lex_state = 2}, + [1224] = {.lex_state = 40, .external_lex_state = 2}, + [1225] = {.lex_state = 40, .external_lex_state = 2}, + [1226] = {.lex_state = 408, .external_lex_state = 2}, + [1227] = {.lex_state = 40, .external_lex_state = 2}, + [1228] = {.lex_state = 408, .external_lex_state = 2}, [1229] = {.lex_state = 40, .external_lex_state = 2}, - [1230] = {.lex_state = 409, .external_lex_state = 2}, + [1230] = {.lex_state = 40, .external_lex_state = 2}, [1231] = {.lex_state = 40, .external_lex_state = 2}, [1232] = {.lex_state = 40, .external_lex_state = 2}, - [1233] = {.lex_state = 409, .external_lex_state = 2}, - [1234] = {.lex_state = 409, .external_lex_state = 2}, + [1233] = {.lex_state = 40, .external_lex_state = 2}, + [1234] = {.lex_state = 40, .external_lex_state = 2}, [1235] = {.lex_state = 40, .external_lex_state = 2}, [1236] = {.lex_state = 40, .external_lex_state = 2}, - [1237] = {.lex_state = 409, .external_lex_state = 2}, + [1237] = {.lex_state = 40, .external_lex_state = 2}, [1238] = {.lex_state = 40, .external_lex_state = 2}, - [1239] = {.lex_state = 410, .external_lex_state = 2}, + [1239] = {.lex_state = 40, .external_lex_state = 2}, [1240] = {.lex_state = 40, .external_lex_state = 2}, [1241] = {.lex_state = 40, .external_lex_state = 2}, - [1242] = {.lex_state = 409, .external_lex_state = 2}, + [1242] = {.lex_state = 40, .external_lex_state = 2}, [1243] = {.lex_state = 40, .external_lex_state = 2}, [1244] = {.lex_state = 40, .external_lex_state = 2}, - [1245] = {.lex_state = 40, .external_lex_state = 2}, - [1246] = {.lex_state = 40, .external_lex_state = 2}, - [1247] = {.lex_state = 409, .external_lex_state = 2}, + [1245] = {.lex_state = 408, .external_lex_state = 2}, + [1246] = {.lex_state = 408, .external_lex_state = 2}, + [1247] = {.lex_state = 408, .external_lex_state = 2}, [1248] = {.lex_state = 40, .external_lex_state = 2}, - [1249] = {.lex_state = 40, .external_lex_state = 2}, + [1249] = {.lex_state = 408, .external_lex_state = 2}, [1250] = {.lex_state = 40, .external_lex_state = 2}, [1251] = {.lex_state = 40, .external_lex_state = 2}, - [1252] = {.lex_state = 410, .external_lex_state = 2}, - [1253] = {.lex_state = 409, .external_lex_state = 2}, - [1254] = {.lex_state = 409, .external_lex_state = 2}, - [1255] = {.lex_state = 409, .external_lex_state = 2}, + [1252] = {.lex_state = 408, .external_lex_state = 2}, + [1253] = {.lex_state = 408, .external_lex_state = 2}, + [1254] = {.lex_state = 407, .external_lex_state = 5}, + [1255] = {.lex_state = 408, .external_lex_state = 2}, [1256] = {.lex_state = 40, .external_lex_state = 2}, - [1257] = {.lex_state = 409, .external_lex_state = 2}, + [1257] = {.lex_state = 40, .external_lex_state = 2}, [1258] = {.lex_state = 40, .external_lex_state = 2}, [1259] = {.lex_state = 40, .external_lex_state = 2}, [1260] = {.lex_state = 40, .external_lex_state = 2}, - [1261] = {.lex_state = 40, .external_lex_state = 2}, - [1262] = {.lex_state = 40, .external_lex_state = 2}, - [1263] = {.lex_state = 40, .external_lex_state = 2}, - [1264] = {.lex_state = 40, .external_lex_state = 2}, + [1261] = {.lex_state = 408, .external_lex_state = 2}, + [1262] = {.lex_state = 408, .external_lex_state = 2}, + [1263] = {.lex_state = 408, .external_lex_state = 2}, + [1264] = {.lex_state = 407, .external_lex_state = 5}, [1265] = {.lex_state = 40, .external_lex_state = 2}, [1266] = {.lex_state = 40, .external_lex_state = 2}, - [1267] = {.lex_state = 40, .external_lex_state = 2}, - [1268] = {.lex_state = 409, .external_lex_state = 2}, + [1267] = {.lex_state = 408, .external_lex_state = 2}, + [1268] = {.lex_state = 40, .external_lex_state = 2}, [1269] = {.lex_state = 40, .external_lex_state = 2}, - [1270] = {.lex_state = 409, .external_lex_state = 2}, - [1271] = {.lex_state = 40, .external_lex_state = 2}, - [1272] = {.lex_state = 409, .external_lex_state = 2}, - [1273] = {.lex_state = 409, .external_lex_state = 2}, + [1270] = {.lex_state = 40, .external_lex_state = 2}, + [1271] = {.lex_state = 407, .external_lex_state = 5}, + [1272] = {.lex_state = 40, .external_lex_state = 2}, + [1273] = {.lex_state = 40, .external_lex_state = 2}, [1274] = {.lex_state = 40, .external_lex_state = 2}, - [1275] = {.lex_state = 409, .external_lex_state = 2}, - [1276] = {.lex_state = 408, .external_lex_state = 5}, - [1277] = {.lex_state = 409, .external_lex_state = 2}, - [1278] = {.lex_state = 40, .external_lex_state = 2}, - [1279] = {.lex_state = 40, .external_lex_state = 2}, + [1275] = {.lex_state = 40, .external_lex_state = 2}, + [1276] = {.lex_state = 408, .external_lex_state = 2}, + [1277] = {.lex_state = 408, .external_lex_state = 2}, + [1278] = {.lex_state = 408, .external_lex_state = 2}, + [1279] = {.lex_state = 408, .external_lex_state = 2}, [1280] = {.lex_state = 40, .external_lex_state = 2}, - [1281] = {.lex_state = 40, .external_lex_state = 2}, + [1281] = {.lex_state = 408, .external_lex_state = 2}, [1282] = {.lex_state = 40, .external_lex_state = 2}, - [1283] = {.lex_state = 409, .external_lex_state = 2}, - [1284] = {.lex_state = 40, .external_lex_state = 2}, - [1285] = {.lex_state = 409, .external_lex_state = 2}, - [1286] = {.lex_state = 409, .external_lex_state = 2}, + [1283] = {.lex_state = 408, .external_lex_state = 2}, + [1284] = {.lex_state = 408, .external_lex_state = 2}, + [1285] = {.lex_state = 407, .external_lex_state = 5}, + [1286] = {.lex_state = 40, .external_lex_state = 2}, [1287] = {.lex_state = 40, .external_lex_state = 2}, [1288] = {.lex_state = 40, .external_lex_state = 2}, - [1289] = {.lex_state = 409, .external_lex_state = 2}, - [1290] = {.lex_state = 409, .external_lex_state = 2}, + [1289] = {.lex_state = 40, .external_lex_state = 2}, + [1290] = {.lex_state = 40, .external_lex_state = 2}, [1291] = {.lex_state = 40, .external_lex_state = 2}, - [1292] = {.lex_state = 40, .external_lex_state = 2}, + [1292] = {.lex_state = 408, .external_lex_state = 2}, [1293] = {.lex_state = 40, .external_lex_state = 2}, - [1294] = {.lex_state = 409, .external_lex_state = 2}, - [1295] = {.lex_state = 409, .external_lex_state = 2}, + [1294] = {.lex_state = 408, .external_lex_state = 2}, + [1295] = {.lex_state = 408, .external_lex_state = 2}, [1296] = {.lex_state = 40, .external_lex_state = 2}, - [1297] = {.lex_state = 40, .external_lex_state = 2}, - [1298] = {.lex_state = 409, .external_lex_state = 2}, + [1297] = {.lex_state = 408, .external_lex_state = 2}, + [1298] = {.lex_state = 408, .external_lex_state = 2}, [1299] = {.lex_state = 40, .external_lex_state = 2}, - [1300] = {.lex_state = 40, .external_lex_state = 2}, - [1301] = {.lex_state = 409, .external_lex_state = 2}, - [1302] = {.lex_state = 409, .external_lex_state = 2}, + [1300] = {.lex_state = 408, .external_lex_state = 2}, + [1301] = {.lex_state = 40, .external_lex_state = 2}, + [1302] = {.lex_state = 408, .external_lex_state = 2}, [1303] = {.lex_state = 40, .external_lex_state = 2}, - [1304] = {.lex_state = 409, .external_lex_state = 2}, - [1305] = {.lex_state = 40, .external_lex_state = 2}, - [1306] = {.lex_state = 409, .external_lex_state = 2}, - [1307] = {.lex_state = 409, .external_lex_state = 2}, - [1308] = {.lex_state = 408, .external_lex_state = 5}, - [1309] = {.lex_state = 409, .external_lex_state = 2}, - [1310] = {.lex_state = 409, .external_lex_state = 2}, + [1304] = {.lex_state = 408, .external_lex_state = 2}, + [1305] = {.lex_state = 408, .external_lex_state = 2}, + [1306] = {.lex_state = 408, .external_lex_state = 2}, + [1307] = {.lex_state = 407, .external_lex_state = 5}, + [1308] = {.lex_state = 408, .external_lex_state = 2}, + [1309] = {.lex_state = 408, .external_lex_state = 2}, + [1310] = {.lex_state = 408, .external_lex_state = 2}, [1311] = {.lex_state = 40, .external_lex_state = 2}, - [1312] = {.lex_state = 40, .external_lex_state = 2}, - [1313] = {.lex_state = 40, .external_lex_state = 2}, - [1314] = {.lex_state = 409, .external_lex_state = 2}, - [1315] = {.lex_state = 409, .external_lex_state = 2}, + [1312] = {.lex_state = 408, .external_lex_state = 2}, + [1313] = {.lex_state = 408, .external_lex_state = 2}, + [1314] = {.lex_state = 408, .external_lex_state = 2}, + [1315] = {.lex_state = 408, .external_lex_state = 2}, [1316] = {.lex_state = 40, .external_lex_state = 2}, [1317] = {.lex_state = 40, .external_lex_state = 2}, - [1318] = {.lex_state = 40, .external_lex_state = 2}, - [1319] = {.lex_state = 408, .external_lex_state = 5}, - [1320] = {.lex_state = 40, .external_lex_state = 2}, - [1321] = {.lex_state = 40, .external_lex_state = 2}, - [1322] = {.lex_state = 409, .external_lex_state = 2}, - [1323] = {.lex_state = 40, .external_lex_state = 2}, - [1324] = {.lex_state = 40, .external_lex_state = 2}, - [1325] = {.lex_state = 40, .external_lex_state = 2}, - [1326] = {.lex_state = 40, .external_lex_state = 2}, - [1327] = {.lex_state = 40, .external_lex_state = 2}, - [1328] = {.lex_state = 409, .external_lex_state = 2}, - [1329] = {.lex_state = 409, .external_lex_state = 2}, - [1330] = {.lex_state = 410, .external_lex_state = 2}, - [1331] = {.lex_state = 409, .external_lex_state = 2}, - [1332] = {.lex_state = 409, .external_lex_state = 2}, - [1333] = {.lex_state = 40, .external_lex_state = 2}, - [1334] = {.lex_state = 40, .external_lex_state = 2}, - [1335] = {.lex_state = 40, .external_lex_state = 2}, - [1336] = {.lex_state = 40, .external_lex_state = 2}, + [1318] = {.lex_state = 408, .external_lex_state = 2}, + [1319] = {.lex_state = 408, .external_lex_state = 2}, + [1320] = {.lex_state = 408, .external_lex_state = 2}, + [1321] = {.lex_state = 408, .external_lex_state = 2}, + [1322] = {.lex_state = 40, .external_lex_state = 2}, + [1323] = {.lex_state = 408, .external_lex_state = 2}, + [1324] = {.lex_state = 408, .external_lex_state = 2}, + [1325] = {.lex_state = 408, .external_lex_state = 2}, + [1326] = {.lex_state = 408, .external_lex_state = 2}, + [1327] = {.lex_state = 408, .external_lex_state = 2}, + [1328] = {.lex_state = 408, .external_lex_state = 2}, + [1329] = {.lex_state = 408, .external_lex_state = 2}, + [1330] = {.lex_state = 408, .external_lex_state = 2}, + [1331] = {.lex_state = 40, .external_lex_state = 2}, + [1332] = {.lex_state = 408, .external_lex_state = 2}, + [1333] = {.lex_state = 408, .external_lex_state = 2}, + [1334] = {.lex_state = 408, .external_lex_state = 2}, + [1335] = {.lex_state = 408, .external_lex_state = 2}, + [1336] = {.lex_state = 408, .external_lex_state = 2}, [1337] = {.lex_state = 40, .external_lex_state = 2}, - [1338] = {.lex_state = 409, .external_lex_state = 2}, - [1339] = {.lex_state = 408, .external_lex_state = 5}, - [1340] = {.lex_state = 409, .external_lex_state = 2}, + [1338] = {.lex_state = 408, .external_lex_state = 2}, + [1339] = {.lex_state = 408, .external_lex_state = 2}, + [1340] = {.lex_state = 40, .external_lex_state = 2}, [1341] = {.lex_state = 40, .external_lex_state = 2}, [1342] = {.lex_state = 40, .external_lex_state = 2}, [1343] = {.lex_state = 40, .external_lex_state = 2}, - [1344] = {.lex_state = 409, .external_lex_state = 2}, - [1345] = {.lex_state = 409, .external_lex_state = 2}, + [1344] = {.lex_state = 40, .external_lex_state = 2}, + [1345] = {.lex_state = 40, .external_lex_state = 2}, [1346] = {.lex_state = 40, .external_lex_state = 2}, - [1347] = {.lex_state = 40, .external_lex_state = 2}, - [1348] = {.lex_state = 40, .external_lex_state = 2}, - [1349] = {.lex_state = 409, .external_lex_state = 2}, - [1350] = {.lex_state = 40, .external_lex_state = 2}, + [1347] = {.lex_state = 408, .external_lex_state = 2}, + [1348] = {.lex_state = 408, .external_lex_state = 2}, + [1349] = {.lex_state = 408, .external_lex_state = 2}, + [1350] = {.lex_state = 408, .external_lex_state = 2}, [1351] = {.lex_state = 409, .external_lex_state = 2}, - [1352] = {.lex_state = 409, .external_lex_state = 2}, - [1353] = {.lex_state = 409, .external_lex_state = 2}, - [1354] = {.lex_state = 409, .external_lex_state = 2}, + [1352] = {.lex_state = 408, .external_lex_state = 2}, + [1353] = {.lex_state = 408, .external_lex_state = 2}, + [1354] = {.lex_state = 40, .external_lex_state = 2}, [1355] = {.lex_state = 408, .external_lex_state = 2}, [1356] = {.lex_state = 40, .external_lex_state = 2}, - [1357] = {.lex_state = 409, .external_lex_state = 2}, - [1358] = {.lex_state = 409, .external_lex_state = 2}, - [1359] = {.lex_state = 40, .external_lex_state = 2}, - [1360] = {.lex_state = 409, .external_lex_state = 2}, - [1361] = {.lex_state = 408, .external_lex_state = 5}, - [1362] = {.lex_state = 409, .external_lex_state = 2}, - [1363] = {.lex_state = 408, .external_lex_state = 2}, - [1364] = {.lex_state = 409, .external_lex_state = 2}, - [1365] = {.lex_state = 409, .external_lex_state = 2}, - [1366] = {.lex_state = 409, .external_lex_state = 2}, + [1357] = {.lex_state = 40, .external_lex_state = 2}, + [1358] = {.lex_state = 40, .external_lex_state = 2}, + [1359] = {.lex_state = 409, .external_lex_state = 2}, + [1360] = {.lex_state = 40, .external_lex_state = 2}, + [1361] = {.lex_state = 40, .external_lex_state = 2}, + [1362] = {.lex_state = 40, .external_lex_state = 2}, + [1363] = {.lex_state = 407, .external_lex_state = 5}, + [1364] = {.lex_state = 40, .external_lex_state = 2}, + [1365] = {.lex_state = 40, .external_lex_state = 2}, + [1366] = {.lex_state = 407, .external_lex_state = 5}, [1367] = {.lex_state = 409, .external_lex_state = 2}, [1368] = {.lex_state = 409, .external_lex_state = 2}, [1369] = {.lex_state = 40, .external_lex_state = 2}, [1370] = {.lex_state = 40, .external_lex_state = 2}, - [1371] = {.lex_state = 40, .external_lex_state = 2}, - [1372] = {.lex_state = 409, .external_lex_state = 2}, + [1371] = {.lex_state = 408, .external_lex_state = 2}, + [1372] = {.lex_state = 40, .external_lex_state = 2}, [1373] = {.lex_state = 40, .external_lex_state = 2}, - [1374] = {.lex_state = 408, .external_lex_state = 5}, - [1375] = {.lex_state = 40, .external_lex_state = 2}, - [1376] = {.lex_state = 408, .external_lex_state = 5}, - [1377] = {.lex_state = 40, .external_lex_state = 2}, - [1378] = {.lex_state = 408, .external_lex_state = 5}, + [1374] = {.lex_state = 40, .external_lex_state = 2}, + [1375] = {.lex_state = 408, .external_lex_state = 2}, + [1376] = {.lex_state = 408, .external_lex_state = 2}, + [1377] = {.lex_state = 408, .external_lex_state = 2}, + [1378] = {.lex_state = 40, .external_lex_state = 2}, [1379] = {.lex_state = 40, .external_lex_state = 2}, - [1380] = {.lex_state = 408, .external_lex_state = 5}, - [1381] = {.lex_state = 40, .external_lex_state = 2}, - [1382] = {.lex_state = 409, .external_lex_state = 2}, - [1383] = {.lex_state = 409, .external_lex_state = 2}, - [1384] = {.lex_state = 40, .external_lex_state = 2}, - [1385] = {.lex_state = 409, .external_lex_state = 2}, - [1386] = {.lex_state = 408, .external_lex_state = 5}, - [1387] = {.lex_state = 408, .external_lex_state = 5}, - [1388] = {.lex_state = 409, .external_lex_state = 2}, - [1389] = {.lex_state = 409, .external_lex_state = 2}, - [1390] = {.lex_state = 409, .external_lex_state = 2}, - [1391] = {.lex_state = 409, .external_lex_state = 2}, - [1392] = {.lex_state = 409, .external_lex_state = 2}, + [1380] = {.lex_state = 408, .external_lex_state = 2}, + [1381] = {.lex_state = 408, .external_lex_state = 2}, + [1382] = {.lex_state = 407, .external_lex_state = 2}, + [1383] = {.lex_state = 407, .external_lex_state = 5}, + [1384] = {.lex_state = 407, .external_lex_state = 5}, + [1385] = {.lex_state = 407, .external_lex_state = 5}, + [1386] = {.lex_state = 407, .external_lex_state = 5}, + [1387] = {.lex_state = 407, .external_lex_state = 5}, + [1388] = {.lex_state = 407, .external_lex_state = 5}, + [1389] = {.lex_state = 408, .external_lex_state = 2}, + [1390] = {.lex_state = 408, .external_lex_state = 2}, + [1391] = {.lex_state = 408, .external_lex_state = 2}, + [1392] = {.lex_state = 408, .external_lex_state = 2}, [1393] = {.lex_state = 40, .external_lex_state = 2}, [1394] = {.lex_state = 40, .external_lex_state = 2}, - [1395] = {.lex_state = 40, .external_lex_state = 2}, - [1396] = {.lex_state = 409, .external_lex_state = 2}, + [1395] = {.lex_state = 407, .external_lex_state = 2}, + [1396] = {.lex_state = 407, .external_lex_state = 5}, [1397] = {.lex_state = 40, .external_lex_state = 2}, - [1398] = {.lex_state = 409, .external_lex_state = 2}, - [1399] = {.lex_state = 409, .external_lex_state = 2}, - [1400] = {.lex_state = 409, .external_lex_state = 2}, - [1401] = {.lex_state = 409, .external_lex_state = 2}, - [1402] = {.lex_state = 409, .external_lex_state = 2}, - [1403] = {.lex_state = 40, .external_lex_state = 2}, - [1404] = {.lex_state = 408, .external_lex_state = 5}, - [1405] = {.lex_state = 40, .external_lex_state = 2}, - [1406] = {.lex_state = 409, .external_lex_state = 2}, - [1407] = {.lex_state = 409, .external_lex_state = 2}, - [1408] = {.lex_state = 409, .external_lex_state = 2}, - [1409] = {.lex_state = 409, .external_lex_state = 2}, - [1410] = {.lex_state = 409, .external_lex_state = 2}, - [1411] = {.lex_state = 409, .external_lex_state = 2}, - [1412] = {.lex_state = 409, .external_lex_state = 2}, - [1413] = {.lex_state = 409, .external_lex_state = 2}, - [1414] = {.lex_state = 40, .external_lex_state = 2}, - [1415] = {.lex_state = 409, .external_lex_state = 2}, - [1416] = {.lex_state = 409, .external_lex_state = 2}, - [1417] = {.lex_state = 409, .external_lex_state = 2}, - [1418] = {.lex_state = 409, .external_lex_state = 2}, + [1398] = {.lex_state = 408, .external_lex_state = 2}, + [1399] = {.lex_state = 408, .external_lex_state = 2}, + [1400] = {.lex_state = 40, .external_lex_state = 2}, + [1401] = {.lex_state = 408, .external_lex_state = 2}, + [1402] = {.lex_state = 408, .external_lex_state = 2}, + [1403] = {.lex_state = 408, .external_lex_state = 2}, + [1404] = {.lex_state = 408, .external_lex_state = 2}, + [1405] = {.lex_state = 408, .external_lex_state = 2}, + [1406] = {.lex_state = 408, .external_lex_state = 2}, + [1407] = {.lex_state = 40, .external_lex_state = 2}, + [1408] = {.lex_state = 408, .external_lex_state = 2}, + [1409] = {.lex_state = 40, .external_lex_state = 2}, + [1410] = {.lex_state = 40, .external_lex_state = 2}, + [1411] = {.lex_state = 40, .external_lex_state = 2}, + [1412] = {.lex_state = 408, .external_lex_state = 2}, + [1413] = {.lex_state = 40, .external_lex_state = 2}, + [1414] = {.lex_state = 408, .external_lex_state = 2}, + [1415] = {.lex_state = 408, .external_lex_state = 2}, + [1416] = {.lex_state = 40, .external_lex_state = 2}, + [1417] = {.lex_state = 40, .external_lex_state = 2}, + [1418] = {.lex_state = 40, .external_lex_state = 2}, [1419] = {.lex_state = 40, .external_lex_state = 2}, - [1420] = {.lex_state = 409, .external_lex_state = 2}, - [1421] = {.lex_state = 409, .external_lex_state = 2}, + [1420] = {.lex_state = 407, .external_lex_state = 5}, + [1421] = {.lex_state = 408, .external_lex_state = 2}, [1422] = {.lex_state = 40, .external_lex_state = 2}, - [1423] = {.lex_state = 40, .external_lex_state = 2}, - [1424] = {.lex_state = 409, .external_lex_state = 2}, + [1423] = {.lex_state = 408, .external_lex_state = 2}, + [1424] = {.lex_state = 40, .external_lex_state = 2}, [1425] = {.lex_state = 40, .external_lex_state = 2}, [1426] = {.lex_state = 40, .external_lex_state = 2}, - [1427] = {.lex_state = 409, .external_lex_state = 2}, - [1428] = {.lex_state = 409, .external_lex_state = 2}, - [1429] = {.lex_state = 409, .external_lex_state = 2}, + [1427] = {.lex_state = 408, .external_lex_state = 2}, + [1428] = {.lex_state = 40, .external_lex_state = 2}, + [1429] = {.lex_state = 408, .external_lex_state = 2}, [1430] = {.lex_state = 40, .external_lex_state = 2}, [1431] = {.lex_state = 40, .external_lex_state = 2}, - [1432] = {.lex_state = 409, .external_lex_state = 2}, + [1432] = {.lex_state = 408, .external_lex_state = 2}, [1433] = {.lex_state = 40, .external_lex_state = 2}, - [1434] = {.lex_state = 409, .external_lex_state = 2}, - [1435] = {.lex_state = 409, .external_lex_state = 2}, - [1436] = {.lex_state = 40, .external_lex_state = 2}, - [1437] = {.lex_state = 409, .external_lex_state = 2}, - [1438] = {.lex_state = 409, .external_lex_state = 2}, - [1439] = {.lex_state = 409, .external_lex_state = 2}, - [1440] = {.lex_state = 409, .external_lex_state = 2}, - [1441] = {.lex_state = 40, .external_lex_state = 2}, - [1442] = {.lex_state = 409, .external_lex_state = 2}, - [1443] = {.lex_state = 409, .external_lex_state = 2}, - [1444] = {.lex_state = 409, .external_lex_state = 2}, - [1445] = {.lex_state = 408, .external_lex_state = 2}, - [1446] = {.lex_state = 408, .external_lex_state = 2}, - [1447] = {.lex_state = 408, .external_lex_state = 2}, - [1448] = {.lex_state = 408, .external_lex_state = 2}, - [1449] = {.lex_state = 408, .external_lex_state = 2}, - [1450] = {.lex_state = 408, .external_lex_state = 2}, - [1451] = {.lex_state = 408, .external_lex_state = 2}, - [1452] = {.lex_state = 408, .external_lex_state = 2}, - [1453] = {.lex_state = 408, .external_lex_state = 2}, - [1454] = {.lex_state = 408, .external_lex_state = 2}, - [1455] = {.lex_state = 408, .external_lex_state = 2}, - [1456] = {.lex_state = 408, .external_lex_state = 2}, - [1457] = {.lex_state = 408, .external_lex_state = 2}, - [1458] = {.lex_state = 408, .external_lex_state = 2}, - [1459] = {.lex_state = 408, .external_lex_state = 2}, - [1460] = {.lex_state = 408, .external_lex_state = 2}, - [1461] = {.lex_state = 408, .external_lex_state = 2}, - [1462] = {.lex_state = 408, .external_lex_state = 2}, - [1463] = {.lex_state = 408, .external_lex_state = 2}, - [1464] = {.lex_state = 408, .external_lex_state = 2}, - [1465] = {.lex_state = 408, .external_lex_state = 2}, - [1466] = {.lex_state = 408, .external_lex_state = 2}, - [1467] = {.lex_state = 408, .external_lex_state = 2}, - [1468] = {.lex_state = 408, .external_lex_state = 2}, - [1469] = {.lex_state = 408, .external_lex_state = 2}, - [1470] = {.lex_state = 408, .external_lex_state = 2}, - [1471] = {.lex_state = 408, .external_lex_state = 2}, - [1472] = {.lex_state = 408, .external_lex_state = 2}, - [1473] = {.lex_state = 408, .external_lex_state = 2}, - [1474] = {.lex_state = 408, .external_lex_state = 2}, - [1475] = {.lex_state = 408, .external_lex_state = 2}, - [1476] = {.lex_state = 408, .external_lex_state = 2}, - [1477] = {.lex_state = 408, .external_lex_state = 2}, - [1478] = {.lex_state = 408, .external_lex_state = 2}, - [1479] = {.lex_state = 408, .external_lex_state = 2}, - [1480] = {.lex_state = 408, .external_lex_state = 2}, - [1481] = {.lex_state = 408, .external_lex_state = 2}, - [1482] = {.lex_state = 408, .external_lex_state = 2}, - [1483] = {.lex_state = 408, .external_lex_state = 2}, - [1484] = {.lex_state = 408, .external_lex_state = 2}, - [1485] = {.lex_state = 408, .external_lex_state = 2}, - [1486] = {.lex_state = 408, .external_lex_state = 2}, - [1487] = {.lex_state = 408, .external_lex_state = 2}, - [1488] = {.lex_state = 408, .external_lex_state = 2}, - [1489] = {.lex_state = 408, .external_lex_state = 2}, - [1490] = {.lex_state = 408, .external_lex_state = 2}, - [1491] = {.lex_state = 408, .external_lex_state = 2}, - [1492] = {.lex_state = 408, .external_lex_state = 2}, - [1493] = {.lex_state = 408, .external_lex_state = 2}, - [1494] = {.lex_state = 408, .external_lex_state = 2}, - [1495] = {.lex_state = 408, .external_lex_state = 2}, - [1496] = {.lex_state = 408, .external_lex_state = 2}, - [1497] = {.lex_state = 408, .external_lex_state = 2}, - [1498] = {.lex_state = 408, .external_lex_state = 2}, - [1499] = {.lex_state = 408, .external_lex_state = 2}, - [1500] = {.lex_state = 408, .external_lex_state = 2}, - [1501] = {.lex_state = 408, .external_lex_state = 2}, - [1502] = {.lex_state = 408, .external_lex_state = 2}, - [1503] = {.lex_state = 408, .external_lex_state = 2}, - [1504] = {.lex_state = 408, .external_lex_state = 2}, - [1505] = {.lex_state = 408, .external_lex_state = 2}, - [1506] = {.lex_state = 408, .external_lex_state = 2}, - [1507] = {.lex_state = 408, .external_lex_state = 2}, - [1508] = {.lex_state = 408, .external_lex_state = 2}, - [1509] = {.lex_state = 408, .external_lex_state = 2}, - [1510] = {.lex_state = 408, .external_lex_state = 2}, - [1511] = {.lex_state = 408, .external_lex_state = 2}, - [1512] = {.lex_state = 408, .external_lex_state = 2}, - [1513] = {.lex_state = 408, .external_lex_state = 2}, - [1514] = {.lex_state = 408, .external_lex_state = 2}, - [1515] = {.lex_state = 408, .external_lex_state = 2}, - [1516] = {.lex_state = 408, .external_lex_state = 2}, - [1517] = {.lex_state = 408, .external_lex_state = 2}, - [1518] = {.lex_state = 408, .external_lex_state = 2}, - [1519] = {.lex_state = 408, .external_lex_state = 2}, - [1520] = {.lex_state = 408, .external_lex_state = 2}, - [1521] = {.lex_state = 408, .external_lex_state = 2}, - [1522] = {.lex_state = 408, .external_lex_state = 2}, - [1523] = {.lex_state = 408, .external_lex_state = 2}, - [1524] = {.lex_state = 408, .external_lex_state = 2}, - [1525] = {.lex_state = 408, .external_lex_state = 2}, - [1526] = {.lex_state = 408, .external_lex_state = 2}, - [1527] = {.lex_state = 408, .external_lex_state = 2}, - [1528] = {.lex_state = 408, .external_lex_state = 2}, - [1529] = {.lex_state = 408, .external_lex_state = 2}, - [1530] = {.lex_state = 408, .external_lex_state = 2}, - [1531] = {.lex_state = 408, .external_lex_state = 2}, - [1532] = {.lex_state = 408, .external_lex_state = 2}, - [1533] = {.lex_state = 408, .external_lex_state = 2}, - [1534] = {.lex_state = 408, .external_lex_state = 2}, - [1535] = {.lex_state = 408, .external_lex_state = 2}, - [1536] = {.lex_state = 408, .external_lex_state = 2}, - [1537] = {.lex_state = 408, .external_lex_state = 2}, - [1538] = {.lex_state = 408, .external_lex_state = 2}, - [1539] = {.lex_state = 408, .external_lex_state = 2}, - [1540] = {.lex_state = 408, .external_lex_state = 2}, - [1541] = {.lex_state = 408, .external_lex_state = 2}, - [1542] = {.lex_state = 408, .external_lex_state = 2}, - [1543] = {.lex_state = 408, .external_lex_state = 2}, - [1544] = {.lex_state = 408, .external_lex_state = 2}, - [1545] = {.lex_state = 408, .external_lex_state = 2}, - [1546] = {.lex_state = 408, .external_lex_state = 2}, - [1547] = {.lex_state = 408, .external_lex_state = 2}, - [1548] = {.lex_state = 408, .external_lex_state = 2}, - [1549] = {.lex_state = 408, .external_lex_state = 2}, - [1550] = {.lex_state = 408, .external_lex_state = 2}, - [1551] = {.lex_state = 408, .external_lex_state = 2}, - [1552] = {.lex_state = 408, .external_lex_state = 2}, - [1553] = {.lex_state = 408, .external_lex_state = 2}, - [1554] = {.lex_state = 408, .external_lex_state = 2}, - [1555] = {.lex_state = 408, .external_lex_state = 2}, - [1556] = {.lex_state = 408, .external_lex_state = 2}, - [1557] = {.lex_state = 408, .external_lex_state = 2}, - [1558] = {.lex_state = 408, .external_lex_state = 2}, - [1559] = {.lex_state = 408, .external_lex_state = 2}, - [1560] = {.lex_state = 408, .external_lex_state = 2}, - [1561] = {.lex_state = 408, .external_lex_state = 2}, - [1562] = {.lex_state = 408, .external_lex_state = 2}, - [1563] = {.lex_state = 408, .external_lex_state = 2}, - [1564] = {.lex_state = 408, .external_lex_state = 2}, - [1565] = {.lex_state = 408, .external_lex_state = 2}, - [1566] = {.lex_state = 408, .external_lex_state = 2}, - [1567] = {.lex_state = 408, .external_lex_state = 2}, - [1568] = {.lex_state = 408, .external_lex_state = 2}, - [1569] = {.lex_state = 408, .external_lex_state = 2}, - [1570] = {.lex_state = 408, .external_lex_state = 2}, - [1571] = {.lex_state = 408, .external_lex_state = 2}, - [1572] = {.lex_state = 408, .external_lex_state = 2}, + [1434] = {.lex_state = 408, .external_lex_state = 2}, + [1435] = {.lex_state = 408, .external_lex_state = 2}, + [1436] = {.lex_state = 408, .external_lex_state = 2}, + [1437] = {.lex_state = 408, .external_lex_state = 2}, + [1438] = {.lex_state = 408, .external_lex_state = 2}, + [1439] = {.lex_state = 408, .external_lex_state = 2}, + [1440] = {.lex_state = 40, .external_lex_state = 2}, + [1441] = {.lex_state = 408, .external_lex_state = 2}, + [1442] = {.lex_state = 408, .external_lex_state = 2}, + [1443] = {.lex_state = 40, .external_lex_state = 2}, + [1444] = {.lex_state = 40, .external_lex_state = 2}, + [1445] = {.lex_state = 407, .external_lex_state = 2}, + [1446] = {.lex_state = 407, .external_lex_state = 2}, + [1447] = {.lex_state = 407, .external_lex_state = 2}, + [1448] = {.lex_state = 407, .external_lex_state = 2}, + [1449] = {.lex_state = 407, .external_lex_state = 2}, + [1450] = {.lex_state = 407, .external_lex_state = 2}, + [1451] = {.lex_state = 407, .external_lex_state = 2}, + [1452] = {.lex_state = 407, .external_lex_state = 2}, + [1453] = {.lex_state = 407, .external_lex_state = 2}, + [1454] = {.lex_state = 407, .external_lex_state = 2}, + [1455] = {.lex_state = 407, .external_lex_state = 2}, + [1456] = {.lex_state = 407, .external_lex_state = 2}, + [1457] = {.lex_state = 407, .external_lex_state = 2}, + [1458] = {.lex_state = 407, .external_lex_state = 2}, + [1459] = {.lex_state = 407, .external_lex_state = 2}, + [1460] = {.lex_state = 407, .external_lex_state = 2}, + [1461] = {.lex_state = 407, .external_lex_state = 2}, + [1462] = {.lex_state = 407, .external_lex_state = 2}, + [1463] = {.lex_state = 407, .external_lex_state = 2}, + [1464] = {.lex_state = 407, .external_lex_state = 2}, + [1465] = {.lex_state = 407, .external_lex_state = 2}, + [1466] = {.lex_state = 407, .external_lex_state = 2}, + [1467] = {.lex_state = 407, .external_lex_state = 2}, + [1468] = {.lex_state = 407, .external_lex_state = 2}, + [1469] = {.lex_state = 407, .external_lex_state = 2}, + [1470] = {.lex_state = 407, .external_lex_state = 2}, + [1471] = {.lex_state = 407, .external_lex_state = 2}, + [1472] = {.lex_state = 407, .external_lex_state = 2}, + [1473] = {.lex_state = 407, .external_lex_state = 2}, + [1474] = {.lex_state = 407, .external_lex_state = 2}, + [1475] = {.lex_state = 407, .external_lex_state = 2}, + [1476] = {.lex_state = 407, .external_lex_state = 2}, + [1477] = {.lex_state = 407, .external_lex_state = 2}, + [1478] = {.lex_state = 407, .external_lex_state = 2}, + [1479] = {.lex_state = 407, .external_lex_state = 2}, + [1480] = {.lex_state = 407, .external_lex_state = 2}, + [1481] = {.lex_state = 407, .external_lex_state = 2}, + [1482] = {.lex_state = 407, .external_lex_state = 2}, + [1483] = {.lex_state = 407, .external_lex_state = 2}, + [1484] = {.lex_state = 407, .external_lex_state = 2}, + [1485] = {.lex_state = 407, .external_lex_state = 2}, + [1486] = {.lex_state = 407, .external_lex_state = 2}, + [1487] = {.lex_state = 407, .external_lex_state = 2}, + [1488] = {.lex_state = 407, .external_lex_state = 2}, + [1489] = {.lex_state = 407, .external_lex_state = 2}, + [1490] = {.lex_state = 407, .external_lex_state = 2}, + [1491] = {.lex_state = 407, .external_lex_state = 2}, + [1492] = {.lex_state = 407, .external_lex_state = 2}, + [1493] = {.lex_state = 407, .external_lex_state = 2}, + [1494] = {.lex_state = 407, .external_lex_state = 2}, + [1495] = {.lex_state = 407, .external_lex_state = 2}, + [1496] = {.lex_state = 407, .external_lex_state = 2}, + [1497] = {.lex_state = 407, .external_lex_state = 2}, + [1498] = {.lex_state = 407, .external_lex_state = 2}, + [1499] = {.lex_state = 407, .external_lex_state = 2}, + [1500] = {.lex_state = 407, .external_lex_state = 2}, + [1501] = {.lex_state = 407, .external_lex_state = 2}, + [1502] = {.lex_state = 407, .external_lex_state = 2}, + [1503] = {.lex_state = 407, .external_lex_state = 2}, + [1504] = {.lex_state = 407, .external_lex_state = 2}, + [1505] = {.lex_state = 407, .external_lex_state = 2}, + [1506] = {.lex_state = 407, .external_lex_state = 2}, + [1507] = {.lex_state = 407, .external_lex_state = 2}, + [1508] = {.lex_state = 407, .external_lex_state = 2}, + [1509] = {.lex_state = 407, .external_lex_state = 2}, + [1510] = {.lex_state = 407, .external_lex_state = 2}, + [1511] = {.lex_state = 407, .external_lex_state = 2}, + [1512] = {.lex_state = 407, .external_lex_state = 2}, + [1513] = {.lex_state = 407, .external_lex_state = 2}, + [1514] = {.lex_state = 407, .external_lex_state = 2}, + [1515] = {.lex_state = 407, .external_lex_state = 2}, + [1516] = {.lex_state = 407, .external_lex_state = 2}, + [1517] = {.lex_state = 407, .external_lex_state = 2}, + [1518] = {.lex_state = 407, .external_lex_state = 2}, + [1519] = {.lex_state = 407, .external_lex_state = 2}, + [1520] = {.lex_state = 407, .external_lex_state = 2}, + [1521] = {.lex_state = 407, .external_lex_state = 2}, + [1522] = {.lex_state = 407, .external_lex_state = 2}, + [1523] = {.lex_state = 407, .external_lex_state = 2}, + [1524] = {.lex_state = 407, .external_lex_state = 2}, + [1525] = {.lex_state = 407, .external_lex_state = 2}, + [1526] = {.lex_state = 407, .external_lex_state = 2}, + [1527] = {.lex_state = 407, .external_lex_state = 2}, + [1528] = {.lex_state = 407, .external_lex_state = 2}, + [1529] = {.lex_state = 407, .external_lex_state = 2}, + [1530] = {.lex_state = 407, .external_lex_state = 2}, + [1531] = {.lex_state = 407, .external_lex_state = 2}, + [1532] = {.lex_state = 407, .external_lex_state = 2}, + [1533] = {.lex_state = 407, .external_lex_state = 2}, + [1534] = {.lex_state = 407, .external_lex_state = 2}, + [1535] = {.lex_state = 407, .external_lex_state = 2}, + [1536] = {.lex_state = 407, .external_lex_state = 2}, + [1537] = {.lex_state = 407, .external_lex_state = 2}, + [1538] = {.lex_state = 407, .external_lex_state = 2}, + [1539] = {.lex_state = 407, .external_lex_state = 2}, + [1540] = {.lex_state = 407, .external_lex_state = 2}, + [1541] = {.lex_state = 407, .external_lex_state = 2}, + [1542] = {.lex_state = 407, .external_lex_state = 2}, + [1543] = {.lex_state = 407, .external_lex_state = 2}, + [1544] = {.lex_state = 407, .external_lex_state = 2}, + [1545] = {.lex_state = 407, .external_lex_state = 2}, + [1546] = {.lex_state = 407, .external_lex_state = 2}, + [1547] = {.lex_state = 407, .external_lex_state = 2}, + [1548] = {.lex_state = 407, .external_lex_state = 2}, + [1549] = {.lex_state = 407, .external_lex_state = 2}, + [1550] = {.lex_state = 407, .external_lex_state = 2}, + [1551] = {.lex_state = 407, .external_lex_state = 2}, + [1552] = {.lex_state = 407, .external_lex_state = 2}, + [1553] = {.lex_state = 407, .external_lex_state = 2}, + [1554] = {.lex_state = 407, .external_lex_state = 2}, + [1555] = {.lex_state = 407, .external_lex_state = 2}, + [1556] = {.lex_state = 407, .external_lex_state = 2}, + [1557] = {.lex_state = 407, .external_lex_state = 2}, + [1558] = {.lex_state = 407, .external_lex_state = 2}, + [1559] = {.lex_state = 407, .external_lex_state = 2}, + [1560] = {.lex_state = 407, .external_lex_state = 2}, + [1561] = {.lex_state = 407, .external_lex_state = 2}, + [1562] = {.lex_state = 407, .external_lex_state = 2}, + [1563] = {.lex_state = 407, .external_lex_state = 2}, + [1564] = {.lex_state = 407, .external_lex_state = 2}, + [1565] = {.lex_state = 407, .external_lex_state = 2}, + [1566] = {.lex_state = 407, .external_lex_state = 2}, + [1567] = {.lex_state = 407, .external_lex_state = 2}, + [1568] = {.lex_state = 407, .external_lex_state = 2}, + [1569] = {.lex_state = 407, .external_lex_state = 2}, + [1570] = {.lex_state = 407, .external_lex_state = 2}, + [1571] = {.lex_state = 407, .external_lex_state = 2}, + [1572] = {.lex_state = 407, .external_lex_state = 2}, [1573] = {.lex_state = 51, .external_lex_state = 2}, [1574] = {.lex_state = 51, .external_lex_state = 2}, [1575] = {.lex_state = 51, .external_lex_state = 2}, [1576] = {.lex_state = 51, .external_lex_state = 2}, [1577] = {.lex_state = 51, .external_lex_state = 2}, [1578] = {.lex_state = 51, .external_lex_state = 2}, - [1579] = {.lex_state = 51, .external_lex_state = 2}, - [1580] = {.lex_state = 408, .external_lex_state = 2}, - [1581] = {.lex_state = 408, .external_lex_state = 2}, - [1582] = {.lex_state = 408, .external_lex_state = 2}, + [1579] = {.lex_state = 407, .external_lex_state = 2}, + [1580] = {.lex_state = 407, .external_lex_state = 2}, + [1581] = {.lex_state = 407, .external_lex_state = 2}, + [1582] = {.lex_state = 51, .external_lex_state = 2}, [1583] = {.lex_state = 51, .external_lex_state = 2}, - [1584] = {.lex_state = 408, .external_lex_state = 2}, - [1585] = {.lex_state = 408, .external_lex_state = 2}, - [1586] = {.lex_state = 408, .external_lex_state = 2}, - [1587] = {.lex_state = 51, .external_lex_state = 2}, - [1588] = {.lex_state = 408, .external_lex_state = 2}, + [1584] = {.lex_state = 51, .external_lex_state = 2}, + [1585] = {.lex_state = 51, .external_lex_state = 2}, + [1586] = {.lex_state = 51, .external_lex_state = 2}, + [1587] = {.lex_state = 407, .external_lex_state = 2}, + [1588] = {.lex_state = 51, .external_lex_state = 2}, [1589] = {.lex_state = 51, .external_lex_state = 2}, [1590] = {.lex_state = 51, .external_lex_state = 2}, - [1591] = {.lex_state = 408, .external_lex_state = 2}, - [1592] = {.lex_state = 408, .external_lex_state = 2}, - [1593] = {.lex_state = 408, .external_lex_state = 2}, - [1594] = {.lex_state = 51, .external_lex_state = 2}, - [1595] = {.lex_state = 408, .external_lex_state = 2}, - [1596] = {.lex_state = 51, .external_lex_state = 2}, - [1597] = {.lex_state = 408, .external_lex_state = 2}, - [1598] = {.lex_state = 51, .external_lex_state = 2}, - [1599] = {.lex_state = 51, .external_lex_state = 2}, - [1600] = {.lex_state = 408, .external_lex_state = 2}, - [1601] = {.lex_state = 52, .external_lex_state = 2}, + [1591] = {.lex_state = 407, .external_lex_state = 2}, + [1592] = {.lex_state = 407, .external_lex_state = 2}, + [1593] = {.lex_state = 51, .external_lex_state = 2}, + [1594] = {.lex_state = 407, .external_lex_state = 2}, + [1595] = {.lex_state = 407, .external_lex_state = 2}, + [1596] = {.lex_state = 407, .external_lex_state = 2}, + [1597] = {.lex_state = 407, .external_lex_state = 2}, + [1598] = {.lex_state = 407, .external_lex_state = 2}, + [1599] = {.lex_state = 407, .external_lex_state = 2}, + [1600] = {.lex_state = 407, .external_lex_state = 2}, + [1601] = {.lex_state = 51, .external_lex_state = 2}, [1602] = {.lex_state = 52, .external_lex_state = 2}, - [1603] = {.lex_state = 51, .external_lex_state = 2}, + [1603] = {.lex_state = 52, .external_lex_state = 2}, [1604] = {.lex_state = 52, .external_lex_state = 2}, [1605] = {.lex_state = 52, .external_lex_state = 2}, [1606] = {.lex_state = 52, .external_lex_state = 2}, @@ -23812,19 +23813,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1676] = {.lex_state = 38, .external_lex_state = 2}, [1677] = {.lex_state = 38, .external_lex_state = 2}, [1678] = {.lex_state = 38, .external_lex_state = 2}, - [1679] = {.lex_state = 51, .external_lex_state = 2}, - [1680] = {.lex_state = 18, .external_lex_state = 4}, - [1681] = {.lex_state = 51, .external_lex_state = 2}, - [1682] = {.lex_state = 18, .external_lex_state = 4}, - [1683] = {.lex_state = 51, .external_lex_state = 2}, + [1679] = {.lex_state = 18, .external_lex_state = 4}, + [1680] = {.lex_state = 51, .external_lex_state = 2}, + [1681] = {.lex_state = 18, .external_lex_state = 4}, + [1682] = {.lex_state = 51, .external_lex_state = 2}, + [1683] = {.lex_state = 18, .external_lex_state = 4}, [1684] = {.lex_state = 18, .external_lex_state = 4}, [1685] = {.lex_state = 18, .external_lex_state = 4}, - [1686] = {.lex_state = 51, .external_lex_state = 2}, - [1687] = {.lex_state = 18, .external_lex_state = 4}, - [1688] = {.lex_state = 18, .external_lex_state = 4}, + [1686] = {.lex_state = 18, .external_lex_state = 4}, + [1687] = {.lex_state = 51, .external_lex_state = 2}, + [1688] = {.lex_state = 51, .external_lex_state = 2}, [1689] = {.lex_state = 18, .external_lex_state = 4}, - [1690] = {.lex_state = 53, .external_lex_state = 2}, - [1691] = {.lex_state = 51, .external_lex_state = 2}, + [1690] = {.lex_state = 51, .external_lex_state = 2}, + [1691] = {.lex_state = 53, .external_lex_state = 2}, [1692] = {.lex_state = 18, .external_lex_state = 4}, [1693] = {.lex_state = 18, .external_lex_state = 4}, [1694] = {.lex_state = 51, .external_lex_state = 2}, @@ -23953,262 +23954,262 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 18, .external_lex_state = 3}, [1818] = {.lex_state = 18, .external_lex_state = 3}, [1819] = {.lex_state = 18, .external_lex_state = 3}, - [1820] = {.lex_state = 18, .external_lex_state = 3}, + [1820] = {.lex_state = 38, .external_lex_state = 2}, [1821] = {.lex_state = 38, .external_lex_state = 2}, [1822] = {.lex_state = 18, .external_lex_state = 3}, - [1823] = {.lex_state = 38, .external_lex_state = 2}, + [1823] = {.lex_state = 18, .external_lex_state = 3}, [1824] = {.lex_state = 18, .external_lex_state = 4}, - [1825] = {.lex_state = 18, .external_lex_state = 4}, - [1826] = {.lex_state = 18, .external_lex_state = 4}, + [1825] = {.lex_state = 21, .external_lex_state = 4}, + [1826] = {.lex_state = 21, .external_lex_state = 4}, [1827] = {.lex_state = 18, .external_lex_state = 4}, [1828] = {.lex_state = 18, .external_lex_state = 4}, [1829] = {.lex_state = 18, .external_lex_state = 4}, [1830] = {.lex_state = 18, .external_lex_state = 4}, - [1831] = {.lex_state = 18, .external_lex_state = 4}, + [1831] = {.lex_state = 21, .external_lex_state = 4}, [1832] = {.lex_state = 18, .external_lex_state = 4}, [1833] = {.lex_state = 18, .external_lex_state = 4}, - [1834] = {.lex_state = 21, .external_lex_state = 4}, - [1835] = {.lex_state = 18, .external_lex_state = 4}, + [1834] = {.lex_state = 18, .external_lex_state = 4}, + [1835] = {.lex_state = 21, .external_lex_state = 4}, [1836] = {.lex_state = 18, .external_lex_state = 4}, [1837] = {.lex_state = 18, .external_lex_state = 4}, - [1838] = {.lex_state = 18, .external_lex_state = 4}, + [1838] = {.lex_state = 18, .external_lex_state = 3}, [1839] = {.lex_state = 18, .external_lex_state = 4}, - [1840] = {.lex_state = 21, .external_lex_state = 4}, - [1841] = {.lex_state = 18, .external_lex_state = 3}, + [1840] = {.lex_state = 18, .external_lex_state = 4}, + [1841] = {.lex_state = 18, .external_lex_state = 4}, [1842] = {.lex_state = 18, .external_lex_state = 4}, - [1843] = {.lex_state = 21, .external_lex_state = 4}, - [1844] = {.lex_state = 21, .external_lex_state = 4}, + [1843] = {.lex_state = 18, .external_lex_state = 4}, + [1844] = {.lex_state = 18, .external_lex_state = 4}, [1845] = {.lex_state = 18, .external_lex_state = 4}, [1846] = {.lex_state = 18, .external_lex_state = 4}, - [1847] = {.lex_state = 22, .external_lex_state = 3}, - [1848] = {.lex_state = 18, .external_lex_state = 4}, - [1849] = {.lex_state = 22, .external_lex_state = 3}, - [1850] = {.lex_state = 18, .external_lex_state = 3}, - [1851] = {.lex_state = 18, .external_lex_state = 4}, - [1852] = {.lex_state = 18, .external_lex_state = 4}, - [1853] = {.lex_state = 24, .external_lex_state = 3}, - [1854] = {.lex_state = 24, .external_lex_state = 3}, + [1847] = {.lex_state = 18, .external_lex_state = 3}, + [1848] = {.lex_state = 22, .external_lex_state = 3}, + [1849] = {.lex_state = 18, .external_lex_state = 4}, + [1850] = {.lex_state = 18, .external_lex_state = 4}, + [1851] = {.lex_state = 22, .external_lex_state = 3}, + [1852] = {.lex_state = 24, .external_lex_state = 3}, + [1853] = {.lex_state = 18, .external_lex_state = 4}, + [1854] = {.lex_state = 18, .external_lex_state = 4}, [1855] = {.lex_state = 18, .external_lex_state = 4}, - [1856] = {.lex_state = 24, .external_lex_state = 4}, + [1856] = {.lex_state = 18, .external_lex_state = 4}, [1857] = {.lex_state = 24, .external_lex_state = 3}, - [1858] = {.lex_state = 18, .external_lex_state = 3}, - [1859] = {.lex_state = 18, .external_lex_state = 4}, - [1860] = {.lex_state = 18, .external_lex_state = 3}, - [1861] = {.lex_state = 18, .external_lex_state = 4}, - [1862] = {.lex_state = 18, .external_lex_state = 4}, - [1863] = {.lex_state = 18, .external_lex_state = 4}, + [1858] = {.lex_state = 18, .external_lex_state = 4}, + [1859] = {.lex_state = 24, .external_lex_state = 4}, + [1860] = {.lex_state = 24, .external_lex_state = 3}, + [1861] = {.lex_state = 24, .external_lex_state = 4}, + [1862] = {.lex_state = 24, .external_lex_state = 3}, + [1863] = {.lex_state = 18, .external_lex_state = 3}, [1864] = {.lex_state = 24, .external_lex_state = 3}, - [1865] = {.lex_state = 18, .external_lex_state = 4}, - [1866] = {.lex_state = 24, .external_lex_state = 4}, + [1865] = {.lex_state = 24, .external_lex_state = 3}, + [1866] = {.lex_state = 24, .external_lex_state = 3}, [1867] = {.lex_state = 18, .external_lex_state = 4}, - [1868] = {.lex_state = 24, .external_lex_state = 4}, - [1869] = {.lex_state = 18, .external_lex_state = 4}, + [1868] = {.lex_state = 18, .external_lex_state = 3}, + [1869] = {.lex_state = 18, .external_lex_state = 3}, [1870] = {.lex_state = 18, .external_lex_state = 4}, - [1871] = {.lex_state = 18, .external_lex_state = 4}, - [1872] = {.lex_state = 18, .external_lex_state = 3}, - [1873] = {.lex_state = 24, .external_lex_state = 4}, - [1874] = {.lex_state = 24, .external_lex_state = 3}, + [1871] = {.lex_state = 24, .external_lex_state = 3}, + [1872] = {.lex_state = 18, .external_lex_state = 4}, + [1873] = {.lex_state = 18, .external_lex_state = 4}, + [1874] = {.lex_state = 24, .external_lex_state = 4}, [1875] = {.lex_state = 18, .external_lex_state = 4}, - [1876] = {.lex_state = 24, .external_lex_state = 3}, - [1877] = {.lex_state = 24, .external_lex_state = 3}, + [1876] = {.lex_state = 24, .external_lex_state = 4}, + [1877] = {.lex_state = 18, .external_lex_state = 4}, [1878] = {.lex_state = 18, .external_lex_state = 4}, - [1879] = {.lex_state = 24, .external_lex_state = 3}, - [1880] = {.lex_state = 18, .external_lex_state = 4}, - [1881] = {.lex_state = 24, .external_lex_state = 4}, + [1879] = {.lex_state = 18, .external_lex_state = 4}, + [1880] = {.lex_state = 24, .external_lex_state = 4}, + [1881] = {.lex_state = 18, .external_lex_state = 4}, [1882] = {.lex_state = 18, .external_lex_state = 4}, [1883] = {.lex_state = 18, .external_lex_state = 3}, - [1884] = {.lex_state = 24, .external_lex_state = 4}, + [1884] = {.lex_state = 18, .external_lex_state = 3}, [1885] = {.lex_state = 18, .external_lex_state = 4}, [1886] = {.lex_state = 18, .external_lex_state = 4}, - [1887] = {.lex_state = 18, .external_lex_state = 3}, - [1888] = {.lex_state = 18, .external_lex_state = 4}, - [1889] = {.lex_state = 24, .external_lex_state = 4}, - [1890] = {.lex_state = 24, .external_lex_state = 4}, - [1891] = {.lex_state = 21, .external_lex_state = 3}, - [1892] = {.lex_state = 18, .external_lex_state = 3}, + [1887] = {.lex_state = 24, .external_lex_state = 4}, + [1888] = {.lex_state = 24, .external_lex_state = 4}, + [1889] = {.lex_state = 18, .external_lex_state = 4}, + [1890] = {.lex_state = 21, .external_lex_state = 3}, + [1891] = {.lex_state = 18, .external_lex_state = 3}, + [1892] = {.lex_state = 24, .external_lex_state = 4}, [1893] = {.lex_state = 24, .external_lex_state = 4}, - [1894] = {.lex_state = 24, .external_lex_state = 3}, - [1895] = {.lex_state = 24, .external_lex_state = 3}, - [1896] = {.lex_state = 18, .external_lex_state = 3}, - [1897] = {.lex_state = 18, .external_lex_state = 3}, - [1898] = {.lex_state = 21, .external_lex_state = 3}, + [1894] = {.lex_state = 18, .external_lex_state = 3}, + [1895] = {.lex_state = 37, .external_lex_state = 2}, + [1896] = {.lex_state = 24, .external_lex_state = 4}, + [1897] = {.lex_state = 24, .external_lex_state = 3}, + [1898] = {.lex_state = 24, .external_lex_state = 3}, [1899] = {.lex_state = 24, .external_lex_state = 3}, - [1900] = {.lex_state = 24, .external_lex_state = 3}, + [1900] = {.lex_state = 21, .external_lex_state = 3}, [1901] = {.lex_state = 24, .external_lex_state = 3}, - [1902] = {.lex_state = 24, .external_lex_state = 4}, - [1903] = {.lex_state = 21, .external_lex_state = 3}, + [1902] = {.lex_state = 18, .external_lex_state = 3}, + [1903] = {.lex_state = 24, .external_lex_state = 3}, [1904] = {.lex_state = 24, .external_lex_state = 3}, - [1905] = {.lex_state = 24, .external_lex_state = 3}, - [1906] = {.lex_state = 37, .external_lex_state = 2}, - [1907] = {.lex_state = 37, .external_lex_state = 2}, + [1905] = {.lex_state = 21, .external_lex_state = 3}, + [1906] = {.lex_state = 24, .external_lex_state = 3}, + [1907] = {.lex_state = 24, .external_lex_state = 3}, [1908] = {.lex_state = 24, .external_lex_state = 3}, - [1909] = {.lex_state = 18, .external_lex_state = 3}, - [1910] = {.lex_state = 24, .external_lex_state = 3}, - [1911] = {.lex_state = 21, .external_lex_state = 3}, - [1912] = {.lex_state = 24, .external_lex_state = 3}, + [1909] = {.lex_state = 24, .external_lex_state = 3}, + [1910] = {.lex_state = 24, .external_lex_state = 4}, + [1911] = {.lex_state = 24, .external_lex_state = 3}, + [1912] = {.lex_state = 37, .external_lex_state = 2}, [1913] = {.lex_state = 18, .external_lex_state = 3}, - [1914] = {.lex_state = 24, .external_lex_state = 4}, - [1915] = {.lex_state = 24, .external_lex_state = 3}, + [1914] = {.lex_state = 24, .external_lex_state = 3}, + [1915] = {.lex_state = 18, .external_lex_state = 3}, [1916] = {.lex_state = 24, .external_lex_state = 3}, - [1917] = {.lex_state = 18, .external_lex_state = 3}, - [1918] = {.lex_state = 18, .external_lex_state = 3}, - [1919] = {.lex_state = 24, .external_lex_state = 3}, + [1917] = {.lex_state = 24, .external_lex_state = 4}, + [1918] = {.lex_state = 24, .external_lex_state = 3}, + [1919] = {.lex_state = 21, .external_lex_state = 3}, [1920] = {.lex_state = 18, .external_lex_state = 3}, - [1921] = {.lex_state = 24, .external_lex_state = 3}, + [1921] = {.lex_state = 18, .external_lex_state = 3}, [1922] = {.lex_state = 24, .external_lex_state = 3}, - [1923] = {.lex_state = 18, .external_lex_state = 3}, - [1924] = {.lex_state = 24, .external_lex_state = 4}, - [1925] = {.lex_state = 24, .external_lex_state = 3}, - [1926] = {.lex_state = 24, .external_lex_state = 4}, - [1927] = {.lex_state = 18, .external_lex_state = 3}, - [1928] = {.lex_state = 24, .external_lex_state = 4}, - [1929] = {.lex_state = 24, .external_lex_state = 3}, + [1923] = {.lex_state = 24, .external_lex_state = 4}, + [1924] = {.lex_state = 24, .external_lex_state = 3}, + [1925] = {.lex_state = 18, .external_lex_state = 3}, + [1926] = {.lex_state = 18, .external_lex_state = 3}, + [1927] = {.lex_state = 24, .external_lex_state = 3}, + [1928] = {.lex_state = 18, .external_lex_state = 3}, + [1929] = {.lex_state = 37, .external_lex_state = 2}, [1930] = {.lex_state = 24, .external_lex_state = 3}, [1931] = {.lex_state = 24, .external_lex_state = 3}, [1932] = {.lex_state = 18, .external_lex_state = 3}, - [1933] = {.lex_state = 24, .external_lex_state = 3}, + [1933] = {.lex_state = 24, .external_lex_state = 4}, [1934] = {.lex_state = 18, .external_lex_state = 3}, - [1935] = {.lex_state = 37, .external_lex_state = 2}, - [1936] = {.lex_state = 18, .external_lex_state = 3}, - [1937] = {.lex_state = 24, .external_lex_state = 3}, + [1935] = {.lex_state = 18, .external_lex_state = 3}, + [1936] = {.lex_state = 24, .external_lex_state = 3}, + [1937] = {.lex_state = 37, .external_lex_state = 2}, [1938] = {.lex_state = 24, .external_lex_state = 3}, - [1939] = {.lex_state = 24, .external_lex_state = 3}, + [1939] = {.lex_state = 24, .external_lex_state = 4}, [1940] = {.lex_state = 24, .external_lex_state = 3}, - [1941] = {.lex_state = 18, .external_lex_state = 4}, + [1941] = {.lex_state = 37, .external_lex_state = 2}, [1942] = {.lex_state = 24, .external_lex_state = 3}, - [1943] = {.lex_state = 24, .external_lex_state = 4}, - [1944] = {.lex_state = 24, .external_lex_state = 3}, - [1945] = {.lex_state = 18, .external_lex_state = 4}, - [1946] = {.lex_state = 37, .external_lex_state = 2}, - [1947] = {.lex_state = 24, .external_lex_state = 3}, - [1948] = {.lex_state = 18, .external_lex_state = 4}, - [1949] = {.lex_state = 24, .external_lex_state = 4}, + [1943] = {.lex_state = 24, .external_lex_state = 3}, + [1944] = {.lex_state = 18, .external_lex_state = 4}, + [1945] = {.lex_state = 24, .external_lex_state = 4}, + [1946] = {.lex_state = 18, .external_lex_state = 4}, + [1947] = {.lex_state = 24, .external_lex_state = 4}, + [1948] = {.lex_state = 24, .external_lex_state = 3}, + [1949] = {.lex_state = 24, .external_lex_state = 3}, [1950] = {.lex_state = 24, .external_lex_state = 3}, - [1951] = {.lex_state = 18, .external_lex_state = 4}, - [1952] = {.lex_state = 24, .external_lex_state = 4}, - [1953] = {.lex_state = 24, .external_lex_state = 3}, + [1951] = {.lex_state = 24, .external_lex_state = 3}, + [1952] = {.lex_state = 24, .external_lex_state = 3}, + [1953] = {.lex_state = 18, .external_lex_state = 4}, [1954] = {.lex_state = 24, .external_lex_state = 3}, - [1955] = {.lex_state = 37, .external_lex_state = 2}, - [1956] = {.lex_state = 37, .external_lex_state = 2}, + [1955] = {.lex_state = 24, .external_lex_state = 3}, + [1956] = {.lex_state = 24, .external_lex_state = 3}, [1957] = {.lex_state = 24, .external_lex_state = 3}, [1958] = {.lex_state = 24, .external_lex_state = 3}, [1959] = {.lex_state = 24, .external_lex_state = 3}, - [1960] = {.lex_state = 24, .external_lex_state = 3}, + [1960] = {.lex_state = 37, .external_lex_state = 2}, [1961] = {.lex_state = 24, .external_lex_state = 3}, - [1962] = {.lex_state = 24, .external_lex_state = 3}, + [1962] = {.lex_state = 18, .external_lex_state = 4}, [1963] = {.lex_state = 18, .external_lex_state = 4}, [1964] = {.lex_state = 24, .external_lex_state = 4}, [1965] = {.lex_state = 24, .external_lex_state = 3}, - [1966] = {.lex_state = 37, .external_lex_state = 2}, + [1966] = {.lex_state = 24, .external_lex_state = 4}, [1967] = {.lex_state = 24, .external_lex_state = 3}, - [1968] = {.lex_state = 24, .external_lex_state = 4}, - [1969] = {.lex_state = 24, .external_lex_state = 3}, - [1970] = {.lex_state = 24, .external_lex_state = 3}, + [1968] = {.lex_state = 37, .external_lex_state = 2}, + [1969] = {.lex_state = 37, .external_lex_state = 2}, + [1970] = {.lex_state = 24, .external_lex_state = 4}, [1971] = {.lex_state = 37, .external_lex_state = 2}, - [1972] = {.lex_state = 24, .external_lex_state = 3}, + [1972] = {.lex_state = 24, .external_lex_state = 4}, [1973] = {.lex_state = 24, .external_lex_state = 4}, [1974] = {.lex_state = 24, .external_lex_state = 4}, - [1975] = {.lex_state = 24, .external_lex_state = 3}, + [1975] = {.lex_state = 24, .external_lex_state = 4}, [1976] = {.lex_state = 24, .external_lex_state = 4}, [1977] = {.lex_state = 24, .external_lex_state = 4}, - [1978] = {.lex_state = 37, .external_lex_state = 2}, + [1978] = {.lex_state = 24, .external_lex_state = 3}, [1979] = {.lex_state = 24, .external_lex_state = 4}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 24, .external_lex_state = 3}, - [1982] = {.lex_state = 24, .external_lex_state = 4}, - [1983] = {.lex_state = 37, .external_lex_state = 2}, - [1984] = {.lex_state = 24, .external_lex_state = 4}, + [1980] = {.lex_state = 24, .external_lex_state = 3}, + [1981] = {.lex_state = 37, .external_lex_state = 2}, + [1982] = {.lex_state = 37, .external_lex_state = 2}, + [1983] = {.lex_state = 24, .external_lex_state = 3}, + [1984] = {.lex_state = 24, .external_lex_state = 3}, [1985] = {.lex_state = 24, .external_lex_state = 4}, [1986] = {.lex_state = 24, .external_lex_state = 3}, [1987] = {.lex_state = 24, .external_lex_state = 4}, - [1988] = {.lex_state = 37, .external_lex_state = 2}, + [1988] = {.lex_state = 24, .external_lex_state = 4}, [1989] = {.lex_state = 24, .external_lex_state = 4}, [1990] = {.lex_state = 24, .external_lex_state = 4}, [1991] = {.lex_state = 24, .external_lex_state = 4}, [1992] = {.lex_state = 24, .external_lex_state = 4}, [1993] = {.lex_state = 24, .external_lex_state = 4}, [1994] = {.lex_state = 24, .external_lex_state = 4}, - [1995] = {.lex_state = 24, .external_lex_state = 4}, + [1995] = {.lex_state = 24, .external_lex_state = 3}, [1996] = {.lex_state = 24, .external_lex_state = 4}, [1997] = {.lex_state = 24, .external_lex_state = 4}, - [1998] = {.lex_state = 24, .external_lex_state = 3}, - [1999] = {.lex_state = 24, .external_lex_state = 4}, - [2000] = {.lex_state = 24, .external_lex_state = 4}, - [2001] = {.lex_state = 24, .external_lex_state = 4}, - [2002] = {.lex_state = 24, .external_lex_state = 3}, - [2003] = {.lex_state = 24, .external_lex_state = 4}, - [2004] = {.lex_state = 24, .external_lex_state = 4}, + [1998] = {.lex_state = 37, .external_lex_state = 2}, + [1999] = {.lex_state = 24, .external_lex_state = 3}, + [2000] = {.lex_state = 24, .external_lex_state = 3}, + [2001] = {.lex_state = 37, .external_lex_state = 2}, + [2002] = {.lex_state = 37, .external_lex_state = 2}, + [2003] = {.lex_state = 24, .external_lex_state = 3}, + [2004] = {.lex_state = 37, .external_lex_state = 2}, [2005] = {.lex_state = 24, .external_lex_state = 4}, - [2006] = {.lex_state = 24, .external_lex_state = 4}, - [2007] = {.lex_state = 37, .external_lex_state = 2}, - [2008] = {.lex_state = 24, .external_lex_state = 4}, - [2009] = {.lex_state = 24, .external_lex_state = 4}, - [2010] = {.lex_state = 24, .external_lex_state = 3}, + [2006] = {.lex_state = 24, .external_lex_state = 3}, + [2007] = {.lex_state = 24, .external_lex_state = 4}, + [2008] = {.lex_state = 37, .external_lex_state = 2}, + [2009] = {.lex_state = 37, .external_lex_state = 2}, + [2010] = {.lex_state = 24, .external_lex_state = 4}, [2011] = {.lex_state = 24, .external_lex_state = 4}, - [2012] = {.lex_state = 37, .external_lex_state = 2}, - [2013] = {.lex_state = 24, .external_lex_state = 3}, - [2014] = {.lex_state = 37, .external_lex_state = 2}, - [2015] = {.lex_state = 37, .external_lex_state = 2}, + [2012] = {.lex_state = 24, .external_lex_state = 4}, + [2013] = {.lex_state = 24, .external_lex_state = 4}, + [2014] = {.lex_state = 24, .external_lex_state = 4}, + [2015] = {.lex_state = 24, .external_lex_state = 3}, [2016] = {.lex_state = 24, .external_lex_state = 4}, [2017] = {.lex_state = 24, .external_lex_state = 4}, [2018] = {.lex_state = 24, .external_lex_state = 4}, - [2019] = {.lex_state = 24, .external_lex_state = 4}, + [2019] = {.lex_state = 24, .external_lex_state = 3}, [2020] = {.lex_state = 24, .external_lex_state = 4}, - [2021] = {.lex_state = 24, .external_lex_state = 3}, - [2022] = {.lex_state = 24, .external_lex_state = 3}, - [2023] = {.lex_state = 24, .external_lex_state = 3}, - [2024] = {.lex_state = 24, .external_lex_state = 3}, - [2025] = {.lex_state = 24, .external_lex_state = 4}, - [2026] = {.lex_state = 24, .external_lex_state = 4}, + [2021] = {.lex_state = 24, .external_lex_state = 4}, + [2022] = {.lex_state = 24, .external_lex_state = 4}, + [2023] = {.lex_state = 24, .external_lex_state = 4}, + [2024] = {.lex_state = 18, .external_lex_state = 4}, + [2025] = {.lex_state = 18, .external_lex_state = 4}, + [2026] = {.lex_state = 18, .external_lex_state = 4}, [2027] = {.lex_state = 24, .external_lex_state = 3}, - [2028] = {.lex_state = 18, .external_lex_state = 4}, + [2028] = {.lex_state = 24, .external_lex_state = 4}, [2029] = {.lex_state = 24, .external_lex_state = 3}, - [2030] = {.lex_state = 18, .external_lex_state = 4}, + [2030] = {.lex_state = 24, .external_lex_state = 3}, [2031] = {.lex_state = 24, .external_lex_state = 3}, - [2032] = {.lex_state = 24, .external_lex_state = 3}, - [2033] = {.lex_state = 24, .external_lex_state = 3}, + [2032] = {.lex_state = 18, .external_lex_state = 4}, + [2033] = {.lex_state = 18, .external_lex_state = 4}, [2034] = {.lex_state = 24, .external_lex_state = 3}, [2035] = {.lex_state = 18, .external_lex_state = 4}, [2036] = {.lex_state = 24, .external_lex_state = 3}, - [2037] = {.lex_state = 18, .external_lex_state = 4}, - [2038] = {.lex_state = 24, .external_lex_state = 4}, + [2037] = {.lex_state = 24, .external_lex_state = 3}, + [2038] = {.lex_state = 24, .external_lex_state = 3}, [2039] = {.lex_state = 24, .external_lex_state = 3}, - [2040] = {.lex_state = 24, .external_lex_state = 3}, - [2041] = {.lex_state = 18, .external_lex_state = 4}, - [2042] = {.lex_state = 18, .external_lex_state = 4}, + [2040] = {.lex_state = 24, .external_lex_state = 4}, + [2041] = {.lex_state = 24, .external_lex_state = 3}, + [2042] = {.lex_state = 24, .external_lex_state = 4}, [2043] = {.lex_state = 24, .external_lex_state = 3}, [2044] = {.lex_state = 24, .external_lex_state = 3}, - [2045] = {.lex_state = 24, .external_lex_state = 3}, - [2046] = {.lex_state = 24, .external_lex_state = 3}, - [2047] = {.lex_state = 24, .external_lex_state = 4}, - [2048] = {.lex_state = 38, .external_lex_state = 2}, - [2049] = {.lex_state = 38, .external_lex_state = 2}, + [2045] = {.lex_state = 38, .external_lex_state = 2}, + [2046] = {.lex_state = 24, .external_lex_state = 4}, + [2047] = {.lex_state = 38, .external_lex_state = 2}, + [2048] = {.lex_state = 24, .external_lex_state = 4}, + [2049] = {.lex_state = 24, .external_lex_state = 3}, [2050] = {.lex_state = 38, .external_lex_state = 2}, - [2051] = {.lex_state = 24, .external_lex_state = 4}, + [2051] = {.lex_state = 24, .external_lex_state = 3}, [2052] = {.lex_state = 38, .external_lex_state = 2}, [2053] = {.lex_state = 38, .external_lex_state = 2}, - [2054] = {.lex_state = 38, .external_lex_state = 2}, + [2054] = {.lex_state = 24, .external_lex_state = 3}, [2055] = {.lex_state = 24, .external_lex_state = 3}, - [2056] = {.lex_state = 24, .external_lex_state = 4}, - [2057] = {.lex_state = 38, .external_lex_state = 2}, + [2056] = {.lex_state = 24, .external_lex_state = 3}, + [2057] = {.lex_state = 24, .external_lex_state = 3}, [2058] = {.lex_state = 24, .external_lex_state = 3}, [2059] = {.lex_state = 24, .external_lex_state = 4}, [2060] = {.lex_state = 24, .external_lex_state = 3}, - [2061] = {.lex_state = 24, .external_lex_state = 3}, - [2062] = {.lex_state = 24, .external_lex_state = 4}, - [2063] = {.lex_state = 24, .external_lex_state = 3}, - [2064] = {.lex_state = 24, .external_lex_state = 3}, - [2065] = {.lex_state = 24, .external_lex_state = 4}, + [2061] = {.lex_state = 38, .external_lex_state = 2}, + [2062] = {.lex_state = 24, .external_lex_state = 3}, + [2063] = {.lex_state = 24, .external_lex_state = 4}, + [2064] = {.lex_state = 38, .external_lex_state = 2}, + [2065] = {.lex_state = 24, .external_lex_state = 3}, [2066] = {.lex_state = 24, .external_lex_state = 3}, - [2067] = {.lex_state = 24, .external_lex_state = 3}, - [2068] = {.lex_state = 38, .external_lex_state = 2}, + [2067] = {.lex_state = 24, .external_lex_state = 4}, + [2068] = {.lex_state = 24, .external_lex_state = 3}, [2069] = {.lex_state = 38, .external_lex_state = 2}, - [2070] = {.lex_state = 24, .external_lex_state = 3}, - [2071] = {.lex_state = 24, .external_lex_state = 3}, + [2070] = {.lex_state = 24, .external_lex_state = 4}, + [2071] = {.lex_state = 38, .external_lex_state = 2}, [2072] = {.lex_state = 24, .external_lex_state = 3}, [2073] = {.lex_state = 24, .external_lex_state = 3}, [2074] = {.lex_state = 24, .external_lex_state = 3}, - [2075] = {.lex_state = 24, .external_lex_state = 3}, + [2075] = {.lex_state = 24, .external_lex_state = 4}, [2076] = {.lex_state = 24, .external_lex_state = 3}, [2077] = {.lex_state = 24, .external_lex_state = 3}, [2078] = {.lex_state = 24, .external_lex_state = 3}, @@ -24217,56 +24218,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2081] = {.lex_state = 24, .external_lex_state = 3}, [2082] = {.lex_state = 24, .external_lex_state = 3}, [2083] = {.lex_state = 24, .external_lex_state = 3}, - [2084] = {.lex_state = 24, .external_lex_state = 4}, + [2084] = {.lex_state = 24, .external_lex_state = 3}, [2085] = {.lex_state = 24, .external_lex_state = 3}, - [2086] = {.lex_state = 24, .external_lex_state = 3}, - [2087] = {.lex_state = 24, .external_lex_state = 3}, - [2088] = {.lex_state = 24, .external_lex_state = 3}, + [2086] = {.lex_state = 38, .external_lex_state = 2}, + [2087] = {.lex_state = 38, .external_lex_state = 2}, + [2088] = {.lex_state = 38, .external_lex_state = 2}, [2089] = {.lex_state = 38, .external_lex_state = 2}, - [2090] = {.lex_state = 38, .external_lex_state = 2}, + [2090] = {.lex_state = 24, .external_lex_state = 3}, [2091] = {.lex_state = 24, .external_lex_state = 3}, [2092] = {.lex_state = 38, .external_lex_state = 2}, [2093] = {.lex_state = 24, .external_lex_state = 3}, - [2094] = {.lex_state = 24, .external_lex_state = 3}, + [2094] = {.lex_state = 38, .external_lex_state = 2}, [2095] = {.lex_state = 38, .external_lex_state = 2}, - [2096] = {.lex_state = 24, .external_lex_state = 3}, - [2097] = {.lex_state = 38, .external_lex_state = 2}, + [2096] = {.lex_state = 38, .external_lex_state = 2}, + [2097] = {.lex_state = 24, .external_lex_state = 3}, [2098] = {.lex_state = 38, .external_lex_state = 2}, - [2099] = {.lex_state = 24, .external_lex_state = 3}, - [2100] = {.lex_state = 24, .external_lex_state = 3}, + [2099] = {.lex_state = 38, .external_lex_state = 2}, + [2100] = {.lex_state = 38, .external_lex_state = 2}, [2101] = {.lex_state = 24, .external_lex_state = 3}, - [2102] = {.lex_state = 24, .external_lex_state = 3}, - [2103] = {.lex_state = 38, .external_lex_state = 2}, - [2104] = {.lex_state = 38, .external_lex_state = 2}, + [2102] = {.lex_state = 38, .external_lex_state = 2}, + [2103] = {.lex_state = 24, .external_lex_state = 3}, + [2104] = {.lex_state = 24, .external_lex_state = 3}, [2105] = {.lex_state = 38, .external_lex_state = 2}, [2106] = {.lex_state = 38, .external_lex_state = 2}, [2107] = {.lex_state = 38, .external_lex_state = 2}, [2108] = {.lex_state = 38, .external_lex_state = 2}, [2109] = {.lex_state = 24, .external_lex_state = 3}, [2110] = {.lex_state = 24, .external_lex_state = 3}, - [2111] = {.lex_state = 24, .external_lex_state = 3}, - [2112] = {.lex_state = 24, .external_lex_state = 3}, - [2113] = {.lex_state = 38, .external_lex_state = 2}, - [2114] = {.lex_state = 38, .external_lex_state = 2}, - [2115] = {.lex_state = 24, .external_lex_state = 3}, - [2116] = {.lex_state = 24, .external_lex_state = 3}, - [2117] = {.lex_state = 38, .external_lex_state = 2}, - [2118] = {.lex_state = 24, .external_lex_state = 3}, + [2111] = {.lex_state = 38, .external_lex_state = 2}, + [2112] = {.lex_state = 38, .external_lex_state = 2}, + [2113] = {.lex_state = 24, .external_lex_state = 3}, + [2114] = {.lex_state = 24, .external_lex_state = 3}, + [2115] = {.lex_state = 38, .external_lex_state = 2}, + [2116] = {.lex_state = 38, .external_lex_state = 2}, + [2117] = {.lex_state = 24, .external_lex_state = 3}, + [2118] = {.lex_state = 38, .external_lex_state = 2}, [2119] = {.lex_state = 38, .external_lex_state = 2}, [2120] = {.lex_state = 38, .external_lex_state = 2}, - [2121] = {.lex_state = 38, .external_lex_state = 2}, - [2122] = {.lex_state = 24, .external_lex_state = 3}, - [2123] = {.lex_state = 38, .external_lex_state = 2}, + [2121] = {.lex_state = 24, .external_lex_state = 3}, + [2122] = {.lex_state = 38, .external_lex_state = 2}, + [2123] = {.lex_state = 24, .external_lex_state = 3}, [2124] = {.lex_state = 24, .external_lex_state = 3}, - [2125] = {.lex_state = 38, .external_lex_state = 2}, + [2125] = {.lex_state = 24, .external_lex_state = 3}, [2126] = {.lex_state = 24, .external_lex_state = 3}, [2127] = {.lex_state = 38, .external_lex_state = 2}, [2128] = {.lex_state = 24, .external_lex_state = 3}, - [2129] = {.lex_state = 38, .external_lex_state = 2}, - [2130] = {.lex_state = 38, .external_lex_state = 2}, + [2129] = {.lex_state = 24, .external_lex_state = 3}, + [2130] = {.lex_state = 24, .external_lex_state = 3}, [2131] = {.lex_state = 38, .external_lex_state = 2}, - [2132] = {.lex_state = 38, .external_lex_state = 2}, - [2133] = {.lex_state = 38, .external_lex_state = 2}, + [2132] = {.lex_state = 24, .external_lex_state = 3}, + [2133] = {.lex_state = 24, .external_lex_state = 3}, [2134] = {.lex_state = 24, .external_lex_state = 3}, [2135] = {.lex_state = 38, .external_lex_state = 2}, [2136] = {.lex_state = 24, .external_lex_state = 3}, @@ -24278,7 +24279,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2142] = {.lex_state = 24, .external_lex_state = 3}, [2143] = {.lex_state = 24, .external_lex_state = 3}, [2144] = {.lex_state = 24, .external_lex_state = 3}, - [2145] = {.lex_state = 38, .external_lex_state = 2}, + [2145] = {.lex_state = 24, .external_lex_state = 3}, [2146] = {.lex_state = 38, .external_lex_state = 2}, [2147] = {.lex_state = 38, .external_lex_state = 2}, [2148] = {.lex_state = 38, .external_lex_state = 2}, @@ -24288,79 +24289,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2152] = {.lex_state = 38, .external_lex_state = 2}, [2153] = {.lex_state = 38, .external_lex_state = 2}, [2154] = {.lex_state = 38, .external_lex_state = 2}, - [2155] = {.lex_state = 48, .external_lex_state = 5}, + [2155] = {.lex_state = 38, .external_lex_state = 2}, [2156] = {.lex_state = 48, .external_lex_state = 5}, [2157] = {.lex_state = 48, .external_lex_state = 5}, [2158] = {.lex_state = 48, .external_lex_state = 5}, [2159] = {.lex_state = 48, .external_lex_state = 5}, - [2160] = {.lex_state = 38, .external_lex_state = 2}, + [2160] = {.lex_state = 48, .external_lex_state = 5}, [2161] = {.lex_state = 38, .external_lex_state = 2}, - [2162] = {.lex_state = 39, .external_lex_state = 2}, - [2163] = {.lex_state = 38, .external_lex_state = 2}, - [2164] = {.lex_state = 38, .external_lex_state = 2}, + [2162] = {.lex_state = 38, .external_lex_state = 2}, + [2163] = {.lex_state = 39, .external_lex_state = 2}, + [2164] = {.lex_state = 39, .external_lex_state = 2}, [2165] = {.lex_state = 38, .external_lex_state = 2}, - [2166] = {.lex_state = 39, .external_lex_state = 2}, + [2166] = {.lex_state = 38, .external_lex_state = 2}, [2167] = {.lex_state = 38, .external_lex_state = 2}, - [2168] = {.lex_state = 38, .external_lex_state = 2}, + [2168] = {.lex_state = 39, .external_lex_state = 2}, [2169] = {.lex_state = 38, .external_lex_state = 2}, [2170] = {.lex_state = 38, .external_lex_state = 2}, - [2171] = {.lex_state = 39, .external_lex_state = 2}, + [2171] = {.lex_state = 38, .external_lex_state = 2}, [2172] = {.lex_state = 38, .external_lex_state = 2}, [2173] = {.lex_state = 38, .external_lex_state = 2}, [2174] = {.lex_state = 38, .external_lex_state = 2}, - [2175] = {.lex_state = 39, .external_lex_state = 2}, - [2176] = {.lex_state = 38, .external_lex_state = 2}, + [2175] = {.lex_state = 38, .external_lex_state = 2}, + [2176] = {.lex_state = 39, .external_lex_state = 2}, [2177] = {.lex_state = 38, .external_lex_state = 2}, [2178] = {.lex_state = 38, .external_lex_state = 2}, - [2179] = {.lex_state = 38, .external_lex_state = 2}, + [2179] = {.lex_state = 39, .external_lex_state = 2}, [2180] = {.lex_state = 38, .external_lex_state = 2}, - [2181] = {.lex_state = 38, .external_lex_state = 2}, - [2182] = {.lex_state = 39, .external_lex_state = 2}, + [2181] = {.lex_state = 39, .external_lex_state = 2}, + [2182] = {.lex_state = 38, .external_lex_state = 2}, [2183] = {.lex_state = 38, .external_lex_state = 2}, [2184] = {.lex_state = 38, .external_lex_state = 2}, - [2185] = {.lex_state = 38, .external_lex_state = 2}, + [2185] = {.lex_state = 39, .external_lex_state = 2}, [2186] = {.lex_state = 38, .external_lex_state = 2}, [2187] = {.lex_state = 38, .external_lex_state = 2}, [2188] = {.lex_state = 38, .external_lex_state = 2}, [2189] = {.lex_state = 38, .external_lex_state = 2}, - [2190] = {.lex_state = 39, .external_lex_state = 2}, + [2190] = {.lex_state = 38, .external_lex_state = 2}, [2191] = {.lex_state = 38, .external_lex_state = 2}, [2192] = {.lex_state = 38, .external_lex_state = 2}, [2193] = {.lex_state = 38, .external_lex_state = 2}, - [2194] = {.lex_state = 39, .external_lex_state = 2}, + [2194] = {.lex_state = 38, .external_lex_state = 2}, [2195] = {.lex_state = 38, .external_lex_state = 2}, [2196] = {.lex_state = 38, .external_lex_state = 2}, [2197] = {.lex_state = 38, .external_lex_state = 2}, [2198] = {.lex_state = 38, .external_lex_state = 2}, [2199] = {.lex_state = 38, .external_lex_state = 2}, - [2200] = {.lex_state = 48, .external_lex_state = 5}, - [2201] = {.lex_state = 29, .external_lex_state = 4}, + [2200] = {.lex_state = 38, .external_lex_state = 2}, + [2201] = {.lex_state = 48, .external_lex_state = 5}, [2202] = {.lex_state = 48, .external_lex_state = 5}, [2203] = {.lex_state = 29, .external_lex_state = 4}, - [2204] = {.lex_state = 29, .external_lex_state = 3}, + [2204] = {.lex_state = 29, .external_lex_state = 4}, [2205] = {.lex_state = 29, .external_lex_state = 3}, [2206] = {.lex_state = 29, .external_lex_state = 3}, [2207] = {.lex_state = 29, .external_lex_state = 3}, - [2208] = {.lex_state = 39, .external_lex_state = 2}, + [2208] = {.lex_state = 29, .external_lex_state = 3}, [2209] = {.lex_state = 29, .external_lex_state = 3}, - [2210] = {.lex_state = 29, .external_lex_state = 3}, + [2210] = {.lex_state = 39, .external_lex_state = 2}, [2211] = {.lex_state = 29, .external_lex_state = 3}, [2212] = {.lex_state = 29, .external_lex_state = 3}, [2213] = {.lex_state = 29, .external_lex_state = 3}, - [2214] = {.lex_state = 29, .external_lex_state = 3}, + [2214] = {.lex_state = 29, .external_lex_state = 4}, [2215] = {.lex_state = 29, .external_lex_state = 3}, - [2216] = {.lex_state = 29, .external_lex_state = 4}, - [2217] = {.lex_state = 29, .external_lex_state = 4}, + [2216] = {.lex_state = 29, .external_lex_state = 3}, + [2217] = {.lex_state = 29, .external_lex_state = 3}, [2218] = {.lex_state = 29, .external_lex_state = 3}, [2219] = {.lex_state = 29, .external_lex_state = 3}, - [2220] = {.lex_state = 29, .external_lex_state = 3}, + [2220] = {.lex_state = 29, .external_lex_state = 4}, [2221] = {.lex_state = 29, .external_lex_state = 4}, [2222] = {.lex_state = 29, .external_lex_state = 3}, [2223] = {.lex_state = 29, .external_lex_state = 3}, [2224] = {.lex_state = 29, .external_lex_state = 3}, [2225] = {.lex_state = 29, .external_lex_state = 3}, - [2226] = {.lex_state = 29, .external_lex_state = 4}, - [2227] = {.lex_state = 29, .external_lex_state = 3}, + [2226] = {.lex_state = 29, .external_lex_state = 3}, + [2227] = {.lex_state = 29, .external_lex_state = 4}, [2228] = {.lex_state = 29, .external_lex_state = 3}, [2229] = {.lex_state = 29, .external_lex_state = 3}, [2230] = {.lex_state = 29, .external_lex_state = 3}, @@ -24371,24 +24372,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2235] = {.lex_state = 29, .external_lex_state = 3}, [2236] = {.lex_state = 29, .external_lex_state = 3}, [2237] = {.lex_state = 29, .external_lex_state = 3}, - [2238] = {.lex_state = 29, .external_lex_state = 3}, + [2238] = {.lex_state = 29, .external_lex_state = 4}, [2239] = {.lex_state = 29, .external_lex_state = 3}, [2240] = {.lex_state = 29, .external_lex_state = 3}, [2241] = {.lex_state = 29, .external_lex_state = 3}, [2242] = {.lex_state = 29, .external_lex_state = 3}, [2243] = {.lex_state = 29, .external_lex_state = 3}, [2244] = {.lex_state = 29, .external_lex_state = 3}, - [2245] = {.lex_state = 29, .external_lex_state = 4}, + [2245] = {.lex_state = 29, .external_lex_state = 3}, [2246] = {.lex_state = 29, .external_lex_state = 3}, - [2247] = {.lex_state = 29, .external_lex_state = 4}, + [2247] = {.lex_state = 29, .external_lex_state = 3}, [2248] = {.lex_state = 29, .external_lex_state = 3}, [2249] = {.lex_state = 29, .external_lex_state = 3}, [2250] = {.lex_state = 29, .external_lex_state = 3}, [2251] = {.lex_state = 29, .external_lex_state = 3}, [2252] = {.lex_state = 29, .external_lex_state = 3}, - [2253] = {.lex_state = 29, .external_lex_state = 3}, + [2253] = {.lex_state = 29, .external_lex_state = 4}, [2254] = {.lex_state = 29, .external_lex_state = 3}, - [2255] = {.lex_state = 29, .external_lex_state = 3}, + [2255] = {.lex_state = 39, .external_lex_state = 5}, [2256] = {.lex_state = 29, .external_lex_state = 3}, [2257] = {.lex_state = 29, .external_lex_state = 3}, [2258] = {.lex_state = 29, .external_lex_state = 3}, @@ -24426,13 +24427,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2290] = {.lex_state = 29, .external_lex_state = 3}, [2291] = {.lex_state = 29, .external_lex_state = 3}, [2292] = {.lex_state = 29, .external_lex_state = 3}, - [2293] = {.lex_state = 29, .external_lex_state = 4}, + [2293] = {.lex_state = 29, .external_lex_state = 3}, [2294] = {.lex_state = 29, .external_lex_state = 3}, [2295] = {.lex_state = 29, .external_lex_state = 3}, [2296] = {.lex_state = 29, .external_lex_state = 3}, [2297] = {.lex_state = 29, .external_lex_state = 3}, [2298] = {.lex_state = 29, .external_lex_state = 3}, - [2299] = {.lex_state = 39, .external_lex_state = 5}, + [2299] = {.lex_state = 29, .external_lex_state = 3}, [2300] = {.lex_state = 29, .external_lex_state = 3}, [2301] = {.lex_state = 29, .external_lex_state = 3}, [2302] = {.lex_state = 29, .external_lex_state = 3}, @@ -24442,13 +24443,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2306] = {.lex_state = 29, .external_lex_state = 3}, [2307] = {.lex_state = 29, .external_lex_state = 3}, [2308] = {.lex_state = 29, .external_lex_state = 3}, - [2309] = {.lex_state = 29, .external_lex_state = 3}, - [2310] = {.lex_state = 29, .external_lex_state = 3}, + [2309] = {.lex_state = 39, .external_lex_state = 5}, + [2310] = {.lex_state = 29, .external_lex_state = 4}, [2311] = {.lex_state = 29, .external_lex_state = 3}, - [2312] = {.lex_state = 39, .external_lex_state = 5}, + [2312] = {.lex_state = 29, .external_lex_state = 3}, [2313] = {.lex_state = 29, .external_lex_state = 3}, [2314] = {.lex_state = 29, .external_lex_state = 3}, - [2315] = {.lex_state = 29, .external_lex_state = 3}, + [2315] = {.lex_state = 29, .external_lex_state = 4}, [2316] = {.lex_state = 29, .external_lex_state = 3}, [2317] = {.lex_state = 29, .external_lex_state = 3}, [2318] = {.lex_state = 29, .external_lex_state = 3}, @@ -24465,12 +24466,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2329] = {.lex_state = 29, .external_lex_state = 3}, [2330] = {.lex_state = 29, .external_lex_state = 3}, [2331] = {.lex_state = 29, .external_lex_state = 3}, - [2332] = {.lex_state = 29, .external_lex_state = 3}, + [2332] = {.lex_state = 39, .external_lex_state = 5}, [2333] = {.lex_state = 29, .external_lex_state = 3}, [2334] = {.lex_state = 29, .external_lex_state = 3}, [2335] = {.lex_state = 29, .external_lex_state = 3}, [2336] = {.lex_state = 29, .external_lex_state = 3}, - [2337] = {.lex_state = 29, .external_lex_state = 3}, + [2337] = {.lex_state = 39, .external_lex_state = 5}, [2338] = {.lex_state = 29, .external_lex_state = 3}, [2339] = {.lex_state = 29, .external_lex_state = 3}, [2340] = {.lex_state = 29, .external_lex_state = 3}, @@ -24506,100 +24507,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2370] = {.lex_state = 29, .external_lex_state = 3}, [2371] = {.lex_state = 29, .external_lex_state = 3}, [2372] = {.lex_state = 29, .external_lex_state = 3}, - [2373] = {.lex_state = 29, .external_lex_state = 3}, + [2373] = {.lex_state = 39, .external_lex_state = 5}, [2374] = {.lex_state = 29, .external_lex_state = 3}, [2375] = {.lex_state = 29, .external_lex_state = 3}, - [2376] = {.lex_state = 39, .external_lex_state = 5}, - [2377] = {.lex_state = 39, .external_lex_state = 5}, + [2376] = {.lex_state = 29, .external_lex_state = 3}, + [2377] = {.lex_state = 29, .external_lex_state = 3}, [2378] = {.lex_state = 29, .external_lex_state = 3}, [2379] = {.lex_state = 29, .external_lex_state = 3}, [2380] = {.lex_state = 29, .external_lex_state = 3}, - [2381] = {.lex_state = 39, .external_lex_state = 5}, + [2381] = {.lex_state = 29, .external_lex_state = 3}, [2382] = {.lex_state = 29, .external_lex_state = 3}, [2383] = {.lex_state = 29, .external_lex_state = 3}, [2384] = {.lex_state = 29, .external_lex_state = 3}, [2385] = {.lex_state = 29, .external_lex_state = 3}, [2386] = {.lex_state = 29, .external_lex_state = 3}, - [2387] = {.lex_state = 29, .external_lex_state = 4}, + [2387] = {.lex_state = 29, .external_lex_state = 3}, [2388] = {.lex_state = 29, .external_lex_state = 3}, [2389] = {.lex_state = 29, .external_lex_state = 3}, - [2390] = {.lex_state = 39, .external_lex_state = 5}, - [2391] = {.lex_state = 29, .external_lex_state = 3}, + [2390] = {.lex_state = 29, .external_lex_state = 4}, + [2391] = {.lex_state = 29, .external_lex_state = 4}, [2392] = {.lex_state = 29, .external_lex_state = 4}, - [2393] = {.lex_state = 39, .external_lex_state = 5}, - [2394] = {.lex_state = 29, .external_lex_state = 4}, - [2395] = {.lex_state = 39, .external_lex_state = 5}, + [2393] = {.lex_state = 29, .external_lex_state = 3}, + [2394] = {.lex_state = 29, .external_lex_state = 3}, + [2395] = {.lex_state = 29, .external_lex_state = 4}, [2396] = {.lex_state = 29, .external_lex_state = 3}, [2397] = {.lex_state = 29, .external_lex_state = 3}, - [2398] = {.lex_state = 29, .external_lex_state = 4}, + [2398] = {.lex_state = 29, .external_lex_state = 3}, [2399] = {.lex_state = 29, .external_lex_state = 3}, - [2400] = {.lex_state = 29, .external_lex_state = 4}, - [2401] = {.lex_state = 29, .external_lex_state = 4}, - [2402] = {.lex_state = 29, .external_lex_state = 4}, + [2400] = {.lex_state = 29, .external_lex_state = 3}, + [2401] = {.lex_state = 39, .external_lex_state = 5}, + [2402] = {.lex_state = 39, .external_lex_state = 5}, [2403] = {.lex_state = 29, .external_lex_state = 3}, [2404] = {.lex_state = 29, .external_lex_state = 3}, - [2405] = {.lex_state = 29, .external_lex_state = 3}, - [2406] = {.lex_state = 39, .external_lex_state = 5}, - [2407] = {.lex_state = 29, .external_lex_state = 4}, - [2408] = {.lex_state = 29, .external_lex_state = 4}, - [2409] = {.lex_state = 39, .external_lex_state = 5}, + [2405] = {.lex_state = 29, .external_lex_state = 4}, + [2406] = {.lex_state = 29, .external_lex_state = 4}, + [2407] = {.lex_state = 29, .external_lex_state = 3}, + [2408] = {.lex_state = 29, .external_lex_state = 3}, + [2409] = {.lex_state = 29, .external_lex_state = 3}, [2410] = {.lex_state = 29, .external_lex_state = 4}, - [2411] = {.lex_state = 39, .external_lex_state = 5}, + [2411] = {.lex_state = 29, .external_lex_state = 4}, [2412] = {.lex_state = 29, .external_lex_state = 4}, [2413] = {.lex_state = 29, .external_lex_state = 3}, - [2414] = {.lex_state = 29, .external_lex_state = 3}, - [2415] = {.lex_state = 29, .external_lex_state = 4}, - [2416] = {.lex_state = 29, .external_lex_state = 4}, - [2417] = {.lex_state = 29, .external_lex_state = 4}, + [2414] = {.lex_state = 39, .external_lex_state = 5}, + [2415] = {.lex_state = 29, .external_lex_state = 3}, + [2416] = {.lex_state = 29, .external_lex_state = 3}, + [2417] = {.lex_state = 29, .external_lex_state = 3}, [2418] = {.lex_state = 29, .external_lex_state = 3}, [2419] = {.lex_state = 29, .external_lex_state = 3}, [2420] = {.lex_state = 29, .external_lex_state = 3}, [2421] = {.lex_state = 29, .external_lex_state = 3}, - [2422] = {.lex_state = 29, .external_lex_state = 4}, - [2423] = {.lex_state = 29, .external_lex_state = 4}, + [2422] = {.lex_state = 29, .external_lex_state = 3}, + [2423] = {.lex_state = 29, .external_lex_state = 3}, [2424] = {.lex_state = 29, .external_lex_state = 3}, - [2425] = {.lex_state = 29, .external_lex_state = 3}, - [2426] = {.lex_state = 29, .external_lex_state = 3}, - [2427] = {.lex_state = 29, .external_lex_state = 3}, - [2428] = {.lex_state = 29, .external_lex_state = 4}, - [2429] = {.lex_state = 29, .external_lex_state = 4}, + [2425] = {.lex_state = 39, .external_lex_state = 5}, + [2426] = {.lex_state = 29, .external_lex_state = 4}, + [2427] = {.lex_state = 39, .external_lex_state = 5}, + [2428] = {.lex_state = 29, .external_lex_state = 3}, + [2429] = {.lex_state = 29, .external_lex_state = 3}, [2430] = {.lex_state = 29, .external_lex_state = 3}, - [2431] = {.lex_state = 29, .external_lex_state = 4}, + [2431] = {.lex_state = 29, .external_lex_state = 3}, [2432] = {.lex_state = 29, .external_lex_state = 3}, - [2433] = {.lex_state = 29, .external_lex_state = 4}, + [2433] = {.lex_state = 39, .external_lex_state = 5}, [2434] = {.lex_state = 39, .external_lex_state = 5}, - [2435] = {.lex_state = 29, .external_lex_state = 3}, - [2436] = {.lex_state = 29, .external_lex_state = 3}, - [2437] = {.lex_state = 29, .external_lex_state = 4}, - [2438] = {.lex_state = 29, .external_lex_state = 3}, + [2435] = {.lex_state = 29, .external_lex_state = 4}, + [2436] = {.lex_state = 39, .external_lex_state = 5}, + [2437] = {.lex_state = 29, .external_lex_state = 3}, + [2438] = {.lex_state = 29, .external_lex_state = 4}, [2439] = {.lex_state = 29, .external_lex_state = 4}, - [2440] = {.lex_state = 29, .external_lex_state = 3}, + [2440] = {.lex_state = 29, .external_lex_state = 4}, [2441] = {.lex_state = 29, .external_lex_state = 3}, - [2442] = {.lex_state = 29, .external_lex_state = 3}, + [2442] = {.lex_state = 39, .external_lex_state = 5}, [2443] = {.lex_state = 29, .external_lex_state = 3}, [2444] = {.lex_state = 29, .external_lex_state = 3}, - [2445] = {.lex_state = 29, .external_lex_state = 3}, - [2446] = {.lex_state = 29, .external_lex_state = 3}, - [2447] = {.lex_state = 29, .external_lex_state = 4}, - [2448] = {.lex_state = 29, .external_lex_state = 4}, - [2449] = {.lex_state = 29, .external_lex_state = 3}, - [2450] = {.lex_state = 29, .external_lex_state = 3}, - [2451] = {.lex_state = 29, .external_lex_state = 3}, - [2452] = {.lex_state = 29, .external_lex_state = 3}, - [2453] = {.lex_state = 29, .external_lex_state = 3}, + [2445] = {.lex_state = 29, .external_lex_state = 4}, + [2446] = {.lex_state = 29, .external_lex_state = 4}, + [2447] = {.lex_state = 29, .external_lex_state = 3}, + [2448] = {.lex_state = 29, .external_lex_state = 3}, + [2449] = {.lex_state = 29, .external_lex_state = 4}, + [2450] = {.lex_state = 29, .external_lex_state = 4}, + [2451] = {.lex_state = 29, .external_lex_state = 4}, + [2452] = {.lex_state = 29, .external_lex_state = 4}, + [2453] = {.lex_state = 29, .external_lex_state = 4}, [2454] = {.lex_state = 29, .external_lex_state = 3}, - [2455] = {.lex_state = 29, .external_lex_state = 4}, - [2456] = {.lex_state = 29, .external_lex_state = 4}, + [2455] = {.lex_state = 29, .external_lex_state = 3}, + [2456] = {.lex_state = 29, .external_lex_state = 3}, [2457] = {.lex_state = 29, .external_lex_state = 3}, [2458] = {.lex_state = 29, .external_lex_state = 3}, [2459] = {.lex_state = 29, .external_lex_state = 4}, [2460] = {.lex_state = 29, .external_lex_state = 3}, [2461] = {.lex_state = 29, .external_lex_state = 4}, - [2462] = {.lex_state = 29, .external_lex_state = 3}, - [2463] = {.lex_state = 29, .external_lex_state = 4}, - [2464] = {.lex_state = 29, .external_lex_state = 4}, - [2465] = {.lex_state = 29, .external_lex_state = 3}, - [2466] = {.lex_state = 29, .external_lex_state = 4}, + [2462] = {.lex_state = 29, .external_lex_state = 4}, + [2463] = {.lex_state = 29, .external_lex_state = 3}, + [2464] = {.lex_state = 29, .external_lex_state = 3}, + [2465] = {.lex_state = 29, .external_lex_state = 4}, + [2466] = {.lex_state = 29, .external_lex_state = 3}, [2467] = {.lex_state = 29, .external_lex_state = 4}, [2468] = {.lex_state = 29, .external_lex_state = 4}, [2469] = {.lex_state = 29, .external_lex_state = 4}, @@ -24609,258 +24610,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2473] = {.lex_state = 29, .external_lex_state = 3}, [2474] = {.lex_state = 29, .external_lex_state = 3}, [2475] = {.lex_state = 29, .external_lex_state = 3}, - [2476] = {.lex_state = 29, .external_lex_state = 4}, - [2477] = {.lex_state = 29, .external_lex_state = 4}, - [2478] = {.lex_state = 29, .external_lex_state = 4}, - [2479] = {.lex_state = 29, .external_lex_state = 4}, + [2476] = {.lex_state = 29, .external_lex_state = 3}, + [2477] = {.lex_state = 29, .external_lex_state = 3}, + [2478] = {.lex_state = 29, .external_lex_state = 3}, + [2479] = {.lex_state = 29, .external_lex_state = 3}, [2480] = {.lex_state = 29, .external_lex_state = 3}, - [2481] = {.lex_state = 29, .external_lex_state = 3}, + [2481] = {.lex_state = 29, .external_lex_state = 4}, [2482] = {.lex_state = 29, .external_lex_state = 4}, - [2483] = {.lex_state = 29, .external_lex_state = 4}, + [2483] = {.lex_state = 29, .external_lex_state = 3}, [2484] = {.lex_state = 29, .external_lex_state = 3}, [2485] = {.lex_state = 29, .external_lex_state = 4}, - [2486] = {.lex_state = 29, .external_lex_state = 4}, - [2487] = {.lex_state = 29, .external_lex_state = 4}, - [2488] = {.lex_state = 29, .external_lex_state = 4}, + [2486] = {.lex_state = 29, .external_lex_state = 3}, + [2487] = {.lex_state = 29, .external_lex_state = 3}, + [2488] = {.lex_state = 29, .external_lex_state = 3}, [2489] = {.lex_state = 29, .external_lex_state = 3}, - [2490] = {.lex_state = 29, .external_lex_state = 3}, + [2490] = {.lex_state = 29, .external_lex_state = 4}, [2491] = {.lex_state = 29, .external_lex_state = 4}, - [2492] = {.lex_state = 29, .external_lex_state = 4}, + [2492] = {.lex_state = 29, .external_lex_state = 3}, [2493] = {.lex_state = 29, .external_lex_state = 3}, - [2494] = {.lex_state = 29, .external_lex_state = 4}, - [2495] = {.lex_state = 29, .external_lex_state = 3}, + [2494] = {.lex_state = 29, .external_lex_state = 3}, + [2495] = {.lex_state = 29, .external_lex_state = 4}, [2496] = {.lex_state = 29, .external_lex_state = 3}, - [2497] = {.lex_state = 29, .external_lex_state = 3}, + [2497] = {.lex_state = 29, .external_lex_state = 4}, [2498] = {.lex_state = 29, .external_lex_state = 4}, [2499] = {.lex_state = 29, .external_lex_state = 4}, - [2500] = {.lex_state = 29, .external_lex_state = 4}, - [2501] = {.lex_state = 29, .external_lex_state = 3}, - [2502] = {.lex_state = 29, .external_lex_state = 3}, + [2500] = {.lex_state = 29, .external_lex_state = 3}, + [2501] = {.lex_state = 29, .external_lex_state = 4}, + [2502] = {.lex_state = 29, .external_lex_state = 4}, [2503] = {.lex_state = 29, .external_lex_state = 4}, - [2504] = {.lex_state = 29, .external_lex_state = 4}, - [2505] = {.lex_state = 29, .external_lex_state = 4}, - [2506] = {.lex_state = 29, .external_lex_state = 4}, - [2507] = {.lex_state = 39, .external_lex_state = 5}, - [2508] = {.lex_state = 29, .external_lex_state = 3}, + [2504] = {.lex_state = 29, .external_lex_state = 3}, + [2505] = {.lex_state = 29, .external_lex_state = 3}, + [2506] = {.lex_state = 29, .external_lex_state = 3}, + [2507] = {.lex_state = 29, .external_lex_state = 3}, + [2508] = {.lex_state = 29, .external_lex_state = 4}, [2509] = {.lex_state = 29, .external_lex_state = 4}, - [2510] = {.lex_state = 39, .external_lex_state = 5}, - [2511] = {.lex_state = 29, .external_lex_state = 4}, - [2512] = {.lex_state = 29, .external_lex_state = 3}, - [2513] = {.lex_state = 29, .external_lex_state = 3}, - [2514] = {.lex_state = 29, .external_lex_state = 3}, - [2515] = {.lex_state = 29, .external_lex_state = 3}, + [2510] = {.lex_state = 29, .external_lex_state = 4}, + [2511] = {.lex_state = 29, .external_lex_state = 3}, + [2512] = {.lex_state = 29, .external_lex_state = 4}, + [2513] = {.lex_state = 29, .external_lex_state = 4}, + [2514] = {.lex_state = 29, .external_lex_state = 4}, + [2515] = {.lex_state = 29, .external_lex_state = 4}, [2516] = {.lex_state = 29, .external_lex_state = 4}, - [2517] = {.lex_state = 29, .external_lex_state = 3}, + [2517] = {.lex_state = 29, .external_lex_state = 4}, [2518] = {.lex_state = 29, .external_lex_state = 4}, [2519] = {.lex_state = 29, .external_lex_state = 4}, - [2520] = {.lex_state = 29, .external_lex_state = 4}, - [2521] = {.lex_state = 29, .external_lex_state = 3}, + [2520] = {.lex_state = 29, .external_lex_state = 3}, + [2521] = {.lex_state = 29, .external_lex_state = 4}, [2522] = {.lex_state = 29, .external_lex_state = 3}, - [2523] = {.lex_state = 29, .external_lex_state = 3}, - [2524] = {.lex_state = 29, .external_lex_state = 4}, + [2523] = {.lex_state = 29, .external_lex_state = 4}, + [2524] = {.lex_state = 29, .external_lex_state = 3}, [2525] = {.lex_state = 29, .external_lex_state = 4}, - [2526] = {.lex_state = 29, .external_lex_state = 3}, + [2526] = {.lex_state = 29, .external_lex_state = 4}, [2527] = {.lex_state = 29, .external_lex_state = 4}, - [2528] = {.lex_state = 29, .external_lex_state = 4}, - [2529] = {.lex_state = 29, .external_lex_state = 3}, - [2530] = {.lex_state = 29, .external_lex_state = 4}, - [2531] = {.lex_state = 29, .external_lex_state = 3}, - [2532] = {.lex_state = 29, .external_lex_state = 3}, - [2533] = {.lex_state = 29, .external_lex_state = 4}, + [2528] = {.lex_state = 29, .external_lex_state = 3}, + [2529] = {.lex_state = 39, .external_lex_state = 5}, + [2530] = {.lex_state = 29, .external_lex_state = 3}, + [2531] = {.lex_state = 39, .external_lex_state = 5}, + [2532] = {.lex_state = 29, .external_lex_state = 4}, + [2533] = {.lex_state = 29, .external_lex_state = 3}, [2534] = {.lex_state = 29, .external_lex_state = 4}, - [2535] = {.lex_state = 29, .external_lex_state = 4}, + [2535] = {.lex_state = 29, .external_lex_state = 3}, [2536] = {.lex_state = 29, .external_lex_state = 4}, [2537] = {.lex_state = 29, .external_lex_state = 4}, [2538] = {.lex_state = 29, .external_lex_state = 4}, [2539] = {.lex_state = 29, .external_lex_state = 4}, - [2540] = {.lex_state = 29, .external_lex_state = 3}, + [2540] = {.lex_state = 29, .external_lex_state = 4}, [2541] = {.lex_state = 29, .external_lex_state = 3}, - [2542] = {.lex_state = 29, .external_lex_state = 4}, + [2542] = {.lex_state = 29, .external_lex_state = 3}, [2543] = {.lex_state = 29, .external_lex_state = 4}, [2544] = {.lex_state = 29, .external_lex_state = 4}, - [2545] = {.lex_state = 29, .external_lex_state = 3}, + [2545] = {.lex_state = 29, .external_lex_state = 4}, [2546] = {.lex_state = 29, .external_lex_state = 4}, - [2547] = {.lex_state = 29, .external_lex_state = 3}, + [2547] = {.lex_state = 29, .external_lex_state = 4}, [2548] = {.lex_state = 29, .external_lex_state = 3}, [2549] = {.lex_state = 29, .external_lex_state = 4}, [2550] = {.lex_state = 29, .external_lex_state = 3}, - [2551] = {.lex_state = 39, .external_lex_state = 5}, - [2552] = {.lex_state = 29, .external_lex_state = 3}, - [2553] = {.lex_state = 29, .external_lex_state = 3}, + [2551] = {.lex_state = 29, .external_lex_state = 4}, + [2552] = {.lex_state = 29, .external_lex_state = 4}, + [2553] = {.lex_state = 29, .external_lex_state = 4}, [2554] = {.lex_state = 29, .external_lex_state = 3}, - [2555] = {.lex_state = 29, .external_lex_state = 4}, + [2555] = {.lex_state = 29, .external_lex_state = 3}, [2556] = {.lex_state = 29, .external_lex_state = 4}, - [2557] = {.lex_state = 29, .external_lex_state = 4}, - [2558] = {.lex_state = 29, .external_lex_state = 3}, + [2557] = {.lex_state = 29, .external_lex_state = 3}, + [2558] = {.lex_state = 29, .external_lex_state = 4}, [2559] = {.lex_state = 29, .external_lex_state = 4}, - [2560] = {.lex_state = 29, .external_lex_state = 3}, - [2561] = {.lex_state = 29, .external_lex_state = 4}, + [2560] = {.lex_state = 29, .external_lex_state = 4}, + [2561] = {.lex_state = 29, .external_lex_state = 3}, [2562] = {.lex_state = 29, .external_lex_state = 4}, - [2563] = {.lex_state = 29, .external_lex_state = 4}, + [2563] = {.lex_state = 29, .external_lex_state = 3}, [2564] = {.lex_state = 29, .external_lex_state = 4}, - [2565] = {.lex_state = 29, .external_lex_state = 3}, - [2566] = {.lex_state = 29, .external_lex_state = 3}, - [2567] = {.lex_state = 39, .external_lex_state = 5}, - [2568] = {.lex_state = 29, .external_lex_state = 3}, + [2565] = {.lex_state = 29, .external_lex_state = 4}, + [2566] = {.lex_state = 29, .external_lex_state = 4}, + [2567] = {.lex_state = 29, .external_lex_state = 4}, + [2568] = {.lex_state = 29, .external_lex_state = 4}, [2569] = {.lex_state = 29, .external_lex_state = 4}, - [2570] = {.lex_state = 29, .external_lex_state = 3}, + [2570] = {.lex_state = 29, .external_lex_state = 4}, [2571] = {.lex_state = 29, .external_lex_state = 4}, - [2572] = {.lex_state = 29, .external_lex_state = 3}, + [2572] = {.lex_state = 29, .external_lex_state = 4}, [2573] = {.lex_state = 29, .external_lex_state = 4}, [2574] = {.lex_state = 29, .external_lex_state = 4}, - [2575] = {.lex_state = 29, .external_lex_state = 4}, + [2575] = {.lex_state = 29, .external_lex_state = 3}, [2576] = {.lex_state = 29, .external_lex_state = 4}, - [2577] = {.lex_state = 29, .external_lex_state = 3}, + [2577] = {.lex_state = 29, .external_lex_state = 4}, [2578] = {.lex_state = 29, .external_lex_state = 4}, [2579] = {.lex_state = 29, .external_lex_state = 3}, - [2580] = {.lex_state = 38, .external_lex_state = 5}, - [2581] = {.lex_state = 29, .external_lex_state = 4}, + [2580] = {.lex_state = 29, .external_lex_state = 3}, + [2581] = {.lex_state = 38, .external_lex_state = 5}, [2582] = {.lex_state = 29, .external_lex_state = 3}, [2583] = {.lex_state = 29, .external_lex_state = 3}, - [2584] = {.lex_state = 29, .external_lex_state = 3}, - [2585] = {.lex_state = 29, .external_lex_state = 3}, + [2584] = {.lex_state = 29, .external_lex_state = 4}, + [2585] = {.lex_state = 29, .external_lex_state = 4}, [2586] = {.lex_state = 29, .external_lex_state = 3}, [2587] = {.lex_state = 29, .external_lex_state = 3}, [2588] = {.lex_state = 29, .external_lex_state = 3}, - [2589] = {.lex_state = 39, .external_lex_state = 5}, - [2590] = {.lex_state = 29, .external_lex_state = 4}, - [2591] = {.lex_state = 29, .external_lex_state = 4}, - [2592] = {.lex_state = 29, .external_lex_state = 3}, - [2593] = {.lex_state = 29, .external_lex_state = 4}, - [2594] = {.lex_state = 29, .external_lex_state = 4}, + [2589] = {.lex_state = 29, .external_lex_state = 3}, + [2590] = {.lex_state = 29, .external_lex_state = 3}, + [2591] = {.lex_state = 29, .external_lex_state = 3}, + [2592] = {.lex_state = 29, .external_lex_state = 4}, + [2593] = {.lex_state = 29, .external_lex_state = 3}, + [2594] = {.lex_state = 29, .external_lex_state = 3}, [2595] = {.lex_state = 29, .external_lex_state = 3}, - [2596] = {.lex_state = 38, .external_lex_state = 5}, + [2596] = {.lex_state = 29, .external_lex_state = 3}, [2597] = {.lex_state = 29, .external_lex_state = 3}, - [2598] = {.lex_state = 29, .external_lex_state = 4}, + [2598] = {.lex_state = 29, .external_lex_state = 3}, [2599] = {.lex_state = 29, .external_lex_state = 3}, - [2600] = {.lex_state = 29, .external_lex_state = 4}, + [2600] = {.lex_state = 29, .external_lex_state = 3}, [2601] = {.lex_state = 29, .external_lex_state = 3}, - [2602] = {.lex_state = 29, .external_lex_state = 4}, + [2602] = {.lex_state = 29, .external_lex_state = 3}, [2603] = {.lex_state = 29, .external_lex_state = 3}, - [2604] = {.lex_state = 39, .external_lex_state = 5}, - [2605] = {.lex_state = 29, .external_lex_state = 4}, + [2604] = {.lex_state = 29, .external_lex_state = 3}, + [2605] = {.lex_state = 29, .external_lex_state = 3}, [2606] = {.lex_state = 29, .external_lex_state = 3}, - [2607] = {.lex_state = 39, .external_lex_state = 5}, + [2607] = {.lex_state = 29, .external_lex_state = 3}, [2608] = {.lex_state = 29, .external_lex_state = 3}, [2609] = {.lex_state = 29, .external_lex_state = 3}, - [2610] = {.lex_state = 39, .external_lex_state = 5}, + [2610] = {.lex_state = 29, .external_lex_state = 3}, [2611] = {.lex_state = 29, .external_lex_state = 3}, - [2612] = {.lex_state = 29, .external_lex_state = 3}, - [2613] = {.lex_state = 29, .external_lex_state = 3}, + [2612] = {.lex_state = 29, .external_lex_state = 4}, + [2613] = {.lex_state = 29, .external_lex_state = 4}, [2614] = {.lex_state = 29, .external_lex_state = 3}, [2615] = {.lex_state = 29, .external_lex_state = 3}, [2616] = {.lex_state = 29, .external_lex_state = 3}, [2617] = {.lex_state = 29, .external_lex_state = 3}, [2618] = {.lex_state = 29, .external_lex_state = 3}, - [2619] = {.lex_state = 29, .external_lex_state = 4}, - [2620] = {.lex_state = 29, .external_lex_state = 4}, - [2621] = {.lex_state = 29, .external_lex_state = 3}, - [2622] = {.lex_state = 29, .external_lex_state = 4}, + [2619] = {.lex_state = 29, .external_lex_state = 3}, + [2620] = {.lex_state = 29, .external_lex_state = 3}, + [2621] = {.lex_state = 29, .external_lex_state = 4}, + [2622] = {.lex_state = 29, .external_lex_state = 3}, [2623] = {.lex_state = 29, .external_lex_state = 3}, - [2624] = {.lex_state = 29, .external_lex_state = 3}, + [2624] = {.lex_state = 39, .external_lex_state = 5}, [2625] = {.lex_state = 29, .external_lex_state = 3}, - [2626] = {.lex_state = 29, .external_lex_state = 3}, + [2626] = {.lex_state = 29, .external_lex_state = 4}, [2627] = {.lex_state = 29, .external_lex_state = 4}, [2628] = {.lex_state = 29, .external_lex_state = 3}, [2629] = {.lex_state = 29, .external_lex_state = 3}, [2630] = {.lex_state = 29, .external_lex_state = 3}, - [2631] = {.lex_state = 29, .external_lex_state = 3}, + [2631] = {.lex_state = 39, .external_lex_state = 5}, [2632] = {.lex_state = 29, .external_lex_state = 3}, - [2633] = {.lex_state = 29, .external_lex_state = 3}, - [2634] = {.lex_state = 29, .external_lex_state = 4}, - [2635] = {.lex_state = 39, .external_lex_state = 5}, - [2636] = {.lex_state = 29, .external_lex_state = 3}, - [2637] = {.lex_state = 29, .external_lex_state = 3}, - [2638] = {.lex_state = 39, .external_lex_state = 5}, + [2633] = {.lex_state = 29, .external_lex_state = 4}, + [2634] = {.lex_state = 29, .external_lex_state = 3}, + [2635] = {.lex_state = 29, .external_lex_state = 3}, + [2636] = {.lex_state = 29, .external_lex_state = 4}, + [2637] = {.lex_state = 38, .external_lex_state = 5}, + [2638] = {.lex_state = 29, .external_lex_state = 4}, [2639] = {.lex_state = 29, .external_lex_state = 4}, [2640] = {.lex_state = 29, .external_lex_state = 3}, [2641] = {.lex_state = 29, .external_lex_state = 3}, [2642] = {.lex_state = 29, .external_lex_state = 4}, - [2643] = {.lex_state = 29, .external_lex_state = 3}, + [2643] = {.lex_state = 29, .external_lex_state = 4}, [2644] = {.lex_state = 29, .external_lex_state = 3}, [2645] = {.lex_state = 29, .external_lex_state = 3}, [2646] = {.lex_state = 29, .external_lex_state = 3}, - [2647] = {.lex_state = 29, .external_lex_state = 3}, + [2647] = {.lex_state = 29, .external_lex_state = 4}, [2648] = {.lex_state = 29, .external_lex_state = 3}, - [2649] = {.lex_state = 29, .external_lex_state = 4}, + [2649] = {.lex_state = 29, .external_lex_state = 3}, [2650] = {.lex_state = 29, .external_lex_state = 3}, [2651] = {.lex_state = 29, .external_lex_state = 3}, [2652] = {.lex_state = 29, .external_lex_state = 3}, [2653] = {.lex_state = 29, .external_lex_state = 3}, - [2654] = {.lex_state = 29, .external_lex_state = 4}, + [2654] = {.lex_state = 29, .external_lex_state = 3}, [2655] = {.lex_state = 29, .external_lex_state = 3}, - [2656] = {.lex_state = 29, .external_lex_state = 3}, + [2656] = {.lex_state = 39, .external_lex_state = 5}, [2657] = {.lex_state = 29, .external_lex_state = 3}, [2658] = {.lex_state = 29, .external_lex_state = 3}, [2659] = {.lex_state = 29, .external_lex_state = 4}, - [2660] = {.lex_state = 29, .external_lex_state = 4}, + [2660] = {.lex_state = 29, .external_lex_state = 3}, [2661] = {.lex_state = 29, .external_lex_state = 3}, - [2662] = {.lex_state = 29, .external_lex_state = 4}, + [2662] = {.lex_state = 29, .external_lex_state = 3}, [2663] = {.lex_state = 29, .external_lex_state = 3}, [2664] = {.lex_state = 29, .external_lex_state = 3}, [2665] = {.lex_state = 29, .external_lex_state = 3}, [2666] = {.lex_state = 29, .external_lex_state = 3}, - [2667] = {.lex_state = 29, .external_lex_state = 3}, - [2668] = {.lex_state = 29, .external_lex_state = 3}, + [2667] = {.lex_state = 29, .external_lex_state = 4}, + [2668] = {.lex_state = 39, .external_lex_state = 5}, [2669] = {.lex_state = 29, .external_lex_state = 3}, [2670] = {.lex_state = 29, .external_lex_state = 3}, - [2671] = {.lex_state = 29, .external_lex_state = 3}, + [2671] = {.lex_state = 29, .external_lex_state = 4}, [2672] = {.lex_state = 29, .external_lex_state = 3}, - [2673] = {.lex_state = 29, .external_lex_state = 3}, + [2673] = {.lex_state = 29, .external_lex_state = 4}, [2674] = {.lex_state = 29, .external_lex_state = 3}, [2675] = {.lex_state = 29, .external_lex_state = 3}, - [2676] = {.lex_state = 29, .external_lex_state = 3}, - [2677] = {.lex_state = 29, .external_lex_state = 3}, - [2678] = {.lex_state = 29, .external_lex_state = 3}, + [2676] = {.lex_state = 29, .external_lex_state = 4}, + [2677] = {.lex_state = 39, .external_lex_state = 5}, + [2678] = {.lex_state = 29, .external_lex_state = 4}, [2679] = {.lex_state = 29, .external_lex_state = 3}, [2680] = {.lex_state = 29, .external_lex_state = 4}, [2681] = {.lex_state = 29, .external_lex_state = 3}, - [2682] = {.lex_state = 29, .external_lex_state = 4}, + [2682] = {.lex_state = 39, .external_lex_state = 5}, [2683] = {.lex_state = 29, .external_lex_state = 4}, [2684] = {.lex_state = 29, .external_lex_state = 4}, [2685] = {.lex_state = 29, .external_lex_state = 4}, - [2686] = {.lex_state = 29, .external_lex_state = 4}, - [2687] = {.lex_state = 29, .external_lex_state = 4}, + [2686] = {.lex_state = 39, .external_lex_state = 5}, + [2687] = {.lex_state = 39, .external_lex_state = 5}, [2688] = {.lex_state = 29, .external_lex_state = 4}, [2689] = {.lex_state = 29, .external_lex_state = 4}, - [2690] = {.lex_state = 29, .external_lex_state = 4}, - [2691] = {.lex_state = 29, .external_lex_state = 4}, + [2690] = {.lex_state = 29, .external_lex_state = 3}, + [2691] = {.lex_state = 39, .external_lex_state = 5}, [2692] = {.lex_state = 29, .external_lex_state = 4}, [2693] = {.lex_state = 29, .external_lex_state = 4}, - [2694] = {.lex_state = 29, .external_lex_state = 4}, - [2695] = {.lex_state = 29, .external_lex_state = 4}, - [2696] = {.lex_state = 29, .external_lex_state = 4}, - [2697] = {.lex_state = 29, .external_lex_state = 4}, + [2694] = {.lex_state = 29, .external_lex_state = 3}, + [2695] = {.lex_state = 29, .external_lex_state = 3}, + [2696] = {.lex_state = 29, .external_lex_state = 3}, + [2697] = {.lex_state = 39, .external_lex_state = 5}, [2698] = {.lex_state = 29, .external_lex_state = 4}, - [2699] = {.lex_state = 29, .external_lex_state = 3}, - [2700] = {.lex_state = 29, .external_lex_state = 3}, - [2701] = {.lex_state = 29, .external_lex_state = 4}, - [2702] = {.lex_state = 29, .external_lex_state = 4}, + [2699] = {.lex_state = 38, .external_lex_state = 5}, + [2700] = {.lex_state = 38, .external_lex_state = 5}, + [2701] = {.lex_state = 39, .external_lex_state = 2}, + [2702] = {.lex_state = 39, .external_lex_state = 5}, [2703] = {.lex_state = 29, .external_lex_state = 4}, [2704] = {.lex_state = 39, .external_lex_state = 2}, [2705] = {.lex_state = 29, .external_lex_state = 4}, [2706] = {.lex_state = 29, .external_lex_state = 4}, [2707] = {.lex_state = 29, .external_lex_state = 4}, - [2708] = {.lex_state = 29, .external_lex_state = 3}, + [2708] = {.lex_state = 29, .external_lex_state = 4}, [2709] = {.lex_state = 29, .external_lex_state = 4}, [2710] = {.lex_state = 29, .external_lex_state = 4}, [2711] = {.lex_state = 29, .external_lex_state = 3}, [2712] = {.lex_state = 29, .external_lex_state = 4}, - [2713] = {.lex_state = 29, .external_lex_state = 4}, - [2714] = {.lex_state = 29, .external_lex_state = 3}, + [2713] = {.lex_state = 29, .external_lex_state = 3}, + [2714] = {.lex_state = 29, .external_lex_state = 4}, [2715] = {.lex_state = 29, .external_lex_state = 4}, - [2716] = {.lex_state = 39, .external_lex_state = 5}, + [2716] = {.lex_state = 29, .external_lex_state = 4}, [2717] = {.lex_state = 29, .external_lex_state = 4}, [2718] = {.lex_state = 29, .external_lex_state = 4}, - [2719] = {.lex_state = 29, .external_lex_state = 3}, + [2719] = {.lex_state = 29, .external_lex_state = 4}, [2720] = {.lex_state = 29, .external_lex_state = 4}, - [2721] = {.lex_state = 29, .external_lex_state = 4}, + [2721] = {.lex_state = 29, .external_lex_state = 3}, [2722] = {.lex_state = 29, .external_lex_state = 4}, [2723] = {.lex_state = 29, .external_lex_state = 4}, - [2724] = {.lex_state = 38, .external_lex_state = 5}, + [2724] = {.lex_state = 29, .external_lex_state = 4}, [2725] = {.lex_state = 29, .external_lex_state = 4}, [2726] = {.lex_state = 29, .external_lex_state = 4}, - [2727] = {.lex_state = 38, .external_lex_state = 5}, + [2727] = {.lex_state = 29, .external_lex_state = 4}, [2728] = {.lex_state = 29, .external_lex_state = 4}, [2729] = {.lex_state = 29, .external_lex_state = 4}, [2730] = {.lex_state = 29, .external_lex_state = 4}, @@ -24868,7 +24869,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2732] = {.lex_state = 29, .external_lex_state = 4}, [2733] = {.lex_state = 29, .external_lex_state = 4}, [2734] = {.lex_state = 29, .external_lex_state = 4}, - [2735] = {.lex_state = 29, .external_lex_state = 4}, + [2735] = {.lex_state = 29, .external_lex_state = 3}, [2736] = {.lex_state = 29, .external_lex_state = 4}, [2737] = {.lex_state = 29, .external_lex_state = 4}, [2738] = {.lex_state = 29, .external_lex_state = 4}, @@ -24878,7 +24879,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2742] = {.lex_state = 29, .external_lex_state = 4}, [2743] = {.lex_state = 29, .external_lex_state = 4}, [2744] = {.lex_state = 29, .external_lex_state = 4}, - [2745] = {.lex_state = 39, .external_lex_state = 5}, + [2745] = {.lex_state = 29, .external_lex_state = 4}, [2746] = {.lex_state = 29, .external_lex_state = 4}, [2747] = {.lex_state = 29, .external_lex_state = 4}, [2748] = {.lex_state = 29, .external_lex_state = 4}, @@ -24886,626 +24887,626 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2750] = {.lex_state = 29, .external_lex_state = 4}, [2751] = {.lex_state = 29, .external_lex_state = 4}, [2752] = {.lex_state = 29, .external_lex_state = 4}, - [2753] = {.lex_state = 29, .external_lex_state = 4}, + [2753] = {.lex_state = 39, .external_lex_state = 2}, [2754] = {.lex_state = 29, .external_lex_state = 4}, - [2755] = {.lex_state = 29, .external_lex_state = 3}, + [2755] = {.lex_state = 29, .external_lex_state = 4}, [2756] = {.lex_state = 29, .external_lex_state = 4}, - [2757] = {.lex_state = 39, .external_lex_state = 2}, + [2757] = {.lex_state = 29, .external_lex_state = 4}, [2758] = {.lex_state = 29, .external_lex_state = 3}, [2759] = {.lex_state = 29, .external_lex_state = 3}, - [2760] = {.lex_state = 29, .external_lex_state = 3}, - [2761] = {.lex_state = 29, .external_lex_state = 3}, - [2762] = {.lex_state = 29, .external_lex_state = 3}, + [2760] = {.lex_state = 39, .external_lex_state = 2}, + [2761] = {.lex_state = 29, .external_lex_state = 4}, + [2762] = {.lex_state = 29, .external_lex_state = 4}, [2763] = {.lex_state = 29, .external_lex_state = 4}, - [2764] = {.lex_state = 29, .external_lex_state = 3}, + [2764] = {.lex_state = 29, .external_lex_state = 4}, [2765] = {.lex_state = 29, .external_lex_state = 3}, - [2766] = {.lex_state = 29, .external_lex_state = 3}, - [2767] = {.lex_state = 29, .external_lex_state = 3}, - [2768] = {.lex_state = 29, .external_lex_state = 3}, + [2766] = {.lex_state = 39, .external_lex_state = 5}, + [2767] = {.lex_state = 29, .external_lex_state = 4}, + [2768] = {.lex_state = 29, .external_lex_state = 4}, [2769] = {.lex_state = 29, .external_lex_state = 4}, - [2770] = {.lex_state = 29, .external_lex_state = 3}, - [2771] = {.lex_state = 29, .external_lex_state = 3}, + [2770] = {.lex_state = 29, .external_lex_state = 4}, + [2771] = {.lex_state = 29, .external_lex_state = 4}, [2772] = {.lex_state = 29, .external_lex_state = 4}, - [2773] = {.lex_state = 29, .external_lex_state = 3}, + [2773] = {.lex_state = 29, .external_lex_state = 4}, [2774] = {.lex_state = 29, .external_lex_state = 4}, [2775] = {.lex_state = 29, .external_lex_state = 4}, - [2776] = {.lex_state = 29, .external_lex_state = 3}, + [2776] = {.lex_state = 29, .external_lex_state = 4}, [2777] = {.lex_state = 29, .external_lex_state = 4}, - [2778] = {.lex_state = 29, .external_lex_state = 3}, - [2779] = {.lex_state = 39, .external_lex_state = 2}, - [2780] = {.lex_state = 39, .external_lex_state = 5}, + [2778] = {.lex_state = 29, .external_lex_state = 4}, + [2779] = {.lex_state = 29, .external_lex_state = 4}, + [2780] = {.lex_state = 29, .external_lex_state = 4}, [2781] = {.lex_state = 29, .external_lex_state = 4}, [2782] = {.lex_state = 29, .external_lex_state = 4}, - [2783] = {.lex_state = 29, .external_lex_state = 3}, + [2783] = {.lex_state = 39, .external_lex_state = 2}, [2784] = {.lex_state = 29, .external_lex_state = 4}, [2785] = {.lex_state = 29, .external_lex_state = 4}, [2786] = {.lex_state = 29, .external_lex_state = 4}, - [2787] = {.lex_state = 29, .external_lex_state = 4}, + [2787] = {.lex_state = 38, .external_lex_state = 5}, [2788] = {.lex_state = 29, .external_lex_state = 4}, - [2789] = {.lex_state = 29, .external_lex_state = 4}, - [2790] = {.lex_state = 29, .external_lex_state = 4}, - [2791] = {.lex_state = 29, .external_lex_state = 4}, + [2789] = {.lex_state = 39, .external_lex_state = 5}, + [2790] = {.lex_state = 38, .external_lex_state = 5}, + [2791] = {.lex_state = 38, .external_lex_state = 5}, [2792] = {.lex_state = 39, .external_lex_state = 5}, [2793] = {.lex_state = 29, .external_lex_state = 4}, - [2794] = {.lex_state = 29, .external_lex_state = 4}, + [2794] = {.lex_state = 39, .external_lex_state = 2}, [2795] = {.lex_state = 29, .external_lex_state = 4}, [2796] = {.lex_state = 29, .external_lex_state = 4}, [2797] = {.lex_state = 29, .external_lex_state = 4}, [2798] = {.lex_state = 29, .external_lex_state = 4}, [2799] = {.lex_state = 29, .external_lex_state = 4}, - [2800] = {.lex_state = 29, .external_lex_state = 4}, - [2801] = {.lex_state = 29, .external_lex_state = 4}, + [2800] = {.lex_state = 29, .external_lex_state = 3}, + [2801] = {.lex_state = 29, .external_lex_state = 3}, [2802] = {.lex_state = 29, .external_lex_state = 4}, [2803] = {.lex_state = 29, .external_lex_state = 4}, [2804] = {.lex_state = 29, .external_lex_state = 4}, - [2805] = {.lex_state = 39, .external_lex_state = 5}, + [2805] = {.lex_state = 29, .external_lex_state = 4}, [2806] = {.lex_state = 29, .external_lex_state = 4}, [2807] = {.lex_state = 29, .external_lex_state = 4}, [2808] = {.lex_state = 29, .external_lex_state = 4}, - [2809] = {.lex_state = 29, .external_lex_state = 3}, + [2809] = {.lex_state = 29, .external_lex_state = 4}, [2810] = {.lex_state = 29, .external_lex_state = 4}, - [2811] = {.lex_state = 29, .external_lex_state = 3}, + [2811] = {.lex_state = 29, .external_lex_state = 4}, [2812] = {.lex_state = 29, .external_lex_state = 4}, [2813] = {.lex_state = 29, .external_lex_state = 4}, [2814] = {.lex_state = 29, .external_lex_state = 4}, - [2815] = {.lex_state = 29, .external_lex_state = 3}, - [2816] = {.lex_state = 29, .external_lex_state = 3}, + [2815] = {.lex_state = 29, .external_lex_state = 4}, + [2816] = {.lex_state = 29, .external_lex_state = 4}, [2817] = {.lex_state = 29, .external_lex_state = 4}, [2818] = {.lex_state = 29, .external_lex_state = 4}, - [2819] = {.lex_state = 29, .external_lex_state = 4}, - [2820] = {.lex_state = 29, .external_lex_state = 4}, - [2821] = {.lex_state = 29, .external_lex_state = 4}, - [2822] = {.lex_state = 29, .external_lex_state = 4}, - [2823] = {.lex_state = 29, .external_lex_state = 4}, - [2824] = {.lex_state = 29, .external_lex_state = 4}, + [2819] = {.lex_state = 29, .external_lex_state = 3}, + [2820] = {.lex_state = 29, .external_lex_state = 3}, + [2821] = {.lex_state = 29, .external_lex_state = 3}, + [2822] = {.lex_state = 29, .external_lex_state = 3}, + [2823] = {.lex_state = 29, .external_lex_state = 3}, + [2824] = {.lex_state = 29, .external_lex_state = 3}, [2825] = {.lex_state = 29, .external_lex_state = 3}, - [2826] = {.lex_state = 29, .external_lex_state = 4}, - [2827] = {.lex_state = 29, .external_lex_state = 4}, - [2828] = {.lex_state = 29, .external_lex_state = 4}, - [2829] = {.lex_state = 29, .external_lex_state = 4}, - [2830] = {.lex_state = 39, .external_lex_state = 2}, + [2826] = {.lex_state = 29, .external_lex_state = 3}, + [2827] = {.lex_state = 29, .external_lex_state = 3}, + [2828] = {.lex_state = 29, .external_lex_state = 3}, + [2829] = {.lex_state = 29, .external_lex_state = 3}, + [2830] = {.lex_state = 29, .external_lex_state = 3}, [2831] = {.lex_state = 29, .external_lex_state = 3}, - [2832] = {.lex_state = 29, .external_lex_state = 4}, - [2833] = {.lex_state = 29, .external_lex_state = 3}, + [2832] = {.lex_state = 29, .external_lex_state = 3}, + [2833] = {.lex_state = 29, .external_lex_state = 4}, [2834] = {.lex_state = 29, .external_lex_state = 3}, - [2835] = {.lex_state = 29, .external_lex_state = 4}, - [2836] = {.lex_state = 29, .external_lex_state = 4}, - [2837] = {.lex_state = 29, .external_lex_state = 4}, - [2838] = {.lex_state = 29, .external_lex_state = 4}, + [2835] = {.lex_state = 29, .external_lex_state = 3}, + [2836] = {.lex_state = 29, .external_lex_state = 3}, + [2837] = {.lex_state = 29, .external_lex_state = 3}, + [2838] = {.lex_state = 29, .external_lex_state = 3}, [2839] = {.lex_state = 29, .external_lex_state = 3}, [2840] = {.lex_state = 29, .external_lex_state = 4}, - [2841] = {.lex_state = 29, .external_lex_state = 4}, - [2842] = {.lex_state = 39, .external_lex_state = 2}, - [2843] = {.lex_state = 39, .external_lex_state = 2}, - [2844] = {.lex_state = 29, .external_lex_state = 4}, - [2845] = {.lex_state = 29, .external_lex_state = 4}, - [2846] = {.lex_state = 29, .external_lex_state = 4}, - [2847] = {.lex_state = 29, .external_lex_state = 4}, - [2848] = {.lex_state = 29, .external_lex_state = 4}, - [2849] = {.lex_state = 29, .external_lex_state = 4}, + [2841] = {.lex_state = 29, .external_lex_state = 3}, + [2842] = {.lex_state = 29, .external_lex_state = 3}, + [2843] = {.lex_state = 29, .external_lex_state = 4}, + [2844] = {.lex_state = 29, .external_lex_state = 3}, + [2845] = {.lex_state = 39, .external_lex_state = 2}, + [2846] = {.lex_state = 29, .external_lex_state = 3}, + [2847] = {.lex_state = 29, .external_lex_state = 3}, + [2848] = {.lex_state = 29, .external_lex_state = 3}, + [2849] = {.lex_state = 29, .external_lex_state = 3}, [2850] = {.lex_state = 29, .external_lex_state = 4}, [2851] = {.lex_state = 29, .external_lex_state = 4}, [2852] = {.lex_state = 29, .external_lex_state = 4}, - [2853] = {.lex_state = 29, .external_lex_state = 4}, + [2853] = {.lex_state = 29, .external_lex_state = 3}, [2854] = {.lex_state = 29, .external_lex_state = 4}, [2855] = {.lex_state = 29, .external_lex_state = 4}, [2856] = {.lex_state = 29, .external_lex_state = 4}, - [2857] = {.lex_state = 29, .external_lex_state = 4}, + [2857] = {.lex_state = 29, .external_lex_state = 3}, [2858] = {.lex_state = 29, .external_lex_state = 4}, [2859] = {.lex_state = 29, .external_lex_state = 4}, - [2860] = {.lex_state = 29, .external_lex_state = 3}, - [2861] = {.lex_state = 29, .external_lex_state = 3}, - [2862] = {.lex_state = 29, .external_lex_state = 3}, - [2863] = {.lex_state = 29, .external_lex_state = 3}, + [2860] = {.lex_state = 29, .external_lex_state = 4}, + [2861] = {.lex_state = 29, .external_lex_state = 4}, + [2862] = {.lex_state = 29, .external_lex_state = 4}, + [2863] = {.lex_state = 29, .external_lex_state = 4}, [2864] = {.lex_state = 29, .external_lex_state = 4}, [2865] = {.lex_state = 29, .external_lex_state = 4}, - [2866] = {.lex_state = 29, .external_lex_state = 4}, - [2867] = {.lex_state = 29, .external_lex_state = 4}, - [2868] = {.lex_state = 29, .external_lex_state = 4}, + [2866] = {.lex_state = 29, .external_lex_state = 3}, + [2867] = {.lex_state = 29, .external_lex_state = 3}, + [2868] = {.lex_state = 29, .external_lex_state = 3}, [2869] = {.lex_state = 29, .external_lex_state = 4}, [2870] = {.lex_state = 29, .external_lex_state = 4}, [2871] = {.lex_state = 29, .external_lex_state = 4}, [2872] = {.lex_state = 29, .external_lex_state = 4}, [2873] = {.lex_state = 29, .external_lex_state = 4}, - [2874] = {.lex_state = 29, .external_lex_state = 3}, - [2875] = {.lex_state = 29, .external_lex_state = 3}, - [2876] = {.lex_state = 29, .external_lex_state = 3}, - [2877] = {.lex_state = 29, .external_lex_state = 3}, - [2878] = {.lex_state = 29, .external_lex_state = 3}, - [2879] = {.lex_state = 29, .external_lex_state = 3}, + [2874] = {.lex_state = 29, .external_lex_state = 4}, + [2875] = {.lex_state = 29, .external_lex_state = 4}, + [2876] = {.lex_state = 29, .external_lex_state = 4}, + [2877] = {.lex_state = 29, .external_lex_state = 4}, + [2878] = {.lex_state = 29, .external_lex_state = 4}, + [2879] = {.lex_state = 29, .external_lex_state = 4}, [2880] = {.lex_state = 29, .external_lex_state = 4}, [2881] = {.lex_state = 29, .external_lex_state = 4}, [2882] = {.lex_state = 29, .external_lex_state = 4}, - [2883] = {.lex_state = 29, .external_lex_state = 3}, + [2883] = {.lex_state = 29, .external_lex_state = 4}, [2884] = {.lex_state = 29, .external_lex_state = 4}, [2885] = {.lex_state = 29, .external_lex_state = 4}, [2886] = {.lex_state = 29, .external_lex_state = 4}, [2887] = {.lex_state = 29, .external_lex_state = 4}, [2888] = {.lex_state = 29, .external_lex_state = 4}, - [2889] = {.lex_state = 38, .external_lex_state = 5}, + [2889] = {.lex_state = 29, .external_lex_state = 4}, [2890] = {.lex_state = 29, .external_lex_state = 4}, - [2891] = {.lex_state = 29, .external_lex_state = 3}, + [2891] = {.lex_state = 29, .external_lex_state = 4}, [2892] = {.lex_state = 29, .external_lex_state = 4}, - [2893] = {.lex_state = 29, .external_lex_state = 3}, - [2894] = {.lex_state = 39, .external_lex_state = 5}, + [2893] = {.lex_state = 29, .external_lex_state = 4}, + [2894] = {.lex_state = 29, .external_lex_state = 4}, [2895] = {.lex_state = 29, .external_lex_state = 4}, - [2896] = {.lex_state = 38, .external_lex_state = 5}, + [2896] = {.lex_state = 29, .external_lex_state = 4}, [2897] = {.lex_state = 29, .external_lex_state = 4}, [2898] = {.lex_state = 29, .external_lex_state = 4}, [2899] = {.lex_state = 29, .external_lex_state = 4}, [2900] = {.lex_state = 29, .external_lex_state = 4}, - [2901] = {.lex_state = 38, .external_lex_state = 5}, - [2902] = {.lex_state = 29, .external_lex_state = 4}, - [2903] = {.lex_state = 39, .external_lex_state = 5}, - [2904] = {.lex_state = 39, .external_lex_state = 2}, - [2905] = {.lex_state = 39, .external_lex_state = 2}, + [2901] = {.lex_state = 29, .external_lex_state = 4}, + [2902] = {.lex_state = 29, .external_lex_state = 3}, + [2903] = {.lex_state = 29, .external_lex_state = 3}, + [2904] = {.lex_state = 29, .external_lex_state = 4}, + [2905] = {.lex_state = 29, .external_lex_state = 4}, [2906] = {.lex_state = 29, .external_lex_state = 4}, - [2907] = {.lex_state = 39, .external_lex_state = 5}, - [2908] = {.lex_state = 29, .external_lex_state = 3}, + [2907] = {.lex_state = 29, .external_lex_state = 4}, + [2908] = {.lex_state = 29, .external_lex_state = 4}, [2909] = {.lex_state = 29, .external_lex_state = 4}, [2910] = {.lex_state = 29, .external_lex_state = 4}, - [2911] = {.lex_state = 27, .external_lex_state = 3}, - [2912] = {.lex_state = 29, .external_lex_state = 4}, - [2913] = {.lex_state = 39, .external_lex_state = 2}, + [2911] = {.lex_state = 29, .external_lex_state = 4}, + [2912] = {.lex_state = 38, .external_lex_state = 5}, + [2913] = {.lex_state = 27, .external_lex_state = 3}, [2914] = {.lex_state = 29, .external_lex_state = 4}, - [2915] = {.lex_state = 29, .external_lex_state = 3}, - [2916] = {.lex_state = 29, .external_lex_state = 4}, - [2917] = {.lex_state = 38, .external_lex_state = 5}, - [2918] = {.lex_state = 29, .external_lex_state = 3}, - [2919] = {.lex_state = 39, .external_lex_state = 2}, - [2920] = {.lex_state = 39, .external_lex_state = 5}, + [2915] = {.lex_state = 39, .external_lex_state = 2}, + [2916] = {.lex_state = 39, .external_lex_state = 2}, + [2917] = {.lex_state = 29, .external_lex_state = 4}, + [2918] = {.lex_state = 29, .external_lex_state = 4}, + [2919] = {.lex_state = 29, .external_lex_state = 4}, + [2920] = {.lex_state = 29, .external_lex_state = 3}, [2921] = {.lex_state = 29, .external_lex_state = 3}, [2922] = {.lex_state = 29, .external_lex_state = 4}, - [2923] = {.lex_state = 39, .external_lex_state = 5}, + [2923] = {.lex_state = 29, .external_lex_state = 4}, [2924] = {.lex_state = 29, .external_lex_state = 4}, [2925] = {.lex_state = 29, .external_lex_state = 4}, - [2926] = {.lex_state = 39, .external_lex_state = 2}, - [2927] = {.lex_state = 39, .external_lex_state = 5}, - [2928] = {.lex_state = 29, .external_lex_state = 4}, + [2926] = {.lex_state = 29, .external_lex_state = 4}, + [2927] = {.lex_state = 29, .external_lex_state = 4}, + [2928] = {.lex_state = 29, .external_lex_state = 3}, [2929] = {.lex_state = 29, .external_lex_state = 4}, [2930] = {.lex_state = 29, .external_lex_state = 3}, - [2931] = {.lex_state = 29, .external_lex_state = 4}, - [2932] = {.lex_state = 29, .external_lex_state = 4}, - [2933] = {.lex_state = 29, .external_lex_state = 4}, - [2934] = {.lex_state = 29, .external_lex_state = 3}, - [2935] = {.lex_state = 39, .external_lex_state = 2}, + [2931] = {.lex_state = 29, .external_lex_state = 3}, + [2932] = {.lex_state = 29, .external_lex_state = 3}, + [2933] = {.lex_state = 29, .external_lex_state = 3}, + [2934] = {.lex_state = 39, .external_lex_state = 5}, + [2935] = {.lex_state = 39, .external_lex_state = 5}, [2936] = {.lex_state = 29, .external_lex_state = 4}, - [2937] = {.lex_state = 29, .external_lex_state = 4}, - [2938] = {.lex_state = 39, .external_lex_state = 5}, + [2937] = {.lex_state = 29, .external_lex_state = 3}, + [2938] = {.lex_state = 29, .external_lex_state = 3}, [2939] = {.lex_state = 39, .external_lex_state = 5}, [2940] = {.lex_state = 29, .external_lex_state = 4}, - [2941] = {.lex_state = 29, .external_lex_state = 3}, - [2942] = {.lex_state = 39, .external_lex_state = 2}, + [2941] = {.lex_state = 29, .external_lex_state = 4}, + [2942] = {.lex_state = 29, .external_lex_state = 4}, [2943] = {.lex_state = 29, .external_lex_state = 3}, - [2944] = {.lex_state = 29, .external_lex_state = 4}, + [2944] = {.lex_state = 29, .external_lex_state = 3}, [2945] = {.lex_state = 29, .external_lex_state = 3}, - [2946] = {.lex_state = 39, .external_lex_state = 2}, - [2947] = {.lex_state = 39, .external_lex_state = 2}, - [2948] = {.lex_state = 29, .external_lex_state = 4}, + [2946] = {.lex_state = 29, .external_lex_state = 3}, + [2947] = {.lex_state = 29, .external_lex_state = 3}, + [2948] = {.lex_state = 29, .external_lex_state = 3}, [2949] = {.lex_state = 39, .external_lex_state = 5}, [2950] = {.lex_state = 39, .external_lex_state = 5}, - [2951] = {.lex_state = 39, .external_lex_state = 2}, - [2952] = {.lex_state = 29, .external_lex_state = 3}, - [2953] = {.lex_state = 29, .external_lex_state = 3}, - [2954] = {.lex_state = 29, .external_lex_state = 4}, + [2951] = {.lex_state = 39, .external_lex_state = 5}, + [2952] = {.lex_state = 39, .external_lex_state = 5}, + [2953] = {.lex_state = 39, .external_lex_state = 2}, + [2954] = {.lex_state = 39, .external_lex_state = 2}, [2955] = {.lex_state = 29, .external_lex_state = 3}, - [2956] = {.lex_state = 29, .external_lex_state = 3}, + [2956] = {.lex_state = 39, .external_lex_state = 2}, [2957] = {.lex_state = 29, .external_lex_state = 4}, - [2958] = {.lex_state = 29, .external_lex_state = 3}, - [2959] = {.lex_state = 39, .external_lex_state = 5}, - [2960] = {.lex_state = 29, .external_lex_state = 4}, - [2961] = {.lex_state = 29, .external_lex_state = 3}, - [2962] = {.lex_state = 39, .external_lex_state = 5}, - [2963] = {.lex_state = 29, .external_lex_state = 3}, - [2964] = {.lex_state = 29, .external_lex_state = 3}, - [2965] = {.lex_state = 39, .external_lex_state = 5}, - [2966] = {.lex_state = 29, .external_lex_state = 4}, - [2967] = {.lex_state = 29, .external_lex_state = 4}, - [2968] = {.lex_state = 29, .external_lex_state = 4}, - [2969] = {.lex_state = 29, .external_lex_state = 4}, - [2970] = {.lex_state = 29, .external_lex_state = 3}, - [2971] = {.lex_state = 29, .external_lex_state = 3}, - [2972] = {.lex_state = 29, .external_lex_state = 4}, - [2973] = {.lex_state = 29, .external_lex_state = 4}, - [2974] = {.lex_state = 39, .external_lex_state = 2}, - [2975] = {.lex_state = 29, .external_lex_state = 4}, - [2976] = {.lex_state = 39, .external_lex_state = 5}, - [2977] = {.lex_state = 29, .external_lex_state = 4}, + [2958] = {.lex_state = 39, .external_lex_state = 5}, + [2959] = {.lex_state = 39, .external_lex_state = 2}, + [2960] = {.lex_state = 29, .external_lex_state = 3}, + [2961] = {.lex_state = 39, .external_lex_state = 2}, + [2962] = {.lex_state = 29, .external_lex_state = 3}, + [2963] = {.lex_state = 39, .external_lex_state = 5}, + [2964] = {.lex_state = 29, .external_lex_state = 4}, + [2965] = {.lex_state = 29, .external_lex_state = 4}, + [2966] = {.lex_state = 39, .external_lex_state = 5}, + [2967] = {.lex_state = 39, .external_lex_state = 5}, + [2968] = {.lex_state = 39, .external_lex_state = 2}, + [2969] = {.lex_state = 29, .external_lex_state = 3}, + [2970] = {.lex_state = 39, .external_lex_state = 5}, + [2971] = {.lex_state = 39, .external_lex_state = 2}, + [2972] = {.lex_state = 29, .external_lex_state = 3}, + [2973] = {.lex_state = 29, .external_lex_state = 3}, + [2974] = {.lex_state = 29, .external_lex_state = 3}, + [2975] = {.lex_state = 39, .external_lex_state = 5}, + [2976] = {.lex_state = 29, .external_lex_state = 3}, + [2977] = {.lex_state = 39, .external_lex_state = 5}, [2978] = {.lex_state = 29, .external_lex_state = 4}, - [2979] = {.lex_state = 29, .external_lex_state = 3}, - [2980] = {.lex_state = 29, .external_lex_state = 3}, - [2981] = {.lex_state = 29, .external_lex_state = 3}, - [2982] = {.lex_state = 29, .external_lex_state = 4}, + [2979] = {.lex_state = 29, .external_lex_state = 4}, + [2980] = {.lex_state = 29, .external_lex_state = 4}, + [2981] = {.lex_state = 39, .external_lex_state = 5}, + [2982] = {.lex_state = 39, .external_lex_state = 5}, [2983] = {.lex_state = 29, .external_lex_state = 4}, - [2984] = {.lex_state = 29, .external_lex_state = 3}, + [2984] = {.lex_state = 39, .external_lex_state = 2}, [2985] = {.lex_state = 29, .external_lex_state = 4}, - [2986] = {.lex_state = 29, .external_lex_state = 4}, + [2986] = {.lex_state = 39, .external_lex_state = 2}, [2987] = {.lex_state = 29, .external_lex_state = 4}, - [2988] = {.lex_state = 39, .external_lex_state = 5}, + [2988] = {.lex_state = 29, .external_lex_state = 4}, [2989] = {.lex_state = 29, .external_lex_state = 4}, - [2990] = {.lex_state = 39, .external_lex_state = 5}, + [2990] = {.lex_state = 29, .external_lex_state = 4}, [2991] = {.lex_state = 29, .external_lex_state = 4}, [2992] = {.lex_state = 39, .external_lex_state = 5}, - [2993] = {.lex_state = 30, .external_lex_state = 4}, - [2994] = {.lex_state = 29, .external_lex_state = 4}, - [2995] = {.lex_state = 39, .external_lex_state = 2}, + [2993] = {.lex_state = 29, .external_lex_state = 3}, + [2994] = {.lex_state = 29, .external_lex_state = 3}, + [2995] = {.lex_state = 29, .external_lex_state = 4}, [2996] = {.lex_state = 29, .external_lex_state = 4}, - [2997] = {.lex_state = 39, .external_lex_state = 5}, - [2998] = {.lex_state = 29, .external_lex_state = 4}, - [2999] = {.lex_state = 29, .external_lex_state = 4}, + [2997] = {.lex_state = 29, .external_lex_state = 4}, + [2998] = {.lex_state = 29, .external_lex_state = 3}, + [2999] = {.lex_state = 29, .external_lex_state = 3}, [3000] = {.lex_state = 29, .external_lex_state = 4}, - [3001] = {.lex_state = 29, .external_lex_state = 4}, - [3002] = {.lex_state = 39, .external_lex_state = 5}, - [3003] = {.lex_state = 29, .external_lex_state = 3}, - [3004] = {.lex_state = 29, .external_lex_state = 3}, + [3001] = {.lex_state = 39, .external_lex_state = 5}, + [3002] = {.lex_state = 29, .external_lex_state = 3}, + [3003] = {.lex_state = 29, .external_lex_state = 4}, + [3004] = {.lex_state = 29, .external_lex_state = 4}, [3005] = {.lex_state = 29, .external_lex_state = 4}, - [3006] = {.lex_state = 29, .external_lex_state = 3}, - [3007] = {.lex_state = 29, .external_lex_state = 4}, - [3008] = {.lex_state = 29, .external_lex_state = 4}, - [3009] = {.lex_state = 29, .external_lex_state = 3}, - [3010] = {.lex_state = 39, .external_lex_state = 2}, - [3011] = {.lex_state = 39, .external_lex_state = 2}, - [3012] = {.lex_state = 29, .external_lex_state = 4}, - [3013] = {.lex_state = 39, .external_lex_state = 5}, - [3014] = {.lex_state = 39, .external_lex_state = 5}, - [3015] = {.lex_state = 29, .external_lex_state = 4}, + [3006] = {.lex_state = 29, .external_lex_state = 4}, + [3007] = {.lex_state = 29, .external_lex_state = 3}, + [3008] = {.lex_state = 39, .external_lex_state = 5}, + [3009] = {.lex_state = 29, .external_lex_state = 4}, + [3010] = {.lex_state = 29, .external_lex_state = 4}, + [3011] = {.lex_state = 29, .external_lex_state = 4}, + [3012] = {.lex_state = 39, .external_lex_state = 5}, + [3013] = {.lex_state = 29, .external_lex_state = 4}, + [3014] = {.lex_state = 29, .external_lex_state = 4}, + [3015] = {.lex_state = 29, .external_lex_state = 3}, [3016] = {.lex_state = 29, .external_lex_state = 4}, - [3017] = {.lex_state = 29, .external_lex_state = 4}, - [3018] = {.lex_state = 39, .external_lex_state = 5}, - [3019] = {.lex_state = 39, .external_lex_state = 5}, - [3020] = {.lex_state = 27, .external_lex_state = 4}, + [3017] = {.lex_state = 29, .external_lex_state = 3}, + [3018] = {.lex_state = 29, .external_lex_state = 4}, + [3019] = {.lex_state = 29, .external_lex_state = 4}, + [3020] = {.lex_state = 29, .external_lex_state = 3}, [3021] = {.lex_state = 29, .external_lex_state = 4}, [3022] = {.lex_state = 29, .external_lex_state = 4}, [3023] = {.lex_state = 29, .external_lex_state = 4}, - [3024] = {.lex_state = 29, .external_lex_state = 4}, + [3024] = {.lex_state = 29, .external_lex_state = 3}, [3025] = {.lex_state = 29, .external_lex_state = 4}, - [3026] = {.lex_state = 39, .external_lex_state = 5}, - [3027] = {.lex_state = 39, .external_lex_state = 5}, + [3026] = {.lex_state = 29, .external_lex_state = 4}, + [3027] = {.lex_state = 29, .external_lex_state = 4}, [3028] = {.lex_state = 29, .external_lex_state = 4}, - [3029] = {.lex_state = 29, .external_lex_state = 3}, + [3029] = {.lex_state = 29, .external_lex_state = 4}, [3030] = {.lex_state = 29, .external_lex_state = 4}, [3031] = {.lex_state = 29, .external_lex_state = 4}, - [3032] = {.lex_state = 29, .external_lex_state = 3}, - [3033] = {.lex_state = 29, .external_lex_state = 3}, + [3032] = {.lex_state = 39, .external_lex_state = 5}, + [3033] = {.lex_state = 27, .external_lex_state = 4}, [3034] = {.lex_state = 29, .external_lex_state = 3}, - [3035] = {.lex_state = 29, .external_lex_state = 4}, - [3036] = {.lex_state = 29, .external_lex_state = 4}, - [3037] = {.lex_state = 29, .external_lex_state = 3}, - [3038] = {.lex_state = 29, .external_lex_state = 3}, + [3035] = {.lex_state = 29, .external_lex_state = 3}, + [3036] = {.lex_state = 29, .external_lex_state = 3}, + [3037] = {.lex_state = 29, .external_lex_state = 4}, + [3038] = {.lex_state = 39, .external_lex_state = 5}, [3039] = {.lex_state = 29, .external_lex_state = 4}, [3040] = {.lex_state = 29, .external_lex_state = 4}, - [3041] = {.lex_state = 29, .external_lex_state = 3}, + [3041] = {.lex_state = 29, .external_lex_state = 4}, [3042] = {.lex_state = 29, .external_lex_state = 4}, [3043] = {.lex_state = 29, .external_lex_state = 4}, - [3044] = {.lex_state = 29, .external_lex_state = 4}, + [3044] = {.lex_state = 29, .external_lex_state = 3}, [3045] = {.lex_state = 29, .external_lex_state = 4}, - [3046] = {.lex_state = 39, .external_lex_state = 2}, + [3046] = {.lex_state = 29, .external_lex_state = 3}, [3047] = {.lex_state = 29, .external_lex_state = 4}, - [3048] = {.lex_state = 39, .external_lex_state = 2}, - [3049] = {.lex_state = 29, .external_lex_state = 3}, - [3050] = {.lex_state = 29, .external_lex_state = 3}, + [3048] = {.lex_state = 29, .external_lex_state = 4}, + [3049] = {.lex_state = 29, .external_lex_state = 4}, + [3050] = {.lex_state = 29, .external_lex_state = 4}, [3051] = {.lex_state = 29, .external_lex_state = 4}, - [3052] = {.lex_state = 29, .external_lex_state = 3}, - [3053] = {.lex_state = 29, .external_lex_state = 4}, - [3054] = {.lex_state = 29, .external_lex_state = 4}, - [3055] = {.lex_state = 29, .external_lex_state = 3}, - [3056] = {.lex_state = 29, .external_lex_state = 3}, + [3052] = {.lex_state = 29, .external_lex_state = 4}, + [3053] = {.lex_state = 39, .external_lex_state = 5}, + [3054] = {.lex_state = 29, .external_lex_state = 3}, + [3055] = {.lex_state = 39, .external_lex_state = 5}, + [3056] = {.lex_state = 29, .external_lex_state = 4}, [3057] = {.lex_state = 29, .external_lex_state = 4}, [3058] = {.lex_state = 29, .external_lex_state = 4}, - [3059] = {.lex_state = 29, .external_lex_state = 4}, + [3059] = {.lex_state = 29, .external_lex_state = 3}, [3060] = {.lex_state = 29, .external_lex_state = 4}, - [3061] = {.lex_state = 39, .external_lex_state = 5}, - [3062] = {.lex_state = 29, .external_lex_state = 4}, - [3063] = {.lex_state = 29, .external_lex_state = 4}, - [3064] = {.lex_state = 39, .external_lex_state = 5}, + [3061] = {.lex_state = 29, .external_lex_state = 4}, + [3062] = {.lex_state = 39, .external_lex_state = 5}, + [3063] = {.lex_state = 39, .external_lex_state = 5}, + [3064] = {.lex_state = 29, .external_lex_state = 4}, [3065] = {.lex_state = 29, .external_lex_state = 4}, - [3066] = {.lex_state = 29, .external_lex_state = 3}, - [3067] = {.lex_state = 29, .external_lex_state = 4}, + [3066] = {.lex_state = 29, .external_lex_state = 4}, + [3067] = {.lex_state = 29, .external_lex_state = 3}, [3068] = {.lex_state = 29, .external_lex_state = 3}, - [3069] = {.lex_state = 29, .external_lex_state = 4}, - [3070] = {.lex_state = 29, .external_lex_state = 3}, - [3071] = {.lex_state = 29, .external_lex_state = 3}, - [3072] = {.lex_state = 29, .external_lex_state = 4}, - [3073] = {.lex_state = 29, .external_lex_state = 4}, - [3074] = {.lex_state = 39, .external_lex_state = 5}, + [3069] = {.lex_state = 29, .external_lex_state = 3}, + [3070] = {.lex_state = 29, .external_lex_state = 4}, + [3071] = {.lex_state = 39, .external_lex_state = 5}, + [3072] = {.lex_state = 29, .external_lex_state = 3}, + [3073] = {.lex_state = 39, .external_lex_state = 5}, + [3074] = {.lex_state = 29, .external_lex_state = 4}, [3075] = {.lex_state = 29, .external_lex_state = 4}, [3076] = {.lex_state = 29, .external_lex_state = 4}, [3077] = {.lex_state = 29, .external_lex_state = 3}, [3078] = {.lex_state = 29, .external_lex_state = 3}, [3079] = {.lex_state = 29, .external_lex_state = 3}, - [3080] = {.lex_state = 29, .external_lex_state = 3}, - [3081] = {.lex_state = 39, .external_lex_state = 5}, - [3082] = {.lex_state = 39, .external_lex_state = 5}, + [3080] = {.lex_state = 29, .external_lex_state = 4}, + [3081] = {.lex_state = 29, .external_lex_state = 4}, + [3082] = {.lex_state = 29, .external_lex_state = 4}, [3083] = {.lex_state = 29, .external_lex_state = 3}, [3084] = {.lex_state = 29, .external_lex_state = 3}, [3085] = {.lex_state = 29, .external_lex_state = 4}, [3086] = {.lex_state = 29, .external_lex_state = 3}, - [3087] = {.lex_state = 29, .external_lex_state = 4}, - [3088] = {.lex_state = 29, .external_lex_state = 3}, - [3089] = {.lex_state = 29, .external_lex_state = 3}, + [3087] = {.lex_state = 29, .external_lex_state = 3}, + [3088] = {.lex_state = 39, .external_lex_state = 5}, + [3089] = {.lex_state = 39, .external_lex_state = 2}, [3090] = {.lex_state = 29, .external_lex_state = 3}, - [3091] = {.lex_state = 29, .external_lex_state = 3}, - [3092] = {.lex_state = 29, .external_lex_state = 3}, - [3093] = {.lex_state = 29, .external_lex_state = 3}, - [3094] = {.lex_state = 29, .external_lex_state = 4}, - [3095] = {.lex_state = 29, .external_lex_state = 3}, - [3096] = {.lex_state = 39, .external_lex_state = 5}, + [3091] = {.lex_state = 39, .external_lex_state = 2}, + [3092] = {.lex_state = 29, .external_lex_state = 4}, + [3093] = {.lex_state = 39, .external_lex_state = 5}, + [3094] = {.lex_state = 29, .external_lex_state = 3}, + [3095] = {.lex_state = 39, .external_lex_state = 2}, + [3096] = {.lex_state = 39, .external_lex_state = 2}, [3097] = {.lex_state = 29, .external_lex_state = 4}, - [3098] = {.lex_state = 39, .external_lex_state = 5}, + [3098] = {.lex_state = 29, .external_lex_state = 4}, [3099] = {.lex_state = 29, .external_lex_state = 3}, - [3100] = {.lex_state = 29, .external_lex_state = 3}, + [3100] = {.lex_state = 39, .external_lex_state = 5}, [3101] = {.lex_state = 29, .external_lex_state = 3}, - [3102] = {.lex_state = 29, .external_lex_state = 4}, - [3103] = {.lex_state = 29, .external_lex_state = 4}, - [3104] = {.lex_state = 29, .external_lex_state = 3}, - [3105] = {.lex_state = 29, .external_lex_state = 4}, - [3106] = {.lex_state = 29, .external_lex_state = 3}, - [3107] = {.lex_state = 29, .external_lex_state = 3}, + [3102] = {.lex_state = 39, .external_lex_state = 5}, + [3103] = {.lex_state = 29, .external_lex_state = 3}, + [3104] = {.lex_state = 29, .external_lex_state = 4}, + [3105] = {.lex_state = 29, .external_lex_state = 3}, + [3106] = {.lex_state = 39, .external_lex_state = 5}, + [3107] = {.lex_state = 39, .external_lex_state = 5}, [3108] = {.lex_state = 29, .external_lex_state = 3}, [3109] = {.lex_state = 29, .external_lex_state = 3}, [3110] = {.lex_state = 29, .external_lex_state = 3}, - [3111] = {.lex_state = 29, .external_lex_state = 4}, - [3112] = {.lex_state = 29, .external_lex_state = 4}, - [3113] = {.lex_state = 29, .external_lex_state = 3}, - [3114] = {.lex_state = 29, .external_lex_state = 3}, - [3115] = {.lex_state = 29, .external_lex_state = 3}, - [3116] = {.lex_state = 29, .external_lex_state = 3}, - [3117] = {.lex_state = 29, .external_lex_state = 3}, - [3118] = {.lex_state = 29, .external_lex_state = 4}, - [3119] = {.lex_state = 29, .external_lex_state = 3}, - [3120] = {.lex_state = 29, .external_lex_state = 3}, + [3111] = {.lex_state = 29, .external_lex_state = 3}, + [3112] = {.lex_state = 39, .external_lex_state = 5}, + [3113] = {.lex_state = 39, .external_lex_state = 5}, + [3114] = {.lex_state = 29, .external_lex_state = 4}, + [3115] = {.lex_state = 29, .external_lex_state = 4}, + [3116] = {.lex_state = 39, .external_lex_state = 5}, + [3117] = {.lex_state = 29, .external_lex_state = 4}, + [3118] = {.lex_state = 39, .external_lex_state = 2}, + [3119] = {.lex_state = 39, .external_lex_state = 5}, + [3120] = {.lex_state = 39, .external_lex_state = 5}, [3121] = {.lex_state = 29, .external_lex_state = 3}, - [3122] = {.lex_state = 29, .external_lex_state = 3}, + [3122] = {.lex_state = 39, .external_lex_state = 5}, [3123] = {.lex_state = 29, .external_lex_state = 3}, - [3124] = {.lex_state = 29, .external_lex_state = 3}, - [3125] = {.lex_state = 39, .external_lex_state = 5}, - [3126] = {.lex_state = 29, .external_lex_state = 3}, - [3127] = {.lex_state = 39, .external_lex_state = 5}, - [3128] = {.lex_state = 29, .external_lex_state = 3}, + [3124] = {.lex_state = 39, .external_lex_state = 2}, + [3125] = {.lex_state = 29, .external_lex_state = 3}, + [3126] = {.lex_state = 29, .external_lex_state = 4}, + [3127] = {.lex_state = 29, .external_lex_state = 3}, + [3128] = {.lex_state = 39, .external_lex_state = 5}, [3129] = {.lex_state = 29, .external_lex_state = 3}, - [3130] = {.lex_state = 29, .external_lex_state = 3}, - [3131] = {.lex_state = 29, .external_lex_state = 3}, + [3130] = {.lex_state = 29, .external_lex_state = 4}, + [3131] = {.lex_state = 39, .external_lex_state = 5}, [3132] = {.lex_state = 29, .external_lex_state = 3}, [3133] = {.lex_state = 29, .external_lex_state = 3}, [3134] = {.lex_state = 29, .external_lex_state = 3}, - [3135] = {.lex_state = 39, .external_lex_state = 2}, - [3136] = {.lex_state = 39, .external_lex_state = 5}, + [3135] = {.lex_state = 29, .external_lex_state = 3}, + [3136] = {.lex_state = 29, .external_lex_state = 4}, [3137] = {.lex_state = 29, .external_lex_state = 3}, [3138] = {.lex_state = 29, .external_lex_state = 3}, - [3139] = {.lex_state = 29, .external_lex_state = 4}, - [3140] = {.lex_state = 29, .external_lex_state = 4}, + [3139] = {.lex_state = 29, .external_lex_state = 3}, + [3140] = {.lex_state = 39, .external_lex_state = 5}, [3141] = {.lex_state = 39, .external_lex_state = 5}, - [3142] = {.lex_state = 39, .external_lex_state = 5}, + [3142] = {.lex_state = 29, .external_lex_state = 4}, [3143] = {.lex_state = 29, .external_lex_state = 4}, - [3144] = {.lex_state = 29, .external_lex_state = 3}, - [3145] = {.lex_state = 29, .external_lex_state = 3}, + [3144] = {.lex_state = 29, .external_lex_state = 4}, + [3145] = {.lex_state = 29, .external_lex_state = 4}, [3146] = {.lex_state = 29, .external_lex_state = 3}, - [3147] = {.lex_state = 29, .external_lex_state = 3}, - [3148] = {.lex_state = 29, .external_lex_state = 4}, - [3149] = {.lex_state = 29, .external_lex_state = 4}, - [3150] = {.lex_state = 39, .external_lex_state = 5}, + [3147] = {.lex_state = 29, .external_lex_state = 4}, + [3148] = {.lex_state = 29, .external_lex_state = 3}, + [3149] = {.lex_state = 30, .external_lex_state = 4}, + [3150] = {.lex_state = 29, .external_lex_state = 3}, [3151] = {.lex_state = 29, .external_lex_state = 3}, [3152] = {.lex_state = 29, .external_lex_state = 4}, [3153] = {.lex_state = 39, .external_lex_state = 5}, [3154] = {.lex_state = 39, .external_lex_state = 5}, - [3155] = {.lex_state = 39, .external_lex_state = 5}, - [3156] = {.lex_state = 39, .external_lex_state = 5}, - [3157] = {.lex_state = 39, .external_lex_state = 5}, - [3158] = {.lex_state = 39, .external_lex_state = 5}, + [3155] = {.lex_state = 29, .external_lex_state = 4}, + [3156] = {.lex_state = 29, .external_lex_state = 3}, + [3157] = {.lex_state = 29, .external_lex_state = 3}, + [3158] = {.lex_state = 29, .external_lex_state = 3}, [3159] = {.lex_state = 29, .external_lex_state = 3}, - [3160] = {.lex_state = 29, .external_lex_state = 4}, + [3160] = {.lex_state = 29, .external_lex_state = 3}, [3161] = {.lex_state = 29, .external_lex_state = 3}, [3162] = {.lex_state = 29, .external_lex_state = 4}, [3163] = {.lex_state = 29, .external_lex_state = 3}, - [3164] = {.lex_state = 39, .external_lex_state = 5}, - [3165] = {.lex_state = 39, .external_lex_state = 5}, + [3164] = {.lex_state = 29, .external_lex_state = 3}, + [3165] = {.lex_state = 29, .external_lex_state = 3}, [3166] = {.lex_state = 29, .external_lex_state = 3}, [3167] = {.lex_state = 29, .external_lex_state = 4}, - [3168] = {.lex_state = 29, .external_lex_state = 4}, + [3168] = {.lex_state = 29, .external_lex_state = 3}, [3169] = {.lex_state = 29, .external_lex_state = 3}, - [3170] = {.lex_state = 29, .external_lex_state = 4}, - [3171] = {.lex_state = 29, .external_lex_state = 4}, - [3172] = {.lex_state = 29, .external_lex_state = 4}, + [3170] = {.lex_state = 29, .external_lex_state = 3}, + [3171] = {.lex_state = 29, .external_lex_state = 3}, + [3172] = {.lex_state = 29, .external_lex_state = 3}, [3173] = {.lex_state = 29, .external_lex_state = 3}, [3174] = {.lex_state = 29, .external_lex_state = 3}, - [3175] = {.lex_state = 29, .external_lex_state = 4}, - [3176] = {.lex_state = 29, .external_lex_state = 4}, - [3177] = {.lex_state = 39, .external_lex_state = 2}, - [3178] = {.lex_state = 39, .external_lex_state = 2}, - [3179] = {.lex_state = 39, .external_lex_state = 5}, - [3180] = {.lex_state = 29, .external_lex_state = 3}, - [3181] = {.lex_state = 29, .external_lex_state = 4}, + [3175] = {.lex_state = 29, .external_lex_state = 3}, + [3176] = {.lex_state = 29, .external_lex_state = 3}, + [3177] = {.lex_state = 29, .external_lex_state = 4}, + [3178] = {.lex_state = 29, .external_lex_state = 4}, + [3179] = {.lex_state = 29, .external_lex_state = 3}, + [3180] = {.lex_state = 29, .external_lex_state = 4}, + [3181] = {.lex_state = 29, .external_lex_state = 3}, [3182] = {.lex_state = 29, .external_lex_state = 4}, [3183] = {.lex_state = 29, .external_lex_state = 4}, - [3184] = {.lex_state = 39, .external_lex_state = 5}, - [3185] = {.lex_state = 39, .external_lex_state = 5}, - [3186] = {.lex_state = 29, .external_lex_state = 3}, + [3184] = {.lex_state = 29, .external_lex_state = 4}, + [3185] = {.lex_state = 29, .external_lex_state = 4}, + [3186] = {.lex_state = 39, .external_lex_state = 2}, [3187] = {.lex_state = 29, .external_lex_state = 3}, [3188] = {.lex_state = 39, .external_lex_state = 5}, - [3189] = {.lex_state = 29, .external_lex_state = 3}, + [3189] = {.lex_state = 29, .external_lex_state = 4}, [3190] = {.lex_state = 29, .external_lex_state = 3}, [3191] = {.lex_state = 29, .external_lex_state = 3}, - [3192] = {.lex_state = 29, .external_lex_state = 4}, - [3193] = {.lex_state = 29, .external_lex_state = 3}, - [3194] = {.lex_state = 39, .external_lex_state = 5}, - [3195] = {.lex_state = 29, .external_lex_state = 4}, - [3196] = {.lex_state = 39, .external_lex_state = 5}, - [3197] = {.lex_state = 39, .external_lex_state = 5}, - [3198] = {.lex_state = 39, .external_lex_state = 5}, - [3199] = {.lex_state = 39, .external_lex_state = 5}, - [3200] = {.lex_state = 39, .external_lex_state = 2}, - [3201] = {.lex_state = 39, .external_lex_state = 2}, - [3202] = {.lex_state = 39, .external_lex_state = 5}, + [3192] = {.lex_state = 29, .external_lex_state = 3}, + [3193] = {.lex_state = 39, .external_lex_state = 5}, + [3194] = {.lex_state = 29, .external_lex_state = 3}, + [3195] = {.lex_state = 29, .external_lex_state = 3}, + [3196] = {.lex_state = 29, .external_lex_state = 3}, + [3197] = {.lex_state = 29, .external_lex_state = 3}, + [3198] = {.lex_state = 29, .external_lex_state = 3}, + [3199] = {.lex_state = 29, .external_lex_state = 3}, + [3200] = {.lex_state = 29, .external_lex_state = 3}, + [3201] = {.lex_state = 29, .external_lex_state = 3}, + [3202] = {.lex_state = 29, .external_lex_state = 3}, [3203] = {.lex_state = 29, .external_lex_state = 3}, - [3204] = {.lex_state = 39, .external_lex_state = 5}, - [3205] = {.lex_state = 29, .external_lex_state = 3}, + [3204] = {.lex_state = 29, .external_lex_state = 3}, + [3205] = {.lex_state = 32, .external_lex_state = 3}, [3206] = {.lex_state = 29, .external_lex_state = 3}, - [3207] = {.lex_state = 29, .external_lex_state = 3}, - [3208] = {.lex_state = 39, .external_lex_state = 2}, + [3207] = {.lex_state = 39, .external_lex_state = 5}, + [3208] = {.lex_state = 29, .external_lex_state = 3}, [3209] = {.lex_state = 29, .external_lex_state = 3}, - [3210] = {.lex_state = 29, .external_lex_state = 3}, - [3211] = {.lex_state = 39, .external_lex_state = 5}, - [3212] = {.lex_state = 29, .external_lex_state = 3}, - [3213] = {.lex_state = 29, .external_lex_state = 3}, - [3214] = {.lex_state = 29, .external_lex_state = 3}, - [3215] = {.lex_state = 29, .external_lex_state = 3}, + [3210] = {.lex_state = 39, .external_lex_state = 5}, + [3211] = {.lex_state = 39, .external_lex_state = 2}, + [3212] = {.lex_state = 39, .external_lex_state = 5}, + [3213] = {.lex_state = 39, .external_lex_state = 5}, + [3214] = {.lex_state = 39, .external_lex_state = 5}, + [3215] = {.lex_state = 39, .external_lex_state = 5}, [3216] = {.lex_state = 29, .external_lex_state = 3}, - [3217] = {.lex_state = 29, .external_lex_state = 3}, - [3218] = {.lex_state = 39, .external_lex_state = 2}, - [3219] = {.lex_state = 29, .external_lex_state = 3}, + [3217] = {.lex_state = 29, .external_lex_state = 4}, + [3218] = {.lex_state = 29, .external_lex_state = 3}, + [3219] = {.lex_state = 39, .external_lex_state = 5}, [3220] = {.lex_state = 39, .external_lex_state = 5}, - [3221] = {.lex_state = 32, .external_lex_state = 3}, - [3222] = {.lex_state = 39, .external_lex_state = 2}, - [3223] = {.lex_state = 39, .external_lex_state = 5}, + [3221] = {.lex_state = 29, .external_lex_state = 3}, + [3222] = {.lex_state = 29, .external_lex_state = 3}, + [3223] = {.lex_state = 29, .external_lex_state = 4}, [3224] = {.lex_state = 29, .external_lex_state = 3}, - [3225] = {.lex_state = 39, .external_lex_state = 5}, + [3225] = {.lex_state = 29, .external_lex_state = 3}, [3226] = {.lex_state = 29, .external_lex_state = 3}, - [3227] = {.lex_state = 39, .external_lex_state = 5}, + [3227] = {.lex_state = 29, .external_lex_state = 3}, [3228] = {.lex_state = 29, .external_lex_state = 3}, [3229] = {.lex_state = 29, .external_lex_state = 3}, - [3230] = {.lex_state = 39, .external_lex_state = 5}, + [3230] = {.lex_state = 29, .external_lex_state = 3}, [3231] = {.lex_state = 29, .external_lex_state = 3}, - [3232] = {.lex_state = 39, .external_lex_state = 5}, - [3233] = {.lex_state = 39, .external_lex_state = 5}, + [3232] = {.lex_state = 29, .external_lex_state = 3}, + [3233] = {.lex_state = 29, .external_lex_state = 3}, [3234] = {.lex_state = 39, .external_lex_state = 2}, [3235] = {.lex_state = 29, .external_lex_state = 3}, - [3236] = {.lex_state = 39, .external_lex_state = 2}, - [3237] = {.lex_state = 29, .external_lex_state = 3}, - [3238] = {.lex_state = 39, .external_lex_state = 5}, - [3239] = {.lex_state = 29, .external_lex_state = 3}, + [3236] = {.lex_state = 29, .external_lex_state = 3}, + [3237] = {.lex_state = 39, .external_lex_state = 5}, + [3238] = {.lex_state = 39, .external_lex_state = 2}, + [3239] = {.lex_state = 39, .external_lex_state = 5}, [3240] = {.lex_state = 39, .external_lex_state = 5}, - [3241] = {.lex_state = 29, .external_lex_state = 3}, - [3242] = {.lex_state = 29, .external_lex_state = 3}, - [3243] = {.lex_state = 29, .external_lex_state = 3}, - [3244] = {.lex_state = 39, .external_lex_state = 5}, - [3245] = {.lex_state = 29, .external_lex_state = 4}, - [3246] = {.lex_state = 29, .external_lex_state = 3}, - [3247] = {.lex_state = 39, .external_lex_state = 2}, - [3248] = {.lex_state = 29, .external_lex_state = 3}, - [3249] = {.lex_state = 39, .external_lex_state = 5}, - [3250] = {.lex_state = 39, .external_lex_state = 2}, - [3251] = {.lex_state = 39, .external_lex_state = 5}, - [3252] = {.lex_state = 39, .external_lex_state = 5}, - [3253] = {.lex_state = 29, .external_lex_state = 3}, - [3254] = {.lex_state = 29, .external_lex_state = 3}, + [3241] = {.lex_state = 39, .external_lex_state = 5}, + [3242] = {.lex_state = 39, .external_lex_state = 5}, + [3243] = {.lex_state = 39, .external_lex_state = 2}, + [3244] = {.lex_state = 39, .external_lex_state = 2}, + [3245] = {.lex_state = 29, .external_lex_state = 3}, + [3246] = {.lex_state = 39, .external_lex_state = 2}, + [3247] = {.lex_state = 39, .external_lex_state = 5}, + [3248] = {.lex_state = 39, .external_lex_state = 5}, + [3249] = {.lex_state = 29, .external_lex_state = 3}, + [3250] = {.lex_state = 29, .external_lex_state = 3}, + [3251] = {.lex_state = 29, .external_lex_state = 3}, + [3252] = {.lex_state = 29, .external_lex_state = 3}, + [3253] = {.lex_state = 39, .external_lex_state = 5}, + [3254] = {.lex_state = 39, .external_lex_state = 5}, [3255] = {.lex_state = 29, .external_lex_state = 3}, - [3256] = {.lex_state = 29, .external_lex_state = 3}, - [3257] = {.lex_state = 39, .external_lex_state = 5}, - [3258] = {.lex_state = 29, .external_lex_state = 3}, - [3259] = {.lex_state = 29, .external_lex_state = 3}, - [3260] = {.lex_state = 29, .external_lex_state = 3}, - [3261] = {.lex_state = 29, .external_lex_state = 4}, - [3262] = {.lex_state = 29, .external_lex_state = 3}, + [3256] = {.lex_state = 39, .external_lex_state = 2}, + [3257] = {.lex_state = 39, .external_lex_state = 2}, + [3258] = {.lex_state = 39, .external_lex_state = 5}, + [3259] = {.lex_state = 29, .external_lex_state = 4}, + [3260] = {.lex_state = 39, .external_lex_state = 5}, + [3261] = {.lex_state = 39, .external_lex_state = 5}, + [3262] = {.lex_state = 39, .external_lex_state = 5}, [3263] = {.lex_state = 39, .external_lex_state = 2}, [3264] = {.lex_state = 29, .external_lex_state = 3}, [3265] = {.lex_state = 39, .external_lex_state = 5}, - [3266] = {.lex_state = 38, .external_lex_state = 5}, - [3267] = {.lex_state = 39, .external_lex_state = 2}, - [3268] = {.lex_state = 39, .external_lex_state = 5}, + [3266] = {.lex_state = 39, .external_lex_state = 2}, + [3267] = {.lex_state = 29, .external_lex_state = 3}, + [3268] = {.lex_state = 29, .external_lex_state = 3}, [3269] = {.lex_state = 39, .external_lex_state = 5}, - [3270] = {.lex_state = 29, .external_lex_state = 3}, - [3271] = {.lex_state = 29, .external_lex_state = 3}, - [3272] = {.lex_state = 29, .external_lex_state = 3}, + [3270] = {.lex_state = 39, .external_lex_state = 2}, + [3271] = {.lex_state = 38, .external_lex_state = 5}, + [3272] = {.lex_state = 39, .external_lex_state = 2}, [3273] = {.lex_state = 29, .external_lex_state = 3}, - [3274] = {.lex_state = 39, .external_lex_state = 2}, - [3275] = {.lex_state = 29, .external_lex_state = 3}, - [3276] = {.lex_state = 39, .external_lex_state = 5}, + [3274] = {.lex_state = 29, .external_lex_state = 3}, + [3275] = {.lex_state = 38, .external_lex_state = 5}, + [3276] = {.lex_state = 29, .external_lex_state = 3}, [3277] = {.lex_state = 29, .external_lex_state = 3}, - [3278] = {.lex_state = 38, .external_lex_state = 5}, - [3279] = {.lex_state = 38, .external_lex_state = 2}, + [3278] = {.lex_state = 39, .external_lex_state = 2}, + [3279] = {.lex_state = 29, .external_lex_state = 3}, [3280] = {.lex_state = 29, .external_lex_state = 3}, [3281] = {.lex_state = 29, .external_lex_state = 3}, [3282] = {.lex_state = 29, .external_lex_state = 3}, - [3283] = {.lex_state = 29, .external_lex_state = 3}, + [3283] = {.lex_state = 39, .external_lex_state = 2}, [3284] = {.lex_state = 39, .external_lex_state = 5}, - [3285] = {.lex_state = 29, .external_lex_state = 4}, - [3286] = {.lex_state = 29, .external_lex_state = 4}, + [3285] = {.lex_state = 39, .external_lex_state = 2}, + [3286] = {.lex_state = 38, .external_lex_state = 5}, [3287] = {.lex_state = 29, .external_lex_state = 3}, - [3288] = {.lex_state = 29, .external_lex_state = 3}, - [3289] = {.lex_state = 39, .external_lex_state = 5}, - [3290] = {.lex_state = 29, .external_lex_state = 3}, + [3288] = {.lex_state = 38, .external_lex_state = 5}, + [3289] = {.lex_state = 29, .external_lex_state = 3}, + [3290] = {.lex_state = 39, .external_lex_state = 5}, [3291] = {.lex_state = 38, .external_lex_state = 5}, - [3292] = {.lex_state = 29, .external_lex_state = 3}, - [3293] = {.lex_state = 39, .external_lex_state = 2}, - [3294] = {.lex_state = 38, .external_lex_state = 5}, - [3295] = {.lex_state = 39, .external_lex_state = 2}, - [3296] = {.lex_state = 39, .external_lex_state = 5}, + [3292] = {.lex_state = 38, .external_lex_state = 2}, + [3293] = {.lex_state = 29, .external_lex_state = 3}, + [3294] = {.lex_state = 39, .external_lex_state = 5}, + [3295] = {.lex_state = 39, .external_lex_state = 5}, + [3296] = {.lex_state = 29, .external_lex_state = 4}, [3297] = {.lex_state = 38, .external_lex_state = 5}, - [3298] = {.lex_state = 29, .external_lex_state = 3}, - [3299] = {.lex_state = 39, .external_lex_state = 2}, + [3298] = {.lex_state = 29, .external_lex_state = 4}, + [3299] = {.lex_state = 39, .external_lex_state = 5}, [3300] = {.lex_state = 29, .external_lex_state = 3}, - [3301] = {.lex_state = 29, .external_lex_state = 3}, - [3302] = {.lex_state = 39, .external_lex_state = 5}, + [3301] = {.lex_state = 39, .external_lex_state = 5}, + [3302] = {.lex_state = 29, .external_lex_state = 3}, [3303] = {.lex_state = 29, .external_lex_state = 3}, - [3304] = {.lex_state = 38, .external_lex_state = 5}, + [3304] = {.lex_state = 29, .external_lex_state = 3}, [3305] = {.lex_state = 29, .external_lex_state = 3}, - [3306] = {.lex_state = 39, .external_lex_state = 5}, - [3307] = {.lex_state = 39, .external_lex_state = 2}, - [3308] = {.lex_state = 29, .external_lex_state = 3}, + [3306] = {.lex_state = 29, .external_lex_state = 3}, + [3307] = {.lex_state = 39, .external_lex_state = 5}, + [3308] = {.lex_state = 39, .external_lex_state = 2}, [3309] = {.lex_state = 39, .external_lex_state = 2}, - [3310] = {.lex_state = 39, .external_lex_state = 2}, - [3311] = {.lex_state = 39, .external_lex_state = 2}, - [3312] = {.lex_state = 39, .external_lex_state = 2}, + [3310] = {.lex_state = 39, .external_lex_state = 5}, + [3311] = {.lex_state = 39, .external_lex_state = 5}, + [3312] = {.lex_state = 29, .external_lex_state = 3}, [3313] = {.lex_state = 39, .external_lex_state = 2}, [3314] = {.lex_state = 29, .external_lex_state = 3}, [3315] = {.lex_state = 39, .external_lex_state = 5}, [3316] = {.lex_state = 39, .external_lex_state = 2}, [3317] = {.lex_state = 39, .external_lex_state = 5}, [3318] = {.lex_state = 39, .external_lex_state = 5}, - [3319] = {.lex_state = 39, .external_lex_state = 2}, - [3320] = {.lex_state = 39, .external_lex_state = 2}, - [3321] = {.lex_state = 39, .external_lex_state = 5}, + [3319] = {.lex_state = 39, .external_lex_state = 5}, + [3320] = {.lex_state = 39, .external_lex_state = 5}, + [3321] = {.lex_state = 39, .external_lex_state = 2}, [3322] = {.lex_state = 39, .external_lex_state = 2}, - [3323] = {.lex_state = 29, .external_lex_state = 3}, - [3324] = {.lex_state = 39, .external_lex_state = 2}, + [3323] = {.lex_state = 39, .external_lex_state = 2}, + [3324] = {.lex_state = 29, .external_lex_state = 3}, [3325] = {.lex_state = 39, .external_lex_state = 2}, [3326] = {.lex_state = 29, .external_lex_state = 3}, - [3327] = {.lex_state = 39, .external_lex_state = 2}, - [3328] = {.lex_state = 39, .external_lex_state = 5}, + [3327] = {.lex_state = 39, .external_lex_state = 5}, + [3328] = {.lex_state = 39, .external_lex_state = 2}, [3329] = {.lex_state = 39, .external_lex_state = 5}, - [3330] = {.lex_state = 39, .external_lex_state = 2}, + [3330] = {.lex_state = 39, .external_lex_state = 5}, [3331] = {.lex_state = 29, .external_lex_state = 3}, - [3332] = {.lex_state = 39, .external_lex_state = 5}, - [3333] = {.lex_state = 29, .external_lex_state = 3}, - [3334] = {.lex_state = 39, .external_lex_state = 2}, - [3335] = {.lex_state = 39, .external_lex_state = 2}, - [3336] = {.lex_state = 39, .external_lex_state = 2}, - [3337] = {.lex_state = 39, .external_lex_state = 5}, + [3332] = {.lex_state = 39, .external_lex_state = 2}, + [3333] = {.lex_state = 39, .external_lex_state = 2}, + [3334] = {.lex_state = 39, .external_lex_state = 5}, + [3335] = {.lex_state = 39, .external_lex_state = 5}, + [3336] = {.lex_state = 39, .external_lex_state = 5}, + [3337] = {.lex_state = 39, .external_lex_state = 2}, [3338] = {.lex_state = 39, .external_lex_state = 5}, - [3339] = {.lex_state = 29, .external_lex_state = 3}, + [3339] = {.lex_state = 39, .external_lex_state = 5}, [3340] = {.lex_state = 39, .external_lex_state = 5}, - [3341] = {.lex_state = 39, .external_lex_state = 5}, - [3342] = {.lex_state = 30, .external_lex_state = 3}, - [3343] = {.lex_state = 39, .external_lex_state = 5}, - [3344] = {.lex_state = 39, .external_lex_state = 5}, - [3345] = {.lex_state = 39, .external_lex_state = 5}, - [3346] = {.lex_state = 39, .external_lex_state = 5}, + [3341] = {.lex_state = 39, .external_lex_state = 2}, + [3342] = {.lex_state = 29, .external_lex_state = 3}, + [3343] = {.lex_state = 39, .external_lex_state = 2}, + [3344] = {.lex_state = 39, .external_lex_state = 2}, + [3345] = {.lex_state = 29, .external_lex_state = 3}, + [3346] = {.lex_state = 30, .external_lex_state = 3}, [3347] = {.lex_state = 39, .external_lex_state = 2}, - [3348] = {.lex_state = 39, .external_lex_state = 5}, - [3349] = {.lex_state = 29, .external_lex_state = 3}, + [3348] = {.lex_state = 39, .external_lex_state = 2}, + [3349] = {.lex_state = 39, .external_lex_state = 2}, [3350] = {.lex_state = 29, .external_lex_state = 3}, [3351] = {.lex_state = 29, .external_lex_state = 3}, [3352] = {.lex_state = 29, .external_lex_state = 3}, - [3353] = {.lex_state = 39, .external_lex_state = 2}, + [3353] = {.lex_state = 29, .external_lex_state = 3}, [3354] = {.lex_state = 29, .external_lex_state = 3}, - [3355] = {.lex_state = 29, .external_lex_state = 3}, + [3355] = {.lex_state = 39, .external_lex_state = 2}, [3356] = {.lex_state = 29, .external_lex_state = 3}, [3357] = {.lex_state = 29, .external_lex_state = 3}, [3358] = {.lex_state = 29, .external_lex_state = 3}, - [3359] = {.lex_state = 38, .external_lex_state = 5}, + [3359] = {.lex_state = 29, .external_lex_state = 3}, [3360] = {.lex_state = 38, .external_lex_state = 5}, [3361] = {.lex_state = 38, .external_lex_state = 5}, [3362] = {.lex_state = 38, .external_lex_state = 5}, [3363] = {.lex_state = 38, .external_lex_state = 5}, [3364] = {.lex_state = 38, .external_lex_state = 5}, - [3365] = {.lex_state = 38, .external_lex_state = 5}, + [3365] = {.lex_state = 39, .external_lex_state = 2}, [3366] = {.lex_state = 38, .external_lex_state = 5}, [3367] = {.lex_state = 38, .external_lex_state = 5}, [3368] = {.lex_state = 38, .external_lex_state = 5}, [3369] = {.lex_state = 38, .external_lex_state = 5}, [3370] = {.lex_state = 38, .external_lex_state = 5}, [3371] = {.lex_state = 38, .external_lex_state = 5}, - [3372] = {.lex_state = 39, .external_lex_state = 2}, + [3372] = {.lex_state = 38, .external_lex_state = 5}, [3373] = {.lex_state = 38, .external_lex_state = 5}, [3374] = {.lex_state = 38, .external_lex_state = 5}, [3375] = {.lex_state = 38, .external_lex_state = 5}, @@ -25513,7 +25514,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3377] = {.lex_state = 38, .external_lex_state = 5}, [3378] = {.lex_state = 38, .external_lex_state = 5}, [3379] = {.lex_state = 38, .external_lex_state = 5}, - [3380] = {.lex_state = 39, .external_lex_state = 2}, + [3380] = {.lex_state = 38, .external_lex_state = 5}, [3381] = {.lex_state = 38, .external_lex_state = 5}, [3382] = {.lex_state = 38, .external_lex_state = 5}, [3383] = {.lex_state = 38, .external_lex_state = 5}, @@ -25522,13 +25523,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3386] = {.lex_state = 38, .external_lex_state = 5}, [3387] = {.lex_state = 38, .external_lex_state = 5}, [3388] = {.lex_state = 38, .external_lex_state = 5}, - [3389] = {.lex_state = 39, .external_lex_state = 2}, + [3389] = {.lex_state = 38, .external_lex_state = 5}, [3390] = {.lex_state = 38, .external_lex_state = 5}, [3391] = {.lex_state = 38, .external_lex_state = 5}, - [3392] = {.lex_state = 39, .external_lex_state = 2}, + [3392] = {.lex_state = 38, .external_lex_state = 5}, [3393] = {.lex_state = 38, .external_lex_state = 5}, [3394] = {.lex_state = 38, .external_lex_state = 5}, - [3395] = {.lex_state = 39, .external_lex_state = 2}, + [3395] = {.lex_state = 38, .external_lex_state = 5}, [3396] = {.lex_state = 38, .external_lex_state = 5}, [3397] = {.lex_state = 38, .external_lex_state = 5}, [3398] = {.lex_state = 38, .external_lex_state = 5}, @@ -25537,11 +25538,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3401] = {.lex_state = 38, .external_lex_state = 5}, [3402] = {.lex_state = 38, .external_lex_state = 5}, [3403] = {.lex_state = 38, .external_lex_state = 5}, - [3404] = {.lex_state = 38, .external_lex_state = 5}, - [3405] = {.lex_state = 38, .external_lex_state = 5}, + [3404] = {.lex_state = 39, .external_lex_state = 2}, + [3405] = {.lex_state = 39, .external_lex_state = 2}, [3406] = {.lex_state = 38, .external_lex_state = 5}, - [3407] = {.lex_state = 38, .external_lex_state = 5}, - [3408] = {.lex_state = 38, .external_lex_state = 5}, + [3407] = {.lex_state = 38, .external_lex_state = 2}, + [3408] = {.lex_state = 39, .external_lex_state = 2}, [3409] = {.lex_state = 38, .external_lex_state = 5}, [3410] = {.lex_state = 38, .external_lex_state = 5}, [3411] = {.lex_state = 38, .external_lex_state = 5}, @@ -25549,19 +25550,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3413] = {.lex_state = 38, .external_lex_state = 5}, [3414] = {.lex_state = 38, .external_lex_state = 5}, [3415] = {.lex_state = 38, .external_lex_state = 5}, - [3416] = {.lex_state = 39, .external_lex_state = 2}, + [3416] = {.lex_state = 38, .external_lex_state = 5}, [3417] = {.lex_state = 39, .external_lex_state = 2}, [3418] = {.lex_state = 38, .external_lex_state = 2}, [3419] = {.lex_state = 38, .external_lex_state = 2}, - [3420] = {.lex_state = 38, .external_lex_state = 2}, + [3420] = {.lex_state = 39, .external_lex_state = 2}, [3421] = {.lex_state = 39, .external_lex_state = 2}, [3422] = {.lex_state = 39, .external_lex_state = 2}, - [3423] = {.lex_state = 38, .external_lex_state = 2}, + [3423] = {.lex_state = 39, .external_lex_state = 2}, [3424] = {.lex_state = 38, .external_lex_state = 2}, [3425] = {.lex_state = 38, .external_lex_state = 2}, [3426] = {.lex_state = 39, .external_lex_state = 2}, - [3427] = {.lex_state = 39, .external_lex_state = 2}, - [3428] = {.lex_state = 39, .external_lex_state = 2}, + [3427] = {.lex_state = 38, .external_lex_state = 2}, + [3428] = {.lex_state = 38, .external_lex_state = 2}, [3429] = {.lex_state = 38, .external_lex_state = 2}, [3430] = {.lex_state = 39, .external_lex_state = 2}, [3431] = {.lex_state = 38, .external_lex_state = 2}, @@ -25569,7 +25570,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3433] = {.lex_state = 39, .external_lex_state = 2}, [3434] = {.lex_state = 39, .external_lex_state = 2}, [3435] = {.lex_state = 39, .external_lex_state = 2}, - [3436] = {.lex_state = 38, .external_lex_state = 2}, + [3436] = {.lex_state = 39, .external_lex_state = 2}, [3437] = {.lex_state = 39, .external_lex_state = 2}, [3438] = {.lex_state = 39, .external_lex_state = 2}, [3439] = {.lex_state = 39, .external_lex_state = 2}, @@ -25577,14 +25578,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3441] = {.lex_state = 39, .external_lex_state = 2}, [3442] = {.lex_state = 39, .external_lex_state = 2}, [3443] = {.lex_state = 39, .external_lex_state = 2}, - [3444] = {.lex_state = 38, .external_lex_state = 2}, + [3444] = {.lex_state = 39, .external_lex_state = 2}, [3445] = {.lex_state = 39, .external_lex_state = 2}, [3446] = {.lex_state = 39, .external_lex_state = 2}, [3447] = {.lex_state = 39, .external_lex_state = 2}, [3448] = {.lex_state = 39, .external_lex_state = 2}, [3449] = {.lex_state = 39, .external_lex_state = 2}, [3450] = {.lex_state = 39, .external_lex_state = 2}, - [3451] = {.lex_state = 39, .external_lex_state = 2}, + [3451] = {.lex_state = 38, .external_lex_state = 2}, [3452] = {.lex_state = 39, .external_lex_state = 2}, [3453] = {.lex_state = 39, .external_lex_state = 2}, [3454] = {.lex_state = 39, .external_lex_state = 2}, @@ -25598,57 +25599,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3462] = {.lex_state = 39, .external_lex_state = 2}, [3463] = {.lex_state = 38, .external_lex_state = 2}, [3464] = {.lex_state = 39, .external_lex_state = 2}, - [3465] = {.lex_state = 39, .external_lex_state = 2}, + [3465] = {.lex_state = 38, .external_lex_state = 2}, [3466] = {.lex_state = 39, .external_lex_state = 2}, [3467] = {.lex_state = 39, .external_lex_state = 2}, [3468] = {.lex_state = 39, .external_lex_state = 2}, [3469] = {.lex_state = 39, .external_lex_state = 2}, [3470] = {.lex_state = 39, .external_lex_state = 2}, [3471] = {.lex_state = 39, .external_lex_state = 2}, - [3472] = {.lex_state = 406, .external_lex_state = 2}, + [3472] = {.lex_state = 39, .external_lex_state = 2}, [3473] = {.lex_state = 39, .external_lex_state = 2}, - [3474] = {.lex_state = 39, .external_lex_state = 2}, - [3475] = {.lex_state = 406, .external_lex_state = 2}, - [3476] = {.lex_state = 406, .external_lex_state = 2}, + [3474] = {.lex_state = 405, .external_lex_state = 2}, + [3475] = {.lex_state = 405, .external_lex_state = 2}, + [3476] = {.lex_state = 39, .external_lex_state = 2}, [3477] = {.lex_state = 39, .external_lex_state = 2}, - [3478] = {.lex_state = 406, .external_lex_state = 2}, + [3478] = {.lex_state = 39, .external_lex_state = 2}, [3479] = {.lex_state = 39, .external_lex_state = 2}, - [3480] = {.lex_state = 38, .external_lex_state = 2}, + [3480] = {.lex_state = 405, .external_lex_state = 2}, [3481] = {.lex_state = 39, .external_lex_state = 2}, [3482] = {.lex_state = 39, .external_lex_state = 2}, - [3483] = {.lex_state = 39, .external_lex_state = 2}, - [3484] = {.lex_state = 406, .external_lex_state = 2}, - [3485] = {.lex_state = 39, .external_lex_state = 2}, - [3486] = {.lex_state = 406, .external_lex_state = 2}, + [3483] = {.lex_state = 405, .external_lex_state = 2}, + [3484] = {.lex_state = 405, .external_lex_state = 2}, + [3485] = {.lex_state = 38, .external_lex_state = 2}, + [3486] = {.lex_state = 39, .external_lex_state = 2}, [3487] = {.lex_state = 39, .external_lex_state = 2}, [3488] = {.lex_state = 39, .external_lex_state = 2}, [3489] = {.lex_state = 38, .external_lex_state = 2}, - [3490] = {.lex_state = 406, .external_lex_state = 2}, - [3491] = {.lex_state = 406, .external_lex_state = 2}, + [3490] = {.lex_state = 39, .external_lex_state = 2}, + [3491] = {.lex_state = 39, .external_lex_state = 2}, [3492] = {.lex_state = 39, .external_lex_state = 2}, [3493] = {.lex_state = 39, .external_lex_state = 2}, - [3494] = {.lex_state = 38, .external_lex_state = 2}, + [3494] = {.lex_state = 39, .external_lex_state = 2}, [3495] = {.lex_state = 39, .external_lex_state = 2}, - [3496] = {.lex_state = 38, .external_lex_state = 2}, + [3496] = {.lex_state = 39, .external_lex_state = 2}, [3497] = {.lex_state = 39, .external_lex_state = 2}, [3498] = {.lex_state = 39, .external_lex_state = 2}, - [3499] = {.lex_state = 406, .external_lex_state = 2}, + [3499] = {.lex_state = 405, .external_lex_state = 2}, [3500] = {.lex_state = 39, .external_lex_state = 2}, - [3501] = {.lex_state = 39, .external_lex_state = 2}, - [3502] = {.lex_state = 39, .external_lex_state = 2}, + [3501] = {.lex_state = 38, .external_lex_state = 2}, + [3502] = {.lex_state = 405, .external_lex_state = 2}, [3503] = {.lex_state = 39, .external_lex_state = 2}, - [3504] = {.lex_state = 406, .external_lex_state = 2}, + [3504] = {.lex_state = 405, .external_lex_state = 2}, [3505] = {.lex_state = 39, .external_lex_state = 2}, - [3506] = {.lex_state = 406, .external_lex_state = 2}, + [3506] = {.lex_state = 405, .external_lex_state = 2}, [3507] = {.lex_state = 39, .external_lex_state = 2}, [3508] = {.lex_state = 39, .external_lex_state = 2}, [3509] = {.lex_state = 39, .external_lex_state = 2}, - [3510] = {.lex_state = 406, .external_lex_state = 2}, - [3511] = {.lex_state = 39, .external_lex_state = 2}, - [3512] = {.lex_state = 39, .external_lex_state = 2}, + [3510] = {.lex_state = 39, .external_lex_state = 2}, + [3511] = {.lex_state = 405, .external_lex_state = 2}, + [3512] = {.lex_state = 405, .external_lex_state = 2}, [3513] = {.lex_state = 39, .external_lex_state = 2}, [3514] = {.lex_state = 39, .external_lex_state = 2}, - [3515] = {.lex_state = 39, .external_lex_state = 2}, + [3515] = {.lex_state = 405, .external_lex_state = 2}, [3516] = {.lex_state = 39, .external_lex_state = 2}, [3517] = {.lex_state = 39, .external_lex_state = 2}, [3518] = {.lex_state = 39, .external_lex_state = 2}, @@ -25670,34 +25671,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3534] = {.lex_state = 39, .external_lex_state = 2}, [3535] = {.lex_state = 39, .external_lex_state = 2}, [3536] = {.lex_state = 39, .external_lex_state = 2}, - [3537] = {.lex_state = 39, .external_lex_state = 2}, - [3538] = {.lex_state = 39, .external_lex_state = 2}, + [3537] = {.lex_state = 38, .external_lex_state = 2}, + [3538] = {.lex_state = 38, .external_lex_state = 2}, [3539] = {.lex_state = 39, .external_lex_state = 2}, [3540] = {.lex_state = 39, .external_lex_state = 2}, [3541] = {.lex_state = 39, .external_lex_state = 2}, [3542] = {.lex_state = 39, .external_lex_state = 2}, [3543] = {.lex_state = 38, .external_lex_state = 2}, [3544] = {.lex_state = 39, .external_lex_state = 2}, - [3545] = {.lex_state = 38, .external_lex_state = 2}, + [3545] = {.lex_state = 39, .external_lex_state = 2}, [3546] = {.lex_state = 39, .external_lex_state = 2}, [3547] = {.lex_state = 39, .external_lex_state = 2}, - [3548] = {.lex_state = 39, .external_lex_state = 2}, + [3548] = {.lex_state = 38, .external_lex_state = 2}, [3549] = {.lex_state = 39, .external_lex_state = 2}, [3550] = {.lex_state = 39, .external_lex_state = 2}, - [3551] = {.lex_state = 38, .external_lex_state = 2}, + [3551] = {.lex_state = 39, .external_lex_state = 2}, [3552] = {.lex_state = 39, .external_lex_state = 2}, [3553] = {.lex_state = 39, .external_lex_state = 2}, [3554] = {.lex_state = 39, .external_lex_state = 2}, [3555] = {.lex_state = 39, .external_lex_state = 2}, [3556] = {.lex_state = 39, .external_lex_state = 2}, - [3557] = {.lex_state = 38, .external_lex_state = 2}, + [3557] = {.lex_state = 39, .external_lex_state = 2}, [3558] = {.lex_state = 39, .external_lex_state = 2}, [3559] = {.lex_state = 39, .external_lex_state = 2}, [3560] = {.lex_state = 39, .external_lex_state = 2}, [3561] = {.lex_state = 39, .external_lex_state = 2}, [3562] = {.lex_state = 39, .external_lex_state = 2}, [3563] = {.lex_state = 39, .external_lex_state = 2}, - [3564] = {.lex_state = 39, .external_lex_state = 2}, + [3564] = {.lex_state = 38, .external_lex_state = 2}, [3565] = {.lex_state = 39, .external_lex_state = 2}, [3566] = {.lex_state = 39, .external_lex_state = 2}, [3567] = {.lex_state = 39, .external_lex_state = 2}, @@ -25711,7 +25712,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3575] = {.lex_state = 39, .external_lex_state = 2}, [3576] = {.lex_state = 39, .external_lex_state = 2}, [3577] = {.lex_state = 39, .external_lex_state = 2}, - [3578] = {.lex_state = 39, .external_lex_state = 2}, + [3578] = {.lex_state = 38, .external_lex_state = 2}, [3579] = {.lex_state = 39, .external_lex_state = 2}, [3580] = {.lex_state = 39, .external_lex_state = 2}, [3581] = {.lex_state = 39, .external_lex_state = 2}, @@ -25728,20 +25729,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3592] = {.lex_state = 39, .external_lex_state = 2}, [3593] = {.lex_state = 39, .external_lex_state = 2}, [3594] = {.lex_state = 38, .external_lex_state = 2}, - [3595] = {.lex_state = 38, .external_lex_state = 2}, - [3596] = {.lex_state = 86, .external_lex_state = 2}, - [3597] = {.lex_state = 49, .external_lex_state = 2}, - [3598] = {.lex_state = 49, .external_lex_state = 2}, + [3595] = {.lex_state = 39, .external_lex_state = 2}, + [3596] = {.lex_state = 39, .external_lex_state = 2}, + [3597] = {.lex_state = 39, .external_lex_state = 2}, + [3598] = {.lex_state = 86, .external_lex_state = 2}, [3599] = {.lex_state = 49, .external_lex_state = 2}, [3600] = {.lex_state = 49, .external_lex_state = 2}, [3601] = {.lex_state = 49, .external_lex_state = 2}, [3602] = {.lex_state = 49, .external_lex_state = 2}, - [3603] = {.lex_state = 63, .external_lex_state = 2}, - [3604] = {.lex_state = 63, .external_lex_state = 2}, - [3605] = {.lex_state = 49, .external_lex_state = 2}, - [3606] = {.lex_state = 49, .external_lex_state = 2}, + [3603] = {.lex_state = 49, .external_lex_state = 2}, + [3604] = {.lex_state = 49, .external_lex_state = 2}, + [3605] = {.lex_state = 63, .external_lex_state = 2}, + [3606] = {.lex_state = 63, .external_lex_state = 2}, [3607] = {.lex_state = 49, .external_lex_state = 2}, - [3608] = {.lex_state = 63, .external_lex_state = 2}, + [3608] = {.lex_state = 49, .external_lex_state = 2}, [3609] = {.lex_state = 49, .external_lex_state = 2}, [3610] = {.lex_state = 49, .external_lex_state = 2}, [3611] = {.lex_state = 49, .external_lex_state = 2}, @@ -25754,7 +25755,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3618] = {.lex_state = 49, .external_lex_state = 2}, [3619] = {.lex_state = 49, .external_lex_state = 2}, [3620] = {.lex_state = 49, .external_lex_state = 2}, - [3621] = {.lex_state = 49, .external_lex_state = 2}, + [3621] = {.lex_state = 63, .external_lex_state = 2}, [3622] = {.lex_state = 49, .external_lex_state = 2}, [3623] = {.lex_state = 49, .external_lex_state = 2}, [3624] = {.lex_state = 49, .external_lex_state = 2}, @@ -25773,106 +25774,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3637] = {.lex_state = 49, .external_lex_state = 2}, [3638] = {.lex_state = 49, .external_lex_state = 2}, [3639] = {.lex_state = 49, .external_lex_state = 2}, - [3640] = {.lex_state = 55, .external_lex_state = 2}, - [3641] = {.lex_state = 55, .external_lex_state = 2}, - [3642] = {.lex_state = 64, .external_lex_state = 2}, + [3640] = {.lex_state = 49, .external_lex_state = 2}, + [3641] = {.lex_state = 49, .external_lex_state = 2}, + [3642] = {.lex_state = 55, .external_lex_state = 2}, [3643] = {.lex_state = 55, .external_lex_state = 2}, - [3644] = {.lex_state = 63, .external_lex_state = 2}, - [3645] = {.lex_state = 55, .external_lex_state = 2}, + [3644] = {.lex_state = 64, .external_lex_state = 2}, + [3645] = {.lex_state = 64, .external_lex_state = 2}, [3646] = {.lex_state = 55, .external_lex_state = 2}, - [3647] = {.lex_state = 64, .external_lex_state = 2}, - [3648] = {.lex_state = 49, .external_lex_state = 5}, - [3649] = {.lex_state = 49, .external_lex_state = 2}, - [3650] = {.lex_state = 63, .external_lex_state = 2}, + [3647] = {.lex_state = 63, .external_lex_state = 2}, + [3648] = {.lex_state = 55, .external_lex_state = 2}, + [3649] = {.lex_state = 55, .external_lex_state = 2}, + [3650] = {.lex_state = 49, .external_lex_state = 5}, [3651] = {.lex_state = 63, .external_lex_state = 2}, [3652] = {.lex_state = 63, .external_lex_state = 2}, - [3653] = {.lex_state = 63, .external_lex_state = 2}, + [3653] = {.lex_state = 49, .external_lex_state = 2}, [3654] = {.lex_state = 63, .external_lex_state = 2}, [3655] = {.lex_state = 63, .external_lex_state = 2}, - [3656] = {.lex_state = 49, .external_lex_state = 2}, + [3656] = {.lex_state = 63, .external_lex_state = 2}, [3657] = {.lex_state = 63, .external_lex_state = 2}, [3658] = {.lex_state = 63, .external_lex_state = 2}, [3659] = {.lex_state = 49, .external_lex_state = 2}, - [3660] = {.lex_state = 48, .external_lex_state = 5}, - [3661] = {.lex_state = 63, .external_lex_state = 2}, + [3660] = {.lex_state = 49, .external_lex_state = 2}, + [3661] = {.lex_state = 48, .external_lex_state = 5}, [3662] = {.lex_state = 63, .external_lex_state = 2}, [3663] = {.lex_state = 63, .external_lex_state = 2}, - [3664] = {.lex_state = 63, .external_lex_state = 2}, - [3665] = {.lex_state = 49, .external_lex_state = 5}, - [3666] = {.lex_state = 49, .external_lex_state = 2}, + [3664] = {.lex_state = 48, .external_lex_state = 5}, + [3665] = {.lex_state = 63, .external_lex_state = 2}, + [3666] = {.lex_state = 63, .external_lex_state = 2}, [3667] = {.lex_state = 63, .external_lex_state = 2}, [3668] = {.lex_state = 63, .external_lex_state = 2}, [3669] = {.lex_state = 63, .external_lex_state = 2}, [3670] = {.lex_state = 63, .external_lex_state = 2}, - [3671] = {.lex_state = 63, .external_lex_state = 2}, - [3672] = {.lex_state = 49, .external_lex_state = 5}, + [3671] = {.lex_state = 49, .external_lex_state = 5}, + [3672] = {.lex_state = 63, .external_lex_state = 2}, [3673] = {.lex_state = 63, .external_lex_state = 2}, - [3674] = {.lex_state = 48, .external_lex_state = 5}, - [3675] = {.lex_state = 63, .external_lex_state = 2}, + [3674] = {.lex_state = 49, .external_lex_state = 5}, + [3675] = {.lex_state = 49, .external_lex_state = 2}, [3676] = {.lex_state = 63, .external_lex_state = 2}, [3677] = {.lex_state = 63, .external_lex_state = 2}, [3678] = {.lex_state = 63, .external_lex_state = 2}, [3679] = {.lex_state = 63, .external_lex_state = 2}, [3680] = {.lex_state = 63, .external_lex_state = 2}, [3681] = {.lex_state = 63, .external_lex_state = 2}, - [3682] = {.lex_state = 49, .external_lex_state = 5}, - [3683] = {.lex_state = 63, .external_lex_state = 2}, - [3684] = {.lex_state = 63, .external_lex_state = 2}, + [3682] = {.lex_state = 63, .external_lex_state = 2}, + [3683] = {.lex_state = 405, .external_lex_state = 2}, + [3684] = {.lex_state = 405, .external_lex_state = 2}, [3685] = {.lex_state = 63, .external_lex_state = 2}, - [3686] = {.lex_state = 49, .external_lex_state = 6}, - [3687] = {.lex_state = 49, .external_lex_state = 6}, - [3688] = {.lex_state = 63, .external_lex_state = 2}, - [3689] = {.lex_state = 63, .external_lex_state = 2}, - [3690] = {.lex_state = 63, .external_lex_state = 2}, - [3691] = {.lex_state = 406, .external_lex_state = 2}, + [3686] = {.lex_state = 405, .external_lex_state = 2}, + [3687] = {.lex_state = 405, .external_lex_state = 2}, + [3688] = {.lex_state = 405, .external_lex_state = 2}, + [3689] = {.lex_state = 49, .external_lex_state = 6}, + [3690] = {.lex_state = 49, .external_lex_state = 6}, + [3691] = {.lex_state = 405, .external_lex_state = 2}, [3692] = {.lex_state = 63, .external_lex_state = 2}, - [3693] = {.lex_state = 63, .external_lex_state = 2}, - [3694] = {.lex_state = 406, .external_lex_state = 2}, - [3695] = {.lex_state = 406, .external_lex_state = 2}, - [3696] = {.lex_state = 406, .external_lex_state = 2}, - [3697] = {.lex_state = 406, .external_lex_state = 2}, - [3698] = {.lex_state = 406, .external_lex_state = 2}, + [3693] = {.lex_state = 405, .external_lex_state = 2}, + [3694] = {.lex_state = 63, .external_lex_state = 2}, + [3695] = {.lex_state = 63, .external_lex_state = 2}, + [3696] = {.lex_state = 49, .external_lex_state = 6}, + [3697] = {.lex_state = 63, .external_lex_state = 2}, + [3698] = {.lex_state = 63, .external_lex_state = 2}, [3699] = {.lex_state = 63, .external_lex_state = 2}, - [3700] = {.lex_state = 406, .external_lex_state = 2}, + [3700] = {.lex_state = 63, .external_lex_state = 2}, [3701] = {.lex_state = 63, .external_lex_state = 2}, - [3702] = {.lex_state = 406, .external_lex_state = 2}, - [3703] = {.lex_state = 406, .external_lex_state = 2}, - [3704] = {.lex_state = 406, .external_lex_state = 2}, + [3702] = {.lex_state = 63, .external_lex_state = 2}, + [3703] = {.lex_state = 63, .external_lex_state = 2}, + [3704] = {.lex_state = 63, .external_lex_state = 2}, [3705] = {.lex_state = 63, .external_lex_state = 2}, - [3706] = {.lex_state = 406, .external_lex_state = 2}, - [3707] = {.lex_state = 49, .external_lex_state = 6}, + [3706] = {.lex_state = 63, .external_lex_state = 2}, + [3707] = {.lex_state = 63, .external_lex_state = 2}, [3708] = {.lex_state = 63, .external_lex_state = 2}, - [3709] = {.lex_state = 406, .external_lex_state = 2}, + [3709] = {.lex_state = 63, .external_lex_state = 2}, [3710] = {.lex_state = 63, .external_lex_state = 2}, - [3711] = {.lex_state = 406, .external_lex_state = 2}, - [3712] = {.lex_state = 406, .external_lex_state = 2}, + [3711] = {.lex_state = 405, .external_lex_state = 2}, + [3712] = {.lex_state = 63, .external_lex_state = 2}, [3713] = {.lex_state = 63, .external_lex_state = 2}, - [3714] = {.lex_state = 406, .external_lex_state = 2}, - [3715] = {.lex_state = 406, .external_lex_state = 2}, - [3716] = {.lex_state = 406, .external_lex_state = 2}, + [3714] = {.lex_state = 63, .external_lex_state = 2}, + [3715] = {.lex_state = 63, .external_lex_state = 2}, + [3716] = {.lex_state = 63, .external_lex_state = 2}, [3717] = {.lex_state = 63, .external_lex_state = 2}, [3718] = {.lex_state = 63, .external_lex_state = 2}, [3719] = {.lex_state = 63, .external_lex_state = 2}, [3720] = {.lex_state = 63, .external_lex_state = 2}, - [3721] = {.lex_state = 406, .external_lex_state = 2}, - [3722] = {.lex_state = 63, .external_lex_state = 2}, - [3723] = {.lex_state = 406, .external_lex_state = 2}, - [3724] = {.lex_state = 406, .external_lex_state = 2}, - [3725] = {.lex_state = 63, .external_lex_state = 2}, - [3726] = {.lex_state = 63, .external_lex_state = 2}, - [3727] = {.lex_state = 63, .external_lex_state = 2}, - [3728] = {.lex_state = 63, .external_lex_state = 2}, - [3729] = {.lex_state = 63, .external_lex_state = 2}, - [3730] = {.lex_state = 63, .external_lex_state = 2}, + [3721] = {.lex_state = 405, .external_lex_state = 2}, + [3722] = {.lex_state = 405, .external_lex_state = 2}, + [3723] = {.lex_state = 49, .external_lex_state = 5}, + [3724] = {.lex_state = 49, .external_lex_state = 5}, + [3725] = {.lex_state = 49, .external_lex_state = 5}, + [3726] = {.lex_state = 405, .external_lex_state = 2}, + [3727] = {.lex_state = 48, .external_lex_state = 5}, + [3728] = {.lex_state = 405, .external_lex_state = 2}, + [3729] = {.lex_state = 405, .external_lex_state = 2}, + [3730] = {.lex_state = 405, .external_lex_state = 2}, [3731] = {.lex_state = 63, .external_lex_state = 2}, - [3732] = {.lex_state = 63, .external_lex_state = 2}, - [3733] = {.lex_state = 406, .external_lex_state = 2}, - [3734] = {.lex_state = 63, .external_lex_state = 2}, - [3735] = {.lex_state = 63, .external_lex_state = 2}, - [3736] = {.lex_state = 49, .external_lex_state = 5}, + [3732] = {.lex_state = 405, .external_lex_state = 2}, + [3733] = {.lex_state = 405, .external_lex_state = 2}, + [3734] = {.lex_state = 405, .external_lex_state = 2}, + [3735] = {.lex_state = 405, .external_lex_state = 2}, + [3736] = {.lex_state = 405, .external_lex_state = 2}, [3737] = {.lex_state = 49, .external_lex_state = 5}, [3738] = {.lex_state = 49, .external_lex_state = 5}, - [3739] = {.lex_state = 49, .external_lex_state = 5}, + [3739] = {.lex_state = 405, .external_lex_state = 2}, [3740] = {.lex_state = 49, .external_lex_state = 5}, [3741] = {.lex_state = 49, .external_lex_state = 5}, [3742] = {.lex_state = 49, .external_lex_state = 5}, @@ -25883,30 +25884,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3747] = {.lex_state = 49, .external_lex_state = 5}, [3748] = {.lex_state = 49, .external_lex_state = 5}, [3749] = {.lex_state = 49, .external_lex_state = 5}, - [3750] = {.lex_state = 63, .external_lex_state = 2}, - [3751] = {.lex_state = 406, .external_lex_state = 2}, + [3750] = {.lex_state = 49, .external_lex_state = 5}, + [3751] = {.lex_state = 49, .external_lex_state = 5}, [3752] = {.lex_state = 49, .external_lex_state = 5}, - [3753] = {.lex_state = 63, .external_lex_state = 2}, - [3754] = {.lex_state = 49, .external_lex_state = 5}, - [3755] = {.lex_state = 49, .external_lex_state = 5}, + [3753] = {.lex_state = 49, .external_lex_state = 5}, + [3754] = {.lex_state = 405, .external_lex_state = 2}, + [3755] = {.lex_state = 405, .external_lex_state = 2}, [3756] = {.lex_state = 49, .external_lex_state = 5}, - [3757] = {.lex_state = 48, .external_lex_state = 5}, - [3758] = {.lex_state = 63, .external_lex_state = 2}, - [3759] = {.lex_state = 63, .external_lex_state = 2}, - [3760] = {.lex_state = 406, .external_lex_state = 2}, - [3761] = {.lex_state = 406, .external_lex_state = 2}, - [3762] = {.lex_state = 406, .external_lex_state = 2}, + [3757] = {.lex_state = 49, .external_lex_state = 5}, + [3758] = {.lex_state = 49, .external_lex_state = 5}, + [3759] = {.lex_state = 49, .external_lex_state = 5}, + [3760] = {.lex_state = 405, .external_lex_state = 2}, + [3761] = {.lex_state = 405, .external_lex_state = 2}, + [3762] = {.lex_state = 63, .external_lex_state = 2}, [3763] = {.lex_state = 63, .external_lex_state = 2}, [3764] = {.lex_state = 63, .external_lex_state = 2}, - [3765] = {.lex_state = 63, .external_lex_state = 2}, - [3766] = {.lex_state = 406, .external_lex_state = 2}, + [3765] = {.lex_state = 405, .external_lex_state = 2}, + [3766] = {.lex_state = 405, .external_lex_state = 2}, [3767] = {.lex_state = 63, .external_lex_state = 2}, [3768] = {.lex_state = 63, .external_lex_state = 2}, [3769] = {.lex_state = 63, .external_lex_state = 2}, - [3770] = {.lex_state = 406, .external_lex_state = 2}, - [3771] = {.lex_state = 406, .external_lex_state = 2}, - [3772] = {.lex_state = 49, .external_lex_state = 5}, - [3773] = {.lex_state = 49, .external_lex_state = 5}, + [3770] = {.lex_state = 63, .external_lex_state = 2}, + [3771] = {.lex_state = 63, .external_lex_state = 2}, + [3772] = {.lex_state = 63, .external_lex_state = 2}, + [3773] = {.lex_state = 63, .external_lex_state = 2}, [3774] = {.lex_state = 49, .external_lex_state = 5}, [3775] = {.lex_state = 49, .external_lex_state = 5}, [3776] = {.lex_state = 49, .external_lex_state = 5}, @@ -25915,109 +25916,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3779] = {.lex_state = 49, .external_lex_state = 5}, [3780] = {.lex_state = 49, .external_lex_state = 5}, [3781] = {.lex_state = 49, .external_lex_state = 5}, - [3782] = {.lex_state = 406, .external_lex_state = 2}, - [3783] = {.lex_state = 63, .external_lex_state = 2}, + [3782] = {.lex_state = 49, .external_lex_state = 5}, + [3783] = {.lex_state = 49, .external_lex_state = 5}, [3784] = {.lex_state = 63, .external_lex_state = 2}, [3785] = {.lex_state = 63, .external_lex_state = 2}, [3786] = {.lex_state = 63, .external_lex_state = 2}, - [3787] = {.lex_state = 49, .external_lex_state = 5}, - [3788] = {.lex_state = 49, .external_lex_state = 5}, - [3789] = {.lex_state = 49, .external_lex_state = 5}, - [3790] = {.lex_state = 49, .external_lex_state = 5}, - [3791] = {.lex_state = 49, .external_lex_state = 5}, - [3792] = {.lex_state = 48, .external_lex_state = 5}, - [3793] = {.lex_state = 56, .external_lex_state = 2}, + [3787] = {.lex_state = 63, .external_lex_state = 2}, + [3788] = {.lex_state = 63, .external_lex_state = 2}, + [3789] = {.lex_state = 63, .external_lex_state = 2}, + [3790] = {.lex_state = 405, .external_lex_state = 2}, + [3791] = {.lex_state = 405, .external_lex_state = 2}, + [3792] = {.lex_state = 405, .external_lex_state = 2}, + [3793] = {.lex_state = 49, .external_lex_state = 5}, [3794] = {.lex_state = 48, .external_lex_state = 5}, [3795] = {.lex_state = 48, .external_lex_state = 5}, - [3796] = {.lex_state = 48, .external_lex_state = 5}, + [3796] = {.lex_state = 56, .external_lex_state = 2}, [3797] = {.lex_state = 48, .external_lex_state = 5}, - [3798] = {.lex_state = 48, .external_lex_state = 5}, - [3799] = {.lex_state = 48, .external_lex_state = 5}, - [3800] = {.lex_state = 56, .external_lex_state = 2}, - [3801] = {.lex_state = 87, .external_lex_state = 2}, + [3798] = {.lex_state = 48, .external_lex_state = 2}, + [3799] = {.lex_state = 56, .external_lex_state = 2}, + [3800] = {.lex_state = 48, .external_lex_state = 5}, + [3801] = {.lex_state = 48, .external_lex_state = 5}, [3802] = {.lex_state = 48, .external_lex_state = 5}, [3803] = {.lex_state = 48, .external_lex_state = 5}, - [3804] = {.lex_state = 56, .external_lex_state = 2}, - [3805] = {.lex_state = 48, .external_lex_state = 5}, + [3804] = {.lex_state = 48, .external_lex_state = 5}, + [3805] = {.lex_state = 87, .external_lex_state = 2}, [3806] = {.lex_state = 48, .external_lex_state = 5}, [3807] = {.lex_state = 48, .external_lex_state = 5}, [3808] = {.lex_state = 48, .external_lex_state = 5}, [3809] = {.lex_state = 48, .external_lex_state = 5}, [3810] = {.lex_state = 48, .external_lex_state = 5}, - [3811] = {.lex_state = 56, .external_lex_state = 2}, - [3812] = {.lex_state = 48, .external_lex_state = 5}, - [3813] = {.lex_state = 48, .external_lex_state = 5}, + [3811] = {.lex_state = 48, .external_lex_state = 5}, + [3812] = {.lex_state = 56, .external_lex_state = 2}, + [3813] = {.lex_state = 56, .external_lex_state = 2}, [3814] = {.lex_state = 48, .external_lex_state = 5}, [3815] = {.lex_state = 48, .external_lex_state = 5}, [3816] = {.lex_state = 87, .external_lex_state = 2}, - [3817] = {.lex_state = 87, .external_lex_state = 2}, - [3818] = {.lex_state = 48, .external_lex_state = 5}, + [3817] = {.lex_state = 48, .external_lex_state = 5}, + [3818] = {.lex_state = 64, .external_lex_state = 2}, [3819] = {.lex_state = 48, .external_lex_state = 5}, - [3820] = {.lex_state = 48, .external_lex_state = 2}, + [3820] = {.lex_state = 48, .external_lex_state = 5}, [3821] = {.lex_state = 48, .external_lex_state = 5}, [3822] = {.lex_state = 48, .external_lex_state = 5}, [3823] = {.lex_state = 48, .external_lex_state = 5}, - [3824] = {.lex_state = 87, .external_lex_state = 2}, + [3824] = {.lex_state = 48, .external_lex_state = 5}, [3825] = {.lex_state = 48, .external_lex_state = 5}, - [3826] = {.lex_state = 48, .external_lex_state = 5}, - [3827] = {.lex_state = 48, .external_lex_state = 5}, + [3826] = {.lex_state = 56, .external_lex_state = 2}, + [3827] = {.lex_state = 87, .external_lex_state = 2}, [3828] = {.lex_state = 48, .external_lex_state = 5}, - [3829] = {.lex_state = 87, .external_lex_state = 2}, - [3830] = {.lex_state = 64, .external_lex_state = 2}, + [3829] = {.lex_state = 48, .external_lex_state = 5}, + [3830] = {.lex_state = 87, .external_lex_state = 2}, [3831] = {.lex_state = 48, .external_lex_state = 5}, - [3832] = {.lex_state = 56, .external_lex_state = 2}, - [3833] = {.lex_state = 65, .external_lex_state = 2}, - [3834] = {.lex_state = 49, .external_lex_state = 6}, - [3835] = {.lex_state = 65, .external_lex_state = 2}, - [3836] = {.lex_state = 48, .external_lex_state = 5}, + [3832] = {.lex_state = 48, .external_lex_state = 5}, + [3833] = {.lex_state = 48, .external_lex_state = 5}, + [3834] = {.lex_state = 87, .external_lex_state = 2}, + [3835] = {.lex_state = 49, .external_lex_state = 6}, + [3836] = {.lex_state = 48, .external_lex_state = 6}, [3837] = {.lex_state = 48, .external_lex_state = 5}, - [3838] = {.lex_state = 48, .external_lex_state = 5}, - [3839] = {.lex_state = 48, .external_lex_state = 5}, - [3840] = {.lex_state = 48, .external_lex_state = 5}, - [3841] = {.lex_state = 48, .external_lex_state = 5}, + [3838] = {.lex_state = 49, .external_lex_state = 6}, + [3839] = {.lex_state = 65, .external_lex_state = 2}, + [3840] = {.lex_state = 81, .external_lex_state = 2}, + [3841] = {.lex_state = 49, .external_lex_state = 6}, [3842] = {.lex_state = 48, .external_lex_state = 5}, - [3843] = {.lex_state = 48, .external_lex_state = 5}, - [3844] = {.lex_state = 48, .external_lex_state = 5}, - [3845] = {.lex_state = 48, .external_lex_state = 5}, - [3846] = {.lex_state = 49, .external_lex_state = 5}, - [3847] = {.lex_state = 48, .external_lex_state = 5}, + [3843] = {.lex_state = 49, .external_lex_state = 6}, + [3844] = {.lex_state = 49, .external_lex_state = 6}, + [3845] = {.lex_state = 49, .external_lex_state = 6}, + [3846] = {.lex_state = 65, .external_lex_state = 2}, + [3847] = {.lex_state = 49, .external_lex_state = 5}, [3848] = {.lex_state = 48, .external_lex_state = 5}, - [3849] = {.lex_state = 65, .external_lex_state = 2}, - [3850] = {.lex_state = 81, .external_lex_state = 2}, - [3851] = {.lex_state = 49, .external_lex_state = 6}, - [3852] = {.lex_state = 49, .external_lex_state = 6}, - [3853] = {.lex_state = 49, .external_lex_state = 5}, - [3854] = {.lex_state = 49, .external_lex_state = 6}, + [3849] = {.lex_state = 48, .external_lex_state = 5}, + [3850] = {.lex_state = 49, .external_lex_state = 5}, + [3851] = {.lex_state = 48, .external_lex_state = 5}, + [3852] = {.lex_state = 49, .external_lex_state = 5}, + [3853] = {.lex_state = 48, .external_lex_state = 5}, + [3854] = {.lex_state = 65, .external_lex_state = 2}, [3855] = {.lex_state = 49, .external_lex_state = 6}, [3856] = {.lex_state = 48, .external_lex_state = 5}, - [3857] = {.lex_state = 65, .external_lex_state = 2}, + [3857] = {.lex_state = 48, .external_lex_state = 5}, [3858] = {.lex_state = 49, .external_lex_state = 6}, - [3859] = {.lex_state = 48, .external_lex_state = 6}, - [3860] = {.lex_state = 49, .external_lex_state = 6}, - [3861] = {.lex_state = 48, .external_lex_state = 5}, - [3862] = {.lex_state = 49, .external_lex_state = 6}, - [3863] = {.lex_state = 48, .external_lex_state = 5}, - [3864] = {.lex_state = 49, .external_lex_state = 6}, - [3865] = {.lex_state = 65, .external_lex_state = 2}, + [3859] = {.lex_state = 48, .external_lex_state = 5}, + [3860] = {.lex_state = 48, .external_lex_state = 5}, + [3861] = {.lex_state = 49, .external_lex_state = 6}, + [3862] = {.lex_state = 65, .external_lex_state = 2}, + [3863] = {.lex_state = 49, .external_lex_state = 6}, + [3864] = {.lex_state = 48, .external_lex_state = 5}, + [3865] = {.lex_state = 49, .external_lex_state = 6}, [3866] = {.lex_state = 48, .external_lex_state = 5}, - [3867] = {.lex_state = 49, .external_lex_state = 6}, - [3868] = {.lex_state = 48, .external_lex_state = 5}, - [3869] = {.lex_state = 49, .external_lex_state = 6}, - [3870] = {.lex_state = 49, .external_lex_state = 6}, - [3871] = {.lex_state = 49, .external_lex_state = 6}, - [3872] = {.lex_state = 48, .external_lex_state = 5}, + [3867] = {.lex_state = 49, .external_lex_state = 5}, + [3868] = {.lex_state = 49, .external_lex_state = 5}, + [3869] = {.lex_state = 48, .external_lex_state = 5}, + [3870] = {.lex_state = 48, .external_lex_state = 5}, + [3871] = {.lex_state = 49, .external_lex_state = 5}, + [3872] = {.lex_state = 49, .external_lex_state = 6}, [3873] = {.lex_state = 49, .external_lex_state = 6}, - [3874] = {.lex_state = 49, .external_lex_state = 5}, + [3874] = {.lex_state = 49, .external_lex_state = 6}, [3875] = {.lex_state = 49, .external_lex_state = 6}, [3876] = {.lex_state = 49, .external_lex_state = 6}, - [3877] = {.lex_state = 49, .external_lex_state = 5}, - [3878] = {.lex_state = 81, .external_lex_state = 2}, - [3879] = {.lex_state = 49, .external_lex_state = 5}, - [3880] = {.lex_state = 49, .external_lex_state = 6}, + [3877] = {.lex_state = 49, .external_lex_state = 6}, + [3878] = {.lex_state = 48, .external_lex_state = 5}, + [3879] = {.lex_state = 48, .external_lex_state = 5}, + [3880] = {.lex_state = 48, .external_lex_state = 5}, [3881] = {.lex_state = 49, .external_lex_state = 6}, - [3882] = {.lex_state = 48, .external_lex_state = 5}, - [3883] = {.lex_state = 65, .external_lex_state = 2}, - [3884] = {.lex_state = 65, .external_lex_state = 2}, + [3882] = {.lex_state = 49, .external_lex_state = 6}, + [3883] = {.lex_state = 49, .external_lex_state = 6}, + [3884] = {.lex_state = 49, .external_lex_state = 6}, [3885] = {.lex_state = 49, .external_lex_state = 6}, [3886] = {.lex_state = 49, .external_lex_state = 6}, [3887] = {.lex_state = 49, .external_lex_state = 6}, @@ -26025,78 +26026,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3889] = {.lex_state = 49, .external_lex_state = 6}, [3890] = {.lex_state = 49, .external_lex_state = 6}, [3891] = {.lex_state = 49, .external_lex_state = 6}, - [3892] = {.lex_state = 48, .external_lex_state = 5}, + [3892] = {.lex_state = 49, .external_lex_state = 6}, [3893] = {.lex_state = 48, .external_lex_state = 5}, [3894] = {.lex_state = 49, .external_lex_state = 6}, - [3895] = {.lex_state = 48, .external_lex_state = 5}, - [3896] = {.lex_state = 48, .external_lex_state = 5}, + [3895] = {.lex_state = 49, .external_lex_state = 6}, + [3896] = {.lex_state = 49, .external_lex_state = 6}, [3897] = {.lex_state = 49, .external_lex_state = 6}, - [3898] = {.lex_state = 48, .external_lex_state = 5}, - [3899] = {.lex_state = 49, .external_lex_state = 5}, + [3898] = {.lex_state = 49, .external_lex_state = 6}, + [3899] = {.lex_state = 65, .external_lex_state = 2}, [3900] = {.lex_state = 65, .external_lex_state = 2}, - [3901] = {.lex_state = 49, .external_lex_state = 6}, - [3902] = {.lex_state = 49, .external_lex_state = 6}, - [3903] = {.lex_state = 49, .external_lex_state = 6}, + [3901] = {.lex_state = 81, .external_lex_state = 2}, + [3902] = {.lex_state = 65, .external_lex_state = 2}, + [3903] = {.lex_state = 48, .external_lex_state = 5}, [3904] = {.lex_state = 49, .external_lex_state = 5}, - [3905] = {.lex_state = 49, .external_lex_state = 6}, - [3906] = {.lex_state = 49, .external_lex_state = 6}, - [3907] = {.lex_state = 49, .external_lex_state = 6}, - [3908] = {.lex_state = 49, .external_lex_state = 6}, + [3905] = {.lex_state = 65, .external_lex_state = 2}, + [3906] = {.lex_state = 48, .external_lex_state = 5}, + [3907] = {.lex_state = 48, .external_lex_state = 5}, + [3908] = {.lex_state = 48, .external_lex_state = 5}, [3909] = {.lex_state = 48, .external_lex_state = 5}, [3910] = {.lex_state = 48, .external_lex_state = 5}, [3911] = {.lex_state = 48, .external_lex_state = 5}, - [3912] = {.lex_state = 55, .external_lex_state = 2}, + [3912] = {.lex_state = 48, .external_lex_state = 5}, [3913] = {.lex_state = 48, .external_lex_state = 5}, [3914] = {.lex_state = 48, .external_lex_state = 5}, - [3915] = {.lex_state = 81, .external_lex_state = 2}, - [3916] = {.lex_state = 48, .external_lex_state = 5}, + [3915] = {.lex_state = 48, .external_lex_state = 5}, + [3916] = {.lex_state = 81, .external_lex_state = 2}, [3917] = {.lex_state = 48, .external_lex_state = 5}, [3918] = {.lex_state = 48, .external_lex_state = 5}, [3919] = {.lex_state = 48, .external_lex_state = 5}, [3920] = {.lex_state = 48, .external_lex_state = 5}, - [3921] = {.lex_state = 48, .external_lex_state = 5}, + [3921] = {.lex_state = 55, .external_lex_state = 2}, [3922] = {.lex_state = 48, .external_lex_state = 5}, [3923] = {.lex_state = 48, .external_lex_state = 5}, - [3924] = {.lex_state = 65, .external_lex_state = 2}, + [3924] = {.lex_state = 48, .external_lex_state = 5}, [3925] = {.lex_state = 48, .external_lex_state = 5}, [3926] = {.lex_state = 48, .external_lex_state = 5}, - [3927] = {.lex_state = 48, .external_lex_state = 5}, + [3927] = {.lex_state = 55, .external_lex_state = 2}, [3928] = {.lex_state = 48, .external_lex_state = 5}, [3929] = {.lex_state = 48, .external_lex_state = 5}, - [3930] = {.lex_state = 81, .external_lex_state = 2}, - [3931] = {.lex_state = 48, .external_lex_state = 5}, + [3930] = {.lex_state = 48, .external_lex_state = 5}, + [3931] = {.lex_state = 65, .external_lex_state = 2}, [3932] = {.lex_state = 48, .external_lex_state = 5}, [3933] = {.lex_state = 48, .external_lex_state = 5}, [3934] = {.lex_state = 48, .external_lex_state = 5}, [3935] = {.lex_state = 48, .external_lex_state = 5}, - [3936] = {.lex_state = 55, .external_lex_state = 2}, - [3937] = {.lex_state = 48, .external_lex_state = 5}, - [3938] = {.lex_state = 48, .external_lex_state = 5}, - [3939] = {.lex_state = 81, .external_lex_state = 2}, + [3936] = {.lex_state = 81, .external_lex_state = 2}, + [3937] = {.lex_state = 55, .external_lex_state = 2}, + [3938] = {.lex_state = 81, .external_lex_state = 2}, + [3939] = {.lex_state = 48, .external_lex_state = 5}, [3940] = {.lex_state = 48, .external_lex_state = 5}, [3941] = {.lex_state = 48, .external_lex_state = 5}, - [3942] = {.lex_state = 48, .external_lex_state = 6}, - [3943] = {.lex_state = 55, .external_lex_state = 2}, + [3942] = {.lex_state = 55, .external_lex_state = 2}, + [3943] = {.lex_state = 48, .external_lex_state = 5}, [3944] = {.lex_state = 48, .external_lex_state = 5}, [3945] = {.lex_state = 48, .external_lex_state = 5}, - [3946] = {.lex_state = 48, .external_lex_state = 5}, - [3947] = {.lex_state = 81, .external_lex_state = 2}, + [3946] = {.lex_state = 81, .external_lex_state = 2}, + [3947] = {.lex_state = 48, .external_lex_state = 5}, [3948] = {.lex_state = 48, .external_lex_state = 5}, - [3949] = {.lex_state = 48, .external_lex_state = 5}, + [3949] = {.lex_state = 55, .external_lex_state = 2}, [3950] = {.lex_state = 48, .external_lex_state = 5}, [3951] = {.lex_state = 48, .external_lex_state = 5}, [3952] = {.lex_state = 48, .external_lex_state = 5}, [3953] = {.lex_state = 48, .external_lex_state = 5}, - [3954] = {.lex_state = 55, .external_lex_state = 2}, + [3954] = {.lex_state = 48, .external_lex_state = 5}, [3955] = {.lex_state = 48, .external_lex_state = 5}, [3956] = {.lex_state = 48, .external_lex_state = 5}, [3957] = {.lex_state = 48, .external_lex_state = 5}, [3958] = {.lex_state = 48, .external_lex_state = 5}, [3959] = {.lex_state = 48, .external_lex_state = 5}, - [3960] = {.lex_state = 48, .external_lex_state = 5}, + [3960] = {.lex_state = 48, .external_lex_state = 2}, [3961] = {.lex_state = 48, .external_lex_state = 5}, - [3962] = {.lex_state = 55, .external_lex_state = 2}, - [3963] = {.lex_state = 48, .external_lex_state = 2}, + [3962] = {.lex_state = 48, .external_lex_state = 5}, + [3963] = {.lex_state = 48, .external_lex_state = 6}, [3964] = {.lex_state = 48, .external_lex_state = 5}, [3965] = {.lex_state = 48, .external_lex_state = 5}, [3966] = {.lex_state = 48, .external_lex_state = 5}, @@ -26105,129 +26106,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3969] = {.lex_state = 48, .external_lex_state = 5}, [3970] = {.lex_state = 48, .external_lex_state = 5}, [3971] = {.lex_state = 48, .external_lex_state = 5}, - [3972] = {.lex_state = 48, .external_lex_state = 5}, + [3972] = {.lex_state = 49, .external_lex_state = 6}, [3973] = {.lex_state = 48, .external_lex_state = 5}, [3974] = {.lex_state = 48, .external_lex_state = 5}, [3975] = {.lex_state = 48, .external_lex_state = 5}, - [3976] = {.lex_state = 48, .external_lex_state = 5}, + [3976] = {.lex_state = 48, .external_lex_state = 6}, [3977] = {.lex_state = 48, .external_lex_state = 5}, [3978] = {.lex_state = 48, .external_lex_state = 5}, [3979] = {.lex_state = 48, .external_lex_state = 5}, [3980] = {.lex_state = 48, .external_lex_state = 5}, - [3981] = {.lex_state = 49, .external_lex_state = 6}, + [3981] = {.lex_state = 48, .external_lex_state = 5}, [3982] = {.lex_state = 48, .external_lex_state = 5}, - [3983] = {.lex_state = 49, .external_lex_state = 6}, + [3983] = {.lex_state = 48, .external_lex_state = 5}, [3984] = {.lex_state = 48, .external_lex_state = 5}, - [3985] = {.lex_state = 48, .external_lex_state = 5}, + [3985] = {.lex_state = 55, .external_lex_state = 2}, [3986] = {.lex_state = 48, .external_lex_state = 5}, - [3987] = {.lex_state = 48, .external_lex_state = 6}, + [3987] = {.lex_state = 48, .external_lex_state = 5}, [3988] = {.lex_state = 48, .external_lex_state = 5}, [3989] = {.lex_state = 48, .external_lex_state = 5}, [3990] = {.lex_state = 48, .external_lex_state = 5}, [3991] = {.lex_state = 48, .external_lex_state = 5}, [3992] = {.lex_state = 48, .external_lex_state = 5}, [3993] = {.lex_state = 48, .external_lex_state = 5}, - [3994] = {.lex_state = 48, .external_lex_state = 5}, + [3994] = {.lex_state = 49, .external_lex_state = 6}, [3995] = {.lex_state = 48, .external_lex_state = 5}, [3996] = {.lex_state = 48, .external_lex_state = 5}, [3997] = {.lex_state = 48, .external_lex_state = 5}, [3998] = {.lex_state = 48, .external_lex_state = 5}, [3999] = {.lex_state = 48, .external_lex_state = 5}, [4000] = {.lex_state = 48, .external_lex_state = 5}, - [4001] = {.lex_state = 49, .external_lex_state = 6}, - [4002] = {.lex_state = 48, .external_lex_state = 6}, - [4003] = {.lex_state = 55, .external_lex_state = 2}, - [4004] = {.lex_state = 48, .external_lex_state = 6}, - [4005] = {.lex_state = 48, .external_lex_state = 5}, + [4001] = {.lex_state = 48, .external_lex_state = 5}, + [4002] = {.lex_state = 48, .external_lex_state = 5}, + [4003] = {.lex_state = 48, .external_lex_state = 5}, + [4004] = {.lex_state = 48, .external_lex_state = 5}, + [4005] = {.lex_state = 49, .external_lex_state = 6}, [4006] = {.lex_state = 48, .external_lex_state = 5}, - [4007] = {.lex_state = 49, .external_lex_state = 6}, - [4008] = {.lex_state = 49, .external_lex_state = 6}, - [4009] = {.lex_state = 49, .external_lex_state = 6}, + [4007] = {.lex_state = 48, .external_lex_state = 5}, + [4008] = {.lex_state = 48, .external_lex_state = 5}, + [4009] = {.lex_state = 48, .external_lex_state = 5}, [4010] = {.lex_state = 48, .external_lex_state = 5}, - [4011] = {.lex_state = 48, .external_lex_state = 5}, + [4011] = {.lex_state = 48, .external_lex_state = 6}, [4012] = {.lex_state = 48, .external_lex_state = 5}, - [4013] = {.lex_state = 48, .external_lex_state = 5}, + [4013] = {.lex_state = 49, .external_lex_state = 6}, [4014] = {.lex_state = 48, .external_lex_state = 5}, [4015] = {.lex_state = 48, .external_lex_state = 5}, [4016] = {.lex_state = 48, .external_lex_state = 5}, - [4017] = {.lex_state = 48, .external_lex_state = 5}, + [4017] = {.lex_state = 49, .external_lex_state = 6}, [4018] = {.lex_state = 48, .external_lex_state = 5}, [4019] = {.lex_state = 48, .external_lex_state = 5}, - [4020] = {.lex_state = 48, .external_lex_state = 5}, + [4020] = {.lex_state = 48, .external_lex_state = 6}, [4021] = {.lex_state = 48, .external_lex_state = 5}, [4022] = {.lex_state = 48, .external_lex_state = 5}, [4023] = {.lex_state = 48, .external_lex_state = 5}, [4024] = {.lex_state = 48, .external_lex_state = 5}, - [4025] = {.lex_state = 48, .external_lex_state = 5}, + [4025] = {.lex_state = 49, .external_lex_state = 6}, [4026] = {.lex_state = 48, .external_lex_state = 5}, - [4027] = {.lex_state = 49, .external_lex_state = 6}, + [4027] = {.lex_state = 48, .external_lex_state = 5}, [4028] = {.lex_state = 48, .external_lex_state = 5}, - [4029] = {.lex_state = 48, .external_lex_state = 5}, - [4030] = {.lex_state = 55, .external_lex_state = 2}, - [4031] = {.lex_state = 48, .external_lex_state = 2}, + [4029] = {.lex_state = 49, .external_lex_state = 6}, + [4030] = {.lex_state = 48, .external_lex_state = 5}, + [4031] = {.lex_state = 48, .external_lex_state = 5}, [4032] = {.lex_state = 83, .external_lex_state = 2}, - [4033] = {.lex_state = 48, .external_lex_state = 6}, + [4033] = {.lex_state = 49, .external_lex_state = 5}, [4034] = {.lex_state = 83, .external_lex_state = 2}, - [4035] = {.lex_state = 48, .external_lex_state = 5}, - [4036] = {.lex_state = 83, .external_lex_state = 2}, - [4037] = {.lex_state = 81, .external_lex_state = 2}, - [4038] = {.lex_state = 83, .external_lex_state = 2}, - [4039] = {.lex_state = 406, .external_lex_state = 5}, + [4035] = {.lex_state = 83, .external_lex_state = 2}, + [4036] = {.lex_state = 48, .external_lex_state = 5}, + [4037] = {.lex_state = 48, .external_lex_state = 5}, + [4038] = {.lex_state = 81, .external_lex_state = 2}, + [4039] = {.lex_state = 405, .external_lex_state = 5}, [4040] = {.lex_state = 83, .external_lex_state = 2}, - [4041] = {.lex_state = 55, .external_lex_state = 2}, - [4042] = {.lex_state = 81, .external_lex_state = 2}, - [4043] = {.lex_state = 49, .external_lex_state = 5}, - [4044] = {.lex_state = 48, .external_lex_state = 6}, - [4045] = {.lex_state = 81, .external_lex_state = 2}, + [4041] = {.lex_state = 83, .external_lex_state = 2}, + [4042] = {.lex_state = 55, .external_lex_state = 2}, + [4043] = {.lex_state = 83, .external_lex_state = 2}, + [4044] = {.lex_state = 405, .external_lex_state = 5}, + [4045] = {.lex_state = 83, .external_lex_state = 2}, [4046] = {.lex_state = 83, .external_lex_state = 2}, - [4047] = {.lex_state = 55, .external_lex_state = 2}, - [4048] = {.lex_state = 49, .external_lex_state = 5}, - [4049] = {.lex_state = 83, .external_lex_state = 2}, + [4047] = {.lex_state = 57, .external_lex_state = 2}, + [4048] = {.lex_state = 83, .external_lex_state = 2}, + [4049] = {.lex_state = 49, .external_lex_state = 5}, [4050] = {.lex_state = 48, .external_lex_state = 6}, - [4051] = {.lex_state = 406, .external_lex_state = 5}, - [4052] = {.lex_state = 83, .external_lex_state = 2}, + [4051] = {.lex_state = 81, .external_lex_state = 2}, + [4052] = {.lex_state = 48, .external_lex_state = 6}, [4053] = {.lex_state = 48, .external_lex_state = 6}, [4054] = {.lex_state = 83, .external_lex_state = 2}, - [4055] = {.lex_state = 406, .external_lex_state = 5}, - [4056] = {.lex_state = 83, .external_lex_state = 2}, - [4057] = {.lex_state = 81, .external_lex_state = 2}, - [4058] = {.lex_state = 57, .external_lex_state = 2}, + [4055] = {.lex_state = 48, .external_lex_state = 6}, + [4056] = {.lex_state = 81, .external_lex_state = 2}, + [4057] = {.lex_state = 83, .external_lex_state = 2}, + [4058] = {.lex_state = 81, .external_lex_state = 2}, [4059] = {.lex_state = 83, .external_lex_state = 2}, [4060] = {.lex_state = 83, .external_lex_state = 2}, - [4061] = {.lex_state = 83, .external_lex_state = 2}, + [4061] = {.lex_state = 405, .external_lex_state = 5}, [4062] = {.lex_state = 83, .external_lex_state = 2}, [4063] = {.lex_state = 83, .external_lex_state = 2}, - [4064] = {.lex_state = 48, .external_lex_state = 5}, + [4064] = {.lex_state = 48, .external_lex_state = 2}, [4065] = {.lex_state = 83, .external_lex_state = 2}, [4066] = {.lex_state = 83, .external_lex_state = 2}, - [4067] = {.lex_state = 48, .external_lex_state = 6}, - [4068] = {.lex_state = 48, .external_lex_state = 5}, + [4067] = {.lex_state = 55, .external_lex_state = 2}, + [4068] = {.lex_state = 55, .external_lex_state = 2}, [4069] = {.lex_state = 48, .external_lex_state = 6}, - [4070] = {.lex_state = 406, .external_lex_state = 5}, - [4071] = {.lex_state = 49, .external_lex_state = 5}, - [4072] = {.lex_state = 49, .external_lex_state = 5}, - [4073] = {.lex_state = 48, .external_lex_state = 2}, - [4074] = {.lex_state = 48, .external_lex_state = 2}, + [4070] = {.lex_state = 48, .external_lex_state = 2}, + [4071] = {.lex_state = 48, .external_lex_state = 5}, + [4072] = {.lex_state = 48, .external_lex_state = 6}, + [4073] = {.lex_state = 48, .external_lex_state = 6}, + [4074] = {.lex_state = 48, .external_lex_state = 6}, [4075] = {.lex_state = 48, .external_lex_state = 2}, - [4076] = {.lex_state = 48, .external_lex_state = 5}, - [4077] = {.lex_state = 48, .external_lex_state = 5}, + [4076] = {.lex_state = 48, .external_lex_state = 6}, + [4077] = {.lex_state = 48, .external_lex_state = 6}, [4078] = {.lex_state = 48, .external_lex_state = 6}, - [4079] = {.lex_state = 63, .external_lex_state = 2}, - [4080] = {.lex_state = 48, .external_lex_state = 2}, - [4081] = {.lex_state = 48, .external_lex_state = 2}, + [4079] = {.lex_state = 81, .external_lex_state = 2}, + [4080] = {.lex_state = 81, .external_lex_state = 2}, + [4081] = {.lex_state = 81, .external_lex_state = 2}, [4082] = {.lex_state = 81, .external_lex_state = 2}, - [4083] = {.lex_state = 81, .external_lex_state = 2}, - [4084] = {.lex_state = 81, .external_lex_state = 2}, - [4085] = {.lex_state = 48, .external_lex_state = 5}, - [4086] = {.lex_state = 48, .external_lex_state = 2}, - [4087] = {.lex_state = 81, .external_lex_state = 2}, - [4088] = {.lex_state = 49, .external_lex_state = 2}, + [4083] = {.lex_state = 48, .external_lex_state = 6}, + [4084] = {.lex_state = 48, .external_lex_state = 2}, + [4085] = {.lex_state = 405, .external_lex_state = 5}, + [4086] = {.lex_state = 48, .external_lex_state = 6}, + [4087] = {.lex_state = 48, .external_lex_state = 5}, + [4088] = {.lex_state = 81, .external_lex_state = 2}, [4089] = {.lex_state = 81, .external_lex_state = 2}, - [4090] = {.lex_state = 55, .external_lex_state = 2}, - [4091] = {.lex_state = 48, .external_lex_state = 6}, - [4092] = {.lex_state = 48, .external_lex_state = 5}, - [4093] = {.lex_state = 48, .external_lex_state = 6}, - [4094] = {.lex_state = 48, .external_lex_state = 5}, + [4090] = {.lex_state = 81, .external_lex_state = 2}, + [4091] = {.lex_state = 48, .external_lex_state = 2}, + [4092] = {.lex_state = 81, .external_lex_state = 2}, + [4093] = {.lex_state = 81, .external_lex_state = 2}, + [4094] = {.lex_state = 81, .external_lex_state = 2}, [4095] = {.lex_state = 48, .external_lex_state = 6}, [4096] = {.lex_state = 48, .external_lex_state = 2}, [4097] = {.lex_state = 48, .external_lex_state = 6}, @@ -26237,3382 +26238,3388 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4101] = {.lex_state = 48, .external_lex_state = 2}, [4102] = {.lex_state = 49, .external_lex_state = 2}, [4103] = {.lex_state = 48, .external_lex_state = 6}, - [4104] = {.lex_state = 48, .external_lex_state = 2}, - [4105] = {.lex_state = 48, .external_lex_state = 6}, + [4104] = {.lex_state = 49, .external_lex_state = 2}, + [4105] = {.lex_state = 49, .external_lex_state = 2}, [4106] = {.lex_state = 48, .external_lex_state = 2}, - [4107] = {.lex_state = 49, .external_lex_state = 2}, - [4108] = {.lex_state = 48, .external_lex_state = 2}, - [4109] = {.lex_state = 48, .external_lex_state = 5}, - [4110] = {.lex_state = 48, .external_lex_state = 6}, + [4107] = {.lex_state = 48, .external_lex_state = 2}, + [4108] = {.lex_state = 48, .external_lex_state = 5}, + [4109] = {.lex_state = 405, .external_lex_state = 2}, + [4110] = {.lex_state = 48, .external_lex_state = 2}, [4111] = {.lex_state = 48, .external_lex_state = 2}, - [4112] = {.lex_state = 48, .external_lex_state = 6}, + [4112] = {.lex_state = 48, .external_lex_state = 2}, [4113] = {.lex_state = 48, .external_lex_state = 6}, - [4114] = {.lex_state = 48, .external_lex_state = 2}, - [4115] = {.lex_state = 48, .external_lex_state = 6}, - [4116] = {.lex_state = 48, .external_lex_state = 2}, - [4117] = {.lex_state = 48, .external_lex_state = 5}, - [4118] = {.lex_state = 48, .external_lex_state = 6}, - [4119] = {.lex_state = 406, .external_lex_state = 5}, - [4120] = {.lex_state = 48, .external_lex_state = 2}, - [4121] = {.lex_state = 406, .external_lex_state = 5}, - [4122] = {.lex_state = 48, .external_lex_state = 5}, - [4123] = {.lex_state = 48, .external_lex_state = 2}, - [4124] = {.lex_state = 48, .external_lex_state = 6}, - [4125] = {.lex_state = 48, .external_lex_state = 5}, + [4114] = {.lex_state = 48, .external_lex_state = 6}, + [4115] = {.lex_state = 81, .external_lex_state = 2}, + [4116] = {.lex_state = 81, .external_lex_state = 2}, + [4117] = {.lex_state = 49, .external_lex_state = 2}, + [4118] = {.lex_state = 55, .external_lex_state = 2}, + [4119] = {.lex_state = 48, .external_lex_state = 2}, + [4120] = {.lex_state = 48, .external_lex_state = 5}, + [4121] = {.lex_state = 48, .external_lex_state = 5}, + [4122] = {.lex_state = 81, .external_lex_state = 2}, + [4123] = {.lex_state = 48, .external_lex_state = 5}, + [4124] = {.lex_state = 48, .external_lex_state = 5}, + [4125] = {.lex_state = 48, .external_lex_state = 2}, [4126] = {.lex_state = 48, .external_lex_state = 5}, - [4127] = {.lex_state = 49, .external_lex_state = 2}, + [4127] = {.lex_state = 63, .external_lex_state = 2}, [4128] = {.lex_state = 48, .external_lex_state = 6}, [4129] = {.lex_state = 48, .external_lex_state = 6}, - [4130] = {.lex_state = 48, .external_lex_state = 2}, - [4131] = {.lex_state = 63, .external_lex_state = 2}, - [4132] = {.lex_state = 49, .external_lex_state = 2}, + [4130] = {.lex_state = 81, .external_lex_state = 2}, + [4131] = {.lex_state = 48, .external_lex_state = 5}, + [4132] = {.lex_state = 48, .external_lex_state = 6}, [4133] = {.lex_state = 48, .external_lex_state = 6}, - [4134] = {.lex_state = 63, .external_lex_state = 2}, - [4135] = {.lex_state = 48, .external_lex_state = 6}, - [4136] = {.lex_state = 48, .external_lex_state = 2}, - [4137] = {.lex_state = 55, .external_lex_state = 2}, - [4138] = {.lex_state = 48, .external_lex_state = 6}, - [4139] = {.lex_state = 48, .external_lex_state = 2}, - [4140] = {.lex_state = 48, .external_lex_state = 2}, - [4141] = {.lex_state = 48, .external_lex_state = 2}, - [4142] = {.lex_state = 49, .external_lex_state = 2}, - [4143] = {.lex_state = 48, .external_lex_state = 5}, - [4144] = {.lex_state = 406, .external_lex_state = 5}, - [4145] = {.lex_state = 48, .external_lex_state = 2}, - [4146] = {.lex_state = 406, .external_lex_state = 5}, + [4134] = {.lex_state = 48, .external_lex_state = 5}, + [4135] = {.lex_state = 63, .external_lex_state = 2}, + [4136] = {.lex_state = 48, .external_lex_state = 5}, + [4137] = {.lex_state = 48, .external_lex_state = 2}, + [4138] = {.lex_state = 48, .external_lex_state = 2}, + [4139] = {.lex_state = 48, .external_lex_state = 5}, + [4140] = {.lex_state = 63, .external_lex_state = 2}, + [4141] = {.lex_state = 48, .external_lex_state = 6}, + [4142] = {.lex_state = 48, .external_lex_state = 6}, + [4143] = {.lex_state = 48, .external_lex_state = 6}, + [4144] = {.lex_state = 48, .external_lex_state = 2}, + [4145] = {.lex_state = 48, .external_lex_state = 5}, + [4146] = {.lex_state = 48, .external_lex_state = 5}, [4147] = {.lex_state = 48, .external_lex_state = 5}, - [4148] = {.lex_state = 48, .external_lex_state = 2}, + [4148] = {.lex_state = 48, .external_lex_state = 6}, [4149] = {.lex_state = 48, .external_lex_state = 5}, - [4150] = {.lex_state = 406, .external_lex_state = 2}, - [4151] = {.lex_state = 48, .external_lex_state = 2}, + [4150] = {.lex_state = 48, .external_lex_state = 5}, + [4151] = {.lex_state = 48, .external_lex_state = 6}, [4152] = {.lex_state = 48, .external_lex_state = 2}, - [4153] = {.lex_state = 48, .external_lex_state = 2}, + [4153] = {.lex_state = 48, .external_lex_state = 5}, [4154] = {.lex_state = 48, .external_lex_state = 2}, - [4155] = {.lex_state = 48, .external_lex_state = 2}, + [4155] = {.lex_state = 48, .external_lex_state = 6}, [4156] = {.lex_state = 48, .external_lex_state = 2}, - [4157] = {.lex_state = 48, .external_lex_state = 6}, - [4158] = {.lex_state = 48, .external_lex_state = 5}, - [4159] = {.lex_state = 48, .external_lex_state = 5}, - [4160] = {.lex_state = 48, .external_lex_state = 5}, - [4161] = {.lex_state = 48, .external_lex_state = 5}, - [4162] = {.lex_state = 48, .external_lex_state = 6}, - [4163] = {.lex_state = 49, .external_lex_state = 2}, - [4164] = {.lex_state = 48, .external_lex_state = 5}, - [4165] = {.lex_state = 48, .external_lex_state = 2}, - [4166] = {.lex_state = 81, .external_lex_state = 2}, - [4167] = {.lex_state = 48, .external_lex_state = 2}, - [4168] = {.lex_state = 81, .external_lex_state = 2}, - [4169] = {.lex_state = 49, .external_lex_state = 2}, + [4157] = {.lex_state = 48, .external_lex_state = 2}, + [4158] = {.lex_state = 49, .external_lex_state = 5}, + [4159] = {.lex_state = 49, .external_lex_state = 5}, + [4160] = {.lex_state = 48, .external_lex_state = 6}, + [4161] = {.lex_state = 48, .external_lex_state = 2}, + [4162] = {.lex_state = 405, .external_lex_state = 5}, + [4163] = {.lex_state = 48, .external_lex_state = 5}, + [4164] = {.lex_state = 405, .external_lex_state = 5}, + [4165] = {.lex_state = 405, .external_lex_state = 5}, + [4166] = {.lex_state = 48, .external_lex_state = 2}, + [4167] = {.lex_state = 405, .external_lex_state = 5}, + [4168] = {.lex_state = 48, .external_lex_state = 2}, + [4169] = {.lex_state = 63, .external_lex_state = 2}, [4170] = {.lex_state = 48, .external_lex_state = 5}, - [4171] = {.lex_state = 81, .external_lex_state = 2}, - [4172] = {.lex_state = 81, .external_lex_state = 2}, - [4173] = {.lex_state = 81, .external_lex_state = 2}, - [4174] = {.lex_state = 81, .external_lex_state = 2}, - [4175] = {.lex_state = 48, .external_lex_state = 2}, - [4176] = {.lex_state = 81, .external_lex_state = 2}, - [4177] = {.lex_state = 48, .external_lex_state = 2}, - [4178] = {.lex_state = 81, .external_lex_state = 2}, - [4179] = {.lex_state = 49, .external_lex_state = 2}, - [4180] = {.lex_state = 48, .external_lex_state = 6}, - [4181] = {.lex_state = 48, .external_lex_state = 2}, - [4182] = {.lex_state = 81, .external_lex_state = 2}, - [4183] = {.lex_state = 81, .external_lex_state = 2}, - [4184] = {.lex_state = 81, .external_lex_state = 2}, - [4185] = {.lex_state = 81, .external_lex_state = 2}, - [4186] = {.lex_state = 81, .external_lex_state = 2}, - [4187] = {.lex_state = 48, .external_lex_state = 6}, - [4188] = {.lex_state = 81, .external_lex_state = 2}, - [4189] = {.lex_state = 48, .external_lex_state = 5}, - [4190] = {.lex_state = 48, .external_lex_state = 5}, - [4191] = {.lex_state = 48, .external_lex_state = 5}, - [4192] = {.lex_state = 48, .external_lex_state = 6}, - [4193] = {.lex_state = 48, .external_lex_state = 2}, - [4194] = {.lex_state = 48, .external_lex_state = 5}, + [4171] = {.lex_state = 48, .external_lex_state = 2}, + [4172] = {.lex_state = 48, .external_lex_state = 5}, + [4173] = {.lex_state = 48, .external_lex_state = 6}, + [4174] = {.lex_state = 48, .external_lex_state = 5}, + [4175] = {.lex_state = 48, .external_lex_state = 6}, + [4176] = {.lex_state = 48, .external_lex_state = 2}, + [4177] = {.lex_state = 81, .external_lex_state = 2}, + [4178] = {.lex_state = 48, .external_lex_state = 6}, + [4179] = {.lex_state = 48, .external_lex_state = 5}, + [4180] = {.lex_state = 48, .external_lex_state = 2}, + [4181] = {.lex_state = 63, .external_lex_state = 2}, + [4182] = {.lex_state = 48, .external_lex_state = 5}, + [4183] = {.lex_state = 48, .external_lex_state = 5}, + [4184] = {.lex_state = 48, .external_lex_state = 5}, + [4185] = {.lex_state = 48, .external_lex_state = 5}, + [4186] = {.lex_state = 48, .external_lex_state = 5}, + [4187] = {.lex_state = 49, .external_lex_state = 2}, + [4188] = {.lex_state = 48, .external_lex_state = 2}, + [4189] = {.lex_state = 81, .external_lex_state = 2}, + [4190] = {.lex_state = 81, .external_lex_state = 2}, + [4191] = {.lex_state = 48, .external_lex_state = 6}, + [4192] = {.lex_state = 81, .external_lex_state = 2}, + [4193] = {.lex_state = 81, .external_lex_state = 2}, + [4194] = {.lex_state = 48, .external_lex_state = 6}, [4195] = {.lex_state = 48, .external_lex_state = 2}, - [4196] = {.lex_state = 55, .external_lex_state = 2}, - [4197] = {.lex_state = 63, .external_lex_state = 2}, - [4198] = {.lex_state = 48, .external_lex_state = 5}, - [4199] = {.lex_state = 48, .external_lex_state = 6}, - [4200] = {.lex_state = 48, .external_lex_state = 6}, + [4196] = {.lex_state = 49, .external_lex_state = 2}, + [4197] = {.lex_state = 81, .external_lex_state = 2}, + [4198] = {.lex_state = 81, .external_lex_state = 2}, + [4199] = {.lex_state = 48, .external_lex_state = 5}, + [4200] = {.lex_state = 48, .external_lex_state = 5}, [4201] = {.lex_state = 48, .external_lex_state = 5}, - [4202] = {.lex_state = 48, .external_lex_state = 5}, - [4203] = {.lex_state = 81, .external_lex_state = 2}, - [4204] = {.lex_state = 406, .external_lex_state = 5}, + [4202] = {.lex_state = 48, .external_lex_state = 2}, + [4203] = {.lex_state = 48, .external_lex_state = 6}, + [4204] = {.lex_state = 48, .external_lex_state = 6}, [4205] = {.lex_state = 48, .external_lex_state = 6}, [4206] = {.lex_state = 48, .external_lex_state = 2}, - [4207] = {.lex_state = 49, .external_lex_state = 2}, - [4208] = {.lex_state = 48, .external_lex_state = 6}, - [4209] = {.lex_state = 48, .external_lex_state = 6}, - [4210] = {.lex_state = 48, .external_lex_state = 5}, - [4211] = {.lex_state = 48, .external_lex_state = 2}, - [4212] = {.lex_state = 48, .external_lex_state = 2}, - [4213] = {.lex_state = 48, .external_lex_state = 2}, - [4214] = {.lex_state = 81, .external_lex_state = 2}, - [4215] = {.lex_state = 63, .external_lex_state = 2}, - [4216] = {.lex_state = 48, .external_lex_state = 5}, - [4217] = {.lex_state = 48, .external_lex_state = 2}, - [4218] = {.lex_state = 48, .external_lex_state = 5}, - [4219] = {.lex_state = 48, .external_lex_state = 5}, - [4220] = {.lex_state = 48, .external_lex_state = 5}, - [4221] = {.lex_state = 48, .external_lex_state = 5}, + [4207] = {.lex_state = 81, .external_lex_state = 2}, + [4208] = {.lex_state = 48, .external_lex_state = 2}, + [4209] = {.lex_state = 48, .external_lex_state = 5}, + [4210] = {.lex_state = 48, .external_lex_state = 2}, + [4211] = {.lex_state = 81, .external_lex_state = 2}, + [4212] = {.lex_state = 48, .external_lex_state = 6}, + [4213] = {.lex_state = 81, .external_lex_state = 2}, + [4214] = {.lex_state = 48, .external_lex_state = 5}, + [4215] = {.lex_state = 48, .external_lex_state = 6}, + [4216] = {.lex_state = 405, .external_lex_state = 6}, + [4217] = {.lex_state = 48, .external_lex_state = 5}, + [4218] = {.lex_state = 49, .external_lex_state = 2}, + [4219] = {.lex_state = 48, .external_lex_state = 6}, + [4220] = {.lex_state = 49, .external_lex_state = 2}, + [4221] = {.lex_state = 48, .external_lex_state = 2}, [4222] = {.lex_state = 81, .external_lex_state = 2}, - [4223] = {.lex_state = 48, .external_lex_state = 2}, - [4224] = {.lex_state = 48, .external_lex_state = 5}, - [4225] = {.lex_state = 48, .external_lex_state = 5}, - [4226] = {.lex_state = 48, .external_lex_state = 5}, + [4223] = {.lex_state = 81, .external_lex_state = 2}, + [4224] = {.lex_state = 81, .external_lex_state = 2}, + [4225] = {.lex_state = 48, .external_lex_state = 2}, + [4226] = {.lex_state = 81, .external_lex_state = 2}, [4227] = {.lex_state = 81, .external_lex_state = 2}, - [4228] = {.lex_state = 48, .external_lex_state = 6}, + [4228] = {.lex_state = 81, .external_lex_state = 2}, [4229] = {.lex_state = 48, .external_lex_state = 6}, [4230] = {.lex_state = 48, .external_lex_state = 2}, - [4231] = {.lex_state = 48, .external_lex_state = 6}, - [4232] = {.lex_state = 48, .external_lex_state = 6}, - [4233] = {.lex_state = 48, .external_lex_state = 5}, - [4234] = {.lex_state = 48, .external_lex_state = 2}, - [4235] = {.lex_state = 48, .external_lex_state = 6}, - [4236] = {.lex_state = 48, .external_lex_state = 5}, - [4237] = {.lex_state = 48, .external_lex_state = 6}, - [4238] = {.lex_state = 48, .external_lex_state = 2}, - [4239] = {.lex_state = 406, .external_lex_state = 6}, - [4240] = {.lex_state = 48, .external_lex_state = 6}, + [4231] = {.lex_state = 48, .external_lex_state = 2}, + [4232] = {.lex_state = 48, .external_lex_state = 2}, + [4233] = {.lex_state = 48, .external_lex_state = 6}, + [4234] = {.lex_state = 48, .external_lex_state = 6}, + [4235] = {.lex_state = 48, .external_lex_state = 2}, + [4236] = {.lex_state = 49, .external_lex_state = 2}, + [4237] = {.lex_state = 48, .external_lex_state = 2}, + [4238] = {.lex_state = 48, .external_lex_state = 5}, + [4239] = {.lex_state = 48, .external_lex_state = 6}, + [4240] = {.lex_state = 81, .external_lex_state = 2}, [4241] = {.lex_state = 48, .external_lex_state = 6}, - [4242] = {.lex_state = 49, .external_lex_state = 2}, - [4243] = {.lex_state = 48, .external_lex_state = 6}, + [4242] = {.lex_state = 48, .external_lex_state = 6}, + [4243] = {.lex_state = 48, .external_lex_state = 2}, [4244] = {.lex_state = 48, .external_lex_state = 6}, - [4245] = {.lex_state = 81, .external_lex_state = 2}, - [4246] = {.lex_state = 81, .external_lex_state = 2}, - [4247] = {.lex_state = 48, .external_lex_state = 6}, - [4248] = {.lex_state = 48, .external_lex_state = 2}, - [4249] = {.lex_state = 48, .external_lex_state = 6}, - [4250] = {.lex_state = 48, .external_lex_state = 2}, - [4251] = {.lex_state = 49, .external_lex_state = 2}, + [4245] = {.lex_state = 63, .external_lex_state = 2}, + [4246] = {.lex_state = 48, .external_lex_state = 2}, + [4247] = {.lex_state = 48, .external_lex_state = 2}, + [4248] = {.lex_state = 48, .external_lex_state = 5}, + [4249] = {.lex_state = 48, .external_lex_state = 2}, + [4250] = {.lex_state = 48, .external_lex_state = 6}, + [4251] = {.lex_state = 48, .external_lex_state = 2}, [4252] = {.lex_state = 48, .external_lex_state = 6}, - [4253] = {.lex_state = 48, .external_lex_state = 6}, - [4254] = {.lex_state = 48, .external_lex_state = 2}, - [4255] = {.lex_state = 406, .external_lex_state = 6}, + [4253] = {.lex_state = 48, .external_lex_state = 2}, + [4254] = {.lex_state = 48, .external_lex_state = 6}, + [4255] = {.lex_state = 48, .external_lex_state = 6}, [4256] = {.lex_state = 48, .external_lex_state = 6}, - [4257] = {.lex_state = 81, .external_lex_state = 2}, - [4258] = {.lex_state = 81, .external_lex_state = 2}, - [4259] = {.lex_state = 81, .external_lex_state = 2}, - [4260] = {.lex_state = 81, .external_lex_state = 2}, + [4257] = {.lex_state = 48, .external_lex_state = 6}, + [4258] = {.lex_state = 48, .external_lex_state = 2}, + [4259] = {.lex_state = 405, .external_lex_state = 5}, + [4260] = {.lex_state = 48, .external_lex_state = 6}, [4261] = {.lex_state = 81, .external_lex_state = 2}, - [4262] = {.lex_state = 81, .external_lex_state = 2}, - [4263] = {.lex_state = 48, .external_lex_state = 6}, + [4262] = {.lex_state = 49, .external_lex_state = 2}, + [4263] = {.lex_state = 81, .external_lex_state = 2}, [4264] = {.lex_state = 48, .external_lex_state = 2}, - [4265] = {.lex_state = 81, .external_lex_state = 2}, + [4265] = {.lex_state = 48, .external_lex_state = 2}, [4266] = {.lex_state = 48, .external_lex_state = 6}, - [4267] = {.lex_state = 48, .external_lex_state = 6}, + [4267] = {.lex_state = 48, .external_lex_state = 2}, [4268] = {.lex_state = 48, .external_lex_state = 2}, [4269] = {.lex_state = 48, .external_lex_state = 2}, [4270] = {.lex_state = 81, .external_lex_state = 2}, - [4271] = {.lex_state = 48, .external_lex_state = 6}, - [4272] = {.lex_state = 48, .external_lex_state = 2}, - [4273] = {.lex_state = 81, .external_lex_state = 2}, - [4274] = {.lex_state = 48, .external_lex_state = 6}, - [4275] = {.lex_state = 48, .external_lex_state = 6}, + [4271] = {.lex_state = 81, .external_lex_state = 2}, + [4272] = {.lex_state = 49, .external_lex_state = 2}, + [4273] = {.lex_state = 48, .external_lex_state = 2}, + [4274] = {.lex_state = 48, .external_lex_state = 5}, + [4275] = {.lex_state = 48, .external_lex_state = 5}, [4276] = {.lex_state = 48, .external_lex_state = 2}, - [4277] = {.lex_state = 48, .external_lex_state = 6}, - [4278] = {.lex_state = 48, .external_lex_state = 6}, - [4279] = {.lex_state = 48, .external_lex_state = 6}, + [4277] = {.lex_state = 81, .external_lex_state = 2}, + [4278] = {.lex_state = 48, .external_lex_state = 5}, + [4279] = {.lex_state = 81, .external_lex_state = 2}, [4280] = {.lex_state = 48, .external_lex_state = 6}, - [4281] = {.lex_state = 81, .external_lex_state = 2}, - [4282] = {.lex_state = 48, .external_lex_state = 5}, - [4283] = {.lex_state = 48, .external_lex_state = 5}, + [4281] = {.lex_state = 55, .external_lex_state = 2}, + [4282] = {.lex_state = 48, .external_lex_state = 6}, + [4283] = {.lex_state = 48, .external_lex_state = 6}, [4284] = {.lex_state = 48, .external_lex_state = 6}, [4285] = {.lex_state = 48, .external_lex_state = 5}, - [4286] = {.lex_state = 48, .external_lex_state = 6}, + [4286] = {.lex_state = 405, .external_lex_state = 6}, [4287] = {.lex_state = 48, .external_lex_state = 2}, - [4288] = {.lex_state = 63, .external_lex_state = 2}, + [4288] = {.lex_state = 48, .external_lex_state = 2}, [4289] = {.lex_state = 48, .external_lex_state = 5}, [4290] = {.lex_state = 49, .external_lex_state = 2}, [4291] = {.lex_state = 48, .external_lex_state = 2}, - [4292] = {.lex_state = 48, .external_lex_state = 2}, - [4293] = {.lex_state = 48, .external_lex_state = 6}, - [4294] = {.lex_state = 48, .external_lex_state = 6}, - [4295] = {.lex_state = 48, .external_lex_state = 5}, - [4296] = {.lex_state = 48, .external_lex_state = 5}, - [4297] = {.lex_state = 48, .external_lex_state = 6}, + [4292] = {.lex_state = 48, .external_lex_state = 6}, + [4293] = {.lex_state = 49, .external_lex_state = 2}, + [4294] = {.lex_state = 48, .external_lex_state = 2}, + [4295] = {.lex_state = 55, .external_lex_state = 2}, + [4296] = {.lex_state = 48, .external_lex_state = 6}, + [4297] = {.lex_state = 48, .external_lex_state = 5}, [4298] = {.lex_state = 48, .external_lex_state = 6}, - [4299] = {.lex_state = 81, .external_lex_state = 2}, - [4300] = {.lex_state = 81, .external_lex_state = 2}, - [4301] = {.lex_state = 75, .external_lex_state = 2}, - [4302] = {.lex_state = 85, .external_lex_state = 2}, + [4299] = {.lex_state = 48, .external_lex_state = 6}, + [4300] = {.lex_state = 48, .external_lex_state = 6}, + [4301] = {.lex_state = 48, .external_lex_state = 5}, + [4302] = {.lex_state = 48, .external_lex_state = 6}, [4303] = {.lex_state = 48, .external_lex_state = 5}, - [4304] = {.lex_state = 48, .external_lex_state = 5}, - [4305] = {.lex_state = 48, .external_lex_state = 5}, - [4306] = {.lex_state = 75, .external_lex_state = 2}, - [4307] = {.lex_state = 75, .external_lex_state = 2}, - [4308] = {.lex_state = 48, .external_lex_state = 5}, - [4309] = {.lex_state = 48, .external_lex_state = 6}, - [4310] = {.lex_state = 406, .external_lex_state = 6}, - [4311] = {.lex_state = 406, .external_lex_state = 7}, + [4304] = {.lex_state = 405, .external_lex_state = 7}, + [4305] = {.lex_state = 85, .external_lex_state = 2}, + [4306] = {.lex_state = 405, .external_lex_state = 7}, + [4307] = {.lex_state = 48, .external_lex_state = 5}, + [4308] = {.lex_state = 48, .external_lex_state = 2}, + [4309] = {.lex_state = 75, .external_lex_state = 2}, + [4310] = {.lex_state = 91, .external_lex_state = 2}, + [4311] = {.lex_state = 405, .external_lex_state = 6}, [4312] = {.lex_state = 75, .external_lex_state = 2}, - [4313] = {.lex_state = 75, .external_lex_state = 2}, - [4314] = {.lex_state = 85, .external_lex_state = 2}, - [4315] = {.lex_state = 85, .external_lex_state = 2}, - [4316] = {.lex_state = 75, .external_lex_state = 2}, - [4317] = {.lex_state = 85, .external_lex_state = 2}, - [4318] = {.lex_state = 75, .external_lex_state = 2}, - [4319] = {.lex_state = 75, .external_lex_state = 2}, - [4320] = {.lex_state = 91, .external_lex_state = 2}, - [4321] = {.lex_state = 406, .external_lex_state = 7}, - [4322] = {.lex_state = 406, .external_lex_state = 5}, - [4323] = {.lex_state = 85, .external_lex_state = 2}, - [4324] = {.lex_state = 91, .external_lex_state = 2}, - [4325] = {.lex_state = 55, .external_lex_state = 2}, - [4326] = {.lex_state = 406, .external_lex_state = 7}, - [4327] = {.lex_state = 406, .external_lex_state = 7}, - [4328] = {.lex_state = 406, .external_lex_state = 7}, - [4329] = {.lex_state = 406, .external_lex_state = 5}, - [4330] = {.lex_state = 406, .external_lex_state = 5}, - [4331] = {.lex_state = 406, .external_lex_state = 5}, - [4332] = {.lex_state = 406, .external_lex_state = 5}, - [4333] = {.lex_state = 75, .external_lex_state = 2}, - [4334] = {.lex_state = 406, .external_lex_state = 7}, - [4335] = {.lex_state = 406, .external_lex_state = 7}, - [4336] = {.lex_state = 406, .external_lex_state = 7}, - [4337] = {.lex_state = 48, .external_lex_state = 2}, - [4338] = {.lex_state = 48, .external_lex_state = 2}, - [4339] = {.lex_state = 85, .external_lex_state = 2}, - [4340] = {.lex_state = 406, .external_lex_state = 5}, - [4341] = {.lex_state = 406, .external_lex_state = 2}, - [4342] = {.lex_state = 406, .external_lex_state = 5}, - [4343] = {.lex_state = 406, .external_lex_state = 5}, - [4344] = {.lex_state = 406, .external_lex_state = 2}, - [4345] = {.lex_state = 406, .external_lex_state = 5}, - [4346] = {.lex_state = 406, .external_lex_state = 2}, - [4347] = {.lex_state = 406, .external_lex_state = 2}, - [4348] = {.lex_state = 406, .external_lex_state = 2}, - [4349] = {.lex_state = 406, .external_lex_state = 5}, - [4350] = {.lex_state = 406, .external_lex_state = 5}, - [4351] = {.lex_state = 406, .external_lex_state = 2}, - [4352] = {.lex_state = 406, .external_lex_state = 2}, - [4353] = {.lex_state = 406, .external_lex_state = 5}, - [4354] = {.lex_state = 406, .external_lex_state = 5}, - [4355] = {.lex_state = 406, .external_lex_state = 5}, - [4356] = {.lex_state = 406, .external_lex_state = 5}, - [4357] = {.lex_state = 406, .external_lex_state = 5}, - [4358] = {.lex_state = 406, .external_lex_state = 5}, - [4359] = {.lex_state = 406, .external_lex_state = 5}, - [4360] = {.lex_state = 406, .external_lex_state = 5}, - [4361] = {.lex_state = 406, .external_lex_state = 5}, - [4362] = {.lex_state = 406, .external_lex_state = 5}, - [4363] = {.lex_state = 406, .external_lex_state = 2}, - [4364] = {.lex_state = 406, .external_lex_state = 5}, - [4365] = {.lex_state = 406, .external_lex_state = 5}, - [4366] = {.lex_state = 406, .external_lex_state = 5}, - [4367] = {.lex_state = 406, .external_lex_state = 5}, - [4368] = {.lex_state = 406, .external_lex_state = 5}, - [4369] = {.lex_state = 406, .external_lex_state = 5}, - [4370] = {.lex_state = 88, .external_lex_state = 2}, - [4371] = {.lex_state = 406, .external_lex_state = 5}, - [4372] = {.lex_state = 406, .external_lex_state = 2}, - [4373] = {.lex_state = 406, .external_lex_state = 5}, - [4374] = {.lex_state = 406, .external_lex_state = 5}, - [4375] = {.lex_state = 406, .external_lex_state = 5}, - [4376] = {.lex_state = 406, .external_lex_state = 5}, - [4377] = {.lex_state = 406, .external_lex_state = 5}, - [4378] = {.lex_state = 406, .external_lex_state = 5}, - [4379] = {.lex_state = 50, .external_lex_state = 2}, - [4380] = {.lex_state = 75, .external_lex_state = 2}, - [4381] = {.lex_state = 50, .external_lex_state = 2}, - [4382] = {.lex_state = 50, .external_lex_state = 2}, - [4383] = {.lex_state = 75, .external_lex_state = 2}, - [4384] = {.lex_state = 406, .external_lex_state = 5}, - [4385] = {.lex_state = 406, .external_lex_state = 2}, - [4386] = {.lex_state = 406, .external_lex_state = 5}, - [4387] = {.lex_state = 406, .external_lex_state = 5}, - [4388] = {.lex_state = 88, .external_lex_state = 2}, - [4389] = {.lex_state = 49, .external_lex_state = 5}, - [4390] = {.lex_state = 406, .external_lex_state = 2}, - [4391] = {.lex_state = 406, .external_lex_state = 5}, - [4392] = {.lex_state = 406, .external_lex_state = 2}, - [4393] = {.lex_state = 406, .external_lex_state = 5}, - [4394] = {.lex_state = 406, .external_lex_state = 2}, - [4395] = {.lex_state = 406, .external_lex_state = 2}, - [4396] = {.lex_state = 406, .external_lex_state = 2}, - [4397] = {.lex_state = 49, .external_lex_state = 5}, - [4398] = {.lex_state = 406, .external_lex_state = 5}, - [4399] = {.lex_state = 406, .external_lex_state = 2}, - [4400] = {.lex_state = 406, .external_lex_state = 5}, - [4401] = {.lex_state = 406, .external_lex_state = 5}, - [4402] = {.lex_state = 406, .external_lex_state = 5}, - [4403] = {.lex_state = 48, .external_lex_state = 2}, - [4404] = {.lex_state = 406, .external_lex_state = 5}, - [4405] = {.lex_state = 406, .external_lex_state = 5}, - [4406] = {.lex_state = 406, .external_lex_state = 5}, - [4407] = {.lex_state = 406, .external_lex_state = 5}, - [4408] = {.lex_state = 49, .external_lex_state = 5}, - [4409] = {.lex_state = 50, .external_lex_state = 2}, - [4410] = {.lex_state = 406, .external_lex_state = 5}, - [4411] = {.lex_state = 75, .external_lex_state = 2}, - [4412] = {.lex_state = 406, .external_lex_state = 2}, - [4413] = {.lex_state = 88, .external_lex_state = 2}, - [4414] = {.lex_state = 406, .external_lex_state = 5}, - [4415] = {.lex_state = 406, .external_lex_state = 2}, - [4416] = {.lex_state = 406, .external_lex_state = 5}, - [4417] = {.lex_state = 406, .external_lex_state = 5}, - [4418] = {.lex_state = 406, .external_lex_state = 2}, - [4419] = {.lex_state = 81, .external_lex_state = 2}, - [4420] = {.lex_state = 406, .external_lex_state = 2}, - [4421] = {.lex_state = 406, .external_lex_state = 2}, - [4422] = {.lex_state = 406, .external_lex_state = 2}, - [4423] = {.lex_state = 406, .external_lex_state = 5}, - [4424] = {.lex_state = 406, .external_lex_state = 5}, - [4425] = {.lex_state = 406, .external_lex_state = 5}, - [4426] = {.lex_state = 406, .external_lex_state = 5}, - [4427] = {.lex_state = 406, .external_lex_state = 5}, - [4428] = {.lex_state = 406, .external_lex_state = 5}, - [4429] = {.lex_state = 406, .external_lex_state = 5}, - [4430] = {.lex_state = 406, .external_lex_state = 5}, - [4431] = {.lex_state = 406, .external_lex_state = 5}, - [4432] = {.lex_state = 406, .external_lex_state = 5}, - [4433] = {.lex_state = 406, .external_lex_state = 5}, - [4434] = {.lex_state = 406, .external_lex_state = 2}, - [4435] = {.lex_state = 406, .external_lex_state = 5}, - [4436] = {.lex_state = 406, .external_lex_state = 5}, - [4437] = {.lex_state = 81, .external_lex_state = 2}, - [4438] = {.lex_state = 49, .external_lex_state = 5}, - [4439] = {.lex_state = 406, .external_lex_state = 5}, - [4440] = {.lex_state = 406, .external_lex_state = 5}, - [4441] = {.lex_state = 49, .external_lex_state = 5}, - [4442] = {.lex_state = 50, .external_lex_state = 2}, - [4443] = {.lex_state = 406, .external_lex_state = 5}, - [4444] = {.lex_state = 406, .external_lex_state = 5}, - [4445] = {.lex_state = 75, .external_lex_state = 2}, - [4446] = {.lex_state = 406, .external_lex_state = 5}, - [4447] = {.lex_state = 406, .external_lex_state = 5}, - [4448] = {.lex_state = 406, .external_lex_state = 2}, - [4449] = {.lex_state = 406, .external_lex_state = 5}, - [4450] = {.lex_state = 406, .external_lex_state = 5}, - [4451] = {.lex_state = 88, .external_lex_state = 2}, - [4452] = {.lex_state = 406, .external_lex_state = 2}, - [4453] = {.lex_state = 406, .external_lex_state = 5}, - [4454] = {.lex_state = 49, .external_lex_state = 5}, - [4455] = {.lex_state = 406, .external_lex_state = 5}, - [4456] = {.lex_state = 406, .external_lex_state = 2}, - [4457] = {.lex_state = 406, .external_lex_state = 5}, - [4458] = {.lex_state = 406, .external_lex_state = 2}, - [4459] = {.lex_state = 406, .external_lex_state = 2}, - [4460] = {.lex_state = 406, .external_lex_state = 5}, - [4461] = {.lex_state = 406, .external_lex_state = 2}, - [4462] = {.lex_state = 406, .external_lex_state = 5}, - [4463] = {.lex_state = 406, .external_lex_state = 5}, - [4464] = {.lex_state = 50, .external_lex_state = 2}, - [4465] = {.lex_state = 406, .external_lex_state = 5}, - [4466] = {.lex_state = 75, .external_lex_state = 2}, - [4467] = {.lex_state = 406, .external_lex_state = 2}, - [4468] = {.lex_state = 406, .external_lex_state = 2}, - [4469] = {.lex_state = 406, .external_lex_state = 2}, - [4470] = {.lex_state = 406, .external_lex_state = 2}, - [4471] = {.lex_state = 406, .external_lex_state = 2}, - [4472] = {.lex_state = 406, .external_lex_state = 2}, - [4473] = {.lex_state = 406, .external_lex_state = 5}, - [4474] = {.lex_state = 406, .external_lex_state = 5}, - [4475] = {.lex_state = 406, .external_lex_state = 2}, - [4476] = {.lex_state = 406, .external_lex_state = 2}, - [4477] = {.lex_state = 406, .external_lex_state = 2}, - [4478] = {.lex_state = 48, .external_lex_state = 2}, - [4479] = {.lex_state = 406, .external_lex_state = 5}, - [4480] = {.lex_state = 406, .external_lex_state = 5}, - [4481] = {.lex_state = 406, .external_lex_state = 2}, - [4482] = {.lex_state = 406, .external_lex_state = 2}, - [4483] = {.lex_state = 406, .external_lex_state = 5}, - [4484] = {.lex_state = 75, .external_lex_state = 2}, - [4485] = {.lex_state = 50, .external_lex_state = 2}, - [4486] = {.lex_state = 406, .external_lex_state = 5}, - [4487] = {.lex_state = 406, .external_lex_state = 5}, - [4488] = {.lex_state = 406, .external_lex_state = 5}, - [4489] = {.lex_state = 50, .external_lex_state = 2}, - [4490] = {.lex_state = 50, .external_lex_state = 2}, - [4491] = {.lex_state = 406, .external_lex_state = 5}, - [4492] = {.lex_state = 50, .external_lex_state = 2}, - [4493] = {.lex_state = 406, .external_lex_state = 5}, - [4494] = {.lex_state = 406, .external_lex_state = 5}, - [4495] = {.lex_state = 406, .external_lex_state = 5}, - [4496] = {.lex_state = 406, .external_lex_state = 5}, - [4497] = {.lex_state = 406, .external_lex_state = 5}, - [4498] = {.lex_state = 406, .external_lex_state = 5}, - [4499] = {.lex_state = 406, .external_lex_state = 2}, - [4500] = {.lex_state = 406, .external_lex_state = 5}, - [4501] = {.lex_state = 50, .external_lex_state = 2}, - [4502] = {.lex_state = 49, .external_lex_state = 5}, - [4503] = {.lex_state = 406, .external_lex_state = 2}, - [4504] = {.lex_state = 48, .external_lex_state = 2}, - [4505] = {.lex_state = 406, .external_lex_state = 2}, - [4506] = {.lex_state = 406, .external_lex_state = 2}, - [4507] = {.lex_state = 406, .external_lex_state = 2}, - [4508] = {.lex_state = 50, .external_lex_state = 2}, - [4509] = {.lex_state = 406, .external_lex_state = 5}, - [4510] = {.lex_state = 406, .external_lex_state = 5}, - [4511] = {.lex_state = 406, .external_lex_state = 5}, - [4512] = {.lex_state = 406, .external_lex_state = 5}, - [4513] = {.lex_state = 406, .external_lex_state = 5}, - [4514] = {.lex_state = 406, .external_lex_state = 5}, - [4515] = {.lex_state = 406, .external_lex_state = 5}, - [4516] = {.lex_state = 406, .external_lex_state = 5}, - [4517] = {.lex_state = 81, .external_lex_state = 2}, - [4518] = {.lex_state = 50, .external_lex_state = 2}, - [4519] = {.lex_state = 48, .external_lex_state = 2}, - [4520] = {.lex_state = 88, .external_lex_state = 2}, - [4521] = {.lex_state = 406, .external_lex_state = 2}, - [4522] = {.lex_state = 48, .external_lex_state = 2}, + [4313] = {.lex_state = 48, .external_lex_state = 6}, + [4314] = {.lex_state = 405, .external_lex_state = 7}, + [4315] = {.lex_state = 55, .external_lex_state = 2}, + [4316] = {.lex_state = 405, .external_lex_state = 5}, + [4317] = {.lex_state = 75, .external_lex_state = 2}, + [4318] = {.lex_state = 405, .external_lex_state = 5}, + [4319] = {.lex_state = 48, .external_lex_state = 5}, + [4320] = {.lex_state = 48, .external_lex_state = 5}, + [4321] = {.lex_state = 48, .external_lex_state = 5}, + [4322] = {.lex_state = 75, .external_lex_state = 2}, + [4323] = {.lex_state = 405, .external_lex_state = 7}, + [4324] = {.lex_state = 405, .external_lex_state = 7}, + [4325] = {.lex_state = 75, .external_lex_state = 2}, + [4326] = {.lex_state = 405, .external_lex_state = 7}, + [4327] = {.lex_state = 48, .external_lex_state = 2}, + [4328] = {.lex_state = 75, .external_lex_state = 2}, + [4329] = {.lex_state = 405, .external_lex_state = 5}, + [4330] = {.lex_state = 85, .external_lex_state = 2}, + [4331] = {.lex_state = 75, .external_lex_state = 2}, + [4332] = {.lex_state = 85, .external_lex_state = 2}, + [4333] = {.lex_state = 85, .external_lex_state = 2}, + [4334] = {.lex_state = 75, .external_lex_state = 2}, + [4335] = {.lex_state = 75, .external_lex_state = 2}, + [4336] = {.lex_state = 85, .external_lex_state = 2}, + [4337] = {.lex_state = 405, .external_lex_state = 5}, + [4338] = {.lex_state = 91, .external_lex_state = 2}, + [4339] = {.lex_state = 405, .external_lex_state = 5}, + [4340] = {.lex_state = 405, .external_lex_state = 7}, + [4341] = {.lex_state = 85, .external_lex_state = 2}, + [4342] = {.lex_state = 405, .external_lex_state = 7}, + [4343] = {.lex_state = 75, .external_lex_state = 2}, + [4344] = {.lex_state = 50, .external_lex_state = 2}, + [4345] = {.lex_state = 88, .external_lex_state = 2}, + [4346] = {.lex_state = 405, .external_lex_state = 5}, + [4347] = {.lex_state = 405, .external_lex_state = 2}, + [4348] = {.lex_state = 405, .external_lex_state = 2}, + [4349] = {.lex_state = 50, .external_lex_state = 2}, + [4350] = {.lex_state = 405, .external_lex_state = 5}, + [4351] = {.lex_state = 405, .external_lex_state = 5}, + [4352] = {.lex_state = 405, .external_lex_state = 2}, + [4353] = {.lex_state = 405, .external_lex_state = 2}, + [4354] = {.lex_state = 405, .external_lex_state = 2}, + [4355] = {.lex_state = 405, .external_lex_state = 5}, + [4356] = {.lex_state = 405, .external_lex_state = 5}, + [4357] = {.lex_state = 405, .external_lex_state = 5}, + [4358] = {.lex_state = 405, .external_lex_state = 5}, + [4359] = {.lex_state = 405, .external_lex_state = 5}, + [4360] = {.lex_state = 405, .external_lex_state = 2}, + [4361] = {.lex_state = 405, .external_lex_state = 5}, + [4362] = {.lex_state = 405, .external_lex_state = 5}, + [4363] = {.lex_state = 405, .external_lex_state = 5}, + [4364] = {.lex_state = 405, .external_lex_state = 5}, + [4365] = {.lex_state = 405, .external_lex_state = 5}, + [4366] = {.lex_state = 405, .external_lex_state = 5}, + [4367] = {.lex_state = 405, .external_lex_state = 5}, + [4368] = {.lex_state = 405, .external_lex_state = 5}, + [4369] = {.lex_state = 405, .external_lex_state = 5}, + [4370] = {.lex_state = 405, .external_lex_state = 5}, + [4371] = {.lex_state = 405, .external_lex_state = 5}, + [4372] = {.lex_state = 405, .external_lex_state = 5}, + [4373] = {.lex_state = 405, .external_lex_state = 5}, + [4374] = {.lex_state = 405, .external_lex_state = 5}, + [4375] = {.lex_state = 405, .external_lex_state = 5}, + [4376] = {.lex_state = 405, .external_lex_state = 5}, + [4377] = {.lex_state = 405, .external_lex_state = 5}, + [4378] = {.lex_state = 405, .external_lex_state = 5}, + [4379] = {.lex_state = 405, .external_lex_state = 5}, + [4380] = {.lex_state = 405, .external_lex_state = 5}, + [4381] = {.lex_state = 405, .external_lex_state = 5}, + [4382] = {.lex_state = 405, .external_lex_state = 5}, + [4383] = {.lex_state = 405, .external_lex_state = 5}, + [4384] = {.lex_state = 405, .external_lex_state = 5}, + [4385] = {.lex_state = 405, .external_lex_state = 5}, + [4386] = {.lex_state = 405, .external_lex_state = 5}, + [4387] = {.lex_state = 405, .external_lex_state = 5}, + [4388] = {.lex_state = 405, .external_lex_state = 5}, + [4389] = {.lex_state = 405, .external_lex_state = 5}, + [4390] = {.lex_state = 405, .external_lex_state = 5}, + [4391] = {.lex_state = 405, .external_lex_state = 5}, + [4392] = {.lex_state = 405, .external_lex_state = 5}, + [4393] = {.lex_state = 405, .external_lex_state = 5}, + [4394] = {.lex_state = 50, .external_lex_state = 2}, + [4395] = {.lex_state = 405, .external_lex_state = 5}, + [4396] = {.lex_state = 405, .external_lex_state = 5}, + [4397] = {.lex_state = 75, .external_lex_state = 2}, + [4398] = {.lex_state = 405, .external_lex_state = 5}, + [4399] = {.lex_state = 405, .external_lex_state = 5}, + [4400] = {.lex_state = 405, .external_lex_state = 5}, + [4401] = {.lex_state = 405, .external_lex_state = 2}, + [4402] = {.lex_state = 88, .external_lex_state = 2}, + [4403] = {.lex_state = 405, .external_lex_state = 5}, + [4404] = {.lex_state = 405, .external_lex_state = 5}, + [4405] = {.lex_state = 405, .external_lex_state = 2}, + [4406] = {.lex_state = 50, .external_lex_state = 2}, + [4407] = {.lex_state = 405, .external_lex_state = 2}, + [4408] = {.lex_state = 405, .external_lex_state = 2}, + [4409] = {.lex_state = 405, .external_lex_state = 2}, + [4410] = {.lex_state = 405, .external_lex_state = 2}, + [4411] = {.lex_state = 405, .external_lex_state = 2}, + [4412] = {.lex_state = 405, .external_lex_state = 5}, + [4413] = {.lex_state = 405, .external_lex_state = 2}, + [4414] = {.lex_state = 405, .external_lex_state = 5}, + [4415] = {.lex_state = 405, .external_lex_state = 2}, + [4416] = {.lex_state = 405, .external_lex_state = 2}, + [4417] = {.lex_state = 405, .external_lex_state = 5}, + [4418] = {.lex_state = 405, .external_lex_state = 5}, + [4419] = {.lex_state = 405, .external_lex_state = 5}, + [4420] = {.lex_state = 405, .external_lex_state = 5}, + [4421] = {.lex_state = 50, .external_lex_state = 2}, + [4422] = {.lex_state = 405, .external_lex_state = 2}, + [4423] = {.lex_state = 75, .external_lex_state = 2}, + [4424] = {.lex_state = 405, .external_lex_state = 5}, + [4425] = {.lex_state = 405, .external_lex_state = 5}, + [4426] = {.lex_state = 405, .external_lex_state = 5}, + [4427] = {.lex_state = 405, .external_lex_state = 5}, + [4428] = {.lex_state = 405, .external_lex_state = 2}, + [4429] = {.lex_state = 405, .external_lex_state = 5}, + [4430] = {.lex_state = 405, .external_lex_state = 5}, + [4431] = {.lex_state = 88, .external_lex_state = 2}, + [4432] = {.lex_state = 405, .external_lex_state = 5}, + [4433] = {.lex_state = 405, .external_lex_state = 2}, + [4434] = {.lex_state = 405, .external_lex_state = 5}, + [4435] = {.lex_state = 405, .external_lex_state = 5}, + [4436] = {.lex_state = 405, .external_lex_state = 5}, + [4437] = {.lex_state = 405, .external_lex_state = 2}, + [4438] = {.lex_state = 405, .external_lex_state = 5}, + [4439] = {.lex_state = 405, .external_lex_state = 2}, + [4440] = {.lex_state = 405, .external_lex_state = 5}, + [4441] = {.lex_state = 405, .external_lex_state = 2}, + [4442] = {.lex_state = 405, .external_lex_state = 5}, + [4443] = {.lex_state = 405, .external_lex_state = 5}, + [4444] = {.lex_state = 405, .external_lex_state = 5}, + [4445] = {.lex_state = 405, .external_lex_state = 5}, + [4446] = {.lex_state = 405, .external_lex_state = 5}, + [4447] = {.lex_state = 405, .external_lex_state = 2}, + [4448] = {.lex_state = 405, .external_lex_state = 2}, + [4449] = {.lex_state = 405, .external_lex_state = 2}, + [4450] = {.lex_state = 405, .external_lex_state = 6}, + [4451] = {.lex_state = 405, .external_lex_state = 6}, + [4452] = {.lex_state = 405, .external_lex_state = 6}, + [4453] = {.lex_state = 405, .external_lex_state = 6}, + [4454] = {.lex_state = 405, .external_lex_state = 6}, + [4455] = {.lex_state = 405, .external_lex_state = 6}, + [4456] = {.lex_state = 405, .external_lex_state = 5}, + [4457] = {.lex_state = 405, .external_lex_state = 2}, + [4458] = {.lex_state = 405, .external_lex_state = 5}, + [4459] = {.lex_state = 405, .external_lex_state = 5}, + [4460] = {.lex_state = 88, .external_lex_state = 2}, + [4461] = {.lex_state = 405, .external_lex_state = 2}, + [4462] = {.lex_state = 50, .external_lex_state = 2}, + [4463] = {.lex_state = 75, .external_lex_state = 2}, + [4464] = {.lex_state = 405, .external_lex_state = 2}, + [4465] = {.lex_state = 405, .external_lex_state = 2}, + [4466] = {.lex_state = 405, .external_lex_state = 2}, + [4467] = {.lex_state = 405, .external_lex_state = 2}, + [4468] = {.lex_state = 50, .external_lex_state = 2}, + [4469] = {.lex_state = 405, .external_lex_state = 2}, + [4470] = {.lex_state = 405, .external_lex_state = 5}, + [4471] = {.lex_state = 405, .external_lex_state = 2}, + [4472] = {.lex_state = 75, .external_lex_state = 2}, + [4473] = {.lex_state = 50, .external_lex_state = 2}, + [4474] = {.lex_state = 405, .external_lex_state = 5}, + [4475] = {.lex_state = 405, .external_lex_state = 2}, + [4476] = {.lex_state = 405, .external_lex_state = 2}, + [4477] = {.lex_state = 405, .external_lex_state = 5}, + [4478] = {.lex_state = 405, .external_lex_state = 5}, + [4479] = {.lex_state = 405, .external_lex_state = 5}, + [4480] = {.lex_state = 405, .external_lex_state = 5}, + [4481] = {.lex_state = 405, .external_lex_state = 5}, + [4482] = {.lex_state = 405, .external_lex_state = 5}, + [4483] = {.lex_state = 405, .external_lex_state = 5}, + [4484] = {.lex_state = 405, .external_lex_state = 5}, + [4485] = {.lex_state = 405, .external_lex_state = 5}, + [4486] = {.lex_state = 50, .external_lex_state = 2}, + [4487] = {.lex_state = 405, .external_lex_state = 5}, + [4488] = {.lex_state = 405, .external_lex_state = 5}, + [4489] = {.lex_state = 405, .external_lex_state = 5}, + [4490] = {.lex_state = 405, .external_lex_state = 5}, + [4491] = {.lex_state = 405, .external_lex_state = 5}, + [4492] = {.lex_state = 405, .external_lex_state = 5}, + [4493] = {.lex_state = 405, .external_lex_state = 5}, + [4494] = {.lex_state = 405, .external_lex_state = 5}, + [4495] = {.lex_state = 50, .external_lex_state = 2}, + [4496] = {.lex_state = 405, .external_lex_state = 5}, + [4497] = {.lex_state = 405, .external_lex_state = 5}, + [4498] = {.lex_state = 405, .external_lex_state = 5}, + [4499] = {.lex_state = 405, .external_lex_state = 5}, + [4500] = {.lex_state = 405, .external_lex_state = 5}, + [4501] = {.lex_state = 405, .external_lex_state = 5}, + [4502] = {.lex_state = 405, .external_lex_state = 5}, + [4503] = {.lex_state = 405, .external_lex_state = 5}, + [4504] = {.lex_state = 405, .external_lex_state = 5}, + [4505] = {.lex_state = 405, .external_lex_state = 5}, + [4506] = {.lex_state = 405, .external_lex_state = 5}, + [4507] = {.lex_state = 405, .external_lex_state = 5}, + [4508] = {.lex_state = 405, .external_lex_state = 2}, + [4509] = {.lex_state = 405, .external_lex_state = 5}, + [4510] = {.lex_state = 50, .external_lex_state = 2}, + [4511] = {.lex_state = 50, .external_lex_state = 2}, + [4512] = {.lex_state = 48, .external_lex_state = 2}, + [4513] = {.lex_state = 405, .external_lex_state = 5}, + [4514] = {.lex_state = 50, .external_lex_state = 2}, + [4515] = {.lex_state = 405, .external_lex_state = 5}, + [4516] = {.lex_state = 405, .external_lex_state = 5}, + [4517] = {.lex_state = 405, .external_lex_state = 5}, + [4518] = {.lex_state = 405, .external_lex_state = 5}, + [4519] = {.lex_state = 405, .external_lex_state = 2}, + [4520] = {.lex_state = 50, .external_lex_state = 2}, + [4521] = {.lex_state = 405, .external_lex_state = 5}, + [4522] = {.lex_state = 405, .external_lex_state = 5}, [4523] = {.lex_state = 50, .external_lex_state = 2}, [4524] = {.lex_state = 50, .external_lex_state = 2}, [4525] = {.lex_state = 50, .external_lex_state = 2}, - [4526] = {.lex_state = 49, .external_lex_state = 5}, - [4527] = {.lex_state = 49, .external_lex_state = 5}, + [4526] = {.lex_state = 48, .external_lex_state = 2}, + [4527] = {.lex_state = 405, .external_lex_state = 2}, [4528] = {.lex_state = 50, .external_lex_state = 2}, - [4529] = {.lex_state = 406, .external_lex_state = 5}, - [4530] = {.lex_state = 406, .external_lex_state = 5}, - [4531] = {.lex_state = 406, .external_lex_state = 5}, - [4532] = {.lex_state = 406, .external_lex_state = 5}, - [4533] = {.lex_state = 50, .external_lex_state = 2}, - [4534] = {.lex_state = 406, .external_lex_state = 5}, - [4535] = {.lex_state = 55, .external_lex_state = 2}, - [4536] = {.lex_state = 50, .external_lex_state = 2}, - [4537] = {.lex_state = 50, .external_lex_state = 2}, + [4529] = {.lex_state = 405, .external_lex_state = 5}, + [4530] = {.lex_state = 405, .external_lex_state = 5}, + [4531] = {.lex_state = 405, .external_lex_state = 2}, + [4532] = {.lex_state = 405, .external_lex_state = 5}, + [4533] = {.lex_state = 405, .external_lex_state = 5}, + [4534] = {.lex_state = 50, .external_lex_state = 2}, + [4535] = {.lex_state = 405, .external_lex_state = 5}, + [4536] = {.lex_state = 405, .external_lex_state = 5}, + [4537] = {.lex_state = 405, .external_lex_state = 5}, [4538] = {.lex_state = 50, .external_lex_state = 2}, - [4539] = {.lex_state = 48, .external_lex_state = 2}, - [4540] = {.lex_state = 50, .external_lex_state = 2}, - [4541] = {.lex_state = 406, .external_lex_state = 5}, - [4542] = {.lex_state = 406, .external_lex_state = 5}, - [4543] = {.lex_state = 406, .external_lex_state = 5}, - [4544] = {.lex_state = 406, .external_lex_state = 5}, - [4545] = {.lex_state = 50, .external_lex_state = 2}, - [4546] = {.lex_state = 406, .external_lex_state = 5}, - [4547] = {.lex_state = 406, .external_lex_state = 5}, - [4548] = {.lex_state = 406, .external_lex_state = 5}, - [4549] = {.lex_state = 50, .external_lex_state = 2}, - [4550] = {.lex_state = 406, .external_lex_state = 5}, - [4551] = {.lex_state = 406, .external_lex_state = 5}, - [4552] = {.lex_state = 406, .external_lex_state = 5}, - [4553] = {.lex_state = 406, .external_lex_state = 5}, - [4554] = {.lex_state = 48, .external_lex_state = 2}, - [4555] = {.lex_state = 406, .external_lex_state = 5}, - [4556] = {.lex_state = 406, .external_lex_state = 5}, - [4557] = {.lex_state = 406, .external_lex_state = 5}, - [4558] = {.lex_state = 406, .external_lex_state = 5}, - [4559] = {.lex_state = 50, .external_lex_state = 2}, - [4560] = {.lex_state = 406, .external_lex_state = 5}, - [4561] = {.lex_state = 406, .external_lex_state = 5}, - [4562] = {.lex_state = 50, .external_lex_state = 2}, - [4563] = {.lex_state = 48, .external_lex_state = 2}, - [4564] = {.lex_state = 75, .external_lex_state = 2}, - [4565] = {.lex_state = 50, .external_lex_state = 2}, - [4566] = {.lex_state = 406, .external_lex_state = 2}, - [4567] = {.lex_state = 406, .external_lex_state = 5}, - [4568] = {.lex_state = 406, .external_lex_state = 5}, - [4569] = {.lex_state = 50, .external_lex_state = 2}, - [4570] = {.lex_state = 406, .external_lex_state = 2}, - [4571] = {.lex_state = 48, .external_lex_state = 2}, - [4572] = {.lex_state = 48, .external_lex_state = 2}, - [4573] = {.lex_state = 48, .external_lex_state = 2}, - [4574] = {.lex_state = 406, .external_lex_state = 5}, - [4575] = {.lex_state = 406, .external_lex_state = 5}, - [4576] = {.lex_state = 406, .external_lex_state = 5}, - [4577] = {.lex_state = 406, .external_lex_state = 5}, - [4578] = {.lex_state = 406, .external_lex_state = 5}, + [4539] = {.lex_state = 405, .external_lex_state = 5}, + [4540] = {.lex_state = 405, .external_lex_state = 5}, + [4541] = {.lex_state = 50, .external_lex_state = 2}, + [4542] = {.lex_state = 405, .external_lex_state = 5}, + [4543] = {.lex_state = 405, .external_lex_state = 5}, + [4544] = {.lex_state = 75, .external_lex_state = 2}, + [4545] = {.lex_state = 405, .external_lex_state = 5}, + [4546] = {.lex_state = 405, .external_lex_state = 5}, + [4547] = {.lex_state = 48, .external_lex_state = 2}, + [4548] = {.lex_state = 48, .external_lex_state = 2}, + [4549] = {.lex_state = 405, .external_lex_state = 2}, + [4550] = {.lex_state = 50, .external_lex_state = 2}, + [4551] = {.lex_state = 50, .external_lex_state = 2}, + [4552] = {.lex_state = 48, .external_lex_state = 2}, + [4553] = {.lex_state = 405, .external_lex_state = 5}, + [4554] = {.lex_state = 405, .external_lex_state = 5}, + [4555] = {.lex_state = 405, .external_lex_state = 5}, + [4556] = {.lex_state = 405, .external_lex_state = 5}, + [4557] = {.lex_state = 48, .external_lex_state = 2}, + [4558] = {.lex_state = 405, .external_lex_state = 5}, + [4559] = {.lex_state = 48, .external_lex_state = 2}, + [4560] = {.lex_state = 48, .external_lex_state = 2}, + [4561] = {.lex_state = 405, .external_lex_state = 2}, + [4562] = {.lex_state = 49, .external_lex_state = 5}, + [4563] = {.lex_state = 405, .external_lex_state = 2}, + [4564] = {.lex_state = 405, .external_lex_state = 2}, + [4565] = {.lex_state = 405, .external_lex_state = 5}, + [4566] = {.lex_state = 405, .external_lex_state = 5}, + [4567] = {.lex_state = 405, .external_lex_state = 5}, + [4568] = {.lex_state = 50, .external_lex_state = 2}, + [4569] = {.lex_state = 48, .external_lex_state = 2}, + [4570] = {.lex_state = 405, .external_lex_state = 5}, + [4571] = {.lex_state = 405, .external_lex_state = 5}, + [4572] = {.lex_state = 405, .external_lex_state = 5}, + [4573] = {.lex_state = 405, .external_lex_state = 2}, + [4574] = {.lex_state = 405, .external_lex_state = 5}, + [4575] = {.lex_state = 50, .external_lex_state = 2}, + [4576] = {.lex_state = 50, .external_lex_state = 2}, + [4577] = {.lex_state = 75, .external_lex_state = 2}, + [4578] = {.lex_state = 405, .external_lex_state = 2}, [4579] = {.lex_state = 50, .external_lex_state = 2}, - [4580] = {.lex_state = 406, .external_lex_state = 5}, - [4581] = {.lex_state = 406, .external_lex_state = 5}, - [4582] = {.lex_state = 48, .external_lex_state = 2}, - [4583] = {.lex_state = 48, .external_lex_state = 2}, - [4584] = {.lex_state = 50, .external_lex_state = 2}, - [4585] = {.lex_state = 50, .external_lex_state = 2}, - [4586] = {.lex_state = 50, .external_lex_state = 2}, - [4587] = {.lex_state = 50, .external_lex_state = 2}, - [4588] = {.lex_state = 406, .external_lex_state = 5}, + [4580] = {.lex_state = 50, .external_lex_state = 2}, + [4581] = {.lex_state = 405, .external_lex_state = 2}, + [4582] = {.lex_state = 405, .external_lex_state = 5}, + [4583] = {.lex_state = 405, .external_lex_state = 5}, + [4584] = {.lex_state = 81, .external_lex_state = 2}, + [4585] = {.lex_state = 48, .external_lex_state = 2}, + [4586] = {.lex_state = 88, .external_lex_state = 2}, + [4587] = {.lex_state = 405, .external_lex_state = 2}, + [4588] = {.lex_state = 48, .external_lex_state = 2}, [4589] = {.lex_state = 50, .external_lex_state = 2}, [4590] = {.lex_state = 50, .external_lex_state = 2}, - [4591] = {.lex_state = 50, .external_lex_state = 2}, - [4592] = {.lex_state = 406, .external_lex_state = 5}, - [4593] = {.lex_state = 406, .external_lex_state = 5}, - [4594] = {.lex_state = 406, .external_lex_state = 5}, - [4595] = {.lex_state = 406, .external_lex_state = 6}, - [4596] = {.lex_state = 406, .external_lex_state = 5}, - [4597] = {.lex_state = 406, .external_lex_state = 5}, - [4598] = {.lex_state = 406, .external_lex_state = 5}, - [4599] = {.lex_state = 406, .external_lex_state = 6}, - [4600] = {.lex_state = 406, .external_lex_state = 6}, - [4601] = {.lex_state = 406, .external_lex_state = 6}, - [4602] = {.lex_state = 406, .external_lex_state = 5}, - [4603] = {.lex_state = 406, .external_lex_state = 5}, - [4604] = {.lex_state = 406, .external_lex_state = 5}, - [4605] = {.lex_state = 406, .external_lex_state = 5}, - [4606] = {.lex_state = 406, .external_lex_state = 6}, - [4607] = {.lex_state = 406, .external_lex_state = 6}, + [4591] = {.lex_state = 49, .external_lex_state = 5}, + [4592] = {.lex_state = 48, .external_lex_state = 2}, + [4593] = {.lex_state = 50, .external_lex_state = 2}, + [4594] = {.lex_state = 50, .external_lex_state = 2}, + [4595] = {.lex_state = 50, .external_lex_state = 2}, + [4596] = {.lex_state = 50, .external_lex_state = 2}, + [4597] = {.lex_state = 49, .external_lex_state = 5}, + [4598] = {.lex_state = 49, .external_lex_state = 5}, + [4599] = {.lex_state = 405, .external_lex_state = 5}, + [4600] = {.lex_state = 49, .external_lex_state = 5}, + [4601] = {.lex_state = 405, .external_lex_state = 5}, + [4602] = {.lex_state = 50, .external_lex_state = 2}, + [4603] = {.lex_state = 48, .external_lex_state = 2}, + [4604] = {.lex_state = 50, .external_lex_state = 2}, + [4605] = {.lex_state = 49, .external_lex_state = 5}, + [4606] = {.lex_state = 49, .external_lex_state = 5}, + [4607] = {.lex_state = 55, .external_lex_state = 2}, [4608] = {.lex_state = 50, .external_lex_state = 2}, [4609] = {.lex_state = 50, .external_lex_state = 2}, - [4610] = {.lex_state = 406, .external_lex_state = 5}, - [4611] = {.lex_state = 406, .external_lex_state = 5}, - [4612] = {.lex_state = 50, .external_lex_state = 2}, - [4613] = {.lex_state = 406, .external_lex_state = 5}, - [4614] = {.lex_state = 406, .external_lex_state = 6}, - [4615] = {.lex_state = 50, .external_lex_state = 2}, - [4616] = {.lex_state = 406, .external_lex_state = 2}, - [4617] = {.lex_state = 50, .external_lex_state = 2}, + [4610] = {.lex_state = 50, .external_lex_state = 2}, + [4611] = {.lex_state = 48, .external_lex_state = 2}, + [4612] = {.lex_state = 49, .external_lex_state = 5}, + [4613] = {.lex_state = 49, .external_lex_state = 5}, + [4614] = {.lex_state = 81, .external_lex_state = 2}, + [4615] = {.lex_state = 81, .external_lex_state = 2}, + [4616] = {.lex_state = 405, .external_lex_state = 6}, + [4617] = {.lex_state = 48, .external_lex_state = 2}, [4618] = {.lex_state = 48, .external_lex_state = 2}, - [4619] = {.lex_state = 406, .external_lex_state = 5}, + [4619] = {.lex_state = 405, .external_lex_state = 2}, [4620] = {.lex_state = 50, .external_lex_state = 2}, - [4621] = {.lex_state = 48, .external_lex_state = 2}, + [4621] = {.lex_state = 405, .external_lex_state = 2}, [4622] = {.lex_state = 48, .external_lex_state = 2}, - [4623] = {.lex_state = 50, .external_lex_state = 2}, - [4624] = {.lex_state = 406, .external_lex_state = 2}, - [4625] = {.lex_state = 50, .external_lex_state = 2}, - [4626] = {.lex_state = 50, .external_lex_state = 2}, - [4627] = {.lex_state = 50, .external_lex_state = 2}, - [4628] = {.lex_state = 406, .external_lex_state = 5}, - [4629] = {.lex_state = 406, .external_lex_state = 2}, - [4630] = {.lex_state = 406, .external_lex_state = 5}, - [4631] = {.lex_state = 406, .external_lex_state = 2}, - [4632] = {.lex_state = 406, .external_lex_state = 5}, - [4633] = {.lex_state = 406, .external_lex_state = 5}, - [4634] = {.lex_state = 406, .external_lex_state = 2}, - [4635] = {.lex_state = 50, .external_lex_state = 2}, - [4636] = {.lex_state = 406, .external_lex_state = 5}, + [4623] = {.lex_state = 48, .external_lex_state = 2}, + [4624] = {.lex_state = 405, .external_lex_state = 2}, + [4625] = {.lex_state = 48, .external_lex_state = 2}, + [4626] = {.lex_state = 405, .external_lex_state = 5}, + [4627] = {.lex_state = 405, .external_lex_state = 6}, + [4628] = {.lex_state = 405, .external_lex_state = 6}, + [4629] = {.lex_state = 48, .external_lex_state = 2}, + [4630] = {.lex_state = 405, .external_lex_state = 6}, + [4631] = {.lex_state = 405, .external_lex_state = 5}, + [4632] = {.lex_state = 405, .external_lex_state = 5}, + [4633] = {.lex_state = 50, .external_lex_state = 2}, + [4634] = {.lex_state = 50, .external_lex_state = 2}, + [4635] = {.lex_state = 405, .external_lex_state = 6}, + [4636] = {.lex_state = 50, .external_lex_state = 2}, [4637] = {.lex_state = 50, .external_lex_state = 2}, - [4638] = {.lex_state = 406, .external_lex_state = 6}, + [4638] = {.lex_state = 405, .external_lex_state = 5}, [4639] = {.lex_state = 50, .external_lex_state = 2}, - [4640] = {.lex_state = 65, .external_lex_state = 2}, - [4641] = {.lex_state = 48, .external_lex_state = 2}, - [4642] = {.lex_state = 75, .external_lex_state = 2}, - [4643] = {.lex_state = 406, .external_lex_state = 6}, - [4644] = {.lex_state = 50, .external_lex_state = 2}, - [4645] = {.lex_state = 65, .external_lex_state = 2}, - [4646] = {.lex_state = 406, .external_lex_state = 6}, - [4647] = {.lex_state = 50, .external_lex_state = 2}, - [4648] = {.lex_state = 406, .external_lex_state = 6}, - [4649] = {.lex_state = 50, .external_lex_state = 2}, - [4650] = {.lex_state = 50, .external_lex_state = 2}, + [4640] = {.lex_state = 48, .external_lex_state = 2}, + [4641] = {.lex_state = 50, .external_lex_state = 2}, + [4642] = {.lex_state = 50, .external_lex_state = 2}, + [4643] = {.lex_state = 48, .external_lex_state = 2}, + [4644] = {.lex_state = 48, .external_lex_state = 2}, + [4645] = {.lex_state = 48, .external_lex_state = 2}, + [4646] = {.lex_state = 48, .external_lex_state = 2}, + [4647] = {.lex_state = 405, .external_lex_state = 2}, + [4648] = {.lex_state = 405, .external_lex_state = 6}, + [4649] = {.lex_state = 48, .external_lex_state = 2}, + [4650] = {.lex_state = 48, .external_lex_state = 2}, [4651] = {.lex_state = 48, .external_lex_state = 2}, - [4652] = {.lex_state = 406, .external_lex_state = 6}, - [4653] = {.lex_state = 48, .external_lex_state = 2}, - [4654] = {.lex_state = 406, .external_lex_state = 6}, - [4655] = {.lex_state = 50, .external_lex_state = 2}, - [4656] = {.lex_state = 50, .external_lex_state = 2}, - [4657] = {.lex_state = 406, .external_lex_state = 6}, - [4658] = {.lex_state = 406, .external_lex_state = 6}, - [4659] = {.lex_state = 406, .external_lex_state = 7}, - [4660] = {.lex_state = 50, .external_lex_state = 2}, - [4661] = {.lex_state = 65, .external_lex_state = 2}, - [4662] = {.lex_state = 48, .external_lex_state = 2}, - [4663] = {.lex_state = 406, .external_lex_state = 2}, - [4664] = {.lex_state = 65, .external_lex_state = 2}, - [4665] = {.lex_state = 406, .external_lex_state = 6}, - [4666] = {.lex_state = 406, .external_lex_state = 6}, - [4667] = {.lex_state = 406, .external_lex_state = 6}, + [4652] = {.lex_state = 405, .external_lex_state = 6}, + [4653] = {.lex_state = 405, .external_lex_state = 6}, + [4654] = {.lex_state = 48, .external_lex_state = 2}, + [4655] = {.lex_state = 405, .external_lex_state = 6}, + [4656] = {.lex_state = 405, .external_lex_state = 6}, + [4657] = {.lex_state = 405, .external_lex_state = 2}, + [4658] = {.lex_state = 405, .external_lex_state = 5}, + [4659] = {.lex_state = 405, .external_lex_state = 5}, + [4660] = {.lex_state = 48, .external_lex_state = 2}, + [4661] = {.lex_state = 48, .external_lex_state = 2}, + [4662] = {.lex_state = 405, .external_lex_state = 5}, + [4663] = {.lex_state = 405, .external_lex_state = 5}, + [4664] = {.lex_state = 75, .external_lex_state = 2}, + [4665] = {.lex_state = 405, .external_lex_state = 6}, + [4666] = {.lex_state = 405, .external_lex_state = 5}, + [4667] = {.lex_state = 405, .external_lex_state = 5}, [4668] = {.lex_state = 65, .external_lex_state = 2}, - [4669] = {.lex_state = 406, .external_lex_state = 6}, - [4670] = {.lex_state = 48, .external_lex_state = 2}, - [4671] = {.lex_state = 48, .external_lex_state = 2}, - [4672] = {.lex_state = 50, .external_lex_state = 2}, - [4673] = {.lex_state = 48, .external_lex_state = 2}, + [4669] = {.lex_state = 405, .external_lex_state = 2}, + [4670] = {.lex_state = 405, .external_lex_state = 2}, + [4671] = {.lex_state = 405, .external_lex_state = 5}, + [4672] = {.lex_state = 48, .external_lex_state = 2}, + [4673] = {.lex_state = 405, .external_lex_state = 5}, [4674] = {.lex_state = 50, .external_lex_state = 2}, - [4675] = {.lex_state = 48, .external_lex_state = 2}, + [4675] = {.lex_state = 405, .external_lex_state = 2}, [4676] = {.lex_state = 50, .external_lex_state = 2}, - [4677] = {.lex_state = 65, .external_lex_state = 2}, - [4678] = {.lex_state = 406, .external_lex_state = 2}, - [4679] = {.lex_state = 406, .external_lex_state = 5}, - [4680] = {.lex_state = 406, .external_lex_state = 5}, - [4681] = {.lex_state = 406, .external_lex_state = 5}, - [4682] = {.lex_state = 406, .external_lex_state = 6}, - [4683] = {.lex_state = 406, .external_lex_state = 2}, - [4684] = {.lex_state = 406, .external_lex_state = 2}, - [4685] = {.lex_state = 50, .external_lex_state = 2}, - [4686] = {.lex_state = 406, .external_lex_state = 2}, - [4687] = {.lex_state = 65, .external_lex_state = 2}, - [4688] = {.lex_state = 406, .external_lex_state = 5}, - [4689] = {.lex_state = 65, .external_lex_state = 2}, - [4690] = {.lex_state = 48, .external_lex_state = 2}, - [4691] = {.lex_state = 406, .external_lex_state = 2}, - [4692] = {.lex_state = 48, .external_lex_state = 2}, - [4693] = {.lex_state = 50, .external_lex_state = 2}, - [4694] = {.lex_state = 65, .external_lex_state = 2}, + [4677] = {.lex_state = 48, .external_lex_state = 2}, + [4678] = {.lex_state = 405, .external_lex_state = 5}, + [4679] = {.lex_state = 405, .external_lex_state = 2}, + [4680] = {.lex_state = 405, .external_lex_state = 2}, + [4681] = {.lex_state = 50, .external_lex_state = 2}, + [4682] = {.lex_state = 405, .external_lex_state = 6}, + [4683] = {.lex_state = 405, .external_lex_state = 2}, + [4684] = {.lex_state = 405, .external_lex_state = 6}, + [4685] = {.lex_state = 405, .external_lex_state = 5}, + [4686] = {.lex_state = 48, .external_lex_state = 2}, + [4687] = {.lex_state = 405, .external_lex_state = 2}, + [4688] = {.lex_state = 405, .external_lex_state = 2}, + [4689] = {.lex_state = 48, .external_lex_state = 2}, + [4690] = {.lex_state = 405, .external_lex_state = 2}, + [4691] = {.lex_state = 48, .external_lex_state = 2}, + [4692] = {.lex_state = 405, .external_lex_state = 2}, + [4693] = {.lex_state = 405, .external_lex_state = 5}, + [4694] = {.lex_state = 48, .external_lex_state = 2}, [4695] = {.lex_state = 65, .external_lex_state = 2}, - [4696] = {.lex_state = 48, .external_lex_state = 2}, - [4697] = {.lex_state = 50, .external_lex_state = 2}, - [4698] = {.lex_state = 65, .external_lex_state = 2}, - [4699] = {.lex_state = 50, .external_lex_state = 2}, - [4700] = {.lex_state = 406, .external_lex_state = 5}, - [4701] = {.lex_state = 48, .external_lex_state = 2}, - [4702] = {.lex_state = 48, .external_lex_state = 2}, - [4703] = {.lex_state = 406, .external_lex_state = 2}, - [4704] = {.lex_state = 406, .external_lex_state = 5}, - [4705] = {.lex_state = 406, .external_lex_state = 5}, - [4706] = {.lex_state = 406, .external_lex_state = 6}, - [4707] = {.lex_state = 48, .external_lex_state = 2}, + [4696] = {.lex_state = 65, .external_lex_state = 2}, + [4697] = {.lex_state = 65, .external_lex_state = 2}, + [4698] = {.lex_state = 48, .external_lex_state = 2}, + [4699] = {.lex_state = 48, .external_lex_state = 2}, + [4700] = {.lex_state = 405, .external_lex_state = 5}, + [4701] = {.lex_state = 405, .external_lex_state = 5}, + [4702] = {.lex_state = 405, .external_lex_state = 6}, + [4703] = {.lex_state = 65, .external_lex_state = 2}, + [4704] = {.lex_state = 405, .external_lex_state = 5}, + [4705] = {.lex_state = 65, .external_lex_state = 2}, + [4706] = {.lex_state = 405, .external_lex_state = 2}, + [4707] = {.lex_state = 405, .external_lex_state = 2}, [4708] = {.lex_state = 48, .external_lex_state = 2}, - [4709] = {.lex_state = 406, .external_lex_state = 5}, - [4710] = {.lex_state = 406, .external_lex_state = 6}, - [4711] = {.lex_state = 406, .external_lex_state = 5}, - [4712] = {.lex_state = 406, .external_lex_state = 5}, - [4713] = {.lex_state = 406, .external_lex_state = 5}, - [4714] = {.lex_state = 406, .external_lex_state = 6}, - [4715] = {.lex_state = 48, .external_lex_state = 2}, - [4716] = {.lex_state = 406, .external_lex_state = 2}, + [4709] = {.lex_state = 405, .external_lex_state = 6}, + [4710] = {.lex_state = 50, .external_lex_state = 2}, + [4711] = {.lex_state = 405, .external_lex_state = 6}, + [4712] = {.lex_state = 50, .external_lex_state = 2}, + [4713] = {.lex_state = 405, .external_lex_state = 6}, + [4714] = {.lex_state = 50, .external_lex_state = 2}, + [4715] = {.lex_state = 405, .external_lex_state = 2}, + [4716] = {.lex_state = 405, .external_lex_state = 6}, [4717] = {.lex_state = 65, .external_lex_state = 2}, - [4718] = {.lex_state = 406, .external_lex_state = 5}, - [4719] = {.lex_state = 406, .external_lex_state = 5}, - [4720] = {.lex_state = 48, .external_lex_state = 2}, + [4718] = {.lex_state = 65, .external_lex_state = 2}, + [4719] = {.lex_state = 50, .external_lex_state = 2}, + [4720] = {.lex_state = 405, .external_lex_state = 2}, [4721] = {.lex_state = 65, .external_lex_state = 2}, - [4722] = {.lex_state = 406, .external_lex_state = 5}, - [4723] = {.lex_state = 65, .external_lex_state = 2}, - [4724] = {.lex_state = 406, .external_lex_state = 5}, - [4725] = {.lex_state = 406, .external_lex_state = 5}, + [4722] = {.lex_state = 48, .external_lex_state = 2}, + [4723] = {.lex_state = 50, .external_lex_state = 2}, + [4724] = {.lex_state = 48, .external_lex_state = 2}, + [4725] = {.lex_state = 48, .external_lex_state = 2}, [4726] = {.lex_state = 48, .external_lex_state = 2}, - [4727] = {.lex_state = 50, .external_lex_state = 2}, + [4727] = {.lex_state = 48, .external_lex_state = 2}, [4728] = {.lex_state = 65, .external_lex_state = 2}, - [4729] = {.lex_state = 406, .external_lex_state = 6}, - [4730] = {.lex_state = 50, .external_lex_state = 2}, - [4731] = {.lex_state = 48, .external_lex_state = 2}, - [4732] = {.lex_state = 50, .external_lex_state = 2}, - [4733] = {.lex_state = 406, .external_lex_state = 6}, - [4734] = {.lex_state = 65, .external_lex_state = 2}, - [4735] = {.lex_state = 406, .external_lex_state = 5}, - [4736] = {.lex_state = 48, .external_lex_state = 2}, - [4737] = {.lex_state = 406, .external_lex_state = 2}, + [4729] = {.lex_state = 81, .external_lex_state = 2}, + [4730] = {.lex_state = 65, .external_lex_state = 2}, + [4731] = {.lex_state = 405, .external_lex_state = 5}, + [4732] = {.lex_state = 65, .external_lex_state = 2}, + [4733] = {.lex_state = 405, .external_lex_state = 6}, + [4734] = {.lex_state = 81, .external_lex_state = 2}, + [4735] = {.lex_state = 50, .external_lex_state = 2}, + [4736] = {.lex_state = 405, .external_lex_state = 6}, + [4737] = {.lex_state = 405, .external_lex_state = 6}, [4738] = {.lex_state = 48, .external_lex_state = 2}, - [4739] = {.lex_state = 48, .external_lex_state = 2}, - [4740] = {.lex_state = 406, .external_lex_state = 5}, - [4741] = {.lex_state = 406, .external_lex_state = 7}, - [4742] = {.lex_state = 406, .external_lex_state = 5}, - [4743] = {.lex_state = 406, .external_lex_state = 5}, - [4744] = {.lex_state = 406, .external_lex_state = 2}, - [4745] = {.lex_state = 406, .external_lex_state = 5}, + [4739] = {.lex_state = 81, .external_lex_state = 2}, + [4740] = {.lex_state = 50, .external_lex_state = 2}, + [4741] = {.lex_state = 405, .external_lex_state = 5}, + [4742] = {.lex_state = 65, .external_lex_state = 2}, + [4743] = {.lex_state = 50, .external_lex_state = 2}, + [4744] = {.lex_state = 405, .external_lex_state = 7}, + [4745] = {.lex_state = 405, .external_lex_state = 5}, [4746] = {.lex_state = 50, .external_lex_state = 2}, - [4747] = {.lex_state = 50, .external_lex_state = 2}, - [4748] = {.lex_state = 406, .external_lex_state = 6}, - [4749] = {.lex_state = 48, .external_lex_state = 2}, - [4750] = {.lex_state = 48, .external_lex_state = 2}, - [4751] = {.lex_state = 406, .external_lex_state = 5}, + [4747] = {.lex_state = 48, .external_lex_state = 2}, + [4748] = {.lex_state = 48, .external_lex_state = 2}, + [4749] = {.lex_state = 405, .external_lex_state = 5}, + [4750] = {.lex_state = 405, .external_lex_state = 6}, + [4751] = {.lex_state = 405, .external_lex_state = 5}, [4752] = {.lex_state = 48, .external_lex_state = 2}, [4753] = {.lex_state = 65, .external_lex_state = 2}, - [4754] = {.lex_state = 48, .external_lex_state = 2}, - [4755] = {.lex_state = 65, .external_lex_state = 2}, + [4754] = {.lex_state = 65, .external_lex_state = 2}, + [4755] = {.lex_state = 405, .external_lex_state = 5}, [4756] = {.lex_state = 48, .external_lex_state = 2}, - [4757] = {.lex_state = 406, .external_lex_state = 5}, - [4758] = {.lex_state = 48, .external_lex_state = 2}, - [4759] = {.lex_state = 406, .external_lex_state = 6}, - [4760] = {.lex_state = 406, .external_lex_state = 5}, - [4761] = {.lex_state = 406, .external_lex_state = 6}, - [4762] = {.lex_state = 65, .external_lex_state = 2}, + [4757] = {.lex_state = 48, .external_lex_state = 2}, + [4758] = {.lex_state = 405, .external_lex_state = 5}, + [4759] = {.lex_state = 405, .external_lex_state = 5}, + [4760] = {.lex_state = 405, .external_lex_state = 5}, + [4761] = {.lex_state = 405, .external_lex_state = 5}, + [4762] = {.lex_state = 405, .external_lex_state = 6}, [4763] = {.lex_state = 65, .external_lex_state = 2}, - [4764] = {.lex_state = 406, .external_lex_state = 5}, - [4765] = {.lex_state = 406, .external_lex_state = 5}, - [4766] = {.lex_state = 81, .external_lex_state = 2}, - [4767] = {.lex_state = 50, .external_lex_state = 2}, - [4768] = {.lex_state = 406, .external_lex_state = 2}, - [4769] = {.lex_state = 406, .external_lex_state = 5}, - [4770] = {.lex_state = 406, .external_lex_state = 5}, - [4771] = {.lex_state = 406, .external_lex_state = 2}, - [4772] = {.lex_state = 406, .external_lex_state = 5}, - [4773] = {.lex_state = 406, .external_lex_state = 5}, - [4774] = {.lex_state = 65, .external_lex_state = 2}, - [4775] = {.lex_state = 406, .external_lex_state = 5}, - [4776] = {.lex_state = 406, .external_lex_state = 2}, - [4777] = {.lex_state = 406, .external_lex_state = 5}, - [4778] = {.lex_state = 406, .external_lex_state = 5}, - [4779] = {.lex_state = 48, .external_lex_state = 2}, - [4780] = {.lex_state = 50, .external_lex_state = 2}, - [4781] = {.lex_state = 75, .external_lex_state = 2}, - [4782] = {.lex_state = 81, .external_lex_state = 2}, - [4783] = {.lex_state = 406, .external_lex_state = 2}, - [4784] = {.lex_state = 48, .external_lex_state = 2}, - [4785] = {.lex_state = 65, .external_lex_state = 2}, - [4786] = {.lex_state = 65, .external_lex_state = 2}, - [4787] = {.lex_state = 65, .external_lex_state = 2}, - [4788] = {.lex_state = 406, .external_lex_state = 7}, - [4789] = {.lex_state = 65, .external_lex_state = 2}, - [4790] = {.lex_state = 65, .external_lex_state = 2}, + [4764] = {.lex_state = 405, .external_lex_state = 5}, + [4765] = {.lex_state = 405, .external_lex_state = 5}, + [4766] = {.lex_state = 405, .external_lex_state = 5}, + [4767] = {.lex_state = 65, .external_lex_state = 2}, + [4768] = {.lex_state = 405, .external_lex_state = 5}, + [4769] = {.lex_state = 405, .external_lex_state = 5}, + [4770] = {.lex_state = 65, .external_lex_state = 2}, + [4771] = {.lex_state = 405, .external_lex_state = 5}, + [4772] = {.lex_state = 50, .external_lex_state = 2}, + [4773] = {.lex_state = 50, .external_lex_state = 2}, + [4774] = {.lex_state = 48, .external_lex_state = 2}, + [4775] = {.lex_state = 405, .external_lex_state = 5}, + [4776] = {.lex_state = 65, .external_lex_state = 2}, + [4777] = {.lex_state = 405, .external_lex_state = 5}, + [4778] = {.lex_state = 405, .external_lex_state = 2}, + [4779] = {.lex_state = 65, .external_lex_state = 2}, + [4780] = {.lex_state = 65, .external_lex_state = 2}, + [4781] = {.lex_state = 50, .external_lex_state = 2}, + [4782] = {.lex_state = 405, .external_lex_state = 5}, + [4783] = {.lex_state = 405, .external_lex_state = 5}, + [4784] = {.lex_state = 405, .external_lex_state = 7}, + [4785] = {.lex_state = 405, .external_lex_state = 7}, + [4786] = {.lex_state = 405, .external_lex_state = 6}, + [4787] = {.lex_state = 405, .external_lex_state = 5}, + [4788] = {.lex_state = 65, .external_lex_state = 2}, + [4789] = {.lex_state = 405, .external_lex_state = 6}, + [4790] = {.lex_state = 405, .external_lex_state = 7}, [4791] = {.lex_state = 48, .external_lex_state = 2}, - [4792] = {.lex_state = 406, .external_lex_state = 6}, + [4792] = {.lex_state = 65, .external_lex_state = 2}, [4793] = {.lex_state = 65, .external_lex_state = 2}, - [4794] = {.lex_state = 81, .external_lex_state = 2}, - [4795] = {.lex_state = 406, .external_lex_state = 2}, + [4794] = {.lex_state = 48, .external_lex_state = 2}, + [4795] = {.lex_state = 50, .external_lex_state = 2}, [4796] = {.lex_state = 48, .external_lex_state = 2}, - [4797] = {.lex_state = 406, .external_lex_state = 5}, - [4798] = {.lex_state = 406, .external_lex_state = 6}, - [4799] = {.lex_state = 48, .external_lex_state = 2}, + [4797] = {.lex_state = 405, .external_lex_state = 5}, + [4798] = {.lex_state = 50, .external_lex_state = 2}, + [4799] = {.lex_state = 405, .external_lex_state = 6}, [4800] = {.lex_state = 50, .external_lex_state = 2}, [4801] = {.lex_state = 48, .external_lex_state = 2}, [4802] = {.lex_state = 50, .external_lex_state = 2}, - [4803] = {.lex_state = 48, .external_lex_state = 2}, - [4804] = {.lex_state = 406, .external_lex_state = 6}, - [4805] = {.lex_state = 406, .external_lex_state = 6}, + [4803] = {.lex_state = 405, .external_lex_state = 2}, + [4804] = {.lex_state = 405, .external_lex_state = 7}, + [4805] = {.lex_state = 50, .external_lex_state = 2}, [4806] = {.lex_state = 50, .external_lex_state = 2}, - [4807] = {.lex_state = 48, .external_lex_state = 2}, - [4808] = {.lex_state = 48, .external_lex_state = 2}, - [4809] = {.lex_state = 65, .external_lex_state = 2}, - [4810] = {.lex_state = 48, .external_lex_state = 2}, - [4811] = {.lex_state = 50, .external_lex_state = 2}, - [4812] = {.lex_state = 50, .external_lex_state = 2}, - [4813] = {.lex_state = 50, .external_lex_state = 2}, - [4814] = {.lex_state = 406, .external_lex_state = 2}, - [4815] = {.lex_state = 406, .external_lex_state = 6}, - [4816] = {.lex_state = 48, .external_lex_state = 2}, + [4807] = {.lex_state = 50, .external_lex_state = 2}, + [4808] = {.lex_state = 405, .external_lex_state = 2}, + [4809] = {.lex_state = 50, .external_lex_state = 2}, + [4810] = {.lex_state = 50, .external_lex_state = 2}, + [4811] = {.lex_state = 48, .external_lex_state = 2}, + [4812] = {.lex_state = 405, .external_lex_state = 2}, + [4813] = {.lex_state = 405, .external_lex_state = 2}, + [4814] = {.lex_state = 405, .external_lex_state = 2}, + [4815] = {.lex_state = 50, .external_lex_state = 2}, + [4816] = {.lex_state = 75, .external_lex_state = 2}, [4817] = {.lex_state = 50, .external_lex_state = 2}, - [4818] = {.lex_state = 406, .external_lex_state = 7}, - [4819] = {.lex_state = 406, .external_lex_state = 6}, - [4820] = {.lex_state = 48, .external_lex_state = 2}, - [4821] = {.lex_state = 48, .external_lex_state = 2}, - [4822] = {.lex_state = 48, .external_lex_state = 2}, - [4823] = {.lex_state = 48, .external_lex_state = 2}, - [4824] = {.lex_state = 50, .external_lex_state = 2}, - [4825] = {.lex_state = 48, .external_lex_state = 2}, - [4826] = {.lex_state = 48, .external_lex_state = 2}, - [4827] = {.lex_state = 406, .external_lex_state = 7}, + [4818] = {.lex_state = 50, .external_lex_state = 2}, + [4819] = {.lex_state = 50, .external_lex_state = 2}, + [4820] = {.lex_state = 405, .external_lex_state = 6}, + [4821] = {.lex_state = 65, .external_lex_state = 2}, + [4822] = {.lex_state = 50, .external_lex_state = 2}, + [4823] = {.lex_state = 50, .external_lex_state = 2}, + [4824] = {.lex_state = 48, .external_lex_state = 2}, + [4825] = {.lex_state = 50, .external_lex_state = 2}, + [4826] = {.lex_state = 50, .external_lex_state = 2}, + [4827] = {.lex_state = 405, .external_lex_state = 5}, [4828] = {.lex_state = 65, .external_lex_state = 2}, - [4829] = {.lex_state = 48, .external_lex_state = 2}, - [4830] = {.lex_state = 48, .external_lex_state = 2}, + [4829] = {.lex_state = 65, .external_lex_state = 2}, + [4830] = {.lex_state = 65, .external_lex_state = 2}, [4831] = {.lex_state = 65, .external_lex_state = 2}, - [4832] = {.lex_state = 81, .external_lex_state = 2}, - [4833] = {.lex_state = 406, .external_lex_state = 2}, - [4834] = {.lex_state = 65, .external_lex_state = 2}, - [4835] = {.lex_state = 50, .external_lex_state = 2}, + [4832] = {.lex_state = 65, .external_lex_state = 2}, + [4833] = {.lex_state = 48, .external_lex_state = 2}, + [4834] = {.lex_state = 48, .external_lex_state = 2}, + [4835] = {.lex_state = 405, .external_lex_state = 6}, [4836] = {.lex_state = 48, .external_lex_state = 2}, - [4837] = {.lex_state = 406, .external_lex_state = 2}, - [4838] = {.lex_state = 406, .external_lex_state = 2}, - [4839] = {.lex_state = 406, .external_lex_state = 6}, - [4840] = {.lex_state = 406, .external_lex_state = 2}, - [4841] = {.lex_state = 406, .external_lex_state = 2}, - [4842] = {.lex_state = 50, .external_lex_state = 2}, + [4837] = {.lex_state = 65, .external_lex_state = 2}, + [4838] = {.lex_state = 48, .external_lex_state = 2}, + [4839] = {.lex_state = 48, .external_lex_state = 2}, + [4840] = {.lex_state = 405, .external_lex_state = 6}, + [4841] = {.lex_state = 48, .external_lex_state = 2}, + [4842] = {.lex_state = 48, .external_lex_state = 2}, [4843] = {.lex_state = 48, .external_lex_state = 2}, - [4844] = {.lex_state = 48, .external_lex_state = 2}, - [4845] = {.lex_state = 406, .external_lex_state = 5}, - [4846] = {.lex_state = 406, .external_lex_state = 5}, - [4847] = {.lex_state = 406, .external_lex_state = 5}, + [4844] = {.lex_state = 50, .external_lex_state = 2}, + [4845] = {.lex_state = 81, .external_lex_state = 2}, + [4846] = {.lex_state = 405, .external_lex_state = 5}, + [4847] = {.lex_state = 405, .external_lex_state = 5}, [4848] = {.lex_state = 48, .external_lex_state = 2}, - [4849] = {.lex_state = 406, .external_lex_state = 5}, - [4850] = {.lex_state = 48, .external_lex_state = 2}, - [4851] = {.lex_state = 406, .external_lex_state = 5}, - [4852] = {.lex_state = 406, .external_lex_state = 5}, - [4853] = {.lex_state = 406, .external_lex_state = 5}, - [4854] = {.lex_state = 48, .external_lex_state = 2}, - [4855] = {.lex_state = 406, .external_lex_state = 5}, + [4849] = {.lex_state = 405, .external_lex_state = 5}, + [4850] = {.lex_state = 405, .external_lex_state = 5}, + [4851] = {.lex_state = 48, .external_lex_state = 2}, + [4852] = {.lex_state = 405, .external_lex_state = 2}, + [4853] = {.lex_state = 405, .external_lex_state = 5}, + [4854] = {.lex_state = 405, .external_lex_state = 8}, + [4855] = {.lex_state = 405, .external_lex_state = 5}, [4856] = {.lex_state = 48, .external_lex_state = 2}, - [4857] = {.lex_state = 406, .external_lex_state = 5}, - [4858] = {.lex_state = 406, .external_lex_state = 5}, - [4859] = {.lex_state = 406, .external_lex_state = 5}, - [4860] = {.lex_state = 406, .external_lex_state = 5}, + [4857] = {.lex_state = 405, .external_lex_state = 5}, + [4858] = {.lex_state = 405, .external_lex_state = 5}, + [4859] = {.lex_state = 48, .external_lex_state = 2}, + [4860] = {.lex_state = 48, .external_lex_state = 2}, [4861] = {.lex_state = 48, .external_lex_state = 2}, - [4862] = {.lex_state = 406, .external_lex_state = 5}, - [4863] = {.lex_state = 406, .external_lex_state = 5}, - [4864] = {.lex_state = 48, .external_lex_state = 2}, - [4865] = {.lex_state = 48, .external_lex_state = 2}, - [4866] = {.lex_state = 406, .external_lex_state = 5}, - [4867] = {.lex_state = 406, .external_lex_state = 5}, - [4868] = {.lex_state = 406, .external_lex_state = 5}, + [4862] = {.lex_state = 405, .external_lex_state = 6}, + [4863] = {.lex_state = 48, .external_lex_state = 2}, + [4864] = {.lex_state = 405, .external_lex_state = 5}, + [4865] = {.lex_state = 405, .external_lex_state = 5}, + [4866] = {.lex_state = 405, .external_lex_state = 5}, + [4867] = {.lex_state = 405, .external_lex_state = 5}, + [4868] = {.lex_state = 405, .external_lex_state = 5}, [4869] = {.lex_state = 48, .external_lex_state = 2}, - [4870] = {.lex_state = 406, .external_lex_state = 5}, - [4871] = {.lex_state = 406, .external_lex_state = 8}, - [4872] = {.lex_state = 75, .external_lex_state = 2}, + [4870] = {.lex_state = 48, .external_lex_state = 2}, + [4871] = {.lex_state = 48, .external_lex_state = 2}, + [4872] = {.lex_state = 48, .external_lex_state = 2}, [4873] = {.lex_state = 48, .external_lex_state = 2}, - [4874] = {.lex_state = 406, .external_lex_state = 5}, - [4875] = {.lex_state = 406, .external_lex_state = 2}, - [4876] = {.lex_state = 48, .external_lex_state = 2}, - [4877] = {.lex_state = 406, .external_lex_state = 5}, - [4878] = {.lex_state = 406, .external_lex_state = 5}, - [4879] = {.lex_state = 406, .external_lex_state = 5}, - [4880] = {.lex_state = 406, .external_lex_state = 5}, - [4881] = {.lex_state = 406, .external_lex_state = 5}, - [4882] = {.lex_state = 75, .external_lex_state = 2}, - [4883] = {.lex_state = 406, .external_lex_state = 5}, - [4884] = {.lex_state = 406, .external_lex_state = 5}, - [4885] = {.lex_state = 406, .external_lex_state = 6}, - [4886] = {.lex_state = 406, .external_lex_state = 2}, + [4874] = {.lex_state = 48, .external_lex_state = 2}, + [4875] = {.lex_state = 405, .external_lex_state = 6}, + [4876] = {.lex_state = 405, .external_lex_state = 5}, + [4877] = {.lex_state = 405, .external_lex_state = 5}, + [4878] = {.lex_state = 405, .external_lex_state = 8}, + [4879] = {.lex_state = 48, .external_lex_state = 2}, + [4880] = {.lex_state = 48, .external_lex_state = 2}, + [4881] = {.lex_state = 405, .external_lex_state = 5}, + [4882] = {.lex_state = 405, .external_lex_state = 5}, + [4883] = {.lex_state = 405, .external_lex_state = 5}, + [4884] = {.lex_state = 405, .external_lex_state = 5}, + [4885] = {.lex_state = 405, .external_lex_state = 5}, + [4886] = {.lex_state = 405, .external_lex_state = 5}, [4887] = {.lex_state = 48, .external_lex_state = 2}, - [4888] = {.lex_state = 406, .external_lex_state = 5}, - [4889] = {.lex_state = 406, .external_lex_state = 5}, - [4890] = {.lex_state = 406, .external_lex_state = 5}, - [4891] = {.lex_state = 75, .external_lex_state = 2}, - [4892] = {.lex_state = 406, .external_lex_state = 5}, - [4893] = {.lex_state = 406, .external_lex_state = 5}, - [4894] = {.lex_state = 406, .external_lex_state = 5}, - [4895] = {.lex_state = 406, .external_lex_state = 5}, - [4896] = {.lex_state = 48, .external_lex_state = 2}, - [4897] = {.lex_state = 406, .external_lex_state = 5}, - [4898] = {.lex_state = 406, .external_lex_state = 5}, - [4899] = {.lex_state = 48, .external_lex_state = 2}, - [4900] = {.lex_state = 81, .external_lex_state = 2}, - [4901] = {.lex_state = 406, .external_lex_state = 5}, - [4902] = {.lex_state = 406, .external_lex_state = 5}, - [4903] = {.lex_state = 406, .external_lex_state = 5}, - [4904] = {.lex_state = 406, .external_lex_state = 5}, - [4905] = {.lex_state = 406, .external_lex_state = 5}, - [4906] = {.lex_state = 406, .external_lex_state = 5}, - [4907] = {.lex_state = 48, .external_lex_state = 2}, - [4908] = {.lex_state = 406, .external_lex_state = 5}, - [4909] = {.lex_state = 406, .external_lex_state = 8}, - [4910] = {.lex_state = 406, .external_lex_state = 5}, - [4911] = {.lex_state = 406, .external_lex_state = 5}, - [4912] = {.lex_state = 406, .external_lex_state = 5}, - [4913] = {.lex_state = 48, .external_lex_state = 2}, - [4914] = {.lex_state = 48, .external_lex_state = 2}, - [4915] = {.lex_state = 406, .external_lex_state = 5}, - [4916] = {.lex_state = 406, .external_lex_state = 5}, - [4917] = {.lex_state = 406, .external_lex_state = 5}, - [4918] = {.lex_state = 48, .external_lex_state = 2}, + [4888] = {.lex_state = 405, .external_lex_state = 5}, + [4889] = {.lex_state = 48, .external_lex_state = 2}, + [4890] = {.lex_state = 405, .external_lex_state = 5}, + [4891] = {.lex_state = 405, .external_lex_state = 5}, + [4892] = {.lex_state = 405, .external_lex_state = 2}, + [4893] = {.lex_state = 405, .external_lex_state = 5}, + [4894] = {.lex_state = 405, .external_lex_state = 5}, + [4895] = {.lex_state = 405, .external_lex_state = 2}, + [4896] = {.lex_state = 49, .external_lex_state = 2}, + [4897] = {.lex_state = 405, .external_lex_state = 5}, + [4898] = {.lex_state = 48, .external_lex_state = 2}, + [4899] = {.lex_state = 405, .external_lex_state = 5}, + [4900] = {.lex_state = 48, .external_lex_state = 2}, + [4901] = {.lex_state = 405, .external_lex_state = 5}, + [4902] = {.lex_state = 405, .external_lex_state = 5}, + [4903] = {.lex_state = 75, .external_lex_state = 2}, + [4904] = {.lex_state = 405, .external_lex_state = 5}, + [4905] = {.lex_state = 48, .external_lex_state = 2}, + [4906] = {.lex_state = 48, .external_lex_state = 2}, + [4907] = {.lex_state = 405, .external_lex_state = 5}, + [4908] = {.lex_state = 405, .external_lex_state = 5}, + [4909] = {.lex_state = 405, .external_lex_state = 5}, + [4910] = {.lex_state = 405, .external_lex_state = 5}, + [4911] = {.lex_state = 405, .external_lex_state = 5}, + [4912] = {.lex_state = 48, .external_lex_state = 2}, + [4913] = {.lex_state = 49, .external_lex_state = 2}, + [4914] = {.lex_state = 63, .external_lex_state = 2}, + [4915] = {.lex_state = 405, .external_lex_state = 5}, + [4916] = {.lex_state = 405, .external_lex_state = 2}, + [4917] = {.lex_state = 48, .external_lex_state = 2}, + [4918] = {.lex_state = 405, .external_lex_state = 5}, [4919] = {.lex_state = 48, .external_lex_state = 2}, - [4920] = {.lex_state = 406, .external_lex_state = 5}, - [4921] = {.lex_state = 48, .external_lex_state = 2}, - [4922] = {.lex_state = 48, .external_lex_state = 2}, - [4923] = {.lex_state = 406, .external_lex_state = 5}, - [4924] = {.lex_state = 48, .external_lex_state = 2}, - [4925] = {.lex_state = 406, .external_lex_state = 5}, - [4926] = {.lex_state = 406, .external_lex_state = 5}, - [4927] = {.lex_state = 406, .external_lex_state = 5}, - [4928] = {.lex_state = 48, .external_lex_state = 2}, - [4929] = {.lex_state = 406, .external_lex_state = 5}, - [4930] = {.lex_state = 48, .external_lex_state = 2}, - [4931] = {.lex_state = 406, .external_lex_state = 2}, - [4932] = {.lex_state = 406, .external_lex_state = 5}, - [4933] = {.lex_state = 406, .external_lex_state = 6}, - [4934] = {.lex_state = 48, .external_lex_state = 2}, - [4935] = {.lex_state = 406, .external_lex_state = 5}, - [4936] = {.lex_state = 406, .external_lex_state = 5}, - [4937] = {.lex_state = 81, .external_lex_state = 2}, - [4938] = {.lex_state = 48, .external_lex_state = 2}, - [4939] = {.lex_state = 406, .external_lex_state = 5}, - [4940] = {.lex_state = 406, .external_lex_state = 5}, - [4941] = {.lex_state = 48, .external_lex_state = 2}, - [4942] = {.lex_state = 406, .external_lex_state = 5}, - [4943] = {.lex_state = 406, .external_lex_state = 5}, - [4944] = {.lex_state = 406, .external_lex_state = 2}, - [4945] = {.lex_state = 406, .external_lex_state = 5}, - [4946] = {.lex_state = 406, .external_lex_state = 5}, - [4947] = {.lex_state = 406, .external_lex_state = 5}, - [4948] = {.lex_state = 406, .external_lex_state = 5}, - [4949] = {.lex_state = 406, .external_lex_state = 5}, - [4950] = {.lex_state = 75, .external_lex_state = 2}, - [4951] = {.lex_state = 406, .external_lex_state = 5}, - [4952] = {.lex_state = 406, .external_lex_state = 5}, - [4953] = {.lex_state = 406, .external_lex_state = 5}, - [4954] = {.lex_state = 81, .external_lex_state = 2}, - [4955] = {.lex_state = 406, .external_lex_state = 2}, - [4956] = {.lex_state = 406, .external_lex_state = 5}, - [4957] = {.lex_state = 406, .external_lex_state = 5}, - [4958] = {.lex_state = 406, .external_lex_state = 2}, - [4959] = {.lex_state = 406, .external_lex_state = 5}, - [4960] = {.lex_state = 406, .external_lex_state = 6}, - [4961] = {.lex_state = 406, .external_lex_state = 5}, - [4962] = {.lex_state = 48, .external_lex_state = 2}, - [4963] = {.lex_state = 406, .external_lex_state = 5}, - [4964] = {.lex_state = 406, .external_lex_state = 5}, - [4965] = {.lex_state = 406, .external_lex_state = 5}, - [4966] = {.lex_state = 406, .external_lex_state = 5}, - [4967] = {.lex_state = 81, .external_lex_state = 2}, - [4968] = {.lex_state = 406, .external_lex_state = 5}, - [4969] = {.lex_state = 406, .external_lex_state = 5}, - [4970] = {.lex_state = 81, .external_lex_state = 2}, - [4971] = {.lex_state = 406, .external_lex_state = 5}, - [4972] = {.lex_state = 81, .external_lex_state = 2}, - [4973] = {.lex_state = 406, .external_lex_state = 5}, - [4974] = {.lex_state = 81, .external_lex_state = 2}, - [4975] = {.lex_state = 406, .external_lex_state = 5}, - [4976] = {.lex_state = 50, .external_lex_state = 2}, - [4977] = {.lex_state = 406, .external_lex_state = 5}, - [4978] = {.lex_state = 81, .external_lex_state = 2}, - [4979] = {.lex_state = 48, .external_lex_state = 2}, + [4920] = {.lex_state = 405, .external_lex_state = 5}, + [4921] = {.lex_state = 405, .external_lex_state = 2}, + [4922] = {.lex_state = 405, .external_lex_state = 5}, + [4923] = {.lex_state = 405, .external_lex_state = 2}, + [4924] = {.lex_state = 405, .external_lex_state = 2}, + [4925] = {.lex_state = 81, .external_lex_state = 2}, + [4926] = {.lex_state = 405, .external_lex_state = 2}, + [4927] = {.lex_state = 405, .external_lex_state = 5}, + [4928] = {.lex_state = 405, .external_lex_state = 2}, + [4929] = {.lex_state = 405, .external_lex_state = 5}, + [4930] = {.lex_state = 81, .external_lex_state = 2}, + [4931] = {.lex_state = 405, .external_lex_state = 5}, + [4932] = {.lex_state = 405, .external_lex_state = 2}, + [4933] = {.lex_state = 405, .external_lex_state = 5}, + [4934] = {.lex_state = 405, .external_lex_state = 5}, + [4935] = {.lex_state = 405, .external_lex_state = 5}, + [4936] = {.lex_state = 48, .external_lex_state = 2}, + [4937] = {.lex_state = 405, .external_lex_state = 2}, + [4938] = {.lex_state = 405, .external_lex_state = 5}, + [4939] = {.lex_state = 48, .external_lex_state = 2}, + [4940] = {.lex_state = 405, .external_lex_state = 5}, + [4941] = {.lex_state = 405, .external_lex_state = 5}, + [4942] = {.lex_state = 405, .external_lex_state = 5}, + [4943] = {.lex_state = 48, .external_lex_state = 2}, + [4944] = {.lex_state = 405, .external_lex_state = 5}, + [4945] = {.lex_state = 50, .external_lex_state = 2}, + [4946] = {.lex_state = 48, .external_lex_state = 2}, + [4947] = {.lex_state = 405, .external_lex_state = 2}, + [4948] = {.lex_state = 405, .external_lex_state = 5}, + [4949] = {.lex_state = 48, .external_lex_state = 2}, + [4950] = {.lex_state = 48, .external_lex_state = 2}, + [4951] = {.lex_state = 405, .external_lex_state = 5}, + [4952] = {.lex_state = 405, .external_lex_state = 6}, + [4953] = {.lex_state = 405, .external_lex_state = 5}, + [4954] = {.lex_state = 405, .external_lex_state = 5}, + [4955] = {.lex_state = 48, .external_lex_state = 5}, + [4956] = {.lex_state = 405, .external_lex_state = 5}, + [4957] = {.lex_state = 405, .external_lex_state = 6}, + [4958] = {.lex_state = 48, .external_lex_state = 5}, + [4959] = {.lex_state = 405, .external_lex_state = 2}, + [4960] = {.lex_state = 405, .external_lex_state = 5}, + [4961] = {.lex_state = 48, .external_lex_state = 2}, + [4962] = {.lex_state = 405, .external_lex_state = 5}, + [4963] = {.lex_state = 48, .external_lex_state = 2}, + [4964] = {.lex_state = 405, .external_lex_state = 5}, + [4965] = {.lex_state = 48, .external_lex_state = 2}, + [4966] = {.lex_state = 405, .external_lex_state = 5}, + [4967] = {.lex_state = 48, .external_lex_state = 2}, + [4968] = {.lex_state = 48, .external_lex_state = 2}, + [4969] = {.lex_state = 405, .external_lex_state = 5}, + [4970] = {.lex_state = 405, .external_lex_state = 5}, + [4971] = {.lex_state = 48, .external_lex_state = 2}, + [4972] = {.lex_state = 48, .external_lex_state = 5}, + [4973] = {.lex_state = 405, .external_lex_state = 2}, + [4974] = {.lex_state = 405, .external_lex_state = 5}, + [4975] = {.lex_state = 49, .external_lex_state = 5}, + [4976] = {.lex_state = 49, .external_lex_state = 5}, + [4977] = {.lex_state = 405, .external_lex_state = 5}, + [4978] = {.lex_state = 48, .external_lex_state = 2}, + [4979] = {.lex_state = 405, .external_lex_state = 5}, [4980] = {.lex_state = 48, .external_lex_state = 2}, - [4981] = {.lex_state = 406, .external_lex_state = 6}, - [4982] = {.lex_state = 48, .external_lex_state = 5}, - [4983] = {.lex_state = 406, .external_lex_state = 5}, - [4984] = {.lex_state = 406, .external_lex_state = 5}, + [4981] = {.lex_state = 405, .external_lex_state = 5}, + [4982] = {.lex_state = 48, .external_lex_state = 2}, + [4983] = {.lex_state = 405, .external_lex_state = 5}, + [4984] = {.lex_state = 405, .external_lex_state = 8}, [4985] = {.lex_state = 48, .external_lex_state = 2}, - [4986] = {.lex_state = 406, .external_lex_state = 5}, - [4987] = {.lex_state = 406, .external_lex_state = 2}, - [4988] = {.lex_state = 48, .external_lex_state = 5}, - [4989] = {.lex_state = 406, .external_lex_state = 5}, - [4990] = {.lex_state = 406, .external_lex_state = 5}, - [4991] = {.lex_state = 406, .external_lex_state = 2}, - [4992] = {.lex_state = 406, .external_lex_state = 5}, - [4993] = {.lex_state = 406, .external_lex_state = 5}, - [4994] = {.lex_state = 406, .external_lex_state = 5}, - [4995] = {.lex_state = 406, .external_lex_state = 5}, - [4996] = {.lex_state = 406, .external_lex_state = 5}, - [4997] = {.lex_state = 406, .external_lex_state = 5}, + [4986] = {.lex_state = 405, .external_lex_state = 5}, + [4987] = {.lex_state = 48, .external_lex_state = 2}, + [4988] = {.lex_state = 405, .external_lex_state = 5}, + [4989] = {.lex_state = 405, .external_lex_state = 5}, + [4990] = {.lex_state = 405, .external_lex_state = 5}, + [4991] = {.lex_state = 405, .external_lex_state = 6}, + [4992] = {.lex_state = 48, .external_lex_state = 2}, + [4993] = {.lex_state = 405, .external_lex_state = 5}, + [4994] = {.lex_state = 48, .external_lex_state = 2}, + [4995] = {.lex_state = 405, .external_lex_state = 5}, + [4996] = {.lex_state = 405, .external_lex_state = 5}, + [4997] = {.lex_state = 405, .external_lex_state = 5}, [4998] = {.lex_state = 48, .external_lex_state = 2}, - [4999] = {.lex_state = 48, .external_lex_state = 2}, + [4999] = {.lex_state = 405, .external_lex_state = 5}, [5000] = {.lex_state = 48, .external_lex_state = 2}, - [5001] = {.lex_state = 406, .external_lex_state = 5}, - [5002] = {.lex_state = 406, .external_lex_state = 5}, + [5001] = {.lex_state = 405, .external_lex_state = 5}, + [5002] = {.lex_state = 48, .external_lex_state = 2}, [5003] = {.lex_state = 48, .external_lex_state = 2}, - [5004] = {.lex_state = 81, .external_lex_state = 2}, - [5005] = {.lex_state = 406, .external_lex_state = 5}, - [5006] = {.lex_state = 48, .external_lex_state = 2}, + [5004] = {.lex_state = 405, .external_lex_state = 2}, + [5005] = {.lex_state = 405, .external_lex_state = 5}, + [5006] = {.lex_state = 405, .external_lex_state = 5}, [5007] = {.lex_state = 48, .external_lex_state = 2}, - [5008] = {.lex_state = 406, .external_lex_state = 5}, - [5009] = {.lex_state = 48, .external_lex_state = 2}, - [5010] = {.lex_state = 406, .external_lex_state = 5}, - [5011] = {.lex_state = 48, .external_lex_state = 2}, - [5012] = {.lex_state = 81, .external_lex_state = 2}, - [5013] = {.lex_state = 48, .external_lex_state = 2}, - [5014] = {.lex_state = 48, .external_lex_state = 2}, + [5008] = {.lex_state = 405, .external_lex_state = 5}, + [5009] = {.lex_state = 405, .external_lex_state = 5}, + [5010] = {.lex_state = 405, .external_lex_state = 5}, + [5011] = {.lex_state = 405, .external_lex_state = 5}, + [5012] = {.lex_state = 405, .external_lex_state = 5}, + [5013] = {.lex_state = 405, .external_lex_state = 2}, + [5014] = {.lex_state = 405, .external_lex_state = 6}, [5015] = {.lex_state = 48, .external_lex_state = 2}, - [5016] = {.lex_state = 48, .external_lex_state = 2}, + [5016] = {.lex_state = 405, .external_lex_state = 5}, [5017] = {.lex_state = 48, .external_lex_state = 2}, - [5018] = {.lex_state = 406, .external_lex_state = 5}, - [5019] = {.lex_state = 406, .external_lex_state = 5}, - [5020] = {.lex_state = 406, .external_lex_state = 8}, - [5021] = {.lex_state = 406, .external_lex_state = 5}, - [5022] = {.lex_state = 48, .external_lex_state = 2}, - [5023] = {.lex_state = 406, .external_lex_state = 5}, - [5024] = {.lex_state = 406, .external_lex_state = 5}, - [5025] = {.lex_state = 406, .external_lex_state = 5}, - [5026] = {.lex_state = 81, .external_lex_state = 2}, + [5018] = {.lex_state = 405, .external_lex_state = 5}, + [5019] = {.lex_state = 48, .external_lex_state = 5}, + [5020] = {.lex_state = 405, .external_lex_state = 5}, + [5021] = {.lex_state = 405, .external_lex_state = 5}, + [5022] = {.lex_state = 405, .external_lex_state = 5}, + [5023] = {.lex_state = 48, .external_lex_state = 2}, + [5024] = {.lex_state = 405, .external_lex_state = 6}, + [5025] = {.lex_state = 405, .external_lex_state = 5}, + [5026] = {.lex_state = 405, .external_lex_state = 6}, [5027] = {.lex_state = 48, .external_lex_state = 2}, [5028] = {.lex_state = 48, .external_lex_state = 2}, - [5029] = {.lex_state = 48, .external_lex_state = 2}, - [5030] = {.lex_state = 406, .external_lex_state = 5}, - [5031] = {.lex_state = 406, .external_lex_state = 5}, - [5032] = {.lex_state = 48, .external_lex_state = 2}, - [5033] = {.lex_state = 48, .external_lex_state = 2}, - [5034] = {.lex_state = 48, .external_lex_state = 2}, - [5035] = {.lex_state = 406, .external_lex_state = 6}, - [5036] = {.lex_state = 406, .external_lex_state = 5}, - [5037] = {.lex_state = 406, .external_lex_state = 2}, - [5038] = {.lex_state = 406, .external_lex_state = 5}, - [5039] = {.lex_state = 406, .external_lex_state = 6}, - [5040] = {.lex_state = 406, .external_lex_state = 5}, - [5041] = {.lex_state = 48, .external_lex_state = 2}, - [5042] = {.lex_state = 406, .external_lex_state = 5}, - [5043] = {.lex_state = 406, .external_lex_state = 6}, - [5044] = {.lex_state = 406, .external_lex_state = 5}, - [5045] = {.lex_state = 48, .external_lex_state = 2}, - [5046] = {.lex_state = 48, .external_lex_state = 5}, - [5047] = {.lex_state = 48, .external_lex_state = 2}, - [5048] = {.lex_state = 406, .external_lex_state = 5}, - [5049] = {.lex_state = 406, .external_lex_state = 5}, - [5050] = {.lex_state = 48, .external_lex_state = 2}, - [5051] = {.lex_state = 406, .external_lex_state = 5}, - [5052] = {.lex_state = 406, .external_lex_state = 5}, - [5053] = {.lex_state = 406, .external_lex_state = 5}, - [5054] = {.lex_state = 406, .external_lex_state = 5}, - [5055] = {.lex_state = 406, .external_lex_state = 5}, - [5056] = {.lex_state = 406, .external_lex_state = 5}, - [5057] = {.lex_state = 48, .external_lex_state = 2}, - [5058] = {.lex_state = 81, .external_lex_state = 2}, - [5059] = {.lex_state = 406, .external_lex_state = 5}, + [5029] = {.lex_state = 405, .external_lex_state = 5}, + [5030] = {.lex_state = 405, .external_lex_state = 5}, + [5031] = {.lex_state = 405, .external_lex_state = 5}, + [5032] = {.lex_state = 405, .external_lex_state = 5}, + [5033] = {.lex_state = 405, .external_lex_state = 5}, + [5034] = {.lex_state = 50, .external_lex_state = 2}, + [5035] = {.lex_state = 405, .external_lex_state = 5}, + [5036] = {.lex_state = 405, .external_lex_state = 6}, + [5037] = {.lex_state = 405, .external_lex_state = 5}, + [5038] = {.lex_state = 405, .external_lex_state = 5}, + [5039] = {.lex_state = 48, .external_lex_state = 2}, + [5040] = {.lex_state = 405, .external_lex_state = 5}, + [5041] = {.lex_state = 405, .external_lex_state = 5}, + [5042] = {.lex_state = 405, .external_lex_state = 5}, + [5043] = {.lex_state = 81, .external_lex_state = 2}, + [5044] = {.lex_state = 405, .external_lex_state = 5}, + [5045] = {.lex_state = 81, .external_lex_state = 2}, + [5046] = {.lex_state = 81, .external_lex_state = 2}, + [5047] = {.lex_state = 405, .external_lex_state = 5}, + [5048] = {.lex_state = 405, .external_lex_state = 5}, + [5049] = {.lex_state = 48, .external_lex_state = 2}, + [5050] = {.lex_state = 405, .external_lex_state = 6}, + [5051] = {.lex_state = 405, .external_lex_state = 5}, + [5052] = {.lex_state = 405, .external_lex_state = 5}, + [5053] = {.lex_state = 405, .external_lex_state = 2}, + [5054] = {.lex_state = 405, .external_lex_state = 5}, + [5055] = {.lex_state = 81, .external_lex_state = 2}, + [5056] = {.lex_state = 405, .external_lex_state = 2}, + [5057] = {.lex_state = 405, .external_lex_state = 5}, + [5058] = {.lex_state = 405, .external_lex_state = 5}, + [5059] = {.lex_state = 405, .external_lex_state = 5}, [5060] = {.lex_state = 48, .external_lex_state = 2}, - [5061] = {.lex_state = 48, .external_lex_state = 2}, - [5062] = {.lex_state = 48, .external_lex_state = 2}, - [5063] = {.lex_state = 48, .external_lex_state = 2}, - [5064] = {.lex_state = 81, .external_lex_state = 2}, + [5061] = {.lex_state = 405, .external_lex_state = 5}, + [5062] = {.lex_state = 405, .external_lex_state = 5}, + [5063] = {.lex_state = 405, .external_lex_state = 5}, + [5064] = {.lex_state = 405, .external_lex_state = 5}, [5065] = {.lex_state = 48, .external_lex_state = 5}, - [5066] = {.lex_state = 406, .external_lex_state = 5}, - [5067] = {.lex_state = 81, .external_lex_state = 2}, - [5068] = {.lex_state = 48, .external_lex_state = 2}, - [5069] = {.lex_state = 406, .external_lex_state = 2}, - [5070] = {.lex_state = 406, .external_lex_state = 5}, - [5071] = {.lex_state = 49, .external_lex_state = 2}, - [5072] = {.lex_state = 49, .external_lex_state = 2}, - [5073] = {.lex_state = 406, .external_lex_state = 2}, - [5074] = {.lex_state = 406, .external_lex_state = 2}, - [5075] = {.lex_state = 81, .external_lex_state = 2}, - [5076] = {.lex_state = 406, .external_lex_state = 5}, - [5077] = {.lex_state = 406, .external_lex_state = 5}, - [5078] = {.lex_state = 406, .external_lex_state = 5}, - [5079] = {.lex_state = 81, .external_lex_state = 2}, - [5080] = {.lex_state = 48, .external_lex_state = 2}, - [5081] = {.lex_state = 48, .external_lex_state = 2}, + [5066] = {.lex_state = 405, .external_lex_state = 5}, + [5067] = {.lex_state = 405, .external_lex_state = 5}, + [5068] = {.lex_state = 405, .external_lex_state = 5}, + [5069] = {.lex_state = 405, .external_lex_state = 5}, + [5070] = {.lex_state = 405, .external_lex_state = 5}, + [5071] = {.lex_state = 405, .external_lex_state = 5}, + [5072] = {.lex_state = 48, .external_lex_state = 2}, + [5073] = {.lex_state = 405, .external_lex_state = 5}, + [5074] = {.lex_state = 405, .external_lex_state = 5}, + [5075] = {.lex_state = 48, .external_lex_state = 2}, + [5076] = {.lex_state = 405, .external_lex_state = 5}, + [5077] = {.lex_state = 405, .external_lex_state = 5}, + [5078] = {.lex_state = 48, .external_lex_state = 2}, + [5079] = {.lex_state = 405, .external_lex_state = 5}, + [5080] = {.lex_state = 405, .external_lex_state = 5}, + [5081] = {.lex_state = 405, .external_lex_state = 5}, [5082] = {.lex_state = 48, .external_lex_state = 2}, - [5083] = {.lex_state = 81, .external_lex_state = 2}, - [5084] = {.lex_state = 406, .external_lex_state = 5}, - [5085] = {.lex_state = 48, .external_lex_state = 2}, - [5086] = {.lex_state = 406, .external_lex_state = 5}, - [5087] = {.lex_state = 406, .external_lex_state = 5}, - [5088] = {.lex_state = 406, .external_lex_state = 5}, - [5089] = {.lex_state = 406, .external_lex_state = 5}, - [5090] = {.lex_state = 406, .external_lex_state = 5}, - [5091] = {.lex_state = 406, .external_lex_state = 5}, - [5092] = {.lex_state = 406, .external_lex_state = 5}, + [5083] = {.lex_state = 48, .external_lex_state = 2}, + [5084] = {.lex_state = 48, .external_lex_state = 2}, + [5085] = {.lex_state = 405, .external_lex_state = 5}, + [5086] = {.lex_state = 405, .external_lex_state = 5}, + [5087] = {.lex_state = 405, .external_lex_state = 8}, + [5088] = {.lex_state = 405, .external_lex_state = 5}, + [5089] = {.lex_state = 48, .external_lex_state = 2}, + [5090] = {.lex_state = 405, .external_lex_state = 5}, + [5091] = {.lex_state = 405, .external_lex_state = 5}, + [5092] = {.lex_state = 405, .external_lex_state = 5}, [5093] = {.lex_state = 48, .external_lex_state = 2}, - [5094] = {.lex_state = 48, .external_lex_state = 2}, - [5095] = {.lex_state = 406, .external_lex_state = 5}, - [5096] = {.lex_state = 81, .external_lex_state = 2}, - [5097] = {.lex_state = 48, .external_lex_state = 2}, - [5098] = {.lex_state = 406, .external_lex_state = 5}, - [5099] = {.lex_state = 48, .external_lex_state = 5}, - [5100] = {.lex_state = 406, .external_lex_state = 5}, - [5101] = {.lex_state = 75, .external_lex_state = 2}, - [5102] = {.lex_state = 406, .external_lex_state = 2}, - [5103] = {.lex_state = 406, .external_lex_state = 5}, - [5104] = {.lex_state = 406, .external_lex_state = 5}, - [5105] = {.lex_state = 406, .external_lex_state = 5}, - [5106] = {.lex_state = 48, .external_lex_state = 2}, - [5107] = {.lex_state = 48, .external_lex_state = 2}, - [5108] = {.lex_state = 406, .external_lex_state = 8}, - [5109] = {.lex_state = 406, .external_lex_state = 5}, - [5110] = {.lex_state = 406, .external_lex_state = 5}, - [5111] = {.lex_state = 406, .external_lex_state = 6}, - [5112] = {.lex_state = 406, .external_lex_state = 5}, - [5113] = {.lex_state = 406, .external_lex_state = 5}, - [5114] = {.lex_state = 48, .external_lex_state = 2}, - [5115] = {.lex_state = 406, .external_lex_state = 5}, - [5116] = {.lex_state = 406, .external_lex_state = 5}, - [5117] = {.lex_state = 406, .external_lex_state = 5}, - [5118] = {.lex_state = 406, .external_lex_state = 5}, - [5119] = {.lex_state = 48, .external_lex_state = 2}, - [5120] = {.lex_state = 406, .external_lex_state = 5}, - [5121] = {.lex_state = 406, .external_lex_state = 5}, - [5122] = {.lex_state = 48, .external_lex_state = 2}, + [5094] = {.lex_state = 405, .external_lex_state = 5}, + [5095] = {.lex_state = 405, .external_lex_state = 5}, + [5096] = {.lex_state = 405, .external_lex_state = 5}, + [5097] = {.lex_state = 405, .external_lex_state = 5}, + [5098] = {.lex_state = 405, .external_lex_state = 5}, + [5099] = {.lex_state = 405, .external_lex_state = 5}, + [5100] = {.lex_state = 405, .external_lex_state = 5}, + [5101] = {.lex_state = 81, .external_lex_state = 2}, + [5102] = {.lex_state = 405, .external_lex_state = 5}, + [5103] = {.lex_state = 405, .external_lex_state = 5}, + [5104] = {.lex_state = 405, .external_lex_state = 5}, + [5105] = {.lex_state = 405, .external_lex_state = 5}, + [5106] = {.lex_state = 405, .external_lex_state = 5}, + [5107] = {.lex_state = 81, .external_lex_state = 2}, + [5108] = {.lex_state = 405, .external_lex_state = 5}, + [5109] = {.lex_state = 48, .external_lex_state = 2}, + [5110] = {.lex_state = 405, .external_lex_state = 5}, + [5111] = {.lex_state = 405, .external_lex_state = 5}, + [5112] = {.lex_state = 405, .external_lex_state = 5}, + [5113] = {.lex_state = 405, .external_lex_state = 2}, + [5114] = {.lex_state = 405, .external_lex_state = 5}, + [5115] = {.lex_state = 405, .external_lex_state = 5}, + [5116] = {.lex_state = 405, .external_lex_state = 5}, + [5117] = {.lex_state = 405, .external_lex_state = 5}, + [5118] = {.lex_state = 48, .external_lex_state = 5}, + [5119] = {.lex_state = 405, .external_lex_state = 2}, + [5120] = {.lex_state = 405, .external_lex_state = 5}, + [5121] = {.lex_state = 405, .external_lex_state = 5}, + [5122] = {.lex_state = 405, .external_lex_state = 5}, [5123] = {.lex_state = 48, .external_lex_state = 2}, - [5124] = {.lex_state = 48, .external_lex_state = 2}, - [5125] = {.lex_state = 406, .external_lex_state = 5}, - [5126] = {.lex_state = 406, .external_lex_state = 5}, - [5127] = {.lex_state = 81, .external_lex_state = 2}, - [5128] = {.lex_state = 50, .external_lex_state = 2}, - [5129] = {.lex_state = 406, .external_lex_state = 5}, - [5130] = {.lex_state = 406, .external_lex_state = 2}, - [5131] = {.lex_state = 406, .external_lex_state = 2}, - [5132] = {.lex_state = 406, .external_lex_state = 5}, - [5133] = {.lex_state = 406, .external_lex_state = 5}, - [5134] = {.lex_state = 406, .external_lex_state = 5}, - [5135] = {.lex_state = 406, .external_lex_state = 5}, - [5136] = {.lex_state = 406, .external_lex_state = 5}, - [5137] = {.lex_state = 48, .external_lex_state = 2}, - [5138] = {.lex_state = 406, .external_lex_state = 5}, - [5139] = {.lex_state = 48, .external_lex_state = 2}, - [5140] = {.lex_state = 406, .external_lex_state = 5}, - [5141] = {.lex_state = 81, .external_lex_state = 2}, - [5142] = {.lex_state = 48, .external_lex_state = 2}, - [5143] = {.lex_state = 48, .external_lex_state = 2}, - [5144] = {.lex_state = 48, .external_lex_state = 2}, - [5145] = {.lex_state = 406, .external_lex_state = 5}, - [5146] = {.lex_state = 406, .external_lex_state = 5}, - [5147] = {.lex_state = 406, .external_lex_state = 5}, + [5124] = {.lex_state = 405, .external_lex_state = 5}, + [5125] = {.lex_state = 405, .external_lex_state = 5}, + [5126] = {.lex_state = 405, .external_lex_state = 5}, + [5127] = {.lex_state = 75, .external_lex_state = 2}, + [5128] = {.lex_state = 405, .external_lex_state = 5}, + [5129] = {.lex_state = 405, .external_lex_state = 5}, + [5130] = {.lex_state = 405, .external_lex_state = 5}, + [5131] = {.lex_state = 405, .external_lex_state = 2}, + [5132] = {.lex_state = 48, .external_lex_state = 2}, + [5133] = {.lex_state = 81, .external_lex_state = 2}, + [5134] = {.lex_state = 48, .external_lex_state = 2}, + [5135] = {.lex_state = 405, .external_lex_state = 5}, + [5136] = {.lex_state = 48, .external_lex_state = 5}, + [5137] = {.lex_state = 405, .external_lex_state = 5}, + [5138] = {.lex_state = 405, .external_lex_state = 5}, + [5139] = {.lex_state = 405, .external_lex_state = 6}, + [5140] = {.lex_state = 405, .external_lex_state = 5}, + [5141] = {.lex_state = 405, .external_lex_state = 5}, + [5142] = {.lex_state = 75, .external_lex_state = 2}, + [5143] = {.lex_state = 75, .external_lex_state = 2}, + [5144] = {.lex_state = 405, .external_lex_state = 2}, + [5145] = {.lex_state = 81, .external_lex_state = 2}, + [5146] = {.lex_state = 48, .external_lex_state = 2}, + [5147] = {.lex_state = 405, .external_lex_state = 5}, [5148] = {.lex_state = 48, .external_lex_state = 2}, - [5149] = {.lex_state = 406, .external_lex_state = 5}, - [5150] = {.lex_state = 406, .external_lex_state = 5}, - [5151] = {.lex_state = 49, .external_lex_state = 2}, - [5152] = {.lex_state = 406, .external_lex_state = 5}, - [5153] = {.lex_state = 406, .external_lex_state = 5}, - [5154] = {.lex_state = 406, .external_lex_state = 2}, - [5155] = {.lex_state = 406, .external_lex_state = 5}, - [5156] = {.lex_state = 48, .external_lex_state = 2}, - [5157] = {.lex_state = 81, .external_lex_state = 2}, - [5158] = {.lex_state = 81, .external_lex_state = 2}, - [5159] = {.lex_state = 406, .external_lex_state = 5}, - [5160] = {.lex_state = 406, .external_lex_state = 5}, - [5161] = {.lex_state = 48, .external_lex_state = 2}, - [5162] = {.lex_state = 48, .external_lex_state = 2}, - [5163] = {.lex_state = 406, .external_lex_state = 5}, - [5164] = {.lex_state = 406, .external_lex_state = 5}, - [5165] = {.lex_state = 406, .external_lex_state = 5}, - [5166] = {.lex_state = 406, .external_lex_state = 5}, - [5167] = {.lex_state = 406, .external_lex_state = 2}, - [5168] = {.lex_state = 406, .external_lex_state = 5}, - [5169] = {.lex_state = 406, .external_lex_state = 5}, - [5170] = {.lex_state = 406, .external_lex_state = 5}, - [5171] = {.lex_state = 406, .external_lex_state = 5}, - [5172] = {.lex_state = 406, .external_lex_state = 2}, - [5173] = {.lex_state = 406, .external_lex_state = 2}, - [5174] = {.lex_state = 406, .external_lex_state = 5}, - [5175] = {.lex_state = 406, .external_lex_state = 5}, - [5176] = {.lex_state = 406, .external_lex_state = 8}, - [5177] = {.lex_state = 406, .external_lex_state = 5}, - [5178] = {.lex_state = 406, .external_lex_state = 5}, - [5179] = {.lex_state = 406, .external_lex_state = 5}, - [5180] = {.lex_state = 406, .external_lex_state = 5}, - [5181] = {.lex_state = 406, .external_lex_state = 6}, - [5182] = {.lex_state = 406, .external_lex_state = 2}, - [5183] = {.lex_state = 406, .external_lex_state = 5}, - [5184] = {.lex_state = 406, .external_lex_state = 6}, - [5185] = {.lex_state = 406, .external_lex_state = 5}, - [5186] = {.lex_state = 406, .external_lex_state = 5}, - [5187] = {.lex_state = 406, .external_lex_state = 6}, - [5188] = {.lex_state = 406, .external_lex_state = 5}, - [5189] = {.lex_state = 406, .external_lex_state = 5}, - [5190] = {.lex_state = 406, .external_lex_state = 5}, - [5191] = {.lex_state = 50, .external_lex_state = 2}, - [5192] = {.lex_state = 50, .external_lex_state = 2}, - [5193] = {.lex_state = 406, .external_lex_state = 5}, - [5194] = {.lex_state = 406, .external_lex_state = 6}, - [5195] = {.lex_state = 75, .external_lex_state = 2}, - [5196] = {.lex_state = 406, .external_lex_state = 8}, - [5197] = {.lex_state = 48, .external_lex_state = 2}, - [5198] = {.lex_state = 406, .external_lex_state = 6}, - [5199] = {.lex_state = 48, .external_lex_state = 2}, - [5200] = {.lex_state = 406, .external_lex_state = 5}, - [5201] = {.lex_state = 406, .external_lex_state = 2}, - [5202] = {.lex_state = 48, .external_lex_state = 5}, - [5203] = {.lex_state = 406, .external_lex_state = 6}, - [5204] = {.lex_state = 48, .external_lex_state = 2}, - [5205] = {.lex_state = 406, .external_lex_state = 5}, - [5206] = {.lex_state = 406, .external_lex_state = 5}, - [5207] = {.lex_state = 81, .external_lex_state = 2}, - [5208] = {.lex_state = 48, .external_lex_state = 2}, + [5149] = {.lex_state = 405, .external_lex_state = 5}, + [5150] = {.lex_state = 405, .external_lex_state = 5}, + [5151] = {.lex_state = 405, .external_lex_state = 2}, + [5152] = {.lex_state = 48, .external_lex_state = 2}, + [5153] = {.lex_state = 81, .external_lex_state = 2}, + [5154] = {.lex_state = 405, .external_lex_state = 6}, + [5155] = {.lex_state = 81, .external_lex_state = 2}, + [5156] = {.lex_state = 405, .external_lex_state = 5}, + [5157] = {.lex_state = 405, .external_lex_state = 5}, + [5158] = {.lex_state = 405, .external_lex_state = 5}, + [5159] = {.lex_state = 81, .external_lex_state = 2}, + [5160] = {.lex_state = 48, .external_lex_state = 5}, + [5161] = {.lex_state = 405, .external_lex_state = 5}, + [5162] = {.lex_state = 405, .external_lex_state = 6}, + [5163] = {.lex_state = 81, .external_lex_state = 2}, + [5164] = {.lex_state = 405, .external_lex_state = 6}, + [5165] = {.lex_state = 405, .external_lex_state = 5}, + [5166] = {.lex_state = 405, .external_lex_state = 5}, + [5167] = {.lex_state = 48, .external_lex_state = 2}, + [5168] = {.lex_state = 75, .external_lex_state = 2}, + [5169] = {.lex_state = 405, .external_lex_state = 5}, + [5170] = {.lex_state = 405, .external_lex_state = 5}, + [5171] = {.lex_state = 48, .external_lex_state = 2}, + [5172] = {.lex_state = 81, .external_lex_state = 2}, + [5173] = {.lex_state = 81, .external_lex_state = 2}, + [5174] = {.lex_state = 405, .external_lex_state = 5}, + [5175] = {.lex_state = 405, .external_lex_state = 6}, + [5176] = {.lex_state = 405, .external_lex_state = 5}, + [5177] = {.lex_state = 405, .external_lex_state = 2}, + [5178] = {.lex_state = 48, .external_lex_state = 2}, + [5179] = {.lex_state = 81, .external_lex_state = 2}, + [5180] = {.lex_state = 405, .external_lex_state = 5}, + [5181] = {.lex_state = 405, .external_lex_state = 5}, + [5182] = {.lex_state = 48, .external_lex_state = 2}, + [5183] = {.lex_state = 405, .external_lex_state = 8}, + [5184] = {.lex_state = 405, .external_lex_state = 5}, + [5185] = {.lex_state = 405, .external_lex_state = 5}, + [5186] = {.lex_state = 405, .external_lex_state = 5}, + [5187] = {.lex_state = 405, .external_lex_state = 5}, + [5188] = {.lex_state = 405, .external_lex_state = 5}, + [5189] = {.lex_state = 405, .external_lex_state = 5}, + [5190] = {.lex_state = 405, .external_lex_state = 5}, + [5191] = {.lex_state = 48, .external_lex_state = 2}, + [5192] = {.lex_state = 405, .external_lex_state = 5}, + [5193] = {.lex_state = 405, .external_lex_state = 5}, + [5194] = {.lex_state = 405, .external_lex_state = 5}, + [5195] = {.lex_state = 405, .external_lex_state = 5}, + [5196] = {.lex_state = 81, .external_lex_state = 2}, + [5197] = {.lex_state = 405, .external_lex_state = 5}, + [5198] = {.lex_state = 405, .external_lex_state = 5}, + [5199] = {.lex_state = 405, .external_lex_state = 5}, + [5200] = {.lex_state = 405, .external_lex_state = 8}, + [5201] = {.lex_state = 405, .external_lex_state = 5}, + [5202] = {.lex_state = 405, .external_lex_state = 5}, + [5203] = {.lex_state = 49, .external_lex_state = 2}, + [5204] = {.lex_state = 405, .external_lex_state = 5}, + [5205] = {.lex_state = 405, .external_lex_state = 5}, + [5206] = {.lex_state = 405, .external_lex_state = 5}, + [5207] = {.lex_state = 405, .external_lex_state = 6}, + [5208] = {.lex_state = 405, .external_lex_state = 5}, [5209] = {.lex_state = 48, .external_lex_state = 2}, - [5210] = {.lex_state = 406, .external_lex_state = 5}, - [5211] = {.lex_state = 406, .external_lex_state = 5}, - [5212] = {.lex_state = 406, .external_lex_state = 5}, - [5213] = {.lex_state = 406, .external_lex_state = 5}, - [5214] = {.lex_state = 406, .external_lex_state = 5}, - [5215] = {.lex_state = 406, .external_lex_state = 5}, - [5216] = {.lex_state = 406, .external_lex_state = 5}, - [5217] = {.lex_state = 48, .external_lex_state = 2}, - [5218] = {.lex_state = 406, .external_lex_state = 5}, - [5219] = {.lex_state = 75, .external_lex_state = 2}, - [5220] = {.lex_state = 406, .external_lex_state = 5}, - [5221] = {.lex_state = 406, .external_lex_state = 5}, - [5222] = {.lex_state = 406, .external_lex_state = 5}, - [5223] = {.lex_state = 406, .external_lex_state = 5}, - [5224] = {.lex_state = 48, .external_lex_state = 2}, - [5225] = {.lex_state = 406, .external_lex_state = 5}, - [5226] = {.lex_state = 406, .external_lex_state = 6}, - [5227] = {.lex_state = 48, .external_lex_state = 5}, - [5228] = {.lex_state = 406, .external_lex_state = 5}, - [5229] = {.lex_state = 406, .external_lex_state = 5}, - [5230] = {.lex_state = 406, .external_lex_state = 5}, - [5231] = {.lex_state = 406, .external_lex_state = 5}, - [5232] = {.lex_state = 406, .external_lex_state = 2}, + [5210] = {.lex_state = 405, .external_lex_state = 5}, + [5211] = {.lex_state = 405, .external_lex_state = 5}, + [5212] = {.lex_state = 81, .external_lex_state = 2}, + [5213] = {.lex_state = 81, .external_lex_state = 2}, + [5214] = {.lex_state = 405, .external_lex_state = 5}, + [5215] = {.lex_state = 405, .external_lex_state = 5}, + [5216] = {.lex_state = 405, .external_lex_state = 5}, + [5217] = {.lex_state = 48, .external_lex_state = 5}, + [5218] = {.lex_state = 48, .external_lex_state = 2}, + [5219] = {.lex_state = 405, .external_lex_state = 5}, + [5220] = {.lex_state = 405, .external_lex_state = 2}, + [5221] = {.lex_state = 405, .external_lex_state = 5}, + [5222] = {.lex_state = 405, .external_lex_state = 5}, + [5223] = {.lex_state = 405, .external_lex_state = 2}, + [5224] = {.lex_state = 75, .external_lex_state = 2}, + [5225] = {.lex_state = 405, .external_lex_state = 5}, + [5226] = {.lex_state = 405, .external_lex_state = 5}, + [5227] = {.lex_state = 48, .external_lex_state = 2}, + [5228] = {.lex_state = 48, .external_lex_state = 2}, + [5229] = {.lex_state = 48, .external_lex_state = 2}, + [5230] = {.lex_state = 405, .external_lex_state = 5}, + [5231] = {.lex_state = 405, .external_lex_state = 5}, + [5232] = {.lex_state = 405, .external_lex_state = 5}, [5233] = {.lex_state = 48, .external_lex_state = 5}, - [5234] = {.lex_state = 406, .external_lex_state = 5}, - [5235] = {.lex_state = 406, .external_lex_state = 5}, - [5236] = {.lex_state = 406, .external_lex_state = 5}, - [5237] = {.lex_state = 406, .external_lex_state = 5}, - [5238] = {.lex_state = 406, .external_lex_state = 5}, - [5239] = {.lex_state = 49, .external_lex_state = 5}, - [5240] = {.lex_state = 406, .external_lex_state = 5}, - [5241] = {.lex_state = 406, .external_lex_state = 5}, - [5242] = {.lex_state = 406, .external_lex_state = 5}, - [5243] = {.lex_state = 406, .external_lex_state = 5}, - [5244] = {.lex_state = 48, .external_lex_state = 5}, - [5245] = {.lex_state = 406, .external_lex_state = 2}, - [5246] = {.lex_state = 406, .external_lex_state = 5}, - [5247] = {.lex_state = 406, .external_lex_state = 6}, - [5248] = {.lex_state = 406, .external_lex_state = 5}, - [5249] = {.lex_state = 406, .external_lex_state = 5}, - [5250] = {.lex_state = 81, .external_lex_state = 2}, - [5251] = {.lex_state = 406, .external_lex_state = 5}, - [5252] = {.lex_state = 406, .external_lex_state = 2}, - [5253] = {.lex_state = 81, .external_lex_state = 2}, - [5254] = {.lex_state = 406, .external_lex_state = 6}, - [5255] = {.lex_state = 406, .external_lex_state = 5}, - [5256] = {.lex_state = 406, .external_lex_state = 8}, - [5257] = {.lex_state = 406, .external_lex_state = 5}, - [5258] = {.lex_state = 406, .external_lex_state = 5}, + [5234] = {.lex_state = 405, .external_lex_state = 5}, + [5235] = {.lex_state = 48, .external_lex_state = 2}, + [5236] = {.lex_state = 405, .external_lex_state = 6}, + [5237] = {.lex_state = 405, .external_lex_state = 5}, + [5238] = {.lex_state = 48, .external_lex_state = 2}, + [5239] = {.lex_state = 405, .external_lex_state = 5}, + [5240] = {.lex_state = 405, .external_lex_state = 2}, + [5241] = {.lex_state = 405, .external_lex_state = 5}, + [5242] = {.lex_state = 405, .external_lex_state = 5}, + [5243] = {.lex_state = 405, .external_lex_state = 5}, + [5244] = {.lex_state = 405, .external_lex_state = 6}, + [5245] = {.lex_state = 405, .external_lex_state = 5}, + [5246] = {.lex_state = 405, .external_lex_state = 5}, + [5247] = {.lex_state = 405, .external_lex_state = 5}, + [5248] = {.lex_state = 405, .external_lex_state = 8}, + [5249] = {.lex_state = 405, .external_lex_state = 5}, + [5250] = {.lex_state = 405, .external_lex_state = 2}, + [5251] = {.lex_state = 405, .external_lex_state = 5}, + [5252] = {.lex_state = 405, .external_lex_state = 5}, + [5253] = {.lex_state = 405, .external_lex_state = 5}, + [5254] = {.lex_state = 405, .external_lex_state = 5}, + [5255] = {.lex_state = 48, .external_lex_state = 2}, + [5256] = {.lex_state = 405, .external_lex_state = 5}, + [5257] = {.lex_state = 48, .external_lex_state = 2}, + [5258] = {.lex_state = 405, .external_lex_state = 5}, [5259] = {.lex_state = 48, .external_lex_state = 5}, - [5260] = {.lex_state = 406, .external_lex_state = 5}, - [5261] = {.lex_state = 406, .external_lex_state = 6}, - [5262] = {.lex_state = 406, .external_lex_state = 5}, - [5263] = {.lex_state = 406, .external_lex_state = 5}, - [5264] = {.lex_state = 406, .external_lex_state = 5}, - [5265] = {.lex_state = 48, .external_lex_state = 2}, - [5266] = {.lex_state = 406, .external_lex_state = 6}, - [5267] = {.lex_state = 406, .external_lex_state = 6}, - [5268] = {.lex_state = 48, .external_lex_state = 5}, - [5269] = {.lex_state = 406, .external_lex_state = 5}, - [5270] = {.lex_state = 406, .external_lex_state = 5}, - [5271] = {.lex_state = 75, .external_lex_state = 2}, - [5272] = {.lex_state = 406, .external_lex_state = 5}, - [5273] = {.lex_state = 406, .external_lex_state = 5}, - [5274] = {.lex_state = 406, .external_lex_state = 6}, - [5275] = {.lex_state = 81, .external_lex_state = 2}, - [5276] = {.lex_state = 406, .external_lex_state = 5}, + [5260] = {.lex_state = 405, .external_lex_state = 6}, + [5261] = {.lex_state = 405, .external_lex_state = 5}, + [5262] = {.lex_state = 405, .external_lex_state = 5}, + [5263] = {.lex_state = 405, .external_lex_state = 5}, + [5264] = {.lex_state = 405, .external_lex_state = 5}, + [5265] = {.lex_state = 405, .external_lex_state = 5}, + [5266] = {.lex_state = 81, .external_lex_state = 2}, + [5267] = {.lex_state = 405, .external_lex_state = 5}, + [5268] = {.lex_state = 81, .external_lex_state = 2}, + [5269] = {.lex_state = 405, .external_lex_state = 5}, + [5270] = {.lex_state = 405, .external_lex_state = 5}, + [5271] = {.lex_state = 405, .external_lex_state = 6}, + [5272] = {.lex_state = 405, .external_lex_state = 5}, + [5273] = {.lex_state = 48, .external_lex_state = 5}, + [5274] = {.lex_state = 405, .external_lex_state = 5}, + [5275] = {.lex_state = 405, .external_lex_state = 5}, + [5276] = {.lex_state = 405, .external_lex_state = 5}, [5277] = {.lex_state = 81, .external_lex_state = 2}, - [5278] = {.lex_state = 406, .external_lex_state = 5}, - [5279] = {.lex_state = 406, .external_lex_state = 2}, - [5280] = {.lex_state = 81, .external_lex_state = 2}, - [5281] = {.lex_state = 406, .external_lex_state = 5}, - [5282] = {.lex_state = 406, .external_lex_state = 5}, - [5283] = {.lex_state = 48, .external_lex_state = 2}, - [5284] = {.lex_state = 406, .external_lex_state = 5}, - [5285] = {.lex_state = 406, .external_lex_state = 5}, - [5286] = {.lex_state = 48, .external_lex_state = 2}, - [5287] = {.lex_state = 406, .external_lex_state = 5}, - [5288] = {.lex_state = 406, .external_lex_state = 5}, - [5289] = {.lex_state = 81, .external_lex_state = 2}, + [5278] = {.lex_state = 81, .external_lex_state = 2}, + [5279] = {.lex_state = 75, .external_lex_state = 2}, + [5280] = {.lex_state = 405, .external_lex_state = 5}, + [5281] = {.lex_state = 405, .external_lex_state = 5}, + [5282] = {.lex_state = 405, .external_lex_state = 5}, + [5283] = {.lex_state = 405, .external_lex_state = 6}, + [5284] = {.lex_state = 405, .external_lex_state = 8}, + [5285] = {.lex_state = 405, .external_lex_state = 5}, + [5286] = {.lex_state = 405, .external_lex_state = 5}, + [5287] = {.lex_state = 405, .external_lex_state = 5}, + [5288] = {.lex_state = 81, .external_lex_state = 2}, + [5289] = {.lex_state = 405, .external_lex_state = 5}, [5290] = {.lex_state = 48, .external_lex_state = 2}, - [5291] = {.lex_state = 48, .external_lex_state = 2}, - [5292] = {.lex_state = 81, .external_lex_state = 2}, - [5293] = {.lex_state = 406, .external_lex_state = 8}, - [5294] = {.lex_state = 81, .external_lex_state = 2}, - [5295] = {.lex_state = 81, .external_lex_state = 2}, - [5296] = {.lex_state = 406, .external_lex_state = 5}, - [5297] = {.lex_state = 406, .external_lex_state = 5}, - [5298] = {.lex_state = 81, .external_lex_state = 2}, - [5299] = {.lex_state = 48, .external_lex_state = 2}, - [5300] = {.lex_state = 81, .external_lex_state = 2}, - [5301] = {.lex_state = 406, .external_lex_state = 6}, - [5302] = {.lex_state = 406, .external_lex_state = 5}, - [5303] = {.lex_state = 406, .external_lex_state = 5}, - [5304] = {.lex_state = 406, .external_lex_state = 5}, - [5305] = {.lex_state = 406, .external_lex_state = 5}, - [5306] = {.lex_state = 406, .external_lex_state = 6}, - [5307] = {.lex_state = 81, .external_lex_state = 2}, - [5308] = {.lex_state = 81, .external_lex_state = 2}, - [5309] = {.lex_state = 406, .external_lex_state = 5}, - [5310] = {.lex_state = 406, .external_lex_state = 5}, - [5311] = {.lex_state = 49, .external_lex_state = 5}, - [5312] = {.lex_state = 406, .external_lex_state = 5}, - [5313] = {.lex_state = 406, .external_lex_state = 2}, - [5314] = {.lex_state = 48, .external_lex_state = 5}, - [5315] = {.lex_state = 406, .external_lex_state = 5}, - [5316] = {.lex_state = 406, .external_lex_state = 5}, - [5317] = {.lex_state = 406, .external_lex_state = 5}, - [5318] = {.lex_state = 406, .external_lex_state = 5}, - [5319] = {.lex_state = 406, .external_lex_state = 5}, - [5320] = {.lex_state = 48, .external_lex_state = 5}, - [5321] = {.lex_state = 406, .external_lex_state = 5}, - [5322] = {.lex_state = 406, .external_lex_state = 5}, - [5323] = {.lex_state = 406, .external_lex_state = 5}, - [5324] = {.lex_state = 406, .external_lex_state = 5}, - [5325] = {.lex_state = 406, .external_lex_state = 5}, - [5326] = {.lex_state = 406, .external_lex_state = 5}, - [5327] = {.lex_state = 406, .external_lex_state = 2}, - [5328] = {.lex_state = 406, .external_lex_state = 5}, - [5329] = {.lex_state = 406, .external_lex_state = 2}, - [5330] = {.lex_state = 406, .external_lex_state = 5}, - [5331] = {.lex_state = 406, .external_lex_state = 5}, - [5332] = {.lex_state = 406, .external_lex_state = 5}, - [5333] = {.lex_state = 406, .external_lex_state = 5}, - [5334] = {.lex_state = 48, .external_lex_state = 5}, - [5335] = {.lex_state = 406, .external_lex_state = 5}, - [5336] = {.lex_state = 406, .external_lex_state = 6}, - [5337] = {.lex_state = 406, .external_lex_state = 5}, - [5338] = {.lex_state = 406, .external_lex_state = 5}, - [5339] = {.lex_state = 406, .external_lex_state = 6}, - [5340] = {.lex_state = 406, .external_lex_state = 2}, - [5341] = {.lex_state = 406, .external_lex_state = 5}, - [5342] = {.lex_state = 406, .external_lex_state = 5}, - [5343] = {.lex_state = 48, .external_lex_state = 5}, - [5344] = {.lex_state = 406, .external_lex_state = 2}, - [5345] = {.lex_state = 406, .external_lex_state = 6}, - [5346] = {.lex_state = 406, .external_lex_state = 8}, - [5347] = {.lex_state = 406, .external_lex_state = 5}, - [5348] = {.lex_state = 406, .external_lex_state = 5}, - [5349] = {.lex_state = 48, .external_lex_state = 2}, - [5350] = {.lex_state = 406, .external_lex_state = 5}, - [5351] = {.lex_state = 406, .external_lex_state = 5}, - [5352] = {.lex_state = 406, .external_lex_state = 5}, - [5353] = {.lex_state = 48, .external_lex_state = 5}, - [5354] = {.lex_state = 48, .external_lex_state = 2}, - [5355] = {.lex_state = 406, .external_lex_state = 5}, - [5356] = {.lex_state = 406, .external_lex_state = 5}, - [5357] = {.lex_state = 406, .external_lex_state = 6}, - [5358] = {.lex_state = 406, .external_lex_state = 5}, - [5359] = {.lex_state = 406, .external_lex_state = 5}, - [5360] = {.lex_state = 406, .external_lex_state = 5}, - [5361] = {.lex_state = 406, .external_lex_state = 5}, - [5362] = {.lex_state = 406, .external_lex_state = 5}, - [5363] = {.lex_state = 406, .external_lex_state = 5}, - [5364] = {.lex_state = 406, .external_lex_state = 5}, - [5365] = {.lex_state = 406, .external_lex_state = 5}, - [5366] = {.lex_state = 406, .external_lex_state = 5}, - [5367] = {.lex_state = 406, .external_lex_state = 5}, - [5368] = {.lex_state = 406, .external_lex_state = 5}, - [5369] = {.lex_state = 75, .external_lex_state = 2}, - [5370] = {.lex_state = 406, .external_lex_state = 6}, - [5371] = {.lex_state = 406, .external_lex_state = 8}, - [5372] = {.lex_state = 48, .external_lex_state = 2}, - [5373] = {.lex_state = 406, .external_lex_state = 5}, - [5374] = {.lex_state = 406, .external_lex_state = 5}, - [5375] = {.lex_state = 406, .external_lex_state = 5}, - [5376] = {.lex_state = 406, .external_lex_state = 5}, - [5377] = {.lex_state = 48, .external_lex_state = 2}, - [5378] = {.lex_state = 406, .external_lex_state = 5}, - [5379] = {.lex_state = 406, .external_lex_state = 2}, - [5380] = {.lex_state = 406, .external_lex_state = 2}, - [5381] = {.lex_state = 48, .external_lex_state = 2}, - [5382] = {.lex_state = 406, .external_lex_state = 2}, - [5383] = {.lex_state = 48, .external_lex_state = 5}, - [5384] = {.lex_state = 406, .external_lex_state = 5}, - [5385] = {.lex_state = 48, .external_lex_state = 2}, + [5291] = {.lex_state = 405, .external_lex_state = 5}, + [5292] = {.lex_state = 48, .external_lex_state = 2}, + [5293] = {.lex_state = 405, .external_lex_state = 5}, + [5294] = {.lex_state = 405, .external_lex_state = 5}, + [5295] = {.lex_state = 48, .external_lex_state = 2}, + [5296] = {.lex_state = 50, .external_lex_state = 2}, + [5297] = {.lex_state = 405, .external_lex_state = 5}, + [5298] = {.lex_state = 405, .external_lex_state = 8}, + [5299] = {.lex_state = 405, .external_lex_state = 5}, + [5300] = {.lex_state = 405, .external_lex_state = 5}, + [5301] = {.lex_state = 405, .external_lex_state = 2}, + [5302] = {.lex_state = 405, .external_lex_state = 5}, + [5303] = {.lex_state = 405, .external_lex_state = 5}, + [5304] = {.lex_state = 405, .external_lex_state = 5}, + [5305] = {.lex_state = 405, .external_lex_state = 5}, + [5306] = {.lex_state = 405, .external_lex_state = 6}, + [5307] = {.lex_state = 405, .external_lex_state = 5}, + [5308] = {.lex_state = 405, .external_lex_state = 5}, + [5309] = {.lex_state = 405, .external_lex_state = 5}, + [5310] = {.lex_state = 405, .external_lex_state = 5}, + [5311] = {.lex_state = 405, .external_lex_state = 5}, + [5312] = {.lex_state = 405, .external_lex_state = 5}, + [5313] = {.lex_state = 405, .external_lex_state = 5}, + [5314] = {.lex_state = 405, .external_lex_state = 5}, + [5315] = {.lex_state = 405, .external_lex_state = 5}, + [5316] = {.lex_state = 405, .external_lex_state = 5}, + [5317] = {.lex_state = 405, .external_lex_state = 5}, + [5318] = {.lex_state = 405, .external_lex_state = 2}, + [5319] = {.lex_state = 405, .external_lex_state = 5}, + [5320] = {.lex_state = 405, .external_lex_state = 5}, + [5321] = {.lex_state = 405, .external_lex_state = 5}, + [5322] = {.lex_state = 48, .external_lex_state = 2}, + [5323] = {.lex_state = 405, .external_lex_state = 5}, + [5324] = {.lex_state = 81, .external_lex_state = 2}, + [5325] = {.lex_state = 405, .external_lex_state = 5}, + [5326] = {.lex_state = 405, .external_lex_state = 5}, + [5327] = {.lex_state = 405, .external_lex_state = 5}, + [5328] = {.lex_state = 48, .external_lex_state = 2}, + [5329] = {.lex_state = 405, .external_lex_state = 5}, + [5330] = {.lex_state = 405, .external_lex_state = 5}, + [5331] = {.lex_state = 405, .external_lex_state = 5}, + [5332] = {.lex_state = 405, .external_lex_state = 2}, + [5333] = {.lex_state = 405, .external_lex_state = 5}, + [5334] = {.lex_state = 405, .external_lex_state = 2}, + [5335] = {.lex_state = 81, .external_lex_state = 2}, + [5336] = {.lex_state = 405, .external_lex_state = 5}, + [5337] = {.lex_state = 405, .external_lex_state = 5}, + [5338] = {.lex_state = 81, .external_lex_state = 2}, + [5339] = {.lex_state = 48, .external_lex_state = 2}, + [5340] = {.lex_state = 81, .external_lex_state = 2}, + [5341] = {.lex_state = 405, .external_lex_state = 5}, + [5342] = {.lex_state = 405, .external_lex_state = 5}, + [5343] = {.lex_state = 405, .external_lex_state = 5}, + [5344] = {.lex_state = 405, .external_lex_state = 6}, + [5345] = {.lex_state = 48, .external_lex_state = 2}, + [5346] = {.lex_state = 48, .external_lex_state = 2}, + [5347] = {.lex_state = 81, .external_lex_state = 2}, + [5348] = {.lex_state = 48, .external_lex_state = 5}, + [5349] = {.lex_state = 81, .external_lex_state = 2}, + [5350] = {.lex_state = 50, .external_lex_state = 2}, + [5351] = {.lex_state = 405, .external_lex_state = 5}, + [5352] = {.lex_state = 48, .external_lex_state = 2}, + [5353] = {.lex_state = 405, .external_lex_state = 5}, + [5354] = {.lex_state = 405, .external_lex_state = 5}, + [5355] = {.lex_state = 81, .external_lex_state = 2}, + [5356] = {.lex_state = 48, .external_lex_state = 2}, + [5357] = {.lex_state = 48, .external_lex_state = 2}, + [5358] = {.lex_state = 81, .external_lex_state = 2}, + [5359] = {.lex_state = 48, .external_lex_state = 2}, + [5360] = {.lex_state = 405, .external_lex_state = 6}, + [5361] = {.lex_state = 405, .external_lex_state = 5}, + [5362] = {.lex_state = 405, .external_lex_state = 5}, + [5363] = {.lex_state = 405, .external_lex_state = 5}, + [5364] = {.lex_state = 405, .external_lex_state = 5}, + [5365] = {.lex_state = 405, .external_lex_state = 8}, + [5366] = {.lex_state = 48, .external_lex_state = 5}, + [5367] = {.lex_state = 48, .external_lex_state = 2}, + [5368] = {.lex_state = 405, .external_lex_state = 5}, + [5369] = {.lex_state = 405, .external_lex_state = 6}, + [5370] = {.lex_state = 405, .external_lex_state = 5}, + [5371] = {.lex_state = 75, .external_lex_state = 2}, + [5372] = {.lex_state = 405, .external_lex_state = 5}, + [5373] = {.lex_state = 48, .external_lex_state = 2}, + [5374] = {.lex_state = 48, .external_lex_state = 2}, + [5375] = {.lex_state = 81, .external_lex_state = 2}, + [5376] = {.lex_state = 48, .external_lex_state = 2}, + [5377] = {.lex_state = 405, .external_lex_state = 5}, + [5378] = {.lex_state = 49, .external_lex_state = 2}, + [5379] = {.lex_state = 48, .external_lex_state = 5}, + [5380] = {.lex_state = 405, .external_lex_state = 5}, + [5381] = {.lex_state = 405, .external_lex_state = 5}, + [5382] = {.lex_state = 405, .external_lex_state = 6}, + [5383] = {.lex_state = 405, .external_lex_state = 5}, + [5384] = {.lex_state = 405, .external_lex_state = 2}, + [5385] = {.lex_state = 405, .external_lex_state = 5}, [5386] = {.lex_state = 48, .external_lex_state = 2}, - [5387] = {.lex_state = 49, .external_lex_state = 2}, + [5387] = {.lex_state = 81, .external_lex_state = 2}, [5388] = {.lex_state = 48, .external_lex_state = 2}, - [5389] = {.lex_state = 48, .external_lex_state = 2}, - [5390] = {.lex_state = 48, .external_lex_state = 2}, - [5391] = {.lex_state = 49, .external_lex_state = 2}, - [5392] = {.lex_state = 406, .external_lex_state = 5}, - [5393] = {.lex_state = 406, .external_lex_state = 5}, - [5394] = {.lex_state = 406, .external_lex_state = 8}, + [5389] = {.lex_state = 48, .external_lex_state = 5}, + [5390] = {.lex_state = 405, .external_lex_state = 2}, + [5391] = {.lex_state = 81, .external_lex_state = 2}, + [5392] = {.lex_state = 405, .external_lex_state = 6}, + [5393] = {.lex_state = 405, .external_lex_state = 8}, + [5394] = {.lex_state = 75, .external_lex_state = 2}, [5395] = {.lex_state = 48, .external_lex_state = 2}, - [5396] = {.lex_state = 406, .external_lex_state = 2}, + [5396] = {.lex_state = 49, .external_lex_state = 2}, [5397] = {.lex_state = 48, .external_lex_state = 2}, - [5398] = {.lex_state = 406, .external_lex_state = 2}, - [5399] = {.lex_state = 406, .external_lex_state = 5}, - [5400] = {.lex_state = 406, .external_lex_state = 5}, - [5401] = {.lex_state = 63, .external_lex_state = 2}, - [5402] = {.lex_state = 48, .external_lex_state = 2}, - [5403] = {.lex_state = 81, .external_lex_state = 2}, - [5404] = {.lex_state = 406, .external_lex_state = 5}, - [5405] = {.lex_state = 81, .external_lex_state = 2}, - [5406] = {.lex_state = 48, .external_lex_state = 5}, - [5407] = {.lex_state = 406, .external_lex_state = 5}, - [5408] = {.lex_state = 59, .external_lex_state = 9}, - [5409] = {.lex_state = 406, .external_lex_state = 5}, - [5410] = {.lex_state = 406, .external_lex_state = 2}, - [5411] = {.lex_state = 406, .external_lex_state = 5}, - [5412] = {.lex_state = 48, .external_lex_state = 2}, - [5413] = {.lex_state = 406, .external_lex_state = 5}, - [5414] = {.lex_state = 406, .external_lex_state = 5}, - [5415] = {.lex_state = 406, .external_lex_state = 5}, - [5416] = {.lex_state = 406, .external_lex_state = 5}, + [5398] = {.lex_state = 48, .external_lex_state = 2}, + [5399] = {.lex_state = 405, .external_lex_state = 2}, + [5400] = {.lex_state = 48, .external_lex_state = 2}, + [5401] = {.lex_state = 81, .external_lex_state = 2}, + [5402] = {.lex_state = 48, .external_lex_state = 5}, + [5403] = {.lex_state = 405, .external_lex_state = 6}, + [5404] = {.lex_state = 81, .external_lex_state = 2}, + [5405] = {.lex_state = 48, .external_lex_state = 2}, + [5406] = {.lex_state = 48, .external_lex_state = 2}, + [5407] = {.lex_state = 48, .external_lex_state = 2}, + [5408] = {.lex_state = 48, .external_lex_state = 5}, + [5409] = {.lex_state = 405, .external_lex_state = 5}, + [5410] = {.lex_state = 66, .external_lex_state = 2}, + [5411] = {.lex_state = 59, .external_lex_state = 9}, + [5412] = {.lex_state = 405, .external_lex_state = 5}, + [5413] = {.lex_state = 48, .external_lex_state = 2}, + [5414] = {.lex_state = 48, .external_lex_state = 2}, + [5415] = {.lex_state = 48, .external_lex_state = 2}, + [5416] = {.lex_state = 48, .external_lex_state = 2}, [5417] = {.lex_state = 48, .external_lex_state = 2}, - [5418] = {.lex_state = 59, .external_lex_state = 9}, - [5419] = {.lex_state = 68, .external_lex_state = 9}, - [5420] = {.lex_state = 59, .external_lex_state = 9}, - [5421] = {.lex_state = 50, .external_lex_state = 2}, - [5422] = {.lex_state = 27, .external_lex_state = 2}, - [5423] = {.lex_state = 27, .external_lex_state = 2}, - [5424] = {.lex_state = 27, .external_lex_state = 2}, - [5425] = {.lex_state = 68, .external_lex_state = 9}, - [5426] = {.lex_state = 48, .external_lex_state = 2}, - [5427] = {.lex_state = 48, .external_lex_state = 2}, + [5418] = {.lex_state = 405, .external_lex_state = 2}, + [5419] = {.lex_state = 405, .external_lex_state = 2}, + [5420] = {.lex_state = 27, .external_lex_state = 2}, + [5421] = {.lex_state = 48, .external_lex_state = 2}, + [5422] = {.lex_state = 48, .external_lex_state = 2}, + [5423] = {.lex_state = 48, .external_lex_state = 2}, + [5424] = {.lex_state = 405, .external_lex_state = 5}, + [5425] = {.lex_state = 66, .external_lex_state = 2}, + [5426] = {.lex_state = 54, .external_lex_state = 2}, + [5427] = {.lex_state = 24, .external_lex_state = 2}, [5428] = {.lex_state = 48, .external_lex_state = 2}, - [5429] = {.lex_state = 406, .external_lex_state = 5}, - [5430] = {.lex_state = 406, .external_lex_state = 5}, - [5431] = {.lex_state = 406, .external_lex_state = 5}, - [5432] = {.lex_state = 406, .external_lex_state = 5}, - [5433] = {.lex_state = 406, .external_lex_state = 5}, - [5434] = {.lex_state = 406, .external_lex_state = 5}, - [5435] = {.lex_state = 406, .external_lex_state = 5}, - [5436] = {.lex_state = 406, .external_lex_state = 5}, - [5437] = {.lex_state = 48, .external_lex_state = 2}, - [5438] = {.lex_state = 48, .external_lex_state = 2}, - [5439] = {.lex_state = 406, .external_lex_state = 5}, - [5440] = {.lex_state = 406, .external_lex_state = 5}, - [5441] = {.lex_state = 48, .external_lex_state = 2}, - [5442] = {.lex_state = 406, .external_lex_state = 5}, - [5443] = {.lex_state = 406, .external_lex_state = 5}, - [5444] = {.lex_state = 406, .external_lex_state = 5}, - [5445] = {.lex_state = 48, .external_lex_state = 2}, - [5446] = {.lex_state = 48, .external_lex_state = 2}, - [5447] = {.lex_state = 406, .external_lex_state = 2}, - [5448] = {.lex_state = 48, .external_lex_state = 2}, - [5449] = {.lex_state = 406, .external_lex_state = 2}, - [5450] = {.lex_state = 59, .external_lex_state = 9}, - [5451] = {.lex_state = 48, .external_lex_state = 2}, - [5452] = {.lex_state = 68, .external_lex_state = 9}, - [5453] = {.lex_state = 48, .external_lex_state = 2}, - [5454] = {.lex_state = 59, .external_lex_state = 9}, - [5455] = {.lex_state = 68, .external_lex_state = 9}, - [5456] = {.lex_state = 84, .external_lex_state = 2}, - [5457] = {.lex_state = 406, .external_lex_state = 5}, - [5458] = {.lex_state = 406, .external_lex_state = 5}, - [5459] = {.lex_state = 406, .external_lex_state = 5}, - [5460] = {.lex_state = 59, .external_lex_state = 9}, - [5461] = {.lex_state = 68, .external_lex_state = 9}, - [5462] = {.lex_state = 48, .external_lex_state = 2}, - [5463] = {.lex_state = 48, .external_lex_state = 2}, - [5464] = {.lex_state = 406, .external_lex_state = 5}, - [5465] = {.lex_state = 406, .external_lex_state = 5}, - [5466] = {.lex_state = 406, .external_lex_state = 5}, - [5467] = {.lex_state = 406, .external_lex_state = 5}, - [5468] = {.lex_state = 48, .external_lex_state = 2}, - [5469] = {.lex_state = 406, .external_lex_state = 7}, - [5470] = {.lex_state = 406, .external_lex_state = 2}, - [5471] = {.lex_state = 48, .external_lex_state = 2}, + [5429] = {.lex_state = 59, .external_lex_state = 9}, + [5430] = {.lex_state = 405, .external_lex_state = 5}, + [5431] = {.lex_state = 48, .external_lex_state = 2}, + [5432] = {.lex_state = 405, .external_lex_state = 5}, + [5433] = {.lex_state = 405, .external_lex_state = 5}, + [5434] = {.lex_state = 68, .external_lex_state = 9}, + [5435] = {.lex_state = 48, .external_lex_state = 2}, + [5436] = {.lex_state = 405, .external_lex_state = 5}, + [5437] = {.lex_state = 405, .external_lex_state = 5}, + [5438] = {.lex_state = 2, .external_lex_state = 2}, + [5439] = {.lex_state = 405, .external_lex_state = 5}, + [5440] = {.lex_state = 405, .external_lex_state = 5}, + [5441] = {.lex_state = 405, .external_lex_state = 5}, + [5442] = {.lex_state = 405, .external_lex_state = 5}, + [5443] = {.lex_state = 405, .external_lex_state = 5}, + [5444] = {.lex_state = 405, .external_lex_state = 5}, + [5445] = {.lex_state = 405, .external_lex_state = 5}, + [5446] = {.lex_state = 405, .external_lex_state = 5}, + [5447] = {.lex_state = 405, .external_lex_state = 5}, + [5448] = {.lex_state = 59, .external_lex_state = 9}, + [5449] = {.lex_state = 68, .external_lex_state = 9}, + [5450] = {.lex_state = 84, .external_lex_state = 2}, + [5451] = {.lex_state = 405, .external_lex_state = 5}, + [5452] = {.lex_state = 405, .external_lex_state = 5}, + [5453] = {.lex_state = 405, .external_lex_state = 5}, + [5454] = {.lex_state = 405, .external_lex_state = 5}, + [5455] = {.lex_state = 405, .external_lex_state = 5}, + [5456] = {.lex_state = 405, .external_lex_state = 5}, + [5457] = {.lex_state = 48, .external_lex_state = 2}, + [5458] = {.lex_state = 48, .external_lex_state = 2}, + [5459] = {.lex_state = 48, .external_lex_state = 2}, + [5460] = {.lex_state = 405, .external_lex_state = 5}, + [5461] = {.lex_state = 48, .external_lex_state = 2}, + [5462] = {.lex_state = 405, .external_lex_state = 5}, + [5463] = {.lex_state = 405, .external_lex_state = 5}, + [5464] = {.lex_state = 48, .external_lex_state = 2}, + [5465] = {.lex_state = 48, .external_lex_state = 2}, + [5466] = {.lex_state = 48, .external_lex_state = 2}, + [5467] = {.lex_state = 48, .external_lex_state = 2}, + [5468] = {.lex_state = 405, .external_lex_state = 2}, + [5469] = {.lex_state = 48, .external_lex_state = 2}, + [5470] = {.lex_state = 84, .external_lex_state = 2}, + [5471] = {.lex_state = 405, .external_lex_state = 2}, [5472] = {.lex_state = 48, .external_lex_state = 2}, - [5473] = {.lex_state = 49, .external_lex_state = 2}, - [5474] = {.lex_state = 48, .external_lex_state = 2}, - [5475] = {.lex_state = 59, .external_lex_state = 9}, + [5473] = {.lex_state = 48, .external_lex_state = 2}, + [5474] = {.lex_state = 59, .external_lex_state = 9}, + [5475] = {.lex_state = 68, .external_lex_state = 9}, [5476] = {.lex_state = 68, .external_lex_state = 9}, - [5477] = {.lex_state = 406, .external_lex_state = 5}, - [5478] = {.lex_state = 406, .external_lex_state = 5}, - [5479] = {.lex_state = 406, .external_lex_state = 2}, - [5480] = {.lex_state = 48, .external_lex_state = 2}, - [5481] = {.lex_state = 406, .external_lex_state = 5}, - [5482] = {.lex_state = 59, .external_lex_state = 9}, - [5483] = {.lex_state = 68, .external_lex_state = 9}, - [5484] = {.lex_state = 406, .external_lex_state = 5}, - [5485] = {.lex_state = 406, .external_lex_state = 5}, - [5486] = {.lex_state = 48, .external_lex_state = 2}, - [5487] = {.lex_state = 48, .external_lex_state = 2}, - [5488] = {.lex_state = 2, .external_lex_state = 2}, - [5489] = {.lex_state = 84, .external_lex_state = 2}, - [5490] = {.lex_state = 59, .external_lex_state = 9}, - [5491] = {.lex_state = 68, .external_lex_state = 9}, - [5492] = {.lex_state = 59, .external_lex_state = 9}, - [5493] = {.lex_state = 68, .external_lex_state = 9}, - [5494] = {.lex_state = 59, .external_lex_state = 9}, - [5495] = {.lex_state = 68, .external_lex_state = 9}, - [5496] = {.lex_state = 48, .external_lex_state = 2}, - [5497] = {.lex_state = 48, .external_lex_state = 2}, - [5498] = {.lex_state = 59, .external_lex_state = 9}, - [5499] = {.lex_state = 68, .external_lex_state = 9}, - [5500] = {.lex_state = 48, .external_lex_state = 2}, - [5501] = {.lex_state = 406, .external_lex_state = 7}, - [5502] = {.lex_state = 406, .external_lex_state = 5}, - [5503] = {.lex_state = 406, .external_lex_state = 5}, - [5504] = {.lex_state = 406, .external_lex_state = 5}, - [5505] = {.lex_state = 406, .external_lex_state = 5}, - [5506] = {.lex_state = 406, .external_lex_state = 5}, - [5507] = {.lex_state = 59, .external_lex_state = 9}, - [5508] = {.lex_state = 2, .external_lex_state = 2}, - [5509] = {.lex_state = 68, .external_lex_state = 9}, - [5510] = {.lex_state = 59, .external_lex_state = 9}, - [5511] = {.lex_state = 68, .external_lex_state = 9}, - [5512] = {.lex_state = 406, .external_lex_state = 5}, - [5513] = {.lex_state = 406, .external_lex_state = 5}, - [5514] = {.lex_state = 406, .external_lex_state = 5}, - [5515] = {.lex_state = 406, .external_lex_state = 5}, - [5516] = {.lex_state = 406, .external_lex_state = 5}, - [5517] = {.lex_state = 406, .external_lex_state = 5}, - [5518] = {.lex_state = 59, .external_lex_state = 9}, - [5519] = {.lex_state = 68, .external_lex_state = 9}, - [5520] = {.lex_state = 406, .external_lex_state = 5}, - [5521] = {.lex_state = 59, .external_lex_state = 9}, - [5522] = {.lex_state = 68, .external_lex_state = 9}, + [5477] = {.lex_state = 48, .external_lex_state = 2}, + [5478] = {.lex_state = 59, .external_lex_state = 9}, + [5479] = {.lex_state = 59, .external_lex_state = 9}, + [5480] = {.lex_state = 68, .external_lex_state = 9}, + [5481] = {.lex_state = 405, .external_lex_state = 6}, + [5482] = {.lex_state = 405, .external_lex_state = 5}, + [5483] = {.lex_state = 405, .external_lex_state = 5}, + [5484] = {.lex_state = 405, .external_lex_state = 5}, + [5485] = {.lex_state = 405, .external_lex_state = 5}, + [5486] = {.lex_state = 405, .external_lex_state = 5}, + [5487] = {.lex_state = 405, .external_lex_state = 5}, + [5488] = {.lex_state = 59, .external_lex_state = 9}, + [5489] = {.lex_state = 68, .external_lex_state = 9}, + [5490] = {.lex_state = 405, .external_lex_state = 5}, + [5491] = {.lex_state = 405, .external_lex_state = 2}, + [5492] = {.lex_state = 48, .external_lex_state = 2}, + [5493] = {.lex_state = 405, .external_lex_state = 5}, + [5494] = {.lex_state = 405, .external_lex_state = 5}, + [5495] = {.lex_state = 405, .external_lex_state = 5}, + [5496] = {.lex_state = 405, .external_lex_state = 5}, + [5497] = {.lex_state = 405, .external_lex_state = 5}, + [5498] = {.lex_state = 405, .external_lex_state = 5}, + [5499] = {.lex_state = 405, .external_lex_state = 5}, + [5500] = {.lex_state = 405, .external_lex_state = 5}, + [5501] = {.lex_state = 405, .external_lex_state = 5}, + [5502] = {.lex_state = 48, .external_lex_state = 2}, + [5503] = {.lex_state = 405, .external_lex_state = 5}, + [5504] = {.lex_state = 405, .external_lex_state = 5}, + [5505] = {.lex_state = 48, .external_lex_state = 2}, + [5506] = {.lex_state = 405, .external_lex_state = 2}, + [5507] = {.lex_state = 405, .external_lex_state = 2}, + [5508] = {.lex_state = 405, .external_lex_state = 5}, + [5509] = {.lex_state = 84, .external_lex_state = 2}, + [5510] = {.lex_state = 48, .external_lex_state = 2}, + [5511] = {.lex_state = 48, .external_lex_state = 2}, + [5512] = {.lex_state = 27, .external_lex_state = 2}, + [5513] = {.lex_state = 27, .external_lex_state = 2}, + [5514] = {.lex_state = 27, .external_lex_state = 2}, + [5515] = {.lex_state = 50, .external_lex_state = 2}, + [5516] = {.lex_state = 405, .external_lex_state = 5}, + [5517] = {.lex_state = 59, .external_lex_state = 9}, + [5518] = {.lex_state = 68, .external_lex_state = 9}, + [5519] = {.lex_state = 405, .external_lex_state = 5}, + [5520] = {.lex_state = 68, .external_lex_state = 9}, + [5521] = {.lex_state = 68, .external_lex_state = 9}, + [5522] = {.lex_state = 59, .external_lex_state = 9}, [5523] = {.lex_state = 59, .external_lex_state = 9}, - [5524] = {.lex_state = 66, .external_lex_state = 2}, - [5525] = {.lex_state = 54, .external_lex_state = 2}, - [5526] = {.lex_state = 406, .external_lex_state = 5}, - [5527] = {.lex_state = 59, .external_lex_state = 9}, + [5524] = {.lex_state = 405, .external_lex_state = 5}, + [5525] = {.lex_state = 405, .external_lex_state = 2}, + [5526] = {.lex_state = 59, .external_lex_state = 9}, + [5527] = {.lex_state = 405, .external_lex_state = 5}, [5528] = {.lex_state = 48, .external_lex_state = 2}, - [5529] = {.lex_state = 406, .external_lex_state = 5}, - [5530] = {.lex_state = 48, .external_lex_state = 2}, - [5531] = {.lex_state = 68, .external_lex_state = 9}, - [5532] = {.lex_state = 27, .external_lex_state = 2}, - [5533] = {.lex_state = 68, .external_lex_state = 9}, - [5534] = {.lex_state = 27, .external_lex_state = 2}, - [5535] = {.lex_state = 59, .external_lex_state = 9}, + [5529] = {.lex_state = 59, .external_lex_state = 9}, + [5530] = {.lex_state = 68, .external_lex_state = 9}, + [5531] = {.lex_state = 54, .external_lex_state = 2}, + [5532] = {.lex_state = 405, .external_lex_state = 5}, + [5533] = {.lex_state = 405, .external_lex_state = 5}, + [5534] = {.lex_state = 48, .external_lex_state = 2}, + [5535] = {.lex_state = 48, .external_lex_state = 2}, [5536] = {.lex_state = 48, .external_lex_state = 2}, - [5537] = {.lex_state = 59, .external_lex_state = 9}, - [5538] = {.lex_state = 68, .external_lex_state = 9}, - [5539] = {.lex_state = 59, .external_lex_state = 9}, - [5540] = {.lex_state = 406, .external_lex_state = 5}, - [5541] = {.lex_state = 406, .external_lex_state = 5}, - [5542] = {.lex_state = 406, .external_lex_state = 5}, + [5537] = {.lex_state = 48, .external_lex_state = 2}, + [5538] = {.lex_state = 405, .external_lex_state = 5}, + [5539] = {.lex_state = 405, .external_lex_state = 5}, + [5540] = {.lex_state = 405, .external_lex_state = 5}, + [5541] = {.lex_state = 405, .external_lex_state = 5}, + [5542] = {.lex_state = 59, .external_lex_state = 9}, [5543] = {.lex_state = 68, .external_lex_state = 9}, - [5544] = {.lex_state = 406, .external_lex_state = 2}, - [5545] = {.lex_state = 406, .external_lex_state = 5}, - [5546] = {.lex_state = 406, .external_lex_state = 7}, - [5547] = {.lex_state = 406, .external_lex_state = 5}, - [5548] = {.lex_state = 84, .external_lex_state = 2}, - [5549] = {.lex_state = 406, .external_lex_state = 5}, - [5550] = {.lex_state = 406, .external_lex_state = 5}, - [5551] = {.lex_state = 24, .external_lex_state = 2}, - [5552] = {.lex_state = 406, .external_lex_state = 2}, - [5553] = {.lex_state = 48, .external_lex_state = 2}, - [5554] = {.lex_state = 48, .external_lex_state = 2}, - [5555] = {.lex_state = 406, .external_lex_state = 2}, + [5544] = {.lex_state = 48, .external_lex_state = 2}, + [5545] = {.lex_state = 59, .external_lex_state = 9}, + [5546] = {.lex_state = 68, .external_lex_state = 9}, + [5547] = {.lex_state = 68, .external_lex_state = 9}, + [5548] = {.lex_state = 48, .external_lex_state = 2}, + [5549] = {.lex_state = 59, .external_lex_state = 9}, + [5550] = {.lex_state = 68, .external_lex_state = 9}, + [5551] = {.lex_state = 405, .external_lex_state = 5}, + [5552] = {.lex_state = 405, .external_lex_state = 5}, + [5553] = {.lex_state = 405, .external_lex_state = 5}, + [5554] = {.lex_state = 59, .external_lex_state = 9}, + [5555] = {.lex_state = 68, .external_lex_state = 9}, [5556] = {.lex_state = 48, .external_lex_state = 2}, - [5557] = {.lex_state = 406, .external_lex_state = 2}, - [5558] = {.lex_state = 48, .external_lex_state = 2}, - [5559] = {.lex_state = 68, .external_lex_state = 9}, - [5560] = {.lex_state = 59, .external_lex_state = 9}, - [5561] = {.lex_state = 66, .external_lex_state = 2}, - [5562] = {.lex_state = 406, .external_lex_state = 2}, - [5563] = {.lex_state = 406, .external_lex_state = 2}, - [5564] = {.lex_state = 54, .external_lex_state = 2}, + [5557] = {.lex_state = 405, .external_lex_state = 2}, + [5558] = {.lex_state = 2, .external_lex_state = 2}, + [5559] = {.lex_state = 2, .external_lex_state = 2}, + [5560] = {.lex_state = 405, .external_lex_state = 5}, + [5561] = {.lex_state = 405, .external_lex_state = 2}, + [5562] = {.lex_state = 48, .external_lex_state = 2}, + [5563] = {.lex_state = 405, .external_lex_state = 2}, + [5564] = {.lex_state = 59, .external_lex_state = 9}, [5565] = {.lex_state = 68, .external_lex_state = 9}, - [5566] = {.lex_state = 406, .external_lex_state = 2}, + [5566] = {.lex_state = 68, .external_lex_state = 9}, [5567] = {.lex_state = 59, .external_lex_state = 9}, - [5568] = {.lex_state = 68, .external_lex_state = 9}, - [5569] = {.lex_state = 406, .external_lex_state = 5}, + [5568] = {.lex_state = 59, .external_lex_state = 9}, + [5569] = {.lex_state = 405, .external_lex_state = 5}, [5570] = {.lex_state = 68, .external_lex_state = 9}, - [5571] = {.lex_state = 406, .external_lex_state = 5}, - [5572] = {.lex_state = 406, .external_lex_state = 5}, - [5573] = {.lex_state = 406, .external_lex_state = 2}, - [5574] = {.lex_state = 48, .external_lex_state = 2}, - [5575] = {.lex_state = 406, .external_lex_state = 5}, - [5576] = {.lex_state = 406, .external_lex_state = 5}, - [5577] = {.lex_state = 54, .external_lex_state = 2}, - [5578] = {.lex_state = 406, .external_lex_state = 5}, - [5579] = {.lex_state = 406, .external_lex_state = 5}, - [5580] = {.lex_state = 48, .external_lex_state = 2}, - [5581] = {.lex_state = 66, .external_lex_state = 2}, - [5582] = {.lex_state = 406, .external_lex_state = 2}, - [5583] = {.lex_state = 59, .external_lex_state = 9}, - [5584] = {.lex_state = 48, .external_lex_state = 2}, - [5585] = {.lex_state = 48, .external_lex_state = 2}, + [5571] = {.lex_state = 405, .external_lex_state = 7}, + [5572] = {.lex_state = 59, .external_lex_state = 9}, + [5573] = {.lex_state = 50, .external_lex_state = 2}, + [5574] = {.lex_state = 405, .external_lex_state = 5}, + [5575] = {.lex_state = 405, .external_lex_state = 5}, + [5576] = {.lex_state = 405, .external_lex_state = 5}, + [5577] = {.lex_state = 405, .external_lex_state = 5}, + [5578] = {.lex_state = 68, .external_lex_state = 9}, + [5579] = {.lex_state = 48, .external_lex_state = 2}, + [5580] = {.lex_state = 68, .external_lex_state = 9}, + [5581] = {.lex_state = 59, .external_lex_state = 9}, + [5582] = {.lex_state = 68, .external_lex_state = 9}, + [5583] = {.lex_state = 48, .external_lex_state = 2}, + [5584] = {.lex_state = 59, .external_lex_state = 9}, + [5585] = {.lex_state = 68, .external_lex_state = 9}, [5586] = {.lex_state = 59, .external_lex_state = 9}, [5587] = {.lex_state = 68, .external_lex_state = 9}, - [5588] = {.lex_state = 48, .external_lex_state = 2}, - [5589] = {.lex_state = 48, .external_lex_state = 2}, - [5590] = {.lex_state = 48, .external_lex_state = 2}, - [5591] = {.lex_state = 406, .external_lex_state = 5}, - [5592] = {.lex_state = 48, .external_lex_state = 2}, - [5593] = {.lex_state = 406, .external_lex_state = 5}, + [5588] = {.lex_state = 59, .external_lex_state = 9}, + [5589] = {.lex_state = 68, .external_lex_state = 9}, + [5590] = {.lex_state = 59, .external_lex_state = 9}, + [5591] = {.lex_state = 59, .external_lex_state = 9}, + [5592] = {.lex_state = 68, .external_lex_state = 9}, + [5593] = {.lex_state = 48, .external_lex_state = 2}, [5594] = {.lex_state = 48, .external_lex_state = 2}, [5595] = {.lex_state = 48, .external_lex_state = 2}, - [5596] = {.lex_state = 2, .external_lex_state = 2}, - [5597] = {.lex_state = 48, .external_lex_state = 2}, - [5598] = {.lex_state = 406, .external_lex_state = 5}, - [5599] = {.lex_state = 2, .external_lex_state = 2}, - [5600] = {.lex_state = 48, .external_lex_state = 2}, + [5596] = {.lex_state = 48, .external_lex_state = 2}, + [5597] = {.lex_state = 68, .external_lex_state = 9}, + [5598] = {.lex_state = 405, .external_lex_state = 5}, + [5599] = {.lex_state = 48, .external_lex_state = 2}, + [5600] = {.lex_state = 49, .external_lex_state = 2}, [5601] = {.lex_state = 68, .external_lex_state = 9}, [5602] = {.lex_state = 48, .external_lex_state = 2}, - [5603] = {.lex_state = 48, .external_lex_state = 2}, - [5604] = {.lex_state = 59, .external_lex_state = 9}, - [5605] = {.lex_state = 406, .external_lex_state = 5}, - [5606] = {.lex_state = 48, .external_lex_state = 2}, - [5607] = {.lex_state = 406, .external_lex_state = 5}, - [5608] = {.lex_state = 406, .external_lex_state = 2}, - [5609] = {.lex_state = 406, .external_lex_state = 5}, - [5610] = {.lex_state = 48, .external_lex_state = 2}, - [5611] = {.lex_state = 50, .external_lex_state = 2}, - [5612] = {.lex_state = 406, .external_lex_state = 2}, - [5613] = {.lex_state = 406, .external_lex_state = 5}, - [5614] = {.lex_state = 68, .external_lex_state = 9}, - [5615] = {.lex_state = 84, .external_lex_state = 2}, - [5616] = {.lex_state = 406, .external_lex_state = 2}, - [5617] = {.lex_state = 48, .external_lex_state = 2}, - [5618] = {.lex_state = 48, .external_lex_state = 2}, - [5619] = {.lex_state = 406, .external_lex_state = 5}, + [5603] = {.lex_state = 405, .external_lex_state = 5}, + [5604] = {.lex_state = 405, .external_lex_state = 2}, + [5605] = {.lex_state = 59, .external_lex_state = 9}, + [5606] = {.lex_state = 405, .external_lex_state = 5}, + [5607] = {.lex_state = 2, .external_lex_state = 2}, + [5608] = {.lex_state = 405, .external_lex_state = 2}, + [5609] = {.lex_state = 66, .external_lex_state = 2}, + [5610] = {.lex_state = 405, .external_lex_state = 2}, + [5611] = {.lex_state = 48, .external_lex_state = 2}, + [5612] = {.lex_state = 54, .external_lex_state = 2}, + [5613] = {.lex_state = 405, .external_lex_state = 2}, + [5614] = {.lex_state = 405, .external_lex_state = 7}, + [5615] = {.lex_state = 405, .external_lex_state = 5}, + [5616] = {.lex_state = 48, .external_lex_state = 2}, + [5617] = {.lex_state = 27, .external_lex_state = 2}, + [5618] = {.lex_state = 405, .external_lex_state = 2}, + [5619] = {.lex_state = 405, .external_lex_state = 2}, [5620] = {.lex_state = 48, .external_lex_state = 2}, [5621] = {.lex_state = 48, .external_lex_state = 2}, - [5622] = {.lex_state = 406, .external_lex_state = 2}, - [5623] = {.lex_state = 406, .external_lex_state = 6}, - [5624] = {.lex_state = 48, .external_lex_state = 2}, - [5625] = {.lex_state = 59, .external_lex_state = 9}, - [5626] = {.lex_state = 406, .external_lex_state = 2}, - [5627] = {.lex_state = 406, .external_lex_state = 2}, - [5628] = {.lex_state = 406, .external_lex_state = 5}, - [5629] = {.lex_state = 68, .external_lex_state = 9}, - [5630] = {.lex_state = 406, .external_lex_state = 5}, - [5631] = {.lex_state = 406, .external_lex_state = 5}, - [5632] = {.lex_state = 406, .external_lex_state = 5}, - [5633] = {.lex_state = 406, .external_lex_state = 5}, - [5634] = {.lex_state = 406, .external_lex_state = 5}, - [5635] = {.lex_state = 48, .external_lex_state = 2}, - [5636] = {.lex_state = 406, .external_lex_state = 5}, - [5637] = {.lex_state = 48, .external_lex_state = 2}, + [5622] = {.lex_state = 405, .external_lex_state = 5}, + [5623] = {.lex_state = 405, .external_lex_state = 2}, + [5624] = {.lex_state = 405, .external_lex_state = 5}, + [5625] = {.lex_state = 48, .external_lex_state = 2}, + [5626] = {.lex_state = 405, .external_lex_state = 7}, + [5627] = {.lex_state = 405, .external_lex_state = 5}, + [5628] = {.lex_state = 405, .external_lex_state = 5}, + [5629] = {.lex_state = 405, .external_lex_state = 5}, + [5630] = {.lex_state = 405, .external_lex_state = 5}, + [5631] = {.lex_state = 405, .external_lex_state = 5}, + [5632] = {.lex_state = 48, .external_lex_state = 2}, + [5633] = {.lex_state = 405, .external_lex_state = 2}, + [5634] = {.lex_state = 84, .external_lex_state = 2}, + [5635] = {.lex_state = 405, .external_lex_state = 2}, + [5636] = {.lex_state = 48, .external_lex_state = 2}, + [5637] = {.lex_state = 405, .external_lex_state = 2}, [5638] = {.lex_state = 48, .external_lex_state = 2}, - [5639] = {.lex_state = 406, .external_lex_state = 5}, - [5640] = {.lex_state = 406, .external_lex_state = 5}, - [5641] = {.lex_state = 406, .external_lex_state = 5}, - [5642] = {.lex_state = 50, .external_lex_state = 2}, - [5643] = {.lex_state = 406, .external_lex_state = 2}, - [5644] = {.lex_state = 406, .external_lex_state = 5}, - [5645] = {.lex_state = 406, .external_lex_state = 5}, - [5646] = {.lex_state = 406, .external_lex_state = 5}, - [5647] = {.lex_state = 406, .external_lex_state = 5}, - [5648] = {.lex_state = 406, .external_lex_state = 2}, - [5649] = {.lex_state = 406, .external_lex_state = 5}, - [5650] = {.lex_state = 406, .external_lex_state = 5}, - [5651] = {.lex_state = 406, .external_lex_state = 2}, - [5652] = {.lex_state = 50, .external_lex_state = 5}, - [5653] = {.lex_state = 406, .external_lex_state = 5}, - [5654] = {.lex_state = 50, .external_lex_state = 5}, - [5655] = {.lex_state = 406, .external_lex_state = 5}, - [5656] = {.lex_state = 406, .external_lex_state = 5}, - [5657] = {.lex_state = 406, .external_lex_state = 5}, - [5658] = {.lex_state = 406, .external_lex_state = 5}, - [5659] = {.lex_state = 406, .external_lex_state = 5}, - [5660] = {.lex_state = 48, .external_lex_state = 2}, - [5661] = {.lex_state = 406, .external_lex_state = 5}, - [5662] = {.lex_state = 406, .external_lex_state = 5}, - [5663] = {.lex_state = 27, .external_lex_state = 2}, - [5664] = {.lex_state = 406, .external_lex_state = 5}, - [5665] = {.lex_state = 406, .external_lex_state = 5}, - [5666] = {.lex_state = 406, .external_lex_state = 2}, - [5667] = {.lex_state = 406, .external_lex_state = 2}, - [5668] = {.lex_state = 406, .external_lex_state = 2}, - [5669] = {.lex_state = 406, .external_lex_state = 2}, - [5670] = {.lex_state = 406, .external_lex_state = 2}, - [5671] = {.lex_state = 406, .external_lex_state = 5}, - [5672] = {.lex_state = 406, .external_lex_state = 5}, - [5673] = {.lex_state = 406, .external_lex_state = 5}, - [5674] = {.lex_state = 406, .external_lex_state = 5}, - [5675] = {.lex_state = 406, .external_lex_state = 5}, - [5676] = {.lex_state = 406, .external_lex_state = 5}, - [5677] = {.lex_state = 406, .external_lex_state = 2}, - [5678] = {.lex_state = 48, .external_lex_state = 2}, - [5679] = {.lex_state = 406, .external_lex_state = 5}, - [5680] = {.lex_state = 48, .external_lex_state = 2}, - [5681] = {.lex_state = 406, .external_lex_state = 5}, - [5682] = {.lex_state = 406, .external_lex_state = 5}, - [5683] = {.lex_state = 406, .external_lex_state = 5}, - [5684] = {.lex_state = 406, .external_lex_state = 5}, - [5685] = {.lex_state = 406, .external_lex_state = 5}, - [5686] = {.lex_state = 406, .external_lex_state = 5}, - [5687] = {.lex_state = 406, .external_lex_state = 5}, - [5688] = {.lex_state = 406, .external_lex_state = 5}, - [5689] = {.lex_state = 406, .external_lex_state = 5}, - [5690] = {.lex_state = 406, .external_lex_state = 5}, - [5691] = {.lex_state = 406, .external_lex_state = 5}, - [5692] = {.lex_state = 50, .external_lex_state = 2}, - [5693] = {.lex_state = 406, .external_lex_state = 2}, - [5694] = {.lex_state = 48, .external_lex_state = 2}, - [5695] = {.lex_state = 406, .external_lex_state = 5}, - [5696] = {.lex_state = 406, .external_lex_state = 5}, - [5697] = {.lex_state = 406, .external_lex_state = 5}, - [5698] = {.lex_state = 406, .external_lex_state = 5}, - [5699] = {.lex_state = 406, .external_lex_state = 5}, - [5700] = {.lex_state = 406, .external_lex_state = 5}, - [5701] = {.lex_state = 406, .external_lex_state = 5}, - [5702] = {.lex_state = 406, .external_lex_state = 5}, - [5703] = {.lex_state = 406, .external_lex_state = 5}, - [5704] = {.lex_state = 406, .external_lex_state = 5}, - [5705] = {.lex_state = 406, .external_lex_state = 5}, - [5706] = {.lex_state = 406, .external_lex_state = 2}, - [5707] = {.lex_state = 406, .external_lex_state = 5}, - [5708] = {.lex_state = 406, .external_lex_state = 5}, - [5709] = {.lex_state = 406, .external_lex_state = 5}, - [5710] = {.lex_state = 48, .external_lex_state = 2}, - [5711] = {.lex_state = 406, .external_lex_state = 5}, - [5712] = {.lex_state = 406, .external_lex_state = 5}, - [5713] = {.lex_state = 406, .external_lex_state = 5}, - [5714] = {.lex_state = 406, .external_lex_state = 2}, - [5715] = {.lex_state = 406, .external_lex_state = 2}, + [5639] = {.lex_state = 48, .external_lex_state = 2}, + [5640] = {.lex_state = 48, .external_lex_state = 2}, + [5641] = {.lex_state = 48, .external_lex_state = 2}, + [5642] = {.lex_state = 405, .external_lex_state = 5}, + [5643] = {.lex_state = 405, .external_lex_state = 5}, + [5644] = {.lex_state = 48, .external_lex_state = 2}, + [5645] = {.lex_state = 405, .external_lex_state = 5}, + [5646] = {.lex_state = 405, .external_lex_state = 2}, + [5647] = {.lex_state = 27, .external_lex_state = 2}, + [5648] = {.lex_state = 27, .external_lex_state = 2}, + [5649] = {.lex_state = 405, .external_lex_state = 2}, + [5650] = {.lex_state = 50, .external_lex_state = 5}, + [5651] = {.lex_state = 50, .external_lex_state = 5}, + [5652] = {.lex_state = 48, .external_lex_state = 2}, + [5653] = {.lex_state = 405, .external_lex_state = 2}, + [5654] = {.lex_state = 405, .external_lex_state = 2}, + [5655] = {.lex_state = 48, .external_lex_state = 2}, + [5656] = {.lex_state = 405, .external_lex_state = 2}, + [5657] = {.lex_state = 50, .external_lex_state = 2}, + [5658] = {.lex_state = 405, .external_lex_state = 5}, + [5659] = {.lex_state = 405, .external_lex_state = 5}, + [5660] = {.lex_state = 405, .external_lex_state = 2}, + [5661] = {.lex_state = 405, .external_lex_state = 2}, + [5662] = {.lex_state = 405, .external_lex_state = 2}, + [5663] = {.lex_state = 48, .external_lex_state = 2}, + [5664] = {.lex_state = 24, .external_lex_state = 2}, + [5665] = {.lex_state = 405, .external_lex_state = 2}, + [5666] = {.lex_state = 50, .external_lex_state = 2}, + [5667] = {.lex_state = 405, .external_lex_state = 2}, + [5668] = {.lex_state = 405, .external_lex_state = 2}, + [5669] = {.lex_state = 27, .external_lex_state = 2}, + [5670] = {.lex_state = 48, .external_lex_state = 2}, + [5671] = {.lex_state = 405, .external_lex_state = 5}, + [5672] = {.lex_state = 405, .external_lex_state = 5}, + [5673] = {.lex_state = 405, .external_lex_state = 2}, + [5674] = {.lex_state = 405, .external_lex_state = 2}, + [5675] = {.lex_state = 405, .external_lex_state = 2}, + [5676] = {.lex_state = 48, .external_lex_state = 2}, + [5677] = {.lex_state = 405, .external_lex_state = 5}, + [5678] = {.lex_state = 405, .external_lex_state = 5}, + [5679] = {.lex_state = 405, .external_lex_state = 5}, + [5680] = {.lex_state = 405, .external_lex_state = 2}, + [5681] = {.lex_state = 405, .external_lex_state = 5}, + [5682] = {.lex_state = 405, .external_lex_state = 2}, + [5683] = {.lex_state = 405, .external_lex_state = 5}, + [5684] = {.lex_state = 405, .external_lex_state = 5}, + [5685] = {.lex_state = 405, .external_lex_state = 2}, + [5686] = {.lex_state = 48, .external_lex_state = 2}, + [5687] = {.lex_state = 75, .external_lex_state = 2}, + [5688] = {.lex_state = 405, .external_lex_state = 2}, + [5689] = {.lex_state = 405, .external_lex_state = 2}, + [5690] = {.lex_state = 405, .external_lex_state = 2}, + [5691] = {.lex_state = 75, .external_lex_state = 2}, + [5692] = {.lex_state = 405, .external_lex_state = 2}, + [5693] = {.lex_state = 405, .external_lex_state = 2}, + [5694] = {.lex_state = 405, .external_lex_state = 2}, + [5695] = {.lex_state = 405, .external_lex_state = 2}, + [5696] = {.lex_state = 59, .external_lex_state = 9}, + [5697] = {.lex_state = 68, .external_lex_state = 9}, + [5698] = {.lex_state = 84, .external_lex_state = 2}, + [5699] = {.lex_state = 405, .external_lex_state = 2}, + [5700] = {.lex_state = 405, .external_lex_state = 2}, + [5701] = {.lex_state = 405, .external_lex_state = 5}, + [5702] = {.lex_state = 405, .external_lex_state = 5}, + [5703] = {.lex_state = 50, .external_lex_state = 2}, + [5704] = {.lex_state = 50, .external_lex_state = 2}, + [5705] = {.lex_state = 405, .external_lex_state = 5}, + [5706] = {.lex_state = 405, .external_lex_state = 5}, + [5707] = {.lex_state = 405, .external_lex_state = 5}, + [5708] = {.lex_state = 405, .external_lex_state = 5}, + [5709] = {.lex_state = 405, .external_lex_state = 5}, + [5710] = {.lex_state = 405, .external_lex_state = 2}, + [5711] = {.lex_state = 48, .external_lex_state = 2}, + [5712] = {.lex_state = 405, .external_lex_state = 2}, + [5713] = {.lex_state = 405, .external_lex_state = 5}, + [5714] = {.lex_state = 405, .external_lex_state = 2}, + [5715] = {.lex_state = 24, .external_lex_state = 2}, [5716] = {.lex_state = 48, .external_lex_state = 2}, - [5717] = {.lex_state = 406, .external_lex_state = 5}, - [5718] = {.lex_state = 406, .external_lex_state = 5}, - [5719] = {.lex_state = 406, .external_lex_state = 5}, - [5720] = {.lex_state = 27, .external_lex_state = 2}, - [5721] = {.lex_state = 406, .external_lex_state = 5}, - [5722] = {.lex_state = 406, .external_lex_state = 2}, - [5723] = {.lex_state = 406, .external_lex_state = 2}, - [5724] = {.lex_state = 24, .external_lex_state = 2}, - [5725] = {.lex_state = 406, .external_lex_state = 5}, - [5726] = {.lex_state = 50, .external_lex_state = 2}, - [5727] = {.lex_state = 48, .external_lex_state = 2}, - [5728] = {.lex_state = 406, .external_lex_state = 5}, - [5729] = {.lex_state = 406, .external_lex_state = 5}, - [5730] = {.lex_state = 48, .external_lex_state = 2}, - [5731] = {.lex_state = 406, .external_lex_state = 5}, - [5732] = {.lex_state = 48, .external_lex_state = 2}, - [5733] = {.lex_state = 406, .external_lex_state = 5}, - [5734] = {.lex_state = 406, .external_lex_state = 5}, - [5735] = {.lex_state = 406, .external_lex_state = 5}, - [5736] = {.lex_state = 406, .external_lex_state = 5}, - [5737] = {.lex_state = 48, .external_lex_state = 2}, - [5738] = {.lex_state = 406, .external_lex_state = 5}, - [5739] = {.lex_state = 406, .external_lex_state = 2}, - [5740] = {.lex_state = 406, .external_lex_state = 2}, - [5741] = {.lex_state = 406, .external_lex_state = 5}, - [5742] = {.lex_state = 406, .external_lex_state = 5}, - [5743] = {.lex_state = 406, .external_lex_state = 2}, - [5744] = {.lex_state = 406, .external_lex_state = 5}, - [5745] = {.lex_state = 406, .external_lex_state = 5}, - [5746] = {.lex_state = 406, .external_lex_state = 5}, - [5747] = {.lex_state = 406, .external_lex_state = 5}, - [5748] = {.lex_state = 406, .external_lex_state = 2}, - [5749] = {.lex_state = 406, .external_lex_state = 5}, - [5750] = {.lex_state = 406, .external_lex_state = 5}, - [5751] = {.lex_state = 406, .external_lex_state = 5}, - [5752] = {.lex_state = 406, .external_lex_state = 5}, - [5753] = {.lex_state = 50, .external_lex_state = 2}, - [5754] = {.lex_state = 406, .external_lex_state = 5}, - [5755] = {.lex_state = 50, .external_lex_state = 2}, - [5756] = {.lex_state = 406, .external_lex_state = 5}, - [5757] = {.lex_state = 50, .external_lex_state = 2}, - [5758] = {.lex_state = 406, .external_lex_state = 5}, + [5717] = {.lex_state = 405, .external_lex_state = 2}, + [5718] = {.lex_state = 405, .external_lex_state = 5}, + [5719] = {.lex_state = 48, .external_lex_state = 2}, + [5720] = {.lex_state = 405, .external_lex_state = 2}, + [5721] = {.lex_state = 405, .external_lex_state = 2}, + [5722] = {.lex_state = 405, .external_lex_state = 2}, + [5723] = {.lex_state = 405, .external_lex_state = 5}, + [5724] = {.lex_state = 405, .external_lex_state = 2}, + [5725] = {.lex_state = 405, .external_lex_state = 2}, + [5726] = {.lex_state = 27, .external_lex_state = 2}, + [5727] = {.lex_state = 405, .external_lex_state = 2}, + [5728] = {.lex_state = 405, .external_lex_state = 2}, + [5729] = {.lex_state = 405, .external_lex_state = 2}, + [5730] = {.lex_state = 50, .external_lex_state = 2}, + [5731] = {.lex_state = 405, .external_lex_state = 5}, + [5732] = {.lex_state = 24, .external_lex_state = 2}, + [5733] = {.lex_state = 48, .external_lex_state = 2}, + [5734] = {.lex_state = 405, .external_lex_state = 2}, + [5735] = {.lex_state = 405, .external_lex_state = 2}, + [5736] = {.lex_state = 48, .external_lex_state = 2}, + [5737] = {.lex_state = 405, .external_lex_state = 5}, + [5738] = {.lex_state = 48, .external_lex_state = 2}, + [5739] = {.lex_state = 75, .external_lex_state = 2}, + [5740] = {.lex_state = 24, .external_lex_state = 2}, + [5741] = {.lex_state = 405, .external_lex_state = 2}, + [5742] = {.lex_state = 405, .external_lex_state = 2}, + [5743] = {.lex_state = 405, .external_lex_state = 2}, + [5744] = {.lex_state = 49, .external_lex_state = 2}, + [5745] = {.lex_state = 405, .external_lex_state = 5}, + [5746] = {.lex_state = 89, .external_lex_state = 2}, + [5747] = {.lex_state = 89, .external_lex_state = 2}, + [5748] = {.lex_state = 405, .external_lex_state = 2}, + [5749] = {.lex_state = 405, .external_lex_state = 2}, + [5750] = {.lex_state = 405, .external_lex_state = 5}, + [5751] = {.lex_state = 405, .external_lex_state = 5}, + [5752] = {.lex_state = 405, .external_lex_state = 5}, + [5753] = {.lex_state = 405, .external_lex_state = 2}, + [5754] = {.lex_state = 50, .external_lex_state = 2}, + [5755] = {.lex_state = 405, .external_lex_state = 2}, + [5756] = {.lex_state = 405, .external_lex_state = 5}, + [5757] = {.lex_state = 405, .external_lex_state = 5}, + [5758] = {.lex_state = 24, .external_lex_state = 2}, [5759] = {.lex_state = 50, .external_lex_state = 2}, - [5760] = {.lex_state = 406, .external_lex_state = 5}, - [5761] = {.lex_state = 406, .external_lex_state = 2}, - [5762] = {.lex_state = 406, .external_lex_state = 2}, - [5763] = {.lex_state = 406, .external_lex_state = 2}, - [5764] = {.lex_state = 406, .external_lex_state = 5}, - [5765] = {.lex_state = 406, .external_lex_state = 5}, - [5766] = {.lex_state = 406, .external_lex_state = 5}, - [5767] = {.lex_state = 406, .external_lex_state = 5}, - [5768] = {.lex_state = 406, .external_lex_state = 2}, - [5769] = {.lex_state = 406, .external_lex_state = 5}, - [5770] = {.lex_state = 406, .external_lex_state = 2}, - [5771] = {.lex_state = 406, .external_lex_state = 5}, - [5772] = {.lex_state = 406, .external_lex_state = 5}, - [5773] = {.lex_state = 406, .external_lex_state = 2}, - [5774] = {.lex_state = 406, .external_lex_state = 2}, - [5775] = {.lex_state = 406, .external_lex_state = 5}, - [5776] = {.lex_state = 406, .external_lex_state = 2}, - [5777] = {.lex_state = 406, .external_lex_state = 2}, - [5778] = {.lex_state = 59, .external_lex_state = 9}, - [5779] = {.lex_state = 406, .external_lex_state = 5}, - [5780] = {.lex_state = 406, .external_lex_state = 5}, - [5781] = {.lex_state = 68, .external_lex_state = 9}, - [5782] = {.lex_state = 406, .external_lex_state = 5}, - [5783] = {.lex_state = 84, .external_lex_state = 2}, - [5784] = {.lex_state = 406, .external_lex_state = 5}, - [5785] = {.lex_state = 406, .external_lex_state = 2}, - [5786] = {.lex_state = 406, .external_lex_state = 5}, - [5787] = {.lex_state = 406, .external_lex_state = 5}, - [5788] = {.lex_state = 406, .external_lex_state = 5}, - [5789] = {.lex_state = 406, .external_lex_state = 5}, - [5790] = {.lex_state = 406, .external_lex_state = 5}, - [5791] = {.lex_state = 406, .external_lex_state = 5}, - [5792] = {.lex_state = 406, .external_lex_state = 2}, - [5793] = {.lex_state = 406, .external_lex_state = 5}, - [5794] = {.lex_state = 48, .external_lex_state = 2}, - [5795] = {.lex_state = 406, .external_lex_state = 5}, - [5796] = {.lex_state = 406, .external_lex_state = 5}, - [5797] = {.lex_state = 406, .external_lex_state = 5}, - [5798] = {.lex_state = 406, .external_lex_state = 5}, - [5799] = {.lex_state = 406, .external_lex_state = 5}, - [5800] = {.lex_state = 406, .external_lex_state = 5}, - [5801] = {.lex_state = 406, .external_lex_state = 5}, - [5802] = {.lex_state = 50, .external_lex_state = 2}, - [5803] = {.lex_state = 406, .external_lex_state = 5}, - [5804] = {.lex_state = 50, .external_lex_state = 2}, - [5805] = {.lex_state = 406, .external_lex_state = 5}, - [5806] = {.lex_state = 406, .external_lex_state = 5}, - [5807] = {.lex_state = 406, .external_lex_state = 5}, - [5808] = {.lex_state = 406, .external_lex_state = 5}, - [5809] = {.lex_state = 406, .external_lex_state = 5}, - [5810] = {.lex_state = 406, .external_lex_state = 2}, - [5811] = {.lex_state = 48, .external_lex_state = 2}, - [5812] = {.lex_state = 406, .external_lex_state = 5}, - [5813] = {.lex_state = 406, .external_lex_state = 5}, - [5814] = {.lex_state = 406, .external_lex_state = 5}, - [5815] = {.lex_state = 406, .external_lex_state = 5}, - [5816] = {.lex_state = 406, .external_lex_state = 2}, - [5817] = {.lex_state = 406, .external_lex_state = 5}, - [5818] = {.lex_state = 406, .external_lex_state = 2}, - [5819] = {.lex_state = 406, .external_lex_state = 2}, - [5820] = {.lex_state = 406, .external_lex_state = 5}, - [5821] = {.lex_state = 406, .external_lex_state = 5}, - [5822] = {.lex_state = 406, .external_lex_state = 2}, - [5823] = {.lex_state = 406, .external_lex_state = 5}, - [5824] = {.lex_state = 49, .external_lex_state = 2}, - [5825] = {.lex_state = 406, .external_lex_state = 5}, - [5826] = {.lex_state = 406, .external_lex_state = 5}, - [5827] = {.lex_state = 406, .external_lex_state = 5}, - [5828] = {.lex_state = 406, .external_lex_state = 5}, - [5829] = {.lex_state = 406, .external_lex_state = 2}, - [5830] = {.lex_state = 406, .external_lex_state = 5}, - [5831] = {.lex_state = 406, .external_lex_state = 5}, - [5832] = {.lex_state = 24, .external_lex_state = 2}, - [5833] = {.lex_state = 406, .external_lex_state = 5}, - [5834] = {.lex_state = 406, .external_lex_state = 5}, - [5835] = {.lex_state = 406, .external_lex_state = 8}, - [5836] = {.lex_state = 406, .external_lex_state = 2}, - [5837] = {.lex_state = 406, .external_lex_state = 5}, - [5838] = {.lex_state = 406, .external_lex_state = 5}, - [5839] = {.lex_state = 27, .external_lex_state = 2}, - [5840] = {.lex_state = 50, .external_lex_state = 5}, + [5760] = {.lex_state = 405, .external_lex_state = 5}, + [5761] = {.lex_state = 50, .external_lex_state = 2}, + [5762] = {.lex_state = 405, .external_lex_state = 5}, + [5763] = {.lex_state = 50, .external_lex_state = 2}, + [5764] = {.lex_state = 49, .external_lex_state = 2}, + [5765] = {.lex_state = 50, .external_lex_state = 2}, + [5766] = {.lex_state = 405, .external_lex_state = 5}, + [5767] = {.lex_state = 405, .external_lex_state = 2}, + [5768] = {.lex_state = 405, .external_lex_state = 2}, + [5769] = {.lex_state = 405, .external_lex_state = 2}, + [5770] = {.lex_state = 405, .external_lex_state = 5}, + [5771] = {.lex_state = 405, .external_lex_state = 2}, + [5772] = {.lex_state = 405, .external_lex_state = 5}, + [5773] = {.lex_state = 405, .external_lex_state = 5}, + [5774] = {.lex_state = 405, .external_lex_state = 2}, + [5775] = {.lex_state = 405, .external_lex_state = 5}, + [5776] = {.lex_state = 405, .external_lex_state = 2}, + [5777] = {.lex_state = 405, .external_lex_state = 5}, + [5778] = {.lex_state = 405, .external_lex_state = 5}, + [5779] = {.lex_state = 405, .external_lex_state = 5}, + [5780] = {.lex_state = 405, .external_lex_state = 5}, + [5781] = {.lex_state = 405, .external_lex_state = 5}, + [5782] = {.lex_state = 405, .external_lex_state = 5}, + [5783] = {.lex_state = 405, .external_lex_state = 5}, + [5784] = {.lex_state = 405, .external_lex_state = 5}, + [5785] = {.lex_state = 89, .external_lex_state = 2}, + [5786] = {.lex_state = 405, .external_lex_state = 5}, + [5787] = {.lex_state = 405, .external_lex_state = 5}, + [5788] = {.lex_state = 405, .external_lex_state = 5}, + [5789] = {.lex_state = 405, .external_lex_state = 5}, + [5790] = {.lex_state = 405, .external_lex_state = 5}, + [5791] = {.lex_state = 405, .external_lex_state = 5}, + [5792] = {.lex_state = 405, .external_lex_state = 2}, + [5793] = {.lex_state = 405, .external_lex_state = 5}, + [5794] = {.lex_state = 405, .external_lex_state = 2}, + [5795] = {.lex_state = 405, .external_lex_state = 2}, + [5796] = {.lex_state = 405, .external_lex_state = 5}, + [5797] = {.lex_state = 405, .external_lex_state = 2}, + [5798] = {.lex_state = 405, .external_lex_state = 5}, + [5799] = {.lex_state = 50, .external_lex_state = 2}, + [5800] = {.lex_state = 405, .external_lex_state = 5}, + [5801] = {.lex_state = 24, .external_lex_state = 2}, + [5802] = {.lex_state = 405, .external_lex_state = 5}, + [5803] = {.lex_state = 405, .external_lex_state = 2}, + [5804] = {.lex_state = 405, .external_lex_state = 5}, + [5805] = {.lex_state = 405, .external_lex_state = 2}, + [5806] = {.lex_state = 405, .external_lex_state = 5}, + [5807] = {.lex_state = 405, .external_lex_state = 5}, + [5808] = {.lex_state = 405, .external_lex_state = 5}, + [5809] = {.lex_state = 405, .external_lex_state = 5}, + [5810] = {.lex_state = 405, .external_lex_state = 5}, + [5811] = {.lex_state = 405, .external_lex_state = 5}, + [5812] = {.lex_state = 405, .external_lex_state = 5}, + [5813] = {.lex_state = 405, .external_lex_state = 5}, + [5814] = {.lex_state = 405, .external_lex_state = 5}, + [5815] = {.lex_state = 405, .external_lex_state = 5}, + [5816] = {.lex_state = 405, .external_lex_state = 5}, + [5817] = {.lex_state = 405, .external_lex_state = 5}, + [5818] = {.lex_state = 405, .external_lex_state = 5}, + [5819] = {.lex_state = 405, .external_lex_state = 5}, + [5820] = {.lex_state = 405, .external_lex_state = 5}, + [5821] = {.lex_state = 405, .external_lex_state = 5}, + [5822] = {.lex_state = 405, .external_lex_state = 5}, + [5823] = {.lex_state = 405, .external_lex_state = 5}, + [5824] = {.lex_state = 405, .external_lex_state = 5}, + [5825] = {.lex_state = 405, .external_lex_state = 5}, + [5826] = {.lex_state = 405, .external_lex_state = 5}, + [5827] = {.lex_state = 405, .external_lex_state = 5}, + [5828] = {.lex_state = 405, .external_lex_state = 5}, + [5829] = {.lex_state = 405, .external_lex_state = 5}, + [5830] = {.lex_state = 50, .external_lex_state = 2}, + [5831] = {.lex_state = 405, .external_lex_state = 5}, + [5832] = {.lex_state = 405, .external_lex_state = 5}, + [5833] = {.lex_state = 405, .external_lex_state = 5}, + [5834] = {.lex_state = 405, .external_lex_state = 5}, + [5835] = {.lex_state = 405, .external_lex_state = 5}, + [5836] = {.lex_state = 405, .external_lex_state = 5}, + [5837] = {.lex_state = 405, .external_lex_state = 5}, + [5838] = {.lex_state = 405, .external_lex_state = 5}, + [5839] = {.lex_state = 405, .external_lex_state = 5}, + [5840] = {.lex_state = 405, .external_lex_state = 5}, [5841] = {.lex_state = 50, .external_lex_state = 5}, - [5842] = {.lex_state = 27, .external_lex_state = 2}, - [5843] = {.lex_state = 406, .external_lex_state = 5}, - [5844] = {.lex_state = 406, .external_lex_state = 5}, - [5845] = {.lex_state = 27, .external_lex_state = 2}, - [5846] = {.lex_state = 54, .external_lex_state = 2}, - [5847] = {.lex_state = 406, .external_lex_state = 2}, - [5848] = {.lex_state = 406, .external_lex_state = 2}, - [5849] = {.lex_state = 406, .external_lex_state = 5}, - [5850] = {.lex_state = 406, .external_lex_state = 5}, - [5851] = {.lex_state = 406, .external_lex_state = 5}, - [5852] = {.lex_state = 406, .external_lex_state = 5}, - [5853] = {.lex_state = 406, .external_lex_state = 5}, - [5854] = {.lex_state = 66, .external_lex_state = 2}, - [5855] = {.lex_state = 406, .external_lex_state = 5}, - [5856] = {.lex_state = 406, .external_lex_state = 5}, - [5857] = {.lex_state = 27, .external_lex_state = 2}, - [5858] = {.lex_state = 27, .external_lex_state = 2}, - [5859] = {.lex_state = 50, .external_lex_state = 2}, - [5860] = {.lex_state = 406, .external_lex_state = 5}, - [5861] = {.lex_state = 406, .external_lex_state = 5}, - [5862] = {.lex_state = 24, .external_lex_state = 2}, - [5863] = {.lex_state = 406, .external_lex_state = 2}, - [5864] = {.lex_state = 406, .external_lex_state = 2}, - [5865] = {.lex_state = 406, .external_lex_state = 5}, - [5866] = {.lex_state = 27, .external_lex_state = 2}, - [5867] = {.lex_state = 27, .external_lex_state = 2}, - [5868] = {.lex_state = 406, .external_lex_state = 2}, - [5869] = {.lex_state = 406, .external_lex_state = 2}, - [5870] = {.lex_state = 27, .external_lex_state = 2}, + [5842] = {.lex_state = 405, .external_lex_state = 2}, + [5843] = {.lex_state = 405, .external_lex_state = 5}, + [5844] = {.lex_state = 405, .external_lex_state = 5}, + [5845] = {.lex_state = 405, .external_lex_state = 5}, + [5846] = {.lex_state = 50, .external_lex_state = 5}, + [5847] = {.lex_state = 50, .external_lex_state = 5}, + [5848] = {.lex_state = 405, .external_lex_state = 5}, + [5849] = {.lex_state = 50, .external_lex_state = 5}, + [5850] = {.lex_state = 405, .external_lex_state = 5}, + [5851] = {.lex_state = 405, .external_lex_state = 5}, + [5852] = {.lex_state = 405, .external_lex_state = 5}, + [5853] = {.lex_state = 405, .external_lex_state = 5}, + [5854] = {.lex_state = 405, .external_lex_state = 5}, + [5855] = {.lex_state = 405, .external_lex_state = 2}, + [5856] = {.lex_state = 405, .external_lex_state = 5}, + [5857] = {.lex_state = 48, .external_lex_state = 2}, + [5858] = {.lex_state = 405, .external_lex_state = 5}, + [5859] = {.lex_state = 405, .external_lex_state = 5}, + [5860] = {.lex_state = 405, .external_lex_state = 5}, + [5861] = {.lex_state = 405, .external_lex_state = 5}, + [5862] = {.lex_state = 405, .external_lex_state = 5}, + [5863] = {.lex_state = 405, .external_lex_state = 5}, + [5864] = {.lex_state = 405, .external_lex_state = 5}, + [5865] = {.lex_state = 405, .external_lex_state = 5}, + [5866] = {.lex_state = 405, .external_lex_state = 5}, + [5867] = {.lex_state = 405, .external_lex_state = 5}, + [5868] = {.lex_state = 405, .external_lex_state = 5}, + [5869] = {.lex_state = 405, .external_lex_state = 5}, + [5870] = {.lex_state = 405, .external_lex_state = 5}, [5871] = {.lex_state = 27, .external_lex_state = 2}, - [5872] = {.lex_state = 406, .external_lex_state = 5}, - [5873] = {.lex_state = 27, .external_lex_state = 2}, - [5874] = {.lex_state = 406, .external_lex_state = 2}, - [5875] = {.lex_state = 27, .external_lex_state = 2}, - [5876] = {.lex_state = 27, .external_lex_state = 2}, - [5877] = {.lex_state = 406, .external_lex_state = 5}, - [5878] = {.lex_state = 406, .external_lex_state = 5}, - [5879] = {.lex_state = 406, .external_lex_state = 5}, - [5880] = {.lex_state = 406, .external_lex_state = 5}, - [5881] = {.lex_state = 406, .external_lex_state = 5}, - [5882] = {.lex_state = 406, .external_lex_state = 5}, - [5883] = {.lex_state = 406, .external_lex_state = 5}, - [5884] = {.lex_state = 89, .external_lex_state = 2}, - [5885] = {.lex_state = 406, .external_lex_state = 2}, - [5886] = {.lex_state = 406, .external_lex_state = 5}, - [5887] = {.lex_state = 406, .external_lex_state = 5}, - [5888] = {.lex_state = 406, .external_lex_state = 5}, - [5889] = {.lex_state = 406, .external_lex_state = 5}, - [5890] = {.lex_state = 406, .external_lex_state = 2}, - [5891] = {.lex_state = 406, .external_lex_state = 5}, - [5892] = {.lex_state = 406, .external_lex_state = 5}, - [5893] = {.lex_state = 50, .external_lex_state = 2}, - [5894] = {.lex_state = 406, .external_lex_state = 5}, - [5895] = {.lex_state = 406, .external_lex_state = 2}, - [5896] = {.lex_state = 406, .external_lex_state = 5}, - [5897] = {.lex_state = 406, .external_lex_state = 2}, - [5898] = {.lex_state = 50, .external_lex_state = 2}, - [5899] = {.lex_state = 24, .external_lex_state = 2}, - [5900] = {.lex_state = 406, .external_lex_state = 5}, - [5901] = {.lex_state = 75, .external_lex_state = 2}, - [5902] = {.lex_state = 406, .external_lex_state = 5}, - [5903] = {.lex_state = 406, .external_lex_state = 5}, - [5904] = {.lex_state = 406, .external_lex_state = 5}, - [5905] = {.lex_state = 406, .external_lex_state = 5}, - [5906] = {.lex_state = 406, .external_lex_state = 2}, - [5907] = {.lex_state = 406, .external_lex_state = 2}, - [5908] = {.lex_state = 406, .external_lex_state = 5}, - [5909] = {.lex_state = 406, .external_lex_state = 5}, - [5910] = {.lex_state = 406, .external_lex_state = 5}, - [5911] = {.lex_state = 406, .external_lex_state = 5}, - [5912] = {.lex_state = 406, .external_lex_state = 5}, - [5913] = {.lex_state = 406, .external_lex_state = 2}, - [5914] = {.lex_state = 406, .external_lex_state = 5}, - [5915] = {.lex_state = 406, .external_lex_state = 5}, - [5916] = {.lex_state = 406, .external_lex_state = 5}, - [5917] = {.lex_state = 406, .external_lex_state = 5}, - [5918] = {.lex_state = 50, .external_lex_state = 5}, - [5919] = {.lex_state = 50, .external_lex_state = 5}, - [5920] = {.lex_state = 406, .external_lex_state = 5}, - [5921] = {.lex_state = 24, .external_lex_state = 2}, - [5922] = {.lex_state = 89, .external_lex_state = 2}, - [5923] = {.lex_state = 406, .external_lex_state = 2}, - [5924] = {.lex_state = 406, .external_lex_state = 5}, - [5925] = {.lex_state = 89, .external_lex_state = 2}, - [5926] = {.lex_state = 406, .external_lex_state = 5}, - [5927] = {.lex_state = 406, .external_lex_state = 5}, - [5928] = {.lex_state = 406, .external_lex_state = 5}, - [5929] = {.lex_state = 406, .external_lex_state = 2}, - [5930] = {.lex_state = 406, .external_lex_state = 5}, - [5931] = {.lex_state = 24, .external_lex_state = 2}, - [5932] = {.lex_state = 406, .external_lex_state = 5}, - [5933] = {.lex_state = 406, .external_lex_state = 5}, - [5934] = {.lex_state = 406, .external_lex_state = 2}, - [5935] = {.lex_state = 406, .external_lex_state = 2}, - [5936] = {.lex_state = 406, .external_lex_state = 5}, - [5937] = {.lex_state = 406, .external_lex_state = 5}, - [5938] = {.lex_state = 406, .external_lex_state = 5}, - [5939] = {.lex_state = 406, .external_lex_state = 5}, - [5940] = {.lex_state = 406, .external_lex_state = 5}, - [5941] = {.lex_state = 406, .external_lex_state = 5}, - [5942] = {.lex_state = 406, .external_lex_state = 5}, - [5943] = {.lex_state = 406, .external_lex_state = 5}, - [5944] = {.lex_state = 406, .external_lex_state = 5}, - [5945] = {.lex_state = 406, .external_lex_state = 5}, - [5946] = {.lex_state = 406, .external_lex_state = 5}, - [5947] = {.lex_state = 49, .external_lex_state = 2}, - [5948] = {.lex_state = 406, .external_lex_state = 5}, - [5949] = {.lex_state = 406, .external_lex_state = 5}, - [5950] = {.lex_state = 406, .external_lex_state = 5}, - [5951] = {.lex_state = 406, .external_lex_state = 5}, - [5952] = {.lex_state = 406, .external_lex_state = 2}, - [5953] = {.lex_state = 406, .external_lex_state = 2}, - [5954] = {.lex_state = 406, .external_lex_state = 5}, - [5955] = {.lex_state = 406, .external_lex_state = 5}, - [5956] = {.lex_state = 27, .external_lex_state = 2}, - [5957] = {.lex_state = 406, .external_lex_state = 5}, - [5958] = {.lex_state = 406, .external_lex_state = 5}, - [5959] = {.lex_state = 406, .external_lex_state = 2}, - [5960] = {.lex_state = 406, .external_lex_state = 2}, - [5961] = {.lex_state = 406, .external_lex_state = 2}, - [5962] = {.lex_state = 406, .external_lex_state = 5}, - [5963] = {.lex_state = 406, .external_lex_state = 5}, - [5964] = {.lex_state = 406, .external_lex_state = 5}, - [5965] = {.lex_state = 406, .external_lex_state = 5}, - [5966] = {.lex_state = 406, .external_lex_state = 2}, - [5967] = {.lex_state = 406, .external_lex_state = 5}, - [5968] = {.lex_state = 406, .external_lex_state = 2}, - [5969] = {.lex_state = 406, .external_lex_state = 5}, - [5970] = {.lex_state = 406, .external_lex_state = 2}, - [5971] = {.lex_state = 48, .external_lex_state = 2}, - [5972] = {.lex_state = 406, .external_lex_state = 2}, - [5973] = {.lex_state = 406, .external_lex_state = 5}, - [5974] = {.lex_state = 406, .external_lex_state = 2}, - [5975] = {.lex_state = 406, .external_lex_state = 5}, - [5976] = {.lex_state = 406, .external_lex_state = 5}, - [5977] = {.lex_state = 406, .external_lex_state = 5}, - [5978] = {.lex_state = 406, .external_lex_state = 5}, - [5979] = {.lex_state = 406, .external_lex_state = 5}, - [5980] = {.lex_state = 406, .external_lex_state = 5}, - [5981] = {.lex_state = 406, .external_lex_state = 5}, - [5982] = {.lex_state = 406, .external_lex_state = 5}, - [5983] = {.lex_state = 406, .external_lex_state = 5}, - [5984] = {.lex_state = 406, .external_lex_state = 5}, - [5985] = {.lex_state = 406, .external_lex_state = 2}, - [5986] = {.lex_state = 406, .external_lex_state = 5}, - [5987] = {.lex_state = 406, .external_lex_state = 5}, - [5988] = {.lex_state = 406, .external_lex_state = 5}, - [5989] = {.lex_state = 406, .external_lex_state = 5}, - [5990] = {.lex_state = 406, .external_lex_state = 5}, - [5991] = {.lex_state = 406, .external_lex_state = 5}, - [5992] = {.lex_state = 406, .external_lex_state = 5}, - [5993] = {.lex_state = 406, .external_lex_state = 5}, - [5994] = {.lex_state = 406, .external_lex_state = 5}, - [5995] = {.lex_state = 406, .external_lex_state = 5}, - [5996] = {.lex_state = 406, .external_lex_state = 2}, - [5997] = {.lex_state = 406, .external_lex_state = 5}, - [5998] = {.lex_state = 406, .external_lex_state = 5}, - [5999] = {.lex_state = 406, .external_lex_state = 5}, - [6000] = {.lex_state = 48, .external_lex_state = 2}, - [6001] = {.lex_state = 406, .external_lex_state = 5}, - [6002] = {.lex_state = 406, .external_lex_state = 5}, - [6003] = {.lex_state = 406, .external_lex_state = 5}, - [6004] = {.lex_state = 406, .external_lex_state = 5}, - [6005] = {.lex_state = 406, .external_lex_state = 5}, - [6006] = {.lex_state = 89, .external_lex_state = 2}, - [6007] = {.lex_state = 406, .external_lex_state = 5}, - [6008] = {.lex_state = 406, .external_lex_state = 5}, - [6009] = {.lex_state = 406, .external_lex_state = 5}, - [6010] = {.lex_state = 27, .external_lex_state = 2}, - [6011] = {.lex_state = 406, .external_lex_state = 5}, - [6012] = {.lex_state = 406, .external_lex_state = 2}, - [6013] = {.lex_state = 406, .external_lex_state = 2}, - [6014] = {.lex_state = 406, .external_lex_state = 5}, - [6015] = {.lex_state = 48, .external_lex_state = 2}, - [6016] = {.lex_state = 406, .external_lex_state = 5}, - [6017] = {.lex_state = 48, .external_lex_state = 2}, - [6018] = {.lex_state = 406, .external_lex_state = 5}, - [6019] = {.lex_state = 48, .external_lex_state = 2}, - [6020] = {.lex_state = 406, .external_lex_state = 5}, - [6021] = {.lex_state = 406, .external_lex_state = 5}, - [6022] = {.lex_state = 50, .external_lex_state = 2}, - [6023] = {.lex_state = 406, .external_lex_state = 5}, - [6024] = {.lex_state = 24, .external_lex_state = 2}, - [6025] = {.lex_state = 406, .external_lex_state = 5}, - [6026] = {.lex_state = 406, .external_lex_state = 5}, - [6027] = {.lex_state = 406, .external_lex_state = 5}, - [6028] = {.lex_state = 406, .external_lex_state = 5}, - [6029] = {.lex_state = 406, .external_lex_state = 5}, - [6030] = {.lex_state = 406, .external_lex_state = 5}, - [6031] = {.lex_state = 406, .external_lex_state = 5}, - [6032] = {.lex_state = 406, .external_lex_state = 5}, - [6033] = {.lex_state = 406, .external_lex_state = 5}, - [6034] = {.lex_state = 406, .external_lex_state = 5}, - [6035] = {.lex_state = 406, .external_lex_state = 5}, - [6036] = {.lex_state = 406, .external_lex_state = 5}, - [6037] = {.lex_state = 406, .external_lex_state = 5}, - [6038] = {.lex_state = 406, .external_lex_state = 5}, - [6039] = {.lex_state = 406, .external_lex_state = 5}, - [6040] = {.lex_state = 406, .external_lex_state = 5}, - [6041] = {.lex_state = 406, .external_lex_state = 5}, - [6042] = {.lex_state = 406, .external_lex_state = 5}, - [6043] = {.lex_state = 406, .external_lex_state = 5}, - [6044] = {.lex_state = 406, .external_lex_state = 2}, - [6045] = {.lex_state = 48, .external_lex_state = 2}, - [6046] = {.lex_state = 406, .external_lex_state = 5}, - [6047] = {.lex_state = 406, .external_lex_state = 5}, - [6048] = {.lex_state = 406, .external_lex_state = 5}, - [6049] = {.lex_state = 406, .external_lex_state = 5}, - [6050] = {.lex_state = 27, .external_lex_state = 2}, - [6051] = {.lex_state = 406, .external_lex_state = 2}, - [6052] = {.lex_state = 406, .external_lex_state = 5}, - [6053] = {.lex_state = 406, .external_lex_state = 2}, - [6054] = {.lex_state = 406, .external_lex_state = 5}, - [6055] = {.lex_state = 406, .external_lex_state = 5}, - [6056] = {.lex_state = 406, .external_lex_state = 5}, - [6057] = {.lex_state = 406, .external_lex_state = 5}, - [6058] = {.lex_state = 406, .external_lex_state = 2}, - [6059] = {.lex_state = 406, .external_lex_state = 5}, - [6060] = {.lex_state = 406, .external_lex_state = 2}, - [6061] = {.lex_state = 406, .external_lex_state = 2}, - [6062] = {.lex_state = 406, .external_lex_state = 5}, - [6063] = {.lex_state = 406, .external_lex_state = 5}, - [6064] = {.lex_state = 406, .external_lex_state = 5}, - [6065] = {.lex_state = 406, .external_lex_state = 5}, - [6066] = {.lex_state = 406, .external_lex_state = 5}, - [6067] = {.lex_state = 406, .external_lex_state = 5}, - [6068] = {.lex_state = 406, .external_lex_state = 5}, - [6069] = {.lex_state = 2, .external_lex_state = 2}, - [6070] = {.lex_state = 406, .external_lex_state = 5}, - [6071] = {.lex_state = 48, .external_lex_state = 2}, - [6072] = {.lex_state = 406, .external_lex_state = 5}, - [6073] = {.lex_state = 406, .external_lex_state = 5}, - [6074] = {.lex_state = 75, .external_lex_state = 2}, - [6075] = {.lex_state = 406, .external_lex_state = 5}, - [6076] = {.lex_state = 406, .external_lex_state = 5}, - [6077] = {.lex_state = 406, .external_lex_state = 5}, - [6078] = {.lex_state = 406, .external_lex_state = 5}, - [6079] = {.lex_state = 48, .external_lex_state = 2}, - [6080] = {.lex_state = 406, .external_lex_state = 5}, - [6081] = {.lex_state = 24, .external_lex_state = 2}, - [6082] = {.lex_state = 406, .external_lex_state = 5}, - [6083] = {.lex_state = 406, .external_lex_state = 5}, - [6084] = {.lex_state = 406, .external_lex_state = 2}, - [6085] = {.lex_state = 406, .external_lex_state = 5}, - [6086] = {.lex_state = 406, .external_lex_state = 5}, - [6087] = {.lex_state = 406, .external_lex_state = 5}, - [6088] = {.lex_state = 406, .external_lex_state = 5}, - [6089] = {.lex_state = 406, .external_lex_state = 5}, - [6090] = {.lex_state = 406, .external_lex_state = 5}, - [6091] = {.lex_state = 406, .external_lex_state = 5}, - [6092] = {.lex_state = 406, .external_lex_state = 5}, - [6093] = {.lex_state = 406, .external_lex_state = 5}, - [6094] = {.lex_state = 406, .external_lex_state = 5}, - [6095] = {.lex_state = 406, .external_lex_state = 5}, - [6096] = {.lex_state = 48, .external_lex_state = 2}, - [6097] = {.lex_state = 406, .external_lex_state = 5}, - [6098] = {.lex_state = 406, .external_lex_state = 2}, - [6099] = {.lex_state = 406, .external_lex_state = 5}, - [6100] = {.lex_state = 406, .external_lex_state = 2}, - [6101] = {.lex_state = 406, .external_lex_state = 2}, - [6102] = {.lex_state = 406, .external_lex_state = 5}, - [6103] = {.lex_state = 406, .external_lex_state = 5}, - [6104] = {.lex_state = 406, .external_lex_state = 5}, - [6105] = {.lex_state = 406, .external_lex_state = 2}, - [6106] = {.lex_state = 406, .external_lex_state = 5}, - [6107] = {.lex_state = 406, .external_lex_state = 5}, - [6108] = {.lex_state = 406, .external_lex_state = 5}, - [6109] = {.lex_state = 50, .external_lex_state = 5}, - [6110] = {.lex_state = 50, .external_lex_state = 5}, - [6111] = {.lex_state = 406, .external_lex_state = 2}, - [6112] = {.lex_state = 24, .external_lex_state = 2}, - [6113] = {.lex_state = 55, .external_lex_state = 2}, - [6114] = {.lex_state = 406, .external_lex_state = 5}, - [6115] = {.lex_state = 55, .external_lex_state = 2}, - [6116] = {.lex_state = 406, .external_lex_state = 2}, - [6117] = {.lex_state = 84, .external_lex_state = 2}, - [6118] = {.lex_state = 406, .external_lex_state = 5}, - [6119] = {.lex_state = 406, .external_lex_state = 2}, - [6120] = {.lex_state = 50, .external_lex_state = 5}, - [6121] = {.lex_state = 50, .external_lex_state = 5}, - [6122] = {.lex_state = 406, .external_lex_state = 5}, - [6123] = {.lex_state = 406, .external_lex_state = 5}, - [6124] = {.lex_state = 406, .external_lex_state = 5}, - [6125] = {.lex_state = 406, .external_lex_state = 5}, - [6126] = {.lex_state = 406, .external_lex_state = 5}, - [6127] = {.lex_state = 406, .external_lex_state = 5}, - [6128] = {.lex_state = 50, .external_lex_state = 2}, - [6129] = {.lex_state = 406, .external_lex_state = 5}, - [6130] = {.lex_state = 406, .external_lex_state = 5}, - [6131] = {.lex_state = 406, .external_lex_state = 5}, - [6132] = {.lex_state = 406, .external_lex_state = 5}, - [6133] = {.lex_state = 50, .external_lex_state = 2}, - [6134] = {.lex_state = 406, .external_lex_state = 5}, - [6135] = {.lex_state = 406, .external_lex_state = 5}, - [6136] = {.lex_state = 406, .external_lex_state = 5}, - [6137] = {.lex_state = 406, .external_lex_state = 2}, - [6138] = {.lex_state = 406, .external_lex_state = 5}, - [6139] = {.lex_state = 406, .external_lex_state = 5}, - [6140] = {.lex_state = 406, .external_lex_state = 2}, - [6141] = {.lex_state = 406, .external_lex_state = 2}, - [6142] = {.lex_state = 406, .external_lex_state = 2}, - [6143] = {.lex_state = 406, .external_lex_state = 2}, - [6144] = {.lex_state = 89, .external_lex_state = 2}, - [6145] = {.lex_state = 406, .external_lex_state = 2}, - [6146] = {.lex_state = 406, .external_lex_state = 2}, - [6147] = {.lex_state = 406, .external_lex_state = 2}, - [6148] = {.lex_state = 406, .external_lex_state = 5}, - [6149] = {.lex_state = 406, .external_lex_state = 5}, - [6150] = {.lex_state = 406, .external_lex_state = 5}, - [6151] = {.lex_state = 406, .external_lex_state = 2}, - [6152] = {.lex_state = 406, .external_lex_state = 5}, - [6153] = {.lex_state = 406, .external_lex_state = 2}, - [6154] = {.lex_state = 84, .external_lex_state = 2}, - [6155] = {.lex_state = 406, .external_lex_state = 2}, - [6156] = {.lex_state = 406, .external_lex_state = 2}, - [6157] = {.lex_state = 75, .external_lex_state = 2}, - [6158] = {.lex_state = 406, .external_lex_state = 2}, - [6159] = {.lex_state = 27, .external_lex_state = 2}, - [6160] = {.lex_state = 406, .external_lex_state = 2}, - [6161] = {.lex_state = 406, .external_lex_state = 2}, - [6162] = {.lex_state = 50, .external_lex_state = 2}, - [6163] = {.lex_state = 24, .external_lex_state = 2}, - [6164] = {.lex_state = 406, .external_lex_state = 8}, - [6165] = {.lex_state = 48, .external_lex_state = 2}, - [6166] = {.lex_state = 406, .external_lex_state = 2}, - [6167] = {.lex_state = 27, .external_lex_state = 2}, - [6168] = {.lex_state = 406, .external_lex_state = 5}, - [6169] = {.lex_state = 406, .external_lex_state = 5}, - [6170] = {.lex_state = 406, .external_lex_state = 5}, - [6171] = {.lex_state = 48, .external_lex_state = 2}, - [6172] = {.lex_state = 406, .external_lex_state = 5}, - [6173] = {.lex_state = 50, .external_lex_state = 2}, - [6174] = {.lex_state = 406, .external_lex_state = 5}, + [5872] = {.lex_state = 405, .external_lex_state = 5}, + [5873] = {.lex_state = 405, .external_lex_state = 5}, + [5874] = {.lex_state = 405, .external_lex_state = 5}, + [5875] = {.lex_state = 405, .external_lex_state = 5}, + [5876] = {.lex_state = 405, .external_lex_state = 5}, + [5877] = {.lex_state = 405, .external_lex_state = 5}, + [5878] = {.lex_state = 405, .external_lex_state = 5}, + [5879] = {.lex_state = 405, .external_lex_state = 5}, + [5880] = {.lex_state = 405, .external_lex_state = 2}, + [5881] = {.lex_state = 405, .external_lex_state = 2}, + [5882] = {.lex_state = 405, .external_lex_state = 5}, + [5883] = {.lex_state = 405, .external_lex_state = 2}, + [5884] = {.lex_state = 405, .external_lex_state = 5}, + [5885] = {.lex_state = 405, .external_lex_state = 5}, + [5886] = {.lex_state = 405, .external_lex_state = 5}, + [5887] = {.lex_state = 405, .external_lex_state = 5}, + [5888] = {.lex_state = 405, .external_lex_state = 5}, + [5889] = {.lex_state = 405, .external_lex_state = 5}, + [5890] = {.lex_state = 405, .external_lex_state = 5}, + [5891] = {.lex_state = 405, .external_lex_state = 5}, + [5892] = {.lex_state = 405, .external_lex_state = 5}, + [5893] = {.lex_state = 405, .external_lex_state = 5}, + [5894] = {.lex_state = 405, .external_lex_state = 5}, + [5895] = {.lex_state = 405, .external_lex_state = 5}, + [5896] = {.lex_state = 405, .external_lex_state = 2}, + [5897] = {.lex_state = 405, .external_lex_state = 5}, + [5898] = {.lex_state = 405, .external_lex_state = 5}, + [5899] = {.lex_state = 405, .external_lex_state = 5}, + [5900] = {.lex_state = 405, .external_lex_state = 5}, + [5901] = {.lex_state = 405, .external_lex_state = 5}, + [5902] = {.lex_state = 405, .external_lex_state = 5}, + [5903] = {.lex_state = 405, .external_lex_state = 5}, + [5904] = {.lex_state = 405, .external_lex_state = 5}, + [5905] = {.lex_state = 405, .external_lex_state = 5}, + [5906] = {.lex_state = 2, .external_lex_state = 2}, + [5907] = {.lex_state = 405, .external_lex_state = 5}, + [5908] = {.lex_state = 405, .external_lex_state = 5}, + [5909] = {.lex_state = 405, .external_lex_state = 5}, + [5910] = {.lex_state = 405, .external_lex_state = 5}, + [5911] = {.lex_state = 405, .external_lex_state = 5}, + [5912] = {.lex_state = 405, .external_lex_state = 5}, + [5913] = {.lex_state = 405, .external_lex_state = 5}, + [5914] = {.lex_state = 405, .external_lex_state = 5}, + [5915] = {.lex_state = 405, .external_lex_state = 5}, + [5916] = {.lex_state = 405, .external_lex_state = 5}, + [5917] = {.lex_state = 405, .external_lex_state = 5}, + [5918] = {.lex_state = 405, .external_lex_state = 5}, + [5919] = {.lex_state = 405, .external_lex_state = 5}, + [5920] = {.lex_state = 405, .external_lex_state = 5}, + [5921] = {.lex_state = 405, .external_lex_state = 5}, + [5922] = {.lex_state = 405, .external_lex_state = 5}, + [5923] = {.lex_state = 405, .external_lex_state = 5}, + [5924] = {.lex_state = 405, .external_lex_state = 5}, + [5925] = {.lex_state = 405, .external_lex_state = 5}, + [5926] = {.lex_state = 405, .external_lex_state = 5}, + [5927] = {.lex_state = 89, .external_lex_state = 2}, + [5928] = {.lex_state = 405, .external_lex_state = 5}, + [5929] = {.lex_state = 405, .external_lex_state = 5}, + [5930] = {.lex_state = 48, .external_lex_state = 2}, + [5931] = {.lex_state = 405, .external_lex_state = 5}, + [5932] = {.lex_state = 405, .external_lex_state = 5}, + [5933] = {.lex_state = 405, .external_lex_state = 5}, + [5934] = {.lex_state = 50, .external_lex_state = 2}, + [5935] = {.lex_state = 24, .external_lex_state = 2}, + [5936] = {.lex_state = 405, .external_lex_state = 5}, + [5937] = {.lex_state = 405, .external_lex_state = 5}, + [5938] = {.lex_state = 405, .external_lex_state = 5}, + [5939] = {.lex_state = 405, .external_lex_state = 5}, + [5940] = {.lex_state = 24, .external_lex_state = 2}, + [5941] = {.lex_state = 405, .external_lex_state = 2}, + [5942] = {.lex_state = 405, .external_lex_state = 5}, + [5943] = {.lex_state = 405, .external_lex_state = 5}, + [5944] = {.lex_state = 405, .external_lex_state = 2}, + [5945] = {.lex_state = 405, .external_lex_state = 5}, + [5946] = {.lex_state = 405, .external_lex_state = 5}, + [5947] = {.lex_state = 405, .external_lex_state = 5}, + [5948] = {.lex_state = 405, .external_lex_state = 5}, + [5949] = {.lex_state = 405, .external_lex_state = 5}, + [5950] = {.lex_state = 405, .external_lex_state = 5}, + [5951] = {.lex_state = 405, .external_lex_state = 5}, + [5952] = {.lex_state = 405, .external_lex_state = 5}, + [5953] = {.lex_state = 405, .external_lex_state = 5}, + [5954] = {.lex_state = 405, .external_lex_state = 5}, + [5955] = {.lex_state = 405, .external_lex_state = 5}, + [5956] = {.lex_state = 405, .external_lex_state = 2}, + [5957] = {.lex_state = 27, .external_lex_state = 2}, + [5958] = {.lex_state = 405, .external_lex_state = 5}, + [5959] = {.lex_state = 27, .external_lex_state = 2}, + [5960] = {.lex_state = 405, .external_lex_state = 5}, + [5961] = {.lex_state = 405, .external_lex_state = 5}, + [5962] = {.lex_state = 27, .external_lex_state = 2}, + [5963] = {.lex_state = 27, .external_lex_state = 2}, + [5964] = {.lex_state = 405, .external_lex_state = 5}, + [5965] = {.lex_state = 405, .external_lex_state = 5}, + [5966] = {.lex_state = 405, .external_lex_state = 2}, + [5967] = {.lex_state = 405, .external_lex_state = 2}, + [5968] = {.lex_state = 405, .external_lex_state = 5}, + [5969] = {.lex_state = 405, .external_lex_state = 5}, + [5970] = {.lex_state = 24, .external_lex_state = 2}, + [5971] = {.lex_state = 405, .external_lex_state = 5}, + [5972] = {.lex_state = 55, .external_lex_state = 2}, + [5973] = {.lex_state = 405, .external_lex_state = 5}, + [5974] = {.lex_state = 55, .external_lex_state = 2}, + [5975] = {.lex_state = 405, .external_lex_state = 2}, + [5976] = {.lex_state = 405, .external_lex_state = 5}, + [5977] = {.lex_state = 48, .external_lex_state = 2}, + [5978] = {.lex_state = 405, .external_lex_state = 5}, + [5979] = {.lex_state = 405, .external_lex_state = 5}, + [5980] = {.lex_state = 405, .external_lex_state = 5}, + [5981] = {.lex_state = 405, .external_lex_state = 5}, + [5982] = {.lex_state = 405, .external_lex_state = 5}, + [5983] = {.lex_state = 405, .external_lex_state = 5}, + [5984] = {.lex_state = 405, .external_lex_state = 2}, + [5985] = {.lex_state = 27, .external_lex_state = 2}, + [5986] = {.lex_state = 27, .external_lex_state = 2}, + [5987] = {.lex_state = 27, .external_lex_state = 2}, + [5988] = {.lex_state = 405, .external_lex_state = 2}, + [5989] = {.lex_state = 405, .external_lex_state = 2}, + [5990] = {.lex_state = 27, .external_lex_state = 2}, + [5991] = {.lex_state = 27, .external_lex_state = 2}, + [5992] = {.lex_state = 405, .external_lex_state = 5}, + [5993] = {.lex_state = 405, .external_lex_state = 5}, + [5994] = {.lex_state = 27, .external_lex_state = 2}, + [5995] = {.lex_state = 27, .external_lex_state = 2}, + [5996] = {.lex_state = 27, .external_lex_state = 2}, + [5997] = {.lex_state = 405, .external_lex_state = 5}, + [5998] = {.lex_state = 405, .external_lex_state = 5}, + [5999] = {.lex_state = 405, .external_lex_state = 5}, + [6000] = {.lex_state = 405, .external_lex_state = 5}, + [6001] = {.lex_state = 405, .external_lex_state = 5}, + [6002] = {.lex_state = 405, .external_lex_state = 2}, + [6003] = {.lex_state = 405, .external_lex_state = 5}, + [6004] = {.lex_state = 405, .external_lex_state = 5}, + [6005] = {.lex_state = 405, .external_lex_state = 5}, + [6006] = {.lex_state = 48, .external_lex_state = 2}, + [6007] = {.lex_state = 405, .external_lex_state = 5}, + [6008] = {.lex_state = 405, .external_lex_state = 5}, + [6009] = {.lex_state = 405, .external_lex_state = 5}, + [6010] = {.lex_state = 405, .external_lex_state = 5}, + [6011] = {.lex_state = 405, .external_lex_state = 5}, + [6012] = {.lex_state = 405, .external_lex_state = 5}, + [6013] = {.lex_state = 405, .external_lex_state = 5}, + [6014] = {.lex_state = 405, .external_lex_state = 5}, + [6015] = {.lex_state = 405, .external_lex_state = 5}, + [6016] = {.lex_state = 27, .external_lex_state = 2}, + [6017] = {.lex_state = 405, .external_lex_state = 5}, + [6018] = {.lex_state = 405, .external_lex_state = 2}, + [6019] = {.lex_state = 405, .external_lex_state = 2}, + [6020] = {.lex_state = 405, .external_lex_state = 5}, + [6021] = {.lex_state = 48, .external_lex_state = 2}, + [6022] = {.lex_state = 405, .external_lex_state = 2}, + [6023] = {.lex_state = 48, .external_lex_state = 2}, + [6024] = {.lex_state = 405, .external_lex_state = 8}, + [6025] = {.lex_state = 48, .external_lex_state = 2}, + [6026] = {.lex_state = 405, .external_lex_state = 5}, + [6027] = {.lex_state = 48, .external_lex_state = 2}, + [6028] = {.lex_state = 405, .external_lex_state = 5}, + [6029] = {.lex_state = 405, .external_lex_state = 5}, + [6030] = {.lex_state = 405, .external_lex_state = 2}, + [6031] = {.lex_state = 405, .external_lex_state = 5}, + [6032] = {.lex_state = 405, .external_lex_state = 2}, + [6033] = {.lex_state = 405, .external_lex_state = 5}, + [6034] = {.lex_state = 405, .external_lex_state = 5}, + [6035] = {.lex_state = 405, .external_lex_state = 5}, + [6036] = {.lex_state = 405, .external_lex_state = 5}, + [6037] = {.lex_state = 405, .external_lex_state = 5}, + [6038] = {.lex_state = 405, .external_lex_state = 5}, + [6039] = {.lex_state = 405, .external_lex_state = 5}, + [6040] = {.lex_state = 405, .external_lex_state = 5}, + [6041] = {.lex_state = 405, .external_lex_state = 5}, + [6042] = {.lex_state = 405, .external_lex_state = 5}, + [6043] = {.lex_state = 405, .external_lex_state = 5}, + [6044] = {.lex_state = 405, .external_lex_state = 2}, + [6045] = {.lex_state = 405, .external_lex_state = 5}, + [6046] = {.lex_state = 405, .external_lex_state = 5}, + [6047] = {.lex_state = 405, .external_lex_state = 5}, + [6048] = {.lex_state = 405, .external_lex_state = 5}, + [6049] = {.lex_state = 405, .external_lex_state = 2}, + [6050] = {.lex_state = 405, .external_lex_state = 2}, + [6051] = {.lex_state = 405, .external_lex_state = 5}, + [6052] = {.lex_state = 405, .external_lex_state = 5}, + [6053] = {.lex_state = 405, .external_lex_state = 2}, + [6054] = {.lex_state = 405, .external_lex_state = 5}, + [6055] = {.lex_state = 405, .external_lex_state = 5}, + [6056] = {.lex_state = 405, .external_lex_state = 5}, + [6057] = {.lex_state = 405, .external_lex_state = 2}, + [6058] = {.lex_state = 405, .external_lex_state = 5}, + [6059] = {.lex_state = 405, .external_lex_state = 2}, + [6060] = {.lex_state = 405, .external_lex_state = 5}, + [6061] = {.lex_state = 27, .external_lex_state = 2}, + [6062] = {.lex_state = 405, .external_lex_state = 5}, + [6063] = {.lex_state = 405, .external_lex_state = 5}, + [6064] = {.lex_state = 405, .external_lex_state = 5}, + [6065] = {.lex_state = 405, .external_lex_state = 5}, + [6066] = {.lex_state = 48, .external_lex_state = 2}, + [6067] = {.lex_state = 405, .external_lex_state = 5}, + [6068] = {.lex_state = 405, .external_lex_state = 5}, + [6069] = {.lex_state = 405, .external_lex_state = 5}, + [6070] = {.lex_state = 405, .external_lex_state = 2}, + [6071] = {.lex_state = 405, .external_lex_state = 5}, + [6072] = {.lex_state = 405, .external_lex_state = 5}, + [6073] = {.lex_state = 89, .external_lex_state = 2}, + [6074] = {.lex_state = 405, .external_lex_state = 5}, + [6075] = {.lex_state = 405, .external_lex_state = 5}, + [6076] = {.lex_state = 405, .external_lex_state = 5}, + [6077] = {.lex_state = 405, .external_lex_state = 5}, + [6078] = {.lex_state = 405, .external_lex_state = 5}, + [6079] = {.lex_state = 405, .external_lex_state = 5}, + [6080] = {.lex_state = 405, .external_lex_state = 5}, + [6081] = {.lex_state = 405, .external_lex_state = 5}, + [6082] = {.lex_state = 405, .external_lex_state = 5}, + [6083] = {.lex_state = 405, .external_lex_state = 5}, + [6084] = {.lex_state = 405, .external_lex_state = 5}, + [6085] = {.lex_state = 66, .external_lex_state = 2}, + [6086] = {.lex_state = 27, .external_lex_state = 2}, + [6087] = {.lex_state = 405, .external_lex_state = 5}, + [6088] = {.lex_state = 405, .external_lex_state = 2}, + [6089] = {.lex_state = 405, .external_lex_state = 2}, + [6090] = {.lex_state = 48, .external_lex_state = 2}, + [6091] = {.lex_state = 48, .external_lex_state = 2}, + [6092] = {.lex_state = 48, .external_lex_state = 2}, + [6093] = {.lex_state = 405, .external_lex_state = 5}, + [6094] = {.lex_state = 405, .external_lex_state = 5}, + [6095] = {.lex_state = 405, .external_lex_state = 5}, + [6096] = {.lex_state = 405, .external_lex_state = 5}, + [6097] = {.lex_state = 405, .external_lex_state = 5}, + [6098] = {.lex_state = 405, .external_lex_state = 5}, + [6099] = {.lex_state = 84, .external_lex_state = 2}, + [6100] = {.lex_state = 405, .external_lex_state = 5}, + [6101] = {.lex_state = 54, .external_lex_state = 2}, + [6102] = {.lex_state = 405, .external_lex_state = 5}, + [6103] = {.lex_state = 405, .external_lex_state = 8}, + [6104] = {.lex_state = 405, .external_lex_state = 2}, + [6105] = {.lex_state = 405, .external_lex_state = 5}, + [6106] = {.lex_state = 405, .external_lex_state = 5}, + [6107] = {.lex_state = 405, .external_lex_state = 2}, + [6108] = {.lex_state = 405, .external_lex_state = 5}, + [6109] = {.lex_state = 405, .external_lex_state = 5}, + [6110] = {.lex_state = 405, .external_lex_state = 5}, + [6111] = {.lex_state = 405, .external_lex_state = 2}, + [6112] = {.lex_state = 405, .external_lex_state = 5}, + [6113] = {.lex_state = 405, .external_lex_state = 5}, + [6114] = {.lex_state = 405, .external_lex_state = 5}, + [6115] = {.lex_state = 50, .external_lex_state = 5}, + [6116] = {.lex_state = 50, .external_lex_state = 5}, + [6117] = {.lex_state = 405, .external_lex_state = 5}, + [6118] = {.lex_state = 50, .external_lex_state = 2}, + [6119] = {.lex_state = 24, .external_lex_state = 2}, + [6120] = {.lex_state = 405, .external_lex_state = 5}, + [6121] = {.lex_state = 405, .external_lex_state = 5}, + [6122] = {.lex_state = 405, .external_lex_state = 5}, + [6123] = {.lex_state = 405, .external_lex_state = 5}, + [6124] = {.lex_state = 405, .external_lex_state = 5}, + [6125] = {.lex_state = 405, .external_lex_state = 5}, + [6126] = {.lex_state = 55, .external_lex_state = 2}, + [6127] = {.lex_state = 55, .external_lex_state = 2}, + [6128] = {.lex_state = 405, .external_lex_state = 2}, + [6129] = {.lex_state = 405, .external_lex_state = 2}, + [6130] = {.lex_state = 405, .external_lex_state = 5}, + [6131] = {.lex_state = 405, .external_lex_state = 5}, + [6132] = {.lex_state = 405, .external_lex_state = 5}, + [6133] = {.lex_state = 405, .external_lex_state = 5}, + [6134] = {.lex_state = 405, .external_lex_state = 2}, + [6135] = {.lex_state = 405, .external_lex_state = 5}, + [6136] = {.lex_state = 405, .external_lex_state = 5}, + [6137] = {.lex_state = 405, .external_lex_state = 5}, + [6138] = {.lex_state = 405, .external_lex_state = 5}, + [6139] = {.lex_state = 405, .external_lex_state = 5}, + [6140] = {.lex_state = 405, .external_lex_state = 5}, + [6141] = {.lex_state = 405, .external_lex_state = 5}, + [6142] = {.lex_state = 405, .external_lex_state = 5}, + [6143] = {.lex_state = 405, .external_lex_state = 5}, + [6144] = {.lex_state = 405, .external_lex_state = 2}, + [6145] = {.lex_state = 405, .external_lex_state = 5}, + [6146] = {.lex_state = 405, .external_lex_state = 5}, + [6147] = {.lex_state = 405, .external_lex_state = 5}, + [6148] = {.lex_state = 405, .external_lex_state = 5}, + [6149] = {.lex_state = 405, .external_lex_state = 5}, + [6150] = {.lex_state = 405, .external_lex_state = 5}, + [6151] = {.lex_state = 405, .external_lex_state = 5}, + [6152] = {.lex_state = 48, .external_lex_state = 2}, + [6153] = {.lex_state = 405, .external_lex_state = 5}, + [6154] = {.lex_state = 405, .external_lex_state = 5}, + [6155] = {.lex_state = 405, .external_lex_state = 5}, + [6156] = {.lex_state = 48, .external_lex_state = 2}, + [6157] = {.lex_state = 405, .external_lex_state = 5}, + [6158] = {.lex_state = 48, .external_lex_state = 2}, + [6159] = {.lex_state = 405, .external_lex_state = 5}, + [6160] = {.lex_state = 405, .external_lex_state = 2}, + [6161] = {.lex_state = 405, .external_lex_state = 5}, + [6162] = {.lex_state = 405, .external_lex_state = 5}, + [6163] = {.lex_state = 50, .external_lex_state = 5}, + [6164] = {.lex_state = 405, .external_lex_state = 5}, + [6165] = {.lex_state = 50, .external_lex_state = 5}, + [6166] = {.lex_state = 405, .external_lex_state = 5}, + [6167] = {.lex_state = 405, .external_lex_state = 2}, + [6168] = {.lex_state = 405, .external_lex_state = 5}, + [6169] = {.lex_state = 405, .external_lex_state = 5}, + [6170] = {.lex_state = 405, .external_lex_state = 5}, + [6171] = {.lex_state = 405, .external_lex_state = 5}, + [6172] = {.lex_state = 405, .external_lex_state = 2}, + [6173] = {.lex_state = 405, .external_lex_state = 5}, + [6174] = {.lex_state = 27, .external_lex_state = 2}, [6175] = {.lex_state = 50, .external_lex_state = 2}, - [6176] = {.lex_state = 406, .external_lex_state = 5}, - [6177] = {.lex_state = 48, .external_lex_state = 2}, - [6178] = {.lex_state = 50, .external_lex_state = 2}, - [6179] = {.lex_state = 406, .external_lex_state = 5}, - [6180] = {.lex_state = 406, .external_lex_state = 5}, - [6181] = {.lex_state = 406, .external_lex_state = 5}, - [6182] = {.lex_state = 406, .external_lex_state = 5}, - [6183] = {.lex_state = 406, .external_lex_state = 5}, - [6184] = {.lex_state = 27, .external_lex_state = 2}, - [6185] = {.lex_state = 406, .external_lex_state = 5}, - [6186] = {.lex_state = 406, .external_lex_state = 5}, - [6187] = {.lex_state = 406, .external_lex_state = 5}, - [6188] = {.lex_state = 406, .external_lex_state = 2}, - [6189] = {.lex_state = 406, .external_lex_state = 2}, - [6190] = {.lex_state = 406, .external_lex_state = 5}, - [6191] = {.lex_state = 406, .external_lex_state = 5}, - [6192] = {.lex_state = 406, .external_lex_state = 2}, - [6193] = {.lex_state = 48, .external_lex_state = 2}, - [6194] = {.lex_state = 406, .external_lex_state = 2}, - [6195] = {.lex_state = 406, .external_lex_state = 2}, - [6196] = {.lex_state = 406, .external_lex_state = 2}, - [6197] = {.lex_state = 48, .external_lex_state = 2}, - [6198] = {.lex_state = 48, .external_lex_state = 2}, - [6199] = {.lex_state = 406, .external_lex_state = 2}, - [6200] = {.lex_state = 406, .external_lex_state = 5}, - [6201] = {.lex_state = 50, .external_lex_state = 2}, - [6202] = {.lex_state = 406, .external_lex_state = 5}, - [6203] = {.lex_state = 406, .external_lex_state = 5}, - [6204] = {.lex_state = 406, .external_lex_state = 2}, - [6205] = {.lex_state = 406, .external_lex_state = 2}, - [6206] = {.lex_state = 406, .external_lex_state = 2}, - [6207] = {.lex_state = 406, .external_lex_state = 2}, - [6208] = {.lex_state = 406, .external_lex_state = 2}, - [6209] = {.lex_state = 27, .external_lex_state = 2}, - [6210] = {.lex_state = 406, .external_lex_state = 5}, - [6211] = {.lex_state = 406, .external_lex_state = 5}, - [6212] = {.lex_state = 406, .external_lex_state = 5}, - [6213] = {.lex_state = 406, .external_lex_state = 2}, - [6214] = {.lex_state = 406, .external_lex_state = 2}, - [6215] = {.lex_state = 406, .external_lex_state = 5}, - [6216] = {.lex_state = 406, .external_lex_state = 5}, - [6217] = {.lex_state = 406, .external_lex_state = 5}, - [6218] = {.lex_state = 406, .external_lex_state = 2}, - [6219] = {.lex_state = 406, .external_lex_state = 5}, - [6220] = {.lex_state = 406, .external_lex_state = 5}, - [6221] = {.lex_state = 406, .external_lex_state = 2}, - [6222] = {.lex_state = 406, .external_lex_state = 5}, - [6223] = {.lex_state = 406, .external_lex_state = 5}, - [6224] = {.lex_state = 406, .external_lex_state = 2}, - [6225] = {.lex_state = 406, .external_lex_state = 5}, - [6226] = {.lex_state = 406, .external_lex_state = 5}, + [6176] = {.lex_state = 405, .external_lex_state = 5}, + [6177] = {.lex_state = 405, .external_lex_state = 5}, + [6178] = {.lex_state = 405, .external_lex_state = 5}, + [6179] = {.lex_state = 405, .external_lex_state = 5}, + [6180] = {.lex_state = 405, .external_lex_state = 5}, + [6181] = {.lex_state = 405, .external_lex_state = 5}, + [6182] = {.lex_state = 405, .external_lex_state = 5}, + [6183] = {.lex_state = 405, .external_lex_state = 5}, + [6184] = {.lex_state = 405, .external_lex_state = 5}, + [6185] = {.lex_state = 405, .external_lex_state = 5}, + [6186] = {.lex_state = 405, .external_lex_state = 5}, + [6187] = {.lex_state = 405, .external_lex_state = 5}, + [6188] = {.lex_state = 405, .external_lex_state = 5}, + [6189] = {.lex_state = 405, .external_lex_state = 2}, + [6190] = {.lex_state = 405, .external_lex_state = 5}, + [6191] = {.lex_state = 405, .external_lex_state = 5}, + [6192] = {.lex_state = 405, .external_lex_state = 5}, + [6193] = {.lex_state = 405, .external_lex_state = 5}, + [6194] = {.lex_state = 48, .external_lex_state = 2}, + [6195] = {.lex_state = 405, .external_lex_state = 5}, + [6196] = {.lex_state = 405, .external_lex_state = 5}, + [6197] = {.lex_state = 405, .external_lex_state = 5}, + [6198] = {.lex_state = 405, .external_lex_state = 5}, + [6199] = {.lex_state = 405, .external_lex_state = 5}, + [6200] = {.lex_state = 405, .external_lex_state = 2}, + [6201] = {.lex_state = 405, .external_lex_state = 5}, + [6202] = {.lex_state = 405, .external_lex_state = 2}, + [6203] = {.lex_state = 405, .external_lex_state = 2}, + [6204] = {.lex_state = 405, .external_lex_state = 2}, + [6205] = {.lex_state = 405, .external_lex_state = 5}, + [6206] = {.lex_state = 405, .external_lex_state = 5}, + [6207] = {.lex_state = 405, .external_lex_state = 2}, + [6208] = {.lex_state = 50, .external_lex_state = 2}, + [6209] = {.lex_state = 405, .external_lex_state = 5}, + [6210] = {.lex_state = 50, .external_lex_state = 2}, + [6211] = {.lex_state = 405, .external_lex_state = 2}, + [6212] = {.lex_state = 405, .external_lex_state = 5}, + [6213] = {.lex_state = 405, .external_lex_state = 5}, + [6214] = {.lex_state = 50, .external_lex_state = 2}, + [6215] = {.lex_state = 27, .external_lex_state = 2}, + [6216] = {.lex_state = 50, .external_lex_state = 2}, + [6217] = {.lex_state = 405, .external_lex_state = 5}, + [6218] = {.lex_state = 405, .external_lex_state = 5}, + [6219] = {.lex_state = 405, .external_lex_state = 2}, + [6220] = {.lex_state = 405, .external_lex_state = 2}, + [6221] = {.lex_state = 405, .external_lex_state = 5}, + [6222] = {.lex_state = 405, .external_lex_state = 5}, + [6223] = {.lex_state = 405, .external_lex_state = 5}, + [6224] = {.lex_state = 405, .external_lex_state = 2}, + [6225] = {.lex_state = 405, .external_lex_state = 2}, + [6226] = {.lex_state = 405, .external_lex_state = 5}, [6227] = {.lex_state = 48, .external_lex_state = 2}, - [6228] = {.lex_state = 406, .external_lex_state = 5}, - [6229] = {.lex_state = 48, .external_lex_state = 2}, - [6230] = {.lex_state = 48, .external_lex_state = 2}, - [6231] = {.lex_state = 406, .external_lex_state = 5}, - [6232] = {.lex_state = 48, .external_lex_state = 2}, - [6233] = {.lex_state = 406, .external_lex_state = 2}, - [6234] = {.lex_state = 406, .external_lex_state = 5}, - [6235] = {.lex_state = 406, .external_lex_state = 5}, - [6236] = {.lex_state = 406, .external_lex_state = 5}, - [6237] = {.lex_state = 406, .external_lex_state = 5}, - [6238] = {.lex_state = 406, .external_lex_state = 5}, - [6239] = {.lex_state = 406, .external_lex_state = 2}, - [6240] = {.lex_state = 406, .external_lex_state = 2}, - [6241] = {.lex_state = 406, .external_lex_state = 5}, - [6242] = {.lex_state = 27, .external_lex_state = 2}, - [6243] = {.lex_state = 406, .external_lex_state = 5}, - [6244] = {.lex_state = 406, .external_lex_state = 2}, - [6245] = {.lex_state = 406, .external_lex_state = 2}, - [6246] = {.lex_state = 406, .external_lex_state = 2}, - [6247] = {.lex_state = 406, .external_lex_state = 2}, - [6248] = {.lex_state = 55, .external_lex_state = 2}, - [6249] = {.lex_state = 48, .external_lex_state = 2}, - [6250] = {.lex_state = 406, .external_lex_state = 5}, - [6251] = {.lex_state = 406, .external_lex_state = 5}, - [6252] = {.lex_state = 406, .external_lex_state = 5}, - [6253] = {.lex_state = 55, .external_lex_state = 2}, - [6254] = {.lex_state = 406, .external_lex_state = 2}, - [6255] = {.lex_state = 406, .external_lex_state = 2}, - [6256] = {.lex_state = 406, .external_lex_state = 5}, - [6257] = {.lex_state = 27, .external_lex_state = 2}, - [6258] = {.lex_state = 406, .external_lex_state = 5}, - [6259] = {.lex_state = 406, .external_lex_state = 2}, - [6260] = {.lex_state = 406, .external_lex_state = 2}, - [6261] = {.lex_state = 406, .external_lex_state = 2}, - [6262] = {.lex_state = 48, .external_lex_state = 2}, - [6263] = {.lex_state = 406, .external_lex_state = 2}, - [6264] = {.lex_state = 48, .external_lex_state = 2}, - [6265] = {.lex_state = 406, .external_lex_state = 5}, - [6266] = {.lex_state = 48, .external_lex_state = 2}, - [6267] = {.lex_state = 406, .external_lex_state = 2}, - [6268] = {.lex_state = 406, .external_lex_state = 5}, - [6269] = {.lex_state = 406, .external_lex_state = 5}, - [6270] = {.lex_state = 406, .external_lex_state = 5}, - [6271] = {.lex_state = 406, .external_lex_state = 5}, - [6272] = {.lex_state = 406, .external_lex_state = 5}, - [6273] = {.lex_state = 48, .external_lex_state = 2}, - [6274] = {.lex_state = 48, .external_lex_state = 2}, - [6275] = {.lex_state = 406, .external_lex_state = 5}, - [6276] = {.lex_state = 48, .external_lex_state = 2}, - [6277] = {.lex_state = 48, .external_lex_state = 2}, - [6278] = {.lex_state = 406, .external_lex_state = 2}, - [6279] = {.lex_state = 406, .external_lex_state = 5}, - [6280] = {.lex_state = 406, .external_lex_state = 2}, - [6281] = {.lex_state = 406, .external_lex_state = 2}, - [6282] = {.lex_state = 27, .external_lex_state = 2}, - [6283] = {.lex_state = 406, .external_lex_state = 5}, - [6284] = {.lex_state = 406, .external_lex_state = 5}, - [6285] = {.lex_state = 406, .external_lex_state = 5}, - [6286] = {.lex_state = 406, .external_lex_state = 5}, - [6287] = {.lex_state = 50, .external_lex_state = 2}, - [6288] = {.lex_state = 406, .external_lex_state = 5}, - [6289] = {.lex_state = 50, .external_lex_state = 2}, - [6290] = {.lex_state = 406, .external_lex_state = 5}, - [6291] = {.lex_state = 50, .external_lex_state = 2}, - [6292] = {.lex_state = 406, .external_lex_state = 2}, + [6228] = {.lex_state = 48, .external_lex_state = 2}, + [6229] = {.lex_state = 405, .external_lex_state = 5}, + [6230] = {.lex_state = 405, .external_lex_state = 5}, + [6231] = {.lex_state = 48, .external_lex_state = 2}, + [6232] = {.lex_state = 405, .external_lex_state = 2}, + [6233] = {.lex_state = 405, .external_lex_state = 5}, + [6234] = {.lex_state = 405, .external_lex_state = 5}, + [6235] = {.lex_state = 405, .external_lex_state = 5}, + [6236] = {.lex_state = 405, .external_lex_state = 5}, + [6237] = {.lex_state = 405, .external_lex_state = 5}, + [6238] = {.lex_state = 405, .external_lex_state = 5}, + [6239] = {.lex_state = 405, .external_lex_state = 2}, + [6240] = {.lex_state = 405, .external_lex_state = 2}, + [6241] = {.lex_state = 405, .external_lex_state = 5}, + [6242] = {.lex_state = 405, .external_lex_state = 5}, + [6243] = {.lex_state = 405, .external_lex_state = 2}, + [6244] = {.lex_state = 405, .external_lex_state = 5}, + [6245] = {.lex_state = 48, .external_lex_state = 2}, + [6246] = {.lex_state = 405, .external_lex_state = 5}, + [6247] = {.lex_state = 405, .external_lex_state = 5}, + [6248] = {.lex_state = 405, .external_lex_state = 2}, + [6249] = {.lex_state = 405, .external_lex_state = 2}, + [6250] = {.lex_state = 405, .external_lex_state = 2}, + [6251] = {.lex_state = 405, .external_lex_state = 2}, + [6252] = {.lex_state = 405, .external_lex_state = 2}, + [6253] = {.lex_state = 405, .external_lex_state = 5}, + [6254] = {.lex_state = 405, .external_lex_state = 5}, + [6255] = {.lex_state = 48, .external_lex_state = 2}, + [6256] = {.lex_state = 84, .external_lex_state = 2}, + [6257] = {.lex_state = 405, .external_lex_state = 5}, + [6258] = {.lex_state = 405, .external_lex_state = 5}, + [6259] = {.lex_state = 405, .external_lex_state = 5}, + [6260] = {.lex_state = 405, .external_lex_state = 5}, + [6261] = {.lex_state = 405, .external_lex_state = 5}, + [6262] = {.lex_state = 405, .external_lex_state = 5}, + [6263] = {.lex_state = 27, .external_lex_state = 2}, + [6264] = {.lex_state = 405, .external_lex_state = 5}, + [6265] = {.lex_state = 405, .external_lex_state = 2}, + [6266] = {.lex_state = 405, .external_lex_state = 2}, + [6267] = {.lex_state = 405, .external_lex_state = 5}, + [6268] = {.lex_state = 48, .external_lex_state = 2}, + [6269] = {.lex_state = 405, .external_lex_state = 5}, + [6270] = {.lex_state = 48, .external_lex_state = 2}, + [6271] = {.lex_state = 405, .external_lex_state = 5}, + [6272] = {.lex_state = 48, .external_lex_state = 2}, + [6273] = {.lex_state = 405, .external_lex_state = 5}, + [6274] = {.lex_state = 405, .external_lex_state = 2}, + [6275] = {.lex_state = 405, .external_lex_state = 2}, + [6276] = {.lex_state = 405, .external_lex_state = 5}, + [6277] = {.lex_state = 405, .external_lex_state = 2}, + [6278] = {.lex_state = 405, .external_lex_state = 5}, + [6279] = {.lex_state = 405, .external_lex_state = 5}, + [6280] = {.lex_state = 405, .external_lex_state = 5}, + [6281] = {.lex_state = 405, .external_lex_state = 5}, + [6282] = {.lex_state = 405, .external_lex_state = 2}, + [6283] = {.lex_state = 405, .external_lex_state = 5}, + [6284] = {.lex_state = 405, .external_lex_state = 5}, + [6285] = {.lex_state = 405, .external_lex_state = 5}, + [6286] = {.lex_state = 50, .external_lex_state = 2}, + [6287] = {.lex_state = 48, .external_lex_state = 2}, + [6288] = {.lex_state = 405, .external_lex_state = 5}, + [6289] = {.lex_state = 405, .external_lex_state = 2}, + [6290] = {.lex_state = 405, .external_lex_state = 5}, + [6291] = {.lex_state = 405, .external_lex_state = 2}, + [6292] = {.lex_state = 48, .external_lex_state = 2}, [6293] = {.lex_state = 50, .external_lex_state = 2}, - [6294] = {.lex_state = 406, .external_lex_state = 5}, - [6295] = {.lex_state = 406, .external_lex_state = 2}, - [6296] = {.lex_state = 406, .external_lex_state = 5}, - [6297] = {.lex_state = 406, .external_lex_state = 5}, - [6298] = {.lex_state = 406, .external_lex_state = 5}, - [6299] = {.lex_state = 406, .external_lex_state = 2}, - [6300] = {.lex_state = 406, .external_lex_state = 2}, - [6301] = {.lex_state = 27, .external_lex_state = 2}, - [6302] = {.lex_state = 406, .external_lex_state = 2}, - [6303] = {.lex_state = 406, .external_lex_state = 5}, - [6304] = {.lex_state = 406, .external_lex_state = 2}, - [6305] = {.lex_state = 406, .external_lex_state = 5}, - [6306] = {.lex_state = 406, .external_lex_state = 5}, - [6307] = {.lex_state = 406, .external_lex_state = 5}, - [6308] = {.lex_state = 406, .external_lex_state = 5}, - [6309] = {.lex_state = 406, .external_lex_state = 2}, - [6310] = {.lex_state = 406, .external_lex_state = 2}, - [6311] = {.lex_state = 48, .external_lex_state = 2}, - [6312] = {.lex_state = 406, .external_lex_state = 5}, - [6313] = {.lex_state = 406, .external_lex_state = 5}, - [6314] = {.lex_state = 406, .external_lex_state = 5}, - [6315] = {.lex_state = 48, .external_lex_state = 2}, - [6316] = {.lex_state = 406, .external_lex_state = 5}, - [6317] = {.lex_state = 406, .external_lex_state = 5}, - [6318] = {.lex_state = 406, .external_lex_state = 5}, - [6319] = {.lex_state = 406, .external_lex_state = 5}, - [6320] = {.lex_state = 406, .external_lex_state = 5}, - [6321] = {.lex_state = 406, .external_lex_state = 5}, + [6294] = {.lex_state = 48, .external_lex_state = 2}, + [6295] = {.lex_state = 50, .external_lex_state = 2}, + [6296] = {.lex_state = 48, .external_lex_state = 2}, + [6297] = {.lex_state = 50, .external_lex_state = 2}, + [6298] = {.lex_state = 405, .external_lex_state = 2}, + [6299] = {.lex_state = 50, .external_lex_state = 2}, + [6300] = {.lex_state = 405, .external_lex_state = 5}, + [6301] = {.lex_state = 405, .external_lex_state = 2}, + [6302] = {.lex_state = 405, .external_lex_state = 2}, + [6303] = {.lex_state = 27, .external_lex_state = 2}, + [6304] = {.lex_state = 405, .external_lex_state = 2}, + [6305] = {.lex_state = 405, .external_lex_state = 5}, + [6306] = {.lex_state = 405, .external_lex_state = 5}, + [6307] = {.lex_state = 405, .external_lex_state = 5}, + [6308] = {.lex_state = 405, .external_lex_state = 2}, + [6309] = {.lex_state = 405, .external_lex_state = 5}, + [6310] = {.lex_state = 405, .external_lex_state = 2}, + [6311] = {.lex_state = 27, .external_lex_state = 2}, + [6312] = {.lex_state = 405, .external_lex_state = 5}, + [6313] = {.lex_state = 405, .external_lex_state = 5}, + [6314] = {.lex_state = 405, .external_lex_state = 5}, + [6315] = {.lex_state = 405, .external_lex_state = 2}, + [6316] = {.lex_state = 405, .external_lex_state = 2}, + [6317] = {.lex_state = 405, .external_lex_state = 2}, + [6318] = {.lex_state = 405, .external_lex_state = 2}, + [6319] = {.lex_state = 405, .external_lex_state = 2}, + [6320] = {.lex_state = 405, .external_lex_state = 5}, + [6321] = {.lex_state = 405, .external_lex_state = 2}, [6322] = {.lex_state = 27, .external_lex_state = 2}, - [6323] = {.lex_state = 406, .external_lex_state = 2}, - [6324] = {.lex_state = 406, .external_lex_state = 2}, - [6325] = {.lex_state = 406, .external_lex_state = 5}, - [6326] = {.lex_state = 48, .external_lex_state = 2}, - [6327] = {.lex_state = 406, .external_lex_state = 5}, - [6328] = {.lex_state = 406, .external_lex_state = 5}, - [6329] = {.lex_state = 406, .external_lex_state = 5}, - [6330] = {.lex_state = 406, .external_lex_state = 5}, - [6331] = {.lex_state = 406, .external_lex_state = 5}, - [6332] = {.lex_state = 48, .external_lex_state = 2}, - [6333] = {.lex_state = 406, .external_lex_state = 5}, - [6334] = {.lex_state = 50, .external_lex_state = 2}, - [6335] = {.lex_state = 406, .external_lex_state = 2}, - [6336] = {.lex_state = 406, .external_lex_state = 2}, - [6337] = {.lex_state = 406, .external_lex_state = 2}, - [6338] = {.lex_state = 406, .external_lex_state = 2}, - [6339] = {.lex_state = 406, .external_lex_state = 2}, - [6340] = {.lex_state = 406, .external_lex_state = 2}, - [6341] = {.lex_state = 406, .external_lex_state = 2}, - [6342] = {.lex_state = 406, .external_lex_state = 2}, - [6343] = {.lex_state = 406, .external_lex_state = 2}, - [6344] = {.lex_state = 406, .external_lex_state = 2}, - [6345] = {.lex_state = 406, .external_lex_state = 2}, - [6346] = {.lex_state = 50, .external_lex_state = 2}, - [6347] = {.lex_state = 406, .external_lex_state = 2}, - [6348] = {.lex_state = 406, .external_lex_state = 2}, - [6349] = {.lex_state = 50, .external_lex_state = 2}, - [6350] = {.lex_state = 406, .external_lex_state = 2}, - [6351] = {.lex_state = 50, .external_lex_state = 2}, - [6352] = {.lex_state = 406, .external_lex_state = 2}, - [6353] = {.lex_state = 406, .external_lex_state = 2}, - [6354] = {.lex_state = 406, .external_lex_state = 5}, - [6355] = {.lex_state = 406, .external_lex_state = 2}, - [6356] = {.lex_state = 50, .external_lex_state = 2}, - [6357] = {.lex_state = 406, .external_lex_state = 2}, - [6358] = {.lex_state = 406, .external_lex_state = 2}, - [6359] = {.lex_state = 406, .external_lex_state = 5}, - [6360] = {.lex_state = 406, .external_lex_state = 2}, - [6361] = {.lex_state = 406, .external_lex_state = 2}, - [6362] = {.lex_state = 406, .external_lex_state = 2}, - [6363] = {.lex_state = 406, .external_lex_state = 5}, - [6364] = {.lex_state = 406, .external_lex_state = 2}, - [6365] = {.lex_state = 406, .external_lex_state = 5}, - [6366] = {.lex_state = 406, .external_lex_state = 2}, - [6367] = {.lex_state = 406, .external_lex_state = 2}, - [6368] = {.lex_state = 50, .external_lex_state = 2}, - [6369] = {.lex_state = 406, .external_lex_state = 2}, + [6323] = {.lex_state = 405, .external_lex_state = 5}, + [6324] = {.lex_state = 405, .external_lex_state = 2}, + [6325] = {.lex_state = 48, .external_lex_state = 2}, + [6326] = {.lex_state = 405, .external_lex_state = 2}, + [6327] = {.lex_state = 405, .external_lex_state = 5}, + [6328] = {.lex_state = 405, .external_lex_state = 2}, + [6329] = {.lex_state = 405, .external_lex_state = 2}, + [6330] = {.lex_state = 405, .external_lex_state = 5}, + [6331] = {.lex_state = 405, .external_lex_state = 5}, + [6332] = {.lex_state = 405, .external_lex_state = 5}, + [6333] = {.lex_state = 405, .external_lex_state = 5}, + [6334] = {.lex_state = 405, .external_lex_state = 5}, + [6335] = {.lex_state = 48, .external_lex_state = 2}, + [6336] = {.lex_state = 405, .external_lex_state = 5}, + [6337] = {.lex_state = 405, .external_lex_state = 2}, + [6338] = {.lex_state = 405, .external_lex_state = 2}, + [6339] = {.lex_state = 405, .external_lex_state = 2}, + [6340] = {.lex_state = 405, .external_lex_state = 2}, + [6341] = {.lex_state = 405, .external_lex_state = 2}, + [6342] = {.lex_state = 405, .external_lex_state = 5}, + [6343] = {.lex_state = 405, .external_lex_state = 2}, + [6344] = {.lex_state = 405, .external_lex_state = 5}, + [6345] = {.lex_state = 405, .external_lex_state = 5}, + [6346] = {.lex_state = 405, .external_lex_state = 2}, + [6347] = {.lex_state = 405, .external_lex_state = 2}, + [6348] = {.lex_state = 405, .external_lex_state = 5}, + [6349] = {.lex_state = 405, .external_lex_state = 2}, + [6350] = {.lex_state = 50, .external_lex_state = 2}, + [6351] = {.lex_state = 49, .external_lex_state = 2}, + [6352] = {.lex_state = 405, .external_lex_state = 5}, + [6353] = {.lex_state = 405, .external_lex_state = 2}, + [6354] = {.lex_state = 405, .external_lex_state = 2}, + [6355] = {.lex_state = 405, .external_lex_state = 2}, + [6356] = {.lex_state = 81, .external_lex_state = 2}, + [6357] = {.lex_state = 405, .external_lex_state = 2}, + [6358] = {.lex_state = 405, .external_lex_state = 2}, + [6359] = {.lex_state = 405, .external_lex_state = 2}, + [6360] = {.lex_state = 405, .external_lex_state = 5}, + [6361] = {.lex_state = 405, .external_lex_state = 5}, + [6362] = {.lex_state = 405, .external_lex_state = 2}, + [6363] = {.lex_state = 405, .external_lex_state = 5}, + [6364] = {.lex_state = 405, .external_lex_state = 2}, + [6365] = {.lex_state = 405, .external_lex_state = 5}, + [6366] = {.lex_state = 50, .external_lex_state = 2}, + [6367] = {.lex_state = 405, .external_lex_state = 2}, + [6368] = {.lex_state = 405, .external_lex_state = 2}, + [6369] = {.lex_state = 405, .external_lex_state = 2}, [6370] = {.lex_state = 2, .external_lex_state = 2}, - [6371] = {.lex_state = 406, .external_lex_state = 2}, - [6372] = {.lex_state = 406, .external_lex_state = 2}, - [6373] = {.lex_state = 406, .external_lex_state = 5}, - [6374] = {.lex_state = 406, .external_lex_state = 2}, - [6375] = {.lex_state = 406, .external_lex_state = 5}, - [6376] = {.lex_state = 406, .external_lex_state = 2}, - [6377] = {.lex_state = 406, .external_lex_state = 5}, - [6378] = {.lex_state = 406, .external_lex_state = 2}, - [6379] = {.lex_state = 406, .external_lex_state = 2}, - [6380] = {.lex_state = 406, .external_lex_state = 2}, - [6381] = {.lex_state = 406, .external_lex_state = 2}, - [6382] = {.lex_state = 406, .external_lex_state = 5}, - [6383] = {.lex_state = 406, .external_lex_state = 5}, - [6384] = {.lex_state = 406, .external_lex_state = 5}, - [6385] = {.lex_state = 406, .external_lex_state = 2}, - [6386] = {.lex_state = 48, .external_lex_state = 2}, - [6387] = {.lex_state = 406, .external_lex_state = 2}, - [6388] = {.lex_state = 50, .external_lex_state = 2}, - [6389] = {.lex_state = 406, .external_lex_state = 2}, - [6390] = {.lex_state = 50, .external_lex_state = 2}, - [6391] = {.lex_state = 406, .external_lex_state = 2}, - [6392] = {.lex_state = 406, .external_lex_state = 2}, - [6393] = {.lex_state = 406, .external_lex_state = 5}, - [6394] = {.lex_state = 406, .external_lex_state = 5}, - [6395] = {.lex_state = 406, .external_lex_state = 2}, - [6396] = {.lex_state = 406, .external_lex_state = 2}, - [6397] = {.lex_state = 48, .external_lex_state = 2}, - [6398] = {.lex_state = 406, .external_lex_state = 2}, - [6399] = {.lex_state = 406, .external_lex_state = 2}, - [6400] = {.lex_state = 406, .external_lex_state = 2}, - [6401] = {.lex_state = 406, .external_lex_state = 2}, - [6402] = {.lex_state = 406, .external_lex_state = 2}, - [6403] = {.lex_state = 406, .external_lex_state = 2}, - [6404] = {.lex_state = 406, .external_lex_state = 2}, - [6405] = {.lex_state = 406, .external_lex_state = 2}, - [6406] = {.lex_state = 406, .external_lex_state = 5}, - [6407] = {.lex_state = 50, .external_lex_state = 2}, - [6408] = {.lex_state = 50, .external_lex_state = 2}, - [6409] = {.lex_state = 406, .external_lex_state = 2}, - [6410] = {.lex_state = 406, .external_lex_state = 5}, - [6411] = {.lex_state = 406, .external_lex_state = 5}, - [6412] = {.lex_state = 406, .external_lex_state = 2}, - [6413] = {.lex_state = 406, .external_lex_state = 5}, - [6414] = {.lex_state = 406, .external_lex_state = 5}, - [6415] = {.lex_state = 50, .external_lex_state = 2}, - [6416] = {.lex_state = 406, .external_lex_state = 2}, - [6417] = {.lex_state = 50, .external_lex_state = 2}, - [6418] = {.lex_state = 406, .external_lex_state = 5}, - [6419] = {.lex_state = 406, .external_lex_state = 2}, - [6420] = {.lex_state = 406, .external_lex_state = 2}, - [6421] = {.lex_state = 50, .external_lex_state = 2}, - [6422] = {.lex_state = 406, .external_lex_state = 5}, - [6423] = {.lex_state = 406, .external_lex_state = 2}, - [6424] = {.lex_state = 406, .external_lex_state = 2}, - [6425] = {.lex_state = 406, .external_lex_state = 2}, - [6426] = {.lex_state = 406, .external_lex_state = 2}, - [6427] = {.lex_state = 406, .external_lex_state = 2}, - [6428] = {.lex_state = 48, .external_lex_state = 2}, - [6429] = {.lex_state = 406, .external_lex_state = 5}, - [6430] = {.lex_state = 406, .external_lex_state = 2}, - [6431] = {.lex_state = 49, .external_lex_state = 2}, - [6432] = {.lex_state = 406, .external_lex_state = 2}, - [6433] = {.lex_state = 406, .external_lex_state = 2}, - [6434] = {.lex_state = 406, .external_lex_state = 2}, - [6435] = {.lex_state = 406, .external_lex_state = 5}, - [6436] = {.lex_state = 406, .external_lex_state = 2}, - [6437] = {.lex_state = 48, .external_lex_state = 2}, - [6438] = {.lex_state = 406, .external_lex_state = 5}, - [6439] = {.lex_state = 406, .external_lex_state = 2}, - [6440] = {.lex_state = 406, .external_lex_state = 5}, - [6441] = {.lex_state = 406, .external_lex_state = 2}, - [6442] = {.lex_state = 406, .external_lex_state = 2}, - [6443] = {.lex_state = 406, .external_lex_state = 2}, - [6444] = {.lex_state = 406, .external_lex_state = 2}, - [6445] = {.lex_state = 406, .external_lex_state = 2}, - [6446] = {.lex_state = 406, .external_lex_state = 2}, - [6447] = {.lex_state = 406, .external_lex_state = 2}, - [6448] = {.lex_state = 406, .external_lex_state = 2}, - [6449] = {.lex_state = 50, .external_lex_state = 2}, - [6450] = {.lex_state = 50, .external_lex_state = 2}, - [6451] = {.lex_state = 406, .external_lex_state = 2}, - [6452] = {.lex_state = 406, .external_lex_state = 2}, - [6453] = {.lex_state = 406, .external_lex_state = 2}, - [6454] = {.lex_state = 406, .external_lex_state = 2}, - [6455] = {.lex_state = 406, .external_lex_state = 2}, - [6456] = {.lex_state = 406, .external_lex_state = 2}, - [6457] = {.lex_state = 406, .external_lex_state = 2}, - [6458] = {.lex_state = 406, .external_lex_state = 2}, - [6459] = {.lex_state = 406, .external_lex_state = 5}, - [6460] = {.lex_state = 406, .external_lex_state = 2}, - [6461] = {.lex_state = 406, .external_lex_state = 2}, - [6462] = {.lex_state = 406, .external_lex_state = 2}, - [6463] = {.lex_state = 406, .external_lex_state = 2}, - [6464] = {.lex_state = 406, .external_lex_state = 2}, - [6465] = {.lex_state = 406, .external_lex_state = 2}, - [6466] = {.lex_state = 406, .external_lex_state = 2}, - [6467] = {.lex_state = 406, .external_lex_state = 2}, - [6468] = {.lex_state = 406, .external_lex_state = 2}, - [6469] = {.lex_state = 406, .external_lex_state = 2}, - [6470] = {.lex_state = 406, .external_lex_state = 2}, - [6471] = {.lex_state = 406, .external_lex_state = 2}, - [6472] = {.lex_state = 406, .external_lex_state = 2}, - [6473] = {.lex_state = 406, .external_lex_state = 2}, - [6474] = {.lex_state = 406, .external_lex_state = 2}, - [6475] = {.lex_state = 406, .external_lex_state = 2}, - [6476] = {.lex_state = 50, .external_lex_state = 2}, - [6477] = {.lex_state = 406, .external_lex_state = 2}, - [6478] = {.lex_state = 406, .external_lex_state = 2}, - [6479] = {.lex_state = 406, .external_lex_state = 2}, - [6480] = {.lex_state = 406, .external_lex_state = 5}, - [6481] = {.lex_state = 406, .external_lex_state = 2}, - [6482] = {.lex_state = 406, .external_lex_state = 2}, - [6483] = {.lex_state = 406, .external_lex_state = 2}, - [6484] = {.lex_state = 406, .external_lex_state = 5}, - [6485] = {.lex_state = 406, .external_lex_state = 2}, - [6486] = {.lex_state = 406, .external_lex_state = 2}, - [6487] = {.lex_state = 406, .external_lex_state = 2}, - [6488] = {.lex_state = 406, .external_lex_state = 2}, - [6489] = {.lex_state = 50, .external_lex_state = 2}, - [6490] = {.lex_state = 406, .external_lex_state = 2}, - [6491] = {.lex_state = 406, .external_lex_state = 2}, - [6492] = {.lex_state = 406, .external_lex_state = 2}, - [6493] = {.lex_state = 406, .external_lex_state = 2}, - [6494] = {.lex_state = 406, .external_lex_state = 2}, - [6495] = {.lex_state = 406, .external_lex_state = 2}, - [6496] = {.lex_state = 406, .external_lex_state = 2}, - [6497] = {.lex_state = 406, .external_lex_state = 2}, - [6498] = {.lex_state = 406, .external_lex_state = 2}, - [6499] = {.lex_state = 406, .external_lex_state = 5}, - [6500] = {.lex_state = 50, .external_lex_state = 2}, - [6501] = {.lex_state = 406, .external_lex_state = 2}, - [6502] = {.lex_state = 406, .external_lex_state = 2}, - [6503] = {.lex_state = 406, .external_lex_state = 2}, - [6504] = {.lex_state = 406, .external_lex_state = 5}, - [6505] = {.lex_state = 406, .external_lex_state = 5}, - [6506] = {.lex_state = 406, .external_lex_state = 5}, - [6507] = {.lex_state = 50, .external_lex_state = 2}, - [6508] = {.lex_state = 406, .external_lex_state = 2}, - [6509] = {.lex_state = 406, .external_lex_state = 2}, - [6510] = {.lex_state = 50, .external_lex_state = 2}, - [6511] = {.lex_state = 406, .external_lex_state = 2}, - [6512] = {.lex_state = 406, .external_lex_state = 2}, - [6513] = {.lex_state = 406, .external_lex_state = 5}, - [6514] = {.lex_state = 406, .external_lex_state = 2}, - [6515] = {.lex_state = 406, .external_lex_state = 5}, - [6516] = {.lex_state = 406, .external_lex_state = 2}, - [6517] = {.lex_state = 50, .external_lex_state = 2}, - [6518] = {.lex_state = 81, .external_lex_state = 2}, - [6519] = {.lex_state = 50, .external_lex_state = 2}, - [6520] = {.lex_state = 406, .external_lex_state = 2}, - [6521] = {.lex_state = 406, .external_lex_state = 2}, - [6522] = {.lex_state = 406, .external_lex_state = 2}, - [6523] = {.lex_state = 406, .external_lex_state = 2}, - [6524] = {.lex_state = 406, .external_lex_state = 2}, - [6525] = {.lex_state = 406, .external_lex_state = 2}, - [6526] = {.lex_state = 50, .external_lex_state = 2}, - [6527] = {.lex_state = 406, .external_lex_state = 2}, - [6528] = {.lex_state = 406, .external_lex_state = 2}, - [6529] = {.lex_state = 406, .external_lex_state = 2}, - [6530] = {.lex_state = 50, .external_lex_state = 2}, - [6531] = {.lex_state = 406, .external_lex_state = 2}, + [6371] = {.lex_state = 405, .external_lex_state = 2}, + [6372] = {.lex_state = 405, .external_lex_state = 2}, + [6373] = {.lex_state = 405, .external_lex_state = 2}, + [6374] = {.lex_state = 50, .external_lex_state = 2}, + [6375] = {.lex_state = 49, .external_lex_state = 2}, + [6376] = {.lex_state = 405, .external_lex_state = 2}, + [6377] = {.lex_state = 405, .external_lex_state = 2}, + [6378] = {.lex_state = 405, .external_lex_state = 2}, + [6379] = {.lex_state = 405, .external_lex_state = 2}, + [6380] = {.lex_state = 405, .external_lex_state = 2}, + [6381] = {.lex_state = 405, .external_lex_state = 2}, + [6382] = {.lex_state = 405, .external_lex_state = 2}, + [6383] = {.lex_state = 405, .external_lex_state = 5}, + [6384] = {.lex_state = 405, .external_lex_state = 2}, + [6385] = {.lex_state = 405, .external_lex_state = 2}, + [6386] = {.lex_state = 405, .external_lex_state = 2}, + [6387] = {.lex_state = 405, .external_lex_state = 2}, + [6388] = {.lex_state = 405, .external_lex_state = 2}, + [6389] = {.lex_state = 405, .external_lex_state = 5}, + [6390] = {.lex_state = 405, .external_lex_state = 5}, + [6391] = {.lex_state = 405, .external_lex_state = 5}, + [6392] = {.lex_state = 405, .external_lex_state = 2}, + [6393] = {.lex_state = 50, .external_lex_state = 2}, + [6394] = {.lex_state = 405, .external_lex_state = 2}, + [6395] = {.lex_state = 405, .external_lex_state = 2}, + [6396] = {.lex_state = 405, .external_lex_state = 2}, + [6397] = {.lex_state = 405, .external_lex_state = 2}, + [6398] = {.lex_state = 405, .external_lex_state = 2}, + [6399] = {.lex_state = 405, .external_lex_state = 2}, + [6400] = {.lex_state = 405, .external_lex_state = 2}, + [6401] = {.lex_state = 405, .external_lex_state = 5}, + [6402] = {.lex_state = 405, .external_lex_state = 2}, + [6403] = {.lex_state = 50, .external_lex_state = 2}, + [6404] = {.lex_state = 405, .external_lex_state = 5}, + [6405] = {.lex_state = 405, .external_lex_state = 2}, + [6406] = {.lex_state = 405, .external_lex_state = 2}, + [6407] = {.lex_state = 405, .external_lex_state = 2}, + [6408] = {.lex_state = 405, .external_lex_state = 2}, + [6409] = {.lex_state = 405, .external_lex_state = 2}, + [6410] = {.lex_state = 405, .external_lex_state = 2}, + [6411] = {.lex_state = 405, .external_lex_state = 2}, + [6412] = {.lex_state = 405, .external_lex_state = 2}, + [6413] = {.lex_state = 405, .external_lex_state = 2}, + [6414] = {.lex_state = 405, .external_lex_state = 2}, + [6415] = {.lex_state = 405, .external_lex_state = 2}, + [6416] = {.lex_state = 405, .external_lex_state = 5}, + [6417] = {.lex_state = 405, .external_lex_state = 5}, + [6418] = {.lex_state = 405, .external_lex_state = 2}, + [6419] = {.lex_state = 405, .external_lex_state = 2}, + [6420] = {.lex_state = 405, .external_lex_state = 2}, + [6421] = {.lex_state = 405, .external_lex_state = 2}, + [6422] = {.lex_state = 50, .external_lex_state = 2}, + [6423] = {.lex_state = 405, .external_lex_state = 2}, + [6424] = {.lex_state = 405, .external_lex_state = 2}, + [6425] = {.lex_state = 405, .external_lex_state = 2}, + [6426] = {.lex_state = 405, .external_lex_state = 5}, + [6427] = {.lex_state = 405, .external_lex_state = 2}, + [6428] = {.lex_state = 405, .external_lex_state = 2}, + [6429] = {.lex_state = 405, .external_lex_state = 5}, + [6430] = {.lex_state = 405, .external_lex_state = 2}, + [6431] = {.lex_state = 405, .external_lex_state = 2}, + [6432] = {.lex_state = 405, .external_lex_state = 2}, + [6433] = {.lex_state = 405, .external_lex_state = 2}, + [6434] = {.lex_state = 405, .external_lex_state = 2}, + [6435] = {.lex_state = 405, .external_lex_state = 5}, + [6436] = {.lex_state = 405, .external_lex_state = 2}, + [6437] = {.lex_state = 405, .external_lex_state = 2}, + [6438] = {.lex_state = 50, .external_lex_state = 2}, + [6439] = {.lex_state = 405, .external_lex_state = 2}, + [6440] = {.lex_state = 50, .external_lex_state = 2}, + [6441] = {.lex_state = 405, .external_lex_state = 2}, + [6442] = {.lex_state = 50, .external_lex_state = 2}, + [6443] = {.lex_state = 405, .external_lex_state = 2}, + [6444] = {.lex_state = 405, .external_lex_state = 5}, + [6445] = {.lex_state = 405, .external_lex_state = 2}, + [6446] = {.lex_state = 50, .external_lex_state = 2}, + [6447] = {.lex_state = 405, .external_lex_state = 2}, + [6448] = {.lex_state = 405, .external_lex_state = 2}, + [6449] = {.lex_state = 405, .external_lex_state = 2}, + [6450] = {.lex_state = 405, .external_lex_state = 2}, + [6451] = {.lex_state = 405, .external_lex_state = 2}, + [6452] = {.lex_state = 405, .external_lex_state = 5}, + [6453] = {.lex_state = 50, .external_lex_state = 2}, + [6454] = {.lex_state = 50, .external_lex_state = 2}, + [6455] = {.lex_state = 405, .external_lex_state = 2}, + [6456] = {.lex_state = 405, .external_lex_state = 2}, + [6457] = {.lex_state = 405, .external_lex_state = 2}, + [6458] = {.lex_state = 405, .external_lex_state = 2}, + [6459] = {.lex_state = 405, .external_lex_state = 2}, + [6460] = {.lex_state = 405, .external_lex_state = 2}, + [6461] = {.lex_state = 405, .external_lex_state = 2}, + [6462] = {.lex_state = 405, .external_lex_state = 2}, + [6463] = {.lex_state = 405, .external_lex_state = 2}, + [6464] = {.lex_state = 405, .external_lex_state = 2}, + [6465] = {.lex_state = 405, .external_lex_state = 2}, + [6466] = {.lex_state = 405, .external_lex_state = 2}, + [6467] = {.lex_state = 405, .external_lex_state = 2}, + [6468] = {.lex_state = 405, .external_lex_state = 2}, + [6469] = {.lex_state = 405, .external_lex_state = 2}, + [6470] = {.lex_state = 405, .external_lex_state = 2}, + [6471] = {.lex_state = 405, .external_lex_state = 2}, + [6472] = {.lex_state = 50, .external_lex_state = 2}, + [6473] = {.lex_state = 405, .external_lex_state = 2}, + [6474] = {.lex_state = 405, .external_lex_state = 2}, + [6475] = {.lex_state = 405, .external_lex_state = 2}, + [6476] = {.lex_state = 405, .external_lex_state = 2}, + [6477] = {.lex_state = 405, .external_lex_state = 2}, + [6478] = {.lex_state = 405, .external_lex_state = 2}, + [6479] = {.lex_state = 405, .external_lex_state = 2}, + [6480] = {.lex_state = 405, .external_lex_state = 2}, + [6481] = {.lex_state = 50, .external_lex_state = 2}, + [6482] = {.lex_state = 405, .external_lex_state = 2}, + [6483] = {.lex_state = 405, .external_lex_state = 2}, + [6484] = {.lex_state = 405, .external_lex_state = 2}, + [6485] = {.lex_state = 405, .external_lex_state = 2}, + [6486] = {.lex_state = 405, .external_lex_state = 2}, + [6487] = {.lex_state = 405, .external_lex_state = 2}, + [6488] = {.lex_state = 405, .external_lex_state = 2}, + [6489] = {.lex_state = 405, .external_lex_state = 2}, + [6490] = {.lex_state = 50, .external_lex_state = 2}, + [6491] = {.lex_state = 405, .external_lex_state = 2}, + [6492] = {.lex_state = 405, .external_lex_state = 2}, + [6493] = {.lex_state = 405, .external_lex_state = 2}, + [6494] = {.lex_state = 48, .external_lex_state = 2}, + [6495] = {.lex_state = 405, .external_lex_state = 2}, + [6496] = {.lex_state = 50, .external_lex_state = 2}, + [6497] = {.lex_state = 48, .external_lex_state = 2}, + [6498] = {.lex_state = 405, .external_lex_state = 5}, + [6499] = {.lex_state = 405, .external_lex_state = 2}, + [6500] = {.lex_state = 405, .external_lex_state = 2}, + [6501] = {.lex_state = 405, .external_lex_state = 2}, + [6502] = {.lex_state = 48, .external_lex_state = 2}, + [6503] = {.lex_state = 405, .external_lex_state = 5}, + [6504] = {.lex_state = 405, .external_lex_state = 5}, + [6505] = {.lex_state = 405, .external_lex_state = 5}, + [6506] = {.lex_state = 405, .external_lex_state = 5}, + [6507] = {.lex_state = 405, .external_lex_state = 2}, + [6508] = {.lex_state = 405, .external_lex_state = 5}, + [6509] = {.lex_state = 405, .external_lex_state = 5}, + [6510] = {.lex_state = 405, .external_lex_state = 2}, + [6511] = {.lex_state = 405, .external_lex_state = 2}, + [6512] = {.lex_state = 405, .external_lex_state = 2}, + [6513] = {.lex_state = 405, .external_lex_state = 5}, + [6514] = {.lex_state = 405, .external_lex_state = 5}, + [6515] = {.lex_state = 405, .external_lex_state = 5}, + [6516] = {.lex_state = 405, .external_lex_state = 2}, + [6517] = {.lex_state = 405, .external_lex_state = 2}, + [6518] = {.lex_state = 405, .external_lex_state = 5}, + [6519] = {.lex_state = 405, .external_lex_state = 2}, + [6520] = {.lex_state = 405, .external_lex_state = 2}, + [6521] = {.lex_state = 405, .external_lex_state = 2}, + [6522] = {.lex_state = 48, .external_lex_state = 2}, + [6523] = {.lex_state = 405, .external_lex_state = 5}, + [6524] = {.lex_state = 405, .external_lex_state = 2}, + [6525] = {.lex_state = 405, .external_lex_state = 2}, + [6526] = {.lex_state = 405, .external_lex_state = 2}, + [6527] = {.lex_state = 405, .external_lex_state = 2}, + [6528] = {.lex_state = 405, .external_lex_state = 2}, + [6529] = {.lex_state = 405, .external_lex_state = 2}, + [6530] = {.lex_state = 405, .external_lex_state = 2}, + [6531] = {.lex_state = 405, .external_lex_state = 2}, [6532] = {.lex_state = 50, .external_lex_state = 2}, - [6533] = {.lex_state = 406, .external_lex_state = 2}, - [6534] = {.lex_state = 406, .external_lex_state = 2}, - [6535] = {.lex_state = 50, .external_lex_state = 2}, - [6536] = {.lex_state = 406, .external_lex_state = 2}, - [6537] = {.lex_state = 406, .external_lex_state = 2}, - [6538] = {.lex_state = 406, .external_lex_state = 2}, - [6539] = {.lex_state = 406, .external_lex_state = 2}, - [6540] = {.lex_state = 406, .external_lex_state = 2}, - [6541] = {.lex_state = 406, .external_lex_state = 2}, - [6542] = {.lex_state = 406, .external_lex_state = 2}, - [6543] = {.lex_state = 50, .external_lex_state = 2}, + [6533] = {.lex_state = 405, .external_lex_state = 2}, + [6534] = {.lex_state = 405, .external_lex_state = 5}, + [6535] = {.lex_state = 405, .external_lex_state = 5}, + [6536] = {.lex_state = 48, .external_lex_state = 2}, + [6537] = {.lex_state = 50, .external_lex_state = 2}, + [6538] = {.lex_state = 405, .external_lex_state = 2}, + [6539] = {.lex_state = 405, .external_lex_state = 2}, + [6540] = {.lex_state = 405, .external_lex_state = 2}, + [6541] = {.lex_state = 405, .external_lex_state = 2}, + [6542] = {.lex_state = 50, .external_lex_state = 2}, + [6543] = {.lex_state = 405, .external_lex_state = 2}, [6544] = {.lex_state = 50, .external_lex_state = 2}, - [6545] = {.lex_state = 406, .external_lex_state = 2}, - [6546] = {.lex_state = 406, .external_lex_state = 2}, - [6547] = {.lex_state = 406, .external_lex_state = 2}, - [6548] = {.lex_state = 406, .external_lex_state = 2}, - [6549] = {.lex_state = 406, .external_lex_state = 2}, - [6550] = {.lex_state = 406, .external_lex_state = 2}, - [6551] = {.lex_state = 406, .external_lex_state = 2}, - [6552] = {.lex_state = 406, .external_lex_state = 5}, - [6553] = {.lex_state = 406, .external_lex_state = 2}, - [6554] = {.lex_state = 406, .external_lex_state = 2}, - [6555] = {.lex_state = 406, .external_lex_state = 5}, - [6556] = {.lex_state = 406, .external_lex_state = 5}, - [6557] = {.lex_state = 406, .external_lex_state = 2}, - [6558] = {.lex_state = 406, .external_lex_state = 2}, - [6559] = {.lex_state = 406, .external_lex_state = 2}, - [6560] = {.lex_state = 406, .external_lex_state = 2}, - [6561] = {.lex_state = 50, .external_lex_state = 2}, - [6562] = {.lex_state = 50, .external_lex_state = 2}, - [6563] = {.lex_state = 50, .external_lex_state = 2}, - [6564] = {.lex_state = 50, .external_lex_state = 2}, - [6565] = {.lex_state = 406, .external_lex_state = 2}, - [6566] = {.lex_state = 406, .external_lex_state = 2}, - [6567] = {.lex_state = 50, .external_lex_state = 2}, - [6568] = {.lex_state = 406, .external_lex_state = 5}, - [6569] = {.lex_state = 406, .external_lex_state = 5}, - [6570] = {.lex_state = 406, .external_lex_state = 2}, - [6571] = {.lex_state = 406, .external_lex_state = 2}, - [6572] = {.lex_state = 406, .external_lex_state = 2}, - [6573] = {.lex_state = 406, .external_lex_state = 2}, - [6574] = {.lex_state = 406, .external_lex_state = 2}, - [6575] = {.lex_state = 50, .external_lex_state = 2}, - [6576] = {.lex_state = 406, .external_lex_state = 2}, - [6577] = {.lex_state = 50, .external_lex_state = 2}, - [6578] = {.lex_state = 406, .external_lex_state = 2}, - [6579] = {.lex_state = 406, .external_lex_state = 2}, - [6580] = {.lex_state = 406, .external_lex_state = 2}, - [6581] = {.lex_state = 406, .external_lex_state = 2}, - [6582] = {.lex_state = 406, .external_lex_state = 2}, - [6583] = {.lex_state = 406, .external_lex_state = 2}, - [6584] = {.lex_state = 406, .external_lex_state = 2}, - [6585] = {.lex_state = 50, .external_lex_state = 2}, - [6586] = {.lex_state = 406, .external_lex_state = 2}, - [6587] = {.lex_state = 406, .external_lex_state = 2}, - [6588] = {.lex_state = 406, .external_lex_state = 2}, - [6589] = {.lex_state = 406, .external_lex_state = 2}, - [6590] = {.lex_state = 406, .external_lex_state = 5}, - [6591] = {.lex_state = 50, .external_lex_state = 2}, - [6592] = {.lex_state = 406, .external_lex_state = 2}, - [6593] = {.lex_state = 406, .external_lex_state = 2}, - [6594] = {.lex_state = 406, .external_lex_state = 5}, - [6595] = {.lex_state = 406, .external_lex_state = 2}, - [6596] = {.lex_state = 406, .external_lex_state = 5}, - [6597] = {.lex_state = 406, .external_lex_state = 5}, - [6598] = {.lex_state = 406, .external_lex_state = 5}, - [6599] = {.lex_state = 406, .external_lex_state = 2}, - [6600] = {.lex_state = 406, .external_lex_state = 5}, - [6601] = {.lex_state = 406, .external_lex_state = 5}, - [6602] = {.lex_state = 406, .external_lex_state = 2}, - [6603] = {.lex_state = 406, .external_lex_state = 2}, - [6604] = {.lex_state = 406, .external_lex_state = 5}, - [6605] = {.lex_state = 406, .external_lex_state = 5}, - [6606] = {.lex_state = 406, .external_lex_state = 2}, - [6607] = {.lex_state = 406, .external_lex_state = 2}, - [6608] = {.lex_state = 406, .external_lex_state = 2}, - [6609] = {.lex_state = 406, .external_lex_state = 5}, - [6610] = {.lex_state = 406, .external_lex_state = 2}, - [6611] = {.lex_state = 406, .external_lex_state = 2}, - [6612] = {.lex_state = 406, .external_lex_state = 5}, - [6613] = {.lex_state = 406, .external_lex_state = 2}, - [6614] = {.lex_state = 406, .external_lex_state = 5}, - [6615] = {.lex_state = 406, .external_lex_state = 2}, - [6616] = {.lex_state = 50, .external_lex_state = 2}, - [6617] = {.lex_state = 50, .external_lex_state = 2}, - [6618] = {.lex_state = 48, .external_lex_state = 2}, - [6619] = {.lex_state = 50, .external_lex_state = 2}, - [6620] = {.lex_state = 406, .external_lex_state = 2}, - [6621] = {.lex_state = 406, .external_lex_state = 2}, - [6622] = {.lex_state = 406, .external_lex_state = 2}, - [6623] = {.lex_state = 406, .external_lex_state = 2}, - [6624] = {.lex_state = 50, .external_lex_state = 2}, - [6625] = {.lex_state = 48, .external_lex_state = 2}, - [6626] = {.lex_state = 406, .external_lex_state = 2}, - [6627] = {.lex_state = 406, .external_lex_state = 5}, - [6628] = {.lex_state = 406, .external_lex_state = 2}, - [6629] = {.lex_state = 406, .external_lex_state = 2}, - [6630] = {.lex_state = 406, .external_lex_state = 2}, - [6631] = {.lex_state = 406, .external_lex_state = 2}, - [6632] = {.lex_state = 406, .external_lex_state = 2}, - [6633] = {.lex_state = 406, .external_lex_state = 2}, - [6634] = {.lex_state = 406, .external_lex_state = 2}, - [6635] = {.lex_state = 406, .external_lex_state = 2}, - [6636] = {.lex_state = 48, .external_lex_state = 2}, - [6637] = {.lex_state = 406, .external_lex_state = 2}, - [6638] = {.lex_state = 406, .external_lex_state = 2}, - [6639] = {.lex_state = 406, .external_lex_state = 2}, - [6640] = {.lex_state = 406, .external_lex_state = 2}, - [6641] = {.lex_state = 406, .external_lex_state = 2}, - [6642] = {.lex_state = 406, .external_lex_state = 2}, - [6643] = {.lex_state = 406, .external_lex_state = 2}, - [6644] = {.lex_state = 406, .external_lex_state = 2}, - [6645] = {.lex_state = 406, .external_lex_state = 5}, - [6646] = {.lex_state = 406, .external_lex_state = 2}, - [6647] = {.lex_state = 406, .external_lex_state = 2}, - [6648] = {.lex_state = 406, .external_lex_state = 2}, - [6649] = {.lex_state = 406, .external_lex_state = 2}, - [6650] = {.lex_state = 406, .external_lex_state = 2}, - [6651] = {.lex_state = 406, .external_lex_state = 2}, - [6652] = {.lex_state = 406, .external_lex_state = 2}, - [6653] = {.lex_state = 406, .external_lex_state = 2}, - [6654] = {.lex_state = 406, .external_lex_state = 2}, - [6655] = {.lex_state = 406, .external_lex_state = 2}, - [6656] = {.lex_state = 406, .external_lex_state = 2}, - [6657] = {.lex_state = 406, .external_lex_state = 2}, - [6658] = {.lex_state = 406, .external_lex_state = 2}, - [6659] = {.lex_state = 406, .external_lex_state = 2}, - [6660] = {.lex_state = 406, .external_lex_state = 2}, - [6661] = {.lex_state = 406, .external_lex_state = 2}, - [6662] = {.lex_state = 406, .external_lex_state = 5}, - [6663] = {.lex_state = 406, .external_lex_state = 2}, - [6664] = {.lex_state = 406, .external_lex_state = 2}, - [6665] = {.lex_state = 50, .external_lex_state = 2}, - [6666] = {.lex_state = 406, .external_lex_state = 2}, - [6667] = {.lex_state = 50, .external_lex_state = 2}, - [6668] = {.lex_state = 406, .external_lex_state = 2}, - [6669] = {.lex_state = 406, .external_lex_state = 2}, - [6670] = {.lex_state = 50, .external_lex_state = 2}, - [6671] = {.lex_state = 2, .external_lex_state = 2}, - [6672] = {.lex_state = 406, .external_lex_state = 2}, - [6673] = {.lex_state = 406, .external_lex_state = 2}, - [6674] = {.lex_state = 406, .external_lex_state = 2}, - [6675] = {.lex_state = 406, .external_lex_state = 2}, - [6676] = {.lex_state = 406, .external_lex_state = 2}, - [6677] = {.lex_state = 406, .external_lex_state = 2}, - [6678] = {.lex_state = 406, .external_lex_state = 2}, - [6679] = {.lex_state = 406, .external_lex_state = 2}, - [6680] = {.lex_state = 406, .external_lex_state = 2}, - [6681] = {.lex_state = 406, .external_lex_state = 2}, - [6682] = {.lex_state = 406, .external_lex_state = 2}, - [6683] = {.lex_state = 406, .external_lex_state = 5}, - [6684] = {.lex_state = 406, .external_lex_state = 2}, - [6685] = {.lex_state = 406, .external_lex_state = 2}, - [6686] = {.lex_state = 406, .external_lex_state = 5}, - [6687] = {.lex_state = 50, .external_lex_state = 2}, - [6688] = {.lex_state = 406, .external_lex_state = 2}, - [6689] = {.lex_state = 406, .external_lex_state = 5}, - [6690] = {.lex_state = 406, .external_lex_state = 2}, - [6691] = {.lex_state = 406, .external_lex_state = 2}, - [6692] = {.lex_state = 406, .external_lex_state = 2}, - [6693] = {.lex_state = 406, .external_lex_state = 5}, - [6694] = {.lex_state = 406, .external_lex_state = 5}, - [6695] = {.lex_state = 406, .external_lex_state = 5}, - [6696] = {.lex_state = 406, .external_lex_state = 2}, - [6697] = {.lex_state = 406, .external_lex_state = 2}, - [6698] = {.lex_state = 406, .external_lex_state = 2}, - [6699] = {.lex_state = 406, .external_lex_state = 5}, - [6700] = {.lex_state = 406, .external_lex_state = 2}, - [6701] = {.lex_state = 406, .external_lex_state = 2}, - [6702] = {.lex_state = 406, .external_lex_state = 2}, - [6703] = {.lex_state = 406, .external_lex_state = 2}, - [6704] = {.lex_state = 406, .external_lex_state = 2}, - [6705] = {.lex_state = 406, .external_lex_state = 2}, - [6706] = {.lex_state = 406, .external_lex_state = 2}, - [6707] = {.lex_state = 406, .external_lex_state = 2}, - [6708] = {.lex_state = 406, .external_lex_state = 2}, - [6709] = {.lex_state = 406, .external_lex_state = 2}, - [6710] = {.lex_state = 406, .external_lex_state = 5}, - [6711] = {.lex_state = 406, .external_lex_state = 2}, - [6712] = {.lex_state = 406, .external_lex_state = 2}, - [6713] = {.lex_state = 406, .external_lex_state = 2}, - [6714] = {.lex_state = 406, .external_lex_state = 2}, - [6715] = {.lex_state = 406, .external_lex_state = 5}, - [6716] = {.lex_state = 406, .external_lex_state = 2}, - [6717] = {.lex_state = 406, .external_lex_state = 2}, - [6718] = {.lex_state = 406, .external_lex_state = 5}, - [6719] = {.lex_state = 406, .external_lex_state = 2}, - [6720] = {.lex_state = 406, .external_lex_state = 5}, - [6721] = {.lex_state = 406, .external_lex_state = 2}, - [6722] = {.lex_state = 406, .external_lex_state = 2}, - [6723] = {.lex_state = 406, .external_lex_state = 2}, - [6724] = {.lex_state = 406, .external_lex_state = 2}, - [6725] = {.lex_state = 50, .external_lex_state = 2}, - [6726] = {.lex_state = 406, .external_lex_state = 2}, - [6727] = {.lex_state = 406, .external_lex_state = 2}, - [6728] = {.lex_state = 406, .external_lex_state = 2}, - [6729] = {.lex_state = 406, .external_lex_state = 2}, - [6730] = {.lex_state = 406, .external_lex_state = 2}, - [6731] = {.lex_state = 406, .external_lex_state = 2}, - [6732] = {.lex_state = 406, .external_lex_state = 2}, - [6733] = {.lex_state = 406, .external_lex_state = 2}, - [6734] = {.lex_state = 406, .external_lex_state = 2}, - [6735] = {.lex_state = 406, .external_lex_state = 2}, - [6736] = {.lex_state = 406, .external_lex_state = 2}, - [6737] = {.lex_state = 406, .external_lex_state = 5}, - [6738] = {.lex_state = 406, .external_lex_state = 2}, - [6739] = {.lex_state = 406, .external_lex_state = 2}, - [6740] = {.lex_state = 406, .external_lex_state = 2}, - [6741] = {.lex_state = 50, .external_lex_state = 2}, - [6742] = {.lex_state = 406, .external_lex_state = 5}, - [6743] = {.lex_state = 50, .external_lex_state = 2}, - [6744] = {.lex_state = 406, .external_lex_state = 2}, - [6745] = {.lex_state = 406, .external_lex_state = 2}, - [6746] = {.lex_state = 406, .external_lex_state = 5}, - [6747] = {.lex_state = 406, .external_lex_state = 5}, - [6748] = {.lex_state = 406, .external_lex_state = 2}, - [6749] = {.lex_state = 48, .external_lex_state = 2}, - [6750] = {.lex_state = 406, .external_lex_state = 2}, - [6751] = {.lex_state = 406, .external_lex_state = 2}, - [6752] = {.lex_state = 406, .external_lex_state = 5}, - [6753] = {.lex_state = 406, .external_lex_state = 2}, - [6754] = {.lex_state = 406, .external_lex_state = 2}, - [6755] = {.lex_state = 406, .external_lex_state = 5}, - [6756] = {.lex_state = 406, .external_lex_state = 2}, - [6757] = {.lex_state = 406, .external_lex_state = 2}, - [6758] = {.lex_state = 406, .external_lex_state = 2}, - [6759] = {.lex_state = 406, .external_lex_state = 5}, - [6760] = {.lex_state = 406, .external_lex_state = 5}, - [6761] = {.lex_state = 406, .external_lex_state = 2}, - [6762] = {.lex_state = 406, .external_lex_state = 2}, - [6763] = {.lex_state = 406, .external_lex_state = 2}, - [6764] = {.lex_state = 406, .external_lex_state = 5}, - [6765] = {.lex_state = 406, .external_lex_state = 2}, - [6766] = {.lex_state = 406, .external_lex_state = 2}, - [6767] = {.lex_state = 406, .external_lex_state = 2}, - [6768] = {.lex_state = 406, .external_lex_state = 2}, - [6769] = {.lex_state = 406, .external_lex_state = 2}, - [6770] = {.lex_state = 406, .external_lex_state = 2}, - [6771] = {.lex_state = 406, .external_lex_state = 2}, - [6772] = {.lex_state = 406, .external_lex_state = 2}, - [6773] = {.lex_state = 406, .external_lex_state = 5}, - [6774] = {.lex_state = 406, .external_lex_state = 2}, - [6775] = {.lex_state = 406, .external_lex_state = 2}, - [6776] = {.lex_state = 406, .external_lex_state = 2}, - [6777] = {.lex_state = 406, .external_lex_state = 2}, - [6778] = {.lex_state = 406, .external_lex_state = 2}, - [6779] = {.lex_state = 406, .external_lex_state = 2}, - [6780] = {.lex_state = 406, .external_lex_state = 2}, - [6781] = {.lex_state = 406, .external_lex_state = 2}, - [6782] = {.lex_state = 406, .external_lex_state = 5}, - [6783] = {.lex_state = 406, .external_lex_state = 5}, - [6784] = {.lex_state = 406, .external_lex_state = 5}, - [6785] = {.lex_state = 406, .external_lex_state = 2}, - [6786] = {.lex_state = 406, .external_lex_state = 2}, - [6787] = {.lex_state = 49, .external_lex_state = 2}, - [6788] = {.lex_state = 406, .external_lex_state = 5}, - [6789] = {.lex_state = 406, .external_lex_state = 2}, - [6790] = {.lex_state = 406, .external_lex_state = 2}, - [6791] = {.lex_state = 406, .external_lex_state = 2}, - [6792] = {.lex_state = 406, .external_lex_state = 2}, - [6793] = {.lex_state = 50, .external_lex_state = 2}, - [6794] = {.lex_state = 406, .external_lex_state = 2}, - [6795] = {.lex_state = 406, .external_lex_state = 2}, - [6796] = {.lex_state = 406, .external_lex_state = 2}, - [6797] = {.lex_state = 406, .external_lex_state = 2}, - [6798] = {.lex_state = 406, .external_lex_state = 2}, - [6799] = {.lex_state = 406, .external_lex_state = 2}, - [6800] = {.lex_state = 406, .external_lex_state = 2}, - [6801] = {.lex_state = 406, .external_lex_state = 2}, - [6802] = {.lex_state = 406, .external_lex_state = 2}, - [6803] = {.lex_state = 406, .external_lex_state = 2}, - [6804] = {.lex_state = 406, .external_lex_state = 2}, - [6805] = {.lex_state = 406, .external_lex_state = 2}, - [6806] = {.lex_state = 406, .external_lex_state = 2}, - [6807] = {.lex_state = 406, .external_lex_state = 2}, - [6808] = {.lex_state = 406, .external_lex_state = 2}, - [6809] = {.lex_state = 406, .external_lex_state = 5}, - [6810] = {.lex_state = 406, .external_lex_state = 2}, - [6811] = {.lex_state = 406, .external_lex_state = 2}, - [6812] = {.lex_state = 406, .external_lex_state = 2}, - [6813] = {.lex_state = 406, .external_lex_state = 5}, - [6814] = {.lex_state = 406, .external_lex_state = 2}, - [6815] = {.lex_state = 406, .external_lex_state = 5}, - [6816] = {.lex_state = 406, .external_lex_state = 2}, - [6817] = {.lex_state = 406, .external_lex_state = 2}, - [6818] = {.lex_state = 406, .external_lex_state = 2}, - [6819] = {.lex_state = 50, .external_lex_state = 2}, - [6820] = {.lex_state = 406, .external_lex_state = 2}, - [6821] = {.lex_state = 406, .external_lex_state = 2}, - [6822] = {.lex_state = 406, .external_lex_state = 2}, - [6823] = {.lex_state = 406, .external_lex_state = 2}, - [6824] = {.lex_state = 406, .external_lex_state = 2}, - [6825] = {.lex_state = 406, .external_lex_state = 5}, - [6826] = {.lex_state = 406, .external_lex_state = 5}, - [6827] = {.lex_state = 406, .external_lex_state = 2}, - [6828] = {.lex_state = 406, .external_lex_state = 2}, - [6829] = {.lex_state = 406, .external_lex_state = 2}, - [6830] = {.lex_state = 406, .external_lex_state = 2}, - [6831] = {.lex_state = 406, .external_lex_state = 2}, - [6832] = {.lex_state = 406, .external_lex_state = 2}, - [6833] = {.lex_state = 406, .external_lex_state = 2}, - [6834] = {.lex_state = 406, .external_lex_state = 2}, - [6835] = {.lex_state = 406, .external_lex_state = 2}, - [6836] = {.lex_state = 406, .external_lex_state = 2}, - [6837] = {.lex_state = 406, .external_lex_state = 2}, - [6838] = {.lex_state = 406, .external_lex_state = 2}, - [6839] = {.lex_state = 406, .external_lex_state = 2}, - [6840] = {.lex_state = 406, .external_lex_state = 2}, - [6841] = {.lex_state = 406, .external_lex_state = 2}, - [6842] = {.lex_state = 48, .external_lex_state = 2}, - [6843] = {.lex_state = 406, .external_lex_state = 2}, - [6844] = {.lex_state = 406, .external_lex_state = 2}, - [6845] = {.lex_state = 406, .external_lex_state = 2}, - [6846] = {.lex_state = 48, .external_lex_state = 2}, - [6847] = {.lex_state = 406, .external_lex_state = 2}, - [6848] = {.lex_state = 406, .external_lex_state = 2}, - [6849] = {.lex_state = 406, .external_lex_state = 2}, - [6850] = {.lex_state = 406, .external_lex_state = 2}, - [6851] = {.lex_state = 406, .external_lex_state = 2}, - [6852] = {.lex_state = 406, .external_lex_state = 2}, - [6853] = {.lex_state = 406, .external_lex_state = 5}, - [6854] = {.lex_state = 406, .external_lex_state = 2}, - [6855] = {.lex_state = 406, .external_lex_state = 2}, - [6856] = {.lex_state = 406, .external_lex_state = 2}, - [6857] = {.lex_state = 406, .external_lex_state = 2}, - [6858] = {.lex_state = 49, .external_lex_state = 2}, - [6859] = {.lex_state = 406, .external_lex_state = 2}, - [6860] = {.lex_state = 406, .external_lex_state = 2}, - [6861] = {.lex_state = 406, .external_lex_state = 2}, - [6862] = {.lex_state = 406, .external_lex_state = 2}, - [6863] = {.lex_state = 406, .external_lex_state = 2}, - [6864] = {.lex_state = 406, .external_lex_state = 2}, - [6865] = {.lex_state = 406, .external_lex_state = 2}, - [6866] = {.lex_state = 406, .external_lex_state = 2}, - [6867] = {.lex_state = 406, .external_lex_state = 2}, - [6868] = {.lex_state = 406, .external_lex_state = 2}, - [6869] = {.lex_state = 406, .external_lex_state = 2}, - [6870] = {.lex_state = 406, .external_lex_state = 2}, - [6871] = {.lex_state = 406, .external_lex_state = 2}, - [6872] = {.lex_state = 406, .external_lex_state = 2}, - [6873] = {.lex_state = 406, .external_lex_state = 2}, - [6874] = {.lex_state = 406, .external_lex_state = 5}, - [6875] = {.lex_state = 50, .external_lex_state = 2}, - [6876] = {.lex_state = 406, .external_lex_state = 5}, - [6877] = {.lex_state = 406, .external_lex_state = 2}, - [6878] = {.lex_state = 406, .external_lex_state = 2}, + [6545] = {.lex_state = 405, .external_lex_state = 2}, + [6546] = {.lex_state = 405, .external_lex_state = 5}, + [6547] = {.lex_state = 405, .external_lex_state = 2}, + [6548] = {.lex_state = 405, .external_lex_state = 2}, + [6549] = {.lex_state = 405, .external_lex_state = 2}, + [6550] = {.lex_state = 405, .external_lex_state = 2}, + [6551] = {.lex_state = 405, .external_lex_state = 2}, + [6552] = {.lex_state = 405, .external_lex_state = 2}, + [6553] = {.lex_state = 405, .external_lex_state = 2}, + [6554] = {.lex_state = 405, .external_lex_state = 2}, + [6555] = {.lex_state = 405, .external_lex_state = 2}, + [6556] = {.lex_state = 405, .external_lex_state = 5}, + [6557] = {.lex_state = 405, .external_lex_state = 2}, + [6558] = {.lex_state = 405, .external_lex_state = 5}, + [6559] = {.lex_state = 405, .external_lex_state = 2}, + [6560] = {.lex_state = 405, .external_lex_state = 2}, + [6561] = {.lex_state = 405, .external_lex_state = 2}, + [6562] = {.lex_state = 405, .external_lex_state = 5}, + [6563] = {.lex_state = 405, .external_lex_state = 5}, + [6564] = {.lex_state = 405, .external_lex_state = 2}, + [6565] = {.lex_state = 405, .external_lex_state = 5}, + [6566] = {.lex_state = 405, .external_lex_state = 2}, + [6567] = {.lex_state = 405, .external_lex_state = 2}, + [6568] = {.lex_state = 405, .external_lex_state = 2}, + [6569] = {.lex_state = 405, .external_lex_state = 2}, + [6570] = {.lex_state = 405, .external_lex_state = 5}, + [6571] = {.lex_state = 405, .external_lex_state = 5}, + [6572] = {.lex_state = 405, .external_lex_state = 5}, + [6573] = {.lex_state = 405, .external_lex_state = 5}, + [6574] = {.lex_state = 405, .external_lex_state = 2}, + [6575] = {.lex_state = 405, .external_lex_state = 5}, + [6576] = {.lex_state = 405, .external_lex_state = 2}, + [6577] = {.lex_state = 405, .external_lex_state = 2}, + [6578] = {.lex_state = 405, .external_lex_state = 5}, + [6579] = {.lex_state = 405, .external_lex_state = 2}, + [6580] = {.lex_state = 405, .external_lex_state = 5}, + [6581] = {.lex_state = 405, .external_lex_state = 5}, + [6582] = {.lex_state = 405, .external_lex_state = 2}, + [6583] = {.lex_state = 405, .external_lex_state = 2}, + [6584] = {.lex_state = 405, .external_lex_state = 2}, + [6585] = {.lex_state = 405, .external_lex_state = 2}, + [6586] = {.lex_state = 50, .external_lex_state = 2}, + [6587] = {.lex_state = 405, .external_lex_state = 2}, + [6588] = {.lex_state = 405, .external_lex_state = 2}, + [6589] = {.lex_state = 50, .external_lex_state = 2}, + [6590] = {.lex_state = 405, .external_lex_state = 2}, + [6591] = {.lex_state = 405, .external_lex_state = 2}, + [6592] = {.lex_state = 405, .external_lex_state = 2}, + [6593] = {.lex_state = 405, .external_lex_state = 2}, + [6594] = {.lex_state = 405, .external_lex_state = 2}, + [6595] = {.lex_state = 405, .external_lex_state = 2}, + [6596] = {.lex_state = 405, .external_lex_state = 2}, + [6597] = {.lex_state = 405, .external_lex_state = 5}, + [6598] = {.lex_state = 405, .external_lex_state = 2}, + [6599] = {.lex_state = 50, .external_lex_state = 2}, + [6600] = {.lex_state = 405, .external_lex_state = 5}, + [6601] = {.lex_state = 405, .external_lex_state = 5}, + [6602] = {.lex_state = 405, .external_lex_state = 5}, + [6603] = {.lex_state = 405, .external_lex_state = 5}, + [6604] = {.lex_state = 405, .external_lex_state = 2}, + [6605] = {.lex_state = 50, .external_lex_state = 2}, + [6606] = {.lex_state = 405, .external_lex_state = 5}, + [6607] = {.lex_state = 405, .external_lex_state = 2}, + [6608] = {.lex_state = 405, .external_lex_state = 2}, + [6609] = {.lex_state = 405, .external_lex_state = 2}, + [6610] = {.lex_state = 405, .external_lex_state = 2}, + [6611] = {.lex_state = 405, .external_lex_state = 2}, + [6612] = {.lex_state = 405, .external_lex_state = 2}, + [6613] = {.lex_state = 405, .external_lex_state = 2}, + [6614] = {.lex_state = 405, .external_lex_state = 2}, + [6615] = {.lex_state = 405, .external_lex_state = 2}, + [6616] = {.lex_state = 405, .external_lex_state = 2}, + [6617] = {.lex_state = 405, .external_lex_state = 2}, + [6618] = {.lex_state = 405, .external_lex_state = 2}, + [6619] = {.lex_state = 405, .external_lex_state = 2}, + [6620] = {.lex_state = 405, .external_lex_state = 2}, + [6621] = {.lex_state = 405, .external_lex_state = 2}, + [6622] = {.lex_state = 405, .external_lex_state = 2}, + [6623] = {.lex_state = 405, .external_lex_state = 2}, + [6624] = {.lex_state = 405, .external_lex_state = 2}, + [6625] = {.lex_state = 49, .external_lex_state = 2}, + [6626] = {.lex_state = 405, .external_lex_state = 2}, + [6627] = {.lex_state = 405, .external_lex_state = 2}, + [6628] = {.lex_state = 405, .external_lex_state = 5}, + [6629] = {.lex_state = 405, .external_lex_state = 5}, + [6630] = {.lex_state = 405, .external_lex_state = 2}, + [6631] = {.lex_state = 405, .external_lex_state = 2}, + [6632] = {.lex_state = 405, .external_lex_state = 2}, + [6633] = {.lex_state = 405, .external_lex_state = 2}, + [6634] = {.lex_state = 405, .external_lex_state = 5}, + [6635] = {.lex_state = 405, .external_lex_state = 2}, + [6636] = {.lex_state = 405, .external_lex_state = 2}, + [6637] = {.lex_state = 405, .external_lex_state = 2}, + [6638] = {.lex_state = 405, .external_lex_state = 2}, + [6639] = {.lex_state = 405, .external_lex_state = 2}, + [6640] = {.lex_state = 405, .external_lex_state = 2}, + [6641] = {.lex_state = 405, .external_lex_state = 2}, + [6642] = {.lex_state = 405, .external_lex_state = 2}, + [6643] = {.lex_state = 405, .external_lex_state = 2}, + [6644] = {.lex_state = 405, .external_lex_state = 5}, + [6645] = {.lex_state = 405, .external_lex_state = 5}, + [6646] = {.lex_state = 405, .external_lex_state = 2}, + [6647] = {.lex_state = 405, .external_lex_state = 2}, + [6648] = {.lex_state = 405, .external_lex_state = 2}, + [6649] = {.lex_state = 405, .external_lex_state = 2}, + [6650] = {.lex_state = 405, .external_lex_state = 2}, + [6651] = {.lex_state = 405, .external_lex_state = 2}, + [6652] = {.lex_state = 50, .external_lex_state = 2}, + [6653] = {.lex_state = 405, .external_lex_state = 2}, + [6654] = {.lex_state = 405, .external_lex_state = 2}, + [6655] = {.lex_state = 405, .external_lex_state = 2}, + [6656] = {.lex_state = 50, .external_lex_state = 2}, + [6657] = {.lex_state = 405, .external_lex_state = 2}, + [6658] = {.lex_state = 405, .external_lex_state = 2}, + [6659] = {.lex_state = 405, .external_lex_state = 2}, + [6660] = {.lex_state = 405, .external_lex_state = 2}, + [6661] = {.lex_state = 405, .external_lex_state = 2}, + [6662] = {.lex_state = 405, .external_lex_state = 2}, + [6663] = {.lex_state = 2, .external_lex_state = 2}, + [6664] = {.lex_state = 405, .external_lex_state = 2}, + [6665] = {.lex_state = 405, .external_lex_state = 2}, + [6666] = {.lex_state = 405, .external_lex_state = 2}, + [6667] = {.lex_state = 405, .external_lex_state = 2}, + [6668] = {.lex_state = 405, .external_lex_state = 2}, + [6669] = {.lex_state = 405, .external_lex_state = 2}, + [6670] = {.lex_state = 405, .external_lex_state = 2}, + [6671] = {.lex_state = 405, .external_lex_state = 5}, + [6672] = {.lex_state = 405, .external_lex_state = 2}, + [6673] = {.lex_state = 405, .external_lex_state = 2}, + [6674] = {.lex_state = 405, .external_lex_state = 2}, + [6675] = {.lex_state = 405, .external_lex_state = 2}, + [6676] = {.lex_state = 405, .external_lex_state = 2}, + [6677] = {.lex_state = 405, .external_lex_state = 2}, + [6678] = {.lex_state = 405, .external_lex_state = 2}, + [6679] = {.lex_state = 405, .external_lex_state = 2}, + [6680] = {.lex_state = 405, .external_lex_state = 2}, + [6681] = {.lex_state = 405, .external_lex_state = 2}, + [6682] = {.lex_state = 405, .external_lex_state = 2}, + [6683] = {.lex_state = 405, .external_lex_state = 2}, + [6684] = {.lex_state = 405, .external_lex_state = 2}, + [6685] = {.lex_state = 405, .external_lex_state = 2}, + [6686] = {.lex_state = 405, .external_lex_state = 2}, + [6687] = {.lex_state = 405, .external_lex_state = 2}, + [6688] = {.lex_state = 405, .external_lex_state = 2}, + [6689] = {.lex_state = 405, .external_lex_state = 5}, + [6690] = {.lex_state = 405, .external_lex_state = 2}, + [6691] = {.lex_state = 50, .external_lex_state = 2}, + [6692] = {.lex_state = 405, .external_lex_state = 2}, + [6693] = {.lex_state = 405, .external_lex_state = 2}, + [6694] = {.lex_state = 50, .external_lex_state = 2}, + [6695] = {.lex_state = 405, .external_lex_state = 2}, + [6696] = {.lex_state = 405, .external_lex_state = 2}, + [6697] = {.lex_state = 405, .external_lex_state = 2}, + [6698] = {.lex_state = 50, .external_lex_state = 2}, + [6699] = {.lex_state = 405, .external_lex_state = 2}, + [6700] = {.lex_state = 405, .external_lex_state = 2}, + [6701] = {.lex_state = 405, .external_lex_state = 2}, + [6702] = {.lex_state = 405, .external_lex_state = 2}, + [6703] = {.lex_state = 50, .external_lex_state = 2}, + [6704] = {.lex_state = 405, .external_lex_state = 2}, + [6705] = {.lex_state = 50, .external_lex_state = 2}, + [6706] = {.lex_state = 405, .external_lex_state = 5}, + [6707] = {.lex_state = 50, .external_lex_state = 2}, + [6708] = {.lex_state = 50, .external_lex_state = 2}, + [6709] = {.lex_state = 405, .external_lex_state = 2}, + [6710] = {.lex_state = 50, .external_lex_state = 2}, + [6711] = {.lex_state = 50, .external_lex_state = 2}, + [6712] = {.lex_state = 405, .external_lex_state = 2}, + [6713] = {.lex_state = 405, .external_lex_state = 2}, + [6714] = {.lex_state = 50, .external_lex_state = 2}, + [6715] = {.lex_state = 405, .external_lex_state = 5}, + [6716] = {.lex_state = 405, .external_lex_state = 2}, + [6717] = {.lex_state = 405, .external_lex_state = 5}, + [6718] = {.lex_state = 405, .external_lex_state = 2}, + [6719] = {.lex_state = 405, .external_lex_state = 2}, + [6720] = {.lex_state = 405, .external_lex_state = 2}, + [6721] = {.lex_state = 405, .external_lex_state = 2}, + [6722] = {.lex_state = 405, .external_lex_state = 2}, + [6723] = {.lex_state = 405, .external_lex_state = 2}, + [6724] = {.lex_state = 405, .external_lex_state = 2}, + [6725] = {.lex_state = 405, .external_lex_state = 2}, + [6726] = {.lex_state = 405, .external_lex_state = 2}, + [6727] = {.lex_state = 405, .external_lex_state = 2}, + [6728] = {.lex_state = 405, .external_lex_state = 2}, + [6729] = {.lex_state = 405, .external_lex_state = 2}, + [6730] = {.lex_state = 405, .external_lex_state = 2}, + [6731] = {.lex_state = 405, .external_lex_state = 2}, + [6732] = {.lex_state = 405, .external_lex_state = 2}, + [6733] = {.lex_state = 405, .external_lex_state = 2}, + [6734] = {.lex_state = 405, .external_lex_state = 2}, + [6735] = {.lex_state = 405, .external_lex_state = 2}, + [6736] = {.lex_state = 405, .external_lex_state = 2}, + [6737] = {.lex_state = 405, .external_lex_state = 2}, + [6738] = {.lex_state = 50, .external_lex_state = 2}, + [6739] = {.lex_state = 48, .external_lex_state = 2}, + [6740] = {.lex_state = 405, .external_lex_state = 2}, + [6741] = {.lex_state = 405, .external_lex_state = 2}, + [6742] = {.lex_state = 405, .external_lex_state = 2}, + [6743] = {.lex_state = 405, .external_lex_state = 2}, + [6744] = {.lex_state = 405, .external_lex_state = 2}, + [6745] = {.lex_state = 48, .external_lex_state = 2}, + [6746] = {.lex_state = 405, .external_lex_state = 2}, + [6747] = {.lex_state = 405, .external_lex_state = 2}, + [6748] = {.lex_state = 405, .external_lex_state = 2}, + [6749] = {.lex_state = 50, .external_lex_state = 2}, + [6750] = {.lex_state = 405, .external_lex_state = 2}, + [6751] = {.lex_state = 405, .external_lex_state = 2}, + [6752] = {.lex_state = 405, .external_lex_state = 2}, + [6753] = {.lex_state = 405, .external_lex_state = 2}, + [6754] = {.lex_state = 405, .external_lex_state = 2}, + [6755] = {.lex_state = 405, .external_lex_state = 5}, + [6756] = {.lex_state = 405, .external_lex_state = 2}, + [6757] = {.lex_state = 50, .external_lex_state = 2}, + [6758] = {.lex_state = 50, .external_lex_state = 2}, + [6759] = {.lex_state = 50, .external_lex_state = 2}, + [6760] = {.lex_state = 50, .external_lex_state = 2}, + [6761] = {.lex_state = 405, .external_lex_state = 2}, + [6762] = {.lex_state = 405, .external_lex_state = 2}, + [6763] = {.lex_state = 405, .external_lex_state = 2}, + [6764] = {.lex_state = 405, .external_lex_state = 2}, + [6765] = {.lex_state = 48, .external_lex_state = 2}, + [6766] = {.lex_state = 405, .external_lex_state = 2}, + [6767] = {.lex_state = 405, .external_lex_state = 5}, + [6768] = {.lex_state = 405, .external_lex_state = 2}, + [6769] = {.lex_state = 405, .external_lex_state = 2}, + [6770] = {.lex_state = 405, .external_lex_state = 2}, + [6771] = {.lex_state = 405, .external_lex_state = 2}, + [6772] = {.lex_state = 405, .external_lex_state = 2}, + [6773] = {.lex_state = 405, .external_lex_state = 2}, + [6774] = {.lex_state = 405, .external_lex_state = 2}, + [6775] = {.lex_state = 405, .external_lex_state = 2}, + [6776] = {.lex_state = 50, .external_lex_state = 2}, + [6777] = {.lex_state = 48, .external_lex_state = 2}, + [6778] = {.lex_state = 405, .external_lex_state = 2}, + [6779] = {.lex_state = 405, .external_lex_state = 2}, + [6780] = {.lex_state = 405, .external_lex_state = 2}, + [6781] = {.lex_state = 405, .external_lex_state = 2}, + [6782] = {.lex_state = 405, .external_lex_state = 2}, + [6783] = {.lex_state = 405, .external_lex_state = 2}, + [6784] = {.lex_state = 405, .external_lex_state = 5}, + [6785] = {.lex_state = 405, .external_lex_state = 2}, + [6786] = {.lex_state = 50, .external_lex_state = 2}, + [6787] = {.lex_state = 405, .external_lex_state = 2}, + [6788] = {.lex_state = 405, .external_lex_state = 2}, + [6789] = {.lex_state = 405, .external_lex_state = 2}, + [6790] = {.lex_state = 405, .external_lex_state = 2}, + [6791] = {.lex_state = 405, .external_lex_state = 2}, + [6792] = {.lex_state = 405, .external_lex_state = 2}, + [6793] = {.lex_state = 405, .external_lex_state = 2}, + [6794] = {.lex_state = 405, .external_lex_state = 2}, + [6795] = {.lex_state = 405, .external_lex_state = 2}, + [6796] = {.lex_state = 405, .external_lex_state = 2}, + [6797] = {.lex_state = 405, .external_lex_state = 2}, + [6798] = {.lex_state = 405, .external_lex_state = 2}, + [6799] = {.lex_state = 405, .external_lex_state = 2}, + [6800] = {.lex_state = 405, .external_lex_state = 5}, + [6801] = {.lex_state = 405, .external_lex_state = 2}, + [6802] = {.lex_state = 405, .external_lex_state = 2}, + [6803] = {.lex_state = 405, .external_lex_state = 2}, + [6804] = {.lex_state = 50, .external_lex_state = 2}, + [6805] = {.lex_state = 405, .external_lex_state = 2}, + [6806] = {.lex_state = 405, .external_lex_state = 2}, + [6807] = {.lex_state = 405, .external_lex_state = 2}, + [6808] = {.lex_state = 50, .external_lex_state = 2}, + [6809] = {.lex_state = 405, .external_lex_state = 2}, + [6810] = {.lex_state = 405, .external_lex_state = 2}, + [6811] = {.lex_state = 405, .external_lex_state = 2}, + [6812] = {.lex_state = 405, .external_lex_state = 2}, + [6813] = {.lex_state = 405, .external_lex_state = 2}, + [6814] = {.lex_state = 405, .external_lex_state = 2}, + [6815] = {.lex_state = 50, .external_lex_state = 2}, + [6816] = {.lex_state = 405, .external_lex_state = 2}, + [6817] = {.lex_state = 405, .external_lex_state = 2}, + [6818] = {.lex_state = 405, .external_lex_state = 2}, + [6819] = {.lex_state = 405, .external_lex_state = 2}, + [6820] = {.lex_state = 50, .external_lex_state = 2}, + [6821] = {.lex_state = 405, .external_lex_state = 2}, + [6822] = {.lex_state = 405, .external_lex_state = 2}, + [6823] = {.lex_state = 405, .external_lex_state = 5}, + [6824] = {.lex_state = 405, .external_lex_state = 2}, + [6825] = {.lex_state = 405, .external_lex_state = 5}, + [6826] = {.lex_state = 405, .external_lex_state = 5}, + [6827] = {.lex_state = 405, .external_lex_state = 2}, + [6828] = {.lex_state = 405, .external_lex_state = 2}, + [6829] = {.lex_state = 405, .external_lex_state = 2}, + [6830] = {.lex_state = 405, .external_lex_state = 2}, + [6831] = {.lex_state = 405, .external_lex_state = 2}, + [6832] = {.lex_state = 405, .external_lex_state = 2}, + [6833] = {.lex_state = 405, .external_lex_state = 2}, + [6834] = {.lex_state = 405, .external_lex_state = 2}, + [6835] = {.lex_state = 405, .external_lex_state = 5}, + [6836] = {.lex_state = 405, .external_lex_state = 5}, + [6837] = {.lex_state = 405, .external_lex_state = 2}, + [6838] = {.lex_state = 405, .external_lex_state = 2}, + [6839] = {.lex_state = 405, .external_lex_state = 2}, + [6840] = {.lex_state = 405, .external_lex_state = 5}, + [6841] = {.lex_state = 405, .external_lex_state = 5}, + [6842] = {.lex_state = 405, .external_lex_state = 2}, + [6843] = {.lex_state = 405, .external_lex_state = 2}, + [6844] = {.lex_state = 48, .external_lex_state = 2}, + [6845] = {.lex_state = 50, .external_lex_state = 2}, + [6846] = {.lex_state = 405, .external_lex_state = 2}, + [6847] = {.lex_state = 405, .external_lex_state = 2}, + [6848] = {.lex_state = 405, .external_lex_state = 2}, + [6849] = {.lex_state = 405, .external_lex_state = 2}, + [6850] = {.lex_state = 405, .external_lex_state = 2}, + [6851] = {.lex_state = 405, .external_lex_state = 2}, + [6852] = {.lex_state = 405, .external_lex_state = 2}, + [6853] = {.lex_state = 405, .external_lex_state = 2}, + [6854] = {.lex_state = 405, .external_lex_state = 2}, + [6855] = {.lex_state = 405, .external_lex_state = 2}, + [6856] = {.lex_state = 405, .external_lex_state = 2}, + [6857] = {.lex_state = 405, .external_lex_state = 2}, + [6858] = {.lex_state = 405, .external_lex_state = 5}, + [6859] = {.lex_state = 405, .external_lex_state = 5}, + [6860] = {.lex_state = 405, .external_lex_state = 2}, + [6861] = {.lex_state = 405, .external_lex_state = 2}, + [6862] = {.lex_state = 405, .external_lex_state = 2}, + [6863] = {.lex_state = 405, .external_lex_state = 2}, + [6864] = {.lex_state = 405, .external_lex_state = 2}, + [6865] = {.lex_state = 405, .external_lex_state = 5}, + [6866] = {.lex_state = 405, .external_lex_state = 2}, + [6867] = {.lex_state = 405, .external_lex_state = 2}, + [6868] = {.lex_state = 405, .external_lex_state = 2}, + [6869] = {.lex_state = 405, .external_lex_state = 2}, + [6870] = {.lex_state = 405, .external_lex_state = 2}, + [6871] = {.lex_state = 405, .external_lex_state = 2}, + [6872] = {.lex_state = 405, .external_lex_state = 5}, + [6873] = {.lex_state = 405, .external_lex_state = 2}, + [6874] = {.lex_state = 405, .external_lex_state = 2}, + [6875] = {.lex_state = 405, .external_lex_state = 2}, + [6876] = {.lex_state = 405, .external_lex_state = 2}, + [6877] = {.lex_state = 405, .external_lex_state = 2}, + [6878] = {.lex_state = 405, .external_lex_state = 2}, [6879] = {.lex_state = 50, .external_lex_state = 2}, - [6880] = {.lex_state = 406, .external_lex_state = 2}, + [6880] = {.lex_state = 405, .external_lex_state = 2}, [6881] = {.lex_state = 50, .external_lex_state = 2}, - [6882] = {.lex_state = 50, .external_lex_state = 2}, - [6883] = {.lex_state = 50, .external_lex_state = 2}, - [6884] = {.lex_state = 406, .external_lex_state = 2}, - [6885] = {.lex_state = 406, .external_lex_state = 2}, - [6886] = {.lex_state = 48, .external_lex_state = 2}, - [6887] = {.lex_state = 406, .external_lex_state = 5}, - [6888] = {.lex_state = 406, .external_lex_state = 2}, - [6889] = {.lex_state = 406, .external_lex_state = 2}, - [6890] = {.lex_state = 406, .external_lex_state = 2}, - [6891] = {.lex_state = 406, .external_lex_state = 2}, - [6892] = {.lex_state = 406, .external_lex_state = 2}, - [6893] = {.lex_state = 406, .external_lex_state = 2}, - [6894] = {.lex_state = 406, .external_lex_state = 2}, - [6895] = {.lex_state = 406, .external_lex_state = 2}, - [6896] = {.lex_state = 406, .external_lex_state = 5}, - [6897] = {.lex_state = 406, .external_lex_state = 5}, - [6898] = {.lex_state = 406, .external_lex_state = 2}, - [6899] = {.lex_state = 406, .external_lex_state = 2}, - [6900] = {.lex_state = 406, .external_lex_state = 2}, - [6901] = {.lex_state = 406, .external_lex_state = 2}, - [6902] = {.lex_state = 406, .external_lex_state = 2}, - [6903] = {.lex_state = 406, .external_lex_state = 2}, - [6904] = {.lex_state = 406, .external_lex_state = 2}, - [6905] = {.lex_state = 406, .external_lex_state = 2}, - [6906] = {.lex_state = 406, .external_lex_state = 2}, - [6907] = {.lex_state = 406, .external_lex_state = 2}, - [6908] = {.lex_state = 406, .external_lex_state = 2}, - [6909] = {.lex_state = 81, .external_lex_state = 2}, - [6910] = {.lex_state = 406, .external_lex_state = 2}, - [6911] = {.lex_state = 406, .external_lex_state = 5}, - [6912] = {.lex_state = 406, .external_lex_state = 2}, - [6913] = {.lex_state = 406, .external_lex_state = 5}, - [6914] = {.lex_state = 406, .external_lex_state = 2}, - [6915] = {.lex_state = 406, .external_lex_state = 2}, - [6916] = {.lex_state = 406, .external_lex_state = 2}, - [6917] = {.lex_state = 406, .external_lex_state = 2}, - [6918] = {.lex_state = 406, .external_lex_state = 2}, - [6919] = {.lex_state = 406, .external_lex_state = 2}, - [6920] = {.lex_state = 406, .external_lex_state = 2}, - [6921] = {.lex_state = 406, .external_lex_state = 2}, - [6922] = {.lex_state = 406, .external_lex_state = 2}, - [6923] = {.lex_state = 406, .external_lex_state = 2}, - [6924] = {.lex_state = 406, .external_lex_state = 2}, - [6925] = {.lex_state = 406, .external_lex_state = 2}, - [6926] = {.lex_state = 406, .external_lex_state = 2}, - [6927] = {.lex_state = 406, .external_lex_state = 2}, - [6928] = {.lex_state = 406, .external_lex_state = 2}, - [6929] = {.lex_state = 406, .external_lex_state = 2}, - [6930] = {.lex_state = 406, .external_lex_state = 2}, - [6931] = {.lex_state = 406, .external_lex_state = 5}, - [6932] = {.lex_state = 50, .external_lex_state = 2}, - [6933] = {.lex_state = 406, .external_lex_state = 2}, - [6934] = {.lex_state = 406, .external_lex_state = 2}, - [6935] = {.lex_state = 406, .external_lex_state = 2}, - [6936] = {.lex_state = 406, .external_lex_state = 2}, - [6937] = {.lex_state = 406, .external_lex_state = 2}, - [6938] = {.lex_state = 406, .external_lex_state = 2}, - [6939] = {.lex_state = 406, .external_lex_state = 2}, - [6940] = {.lex_state = 406, .external_lex_state = 5}, - [6941] = {.lex_state = 406, .external_lex_state = 5}, - [6942] = {.lex_state = 406, .external_lex_state = 2}, - [6943] = {.lex_state = 406, .external_lex_state = 2}, - [6944] = {.lex_state = 406, .external_lex_state = 2}, - [6945] = {.lex_state = 406, .external_lex_state = 5}, - [6946] = {.lex_state = 406, .external_lex_state = 2}, - [6947] = {.lex_state = 406, .external_lex_state = 5}, - [6948] = {.lex_state = 406, .external_lex_state = 2}, - [6949] = {.lex_state = 406, .external_lex_state = 2}, - [6950] = {.lex_state = 406, .external_lex_state = 2}, - [6951] = {.lex_state = 406, .external_lex_state = 2}, - [6952] = {.lex_state = 406, .external_lex_state = 2}, - [6953] = {.lex_state = 406, .external_lex_state = 2}, - [6954] = {.lex_state = 406, .external_lex_state = 2}, - [6955] = {.lex_state = 406, .external_lex_state = 2}, - [6956] = {.lex_state = 406, .external_lex_state = 2}, - [6957] = {.lex_state = 406, .external_lex_state = 2}, - [6958] = {.lex_state = 406, .external_lex_state = 2}, - [6959] = {.lex_state = 406, .external_lex_state = 2}, - [6960] = {.lex_state = 406, .external_lex_state = 2}, - [6961] = {.lex_state = 406, .external_lex_state = 5}, - [6962] = {.lex_state = 406, .external_lex_state = 5}, - [6963] = {.lex_state = 406, .external_lex_state = 2}, - [6964] = {.lex_state = 406, .external_lex_state = 2}, - [6965] = {.lex_state = 406, .external_lex_state = 2}, - [6966] = {.lex_state = 406, .external_lex_state = 2}, - [6967] = {.lex_state = 48, .external_lex_state = 2}, - [6968] = {.lex_state = 406, .external_lex_state = 2}, - [6969] = {.lex_state = 48, .external_lex_state = 2}, - [6970] = {.lex_state = 406, .external_lex_state = 2}, - [6971] = {.lex_state = 406, .external_lex_state = 2}, - [6972] = {.lex_state = 406, .external_lex_state = 2}, - [6973] = {.lex_state = 406, .external_lex_state = 2}, - [6974] = {.lex_state = 406, .external_lex_state = 2}, - [6975] = {.lex_state = 406, .external_lex_state = 2}, - [6976] = {.lex_state = 406, .external_lex_state = 2}, - [6977] = {.lex_state = 406, .external_lex_state = 2}, - [6978] = {.lex_state = 406, .external_lex_state = 2}, - [6979] = {.lex_state = 406, .external_lex_state = 2}, - [6980] = {.lex_state = 406, .external_lex_state = 2}, - [6981] = {.lex_state = 406, .external_lex_state = 2}, - [6982] = {.lex_state = 406, .external_lex_state = 2}, - [6983] = {.lex_state = 406, .external_lex_state = 2}, - [6984] = {.lex_state = 406, .external_lex_state = 2}, - [6985] = {.lex_state = 406, .external_lex_state = 2}, - [6986] = {.lex_state = 406, .external_lex_state = 2}, - [6987] = {.lex_state = 406, .external_lex_state = 2}, - [6988] = {.lex_state = 406, .external_lex_state = 2}, - [6989] = {.lex_state = 406, .external_lex_state = 2}, - [6990] = {.lex_state = 3, .external_lex_state = 10}, - [6991] = {.lex_state = 406, .external_lex_state = 2}, - [6992] = {.lex_state = 406, .external_lex_state = 2}, - [6993] = {.lex_state = 50, .external_lex_state = 2}, - [6994] = {.lex_state = 406, .external_lex_state = 2}, - [6995] = {.lex_state = 406, .external_lex_state = 2}, - [6996] = {.lex_state = 406, .external_lex_state = 2}, - [6997] = {.lex_state = 406, .external_lex_state = 2}, - [6998] = {.lex_state = 48, .external_lex_state = 2}, - [6999] = {.lex_state = 406, .external_lex_state = 2}, - [7000] = {.lex_state = 406, .external_lex_state = 2}, - [7001] = {.lex_state = 406, .external_lex_state = 2}, - [7002] = {.lex_state = 406, .external_lex_state = 2}, - [7003] = {.lex_state = 406, .external_lex_state = 2}, - [7004] = {.lex_state = 406, .external_lex_state = 2}, - [7005] = {.lex_state = 406, .external_lex_state = 2}, - [7006] = {.lex_state = 406, .external_lex_state = 2}, - [7007] = {.lex_state = 406, .external_lex_state = 2}, - [7008] = {.lex_state = 406, .external_lex_state = 2}, - [7009] = {.lex_state = 50, .external_lex_state = 2}, - [7010] = {.lex_state = 406, .external_lex_state = 2}, - [7011] = {.lex_state = 406, .external_lex_state = 2}, - [7012] = {.lex_state = 406, .external_lex_state = 2}, - [7013] = {.lex_state = 406, .external_lex_state = 2}, - [7014] = {.lex_state = 406, .external_lex_state = 2}, - [7015] = {.lex_state = 3, .external_lex_state = 10}, + [6882] = {.lex_state = 405, .external_lex_state = 2}, + [6883] = {.lex_state = 405, .external_lex_state = 2}, + [6884] = {.lex_state = 405, .external_lex_state = 2}, + [6885] = {.lex_state = 50, .external_lex_state = 2}, + [6886] = {.lex_state = 405, .external_lex_state = 2}, + [6887] = {.lex_state = 50, .external_lex_state = 2}, + [6888] = {.lex_state = 405, .external_lex_state = 2}, + [6889] = {.lex_state = 405, .external_lex_state = 2}, + [6890] = {.lex_state = 405, .external_lex_state = 2}, + [6891] = {.lex_state = 405, .external_lex_state = 2}, + [6892] = {.lex_state = 405, .external_lex_state = 5}, + [6893] = {.lex_state = 405, .external_lex_state = 5}, + [6894] = {.lex_state = 405, .external_lex_state = 2}, + [6895] = {.lex_state = 405, .external_lex_state = 2}, + [6896] = {.lex_state = 405, .external_lex_state = 2}, + [6897] = {.lex_state = 405, .external_lex_state = 2}, + [6898] = {.lex_state = 405, .external_lex_state = 2}, + [6899] = {.lex_state = 405, .external_lex_state = 2}, + [6900] = {.lex_state = 50, .external_lex_state = 2}, + [6901] = {.lex_state = 405, .external_lex_state = 2}, + [6902] = {.lex_state = 405, .external_lex_state = 2}, + [6903] = {.lex_state = 405, .external_lex_state = 2}, + [6904] = {.lex_state = 405, .external_lex_state = 2}, + [6905] = {.lex_state = 405, .external_lex_state = 2}, + [6906] = {.lex_state = 405, .external_lex_state = 2}, + [6907] = {.lex_state = 405, .external_lex_state = 2}, + [6908] = {.lex_state = 405, .external_lex_state = 2}, + [6909] = {.lex_state = 405, .external_lex_state = 5}, + [6910] = {.lex_state = 405, .external_lex_state = 2}, + [6911] = {.lex_state = 405, .external_lex_state = 2}, + [6912] = {.lex_state = 405, .external_lex_state = 2}, + [6913] = {.lex_state = 405, .external_lex_state = 2}, + [6914] = {.lex_state = 405, .external_lex_state = 2}, + [6915] = {.lex_state = 405, .external_lex_state = 5}, + [6916] = {.lex_state = 405, .external_lex_state = 2}, + [6917] = {.lex_state = 405, .external_lex_state = 2}, + [6918] = {.lex_state = 405, .external_lex_state = 2}, + [6919] = {.lex_state = 405, .external_lex_state = 2}, + [6920] = {.lex_state = 405, .external_lex_state = 2}, + [6921] = {.lex_state = 48, .external_lex_state = 2}, + [6922] = {.lex_state = 405, .external_lex_state = 2}, + [6923] = {.lex_state = 405, .external_lex_state = 2}, + [6924] = {.lex_state = 405, .external_lex_state = 2}, + [6925] = {.lex_state = 405, .external_lex_state = 2}, + [6926] = {.lex_state = 405, .external_lex_state = 2}, + [6927] = {.lex_state = 48, .external_lex_state = 2}, + [6928] = {.lex_state = 405, .external_lex_state = 2}, + [6929] = {.lex_state = 405, .external_lex_state = 2}, + [6930] = {.lex_state = 405, .external_lex_state = 2}, + [6931] = {.lex_state = 405, .external_lex_state = 5}, + [6932] = {.lex_state = 405, .external_lex_state = 5}, + [6933] = {.lex_state = 405, .external_lex_state = 2}, + [6934] = {.lex_state = 405, .external_lex_state = 2}, + [6935] = {.lex_state = 405, .external_lex_state = 5}, + [6936] = {.lex_state = 405, .external_lex_state = 2}, + [6937] = {.lex_state = 405, .external_lex_state = 5}, + [6938] = {.lex_state = 50, .external_lex_state = 2}, + [6939] = {.lex_state = 405, .external_lex_state = 2}, + [6940] = {.lex_state = 405, .external_lex_state = 2}, + [6941] = {.lex_state = 405, .external_lex_state = 2}, + [6942] = {.lex_state = 405, .external_lex_state = 2}, + [6943] = {.lex_state = 405, .external_lex_state = 2}, + [6944] = {.lex_state = 405, .external_lex_state = 2}, + [6945] = {.lex_state = 405, .external_lex_state = 2}, + [6946] = {.lex_state = 405, .external_lex_state = 2}, + [6947] = {.lex_state = 50, .external_lex_state = 2}, + [6948] = {.lex_state = 405, .external_lex_state = 2}, + [6949] = {.lex_state = 405, .external_lex_state = 2}, + [6950] = {.lex_state = 405, .external_lex_state = 2}, + [6951] = {.lex_state = 405, .external_lex_state = 2}, + [6952] = {.lex_state = 405, .external_lex_state = 2}, + [6953] = {.lex_state = 405, .external_lex_state = 2}, + [6954] = {.lex_state = 405, .external_lex_state = 5}, + [6955] = {.lex_state = 405, .external_lex_state = 5}, + [6956] = {.lex_state = 405, .external_lex_state = 5}, + [6957] = {.lex_state = 405, .external_lex_state = 5}, + [6958] = {.lex_state = 405, .external_lex_state = 2}, + [6959] = {.lex_state = 405, .external_lex_state = 2}, + [6960] = {.lex_state = 405, .external_lex_state = 2}, + [6961] = {.lex_state = 405, .external_lex_state = 2}, + [6962] = {.lex_state = 405, .external_lex_state = 2}, + [6963] = {.lex_state = 405, .external_lex_state = 2}, + [6964] = {.lex_state = 405, .external_lex_state = 2}, + [6965] = {.lex_state = 405, .external_lex_state = 5}, + [6966] = {.lex_state = 405, .external_lex_state = 2}, + [6967] = {.lex_state = 405, .external_lex_state = 2}, + [6968] = {.lex_state = 405, .external_lex_state = 2}, + [6969] = {.lex_state = 405, .external_lex_state = 2}, + [6970] = {.lex_state = 405, .external_lex_state = 2}, + [6971] = {.lex_state = 405, .external_lex_state = 2}, + [6972] = {.lex_state = 405, .external_lex_state = 2}, + [6973] = {.lex_state = 405, .external_lex_state = 2}, + [6974] = {.lex_state = 48, .external_lex_state = 2}, + [6975] = {.lex_state = 405, .external_lex_state = 2}, + [6976] = {.lex_state = 405, .external_lex_state = 2}, + [6977] = {.lex_state = 405, .external_lex_state = 5}, + [6978] = {.lex_state = 405, .external_lex_state = 2}, + [6979] = {.lex_state = 81, .external_lex_state = 2}, + [6980] = {.lex_state = 405, .external_lex_state = 2}, + [6981] = {.lex_state = 405, .external_lex_state = 2}, + [6982] = {.lex_state = 405, .external_lex_state = 2}, + [6983] = {.lex_state = 405, .external_lex_state = 2}, + [6984] = {.lex_state = 405, .external_lex_state = 2}, + [6985] = {.lex_state = 405, .external_lex_state = 5}, + [6986] = {.lex_state = 405, .external_lex_state = 2}, + [6987] = {.lex_state = 405, .external_lex_state = 2}, + [6988] = {.lex_state = 405, .external_lex_state = 2}, + [6989] = {.lex_state = 405, .external_lex_state = 2}, + [6990] = {.lex_state = 405, .external_lex_state = 2}, + [6991] = {.lex_state = 405, .external_lex_state = 2}, + [6992] = {.lex_state = 405, .external_lex_state = 5}, + [6993] = {.lex_state = 405, .external_lex_state = 2}, + [6994] = {.lex_state = 405, .external_lex_state = 2}, + [6995] = {.lex_state = 405, .external_lex_state = 2}, + [6996] = {.lex_state = 50, .external_lex_state = 2}, + [6997] = {.lex_state = 405, .external_lex_state = 2}, + [6998] = {.lex_state = 405, .external_lex_state = 2}, + [6999] = {.lex_state = 405, .external_lex_state = 2}, + [7000] = {.lex_state = 405, .external_lex_state = 2}, + [7001] = {.lex_state = 405, .external_lex_state = 2}, + [7002] = {.lex_state = 405, .external_lex_state = 2}, + [7003] = {.lex_state = 405, .external_lex_state = 2}, + [7004] = {.lex_state = 405, .external_lex_state = 2}, + [7005] = {.lex_state = 405, .external_lex_state = 2}, + [7006] = {.lex_state = 405, .external_lex_state = 2}, + [7007] = {.lex_state = 405, .external_lex_state = 2}, + [7008] = {.lex_state = 405, .external_lex_state = 2}, + [7009] = {.lex_state = 405, .external_lex_state = 2}, + [7010] = {.lex_state = 405, .external_lex_state = 2}, + [7011] = {.lex_state = 405, .external_lex_state = 2}, + [7012] = {.lex_state = 405, .external_lex_state = 2}, + [7013] = {.lex_state = 405, .external_lex_state = 2}, + [7014] = {.lex_state = 405, .external_lex_state = 2}, + [7015] = {.lex_state = 405, .external_lex_state = 2}, [7016] = {.lex_state = 50, .external_lex_state = 2}, - [7017] = {.lex_state = 50, .external_lex_state = 2}, - [7018] = {.lex_state = 406, .external_lex_state = 2}, - [7019] = {.lex_state = 406, .external_lex_state = 2}, - [7020] = {.lex_state = 406, .external_lex_state = 2}, - [7021] = {.lex_state = 50, .external_lex_state = 2}, + [7017] = {.lex_state = 405, .external_lex_state = 2}, + [7018] = {.lex_state = 405, .external_lex_state = 2}, + [7019] = {.lex_state = 405, .external_lex_state = 2}, + [7020] = {.lex_state = 405, .external_lex_state = 2}, + [7021] = {.lex_state = 3, .external_lex_state = 10}, [7022] = {.lex_state = 50, .external_lex_state = 2}, [7023] = {.lex_state = 50, .external_lex_state = 2}, - [7024] = {.lex_state = 50, .external_lex_state = 2}, - [7025] = {.lex_state = 406, .external_lex_state = 2}, - [7026] = {.lex_state = 406, .external_lex_state = 2}, - [7027] = {.lex_state = 50, .external_lex_state = 2}, - [7028] = {.lex_state = 50, .external_lex_state = 2}, + [7024] = {.lex_state = 405, .external_lex_state = 2}, + [7025] = {.lex_state = 49, .external_lex_state = 2}, + [7026] = {.lex_state = 49, .external_lex_state = 2}, + [7027] = {.lex_state = 405, .external_lex_state = 2}, + [7028] = {.lex_state = 405, .external_lex_state = 2}, [7029] = {.lex_state = 50, .external_lex_state = 2}, - [7030] = {.lex_state = 406, .external_lex_state = 2}, - [7031] = {.lex_state = 50, .external_lex_state = 2}, - [7032] = {.lex_state = 50, .external_lex_state = 2}, - [7033] = {.lex_state = 406, .external_lex_state = 2}, - [7034] = {.lex_state = 50, .external_lex_state = 2}, - [7035] = {.lex_state = 406, .external_lex_state = 2}, - [7036] = {.lex_state = 406, .external_lex_state = 2}, - [7037] = {.lex_state = 50, .external_lex_state = 2}, + [7030] = {.lex_state = 405, .external_lex_state = 2}, + [7031] = {.lex_state = 405, .external_lex_state = 2}, + [7032] = {.lex_state = 405, .external_lex_state = 2}, + [7033] = {.lex_state = 405, .external_lex_state = 2}, + [7034] = {.lex_state = 405, .external_lex_state = 2}, + [7035] = {.lex_state = 50, .external_lex_state = 2}, + [7036] = {.lex_state = 405, .external_lex_state = 2}, + [7037] = {.lex_state = 405, .external_lex_state = 2}, [7038] = {.lex_state = 50, .external_lex_state = 2}, [7039] = {.lex_state = 50, .external_lex_state = 2}, - [7040] = {.lex_state = 50, .external_lex_state = 2}, - [7041] = {.lex_state = 406, .external_lex_state = 2}, - [7042] = {.lex_state = 50, .external_lex_state = 2}, - [7043] = {.lex_state = 24, .external_lex_state = 2}, - [7044] = {.lex_state = 50, .external_lex_state = 2}, + [7040] = {.lex_state = 405, .external_lex_state = 2}, + [7041] = {.lex_state = 405, .external_lex_state = 2}, + [7042] = {.lex_state = 405, .external_lex_state = 2}, + [7043] = {.lex_state = 50, .external_lex_state = 2}, + [7044] = {.lex_state = 405, .external_lex_state = 2}, [7045] = {.lex_state = 50, .external_lex_state = 2}, - [7046] = {.lex_state = 406, .external_lex_state = 2}, - [7047] = {.lex_state = 406, .external_lex_state = 2}, - [7048] = {.lex_state = 406, .external_lex_state = 2}, - [7049] = {.lex_state = 406, .external_lex_state = 2}, - [7050] = {.lex_state = 50, .external_lex_state = 2}, - [7051] = {.lex_state = 406, .external_lex_state = 2}, - [7052] = {.lex_state = 406, .external_lex_state = 2}, - [7053] = {.lex_state = 406, .external_lex_state = 2}, - [7054] = {.lex_state = 50, .external_lex_state = 2}, - [7055] = {.lex_state = 406, .external_lex_state = 2}, + [7046] = {.lex_state = 405, .external_lex_state = 2}, + [7047] = {.lex_state = 50, .external_lex_state = 2}, + [7048] = {.lex_state = 405, .external_lex_state = 2}, + [7049] = {.lex_state = 405, .external_lex_state = 2}, + [7050] = {.lex_state = 405, .external_lex_state = 2}, + [7051] = {.lex_state = 405, .external_lex_state = 2}, + [7052] = {.lex_state = 405, .external_lex_state = 2}, + [7053] = {.lex_state = 405, .external_lex_state = 2}, + [7054] = {.lex_state = 405, .external_lex_state = 2}, + [7055] = {.lex_state = 405, .external_lex_state = 2}, [7056] = {.lex_state = 50, .external_lex_state = 2}, - [7057] = {.lex_state = 406, .external_lex_state = 2}, - [7058] = {.lex_state = 406, .external_lex_state = 2}, - [7059] = {.lex_state = 406, .external_lex_state = 2}, - [7060] = {.lex_state = 406, .external_lex_state = 2}, - [7061] = {.lex_state = 406, .external_lex_state = 2}, - [7062] = {.lex_state = 406, .external_lex_state = 2}, - [7063] = {.lex_state = 406, .external_lex_state = 2}, - [7064] = {.lex_state = 406, .external_lex_state = 2}, - [7065] = {.lex_state = 406, .external_lex_state = 2}, - [7066] = {.lex_state = 406, .external_lex_state = 2}, - [7067] = {.lex_state = 406, .external_lex_state = 2}, - [7068] = {.lex_state = 406, .external_lex_state = 2}, - [7069] = {.lex_state = 406, .external_lex_state = 2}, - [7070] = {.lex_state = 50, .external_lex_state = 2}, - [7071] = {.lex_state = 406, .external_lex_state = 2}, - [7072] = {.lex_state = 406, .external_lex_state = 2}, - [7073] = {.lex_state = 406, .external_lex_state = 2}, - [7074] = {.lex_state = 406, .external_lex_state = 2}, - [7075] = {.lex_state = 49, .external_lex_state = 2}, - [7076] = {.lex_state = 406, .external_lex_state = 2}, - [7077] = {.lex_state = 48, .external_lex_state = 2}, - [7078] = {.lex_state = 406, .external_lex_state = 2}, - [7079] = {.lex_state = 406, .external_lex_state = 2}, - [7080] = {.lex_state = 406, .external_lex_state = 2}, - [7081] = {.lex_state = 3, .external_lex_state = 10}, - [7082] = {.lex_state = 50, .external_lex_state = 2}, - [7083] = {.lex_state = 50, .external_lex_state = 2}, - [7084] = {.lex_state = 82, .external_lex_state = 2}, - [7085] = {.lex_state = 406, .external_lex_state = 2}, - [7086] = {.lex_state = 406, .external_lex_state = 2}, - [7087] = {.lex_state = 406, .external_lex_state = 2}, + [7057] = {.lex_state = 405, .external_lex_state = 2}, + [7058] = {.lex_state = 82, .external_lex_state = 2}, + [7059] = {.lex_state = 50, .external_lex_state = 2}, + [7060] = {.lex_state = 405, .external_lex_state = 2}, + [7061] = {.lex_state = 405, .external_lex_state = 2}, + [7062] = {.lex_state = 50, .external_lex_state = 2}, + [7063] = {.lex_state = 50, .external_lex_state = 2}, + [7064] = {.lex_state = 50, .external_lex_state = 2}, + [7065] = {.lex_state = 50, .external_lex_state = 2}, + [7066] = {.lex_state = 48, .external_lex_state = 2}, + [7067] = {.lex_state = 50, .external_lex_state = 2}, + [7068] = {.lex_state = 405, .external_lex_state = 2}, + [7069] = {.lex_state = 405, .external_lex_state = 2}, + [7070] = {.lex_state = 405, .external_lex_state = 2}, + [7071] = {.lex_state = 405, .external_lex_state = 2}, + [7072] = {.lex_state = 405, .external_lex_state = 2}, + [7073] = {.lex_state = 50, .external_lex_state = 2}, + [7074] = {.lex_state = 50, .external_lex_state = 2}, + [7075] = {.lex_state = 50, .external_lex_state = 2}, + [7076] = {.lex_state = 50, .external_lex_state = 2}, + [7077] = {.lex_state = 3, .external_lex_state = 10}, + [7078] = {.lex_state = 405, .external_lex_state = 2}, + [7079] = {.lex_state = 50, .external_lex_state = 2}, + [7080] = {.lex_state = 405, .external_lex_state = 2}, + [7081] = {.lex_state = 405, .external_lex_state = 2}, + [7082] = {.lex_state = 405, .external_lex_state = 2}, + [7083] = {.lex_state = 405, .external_lex_state = 2}, + [7084] = {.lex_state = 405, .external_lex_state = 2}, + [7085] = {.lex_state = 50, .external_lex_state = 2}, + [7086] = {.lex_state = 405, .external_lex_state = 2}, + [7087] = {.lex_state = 3, .external_lex_state = 10}, [7088] = {.lex_state = 50, .external_lex_state = 2}, [7089] = {.lex_state = 50, .external_lex_state = 2}, - [7090] = {.lex_state = 406, .external_lex_state = 2}, - [7091] = {.lex_state = 49, .external_lex_state = 2}, - [7092] = {.lex_state = 406, .external_lex_state = 2}, - [7093] = {.lex_state = 406, .external_lex_state = 2}, - [7094] = {.lex_state = 406, .external_lex_state = 2}, + [7090] = {.lex_state = 405, .external_lex_state = 2}, + [7091] = {.lex_state = 50, .external_lex_state = 2}, + [7092] = {.lex_state = 405, .external_lex_state = 2}, + [7093] = {.lex_state = 405, .external_lex_state = 2}, + [7094] = {.lex_state = 405, .external_lex_state = 2}, [7095] = {.lex_state = 50, .external_lex_state = 2}, - [7096] = {.lex_state = 406, .external_lex_state = 2}, - [7097] = {.lex_state = 406, .external_lex_state = 2}, - [7098] = {.lex_state = 50, .external_lex_state = 2}, - [7099] = {.lex_state = 406, .external_lex_state = 2}, - [7100] = {.lex_state = 406, .external_lex_state = 2}, - [7101] = {.lex_state = 406, .external_lex_state = 2}, - [7102] = {.lex_state = 406, .external_lex_state = 2}, - [7103] = {.lex_state = 50, .external_lex_state = 2}, - [7104] = {.lex_state = 406, .external_lex_state = 2}, - [7105] = {.lex_state = 50, .external_lex_state = 2}, - [7106] = {.lex_state = 406, .external_lex_state = 2}, - [7107] = {.lex_state = 406, .external_lex_state = 2}, - [7108] = {.lex_state = 50, .external_lex_state = 2}, - [7109] = {.lex_state = 406, .external_lex_state = 2}, - [7110] = {.lex_state = 406, .external_lex_state = 2}, - [7111] = {.lex_state = 406, .external_lex_state = 2}, - [7112] = {.lex_state = 406, .external_lex_state = 2}, - [7113] = {.lex_state = 406, .external_lex_state = 2}, - [7114] = {.lex_state = 406, .external_lex_state = 2}, - [7115] = {.lex_state = 406, .external_lex_state = 2}, - [7116] = {.lex_state = 50, .external_lex_state = 2}, - [7117] = {.lex_state = 406, .external_lex_state = 2}, - [7118] = {.lex_state = 406, .external_lex_state = 2}, - [7119] = {.lex_state = 406, .external_lex_state = 2}, - [7120] = {.lex_state = 406, .external_lex_state = 2}, - [7121] = {.lex_state = 406, .external_lex_state = 2}, - [7122] = {.lex_state = 406, .external_lex_state = 2}, - [7123] = {.lex_state = 406, .external_lex_state = 2}, - [7124] = {.lex_state = 406, .external_lex_state = 2}, - [7125] = {.lex_state = 406, .external_lex_state = 2}, - [7126] = {.lex_state = 24, .external_lex_state = 2}, - [7127] = {.lex_state = 406, .external_lex_state = 2}, - [7128] = {.lex_state = 406, .external_lex_state = 2}, - [7129] = {.lex_state = 406, .external_lex_state = 2}, - [7130] = {.lex_state = 406, .external_lex_state = 2}, - [7131] = {.lex_state = 406, .external_lex_state = 2}, - [7132] = {.lex_state = 406, .external_lex_state = 2}, - [7133] = {.lex_state = 406, .external_lex_state = 2}, - [7134] = {.lex_state = 406, .external_lex_state = 2}, - [7135] = {.lex_state = 406, .external_lex_state = 2}, - [7136] = {.lex_state = 49, .external_lex_state = 2}, - [7137] = {.lex_state = 50, .external_lex_state = 2}, - [7138] = {.lex_state = 50, .external_lex_state = 2}, - [7139] = {.lex_state = 406, .external_lex_state = 2}, - [7140] = {.lex_state = 406, .external_lex_state = 2}, - [7141] = {.lex_state = 406, .external_lex_state = 2}, - [7142] = {.lex_state = 406, .external_lex_state = 2}, - [7143] = {.lex_state = 50, .external_lex_state = 2}, + [7096] = {.lex_state = 405, .external_lex_state = 2}, + [7097] = {.lex_state = 405, .external_lex_state = 2}, + [7098] = {.lex_state = 405, .external_lex_state = 2}, + [7099] = {.lex_state = 405, .external_lex_state = 2}, + [7100] = {.lex_state = 405, .external_lex_state = 2}, + [7101] = {.lex_state = 50, .external_lex_state = 2}, + [7102] = {.lex_state = 405, .external_lex_state = 2}, + [7103] = {.lex_state = 405, .external_lex_state = 2}, + [7104] = {.lex_state = 50, .external_lex_state = 2}, + [7105] = {.lex_state = 405, .external_lex_state = 2}, + [7106] = {.lex_state = 405, .external_lex_state = 2}, + [7107] = {.lex_state = 405, .external_lex_state = 2}, + [7108] = {.lex_state = 405, .external_lex_state = 2}, + [7109] = {.lex_state = 50, .external_lex_state = 2}, + [7110] = {.lex_state = 405, .external_lex_state = 2}, + [7111] = {.lex_state = 50, .external_lex_state = 2}, + [7112] = {.lex_state = 405, .external_lex_state = 2}, + [7113] = {.lex_state = 405, .external_lex_state = 2}, + [7114] = {.lex_state = 405, .external_lex_state = 2}, + [7115] = {.lex_state = 405, .external_lex_state = 2}, + [7116] = {.lex_state = 405, .external_lex_state = 2}, + [7117] = {.lex_state = 49, .external_lex_state = 2}, + [7118] = {.lex_state = 405, .external_lex_state = 2}, + [7119] = {.lex_state = 24, .external_lex_state = 2}, + [7120] = {.lex_state = 405, .external_lex_state = 2}, + [7121] = {.lex_state = 405, .external_lex_state = 2}, + [7122] = {.lex_state = 50, .external_lex_state = 2}, + [7123] = {.lex_state = 405, .external_lex_state = 2}, + [7124] = {.lex_state = 405, .external_lex_state = 2}, + [7125] = {.lex_state = 48, .external_lex_state = 2}, + [7126] = {.lex_state = 405, .external_lex_state = 2}, + [7127] = {.lex_state = 24, .external_lex_state = 2}, + [7128] = {.lex_state = 405, .external_lex_state = 2}, + [7129] = {.lex_state = 405, .external_lex_state = 2}, + [7130] = {.lex_state = 405, .external_lex_state = 2}, + [7131] = {.lex_state = 405, .external_lex_state = 2}, + [7132] = {.lex_state = 405, .external_lex_state = 2}, + [7133] = {.lex_state = 405, .external_lex_state = 2}, + [7134] = {.lex_state = 405, .external_lex_state = 2}, + [7135] = {.lex_state = 405, .external_lex_state = 2}, + [7136] = {.lex_state = 405, .external_lex_state = 2}, + [7137] = {.lex_state = 405, .external_lex_state = 2}, + [7138] = {.lex_state = 405, .external_lex_state = 2}, + [7139] = {.lex_state = 405, .external_lex_state = 2}, + [7140] = {.lex_state = 405, .external_lex_state = 2}, + [7141] = {.lex_state = 405, .external_lex_state = 2}, + [7142] = {.lex_state = 405, .external_lex_state = 2}, + [7143] = {.lex_state = 405, .external_lex_state = 2}, [7144] = {.lex_state = 50, .external_lex_state = 2}, - [7145] = {.lex_state = 406, .external_lex_state = 2}, - [7146] = {.lex_state = 49, .external_lex_state = 2}, - [7147] = {.lex_state = 406, .external_lex_state = 2}, + [7145] = {.lex_state = 405, .external_lex_state = 2}, + [7146] = {.lex_state = 405, .external_lex_state = 2}, + [7147] = {.lex_state = 405, .external_lex_state = 2}, [7148] = {.lex_state = 50, .external_lex_state = 2}, - [7149] = {.lex_state = 406, .external_lex_state = 2}, + [7149] = {.lex_state = 50, .external_lex_state = 2}, [7150] = {.lex_state = 50, .external_lex_state = 2}, - [7151] = {.lex_state = 50, .external_lex_state = 2}, - [7152] = {.lex_state = 406, .external_lex_state = 2}, - [7153] = {.lex_state = 50, .external_lex_state = 2}, - [7154] = {.lex_state = 406, .external_lex_state = 2}, - [7155] = {.lex_state = 406, .external_lex_state = 2}, - [7156] = {.lex_state = 406, .external_lex_state = 2}, + [7151] = {.lex_state = 405, .external_lex_state = 2}, + [7152] = {.lex_state = 50, .external_lex_state = 2}, + [7153] = {.lex_state = 405, .external_lex_state = 2}, + [7154] = {.lex_state = 50, .external_lex_state = 2}, + [7155] = {.lex_state = 405, .external_lex_state = 2}, + [7156] = {.lex_state = 405, .external_lex_state = 2}, [7157] = {.lex_state = 50, .external_lex_state = 2}, - [7158] = {.lex_state = 406, .external_lex_state = 2}, + [7158] = {.lex_state = 405, .external_lex_state = 2}, [7159] = {.lex_state = 50, .external_lex_state = 2}, - [7160] = {.lex_state = 49, .external_lex_state = 2}, - [7161] = {.lex_state = 406, .external_lex_state = 2}, - [7162] = {.lex_state = 406, .external_lex_state = 2}, - [7163] = {.lex_state = 406, .external_lex_state = 2}, + [7160] = {.lex_state = 405, .external_lex_state = 2}, + [7161] = {.lex_state = 405, .external_lex_state = 2}, + [7162] = {.lex_state = 405, .external_lex_state = 2}, + [7163] = {.lex_state = 50, .external_lex_state = 2}, [7164] = {.lex_state = 50, .external_lex_state = 2}, [7165] = {.lex_state = 50, .external_lex_state = 2}, - [7166] = {.lex_state = 406, .external_lex_state = 2}, - [7167] = {.lex_state = 406, .external_lex_state = 2}, - [7168] = {.lex_state = 50, .external_lex_state = 2}, - [7169] = {.lex_state = 406, .external_lex_state = 2}, - [7170] = {.lex_state = 406, .external_lex_state = 2}, - [7171] = {.lex_state = 406, .external_lex_state = 2}, - [7172] = {.lex_state = 406, .external_lex_state = 2}, - [7173] = {.lex_state = 406, .external_lex_state = 2}, - [7174] = {.lex_state = 406, .external_lex_state = 2}, + [7166] = {.lex_state = 405, .external_lex_state = 2}, + [7167] = {.lex_state = 405, .external_lex_state = 2}, + [7168] = {.lex_state = 405, .external_lex_state = 2}, + [7169] = {.lex_state = 50, .external_lex_state = 2}, + [7170] = {.lex_state = 50, .external_lex_state = 2}, + [7171] = {.lex_state = 405, .external_lex_state = 2}, + [7172] = {.lex_state = 405, .external_lex_state = 2}, + [7173] = {.lex_state = 405, .external_lex_state = 2}, + [7174] = {.lex_state = 405, .external_lex_state = 2}, [7175] = {.lex_state = 50, .external_lex_state = 2}, - [7176] = {.lex_state = 50, .external_lex_state = 2}, - [7177] = {.lex_state = 406, .external_lex_state = 2}, - [7178] = {.lex_state = 406, .external_lex_state = 2}, - [7179] = {.lex_state = 406, .external_lex_state = 2}, - [7180] = {.lex_state = 50, .external_lex_state = 2}, - [7181] = {.lex_state = 406, .external_lex_state = 2}, - [7182] = {.lex_state = 406, .external_lex_state = 2}, - [7183] = {.lex_state = 406, .external_lex_state = 2}, - [7184] = {.lex_state = 406, .external_lex_state = 2}, - [7185] = {.lex_state = 406, .external_lex_state = 2}, - [7186] = {.lex_state = 406, .external_lex_state = 2}, - [7187] = {.lex_state = 49, .external_lex_state = 2}, - [7188] = {.lex_state = 406, .external_lex_state = 2}, - [7189] = {.lex_state = 406, .external_lex_state = 2}, - [7190] = {.lex_state = 406, .external_lex_state = 2}, - [7191] = {.lex_state = 406, .external_lex_state = 2}, - [7192] = {.lex_state = 406, .external_lex_state = 2}, - [7193] = {.lex_state = 406, .external_lex_state = 2}, - [7194] = {.lex_state = 406, .external_lex_state = 2}, - [7195] = {.lex_state = 50, .external_lex_state = 2}, - [7196] = {.lex_state = 406, .external_lex_state = 2}, - [7197] = {.lex_state = 406, .external_lex_state = 2}, - [7198] = {.lex_state = 406, .external_lex_state = 2}, - [7199] = {.lex_state = 406, .external_lex_state = 2}, - [7200] = {.lex_state = 406, .external_lex_state = 2}, - [7201] = {.lex_state = 406, .external_lex_state = 2}, - [7202] = {.lex_state = 406, .external_lex_state = 2}, - [7203] = {.lex_state = 406, .external_lex_state = 2}, - [7204] = {.lex_state = 406, .external_lex_state = 2}, - [7205] = {.lex_state = 406, .external_lex_state = 2}, - [7206] = {.lex_state = 406, .external_lex_state = 2}, - [7207] = {.lex_state = 406, .external_lex_state = 2}, - [7208] = {.lex_state = 406, .external_lex_state = 2}, - [7209] = {.lex_state = 50, .external_lex_state = 2}, - [7210] = {.lex_state = 406, .external_lex_state = 2}, - [7211] = {.lex_state = 406, .external_lex_state = 2}, - [7212] = {.lex_state = 406, .external_lex_state = 2}, - [7213] = {.lex_state = 406, .external_lex_state = 2}, - [7214] = {.lex_state = 406, .external_lex_state = 2}, - [7215] = {.lex_state = 406, .external_lex_state = 2}, + [7176] = {.lex_state = 405, .external_lex_state = 2}, + [7177] = {.lex_state = 405, .external_lex_state = 2}, + [7178] = {.lex_state = 405, .external_lex_state = 2}, + [7179] = {.lex_state = 405, .external_lex_state = 2}, + [7180] = {.lex_state = 405, .external_lex_state = 2}, + [7181] = {.lex_state = 405, .external_lex_state = 2}, + [7182] = {.lex_state = 405, .external_lex_state = 2}, + [7183] = {.lex_state = 405, .external_lex_state = 2}, + [7184] = {.lex_state = 405, .external_lex_state = 2}, + [7185] = {.lex_state = 405, .external_lex_state = 2}, + [7186] = {.lex_state = 405, .external_lex_state = 2}, + [7187] = {.lex_state = 405, .external_lex_state = 2}, + [7188] = {.lex_state = 405, .external_lex_state = 2}, + [7189] = {.lex_state = 50, .external_lex_state = 2}, + [7190] = {.lex_state = 50, .external_lex_state = 2}, + [7191] = {.lex_state = 405, .external_lex_state = 2}, + [7192] = {.lex_state = 405, .external_lex_state = 2}, + [7193] = {.lex_state = 49, .external_lex_state = 2}, + [7194] = {.lex_state = 50, .external_lex_state = 2}, + [7195] = {.lex_state = 405, .external_lex_state = 2}, + [7196] = {.lex_state = 50, .external_lex_state = 2}, + [7197] = {.lex_state = 405, .external_lex_state = 2}, + [7198] = {.lex_state = 50, .external_lex_state = 2}, + [7199] = {.lex_state = 405, .external_lex_state = 2}, + [7200] = {.lex_state = 405, .external_lex_state = 2}, + [7201] = {.lex_state = 405, .external_lex_state = 2}, + [7202] = {.lex_state = 405, .external_lex_state = 2}, + [7203] = {.lex_state = 405, .external_lex_state = 2}, + [7204] = {.lex_state = 405, .external_lex_state = 2}, + [7205] = {.lex_state = 50, .external_lex_state = 2}, + [7206] = {.lex_state = 405, .external_lex_state = 2}, + [7207] = {.lex_state = 405, .external_lex_state = 2}, + [7208] = {.lex_state = 405, .external_lex_state = 2}, + [7209] = {.lex_state = 405, .external_lex_state = 2}, + [7210] = {.lex_state = 405, .external_lex_state = 2}, + [7211] = {.lex_state = 405, .external_lex_state = 2}, + [7212] = {.lex_state = 405, .external_lex_state = 2}, + [7213] = {.lex_state = 405, .external_lex_state = 2}, + [7214] = {.lex_state = 405, .external_lex_state = 2}, + [7215] = {.lex_state = 50, .external_lex_state = 2}, [7216] = {.lex_state = 50, .external_lex_state = 2}, - [7217] = {.lex_state = 406, .external_lex_state = 2}, - [7218] = {.lex_state = 406, .external_lex_state = 2}, - [7219] = {.lex_state = 406, .external_lex_state = 2}, - [7220] = {.lex_state = 406, .external_lex_state = 2}, - [7221] = {.lex_state = 406, .external_lex_state = 2}, + [7217] = {.lex_state = 405, .external_lex_state = 2}, + [7218] = {.lex_state = 405, .external_lex_state = 2}, + [7219] = {.lex_state = 405, .external_lex_state = 2}, + [7220] = {.lex_state = 50, .external_lex_state = 2}, + [7221] = {.lex_state = 405, .external_lex_state = 2}, [7222] = {.lex_state = 50, .external_lex_state = 2}, - [7223] = {.lex_state = 406, .external_lex_state = 2}, - [7224] = {.lex_state = 406, .external_lex_state = 2}, - [7225] = {.lex_state = 406, .external_lex_state = 2}, - [7226] = {.lex_state = 406, .external_lex_state = 2}, - [7227] = {.lex_state = 50, .external_lex_state = 2}, - [7228] = {.lex_state = 406, .external_lex_state = 2}, - [7229] = {.lex_state = 406, .external_lex_state = 2}, - [7230] = {.lex_state = 406, .external_lex_state = 2}, - [7231] = {.lex_state = 406, .external_lex_state = 2}, - [7232] = {.lex_state = 406, .external_lex_state = 2}, - [7233] = {.lex_state = 406, .external_lex_state = 2}, - [7234] = {.lex_state = 50, .external_lex_state = 2}, - [7235] = {.lex_state = 49, .external_lex_state = 2}, - [7236] = {.lex_state = 50, .external_lex_state = 2}, - [7237] = {.lex_state = 50, .external_lex_state = 2}, - [7238] = {.lex_state = 406, .external_lex_state = 2}, - [7239] = {.lex_state = 50, .external_lex_state = 2}, - [7240] = {.lex_state = 406, .external_lex_state = 2}, - [7241] = {.lex_state = 50, .external_lex_state = 2}, - [7242] = {.lex_state = 50, .external_lex_state = 2}, - [7243] = {.lex_state = 3, .external_lex_state = 10}, - [7244] = {.lex_state = 406, .external_lex_state = 2}, - [7245] = {.lex_state = 406, .external_lex_state = 2}, - [7246] = {.lex_state = 50, .external_lex_state = 2}, - [7247] = {.lex_state = 406, .external_lex_state = 2}, - [7248] = {.lex_state = 406, .external_lex_state = 2}, - [7249] = {.lex_state = 82, .external_lex_state = 2}, - [7250] = {.lex_state = 406, .external_lex_state = 2}, - [7251] = {.lex_state = 406, .external_lex_state = 2}, + [7223] = {.lex_state = 405, .external_lex_state = 2}, + [7224] = {.lex_state = 50, .external_lex_state = 2}, + [7225] = {.lex_state = 405, .external_lex_state = 2}, + [7226] = {.lex_state = 405, .external_lex_state = 2}, + [7227] = {.lex_state = 405, .external_lex_state = 2}, + [7228] = {.lex_state = 50, .external_lex_state = 2}, + [7229] = {.lex_state = 405, .external_lex_state = 2}, + [7230] = {.lex_state = 405, .external_lex_state = 2}, + [7231] = {.lex_state = 405, .external_lex_state = 2}, + [7232] = {.lex_state = 405, .external_lex_state = 2}, + [7233] = {.lex_state = 405, .external_lex_state = 2}, + [7234] = {.lex_state = 405, .external_lex_state = 2}, + [7235] = {.lex_state = 48, .external_lex_state = 2}, + [7236] = {.lex_state = 405, .external_lex_state = 2}, + [7237] = {.lex_state = 405, .external_lex_state = 2}, + [7238] = {.lex_state = 50, .external_lex_state = 2}, + [7239] = {.lex_state = 405, .external_lex_state = 2}, + [7240] = {.lex_state = 405, .external_lex_state = 2}, + [7241] = {.lex_state = 49, .external_lex_state = 2}, + [7242] = {.lex_state = 405, .external_lex_state = 2}, + [7243] = {.lex_state = 405, .external_lex_state = 2}, + [7244] = {.lex_state = 405, .external_lex_state = 2}, + [7245] = {.lex_state = 50, .external_lex_state = 2}, + [7246] = {.lex_state = 405, .external_lex_state = 2}, + [7247] = {.lex_state = 405, .external_lex_state = 2}, + [7248] = {.lex_state = 405, .external_lex_state = 2}, + [7249] = {.lex_state = 405, .external_lex_state = 2}, + [7250] = {.lex_state = 405, .external_lex_state = 2}, + [7251] = {.lex_state = 405, .external_lex_state = 2}, [7252] = {.lex_state = 50, .external_lex_state = 2}, - [7253] = {.lex_state = 82, .external_lex_state = 2}, - [7254] = {.lex_state = 406, .external_lex_state = 2}, - [7255] = {.lex_state = 406, .external_lex_state = 2}, - [7256] = {.lex_state = 406, .external_lex_state = 2}, - [7257] = {.lex_state = 406, .external_lex_state = 2}, - [7258] = {.lex_state = 406, .external_lex_state = 2}, - [7259] = {.lex_state = 406, .external_lex_state = 2}, - [7260] = {.lex_state = 406, .external_lex_state = 2}, - [7261] = {.lex_state = 406, .external_lex_state = 2}, - [7262] = {.lex_state = 406, .external_lex_state = 2}, - [7263] = {.lex_state = 406, .external_lex_state = 2}, - [7264] = {.lex_state = 406, .external_lex_state = 2}, - [7265] = {.lex_state = 406, .external_lex_state = 2}, - [7266] = {.lex_state = 406, .external_lex_state = 2}, - [7267] = {.lex_state = 50, .external_lex_state = 2}, - [7268] = {.lex_state = 406, .external_lex_state = 2}, - [7269] = {.lex_state = 406, .external_lex_state = 2}, - [7270] = {.lex_state = 406, .external_lex_state = 2}, - [7271] = {.lex_state = 406, .external_lex_state = 2}, - [7272] = {.lex_state = 406, .external_lex_state = 2}, - [7273] = {.lex_state = 406, .external_lex_state = 2}, - [7274] = {.lex_state = 82, .external_lex_state = 2}, - [7275] = {.lex_state = 406, .external_lex_state = 2}, + [7253] = {.lex_state = 50, .external_lex_state = 2}, + [7254] = {.lex_state = 405, .external_lex_state = 2}, + [7255] = {.lex_state = 3, .external_lex_state = 10}, + [7256] = {.lex_state = 405, .external_lex_state = 2}, + [7257] = {.lex_state = 82, .external_lex_state = 2}, + [7258] = {.lex_state = 405, .external_lex_state = 2}, + [7259] = {.lex_state = 49, .external_lex_state = 2}, + [7260] = {.lex_state = 405, .external_lex_state = 2}, + [7261] = {.lex_state = 405, .external_lex_state = 2}, + [7262] = {.lex_state = 50, .external_lex_state = 2}, + [7263] = {.lex_state = 405, .external_lex_state = 2}, + [7264] = {.lex_state = 405, .external_lex_state = 2}, + [7265] = {.lex_state = 50, .external_lex_state = 2}, + [7266] = {.lex_state = 405, .external_lex_state = 2}, + [7267] = {.lex_state = 405, .external_lex_state = 2}, + [7268] = {.lex_state = 405, .external_lex_state = 2}, + [7269] = {.lex_state = 405, .external_lex_state = 2}, + [7270] = {.lex_state = 405, .external_lex_state = 2}, + [7271] = {.lex_state = 50, .external_lex_state = 2}, + [7272] = {.lex_state = 82, .external_lex_state = 2}, + [7273] = {.lex_state = 405, .external_lex_state = 2}, + [7274] = {.lex_state = 405, .external_lex_state = 2}, + [7275] = {.lex_state = 50, .external_lex_state = 2}, [7276] = {.lex_state = 50, .external_lex_state = 2}, - [7277] = {.lex_state = 50, .external_lex_state = 2}, - [7278] = {.lex_state = 406, .external_lex_state = 2}, - [7279] = {.lex_state = 50, .external_lex_state = 2}, - [7280] = {.lex_state = 50, .external_lex_state = 2}, - [7281] = {.lex_state = 50, .external_lex_state = 2}, - [7282] = {.lex_state = 406, .external_lex_state = 2}, - [7283] = {.lex_state = 406, .external_lex_state = 2}, - [7284] = {.lex_state = 406, .external_lex_state = 2}, - [7285] = {.lex_state = 50, .external_lex_state = 2}, - [7286] = {.lex_state = 50, .external_lex_state = 2}, + [7277] = {.lex_state = 405, .external_lex_state = 2}, + [7278] = {.lex_state = 405, .external_lex_state = 2}, + [7279] = {.lex_state = 405, .external_lex_state = 2}, + [7280] = {.lex_state = 405, .external_lex_state = 2}, + [7281] = {.lex_state = 405, .external_lex_state = 2}, + [7282] = {.lex_state = 50, .external_lex_state = 2}, + [7283] = {.lex_state = 405, .external_lex_state = 2}, + [7284] = {.lex_state = 50, .external_lex_state = 2}, + [7285] = {.lex_state = 405, .external_lex_state = 2}, + [7286] = {.lex_state = 405, .external_lex_state = 2}, [7287] = {.lex_state = 50, .external_lex_state = 2}, - [7288] = {.lex_state = 406, .external_lex_state = 2}, - [7289] = {.lex_state = 406, .external_lex_state = 2}, - [7290] = {.lex_state = 406, .external_lex_state = 2}, - [7291] = {.lex_state = 406, .external_lex_state = 2}, - [7292] = {.lex_state = 50, .external_lex_state = 2}, - [7293] = {.lex_state = 406, .external_lex_state = 2}, + [7288] = {.lex_state = 50, .external_lex_state = 2}, + [7289] = {.lex_state = 405, .external_lex_state = 2}, + [7290] = {.lex_state = 405, .external_lex_state = 2}, + [7291] = {.lex_state = 405, .external_lex_state = 2}, + [7292] = {.lex_state = 405, .external_lex_state = 2}, + [7293] = {.lex_state = 50, .external_lex_state = 2}, [7294] = {.lex_state = 50, .external_lex_state = 2}, - [7295] = {.lex_state = 50, .external_lex_state = 2}, - [7296] = {.lex_state = 50, .external_lex_state = 2}, - [7297] = {.lex_state = 406, .external_lex_state = 2}, - [7298] = {.lex_state = 406, .external_lex_state = 2}, - [7299] = {.lex_state = 406, .external_lex_state = 2}, - [7300] = {.lex_state = 50, .external_lex_state = 2}, - [7301] = {.lex_state = 406, .external_lex_state = 2}, - [7302] = {.lex_state = 406, .external_lex_state = 2}, - [7303] = {.lex_state = 406, .external_lex_state = 2}, - [7304] = {.lex_state = 406, .external_lex_state = 2}, - [7305] = {.lex_state = 406, .external_lex_state = 2}, + [7295] = {.lex_state = 405, .external_lex_state = 2}, + [7296] = {.lex_state = 82, .external_lex_state = 2}, + [7297] = {.lex_state = 49, .external_lex_state = 2}, + [7298] = {.lex_state = 50, .external_lex_state = 2}, + [7299] = {.lex_state = 405, .external_lex_state = 2}, + [7300] = {.lex_state = 405, .external_lex_state = 2}, + [7301] = {.lex_state = 50, .external_lex_state = 2}, + [7302] = {.lex_state = 405, .external_lex_state = 2}, + [7303] = {.lex_state = 405, .external_lex_state = 2}, + [7304] = {.lex_state = 405, .external_lex_state = 2}, + [7305] = {.lex_state = 405, .external_lex_state = 2}, [7306] = {.lex_state = 50, .external_lex_state = 2}, - [7307] = {.lex_state = 24, .external_lex_state = 2}, - [7308] = {.lex_state = 406, .external_lex_state = 2}, - [7309] = {.lex_state = 50, .external_lex_state = 2}, - [7310] = {.lex_state = 406, .external_lex_state = 2}, - [7311] = {.lex_state = 406, .external_lex_state = 2}, - [7312] = {.lex_state = 406, .external_lex_state = 2}, - [7313] = {.lex_state = 406, .external_lex_state = 2}, - [7314] = {.lex_state = 406, .external_lex_state = 2}, - [7315] = {.lex_state = 406, .external_lex_state = 2}, - [7316] = {.lex_state = 406, .external_lex_state = 2}, - [7317] = {.lex_state = 406, .external_lex_state = 2}, - [7318] = {.lex_state = 49, .external_lex_state = 2}, - [7319] = {.lex_state = 406, .external_lex_state = 2}, - [7320] = {.lex_state = 406, .external_lex_state = 2}, - [7321] = {.lex_state = 406, .external_lex_state = 2}, - [7322] = {.lex_state = 406, .external_lex_state = 2}, - [7323] = {.lex_state = 406, .external_lex_state = 2}, - [7324] = {.lex_state = 406, .external_lex_state = 2}, - [7325] = {.lex_state = 406, .external_lex_state = 2}, - [7326] = {.lex_state = 406, .external_lex_state = 2}, - [7327] = {.lex_state = 406, .external_lex_state = 2}, - [7328] = {.lex_state = 406, .external_lex_state = 2}, - [7329] = {.lex_state = 50, .external_lex_state = 2}, - [7330] = {.lex_state = 50, .external_lex_state = 2}, - [7331] = {.lex_state = 406, .external_lex_state = 2}, - [7332] = {.lex_state = 406, .external_lex_state = 2}, - [7333] = {.lex_state = 406, .external_lex_state = 2}, - [7334] = {.lex_state = 50, .external_lex_state = 2}, - [7335] = {.lex_state = 50, .external_lex_state = 2}, - [7336] = {.lex_state = 50, .external_lex_state = 2}, - [7337] = {.lex_state = 406, .external_lex_state = 2}, - [7338] = {.lex_state = 406, .external_lex_state = 2}, - [7339] = {.lex_state = 406, .external_lex_state = 2}, - [7340] = {.lex_state = 406, .external_lex_state = 2}, - [7341] = {.lex_state = 406, .external_lex_state = 2}, - [7342] = {.lex_state = 406, .external_lex_state = 2}, - [7343] = {.lex_state = 50, .external_lex_state = 2}, - [7344] = {.lex_state = 406, .external_lex_state = 2}, - [7345] = {.lex_state = 406, .external_lex_state = 2}, - [7346] = {.lex_state = 406, .external_lex_state = 2}, - [7347] = {.lex_state = 406, .external_lex_state = 2}, + [7307] = {.lex_state = 50, .external_lex_state = 2}, + [7308] = {.lex_state = 50, .external_lex_state = 2}, + [7309] = {.lex_state = 405, .external_lex_state = 2}, + [7310] = {.lex_state = 50, .external_lex_state = 2}, + [7311] = {.lex_state = 50, .external_lex_state = 2}, + [7312] = {.lex_state = 405, .external_lex_state = 2}, + [7313] = {.lex_state = 405, .external_lex_state = 2}, + [7314] = {.lex_state = 405, .external_lex_state = 2}, + [7315] = {.lex_state = 405, .external_lex_state = 2}, + [7316] = {.lex_state = 50, .external_lex_state = 2}, + [7317] = {.lex_state = 405, .external_lex_state = 2}, + [7318] = {.lex_state = 405, .external_lex_state = 2}, + [7319] = {.lex_state = 405, .external_lex_state = 2}, + [7320] = {.lex_state = 405, .external_lex_state = 2}, + [7321] = {.lex_state = 24, .external_lex_state = 2}, + [7322] = {.lex_state = 48, .external_lex_state = 2}, + [7323] = {.lex_state = 50, .external_lex_state = 2}, + [7324] = {.lex_state = 49, .external_lex_state = 2}, + [7325] = {.lex_state = 405, .external_lex_state = 2}, + [7326] = {.lex_state = 50, .external_lex_state = 2}, + [7327] = {.lex_state = 405, .external_lex_state = 2}, + [7328] = {.lex_state = 405, .external_lex_state = 2}, + [7329] = {.lex_state = 405, .external_lex_state = 2}, + [7330] = {.lex_state = 405, .external_lex_state = 2}, + [7331] = {.lex_state = 405, .external_lex_state = 2}, + [7332] = {.lex_state = 405, .external_lex_state = 2}, + [7333] = {.lex_state = 405, .external_lex_state = 2}, + [7334] = {.lex_state = 405, .external_lex_state = 2}, + [7335] = {.lex_state = 405, .external_lex_state = 2}, + [7336] = {.lex_state = 405, .external_lex_state = 2}, + [7337] = {.lex_state = 405, .external_lex_state = 2}, + [7338] = {.lex_state = 405, .external_lex_state = 2}, + [7339] = {.lex_state = 405, .external_lex_state = 2}, + [7340] = {.lex_state = 405, .external_lex_state = 2}, + [7341] = {.lex_state = 405, .external_lex_state = 2}, + [7342] = {.lex_state = 405, .external_lex_state = 2}, + [7343] = {.lex_state = 48, .external_lex_state = 2}, + [7344] = {.lex_state = 405, .external_lex_state = 2}, + [7345] = {.lex_state = 50, .external_lex_state = 2}, + [7346] = {.lex_state = 405, .external_lex_state = 2}, + [7347] = {.lex_state = 50, .external_lex_state = 2}, [7348] = {.lex_state = 50, .external_lex_state = 2}, [7349] = {.lex_state = 50, .external_lex_state = 2}, - [7350] = {.lex_state = 406, .external_lex_state = 2}, - [7351] = {.lex_state = 406, .external_lex_state = 2}, - [7352] = {.lex_state = 406, .external_lex_state = 2}, - [7353] = {.lex_state = 406, .external_lex_state = 2}, - [7354] = {.lex_state = 50, .external_lex_state = 2}, - [7355] = {.lex_state = 50, .external_lex_state = 2}, - [7356] = {.lex_state = 406, .external_lex_state = 2}, + [7350] = {.lex_state = 405, .external_lex_state = 2}, + [7351] = {.lex_state = 405, .external_lex_state = 2}, + [7352] = {.lex_state = 405, .external_lex_state = 2}, + [7353] = {.lex_state = 405, .external_lex_state = 2}, + [7354] = {.lex_state = 405, .external_lex_state = 2}, + [7355] = {.lex_state = 405, .external_lex_state = 2}, + [7356] = {.lex_state = 405, .external_lex_state = 2}, [7357] = {.lex_state = 50, .external_lex_state = 2}, [7358] = {.lex_state = 50, .external_lex_state = 2}, - [7359] = {.lex_state = 406, .external_lex_state = 2}, - [7360] = {.lex_state = 406, .external_lex_state = 2}, - [7361] = {.lex_state = 406, .external_lex_state = 2}, + [7359] = {.lex_state = 50, .external_lex_state = 2}, + [7360] = {.lex_state = 405, .external_lex_state = 2}, + [7361] = {.lex_state = 405, .external_lex_state = 2}, [7362] = {.lex_state = 50, .external_lex_state = 2}, - [7363] = {.lex_state = 406, .external_lex_state = 2}, - [7364] = {.lex_state = 406, .external_lex_state = 2}, - [7365] = {.lex_state = 82, .external_lex_state = 2}, - [7366] = {.lex_state = 50, .external_lex_state = 2}, - [7367] = {.lex_state = 50, .external_lex_state = 2}, - [7368] = {.lex_state = 406, .external_lex_state = 2}, - [7369] = {.lex_state = 50, .external_lex_state = 2}, - [7370] = {.lex_state = 406, .external_lex_state = 2}, - [7371] = {.lex_state = 406, .external_lex_state = 2}, - [7372] = {.lex_state = 406, .external_lex_state = 2}, - [7373] = {.lex_state = 406, .external_lex_state = 2}, - [7374] = {.lex_state = 406, .external_lex_state = 2}, - [7375] = {.lex_state = 406, .external_lex_state = 2}, - [7376] = {.lex_state = 50, .external_lex_state = 2}, - [7377] = {.lex_state = 50, .external_lex_state = 2}, - [7378] = {.lex_state = 406, .external_lex_state = 2}, - [7379] = {.lex_state = 406, .external_lex_state = 2}, - [7380] = {.lex_state = 406, .external_lex_state = 2}, - [7381] = {.lex_state = 406, .external_lex_state = 2}, - [7382] = {.lex_state = 406, .external_lex_state = 2}, - [7383] = {.lex_state = 406, .external_lex_state = 2}, - [7384] = {.lex_state = 406, .external_lex_state = 2}, - [7385] = {.lex_state = 406, .external_lex_state = 2}, - [7386] = {.lex_state = 406, .external_lex_state = 2}, - [7387] = {.lex_state = 406, .external_lex_state = 2}, - [7388] = {.lex_state = 406, .external_lex_state = 2}, - [7389] = {.lex_state = 406, .external_lex_state = 2}, + [7363] = {.lex_state = 405, .external_lex_state = 2}, + [7364] = {.lex_state = 405, .external_lex_state = 2}, + [7365] = {.lex_state = 50, .external_lex_state = 2}, + [7366] = {.lex_state = 405, .external_lex_state = 2}, + [7367] = {.lex_state = 405, .external_lex_state = 2}, + [7368] = {.lex_state = 50, .external_lex_state = 2}, + [7369] = {.lex_state = 405, .external_lex_state = 2}, + [7370] = {.lex_state = 405, .external_lex_state = 2}, + [7371] = {.lex_state = 405, .external_lex_state = 2}, + [7372] = {.lex_state = 50, .external_lex_state = 2}, + [7373] = {.lex_state = 405, .external_lex_state = 2}, + [7374] = {.lex_state = 405, .external_lex_state = 2}, + [7375] = {.lex_state = 82, .external_lex_state = 2}, + [7376] = {.lex_state = 405, .external_lex_state = 2}, + [7377] = {.lex_state = 405, .external_lex_state = 2}, + [7378] = {.lex_state = 405, .external_lex_state = 2}, + [7379] = {.lex_state = 405, .external_lex_state = 2}, + [7380] = {.lex_state = 405, .external_lex_state = 2}, + [7381] = {.lex_state = 405, .external_lex_state = 2}, + [7382] = {.lex_state = 405, .external_lex_state = 2}, + [7383] = {.lex_state = 50, .external_lex_state = 2}, + [7384] = {.lex_state = 405, .external_lex_state = 2}, + [7385] = {.lex_state = 405, .external_lex_state = 2}, + [7386] = {.lex_state = 50, .external_lex_state = 2}, + [7387] = {.lex_state = 405, .external_lex_state = 2}, + [7388] = {.lex_state = 405, .external_lex_state = 2}, + [7389] = {.lex_state = 50, .external_lex_state = 2}, [7390] = {.lex_state = 50, .external_lex_state = 2}, - [7391] = {.lex_state = 406, .external_lex_state = 2}, - [7392] = {.lex_state = 49, .external_lex_state = 2}, - [7393] = {.lex_state = 48, .external_lex_state = 2}, - [7394] = {.lex_state = 406, .external_lex_state = 2}, - [7395] = {.lex_state = 50, .external_lex_state = 2}, + [7391] = {.lex_state = 405, .external_lex_state = 2}, + [7392] = {.lex_state = 405, .external_lex_state = 2}, + [7393] = {.lex_state = 50, .external_lex_state = 2}, + [7394] = {.lex_state = 50, .external_lex_state = 2}, + [7395] = {.lex_state = 405, .external_lex_state = 2}, [7396] = {.lex_state = 50, .external_lex_state = 2}, - [7397] = {.lex_state = 406, .external_lex_state = 2}, - [7398] = {.lex_state = 406, .external_lex_state = 2}, - [7399] = {.lex_state = 406, .external_lex_state = 2}, - [7400] = {.lex_state = 50, .external_lex_state = 2}, - [7401] = {.lex_state = 50, .external_lex_state = 2}, - [7402] = {.lex_state = 406, .external_lex_state = 2}, - [7403] = {.lex_state = 406, .external_lex_state = 2}, - [7404] = {.lex_state = 406, .external_lex_state = 2}, - [7405] = {.lex_state = 3, .external_lex_state = 10}, - [7406] = {.lex_state = 406, .external_lex_state = 2}, - [7407] = {.lex_state = 48, .external_lex_state = 2}, - [7408] = {.lex_state = 406, .external_lex_state = 2}, - [7409] = {.lex_state = 406, .external_lex_state = 2}, - [7410] = {.lex_state = 406, .external_lex_state = 2}, - [7411] = {.lex_state = 48, .external_lex_state = 2}, - [7412] = {.lex_state = 406, .external_lex_state = 2}, - [7413] = {.lex_state = 50, .external_lex_state = 2}, - [7414] = {.lex_state = 50, .external_lex_state = 2}, - [7415] = {.lex_state = 406, .external_lex_state = 2}, - [7416] = {.lex_state = 406, .external_lex_state = 2}, - [7417] = {.lex_state = 50, .external_lex_state = 2}, + [7397] = {.lex_state = 405, .external_lex_state = 2}, + [7398] = {.lex_state = 50, .external_lex_state = 2}, + [7399] = {.lex_state = 405, .external_lex_state = 2}, + [7400] = {.lex_state = 405, .external_lex_state = 2}, + [7401] = {.lex_state = 405, .external_lex_state = 2}, + [7402] = {.lex_state = 50, .external_lex_state = 2}, + [7403] = {.lex_state = 405, .external_lex_state = 2}, + [7404] = {.lex_state = 405, .external_lex_state = 2}, + [7405] = {.lex_state = 405, .external_lex_state = 2}, + [7406] = {.lex_state = 50, .external_lex_state = 2}, + [7407] = {.lex_state = 50, .external_lex_state = 2}, + [7408] = {.lex_state = 405, .external_lex_state = 2}, + [7409] = {.lex_state = 405, .external_lex_state = 2}, + [7410] = {.lex_state = 405, .external_lex_state = 2}, + [7411] = {.lex_state = 49, .external_lex_state = 2}, + [7412] = {.lex_state = 405, .external_lex_state = 2}, + [7413] = {.lex_state = 3, .external_lex_state = 10}, + [7414] = {.lex_state = 405, .external_lex_state = 2}, + [7415] = {.lex_state = 405, .external_lex_state = 2}, + [7416] = {.lex_state = 405, .external_lex_state = 2}, + [7417] = {.lex_state = 405, .external_lex_state = 2}, [7418] = {.lex_state = 50, .external_lex_state = 2}, - [7419] = {.lex_state = 406, .external_lex_state = 2}, + [7419] = {.lex_state = 50, .external_lex_state = 2}, [7420] = {.lex_state = 50, .external_lex_state = 2}, - [7421] = {.lex_state = 50, .external_lex_state = 2}, - [7422] = {.lex_state = 406, .external_lex_state = 2}, - [7423] = {.lex_state = 50, .external_lex_state = 2}, + [7421] = {.lex_state = 405, .external_lex_state = 2}, + [7422] = {.lex_state = 405, .external_lex_state = 2}, + [7423] = {.lex_state = 405, .external_lex_state = 2}, [7424] = {.lex_state = 50, .external_lex_state = 2}, - [7425] = {.lex_state = 406, .external_lex_state = 2}, - [7426] = {.lex_state = 406, .external_lex_state = 2}, - [7427] = {.lex_state = 406, .external_lex_state = 2}, - [7428] = {.lex_state = 50, .external_lex_state = 2}, - [7429] = {.lex_state = 406, .external_lex_state = 2}, - [7430] = {.lex_state = 406, .external_lex_state = 2}, - [7431] = {.lex_state = 406, .external_lex_state = 2}, - [7432] = {.lex_state = 406, .external_lex_state = 2}, - [7433] = {.lex_state = 406, .external_lex_state = 2}, - [7434] = {.lex_state = 406, .external_lex_state = 2}, - [7435] = {.lex_state = 406, .external_lex_state = 2}, - [7436] = {.lex_state = 406, .external_lex_state = 2}, - [7437] = {.lex_state = 50, .external_lex_state = 2}, - [7438] = {.lex_state = 406, .external_lex_state = 2}, - [7439] = {.lex_state = 406, .external_lex_state = 2}, - [7440] = {.lex_state = 406, .external_lex_state = 2}, - [7441] = {.lex_state = 50, .external_lex_state = 2}, - [7442] = {.lex_state = 406, .external_lex_state = 2}, - [7443] = {.lex_state = 406, .external_lex_state = 2}, - [7444] = {.lex_state = 406, .external_lex_state = 2}, - [7445] = {.lex_state = 406, .external_lex_state = 2}, - [7446] = {.lex_state = 50, .external_lex_state = 2}, - [7447] = {.lex_state = 406, .external_lex_state = 2}, - [7448] = {.lex_state = 406, .external_lex_state = 2}, - [7449] = {.lex_state = 50, .external_lex_state = 2}, - [7450] = {.lex_state = 406, .external_lex_state = 2}, - [7451] = {.lex_state = 406, .external_lex_state = 2}, - [7452] = {.lex_state = 406, .external_lex_state = 2}, - [7453] = {.lex_state = 406, .external_lex_state = 2}, - [7454] = {.lex_state = 50, .external_lex_state = 2}, - [7455] = {.lex_state = 406, .external_lex_state = 2}, - [7456] = {.lex_state = 50, .external_lex_state = 2}, - [7457] = {.lex_state = 406, .external_lex_state = 2}, - [7458] = {.lex_state = 50, .external_lex_state = 2}, - [7459] = {.lex_state = 406, .external_lex_state = 2}, - [7460] = {.lex_state = 406, .external_lex_state = 2}, - [7461] = {.lex_state = 50, .external_lex_state = 2}, - [7462] = {.lex_state = 406, .external_lex_state = 2}, - [7463] = {.lex_state = 406, .external_lex_state = 2}, + [7425] = {.lex_state = 405, .external_lex_state = 2}, + [7426] = {.lex_state = 405, .external_lex_state = 2}, + [7427] = {.lex_state = 405, .external_lex_state = 2}, + [7428] = {.lex_state = 405, .external_lex_state = 2}, + [7429] = {.lex_state = 405, .external_lex_state = 2}, + [7430] = {.lex_state = 50, .external_lex_state = 2}, + [7431] = {.lex_state = 405, .external_lex_state = 2}, + [7432] = {.lex_state = 405, .external_lex_state = 2}, + [7433] = {.lex_state = 405, .external_lex_state = 2}, + [7434] = {.lex_state = 50, .external_lex_state = 2}, + [7435] = {.lex_state = 405, .external_lex_state = 2}, + [7436] = {.lex_state = 405, .external_lex_state = 2}, + [7437] = {.lex_state = 405, .external_lex_state = 2}, + [7438] = {.lex_state = 405, .external_lex_state = 2}, + [7439] = {.lex_state = 405, .external_lex_state = 2}, + [7440] = {.lex_state = 405, .external_lex_state = 2}, + [7441] = {.lex_state = 405, .external_lex_state = 2}, + [7442] = {.lex_state = 405, .external_lex_state = 2}, + [7443] = {.lex_state = 405, .external_lex_state = 2}, + [7444] = {.lex_state = 50, .external_lex_state = 2}, + [7445] = {.lex_state = 405, .external_lex_state = 2}, + [7446] = {.lex_state = 405, .external_lex_state = 2}, + [7447] = {.lex_state = 50, .external_lex_state = 2}, + [7448] = {.lex_state = 405, .external_lex_state = 2}, + [7449] = {.lex_state = 405, .external_lex_state = 2}, + [7450] = {.lex_state = 405, .external_lex_state = 2}, + [7451] = {.lex_state = 405, .external_lex_state = 2}, + [7452] = {.lex_state = 50, .external_lex_state = 2}, + [7453] = {.lex_state = 405, .external_lex_state = 2}, + [7454] = {.lex_state = 405, .external_lex_state = 2}, + [7455] = {.lex_state = 50, .external_lex_state = 2}, + [7456] = {.lex_state = 405, .external_lex_state = 2}, + [7457] = {.lex_state = 50, .external_lex_state = 2}, + [7458] = {.lex_state = 405, .external_lex_state = 2}, + [7459] = {.lex_state = 405, .external_lex_state = 2}, + [7460] = {.lex_state = 50, .external_lex_state = 2}, + [7461] = {.lex_state = 405, .external_lex_state = 2}, + [7462] = {.lex_state = 405, .external_lex_state = 2}, + [7463] = {.lex_state = 405, .external_lex_state = 2}, [7464] = {.lex_state = 50, .external_lex_state = 2}, - [7465] = {.lex_state = 406, .external_lex_state = 2}, - [7466] = {.lex_state = 50, .external_lex_state = 2}, - [7467] = {.lex_state = 406, .external_lex_state = 2}, - [7468] = {.lex_state = 406, .external_lex_state = 2}, - [7469] = {.lex_state = 50, .external_lex_state = 2}, - [7470] = {.lex_state = 406, .external_lex_state = 2}, - [7471] = {.lex_state = 50, .external_lex_state = 2}, - [7472] = {.lex_state = 406, .external_lex_state = 2}, - [7473] = {.lex_state = 406, .external_lex_state = 2}, - [7474] = {.lex_state = 50, .external_lex_state = 2}, - [7475] = {.lex_state = 406, .external_lex_state = 2}, - [7476] = {.lex_state = 50, .external_lex_state = 2}, - [7477] = {.lex_state = 406, .external_lex_state = 2}, - [7478] = {.lex_state = 406, .external_lex_state = 2}, - [7479] = {(TSStateId)(-1)}, + [7465] = {.lex_state = 405, .external_lex_state = 2}, + [7466] = {.lex_state = 405, .external_lex_state = 2}, + [7467] = {.lex_state = 50, .external_lex_state = 2}, + [7468] = {.lex_state = 405, .external_lex_state = 2}, + [7469] = {.lex_state = 405, .external_lex_state = 2}, + [7470] = {.lex_state = 50, .external_lex_state = 2}, + [7471] = {.lex_state = 405, .external_lex_state = 2}, + [7472] = {.lex_state = 50, .external_lex_state = 2}, + [7473] = {.lex_state = 405, .external_lex_state = 2}, + [7474] = {.lex_state = 405, .external_lex_state = 2}, + [7475] = {.lex_state = 50, .external_lex_state = 2}, + [7476] = {.lex_state = 405, .external_lex_state = 2}, + [7477] = {.lex_state = 50, .external_lex_state = 2}, + [7478] = {.lex_state = 405, .external_lex_state = 2}, + [7479] = {.lex_state = 405, .external_lex_state = 2}, + [7480] = {.lex_state = 50, .external_lex_state = 2}, + [7481] = {.lex_state = 405, .external_lex_state = 2}, + [7482] = {.lex_state = 50, .external_lex_state = 2}, + [7483] = {.lex_state = 405, .external_lex_state = 2}, + [7484] = {.lex_state = 405, .external_lex_state = 2}, + [7485] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29779,89 +29786,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7375), - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_program] = STATE(7385), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(1), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(36), + [aux_sym_export_statement_repeat1] = STATE(4814), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -29942,79 +29949,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -30024,60 +30031,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -30086,187 +30093,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(193), + [anon_sym_readonly] = ACTIONS(194), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(137), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -30275,145 +30282,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(187), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(193), + [anon_sym_readonly] = ACTIONS(194), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(6204), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(4), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -30496,113 +30503,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(5), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30625,9 +30632,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -30650,135 +30657,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(6), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30801,9 +30808,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -30826,135 +30833,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(7), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30977,9 +30984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31002,135 +31009,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(8), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31153,9 +31160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31178,135 +31185,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(5740), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(9), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(54), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31329,9 +31336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31354,135 +31361,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(6145), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(6204), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(10), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(275), - [anon_sym_export] = ACTIONS(277), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(233), [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(21), [anon_sym_if] = ACTIONS(33), @@ -31505,9 +31512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(287), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(289), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31530,135 +31537,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7317), - [sym_spread_element] = STATE(6145), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(3030), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7335), + [sym_spread_element] = STATE(5682), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(3031), [sym_comment] = STATE(11), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(4583), - [sym_computed_property_name] = STATE(4582), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_accessibility_modifier] = STATE(3468), - [sym_override_modifier] = STATE(3530), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4684), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(307), - [anon_sym_export] = ACTIONS(309), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(4547), + [sym_computed_property_name] = STATE(4548), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_accessibility_modifier] = STATE(3471), + [sym_override_modifier] = STATE(3523), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(69), + [aux_sym_export_statement_repeat1] = STATE(4814), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(265), + [anon_sym_export] = ACTIONS(267), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(311), - [anon_sym_namespace] = ACTIONS(313), + [anon_sym_type] = ACTIONS(269), + [anon_sym_namespace] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(283), + [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(315), + [anon_sym_let] = ACTIONS(275), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31681,9 +31688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(317), + [anon_sym_async] = ACTIONS(277), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(319), + [anon_sym_new] = ACTIONS(279), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31706,148 +31713,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(321), - [anon_sym_readonly] = ACTIONS(323), - [anon_sym_get] = ACTIONS(325), - [anon_sym_set] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_public] = ACTIONS(329), - [anon_sym_private] = ACTIONS(329), - [anon_sym_protected] = ACTIONS(329), - [anon_sym_override] = ACTIONS(331), - [anon_sym_module] = ACTIONS(333), - [anon_sym_any] = ACTIONS(335), - [anon_sym_number] = ACTIONS(335), - [anon_sym_boolean] = ACTIONS(335), - [anon_sym_string] = ACTIONS(335), - [anon_sym_symbol] = ACTIONS(335), - [anon_sym_object] = ACTIONS(335), + [anon_sym_static] = ACTIONS(281), + [anon_sym_readonly] = ACTIONS(283), + [anon_sym_get] = ACTIONS(285), + [anon_sym_set] = ACTIONS(285), + [anon_sym_declare] = ACTIONS(287), + [anon_sym_public] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_override] = ACTIONS(291), + [anon_sym_module] = ACTIONS(293), + [anon_sym_any] = ACTIONS(295), + [anon_sym_number] = ACTIONS(295), + [anon_sym_boolean] = ACTIONS(295), + [anon_sym_string] = ACTIONS(295), + [anon_sym_symbol] = ACTIONS(295), + [anon_sym_object] = ACTIONS(295), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1411), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), [sym_comment] = STATE(12), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4707), [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_default] = ACTIONS(341), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_export] = ACTIONS(340), + [anon_sym_default] = ACTIONS(343), + [anon_sym_type] = ACTIONS(345), + [anon_sym_namespace] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_typeof] = ACTIONS(354), + [anon_sym_import] = ACTIONS(357), + [anon_sym_with] = ACTIONS(360), + [anon_sym_var] = ACTIONS(363), + [anon_sym_let] = ACTIONS(366), + [anon_sym_const] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_if] = ACTIONS(372), + [anon_sym_switch] = ACTIONS(375), + [anon_sym_for] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_await] = ACTIONS(384), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(390), + [anon_sym_try] = ACTIONS(393), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_debugger] = ACTIONS(402), + [anon_sym_return] = ACTIONS(405), + [anon_sym_throw] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_case] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LTtemplate_GT] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_class] = ACTIONS(429), + [anon_sym_async] = ACTIONS(432), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(438), + [anon_sym_using] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(354), + [anon_sym_void] = ACTIONS(354), + [anon_sym_delete] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(450), + [anon_sym_DASH_DASH] = ACTIONS(450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(453), + [sym_number] = ACTIONS(456), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_true] = ACTIONS(456), + [sym_false] = ACTIONS(456), + [sym_null] = ACTIONS(456), + [sym_undefined] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_static] = ACTIONS(468), + [anon_sym_readonly] = ACTIONS(468), + [anon_sym_get] = ACTIONS(468), + [anon_sym_set] = ACTIONS(468), + [anon_sym_declare] = ACTIONS(471), + [anon_sym_public] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_protected] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_module] = ACTIONS(474), + [anon_sym_any] = ACTIONS(468), + [anon_sym_number] = ACTIONS(468), + [anon_sym_boolean] = ACTIONS(468), + [anon_sym_string] = ACTIONS(468), + [anon_sym_symbol] = ACTIONS(468), + [anon_sym_object] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(483), + [sym_html_comment] = ACTIONS(5), + }, + [13] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1411), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(13), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_default] = ACTIONS(490), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_case] = ACTIONS(341), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_case] = ACTIONS(490), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31869,148 +32039,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, - [13] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(13), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), + [14] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1411), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(14), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_default] = ACTIONS(403), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_default] = ACTIONS(552), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(552), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_case] = ACTIONS(403), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_case] = ACTIONS(552), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32032,311 +32202,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [14] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(14), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(405), - [anon_sym_export] = ACTIONS(408), - [anon_sym_default] = ACTIONS(411), - [anon_sym_type] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_import] = ACTIONS(425), - [anon_sym_with] = ACTIONS(428), - [anon_sym_var] = ACTIONS(431), - [anon_sym_let] = ACTIONS(434), - [anon_sym_const] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_for] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_await] = ACTIONS(452), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(458), - [anon_sym_try] = ACTIONS(461), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_debugger] = ACTIONS(470), - [anon_sym_return] = ACTIONS(473), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_case] = ACTIONS(411), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(494), - [anon_sym_class] = ACTIONS(497), - [anon_sym_async] = ACTIONS(500), - [anon_sym_function] = ACTIONS(503), - [anon_sym_new] = ACTIONS(506), - [anon_sym_using] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(521), - [sym_number] = ACTIONS(524), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_null] = ACTIONS(524), - [sym_undefined] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(533), - [anon_sym_static] = ACTIONS(536), - [anon_sym_readonly] = ACTIONS(536), - [anon_sym_get] = ACTIONS(536), - [anon_sym_set] = ACTIONS(536), - [anon_sym_declare] = ACTIONS(539), - [anon_sym_public] = ACTIONS(536), - [anon_sym_private] = ACTIONS(536), - [anon_sym_protected] = ACTIONS(536), - [anon_sym_override] = ACTIONS(536), - [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(536), - [anon_sym_number] = ACTIONS(536), - [anon_sym_boolean] = ACTIONS(536), - [anon_sym_string] = ACTIONS(536), - [anon_sym_symbol] = ACTIONS(536), - [anon_sym_object] = ACTIONS(536), - [anon_sym_abstract] = ACTIONS(545), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1411), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), [sym_comment] = STATE(15), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), [anon_sym_default] = ACTIONS(554), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_case] = ACTIONS(554), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32358,148 +32365,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1245), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1411), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), [sym_comment] = STATE(16), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), [anon_sym_default] = ACTIONS(556), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_RBRACE] = ACTIONS(556), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_case] = ACTIONS(556), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32521,129 +32528,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(17), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(563), [anon_sym_type] = ACTIONS(566), [anon_sym_namespace] = ACTIONS(569), [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_typeof] = ACTIONS(354), [anon_sym_import] = ACTIONS(575), [anon_sym_with] = ACTIONS(578), [anon_sym_var] = ACTIONS(581), [anon_sym_let] = ACTIONS(584), [anon_sym_const] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(354), [anon_sym_if] = ACTIONS(590), [anon_sym_switch] = ACTIONS(593), [anon_sym_for] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_await] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_await] = ACTIONS(384), [anon_sym_while] = ACTIONS(599), [anon_sym_do] = ACTIONS(602), [anon_sym_try] = ACTIONS(605), @@ -32653,36 +32660,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(617), [anon_sym_throw] = ACTIONS(620), [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_LTtemplate_GT] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(426), [anon_sym_class] = ACTIONS(626), [anon_sym_async] = ACTIONS(629), [anon_sym_function] = ACTIONS(632), [anon_sym_new] = ACTIONS(635), - [anon_sym_using] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(521), - [sym_number] = ACTIONS(524), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_null] = ACTIONS(524), - [sym_undefined] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(533), + [anon_sym_using] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(354), + [anon_sym_void] = ACTIONS(354), + [anon_sym_delete] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(450), + [anon_sym_DASH_DASH] = ACTIONS(450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(453), + [sym_number] = ACTIONS(456), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_true] = ACTIONS(456), + [sym_false] = ACTIONS(456), + [sym_null] = ACTIONS(456), + [sym_undefined] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(465), [anon_sym_static] = ACTIONS(638), [anon_sym_readonly] = ACTIONS(638), [anon_sym_get] = ACTIONS(638), @@ -32705,88 +32712,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(18), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32866,88 +32873,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(19), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(46), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33027,94 +33034,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(20), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), - [ts_builtin_sym_end] = ACTIONS(660), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(660), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33188,88 +33195,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(21), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33349,88 +33356,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(22), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33510,88 +33517,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(23), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33671,88 +33678,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(24), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33832,88 +33839,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(25), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33993,88 +34000,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(26), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34154,88 +34161,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(27), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34315,88 +34322,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(28), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34476,88 +34483,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(29), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34637,88 +34644,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(30), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(54), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34798,88 +34805,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(31), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34959,88 +34966,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(32), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35120,88 +35127,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(33), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35281,88 +35288,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(34), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35442,88 +35449,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(35), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(39), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35603,94 +35610,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(36), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), + [ts_builtin_sym_end] = ACTIONS(692), [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(692), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35764,88 +35771,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(37), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35925,88 +35932,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(38), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36086,88 +36093,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(39), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36247,88 +36254,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(40), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36408,88 +36415,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(41), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36569,88 +36576,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(42), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36730,88 +36737,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(43), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(44), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36891,88 +36898,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(44), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37052,88 +37059,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(45), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(44), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37213,88 +37220,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(46), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37374,88 +37381,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(47), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(48), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37535,88 +37542,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(48), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37696,88 +37703,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(49), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37857,88 +37864,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(50), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(69), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38018,88 +38025,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(51), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38179,88 +38186,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(52), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38340,94 +38347,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(53), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_export_statement_repeat1] = STATE(4814), + [ts_builtin_sym_end] = ACTIONS(692), [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(726), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38501,94 +38508,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(54), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(53), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(728), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38662,94 +38669,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(55), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(730), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38823,94 +38830,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(56), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(732), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38984,94 +38991,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(57), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(734), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39145,94 +39152,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(58), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), + [ts_builtin_sym_end] = ACTIONS(734), [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(736), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39306,94 +39313,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(59), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(738), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39467,94 +39474,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(60), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(740), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39628,94 +39635,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(61), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(742), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39789,94 +39796,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(62), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(744), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39950,94 +39957,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(63), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(746), + [anon_sym_RBRACE] = ACTIONS(744), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40111,94 +40118,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(64), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(748), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40272,94 +40279,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(65), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(71), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(750), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40433,94 +40440,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(66), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(68), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(752), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40594,94 +40601,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(67), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(64), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(754), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40755,94 +40762,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(68), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(756), + [anon_sym_RBRACE] = ACTIONS(754), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -40916,94 +40923,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(69), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(758), + [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41077,94 +41084,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(70), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4684), - [ts_builtin_sym_end] = ACTIONS(760), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(758), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41238,94 +41245,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(71), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(762), + [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41399,94 +41406,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1556), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1534), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(72), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_program_repeat1] = STATE(70), - [aux_sym_export_statement_repeat1] = STATE(4684), - [ts_builtin_sym_end] = ACTIONS(660), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4814), [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(762), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41560,246 +41567,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1537), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1279), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), [sym_comment] = STATE(73), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), - [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(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [74] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1437), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(74), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -41877,88 +41725,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(967), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), + [74] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6882), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -42036,123 +41884,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, + [75] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1436), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), + [sym_html_comment] = ACTIONS(5), + }, [76] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1341), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6868), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), [sym_comment] = STATE(76), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42174,144 +42181,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6902), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6846), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), [sym_comment] = STATE(77), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42333,109 +42340,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1515), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1566), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), [sym_comment] = STATE(78), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42514,246 +42521,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1047), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1092), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), [sym_comment] = STATE(79), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, - [80] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1043), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(80), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -42831,123 +42679,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(975), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(81), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [80] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1462), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), + [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(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [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(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42969,144 +42817,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1267), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [81] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1549), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), + [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(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [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(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43128,109 +42976,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1003), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), + [82] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6704), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -43308,282 +43156,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6651), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), - [sym_html_comment] = ACTIONS(5), - }, - [85] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1571), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [83] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6843), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [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_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43605,144 +43294,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6708), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [84] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(5748), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43764,109 +43453,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1016), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [85] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1319), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -43944,724 +43633,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1282), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(88), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [89] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6557), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(89), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), - [sym_html_comment] = ACTIONS(5), - }, - [90] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1541), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), - [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(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [91] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1197), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(91), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [92] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1202), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(92), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [86] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1325), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -44739,88 +43792,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1272), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(93), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [87] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1315), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -44898,123 +43951,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(7283), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(94), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [88] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1362), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45036,109 +44089,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1217), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(95), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [89] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(7071), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [90] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1306), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -45216,88 +44428,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1547), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), - [sym_comment] = STATE(96), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), + [91] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1572), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -45375,282 +44587,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1489), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), - [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(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [98] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1088), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(98), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [92] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1159), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(92), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45672,144 +44725,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(917), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(99), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), + [93] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(1065), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(93), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45831,144 +44884,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [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_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1138), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(100), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [94] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1548), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(94), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), + [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(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [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(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45990,144 +45043,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1343), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(101), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [95] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(964), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46149,144 +45202,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [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_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1328), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(102), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [96] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(992), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46308,109 +45361,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [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_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(7096), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(103), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), + [97] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(995), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -46488,88 +45541,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(7204), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), + [98] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(1128), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -46647,123 +45700,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1326), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [99] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1176), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(99), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46785,109 +45838,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6950), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), + [100] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(1039), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(100), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -46965,247 +46018,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1405), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [108] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(942), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), + [101] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(7234), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(101), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -47283,88 +46177,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1391), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), + [102] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1208), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(102), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), + }, + [103] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1191), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -47442,88 +46495,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6622), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), + [104] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(1048), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -47601,123 +46654,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1230), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [105] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(1034), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47739,144 +46792,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [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_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1443), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1443), - [sym_statement] = STATE(1215), - [sym_expression_statement] = STATE(1443), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_statement_block] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_for_in_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_with_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_empty_statement] = STATE(1443), - [sym_labeled_statement] = STATE(1443), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6773), - [sym_string] = STATE(2940), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4833), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [106] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6396), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47898,109 +46951,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1118), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), + [107] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1370), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), + }, + [108] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(7300), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -48078,88 +47290,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(7030), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), + [109] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(913), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -48237,123 +47449,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(5822), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [110] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1545), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), + [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(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [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(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48375,109 +47587,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(965), - [sym_declaration] = STATE(965), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(965), - [sym_statement] = STATE(1112), - [sym_expression_statement] = STATE(965), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_statement_block] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_for_in_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_with_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_debugger_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_empty_statement] = STATE(965), - [sym_labeled_statement] = STATE(965), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6354), - [sym_string] = STATE(2940), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4838), + [111] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6491), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -48555,88 +47767,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1490), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), + [112] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1016), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), + [sym_html_comment] = ACTIONS(5), + }, + [113] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1526), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -48714,97 +48085,574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(7033), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(118), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), + [114] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(7102), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [115] = { + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(6611), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [116] = { + [sym_export_statement] = STATE(1215), + [sym_declaration] = STATE(1215), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1215), + [sym_statement] = STATE(1192), + [sym_expression_statement] = STATE(1215), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_statement_block] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_with_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_debugger_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_empty_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6992), + [sym_string] = STATE(2924), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), + [sym_html_comment] = ACTIONS(5), + }, + [117] = { + [sym_export_statement] = STATE(1147), + [sym_declaration] = STATE(1147), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1147), + [sym_statement] = STATE(954), + [sym_expression_statement] = STATE(1147), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_statement_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_for_in_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_with_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_debugger_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_empty_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6360), + [sym_string] = STATE(2924), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), [anon_sym_let] = ACTIONS(908), [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), @@ -48873,123 +48721,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, + [118] = { + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1419), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), + [sym_comment] = STATE(118), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), + }, [119] = { - [sym_export_statement] = STATE(1393), - [sym_declaration] = STATE(1393), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1393), - [sym_statement] = STATE(1414), - [sym_expression_statement] = STATE(1393), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_statement_block] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_for_in_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_try_statement] = STATE(1393), - [sym_with_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_throw_statement] = STATE(1393), - [sym_empty_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6752), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1428), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), [sym_comment] = STATE(119), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4841), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49011,109 +49018,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_export_statement] = STATE(1554), - [sym_declaration] = STATE(1554), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(1554), - [sym_statement] = STATE(1470), - [sym_expression_statement] = STATE(1554), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_statement_block] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_for_in_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_debugger_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_empty_statement] = STATE(1554), - [sym_labeled_statement] = STATE(1554), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6480), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(1232), + [sym_declaration] = STATE(1232), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1232), + [sym_statement] = STATE(1431), + [sym_expression_statement] = STATE(1232), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_statement_block] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_with_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_debugger_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_empty_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6629), + [sym_string] = STATE(2924), [sym_comment] = STATE(120), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4707), + [sym_identifier] = ACTIONS(486), + [anon_sym_export] = ACTIONS(488), + [anon_sym_type] = ACTIONS(492), + [anon_sym_namespace] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(498), + [anon_sym_with] = ACTIONS(500), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(504), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(516), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(538), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(540), + [anon_sym_readonly] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [anon_sym_declare] = ACTIONS(542), + [anon_sym_public] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_module] = ACTIONS(544), + [anon_sym_any] = ACTIONS(540), + [anon_sym_number] = ACTIONS(540), + [anon_sym_boolean] = ACTIONS(540), + [anon_sym_string] = ACTIONS(540), + [anon_sym_symbol] = ACTIONS(540), + [anon_sym_object] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), + }, + [121] = { + [sym_export_statement] = STATE(1535), + [sym_declaration] = STATE(1535), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(1535), + [sym_statement] = STATE(1457), + [sym_expression_statement] = STATE(1535), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_statement_block] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_for_in_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_try_statement] = STATE(1535), + [sym_with_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_debugger_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_throw_statement] = STATE(1535), + [sym_empty_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6435), + [sym_string] = STATE(2924), + [sym_comment] = STATE(121), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4814), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -49191,282 +49357,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6536), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), - [sym_comment] = STATE(121), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), - [sym_html_comment] = ACTIONS(5), - }, [122] = { - [sym_export_statement] = STATE(6355), - [sym_declaration] = STATE(6355), - [sym_import] = STATE(4290), - [sym_import_statement] = STATE(6355), - [sym_statement] = STATE(6711), - [sym_expression_statement] = STATE(6355), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_statement_block] = STATE(6355), - [sym_if_statement] = STATE(6355), - [sym_switch_statement] = STATE(6355), - [sym_for_statement] = STATE(6355), - [sym_for_in_statement] = STATE(6355), - [sym_while_statement] = STATE(6355), - [sym_do_statement] = STATE(6355), - [sym_try_statement] = STATE(6355), - [sym_with_statement] = STATE(6355), - [sym_break_statement] = STATE(6355), - [sym_continue_statement] = STATE(6355), - [sym_debugger_statement] = STATE(6355), - [sym_return_statement] = STATE(6355), - [sym_throw_statement] = STATE(6355), - [sym_empty_statement] = STATE(6355), - [sym_labeled_statement] = STATE(6355), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6737), - [sym_string] = STATE(2940), + [sym_export_statement] = STATE(6925), + [sym_declaration] = STATE(6925), + [sym_import] = STATE(4218), + [sym_import_statement] = STATE(6925), + [sym_statement] = STATE(7036), + [sym_expression_statement] = STATE(6925), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_statement_block] = STATE(6925), + [sym_if_statement] = STATE(6925), + [sym_switch_statement] = STATE(6925), + [sym_for_statement] = STATE(6925), + [sym_for_in_statement] = STATE(6925), + [sym_while_statement] = STATE(6925), + [sym_do_statement] = STATE(6925), + [sym_try_statement] = STATE(6925), + [sym_with_statement] = STATE(6925), + [sym_break_statement] = STATE(6925), + [sym_continue_statement] = STATE(6925), + [sym_debugger_statement] = STATE(6925), + [sym_return_statement] = STATE(6925), + [sym_throw_statement] = STATE(6925), + [sym_empty_statement] = STATE(6925), + [sym_labeled_statement] = STATE(6925), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6565), + [sym_string] = STATE(2924), [sym_comment] = STATE(122), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4795), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49488,752 +49495,752 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [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_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(123), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), [sym_identifier] = ACTIONS(956), [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(976), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), [anon_sym_get] = ACTIONS(958), [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(196), [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_any] = ACTIONS(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5774), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(124), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5776), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1004), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(125), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1006), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(126), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1008), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), [sym_comment] = STATE(127), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50242,12 +50249,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -50256,141 +50263,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [128] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(128), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(5712), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), [anon_sym_get] = ACTIONS(958), [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(196), [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_any] = ACTIONS(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(128), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [129] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5693), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(129), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5694), + [aux_sym_array_pattern_repeat1] = STATE(5695), [sym_identifier] = ACTIONS(956), [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [130] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(130), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [131] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(131), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50399,12 +50877,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -50413,1240 +50891,769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(987), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [129] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(129), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(5706), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(1045), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [130] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5774), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(130), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5776), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1049), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [131] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(131), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(132), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_RBRACK] = ACTIONS(1053), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5693), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(133), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5694), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_RBRACK] = ACTIONS(1055), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(134), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4926), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_RBRACK] = ACTIONS(1057), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(998), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [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(1002), + [anon_sym_number] = ACTIONS(1002), + [anon_sym_boolean] = ACTIONS(1002), + [anon_sym_string] = ACTIONS(1002), + [anon_sym_symbol] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), [sym_comment] = STATE(135), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(5167), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(989), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1059), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(136), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5156), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4965), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -51655,9 +51662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -51669,27 +51676,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1079), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -51703,106 +51710,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(137), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5080), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5191), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -51811,9 +51818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -51825,27 +51832,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -51859,106 +51866,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(138), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5290), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4978), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -51967,9 +51974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -51981,27 +51988,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52015,106 +52022,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52123,9 +52130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -52137,27 +52144,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52171,106 +52178,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5283), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4987), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52279,9 +52286,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -52293,27 +52300,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52327,106 +52334,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5265), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4950), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52435,9 +52442,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -52449,27 +52456,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52483,106 +52490,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5061), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4980), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52591,9 +52598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -52605,27 +52612,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1093), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52639,106 +52646,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52747,9 +52754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1073), @@ -52761,27 +52768,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(178), - [anon_sym_DASH_DASH] = ACTIONS(178), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(179), + [anon_sym_DASH_DASH] = ACTIONS(179), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1076), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -52795,105 +52802,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_await] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52902,12 +52909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -52916,27 +52923,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), [anon_sym_get] = ACTIONS(1097), [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(1097), [anon_sym_public] = ACTIONS(1097), [anon_sym_private] = ACTIONS(1097), @@ -52950,105 +52957,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1097), [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(1127), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53057,12 +53064,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -53071,601 +53078,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [147] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7288), - [sym_string] = STATE(3050), - [sym_comment] = STATE(147), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5556), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_typeof] = ACTIONS(1139), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1151), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1157), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [148] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7121), - [sym_string] = STATE(3050), - [sym_comment] = STATE(148), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5602), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_typeof] = ACTIONS(1139), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1151), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1157), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [149] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(149), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(217), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53674,12 +53219,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -53688,293 +53233,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [150] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7121), - [sym_string] = STATE(3050), - [sym_comment] = STATE(150), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5556), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_typeof] = ACTIONS(1139), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1151), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_undefined] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1157), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1163), - [anon_sym_number] = ACTIONS(1163), - [anon_sym_boolean] = ACTIONS(1163), - [anon_sym_string] = ACTIONS(1163), - [anon_sym_symbol] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(1163), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(151), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [147] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(147), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53983,12 +53374,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -53997,21 +53388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -54030,105 +53421,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1097), [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(152), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [148] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(148), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54137,12 +53528,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -54151,443 +53542,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(153), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1165), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), + [149] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7050), + [sym_string] = STATE(2921), + [sym_comment] = STATE(149), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5595), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_typeof] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1145), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1149), + [sym_number] = ACTIONS(1151), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1153), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), + [sym_undefined] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(1161), + [anon_sym_private] = ACTIONS(1161), + [anon_sym_protected] = ACTIONS(1161), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(1165), + [anon_sym_number] = ACTIONS(1165), + [anon_sym_boolean] = ACTIONS(1165), + [anon_sym_string] = ACTIONS(1165), + [anon_sym_symbol] = ACTIONS(1165), + [anon_sym_object] = ACTIONS(1165), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(154), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5446), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), + [150] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7305), + [sym_string] = STATE(2921), + [sym_comment] = STATE(150), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5638), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_typeof] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1145), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1169), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1149), + [sym_number] = ACTIONS(1151), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1153), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), + [sym_undefined] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(1161), + [anon_sym_private] = ACTIONS(1161), + [anon_sym_protected] = ACTIONS(1161), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(1165), + [anon_sym_number] = ACTIONS(1165), + [anon_sym_boolean] = ACTIONS(1165), + [anon_sym_string] = ACTIONS(1165), + [anon_sym_symbol] = ACTIONS(1165), + [anon_sym_object] = ACTIONS(1165), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(155), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), + [151] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54596,12 +53989,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -54610,27 +54003,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), [anon_sym_get] = ACTIONS(1097), [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(1097), [anon_sym_public] = ACTIONS(1097), [anon_sym_private] = ACTIONS(1097), @@ -54644,103 +54037,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1097), [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [152] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54749,12 +54144,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -54763,137 +54158,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [153] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7050), + [sym_string] = STATE(2921), + [sym_comment] = STATE(153), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5638), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_typeof] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(980), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1149), + [sym_number] = ACTIONS(1151), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1153), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), + [sym_undefined] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1159), [anon_sym_get] = ACTIONS(958), [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(196), [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_public] = ACTIONS(1161), + [anon_sym_private] = ACTIONS(1161), + [anon_sym_protected] = ACTIONS(1161), + [anon_sym_override] = ACTIONS(1163), [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_any] = ACTIONS(1165), + [anon_sym_number] = ACTIONS(1165), + [anon_sym_boolean] = ACTIONS(1165), + [anon_sym_string] = ACTIONS(1165), + [anon_sym_symbol] = ACTIONS(1165), + [anon_sym_object] = ACTIONS(1165), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(157), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [154] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(154), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54902,12 +54450,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -54916,290 +54464,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [158] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5462), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1169), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [155] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55208,12 +54603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55222,137 +54617,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1181), - [anon_sym_export] = ACTIONS(1183), + [156] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55361,12 +54756,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55375,137 +54770,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_readonly] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(161), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [157] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5638), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [158] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1187), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55514,12 +55062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55528,137 +55076,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [159] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55667,12 +55215,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55681,137 +55229,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(163), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [160] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1187), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55820,12 +55368,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55834,137 +55382,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(164), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [161] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(161), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55973,12 +55521,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -55987,443 +55535,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(165), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5556), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), + [162] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5457), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1169), + [anon_sym_readonly] = ACTIONS(1173), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(166), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5602), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), + [163] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5595), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1169), + [anon_sym_readonly] = ACTIONS(1173), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(167), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1181), - [anon_sym_export] = ACTIONS(1183), + [164] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(164), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [165] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(165), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1191), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56432,12 +56133,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -56446,137 +56147,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_readonly] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), - [sym_comment] = STATE(168), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [166] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1189), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [167] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(167), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56585,12 +56439,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -56599,137 +56453,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), + [sym_comment] = STATE(168), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5465), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(169), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(5119), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym__type] = STATE(5416), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(192), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(198), + [anon_sym_number] = ACTIONS(198), + [anon_sym_boolean] = ACTIONS(198), + [anon_sym_string] = ACTIONS(198), + [anon_sym_symbol] = ACTIONS(198), + [anon_sym_object] = ACTIONS(198), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [170] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56738,12 +56898,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -56752,290 +56912,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [170] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), - [sym_comment] = STATE(170), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4958), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym__type] = STATE(5471), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1169), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), [sym_comment] = STATE(171), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(1203), [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(981), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57044,12 +57051,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57058,137 +57065,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [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(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_get] = ACTIONS(1012), + [anon_sym_set] = ACTIONS(1012), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_override] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_any] = ACTIONS(1012), + [anon_sym_number] = ACTIONS(1012), + [anon_sym_boolean] = ACTIONS(1012), + [anon_sym_string] = ACTIONS(1012), + [anon_sym_symbol] = ACTIONS(1012), + [anon_sym_object] = ACTIONS(1012), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(172), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57197,12 +57204,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57211,136 +57218,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(173), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57349,12 +57356,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57363,136 +57370,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(174), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57501,12 +57508,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57515,134 +57522,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(175), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1228), - [anon_sym_export] = ACTIONS(1230), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1240), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57651,12 +57659,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57665,136 +57673,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_declare] = ACTIONS(1230), - [anon_sym_public] = ACTIONS(1230), - [anon_sym_private] = ACTIONS(1230), - [anon_sym_protected] = ACTIONS(1230), - [anon_sym_override] = ACTIONS(1230), - [anon_sym_module] = ACTIONS(1230), - [anon_sym_any] = ACTIONS(1230), - [anon_sym_number] = ACTIONS(1230), - [anon_sym_boolean] = ACTIONS(1230), - [anon_sym_string] = ACTIONS(1230), - [anon_sym_symbol] = ACTIONS(1230), - [anon_sym_object] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(176), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5327), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6762), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57803,12 +57810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57817,135 +57824,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [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_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(177), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1242), - [anon_sym_export] = ACTIONS(1244), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57954,12 +57960,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -57968,134 +57974,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_readonly] = ACTIONS(1244), - [anon_sym_get] = ACTIONS(1244), - [anon_sym_set] = ACTIONS(1244), - [anon_sym_declare] = ACTIONS(1244), - [anon_sym_public] = ACTIONS(1244), - [anon_sym_private] = ACTIONS(1244), - [anon_sym_protected] = ACTIONS(1244), - [anon_sym_override] = ACTIONS(1244), - [anon_sym_module] = ACTIONS(1244), - [anon_sym_any] = ACTIONS(1244), - [anon_sym_number] = ACTIONS(1244), - [anon_sym_boolean] = ACTIONS(1244), - [anon_sym_string] = ACTIONS(1244), - [anon_sym_symbol] = ACTIONS(1244), - [anon_sym_object] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(178), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(1258), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58104,12 +58112,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58118,136 +58126,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_readonly] = ACTIONS(1258), - [anon_sym_get] = ACTIONS(1258), - [anon_sym_set] = ACTIONS(1258), - [anon_sym_declare] = ACTIONS(1258), - [anon_sym_public] = ACTIONS(1258), - [anon_sym_private] = ACTIONS(1258), - [anon_sym_protected] = ACTIONS(1258), - [anon_sym_override] = ACTIONS(1258), - [anon_sym_module] = ACTIONS(1258), - [anon_sym_any] = ACTIONS(1258), - [anon_sym_number] = ACTIONS(1258), - [anon_sym_boolean] = ACTIONS(1258), - [anon_sym_string] = ACTIONS(1258), - [anon_sym_symbol] = ACTIONS(1258), - [anon_sym_object] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(179), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1236), + [anon_sym_export] = ACTIONS(1238), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1246), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58256,12 +58262,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1248), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58270,135 +58276,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [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(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(180), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1252), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58407,12 +58414,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58421,134 +58428,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_readonly] = ACTIONS(1252), + [anon_sym_get] = ACTIONS(1252), + [anon_sym_set] = ACTIONS(1252), + [anon_sym_declare] = ACTIONS(1252), + [anon_sym_public] = ACTIONS(1252), + [anon_sym_private] = ACTIONS(1252), + [anon_sym_protected] = ACTIONS(1252), + [anon_sym_override] = ACTIONS(1252), + [anon_sym_module] = ACTIONS(1252), + [anon_sym_any] = ACTIONS(1252), + [anon_sym_number] = ACTIONS(1252), + [anon_sym_boolean] = ACTIONS(1252), + [anon_sym_string] = ACTIONS(1252), + [anon_sym_symbol] = ACTIONS(1252), + [anon_sym_object] = ACTIONS(1252), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(181), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5332), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6768), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58557,12 +58565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58571,21 +58579,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -58604,102 +58612,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1097), [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(182), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(1258), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1236), + [anon_sym_export] = ACTIONS(1238), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1246), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58708,12 +58715,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1248), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58722,136 +58729,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_readonly] = ACTIONS(1258), - [anon_sym_get] = ACTIONS(1258), - [anon_sym_set] = ACTIONS(1258), - [anon_sym_declare] = ACTIONS(1258), - [anon_sym_public] = ACTIONS(1258), - [anon_sym_private] = ACTIONS(1258), - [anon_sym_protected] = ACTIONS(1258), - [anon_sym_override] = ACTIONS(1258), - [anon_sym_module] = ACTIONS(1258), - [anon_sym_any] = ACTIONS(1258), - [anon_sym_number] = ACTIONS(1258), - [anon_sym_boolean] = ACTIONS(1258), - [anon_sym_string] = ACTIONS(1258), - [anon_sym_symbol] = ACTIONS(1258), - [anon_sym_object] = ACTIONS(1258), + [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(118), [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), [sym_comment] = STATE(183), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1262), + [anon_sym_export] = ACTIONS(1264), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58860,12 +58866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -58874,134 +58880,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_readonly] = ACTIONS(1264), + [anon_sym_get] = ACTIONS(1264), + [anon_sym_set] = ACTIONS(1264), + [anon_sym_declare] = ACTIONS(1264), + [anon_sym_public] = ACTIONS(1264), + [anon_sym_private] = ACTIONS(1264), + [anon_sym_protected] = ACTIONS(1264), + [anon_sym_override] = ACTIONS(1264), + [anon_sym_module] = ACTIONS(1264), + [anon_sym_any] = ACTIONS(1264), + [anon_sym_number] = ACTIONS(1264), + [anon_sym_boolean] = ACTIONS(1264), + [anon_sym_string] = ACTIONS(1264), + [anon_sym_symbol] = ACTIONS(1264), + [anon_sym_object] = ACTIONS(1264), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(184), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59010,12 +59017,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59024,136 +59031,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59162,12 +59169,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59176,135 +59183,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(186), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1242), - [anon_sym_export] = ACTIONS(1244), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1252), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59313,12 +59320,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59327,134 +59334,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_readonly] = ACTIONS(1244), - [anon_sym_get] = ACTIONS(1244), - [anon_sym_set] = ACTIONS(1244), - [anon_sym_declare] = ACTIONS(1244), - [anon_sym_public] = ACTIONS(1244), - [anon_sym_private] = ACTIONS(1244), - [anon_sym_protected] = ACTIONS(1244), - [anon_sym_override] = ACTIONS(1244), - [anon_sym_module] = ACTIONS(1244), - [anon_sym_any] = ACTIONS(1244), - [anon_sym_number] = ACTIONS(1244), - [anon_sym_boolean] = ACTIONS(1244), - [anon_sym_string] = ACTIONS(1244), - [anon_sym_symbol] = ACTIONS(1244), - [anon_sym_object] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_readonly] = ACTIONS(1252), + [anon_sym_get] = ACTIONS(1252), + [anon_sym_set] = ACTIONS(1252), + [anon_sym_declare] = ACTIONS(1252), + [anon_sym_public] = ACTIONS(1252), + [anon_sym_private] = ACTIONS(1252), + [anon_sym_protected] = ACTIONS(1252), + [anon_sym_override] = ACTIONS(1252), + [anon_sym_module] = ACTIONS(1252), + [anon_sym_any] = ACTIONS(1252), + [anon_sym_number] = ACTIONS(1252), + [anon_sym_boolean] = ACTIONS(1252), + [anon_sym_string] = ACTIONS(1252), + [anon_sym_symbol] = ACTIONS(1252), + [anon_sym_object] = ACTIONS(1252), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(1996), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2401), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1996), - [sym_subscript_expression] = STATE(1996), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2924), [sym_comment] = STATE(187), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1996), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1228), - [anon_sym_export] = ACTIONS(1230), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2014), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1262), + [anon_sym_export] = ACTIONS(1264), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_namespace] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_function] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1240), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59463,12 +59470,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59477,135 +59484,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(985), + [sym_undefined] = ACTIONS(1039), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_declare] = ACTIONS(1230), - [anon_sym_public] = ACTIONS(1230), - [anon_sym_private] = ACTIONS(1230), - [anon_sym_protected] = ACTIONS(1230), - [anon_sym_override] = ACTIONS(1230), - [anon_sym_module] = ACTIONS(1230), - [anon_sym_any] = ACTIONS(1230), - [anon_sym_number] = ACTIONS(1230), - [anon_sym_boolean] = ACTIONS(1230), - [anon_sym_string] = ACTIONS(1230), - [anon_sym_symbol] = ACTIONS(1230), - [anon_sym_object] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_readonly] = ACTIONS(1264), + [anon_sym_get] = ACTIONS(1264), + [anon_sym_set] = ACTIONS(1264), + [anon_sym_declare] = ACTIONS(1264), + [anon_sym_public] = ACTIONS(1264), + [anon_sym_private] = ACTIONS(1264), + [anon_sym_protected] = ACTIONS(1264), + [anon_sym_override] = ACTIONS(1264), + [anon_sym_module] = ACTIONS(1264), + [anon_sym_any] = ACTIONS(1264), + [anon_sym_number] = ACTIONS(1264), + [anon_sym_boolean] = ACTIONS(1264), + [anon_sym_string] = ACTIONS(1264), + [anon_sym_symbol] = ACTIONS(1264), + [anon_sym_object] = ACTIONS(1264), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(188), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(1203), [anon_sym_of] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59614,12 +59621,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59628,134 +59635,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(189), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1276), + [anon_sym_export] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1288), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59764,12 +59771,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59778,134 +59785,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_get] = ACTIONS(1278), + [anon_sym_set] = ACTIONS(1278), + [anon_sym_declare] = ACTIONS(1278), + [anon_sym_public] = ACTIONS(1278), + [anon_sym_private] = ACTIONS(1278), + [anon_sym_protected] = ACTIONS(1278), + [anon_sym_override] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_any] = ACTIONS(1278), + [anon_sym_number] = ACTIONS(1278), + [anon_sym_boolean] = ACTIONS(1278), + [anon_sym_string] = ACTIONS(1278), + [anon_sym_symbol] = ACTIONS(1278), + [anon_sym_object] = ACTIONS(1278), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(190), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59914,12 +59921,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -59928,134 +59935,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_readonly] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_override] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [anon_sym_object] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(191), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60064,12 +60071,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60078,89 +60085,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(192), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1276), [anon_sym_export] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(118), @@ -60168,44 +60175,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1284), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1288), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60214,12 +60221,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60228,21 +60235,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1278), [anon_sym_readonly] = ACTIONS(1278), @@ -60261,101 +60268,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1278), [anon_sym_object] = ACTIONS(1278), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(193), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60364,12 +60371,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60378,134 +60385,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(194), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1208), + [anon_sym_export] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60514,12 +60521,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60528,134 +60535,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_object] = ACTIONS(1210), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(195), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60664,12 +60671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60678,133 +60685,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(196), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1119), [anon_sym_EQ] = ACTIONS(1292), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60813,12 +60820,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60827,133 +60834,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(197), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1119), [anon_sym_EQ] = ACTIONS(1294), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60962,12 +60969,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -60976,282 +60983,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(4142), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6802), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7025), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2697), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(198), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5245), - [sym_pattern] = STATE(6098), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3882), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4322), - [sym__type] = STATE(4035), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6740), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1296), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_typeof] = ACTIONS(1302), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1310), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1320), - [sym_number] = ACTIONS(1322), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1324), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [sym_undefined] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1328), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [199] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(199), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61260,12 +61118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -61274,133 +61132,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(200), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [199] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(199), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1296), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61409,12 +61267,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -61423,133 +61281,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(201), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [200] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4928), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6700), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61558,12 +61416,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -61572,133 +61430,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(202), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [201] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(201), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1298), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61707,12 +61565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -61721,133 +61579,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(203), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [202] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(202), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1300), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61856,12 +61714,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -61870,133 +61728,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [203] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1302), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -62005,12 +61863,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -62019,133 +61877,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [204] = { + [sym_import] = STATE(4293), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2825), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6873), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7060), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2710), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5250), + [sym_pattern] = STATE(5956), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3857), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4329), + [sym__type] = STATE(4036), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6746), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(1326), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1328), + [sym_number] = ACTIONS(1330), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1332), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [sym_null] = ACTIONS(1330), + [sym_undefined] = ACTIONS(1334), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(1338), + [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(1340), + [anon_sym_number] = ACTIONS(1340), + [anon_sym_boolean] = ACTIONS(1340), + [anon_sym_string] = ACTIONS(1340), + [anon_sym_symbol] = ACTIONS(1340), + [anon_sym_object] = ACTIONS(1340), + [anon_sym_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(205), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1354), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -62154,12 +62161,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -62168,133 +62175,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(206), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1356), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -62303,12 +62310,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -62317,133 +62324,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2205), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2208), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(207), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(5172), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6565), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1358), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -62452,12 +62459,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -62466,116 +62473,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(4127), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2572), + [sym_import] = STATE(4187), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2428), [sym_comment] = STATE(208), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1360), [anon_sym_export] = ACTIONS(1362), [anon_sym_STAR] = ACTIONS(113), @@ -62583,1446 +62590,1446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1366), [anon_sym_typeof] = ACTIONS(1368), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1370), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1390), - [sym_number] = ACTIONS(1392), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(1396), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_undefined] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_using] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1378), + [sym_number] = ACTIONS(1380), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [sym_undefined] = ACTIONS(1384), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1400), + [anon_sym_readonly] = ACTIONS(1386), [anon_sym_get] = ACTIONS(1362), [anon_sym_set] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(1362), [anon_sym_public] = ACTIONS(1362), [anon_sym_private] = ACTIONS(1362), [anon_sym_protected] = ACTIONS(1362), [anon_sym_override] = ACTIONS(1362), [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_number] = ACTIONS(1402), - [anon_sym_boolean] = ACTIONS(1402), - [anon_sym_string] = ACTIONS(1402), - [anon_sym_symbol] = ACTIONS(1402), - [anon_sym_object] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_any] = ACTIONS(1388), + [anon_sym_number] = ACTIONS(1388), + [anon_sym_boolean] = ACTIONS(1388), + [anon_sym_string] = ACTIONS(1388), + [anon_sym_symbol] = ACTIONS(1388), + [anon_sym_object] = ACTIONS(1388), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(4163), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2682), + [sym_import] = STATE(4105), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2826), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2800), [sym_comment] = STATE(209), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4752), - [sym__type_query_call_expression_in_type_annotation] = STATE(5480), - [sym__type] = STATE(4750), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1404), - [anon_sym_export] = ACTIONS(1406), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1390), + [anon_sym_export] = ACTIONS(1392), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_typeof] = ACTIONS(1412), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_typeof] = ACTIONS(1398), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1406), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1424), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1426), - [sym_number] = ACTIONS(1428), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1430), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [sym_null] = ACTIONS(1428), - [sym_undefined] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1410), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1420), + [sym_number] = ACTIONS(1422), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [sym_null] = ACTIONS(1422), + [sym_undefined] = ACTIONS(1428), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1434), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_number] = ACTIONS(1436), - [anon_sym_boolean] = ACTIONS(1436), - [anon_sym_string] = ACTIONS(1436), - [anon_sym_symbol] = ACTIONS(1436), - [anon_sym_object] = ACTIONS(1436), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1430), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_object] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(4251), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3214), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2877), + [sym_import] = STATE(4105), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2800), [sym_comment] = STATE(210), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1434), + [anon_sym_export] = ACTIONS(1436), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_typeof] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1406), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_number] = ACTIONS(1452), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1454), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [sym_null] = ACTIONS(1452), - [sym_undefined] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1450), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1456), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1420), + [sym_number] = ACTIONS(1422), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [sym_null] = ACTIONS(1422), + [sym_undefined] = ACTIONS(1462), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1458), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_number] = ACTIONS(1460), - [anon_sym_boolean] = ACTIONS(1460), - [anon_sym_string] = ACTIONS(1460), - [anon_sym_symbol] = ACTIONS(1460), - [anon_sym_object] = ACTIONS(1460), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1466), + [anon_sym_number] = ACTIONS(1466), + [anon_sym_boolean] = ACTIONS(1466), + [anon_sym_string] = ACTIONS(1466), + [anon_sym_symbol] = ACTIONS(1466), + [anon_sym_object] = ACTIONS(1466), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(4163), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2682), + [sym_import] = STATE(4105), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2800), [sym_comment] = STATE(211), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4752), - [sym__type_query_call_expression_in_type_annotation] = STATE(5480), - [sym__type] = STATE(4750), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1464), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_typeof] = ACTIONS(1468), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_typeof] = ACTIONS(1472), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1406), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1426), - [sym_number] = ACTIONS(1428), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(1430), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [sym_null] = ACTIONS(1428), - [sym_undefined] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1420), + [sym_number] = ACTIONS(1422), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [sym_null] = ACTIONS(1422), + [sym_undefined] = ACTIONS(1478), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1492), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1494), - [anon_sym_number] = ACTIONS(1494), - [anon_sym_boolean] = ACTIONS(1494), - [anon_sym_string] = ACTIONS(1494), - [anon_sym_symbol] = ACTIONS(1494), - [anon_sym_object] = ACTIONS(1494), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1482), + [anon_sym_number] = ACTIONS(1482), + [anon_sym_boolean] = ACTIONS(1482), + [anon_sym_string] = ACTIONS(1482), + [anon_sym_symbol] = ACTIONS(1482), + [anon_sym_object] = ACTIONS(1482), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(4251), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2877), + [sym_import] = STATE(4236), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2863), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(3189), [sym_comment] = STATE(212), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1496), - [anon_sym_export] = ACTIONS(1498), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4699), + [sym__type_query_call_expression_in_type_annotation] = STATE(5467), + [sym__type] = STATE(4698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1484), + [anon_sym_export] = ACTIONS(1486), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_typeof] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1492), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_number] = ACTIONS(1452), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(1454), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [sym_null] = ACTIONS(1452), - [sym_undefined] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1512), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1516), + [sym_number] = ACTIONS(1518), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(1522), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_null] = ACTIONS(1518), + [sym_undefined] = ACTIONS(1524), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1530), - [anon_sym_number] = ACTIONS(1530), - [anon_sym_boolean] = ACTIONS(1530), - [anon_sym_string] = ACTIONS(1530), - [anon_sym_symbol] = ACTIONS(1530), - [anon_sym_object] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1528), + [anon_sym_number] = ACTIONS(1528), + [anon_sym_boolean] = ACTIONS(1528), + [anon_sym_string] = ACTIONS(1528), + [anon_sym_symbol] = ACTIONS(1528), + [anon_sym_object] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(4251), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2877), + [sym_import] = STATE(4104), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2860), [sym_comment] = STATE(213), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1532), - [anon_sym_export] = ACTIONS(1534), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4699), + [sym__type_query_call_expression_in_type_annotation] = STATE(5467), + [sym__type] = STATE(4698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), [anon_sym_typeof] = ACTIONS(1538), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1540), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1554), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_number] = ACTIONS(1452), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(1454), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [sym_null] = ACTIONS(1452), - [sym_undefined] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1550), + [sym_number] = ACTIONS(1552), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1554), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [sym_null] = ACTIONS(1552), + [sym_undefined] = ACTIONS(1556), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), - [anon_sym_object] = ACTIONS(1564), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1560), + [anon_sym_number] = ACTIONS(1560), + [anon_sym_boolean] = ACTIONS(1560), + [anon_sym_string] = ACTIONS(1560), + [anon_sym_symbol] = ACTIONS(1560), + [anon_sym_object] = ACTIONS(1560), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(4251), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2877), + [sym_import] = STATE(4104), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2860), [sym_comment] = STATE(214), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1566), - [anon_sym_export] = ACTIONS(1568), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4699), + [sym__type_query_call_expression_in_type_annotation] = STATE(5467), + [sym__type] = STATE(4698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1564), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_typeof] = ACTIONS(1572), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1540), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1582), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_number] = ACTIONS(1452), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(1454), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [sym_null] = ACTIONS(1452), - [sym_undefined] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1578), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1584), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1550), + [sym_number] = ACTIONS(1552), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(1554), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [sym_null] = ACTIONS(1552), + [sym_undefined] = ACTIONS(1590), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1598), - [anon_sym_number] = ACTIONS(1598), - [anon_sym_boolean] = ACTIONS(1598), - [anon_sym_string] = ACTIONS(1598), - [anon_sym_symbol] = ACTIONS(1598), - [anon_sym_object] = ACTIONS(1598), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1594), + [anon_sym_number] = ACTIONS(1594), + [anon_sym_boolean] = ACTIONS(1594), + [anon_sym_string] = ACTIONS(1594), + [anon_sym_symbol] = ACTIONS(1594), + [anon_sym_object] = ACTIONS(1594), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4179), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(3245), + [sym_import] = STATE(4105), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2800), [sym_comment] = STATE(215), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4752), - [sym__type_query_call_expression_in_type_annotation] = STATE(5480), - [sym__type] = STATE(4750), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1600), - [anon_sym_export] = ACTIONS(1602), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_typeof] = ACTIONS(1608), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1406), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1626), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1632), - [sym_false] = ACTIONS(1632), - [sym_null] = ACTIONS(1632), - [sym_undefined] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1612), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1618), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1420), + [sym_number] = ACTIONS(1422), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [sym_null] = ACTIONS(1422), + [sym_undefined] = ACTIONS(1624), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1640), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1642), - [anon_sym_number] = ACTIONS(1642), - [anon_sym_boolean] = ACTIONS(1642), - [anon_sym_string] = ACTIONS(1642), - [anon_sym_symbol] = ACTIONS(1642), - [anon_sym_object] = ACTIONS(1642), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1626), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1628), + [anon_sym_number] = ACTIONS(1628), + [anon_sym_boolean] = ACTIONS(1628), + [anon_sym_string] = ACTIONS(1628), + [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_object] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4127), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2572), + [sym_import] = STATE(4187), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2428), [sym_comment] = STATE(216), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1644), - [anon_sym_export] = ACTIONS(1646), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(1632), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_typeof] = ACTIONS(1650), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_typeof] = ACTIONS(1636), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1370), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1654), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1390), - [sym_number] = ACTIONS(1392), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1396), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1646), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1378), + [sym_number] = ACTIONS(1380), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(1382), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), [sym_undefined] = ACTIONS(1658), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), [anon_sym_any] = ACTIONS(1662), [anon_sym_number] = ACTIONS(1662), [anon_sym_boolean] = ACTIONS(1662), [anon_sym_string] = ACTIONS(1662), [anon_sym_symbol] = ACTIONS(1662), [anon_sym_object] = ACTIONS(1662), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7051), - [sym_string] = STATE(3050), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7033), + [sym_string] = STATE(2921), [sym_comment] = STATE(217), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(6165), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(5388), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(5427), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(6027), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(5083), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(5537), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1664), - [anon_sym_export] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1362), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1139), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1654), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_private_property_identifier] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_using] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1149), + [sym_number] = ACTIONS(1151), + [sym_private_property_identifier] = ACTIONS(994), [sym_this] = ACTIONS(1670), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), [sym_undefined] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(196), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), [anon_sym_any] = ACTIONS(1674), [anon_sym_number] = ACTIONS(1674), [anon_sym_boolean] = ACTIONS(1674), [anon_sym_string] = ACTIONS(1674), [anon_sym_symbol] = ACTIONS(1674), [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4563), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3290), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2113), + [sym_subscript_expression] = STATE(2113), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4592), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3293), [sym_comment] = STATE(218), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5386), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2113), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5075), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1676), [anon_sym_export] = ACTIONS(1678), [anon_sym_STAR] = ACTIONS(113), @@ -64030,39 +64037,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1680), [anon_sym_LBRACE] = ACTIONS(1682), [anon_sym_typeof] = ACTIONS(1684), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1686), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1690), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1692), [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1694), [sym_number] = ACTIONS(1696), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1698), - [sym_super] = ACTIONS(189), + [sym_super] = ACTIONS(190), [sym_true] = ACTIONS(1696), [sym_false] = ACTIONS(1696), [sym_null] = ACTIONS(1696), @@ -64072,7 +64079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1702), [anon_sym_get] = ACTIONS(1678), [anon_sym_set] = ACTIONS(1678), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(1678), [anon_sym_public] = ACTIONS(1678), [anon_sym_private] = ACTIONS(1678), @@ -64085,137 +64092,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1704), [anon_sym_symbol] = ACTIONS(1704), [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_nested_identifier] = STATE(7011), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2031), - [sym_subscript_expression] = STATE(2031), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4987), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(3180), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_nested_identifier] = STATE(7019), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5056), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2932), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4958), - [sym_non_null_expression] = STATE(2031), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5386), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6856), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(5119), + [sym_non_null_expression] = STATE(2044), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5075), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6951), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1706), [anon_sym_export] = ACTIONS(1708), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(1708), [anon_sym_namespace] = ACTIONS(1710), [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1716), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_using] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(990), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(182), + [sym_number] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1718), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1708), [anon_sym_readonly] = ACTIONS(1720), [anon_sym_get] = ACTIONS(1708), [anon_sym_set] = ACTIONS(1708), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(196), [anon_sym_declare] = ACTIONS(1708), [anon_sym_public] = ACTIONS(1708), [anon_sym_private] = ACTIONS(1708), @@ -64228,94 +64235,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1722), [anon_sym_symbol] = ACTIONS(1722), [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(220), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1362), [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1362), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(1728), [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_await] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(970), [anon_sym_in] = ACTIONS(1728), [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_RBRACK] = ACTIONS(1728), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_using] = ACTIONS(982), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64324,12 +64331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -64338,101 +64345,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2571), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(221), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1532), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(1728), [anon_sym_RBRACE] = ACTIONS(1728), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -64445,9 +64452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), @@ -64489,104 +64496,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [anon_sym_satisfies] = ACTIONS(1728), [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(222), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), + [anon_sym_export] = ACTIONS(1564), [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1564), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), + [anon_sym_await] = ACTIONS(1572), [anon_sym_in] = ACTIONS(1728), [anon_sym_of] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), + [anon_sym_using] = ACTIONS(1580), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64595,8 +64602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), @@ -64609,15 +64616,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -64625,102 +64632,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [anon_sym_satisfies] = ACTIONS(1728), [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(223), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(1392), [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1392), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), + [anon_sym_using] = ACTIONS(1412), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64729,12 +64737,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -64743,119 +64751,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [anon_sym_satisfies] = ACTIONS(1728), - [anon_sym_implements] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2878), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(224), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1486), [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1486), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), [anon_sym_in] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), + [anon_sym_using] = ACTIONS(1508), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64864,12 +64870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(83), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -64878,117 +64884,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [anon_sym_satisfies] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2912), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2663), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), + [anon_sym_export] = ACTIONS(1632), [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1632), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), [anon_sym_in] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), + [anon_sym_using] = ACTIONS(1648), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64997,12 +65004,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65011,118 +65018,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [anon_sym_satisfies] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1734), + [anon_sym_implements] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3101), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1436), [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1436), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), [anon_sym_in] = ACTIONS(1728), - [anon_sym_of] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(1728), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), + [anon_sym_using] = ACTIONS(1452), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65131,12 +65138,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65145,117 +65152,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3100), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(227), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1598), [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1598), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_of] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1728), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), + [anon_sym_using] = ACTIONS(1614), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65264,12 +65271,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65278,116 +65285,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3189), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(228), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_type] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1119), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65396,12 +65403,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(173), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65410,1581 +65417,1581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_declaration] = STATE(1198), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2882), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1343), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(229), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5399), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), [anon_sym_type] = ACTIONS(1792), [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(778), + [anon_sym_var] = ACTIONS(502), [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), + [anon_sym_class] = ACTIONS(532), [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_declaration] = STATE(1165), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(6668), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2918), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(230), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4955), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4921), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1810), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(1814), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1816), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_declaration] = STATE(1275), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2895), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1444), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1444), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1444), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1461), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(231), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1444), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(397), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4931), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4852), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_namespace] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_declaration] = STATE(1527), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2835), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(980), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2688), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(232), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_namespace] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4916), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1836), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1830), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1842), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_declaration] = STATE(5132), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(5171), - [sym_lexical_declaration] = STATE(5171), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(5171), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(5171), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(5171), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(5363), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(5246), + [sym_lexical_declaration] = STATE(5246), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(5246), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(5246), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(5246), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(233), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(5171), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(5171), - [sym_abstract_class_declaration] = STATE(5171), - [sym_module] = STATE(5171), - [sym_internal_module] = STATE(3040), - [sym_import_alias] = STATE(5171), - [sym_interface_declaration] = STATE(5171), - [sym_enum_declaration] = STATE(5171), - [sym_type_alias_declaration] = STATE(5171), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(5246), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(5246), + [sym_abstract_class_declaration] = STATE(5246), + [sym_module] = STATE(5246), + [sym_internal_module] = STATE(3066), + [sym_import_alias] = STATE(5246), + [sym_interface_declaration] = STATE(5246), + [sym_enum_declaration] = STATE(5246), + [sym_type_alias_declaration] = STATE(5246), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5223), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1848), + [anon_sym_var] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_function] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1850), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1870), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_declaration] = STATE(1081), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1277), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2898), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(234), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5380), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_namespace] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1864), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5053), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1876), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1870), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_declaration] = STATE(6551), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2782), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1355), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2843), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1216), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1216), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1216), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(235), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5069), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1874), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1216), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(365), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5053), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(906), + [anon_sym_var] = ACTIONS(778), [anon_sym_let] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), + [anon_sym_class] = ACTIONS(808), [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_declaration] = STATE(6462), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2828), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(6360), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(6360), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(6360), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(5262), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(5246), + [sym_lexical_declaration] = STATE(5246), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2793), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(5246), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(5246), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(5246), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(236), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(6360), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(3162), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5069), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1874), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(5246), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(5246), + [sym_abstract_class_declaration] = STATE(5246), + [sym_module] = STATE(5246), + [sym_internal_module] = STATE(3066), + [sym_import_alias] = STATE(5246), + [sym_interface_declaration] = STATE(5246), + [sym_enum_declaration] = STATE(5246), + [sym_type_alias_declaration] = STATE(5246), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5223), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1848), + [anon_sym_var] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1870), [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(1559), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1558), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1558), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1558), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(6883), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2809), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(6924), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(6924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(237), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1558), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(429), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_namespace] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(6924), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(3018), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4921), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1830), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1816), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(5070), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(5171), - [sym_lexical_declaration] = STATE(5171), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2824), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(5171), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(5171), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(5171), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1417), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1340), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1340), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1340), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(238), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(5171), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(5171), - [sym_abstract_class_declaration] = STATE(5171), - [sym_module] = STATE(5171), - [sym_internal_module] = STATE(3040), - [sym_import_alias] = STATE(5171), - [sym_interface_declaration] = STATE(5171), - [sym_enum_declaration] = STATE(5171), - [sym_type_alias_declaration] = STATE(5171), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1340), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5399), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1796), + [anon_sym_var] = ACTIONS(502), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_function] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(532), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_function] = ACTIONS(536), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1850), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1804), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(550), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1279), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1327), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1327), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1327), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(1458), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2896), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1527), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1527), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1527), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(239), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1327), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(413), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(4955), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1810), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(1610), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1527), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(444), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4852), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_namespace] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(1814), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(990), - [sym_import] = STATE(4290), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_class_declaration] = STATE(1100), - [sym_function_expression] = STATE(2940), - [sym_function_declaration] = STATE(1100), - [sym_generator_function] = STATE(2940), - [sym_generator_function_declaration] = STATE(1100), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), + [sym_declaration] = STATE(970), + [sym_import] = STATE(4218), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2685), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_class_declaration] = STATE(1157), + [sym_function_expression] = STATE(2924), + [sym_function_declaration] = STATE(1157), + [sym_generator_function] = STATE(2924), + [sym_generator_function_declaration] = STATE(1157), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(240), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_function_signature] = STATE(1100), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_function_signature] = STATE(1157), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5380), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_namespace] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(1864), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1610), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(4916), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(1836), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1870), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1842), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(241), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_RPAREN] = ACTIONS(118), @@ -66996,32 +67003,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67036,7 +67043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67048,98 +67055,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(242), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67154,7 +67161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67166,99 +67173,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(243), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67273,7 +67280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67285,99 +67292,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(244), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67392,7 +67399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67404,68 +67411,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(245), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(217), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(217), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(217), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), @@ -67473,29 +67480,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67510,7 +67517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67522,331 +67529,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7050), + [sym_string] = STATE(2541), [sym_comment] = STATE(246), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3967), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1916), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(1161), + [anon_sym_private] = ACTIONS(1161), + [anon_sym_protected] = ACTIONS(1161), + [anon_sym_override] = ACTIONS(1163), + [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), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7288), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7305), + [sym_string] = STATE(2541), [sym_comment] = STATE(247), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(1916), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(1161), + [anon_sym_private] = ACTIONS(1161), + [anon_sym_protected] = ACTIONS(1161), + [anon_sym_override] = ACTIONS(1163), + [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), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(248), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67861,7 +67867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67873,97 +67879,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(249), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -67978,7 +67984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67990,213 +67996,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7121), - [sym_string] = STATE(2547), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(250), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(991), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4001), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -68211,7 +68219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -68223,97 +68231,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -68328,7 +68336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -68340,132 +68348,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5816), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(253), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68476,112 +68483,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(254), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68592,77 +68599,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(255), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1950), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1952), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [256] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6225), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(256), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1950), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1952), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(257), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -68677,7 +68916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -68689,131 +68928,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(5763), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(256), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [258] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(258), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68823,113 +69062,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6151), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(257), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [259] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(259), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68939,113 +69178,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(258), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [260] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(260), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1964), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69055,113 +69294,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(259), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [261] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5690), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(261), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69171,78 +69410,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(260), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [262] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(262), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -69257,7 +69496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -69269,247 +69508,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(261), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [262] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(262), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [263] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(5742), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(263), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69519,78 +69642,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(263), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [264] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(264), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(164), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), @@ -69605,7 +69728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -69617,821 +69740,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [264] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(264), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(265), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1970), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(208), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5693), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(266), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_RBRACK] = ACTIONS(1972), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5694), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1970), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [anon_sym_extends] = ACTIONS(1972), + [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), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(267), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1974), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [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), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym__formal_parameter] = STATE(6827), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(268), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1976), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5774), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(269), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5776), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1978), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym__formal_parameter] = STATE(6727), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(270), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5349), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(399), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(6589), - [sym_optional_parameter] = STATE(6589), - [sym__parameter_name] = STATE(4571), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(316), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4936), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(368), + [sym_override_modifier] = STATE(448), + [sym_required_parameter] = STATE(6567), + [sym_optional_parameter] = STATE(6567), + [sym__parameter_name] = STATE(4560), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), [sym_this] = ACTIONS(1950), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1157), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -70441,640 +70218,870 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [269] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(269), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1974), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(270), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1976), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, [271] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(271), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1978), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [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), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5774), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(272), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5776), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1982), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_RBRACK] = ACTIONS(1980), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [anon_sym_extends] = ACTIONS(1980), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5774), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5693), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(273), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5776), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5694), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1978), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1982), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [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), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(6155), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2650), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5693), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(274), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6156), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5694), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1984), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1970), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [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), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(6249), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(275), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6250), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1984), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym_lexical_declaration] = STATE(369), - [sym_empty_statement] = STATE(369), - [sym_parenthesized_expression] = STATE(2025), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(5947), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(420), + [sym_variable_declaration] = STATE(420), + [sym_lexical_declaration] = STATE(420), + [sym_empty_statement] = STATE(420), + [sym_parenthesized_expression] = STATE(2042), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2042), + [sym_subscript_expression] = STATE(2042), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(276), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2025), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2042), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), [anon_sym_namespace] = ACTIONS(1990), [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_var] = ACTIONS(1994), [anon_sym_let] = ACTIONS(1996), [anon_sym_const] = ACTIONS(1998), @@ -71087,9 +71094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), + [anon_sym_class] = ACTIONS(1027), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(977), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71131,99 +71138,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(5714), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2073), + [sym_subscript_expression] = STATE(2073), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(277), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_mapped_type_clause] = STATE(7185), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(2073), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_mapped_type_clause] = STATE(7145), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_pattern_repeat1] = STATE(5695), [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(2012), [anon_sym_type] = ACTIONS(2012), [anon_sym_namespace] = ACTIONS(2014), [anon_sym_LBRACE] = ACTIONS(2016), [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_RBRACK] = ACTIONS(2022), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(2024), - [anon_sym_function] = ACTIONS(151), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2026), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(2012), @@ -71245,178 +71252,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(278), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1980), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [anon_sym_extends] = ACTIONS(1972), - [anon_sym_PIPE_RBRACE] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [anon_sym_extends] = ACTIONS(1980), + [anon_sym_PIPE_RBRACE] = ACTIONS(1980), [sym__automatic_semicolon] = ACTIONS(2030), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(359), - [sym_lexical_declaration] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(2025), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(5947), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(415), + [sym_variable_declaration] = STATE(415), + [sym_lexical_declaration] = STATE(415), + [sym_empty_statement] = STATE(415), + [sym_parenthesized_expression] = STATE(2042), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2042), + [sym_subscript_expression] = STATE(2042), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(279), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2025), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2042), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), [anon_sym_namespace] = ACTIONS(1990), [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_var] = ACTIONS(1994), [anon_sym_let] = ACTIONS(1996), [anon_sym_const] = ACTIONS(1998), @@ -71429,9 +71436,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), + [anon_sym_class] = ACTIONS(1027), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(977), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71473,64 +71480,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(404), - [sym_variable_declaration] = STATE(404), - [sym_lexical_declaration] = STATE(404), - [sym_empty_statement] = STATE(404), - [sym_parenthesized_expression] = STATE(2025), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(5947), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(391), + [sym_variable_declaration] = STATE(391), + [sym_lexical_declaration] = STATE(391), + [sym_empty_statement] = STATE(391), + [sym_parenthesized_expression] = STATE(2042), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2042), + [sym_subscript_expression] = STATE(2042), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(280), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2025), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2042), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), [anon_sym_namespace] = ACTIONS(1990), [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_var] = ACTIONS(1994), [anon_sym_let] = ACTIONS(1996), [anon_sym_const] = ACTIONS(1998), @@ -71543,9 +71550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), + [anon_sym_class] = ACTIONS(1027), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(977), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71587,64 +71594,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(396), - [sym_variable_declaration] = STATE(396), - [sym_lexical_declaration] = STATE(396), - [sym_empty_statement] = STATE(396), - [sym_parenthesized_expression] = STATE(2025), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(5947), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(347), + [sym_variable_declaration] = STATE(347), + [sym_lexical_declaration] = STATE(347), + [sym_empty_statement] = STATE(347), + [sym_parenthesized_expression] = STATE(2042), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2042), + [sym_subscript_expression] = STATE(2042), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(281), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2025), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2042), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), [anon_sym_namespace] = ACTIONS(1990), [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_var] = ACTIONS(1994), [anon_sym_let] = ACTIONS(1996), [anon_sym_const] = ACTIONS(1998), @@ -71657,9 +71664,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), + [anon_sym_class] = ACTIONS(1027), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(977), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71701,64 +71708,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(392), - [sym_variable_declaration] = STATE(392), - [sym_lexical_declaration] = STATE(392), - [sym_empty_statement] = STATE(392), - [sym_parenthesized_expression] = STATE(2025), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(5947), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(362), + [sym_variable_declaration] = STATE(362), + [sym_lexical_declaration] = STATE(362), + [sym_empty_statement] = STATE(362), + [sym_parenthesized_expression] = STATE(2042), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2042), + [sym_subscript_expression] = STATE(2042), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(282), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2025), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2042), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), [anon_sym_namespace] = ACTIONS(1990), [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), + [anon_sym_import] = ACTIONS(129), [anon_sym_var] = ACTIONS(1994), [anon_sym_let] = ACTIONS(1996), [anon_sym_const] = ACTIONS(1998), @@ -71771,9 +71778,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), + [anon_sym_class] = ACTIONS(1027), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(977), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71815,98 +71822,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6967), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5794), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(283), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5795), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(2035), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2073), + [sym_subscript_expression] = STATE(2073), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5667), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(284), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(2073), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_pattern_repeat1] = STATE(5695), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_COMMA] = ACTIONS(2018), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(2022), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2028), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_readonly] = ACTIONS(2041), + [anon_sym_get] = ACTIONS(2041), + [anon_sym_set] = ACTIONS(2041), + [anon_sym_declare] = ACTIONS(2041), + [anon_sym_public] = ACTIONS(2041), + [anon_sym_private] = ACTIONS(2041), + [anon_sym_protected] = ACTIONS(2041), + [anon_sym_override] = ACTIONS(2041), + [anon_sym_module] = ACTIONS(2041), + [anon_sym_any] = ACTIONS(2041), + [anon_sym_number] = ACTIONS(2041), + [anon_sym_boolean] = ACTIONS(2041), + [anon_sym_string] = ACTIONS(2041), + [anon_sym_symbol] = ACTIONS(2041), + [anon_sym_object] = ACTIONS(2041), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(5692), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(285), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5613), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_pattern_repeat1] = STATE(5695), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_RBRACK] = ACTIONS(2022), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -71927,438 +72160,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6972), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5966), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(284), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5968), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), - [sym_html_comment] = ACTIONS(5), - }, - [285] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(2953), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(5773), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2076), - [sym_subscript_expression] = STATE(2076), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(5714), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(285), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5449), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(2076), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_pattern_repeat1] = STATE(5777), - [sym_identifier] = ACTIONS(2035), - [anon_sym_export] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2037), - [anon_sym_namespace] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(2022), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2037), - [anon_sym_readonly] = ACTIONS(2037), - [anon_sym_get] = ACTIONS(2037), - [anon_sym_set] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2037), - [anon_sym_public] = ACTIONS(2037), - [anon_sym_private] = ACTIONS(2037), - [anon_sym_protected] = ACTIONS(2037), - [anon_sym_override] = ACTIONS(2037), - [anon_sym_module] = ACTIONS(2037), - [anon_sym_any] = ACTIONS(2037), - [anon_sym_number] = ACTIONS(2037), - [anon_sym_boolean] = ACTIONS(2037), - [anon_sym_string] = ACTIONS(2037), - [anon_sym_symbol] = ACTIONS(2037), - [anon_sym_object] = ACTIONS(2037), - [sym_html_comment] = ACTIONS(5), - }, [286] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6972), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5966), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6248), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(286), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5968), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(2045), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), - [sym_html_comment] = ACTIONS(5), - }, - [287] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6153), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(287), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5566), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_pattern_repeat1] = STATE(6158), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5525), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_pattern_repeat1] = STATE(6252), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_RBRACK] = ACTIONS(2049), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -72379,324 +72273,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [287] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6967), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5794), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5795), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(2032), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, [288] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(288), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_RBRACK] = ACTIONS(1972), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_RBRACK] = ACTIONS(1980), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_extends] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [anon_sym_extends] = ACTIONS(1980), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6972), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_spread_element] = STATE(5966), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6967), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_spread_element] = STATE(5794), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(289), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5968), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5795), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_RBRACK] = ACTIONS(2051), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [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), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6972), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6967), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(290), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5968), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5795), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_RBRACK] = ACTIONS(2055), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -72718,17 +72725,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_statement_block] = STATE(321), [sym_comment] = STATE(291), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2059), [anon_sym_default] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2059), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2059), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -72743,7 +72750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(2057), [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2059), [anon_sym_while] = ACTIONS(2057), [anon_sym_do] = ACTIONS(2057), [anon_sym_try] = ACTIONS(2057), @@ -72757,38 +72764,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2059), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), [anon_sym_async] = ACTIONS(2057), [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2059), [anon_sym_new] = ACTIONS(2057), [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), [anon_sym_PLUS] = ACTIONS(2057), [anon_sym_DASH] = ACTIONS(2057), [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2059), [anon_sym_TILDE] = ACTIONS(2057), [anon_sym_void] = ACTIONS(2057), [anon_sym_delete] = ACTIONS(2057), @@ -72822,249 +72829,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2057), [anon_sym_object] = ACTIONS(2057), [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2059), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [sym__automatic_semicolon] = ACTIONS(2063), + [sym__ternary_qmark] = ACTIONS(2065), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_statement_block] = STATE(321), + [sym_statement_block] = STATE(334), [sym_comment] = STATE(292), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_statement_block] = STATE(321), + [sym_statement_block] = STATE(334), [sym_comment] = STATE(293), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [294] = { - [sym_comment] = STATE(294), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -73079,7 +72974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(2067), [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), + [anon_sym_in] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), [anon_sym_do] = ACTIONS(2067), [anon_sym_try] = ACTIONS(2067), @@ -73093,38 +72988,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2073), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_QMARK_DOT] = ACTIONS(2067), [anon_sym_new] = ACTIONS(2067), [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2067), [anon_sym_DASH] = ACTIONS(2067), [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), [anon_sym_TILDE] = ACTIONS(2067), [anon_sym_void] = ACTIONS(2067), [anon_sym_delete] = ACTIONS(2067), @@ -73158,469 +73053,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2067), [anon_sym_object] = ACTIONS(2067), [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2073), - [sym__ternary_qmark] = ACTIONS(2075), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(5667), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(295), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5668), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_comment] = STATE(296), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_case] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2087), - [sym__ternary_qmark] = ACTIONS(2089), - [sym_html_comment] = ACTIONS(5), - }, - [297] = { - [sym_statement_block] = STATE(385), - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [298] = { - [sym_statement_block] = STATE(385), - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [299] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(2095), + [294] = { + [sym_statement_block] = STATE(334), + [sym_comment] = STATE(294), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -73635,7 +73086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(2067), [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), + [anon_sym_in] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), [anon_sym_do] = ACTIONS(2067), [anon_sym_try] = ACTIONS(2067), @@ -73645,41 +73096,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2075), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_QMARK_DOT] = ACTIONS(2067), [anon_sym_new] = ACTIONS(2067), [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2067), [anon_sym_DASH] = ACTIONS(2067), [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), [anon_sym_TILDE] = ACTIONS(2067), [anon_sym_void] = ACTIONS(2067), [anon_sym_delete] = ACTIONS(2067), @@ -73713,395 +73165,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2067), [anon_sym_object] = ACTIONS(2067), [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2097), - [sym__ternary_qmark] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(6213), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(300), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6214), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [295] = { + [sym_comment] = STATE(295), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_QMARK_DOT] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2079), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_STAR_STAR] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_QMARK_QMARK] = ACTIONS(2079), + [anon_sym_instanceof] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_satisfies] = ACTIONS(2079), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2081), + [sym__ternary_qmark] = ACTIONS(2083), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(301), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [anon_sym_extends] = ACTIONS(1972), + [296] = { + [sym_comment] = STATE(296), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_case] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [sym__automatic_semicolon] = ACTIONS(2087), + [sym__ternary_qmark] = ACTIONS(2087), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(6240), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(302), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6239), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [297] = { + [sym_comment] = STATE(297), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_case] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2091), + [anon_sym_PIPE_PIPE] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_GT_GT_GT] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_satisfies] = ACTIONS(2091), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2093), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_comment] = STATE(303), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), + [298] = { + [sym_comment] = STATE(298), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_STAR_STAR] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_QMARK_QMARK] = ACTIONS(2099), + [anon_sym_instanceof] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_satisfies] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2101), + [sym__ternary_qmark] = ACTIONS(2103), + [sym_html_comment] = ACTIONS(5), + }, + [299] = { + [sym_comment] = STATE(299), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_case] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), [anon_sym_GT] = ACTIONS(2105), [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), [anon_sym_AMP_AMP] = ACTIONS(2105), [anon_sym_PIPE_PIPE] = ACTIONS(2105), [anon_sym_GT_GT] = ACTIONS(2105), @@ -74110,12 +73673,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2105), [anon_sym_CARET] = ACTIONS(2105), [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), [anon_sym_PERCENT] = ACTIONS(2105), [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2105), [anon_sym_LT_EQ] = ACTIONS(2105), [anon_sym_EQ_EQ] = ACTIONS(2105), [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), @@ -74124,391 +73687,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2105), [anon_sym_QMARK_QMARK] = ACTIONS(2105), [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, - [304] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(304), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [anon_sym_extends] = ACTIONS(1972), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(6244), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(306), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6246), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [300] = { + [sym_comment] = STATE(300), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym__ternary_qmark] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_statement_block] = STATE(398), - [sym_comment] = STATE(307), + [301] = { + [sym_comment] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2059), [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2059), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2059), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -74517,12 +73858,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(2057), [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2059), [anon_sym_while] = ACTIONS(2057), [anon_sym_do] = ACTIONS(2057), [anon_sym_try] = ACTIONS(2057), @@ -74532,42 +73874,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2057), [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2059), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), [anon_sym_async] = ACTIONS(2057), [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2059), [anon_sym_new] = ACTIONS(2057), [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), [anon_sym_PLUS] = ACTIONS(2057), [anon_sym_DASH] = ACTIONS(2057), [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2059), [anon_sym_TILDE] = ACTIONS(2057), [anon_sym_void] = ACTIONS(2057), [anon_sym_delete] = ACTIONS(2057), @@ -74601,127 +73942,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2057), [anon_sym_object] = ACTIONS(2057), [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2059), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [sym__automatic_semicolon] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2065), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_statement_block] = STATE(398), - [sym_comment] = STATE(308), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), + [302] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(302), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [anon_sym_extends] = ACTIONS(1980), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(303), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [anon_sym_extends] = ACTIONS(1980), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_statement_block] = STATE(398), - [sym_comment] = STATE(309), + [304] = { + [sym_comment] = STATE(304), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_STAR] = ACTIONS(2057), @@ -74729,7 +74180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(2057), [anon_sym_as] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_COMMA] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), @@ -74739,6 +74190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -74759,7 +74211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_DOT] = ACTIONS(2057), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -74826,21 +74278,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [sym__automatic_semicolon] = ACTIONS(2117), + [sym__ternary_qmark] = ACTIONS(2113), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_comment] = STATE(310), + [305] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(5880), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(305), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5881), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [306] = { + [sym_comment] = STATE(306), [sym_identifier] = ACTIONS(2125), [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), [anon_sym_default] = ACTIONS(2125), [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2127), [anon_sym_namespace] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2127), [anon_sym_RBRACE] = ACTIONS(2125), [anon_sym_typeof] = ACTIONS(2125), [anon_sym_import] = ACTIONS(2125), @@ -74855,7 +74418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2125), [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2127), [anon_sym_while] = ACTIONS(2125), [anon_sym_do] = ACTIONS(2125), [anon_sym_try] = ACTIONS(2125), @@ -74869,38 +74432,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2125), [anon_sym_LBRACK] = ACTIONS(2125), [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_class] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2127), [anon_sym_new] = ACTIONS(2125), [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), [anon_sym_PLUS] = ACTIONS(2125), [anon_sym_DASH] = ACTIONS(2125), [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_STAR_STAR] = ACTIONS(2127), [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_QMARK_QMARK] = ACTIONS(2125), - [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_instanceof] = ACTIONS(2127), [anon_sym_TILDE] = ACTIONS(2125), [anon_sym_void] = ACTIONS(2125), [anon_sym_delete] = ACTIONS(2125), @@ -74934,1246 +74497,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2125), [anon_sym_object] = ACTIONS(2125), [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2127), [anon_sym_interface] = ACTIONS(2125), [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym__ternary_qmark] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [311] = { - [sym_comment] = STATE(311), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_GT] = ACTIONS(2131), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_QMARK_DOT] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_AMP_AMP] = ACTIONS(2131), - [anon_sym_PIPE_PIPE] = ACTIONS(2131), - [anon_sym_GT_GT] = ACTIONS(2131), - [anon_sym_GT_GT_GT] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_STAR_STAR] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_QMARK_QMARK] = ACTIONS(2131), - [anon_sym_instanceof] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_satisfies] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2133), - [sym__ternary_qmark] = ACTIONS(2135), - [sym_html_comment] = ACTIONS(5), - }, - [312] = { - [sym_comment] = STATE(312), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_STAR_STAR] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_QMARK_QMARK] = ACTIONS(2139), - [anon_sym_instanceof] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_satisfies] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2141), - [sym__ternary_qmark] = ACTIONS(2143), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(313), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [anon_sym_extends] = ACTIONS(1972), - [sym_html_comment] = ACTIONS(5), - }, - [314] = { - [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, - [315] = { - [sym_comment] = STATE(315), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_STAR_STAR] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_QMARK_QMARK] = ACTIONS(2151), - [anon_sym_instanceof] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_satisfies] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2153), - [sym__ternary_qmark] = ACTIONS(2153), - [sym_html_comment] = ACTIONS(5), - }, - [316] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(316), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(2014), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(4899), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_accessibility_modifier] = STATE(367), - [sym_override_modifier] = STATE(457), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(1906), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2157), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1171), - [anon_sym_private] = ACTIONS(1171), - [anon_sym_protected] = ACTIONS(1171), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [317] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(6058), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(317), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6060), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [sym__automatic_semicolon] = ACTIONS(2129), + [sym__ternary_qmark] = ACTIONS(2131), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(318), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [307] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(307), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1980), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1980), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [anon_sym_extends] = ACTIONS(1972), - [sym_html_comment] = ACTIONS(5), - }, - [319] = { - [sym_comment] = STATE(319), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_STAR_STAR] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_QMARK_QMARK] = ACTIONS(2163), - [anon_sym_instanceof] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_satisfies] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym__automatic_semicolon] = ACTIONS(2165), - [sym__ternary_qmark] = ACTIONS(2165), - [sym_html_comment] = ACTIONS(5), - }, - [320] = { - [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), + [anon_sym_extends] = ACTIONS(1980), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), + [308] = { + [sym_statement_block] = STATE(376), + [sym_comment] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2177), - [sym__ternary_qmark] = ACTIONS(2177), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_comment] = STATE(322), + [309] = { + [sym_statement_block] = STATE(376), + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -76182,12 +74746,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(2067), [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), + [anon_sym_in] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), [anon_sym_do] = ACTIONS(2067), [anon_sym_try] = ACTIONS(2067), @@ -76197,42 +74762,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_QMARK_DOT] = ACTIONS(2067), [anon_sym_new] = ACTIONS(2067), [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2067), [anon_sym_DASH] = ACTIONS(2067), [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), [anon_sym_TILDE] = ACTIONS(2067), [anon_sym_void] = ACTIONS(2067), [anon_sym_delete] = ACTIONS(2067), @@ -76266,126 +74830,1347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2067), [anon_sym_object] = ACTIONS(2067), [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2179), - [sym__ternary_qmark] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(5960), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(323), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(5961), + [310] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(310), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [anon_sym_extends] = ACTIONS(1980), + [sym_html_comment] = ACTIONS(5), + }, + [311] = { + [sym_statement_block] = STATE(376), + [sym_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), + [sym_html_comment] = ACTIONS(5), + }, + [312] = { + [sym_comment] = STATE(312), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2141), + [anon_sym_PIPE_PIPE] = ACTIONS(2141), + [anon_sym_GT_GT] = ACTIONS(2141), + [anon_sym_GT_GT_GT] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_CARET] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2141), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_GT_EQ] = ACTIONS(2141), + [anon_sym_QMARK_QMARK] = ACTIONS(2141), + [anon_sym_instanceof] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2143), + [sym__ternary_qmark] = ACTIONS(2145), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2648), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(5673), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(313), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5674), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_comment] = STATE(324), + [314] = { + [sym_comment] = STATE(314), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2149), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [sym_comment] = STATE(315), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_GT_GT] = ACTIONS(2153), + [anon_sym_GT_GT_GT] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2153), + [anon_sym_STAR_STAR] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), + [anon_sym_GT_EQ] = ACTIONS(2153), + [anon_sym_QMARK_QMARK] = ACTIONS(2153), + [anon_sym_instanceof] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_satisfies] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [sym__automatic_semicolon] = ACTIONS(2155), + [sym__ternary_qmark] = ACTIONS(2155), + [sym_html_comment] = ACTIONS(5), + }, + [316] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(316), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [anon_sym_extends] = ACTIONS(1980), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(5794), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(317), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_comment] = STATE(318), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2161), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2161), + [anon_sym_GT_GT] = ACTIONS(2161), + [anon_sym_GT_GT_GT] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_STAR_STAR] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), + [anon_sym_GT_EQ] = ACTIONS(2161), + [anon_sym_QMARK_QMARK] = ACTIONS(2161), + [anon_sym_instanceof] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_satisfies] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2163), + [sym__ternary_qmark] = ACTIONS(2165), + [sym_html_comment] = ACTIONS(5), + }, + [319] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(319), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [anon_sym_extends] = ACTIONS(1980), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_comment] = STATE(320), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_QMARK_QMARK] = ACTIONS(2169), + [anon_sym_instanceof] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_satisfies] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2171), + [sym__ternary_qmark] = ACTIONS(2173), + [sym_html_comment] = ACTIONS(5), + }, + [321] = { + [sym_comment] = STATE(321), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT_GT] = ACTIONS(2177), + [anon_sym_GT_GT_GT] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_QMARK_QMARK] = ACTIONS(2177), + [anon_sym_instanceof] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2179), + [sym__ternary_qmark] = ACTIONS(2181), + [sym_html_comment] = ACTIONS(5), + }, + [322] = { + [sym_comment] = STATE(322), [sym_identifier] = ACTIONS(2183), [anon_sym_export] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2183), @@ -76495,341 +76280,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(5966), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(325), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2187), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(2187), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [326] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(326), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [323] = { + [sym_comment] = STATE(323), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [anon_sym_extends] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2059), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2187), + [sym__ternary_qmark] = ACTIONS(2065), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2189), + [324] = { + [sym_statement_block] = STATE(346), + [sym_comment] = STATE(324), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_STAR_STAR] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_QMARK_QMARK] = ACTIONS(2191), - [anon_sym_instanceof] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_satisfies] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), + [sym_html_comment] = ACTIONS(5), + }, + [325] = { + [sym_comment] = STATE(325), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_STAR_STAR] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_QMARK_QMARK] = ACTIONS(2193), + [anon_sym_instanceof] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_satisfies] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), [sym__ternary_qmark] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_comment] = STATE(328), + [326] = { + [sym_comment] = STATE(326), [sym_identifier] = ACTIONS(2197), [anon_sym_export] = ACTIONS(2197), [anon_sym_STAR] = ACTIONS(2199), @@ -76939,17 +76724,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_comment] = STATE(329), + [327] = { + [sym_comment] = STATE(327), [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2205), [anon_sym_default] = ACTIONS(2205), [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2205), [anon_sym_namespace] = ACTIONS(2205), [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(2205), [anon_sym_RBRACE] = ACTIONS(2205), [anon_sym_typeof] = ACTIONS(2205), [anon_sym_import] = ACTIONS(2205), @@ -76964,7 +76749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2205), [anon_sym_LPAREN] = ACTIONS(2205), [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2205), [anon_sym_while] = ACTIONS(2205), [anon_sym_do] = ACTIONS(2205), [anon_sym_try] = ACTIONS(2205), @@ -76978,38 +76763,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2205), [anon_sym_LBRACK] = ACTIONS(2205), [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2205), [anon_sym_DQUOTE] = ACTIONS(2205), [anon_sym_SQUOTE] = ACTIONS(2205), [anon_sym_class] = ACTIONS(2205), [anon_sym_async] = ACTIONS(2205), [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_QMARK_DOT] = ACTIONS(2205), [anon_sym_new] = ACTIONS(2205), [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), [anon_sym_PLUS] = ACTIONS(2205), [anon_sym_DASH] = ACTIONS(2205), [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_STAR_STAR] = ACTIONS(2205), [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_QMARK_QMARK] = ACTIONS(2207), - [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_QMARK_QMARK] = ACTIONS(2205), + [anon_sym_instanceof] = ACTIONS(2205), [anon_sym_TILDE] = ACTIONS(2205), [anon_sym_void] = ACTIONS(2205), [anon_sym_delete] = ACTIONS(2205), @@ -77043,15 +76828,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2205), [anon_sym_object] = ACTIONS(2205), [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_satisfies] = ACTIONS(2205), [anon_sym_interface] = ACTIONS(2205), [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2209), - [sym__ternary_qmark] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2207), + [sym__ternary_qmark] = ACTIONS(2207), + [sym_html_comment] = ACTIONS(5), + }, + [328] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(5966), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(328), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(5967), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [329] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(329), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [anon_sym_extends] = ACTIONS(1980), [sym_html_comment] = ACTIONS(5), }, [330] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2597), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(6304), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(330), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6291), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [331] = { + [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), [anon_sym_STAR] = ACTIONS(2215), @@ -77161,166 +77279,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_comment] = STATE(331), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_satisfies] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym__ternary_qmark] = ACTIONS(2223), - [sym_html_comment] = ACTIONS(5), - }, [332] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2582), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(6321), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(332), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6319), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_case] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_QMARK_DOT] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT_GT] = ACTIONS(2223), + [anon_sym_GT_GT_GT] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_STAR_STAR] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_QMARK_QMARK] = ACTIONS(2223), + [anon_sym_instanceof] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_satisfies] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2225), + [sym__ternary_qmark] = ACTIONS(2225), + [sym_html_comment] = ACTIONS(5), + }, + [334] = { + [sym_comment] = STATE(334), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), [anon_sym_GT] = ACTIONS(2227), [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), [anon_sym_AMP_AMP] = ACTIONS(2227), [anon_sym_PIPE_PIPE] = ACTIONS(2227), [anon_sym_GT_GT] = ACTIONS(2227), @@ -77329,12 +77558,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2227), [anon_sym_CARET] = ACTIONS(2227), [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), [anon_sym_PERCENT] = ACTIONS(2227), [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2227), [anon_sym_LT_EQ] = ACTIONS(2227), [anon_sym_EQ_EQ] = ACTIONS(2227), [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), @@ -77343,279 +77572,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2227), [anon_sym_QMARK_QMARK] = ACTIONS(2227), [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), [sym__automatic_semicolon] = ACTIONS(2229), - [sym__ternary_qmark] = ACTIONS(2231), - [sym_html_comment] = ACTIONS(5), - }, - [333] = { - [sym_comment] = STATE(333), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_satisfies] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2235), - [sym__ternary_qmark] = ACTIONS(2235), + [sym__ternary_qmark] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(334), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1972), + [335] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(335), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(2009), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5228), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_accessibility_modifier] = STATE(407), + [sym_override_modifier] = STATE(428), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(1912), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_extends] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_comment] = STATE(335), + [336] = { + [sym_comment] = STATE(336), [sym_identifier] = ACTIONS(2237), [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2239), [anon_sym_default] = ACTIONS(2237), [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2239), [anon_sym_namespace] = ACTIONS(2237), [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2239), [anon_sym_RBRACE] = ACTIONS(2237), [anon_sym_typeof] = ACTIONS(2237), [anon_sym_import] = ACTIONS(2237), @@ -77630,7 +77748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2237), [anon_sym_LPAREN] = ACTIONS(2237), [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2239), [anon_sym_while] = ACTIONS(2237), [anon_sym_do] = ACTIONS(2237), [anon_sym_try] = ACTIONS(2237), @@ -77644,38 +77762,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2237), [anon_sym_LBRACK] = ACTIONS(2237), [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), [anon_sym_DQUOTE] = ACTIONS(2237), [anon_sym_SQUOTE] = ACTIONS(2237), [anon_sym_class] = ACTIONS(2237), [anon_sym_async] = ACTIONS(2237), [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2239), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), [anon_sym_PLUS] = ACTIONS(2237), [anon_sym_DASH] = ACTIONS(2237), [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_STAR_STAR] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_QMARK_QMARK] = ACTIONS(2237), - [anon_sym_instanceof] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), [anon_sym_TILDE] = ACTIONS(2237), [anon_sym_void] = ACTIONS(2237), [anon_sym_delete] = ACTIONS(2237), @@ -77709,237 +77827,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2237), [anon_sym_object] = ACTIONS(2237), [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2239), [anon_sym_interface] = ACTIONS(2237), [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2239), - [sym__ternary_qmark] = ACTIONS(2239), - [sym_html_comment] = ACTIONS(5), - }, - [336] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(336), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_extends] = ACTIONS(1972), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym__ternary_qmark] = ACTIONS(2243), [sym_html_comment] = ACTIONS(5), }, [337] = { [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_STAR_STAR] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_QMARK_QMARK] = ACTIONS(2243), - [anon_sym_instanceof] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_satisfies] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym__automatic_semicolon] = ACTIONS(2247), [sym__ternary_qmark] = ACTIONS(2247), [sym_html_comment] = ACTIONS(5), }, [338] = { [sym_comment] = STATE(338), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_STAR_STAR] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_QMARK_QMARK] = ACTIONS(2249), + [anon_sym_instanceof] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_satisfies] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym__automatic_semicolon] = ACTIONS(2251), + [sym__ternary_qmark] = ACTIONS(2251), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(6240), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(339), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6239), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_statement_block] = STATE(346), + [sym_comment] = STATE(340), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_STAR] = ACTIONS(2067), @@ -77947,7 +78177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(2067), [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2189), [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), @@ -77957,7 +78187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -77978,7 +78207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2255), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -78045,2001 +78274,1779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2249), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [339] = { - [sym_comment] = STATE(339), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_STAR_STAR] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_QMARK_QMARK] = ACTIONS(2251), - [anon_sym_instanceof] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_satisfies] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym__ternary_qmark] = ACTIONS(2253), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_comment] = STATE(340), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_STAR_STAR] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_QMARK_QMARK] = ACTIONS(2257), - [anon_sym_instanceof] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2259), - [sym__ternary_qmark] = ACTIONS(2261), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(6300), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(6219), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(341), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [aux_sym_array_repeat1] = STATE(6299), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [aux_sym_array_repeat1] = STATE(6220), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [342] = { + [sym_statement_block] = STATE(346), [sym_comment] = STATE(342), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2115), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_statement_block] = STATE(385), - [sym_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), + [sym_html_comment] = ACTIONS(5), + }, + [343] = { + [sym_comment] = STATE(343), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_STAR_STAR] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_QMARK_QMARK] = ACTIONS(2261), + [anon_sym_instanceof] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_satisfies] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2263), + [sym__ternary_qmark] = ACTIONS(2265), [sym_html_comment] = ACTIONS(5), }, [344] = { [sym_comment] = STATE(344), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_STAR_STAR] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_QMARK_QMARK] = ACTIONS(2243), - [anon_sym_instanceof] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_satisfies] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_GT_GT] = ACTIONS(2153), + [anon_sym_GT_GT_GT] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2153), + [anon_sym_STAR_STAR] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), + [anon_sym_GT_EQ] = ACTIONS(2153), + [anon_sym_QMARK_QMARK] = ACTIONS(2153), + [anon_sym_instanceof] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_satisfies] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [sym__automatic_semicolon] = ACTIONS(2155), + [sym__ternary_qmark] = ACTIONS(2155), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4196), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(345), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2267), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, [346] = { [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_satisfies] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym__ternary_qmark] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [sym__automatic_semicolon] = ACTIONS(2229), + [sym__ternary_qmark] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [347] = { + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(463), + [sym_empty_statement] = STATE(463), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), [sym_comment] = STATE(347), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_satisfies] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2235), - [sym__ternary_qmark] = ACTIONS(2235), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, [348] = { [sym_comment] = STATE(348), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_STAR_STAR] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_QMARK_QMARK] = ACTIONS(2237), - [anon_sym_instanceof] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2239), - [sym__ternary_qmark] = ACTIONS(2239), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2269), + [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6802), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(349), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(6098), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(2271), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, [350] = { [sym_comment] = STATE(350), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_STAR_STAR] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_QMARK_QMARK] = ACTIONS(2251), - [anon_sym_instanceof] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_satisfies] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym__ternary_qmark] = ACTIONS(2253), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2273), + [sym__ternary_qmark] = ACTIONS(2113), [sym_html_comment] = ACTIONS(5), }, [351] = { [sym_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2273), - [sym__ternary_qmark] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_STAR_STAR] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_QMARK_QMARK] = ACTIONS(2193), + [anon_sym_instanceof] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_satisfies] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), + [sym__ternary_qmark] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, [352] = { [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_STAR_STAR] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_QMARK_QMARK] = ACTIONS(2191), - [anon_sym_instanceof] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_satisfies] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2277), - [sym__ternary_qmark] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_STAR_STAR] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_QMARK_QMARK] = ACTIONS(2249), + [anon_sym_instanceof] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_satisfies] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym__automatic_semicolon] = ACTIONS(2251), + [sym__ternary_qmark] = ACTIONS(2251), [sym_html_comment] = ACTIONS(5), }, [353] = { [sym_comment] = STATE(353), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_GT] = ACTIONS(2131), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_QMARK_DOT] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_AMP_AMP] = ACTIONS(2131), - [anon_sym_PIPE_PIPE] = ACTIONS(2131), - [anon_sym_GT_GT] = ACTIONS(2131), - [anon_sym_GT_GT_GT] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_STAR_STAR] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_QMARK_QMARK] = ACTIONS(2131), - [anon_sym_instanceof] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_satisfies] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2279), - [sym__ternary_qmark] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_STAR_STAR] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_QMARK_QMARK] = ACTIONS(2193), + [anon_sym_instanceof] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_satisfies] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), + [sym__ternary_qmark] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, [354] = { + [sym_import] = STATE(4262), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(354), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_STAR_STAR] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_QMARK_QMARK] = ACTIONS(2139), - [anon_sym_instanceof] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_satisfies] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2281), - [sym__ternary_qmark] = ACTIONS(2143), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(2275), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(4107), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), [sym_comment] = STATE(355), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2283), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_QMARK_QMARK] = ACTIONS(2169), + [anon_sym_instanceof] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_satisfies] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2279), + [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, [356] = { [sym_comment] = STATE(356), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_case] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2285), - [sym__ternary_qmark] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_QMARK_DOT] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2079), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_STAR_STAR] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_QMARK_QMARK] = ACTIONS(2079), + [anon_sym_instanceof] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_satisfies] = ACTIONS(2079), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2281), + [sym__ternary_qmark] = ACTIONS(2083), [sym_html_comment] = ACTIONS(5), }, [357] = { [sym_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(2185), [sym_identifier] = ACTIONS(2183), [anon_sym_export] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), [anon_sym_type] = ACTIONS(2183), [anon_sym_as] = ACTIONS(2183), [anon_sym_namespace] = ACTIONS(2183), @@ -80053,7 +80060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2183), [anon_sym_const] = ACTIONS(2183), [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), [anon_sym_if] = ACTIONS(2183), [anon_sym_switch] = ACTIONS(2183), [anon_sym_for] = ACTIONS(2183), @@ -80069,6 +80075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2183), [anon_sym_throw] = ACTIONS(2183), [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), [anon_sym_yield] = ACTIONS(2183), [anon_sym_LBRACK] = ACTIONS(2183), [anon_sym_LTtemplate_GT] = ACTIONS(2183), @@ -80146,674 +80153,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [358] = { [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2161), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2161), + [anon_sym_GT_GT] = ACTIONS(2161), + [anon_sym_GT_GT_GT] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_STAR_STAR] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), + [anon_sym_GT_EQ] = ACTIONS(2161), + [anon_sym_QMARK_QMARK] = ACTIONS(2161), + [anon_sym_instanceof] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_satisfies] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2285), + [sym__ternary_qmark] = ACTIONS(2165), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(464), - [sym_empty_statement] = STATE(464), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), + [sym_import] = STATE(4196), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(359), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2287), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [360] = { + [sym_statement_block] = STATE(424), [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_STAR_STAR] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_QMARK_QMARK] = ACTIONS(2139), - [anon_sym_instanceof] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_satisfies] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2289), - [sym__ternary_qmark] = ACTIONS(2143), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, [361] = { + [sym_statement_block] = STATE(424), [sym_comment] = STATE(361), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_STAR_STAR] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_QMARK_QMARK] = ACTIONS(2125), - [anon_sym_instanceof] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym__ternary_qmark] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [362] = { - [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2291), - [sym__ternary_qmark] = ACTIONS(2115), - [sym_html_comment] = ACTIONS(5), - }, - [363] = { - [sym_comment] = STATE(363), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_STAR] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2289), [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), @@ -80823,7 +80501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -80843,7 +80520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2293), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -80910,331 +80587,771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2293), - [sym__ternary_qmark] = ACTIONS(2095), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(365), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2295), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [362] = { + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(465), + [sym_empty_statement] = STATE(465), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), + [sym_comment] = STATE(362), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [366] = { - [sym_comment] = STATE(366), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_comment] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2297), + [sym__ternary_qmark] = ACTIONS(2243), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [365] = { + [sym_comment] = STATE(365), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_GT_GT] = ACTIONS(2153), + [anon_sym_GT_GT_GT] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2153), + [anon_sym_STAR_STAR] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), + [anon_sym_GT_EQ] = ACTIONS(2153), + [anon_sym_QMARK_QMARK] = ACTIONS(2153), + [anon_sym_instanceof] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_satisfies] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [sym__automatic_semicolon] = ACTIONS(2155), + [sym__ternary_qmark] = ACTIONS(2155), + [sym_html_comment] = ACTIONS(5), + }, + [366] = { + [sym_statement_block] = STATE(424), + [sym_comment] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2071), + [sym__ternary_qmark] = ACTIONS(2071), [sym_html_comment] = ACTIONS(5), }, [367] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), [sym_comment] = STATE(367), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5081), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_override_modifier] = STATE(436), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2203), + [sym_html_comment] = ACTIONS(5), + }, + [368] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(368), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_override_modifier] = STATE(442), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1087), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2305), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -81244,348 +81361,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_comment] = STATE(368), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2301), - [sym__ternary_qmark] = ACTIONS(2231), - [sym_html_comment] = ACTIONS(5), - }, [369] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(465), - [sym_empty_statement] = STATE(465), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), [sym_comment] = STATE(369), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, [370] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), [sym_comment] = STATE(370), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2303), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [371] = { - [sym_statement_block] = STATE(452), - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2059), [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2059), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2059), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -81599,7 +81496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(2057), [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2059), [anon_sym_while] = ACTIONS(2057), [anon_sym_do] = ACTIONS(2057), [anon_sym_try] = ACTIONS(2057), @@ -81612,38 +81509,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2059), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), [anon_sym_async] = ACTIONS(2057), [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2059), [anon_sym_new] = ACTIONS(2057), [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), [anon_sym_PLUS] = ACTIONS(2057), [anon_sym_DASH] = ACTIONS(2057), [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2059), [anon_sym_TILDE] = ACTIONS(2057), [anon_sym_void] = ACTIONS(2057), [anon_sym_delete] = ACTIONS(2057), @@ -81677,874 +81574,1314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2057), [anon_sym_object] = ACTIONS(2057), [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2059), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [sym__automatic_semicolon] = ACTIONS(2307), + [sym__ternary_qmark] = ACTIONS(2065), + [sym_html_comment] = ACTIONS(5), + }, + [371] = { + [sym_comment] = STATE(371), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2243), [sym_html_comment] = ACTIONS(5), }, [372] = { - [sym_statement_block] = STATE(452), [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT_GT] = ACTIONS(2177), + [anon_sym_GT_GT_GT] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_QMARK_QMARK] = ACTIONS(2177), + [anon_sym_instanceof] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2311), + [sym__ternary_qmark] = ACTIONS(2181), [sym_html_comment] = ACTIONS(5), }, [373] = { - [sym_statement_block] = STATE(452), [sym_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_QMARK_DOT] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [anon_sym_GT_GT_GT] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_PERCENT] = ACTIONS(2057), - [anon_sym_STAR_STAR] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_QMARK_QMARK] = ACTIONS(2057), - [anon_sym_instanceof] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT_GT] = ACTIONS(2177), + [anon_sym_GT_GT_GT] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_QMARK_QMARK] = ACTIONS(2177), + [anon_sym_instanceof] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_satisfies] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym__automatic_semicolon] = ACTIONS(2061), - [sym__ternary_qmark] = ACTIONS(2061), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2315), + [sym__ternary_qmark] = ACTIONS(2181), [sym_html_comment] = ACTIONS(5), }, [374] = { + [sym_import] = STATE(4220), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_STAR_STAR] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_QMARK_QMARK] = ACTIONS(2251), - [anon_sym_instanceof] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_satisfies] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym__ternary_qmark] = ACTIONS(2253), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3650), + [sym__type_query_subscript_expression] = STATE(3671), + [sym__type_query_call_expression] = STATE(3871), + [sym__type_query_instantiation_expression] = STATE(3968), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [375] = { + [sym_import] = STATE(4117), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(375), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_case] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2311), - [sym__ternary_qmark] = ACTIONS(2089), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2319), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, [376] = { [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_GT] = ACTIONS(2131), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_QMARK_DOT] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_AMP_AMP] = ACTIONS(2131), - [anon_sym_PIPE_PIPE] = ACTIONS(2131), - [anon_sym_GT_GT] = ACTIONS(2131), - [anon_sym_GT_GT_GT] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_STAR_STAR] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_QMARK_QMARK] = ACTIONS(2131), - [anon_sym_instanceof] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_satisfies] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2315), - [sym__ternary_qmark] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [sym__automatic_semicolon] = ACTIONS(2229), + [sym__ternary_qmark] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4117), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(377), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2317), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, [378] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), [sym_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(2323), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2319), - [sym__ternary_qmark] = ACTIONS(2075), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(4107), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6873), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(379), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2321), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5956), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [380] = { + [sym_comment] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_comment] = STATE(381), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_STAR_STAR] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_QMARK_QMARK] = ACTIONS(2261), + [anon_sym_instanceof] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_satisfies] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2325), + [sym__ternary_qmark] = ACTIONS(2265), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_import] = STATE(4196), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(382), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2327), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -82564,127 +82901,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(4242), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(380), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [383] = { + [sym_comment] = STATE(383), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_QMARK_QMARK] = ACTIONS(2169), + [anon_sym_instanceof] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_satisfies] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2329), + [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(2127), + [384] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_STAR_STAR] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_QMARK_QMARK] = ACTIONS(2205), + [anon_sym_instanceof] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2207), + [sym__ternary_qmark] = ACTIONS(2207), + [sym_html_comment] = ACTIONS(5), + }, + [385] = { + [sym_comment] = STATE(385), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2331), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_comment] = STATE(386), [sym_identifier] = ACTIONS(2125), [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2125), [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2127), [anon_sym_namespace] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2127), [anon_sym_RBRACE] = ACTIONS(2125), [anon_sym_typeof] = ACTIONS(2125), [anon_sym_import] = ACTIONS(2125), @@ -82693,13 +83250,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2125), [anon_sym_const] = ACTIONS(2125), [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), [anon_sym_if] = ACTIONS(2125), [anon_sym_switch] = ACTIONS(2125), [anon_sym_for] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2125), [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2127), [anon_sym_while] = ACTIONS(2125), [anon_sym_do] = ACTIONS(2125), [anon_sym_try] = ACTIONS(2125), @@ -82709,41 +83265,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2125), [anon_sym_throw] = ACTIONS(2125), [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), [anon_sym_yield] = ACTIONS(2125), [anon_sym_LBRACK] = ACTIONS(2125), [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_class] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2127), [anon_sym_new] = ACTIONS(2125), [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), [anon_sym_PLUS] = ACTIONS(2125), [anon_sym_DASH] = ACTIONS(2125), [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_STAR_STAR] = ACTIONS(2127), [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_QMARK_QMARK] = ACTIONS(2125), - [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_instanceof] = ACTIONS(2127), [anon_sym_TILDE] = ACTIONS(2125), [anon_sym_void] = ACTIONS(2125), [anon_sym_delete] = ACTIONS(2125), @@ -82777,569 +83334,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2125), [anon_sym_object] = ACTIONS(2125), [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2127), [anon_sym_interface] = ACTIONS(2125), [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym__ternary_qmark] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [382] = { - [sym_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2327), - [sym__ternary_qmark] = ACTIONS(2231), - [sym_html_comment] = ACTIONS(5), - }, - [383] = { - [sym_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_STAR_STAR] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_QMARK_QMARK] = ACTIONS(2243), - [anon_sym_instanceof] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_satisfies] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2331), - [sym__ternary_qmark] = ACTIONS(2247), - [sym_html_comment] = ACTIONS(5), - }, - [384] = { - [sym_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_STAR_STAR] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_QMARK_QMARK] = ACTIONS(2163), - [anon_sym_instanceof] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_satisfies] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym__automatic_semicolon] = ACTIONS(2165), - [sym__ternary_qmark] = ACTIONS(2165), - [sym_html_comment] = ACTIONS(5), - }, - [385] = { - [sym_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2177), - [sym__ternary_qmark] = ACTIONS(2177), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_comment] = STATE(386), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_STAR_STAR] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_QMARK_QMARK] = ACTIONS(2257), - [anon_sym_instanceof] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), [sym__automatic_semicolon] = ACTIONS(2333), - [sym__ternary_qmark] = ACTIONS(2261), + [sym__ternary_qmark] = ACTIONS(2131), [sym_html_comment] = ACTIONS(5), }, [387] = { [sym_comment] = STATE(387), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2141), + [anon_sym_PIPE_PIPE] = ACTIONS(2141), + [anon_sym_GT_GT] = ACTIONS(2141), + [anon_sym_GT_GT_GT] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_CARET] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2141), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_GT_EQ] = ACTIONS(2141), + [anon_sym_QMARK_QMARK] = ACTIONS(2141), + [anon_sym_instanceof] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2337), + [sym__ternary_qmark] = ACTIONS(2145), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_comment] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(2339), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2213), [anon_sym_type] = ACTIONS(2213), [anon_sym_as] = ACTIONS(2215), [anon_sym_namespace] = ACTIONS(2213), @@ -83353,6 +83470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2213), [anon_sym_const] = ACTIONS(2213), [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), [anon_sym_if] = ACTIONS(2213), [anon_sym_switch] = ACTIONS(2213), [anon_sym_for] = ACTIONS(2213), @@ -83368,7 +83486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2213), [anon_sym_throw] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), [anon_sym_yield] = ACTIONS(2213), [anon_sym_LBRACK] = ACTIONS(2213), [anon_sym_LTtemplate_GT] = ACTIONS(2213), @@ -83440,508 +83557,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2215), [anon_sym_interface] = ACTIONS(2213), [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2335), + [sym__automatic_semicolon] = ACTIONS(2341), [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(4088), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(388), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, [389] = { [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_case] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [sym__automatic_semicolon] = ACTIONS(2087), + [sym__ternary_qmark] = ACTIONS(2087), [sym_html_comment] = ACTIONS(5), }, [390] = { - [sym_import] = STATE(4102), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), [sym_comment] = STATE(390), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3665), - [sym__type_query_subscript_expression] = STATE(3648), - [sym__type_query_call_expression] = STATE(3904), - [sym__type_query_instantiation_expression] = STATE(4006), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2339), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_STAR_STAR] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_QMARK_QMARK] = ACTIONS(2205), + [anon_sym_instanceof] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2207), + [sym__ternary_qmark] = ACTIONS(2207), [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_comment] = STATE(391), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_STAR_STAR] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_QMARK_QMARK] = ACTIONS(2191), - [anon_sym_instanceof] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_satisfies] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2341), - [sym__ternary_qmark] = ACTIONS(2195), - [sym_html_comment] = ACTIONS(5), - }, - [392] = { - [sym_import] = STATE(4290), + [sym_import] = STATE(4218), [sym_expression_statement] = STATE(466), [sym_empty_statement] = STATE(466), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), - [sym_comment] = STATE(392), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), + [sym_comment] = STATE(391), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -83951,9 +83848,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -83976,30 +83873,910 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_comment] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_STAR_STAR] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_QMARK_QMARK] = ACTIONS(2261), + [anon_sym_instanceof] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_satisfies] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2345), + [sym__ternary_qmark] = ACTIONS(2265), [sym_html_comment] = ACTIONS(5), }, [393] = { + [sym_import] = STATE(4196), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(2343), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2347), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [394] = { + [sym_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym__automatic_semicolon] = ACTIONS(2247), + [sym__ternary_qmark] = ACTIONS(2247), + [sym_html_comment] = ACTIONS(5), + }, + [395] = { + [sym_comment] = STATE(395), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_case] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_QMARK_DOT] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT_GT] = ACTIONS(2223), + [anon_sym_GT_GT_GT] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_STAR_STAR] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_QMARK_QMARK] = ACTIONS(2223), + [anon_sym_instanceof] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_satisfies] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2225), + [sym__ternary_qmark] = ACTIONS(2225), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_comment] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2349), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [397] = { + [sym_comment] = STATE(397), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym__automatic_semicolon] = ACTIONS(2247), + [sym__ternary_qmark] = ACTIONS(2247), + [sym_html_comment] = ACTIONS(5), + }, + [398] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(7350), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7350), + [sym_string] = STATE(2541), + [sym_comment] = STATE(398), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [399] = { + [sym_comment] = STATE(399), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_STAR_STAR] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_QMARK_QMARK] = ACTIONS(2099), + [anon_sym_instanceof] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_satisfies] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2355), + [sym__ternary_qmark] = ACTIONS(2103), + [sym_html_comment] = ACTIONS(5), + }, + [400] = { + [sym_comment] = STATE(400), [sym_identifier] = ACTIONS(2197), [anon_sym_export] = ACTIONS(2197), [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), [anon_sym_type] = ACTIONS(2197), [anon_sym_as] = ACTIONS(2199), [anon_sym_namespace] = ACTIONS(2197), @@ -84013,7 +84790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2197), [anon_sym_const] = ACTIONS(2197), [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), [anon_sym_if] = ACTIONS(2197), [anon_sym_switch] = ACTIONS(2197), [anon_sym_for] = ACTIONS(2197), @@ -84029,6 +84805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2197), [anon_sym_throw] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), [anon_sym_yield] = ACTIONS(2197), [anon_sym_LBRACK] = ACTIONS(2197), [anon_sym_LTtemplate_GT] = ACTIONS(2197), @@ -84100,288 +84877,1608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2199), [anon_sym_interface] = ACTIONS(2197), [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2345), + [sym__automatic_semicolon] = ACTIONS(2357), [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_comment] = STATE(394), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2115), + [401] = { + [sym_comment] = STATE(401), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2141), + [anon_sym_PIPE_PIPE] = ACTIONS(2141), + [anon_sym_GT_GT] = ACTIONS(2141), + [anon_sym_GT_GT_GT] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_CARET] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2141), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_GT_EQ] = ACTIONS(2141), + [anon_sym_QMARK_QMARK] = ACTIONS(2141), + [anon_sym_instanceof] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2359), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_comment] = STATE(395), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [402] = { + [sym_comment] = STATE(402), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_STAR_STAR] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_QMARK_QMARK] = ACTIONS(2249), + [anon_sym_instanceof] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_satisfies] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym__automatic_semicolon] = ACTIONS(2251), + [sym__ternary_qmark] = ACTIONS(2251), + [sym_html_comment] = ACTIONS(5), + }, + [403] = { + [sym_import] = STATE(4102), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(403), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2361), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [404] = { + [sym_comment] = STATE(404), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2349), - [sym__ternary_qmark] = ACTIONS(2095), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2363), + [sym__ternary_qmark] = ACTIONS(2113), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(462), - [sym_empty_statement] = STATE(462), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), - [sym_comment] = STATE(396), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2127), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_STAR_STAR] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_instanceof] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2127), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2367), + [sym__ternary_qmark] = ACTIONS(2131), + [sym_html_comment] = ACTIONS(5), + }, + [406] = { + [sym_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_QMARK_DOT] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT_GT] = ACTIONS(2223), + [anon_sym_GT_GT_GT] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_STAR_STAR] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_QMARK_QMARK] = ACTIONS(2223), + [anon_sym_instanceof] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_satisfies] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2225), + [sym__ternary_qmark] = ACTIONS(2225), + [sym_html_comment] = ACTIONS(5), + }, + [407] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(407), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4946), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_override_modifier] = STATE(429), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(2369), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [408] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2598), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_spread_element] = STATE(7061), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7061), + [sym_string] = STATE(2541), + [sym_comment] = STATE(408), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_STAR_STAR] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_QMARK_QMARK] = ACTIONS(2099), + [anon_sym_instanceof] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_satisfies] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2377), + [sym__ternary_qmark] = ACTIONS(2103), + [sym_html_comment] = ACTIONS(5), + }, + [410] = { + [sym_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_QMARK_DOT] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2079), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_STAR_STAR] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_QMARK_QMARK] = ACTIONS(2079), + [anon_sym_instanceof] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_satisfies] = ACTIONS(2079), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2381), + [sym__ternary_qmark] = ACTIONS(2083), + [sym_html_comment] = ACTIONS(5), + }, + [411] = { + [sym_comment] = STATE(411), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2161), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2161), + [anon_sym_GT_GT] = ACTIONS(2161), + [anon_sym_GT_GT_GT] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_STAR_STAR] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), + [anon_sym_GT_EQ] = ACTIONS(2161), + [anon_sym_QMARK_QMARK] = ACTIONS(2161), + [anon_sym_instanceof] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_satisfies] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2383), + [sym__ternary_qmark] = ACTIONS(2165), + [sym_html_comment] = ACTIONS(5), + }, + [412] = { + [sym_comment] = STATE(412), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [413] = { + [sym_import] = STATE(4117), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(413), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [414] = { + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [sym__automatic_semicolon] = ACTIONS(2087), + [sym__ternary_qmark] = ACTIONS(2087), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(461), + [sym_empty_statement] = STATE(461), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -84391,9 +86488,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -84416,345 +86513,1439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_STAR_STAR] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_QMARK_QMARK] = ACTIONS(2151), - [anon_sym_instanceof] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_satisfies] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2153), - [sym__ternary_qmark] = ACTIONS(2153), + [416] = { + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2091), + [anon_sym_PIPE_PIPE] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_GT_GT_GT] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_satisfies] = ACTIONS(2091), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2389), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [398] = { - [sym_comment] = STATE(398), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2177), - [sym__ternary_qmark] = ACTIONS(2177), + [417] = { + [sym_comment] = STATE(417), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), + [418] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2825), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_assignment_pattern] = STATE(6873), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1942), + [sym_subscript_expression] = STATE(1942), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4557), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5956), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1942), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(978), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(4117), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(399), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_override_modifier] = STATE(455), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(419), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2391), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(4218), + [sym_expression_statement] = STATE(464), + [sym_empty_statement] = STATE(464), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6965), + [sym_string] = STATE(2924), + [sym_comment] = STATE(420), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_comment] = STATE(421), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_case] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2091), + [anon_sym_PIPE_PIPE] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_GT_GT_GT] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_satisfies] = ACTIONS(2091), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2393), + [sym__ternary_qmark] = ACTIONS(2095), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(4117), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(422), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym__type_query_member_expression] = STATE(3602), + [sym__type_query_subscript_expression] = STATE(3601), + [sym__type_query_call_expression] = STATE(3659), + [sym__type_query_instantiation_expression] = STATE(3785), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2395), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_STAR_STAR] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_QMARK_QMARK] = ACTIONS(2245), + [anon_sym_instanceof] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_satisfies] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym__automatic_semicolon] = ACTIONS(2247), + [sym__ternary_qmark] = ACTIONS(2247), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [sym__automatic_semicolon] = ACTIONS(2229), + [sym__ternary_qmark] = ACTIONS(2229), + [sym_html_comment] = ACTIONS(5), + }, + [425] = { + [sym_comment] = STATE(425), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(2397), + [anon_sym_import] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_LTtemplate_GT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_void] = ACTIONS(2397), + [anon_sym_delete] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_number] = ACTIONS(2397), + [sym_private_property_identifier] = ACTIONS(2397), + [sym_this] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_undefined] = ACTIONS(2397), + [anon_sym_AT] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_private] = ACTIONS(2397), + [anon_sym_protected] = ACTIONS(2397), + [anon_sym_override] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_any] = ACTIONS(2397), + [anon_sym_number] = ACTIONS(2397), + [anon_sym_boolean] = ACTIONS(2397), + [anon_sym_string] = ACTIONS(2397), + [anon_sym_symbol] = ACTIONS(2397), + [anon_sym_object] = ACTIONS(2397), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_GT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2109), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_STAR_STAR] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_QMARK_QMARK] = ACTIONS(2109), + [anon_sym_instanceof] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_satisfies] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2399), + [sym__ternary_qmark] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(428), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4943), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(2401), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_readonly] = ACTIONS(2403), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1173), + [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -84764,516 +87955,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_import] = STATE(4107), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(400), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2355), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [429] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(429), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4985), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(2405), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2407), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_STAR_STAR] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_QMARK_QMARK] = ACTIONS(2257), - [anon_sym_instanceof] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2359), - [sym__ternary_qmark] = ACTIONS(2261), + [430] = { + [sym_comment] = STATE(430), + [sym_identifier] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_typeof] = ACTIONS(2409), + [anon_sym_import] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(217), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LTtemplate_GT] = ACTIONS(2409), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_SLASH] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_void] = ACTIONS(2409), + [anon_sym_delete] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2409), + [sym_number] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(2409), + [sym_this] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_true] = ACTIONS(2409), + [sym_false] = ACTIONS(2409), + [sym_null] = ACTIONS(2409), + [sym_undefined] = ACTIONS(2409), + [anon_sym_AT] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(2409), + [anon_sym_public] = ACTIONS(2409), + [anon_sym_private] = ACTIONS(2409), + [anon_sym_protected] = ACTIONS(2409), + [anon_sym_override] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_any] = ACTIONS(2409), + [anon_sym_number] = ACTIONS(2409), + [anon_sym_boolean] = ACTIONS(2409), + [anon_sym_string] = ACTIONS(2409), + [anon_sym_symbol] = ACTIONS(2409), + [anon_sym_object] = ACTIONS(2409), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(4132), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(402), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [431] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6578), + [sym_string] = STATE(2924), + [sym_comment] = STATE(431), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym__automatic_semicolon] = ACTIONS(2413), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(4107), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(403), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2363), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [432] = { + [sym_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2415), + [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(4290), - [sym_expression_statement] = STATE(463), - [sym_empty_statement] = STATE(463), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6755), - [sym_string] = STATE(2940), - [sym_comment] = STATE(404), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [433] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6955), + [sym_string] = STATE(2924), + [sym_comment] = STATE(433), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2417), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -85296,476 +88481,2326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym__automatic_semicolon] = ACTIONS(2419), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_satisfies] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym__ternary_qmark] = ACTIONS(2223), + [434] = { + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2141), + [anon_sym_PIPE_PIPE] = ACTIONS(2141), + [anon_sym_GT_GT] = ACTIONS(2141), + [anon_sym_GT_GT_GT] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_CARET] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2141), + [anon_sym_STAR_STAR] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_GT_EQ] = ACTIONS(2141), + [anon_sym_QMARK_QMARK] = ACTIONS(2141), + [anon_sym_instanceof] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_satisfies] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2421), + [sym__ternary_qmark] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2367), - [sym__ternary_qmark] = ACTIONS(2089), + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2630), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(7385), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7385), - [sym_string] = STATE(2547), - [sym_comment] = STATE(407), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [436] = { + [sym_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_STAR_STAR] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_QMARK_QMARK] = ACTIONS(2099), + [anon_sym_instanceof] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_satisfies] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2423), + [sym__ternary_qmark] = ACTIONS(2103), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_comment] = STATE(408), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_STAR_STAR] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_QMARK_QMARK] = ACTIONS(2163), - [anon_sym_instanceof] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_satisfies] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym__automatic_semicolon] = ACTIONS(2165), - [sym__ternary_qmark] = ACTIONS(2165), + [437] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2091), + [anon_sym_PIPE_PIPE] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_GT_GT_GT] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_satisfies] = ACTIONS(2091), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2425), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), + [438] = { + [sym_comment] = STATE(438), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2397), + [anon_sym_import] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_LTtemplate_GT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_void] = ACTIONS(2397), + [anon_sym_delete] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_number] = ACTIONS(2397), + [sym_private_property_identifier] = ACTIONS(2397), + [sym_this] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_null] = ACTIONS(2397), + [sym_undefined] = ACTIONS(2397), + [anon_sym_AT] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_private] = ACTIONS(2397), + [anon_sym_protected] = ACTIONS(2397), + [anon_sym_override] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_any] = ACTIONS(2397), + [anon_sym_number] = ACTIONS(2397), + [anon_sym_boolean] = ACTIONS(2397), + [anon_sym_string] = ACTIONS(2397), + [anon_sym_symbol] = ACTIONS(2397), + [anon_sym_object] = ACTIONS(2397), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_comment] = STATE(439), + [sym_identifier] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2409), + [anon_sym_import] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LTtemplate_GT] = ACTIONS(2409), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_SLASH] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_void] = ACTIONS(2409), + [anon_sym_delete] = ACTIONS(2409), + [anon_sym_PLUS_PLUS] = ACTIONS(2409), + [anon_sym_DASH_DASH] = ACTIONS(2409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2409), + [sym_number] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(2409), + [sym_this] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_true] = ACTIONS(2409), + [sym_false] = ACTIONS(2409), + [sym_null] = ACTIONS(2409), + [sym_undefined] = ACTIONS(2409), + [anon_sym_AT] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(2409), + [anon_sym_public] = ACTIONS(2409), + [anon_sym_private] = ACTIONS(2409), + [anon_sym_protected] = ACTIONS(2409), + [anon_sym_override] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_any] = ACTIONS(2409), + [anon_sym_number] = ACTIONS(2409), + [anon_sym_boolean] = ACTIONS(2409), + [anon_sym_string] = ACTIONS(2409), + [anon_sym_symbol] = ACTIONS(2409), + [anon_sym_object] = ACTIONS(2409), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [sym__automatic_semicolon] = ACTIONS(2087), + [sym__ternary_qmark] = ACTIONS(2087), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_QMARK_DOT] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2079), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_STAR_STAR] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_QMARK_QMARK] = ACTIONS(2079), + [anon_sym_instanceof] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_satisfies] = ACTIONS(2079), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2427), + [sym__ternary_qmark] = ACTIONS(2083), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(442), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(4965), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1079), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [443] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_STAR_STAR] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_QMARK_QMARK] = ACTIONS(2193), + [anon_sym_instanceof] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_satisfies] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), + [sym__ternary_qmark] = ACTIONS(2195), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_GT_GT] = ACTIONS(2153), + [anon_sym_GT_GT_GT] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2153), + [anon_sym_STAR_STAR] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ] = ACTIONS(2153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), + [anon_sym_GT_EQ] = ACTIONS(2153), + [anon_sym_QMARK_QMARK] = ACTIONS(2153), + [anon_sym_instanceof] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_satisfies] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [sym__automatic_semicolon] = ACTIONS(2155), + [sym__ternary_qmark] = ACTIONS(2155), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2161), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2161), + [anon_sym_GT_GT] = ACTIONS(2161), + [anon_sym_GT_GT_GT] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_STAR_STAR] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ] = ACTIONS(2161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), + [anon_sym_GT_EQ] = ACTIONS(2161), + [anon_sym_QMARK_QMARK] = ACTIONS(2161), + [anon_sym_instanceof] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_satisfies] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2431), + [sym__ternary_qmark] = ACTIONS(2165), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2556), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2924), + [sym_comment] = STATE(446), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym__automatic_semicolon] = ACTIONS(2435), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_QMARK_DOT] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT_GT] = ACTIONS(2223), + [anon_sym_GT_GT_GT] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_STAR_STAR] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_QMARK_QMARK] = ACTIONS(2223), + [anon_sym_instanceof] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_satisfies] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2225), + [sym__ternary_qmark] = ACTIONS(2225), + [sym_html_comment] = ACTIONS(5), + }, + [448] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4603), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(448), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_pattern] = STATE(5295), + [sym_rest_pattern] = STATE(4559), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(1087), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2305), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2437), + [sym__ternary_qmark] = ACTIONS(2113), + [sym_html_comment] = ACTIONS(5), + }, + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6506), + [sym_string] = STATE(2924), + [sym_comment] = STATE(451), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym__automatic_semicolon] = ACTIONS(2441), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_STAR_STAR] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_QMARK_QMARK] = ACTIONS(2261), + [anon_sym_instanceof] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_satisfies] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2265), + [sym_html_comment] = ACTIONS(5), + }, + [453] = { + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT_GT] = ACTIONS(2177), + [anon_sym_GT_GT_GT] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_QMARK_QMARK] = ACTIONS(2177), + [anon_sym_instanceof] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2445), + [sym__ternary_qmark] = ACTIONS(2181), + [sym_html_comment] = ACTIONS(5), + }, + [454] = { + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2239), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2447), + [sym__ternary_qmark] = ACTIONS(2243), + [sym_html_comment] = ACTIONS(5), + }, + [455] = { + [sym_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2167), [anon_sym_typeof] = ACTIONS(2167), [anon_sym_import] = ACTIONS(2167), [anon_sym_with] = ACTIONS(2167), @@ -85773,7 +90808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2167), [anon_sym_const] = ACTIONS(2167), [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), [anon_sym_if] = ACTIONS(2167), [anon_sym_switch] = ACTIONS(2167), [anon_sym_for] = ACTIONS(2167), @@ -85860,786 +90894,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2169), [anon_sym_interface] = ACTIONS(2167), [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2375), + [sym__automatic_semicolon] = ACTIONS(2449), [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_STAR_STAR] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_QMARK_QMARK] = ACTIONS(2237), - [anon_sym_instanceof] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2239), - [sym__ternary_qmark] = ACTIONS(2239), - [sym_html_comment] = ACTIONS(5), - }, - [411] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_spread_element] = STATE(7002), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7002), - [sym_string] = STATE(2547), - [sym_comment] = STATE(411), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_satisfies] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2235), - [sym__ternary_qmark] = ACTIONS(2235), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_comment] = STATE(413), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_STAR_STAR] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_QMARK_QMARK] = ACTIONS(2151), - [anon_sym_instanceof] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_satisfies] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2153), - [sym__ternary_qmark] = ACTIONS(2153), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_import] = STATE(4169), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(414), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(2379), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_STAR_STAR] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_QMARK_QMARK] = ACTIONS(2207), - [anon_sym_instanceof] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [456] = { + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2127), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_STAR_STAR] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_instanceof] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2207), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2383), - [sym__ternary_qmark] = ACTIONS(2211), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2127), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2451), + [sym__ternary_qmark] = ACTIONS(2131), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_comment] = STATE(417), + [457] = { + [sym_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(2301), [sym_identifier] = ACTIONS(2197), [anon_sym_export] = ACTIONS(2197), [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2197), [anon_sym_type] = ACTIONS(2197), [anon_sym_as] = ACTIONS(2199), [anon_sym_namespace] = ACTIONS(2197), @@ -86668,7 +91041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2197), [anon_sym_throw] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), [anon_sym_yield] = ACTIONS(2197), [anon_sym_LBRACK] = ACTIONS(2197), [anon_sym_LTtemplate_GT] = ACTIONS(2197), @@ -86740,241 +91112,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2199), [anon_sym_interface] = ACTIONS(2197), [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2385), + [sym__automatic_semicolon] = ACTIONS(2453), [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_assignment_pattern] = STATE(6802), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1959), - [sym_subscript_expression] = STATE(1959), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4573), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(418), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(6098), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1959), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), + [458] = { + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_STAR_STAR] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_QMARK_QMARK] = ACTIONS(2249), + [anon_sym_instanceof] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_satisfies] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym__automatic_semicolon] = ACTIONS(2251), + [sym__ternary_qmark] = ACTIONS(2251), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6601), + [sym_string] = STATE(2924), + [sym_comment] = STATE(459), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(991), - [anon_sym_readonly] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_override] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_object] = ACTIONS(991), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym__automatic_semicolon] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2389), - [sym__ternary_qmark] = ACTIONS(2219), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_comment] = STATE(420), + [460] = { + [sym_comment] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(2207), [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_default] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2205), [anon_sym_namespace] = ACTIONS(2205), [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(2205), [anon_sym_RBRACE] = ACTIONS(2205), [anon_sym_typeof] = ACTIONS(2205), [anon_sym_import] = ACTIONS(2205), @@ -86988,7 +91358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2205), [anon_sym_LPAREN] = ACTIONS(2205), [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2205), [anon_sym_while] = ACTIONS(2205), [anon_sym_do] = ACTIONS(2205), [anon_sym_try] = ACTIONS(2205), @@ -86998,42 +91368,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2205), [anon_sym_throw] = ACTIONS(2205), [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), [anon_sym_yield] = ACTIONS(2205), [anon_sym_LBRACK] = ACTIONS(2205), [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2205), [anon_sym_DQUOTE] = ACTIONS(2205), [anon_sym_SQUOTE] = ACTIONS(2205), [anon_sym_class] = ACTIONS(2205), [anon_sym_async] = ACTIONS(2205), [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_QMARK_DOT] = ACTIONS(2205), [anon_sym_new] = ACTIONS(2205), [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), [anon_sym_PLUS] = ACTIONS(2205), [anon_sym_DASH] = ACTIONS(2205), [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_STAR_STAR] = ACTIONS(2205), [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_QMARK_QMARK] = ACTIONS(2207), - [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_QMARK_QMARK] = ACTIONS(2205), + [anon_sym_instanceof] = ACTIONS(2205), [anon_sym_TILDE] = ACTIONS(2205), [anon_sym_void] = ACTIONS(2205), [anon_sym_delete] = ACTIONS(2205), @@ -87067,301 +91436,942 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2205), [anon_sym_object] = ACTIONS(2205), [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_satisfies] = ACTIONS(2205), [anon_sym_interface] = ACTIONS(2205), [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2391), - [sym__ternary_qmark] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2207), + [sym__ternary_qmark] = ACTIONS(2207), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(4088), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(421), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym__type_query_member_expression] = STATE(3599), - [sym__type_query_subscript_expression] = STATE(3600), - [sym__type_query_call_expression] = STATE(3656), - [sym__type_query_instantiation_expression] = STATE(3722), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(2393), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [461] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7094), + [sym_string] = STATE(2541), + [sym_comment] = STATE(461), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [462] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2109), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2109), + [sym_subscript_expression] = STATE(2109), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5744), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(462), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2109), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2461), + [anon_sym_export] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_var] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2481), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_readonly] = ACTIONS(2463), + [anon_sym_get] = ACTIONS(2463), + [anon_sym_set] = ACTIONS(2463), + [anon_sym_declare] = ACTIONS(2463), + [anon_sym_public] = ACTIONS(2463), + [anon_sym_private] = ACTIONS(2463), + [anon_sym_protected] = ACTIONS(2463), + [anon_sym_override] = ACTIONS(2463), + [anon_sym_module] = ACTIONS(2463), + [anon_sym_any] = ACTIONS(2463), + [anon_sym_number] = ACTIONS(2463), + [anon_sym_boolean] = ACTIONS(2463), + [anon_sym_string] = ACTIONS(2463), + [anon_sym_symbol] = ACTIONS(2463), + [anon_sym_object] = ACTIONS(2463), + [sym_html_comment] = ACTIONS(5), + }, + [463] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7248), + [sym_string] = STATE(2541), + [sym_comment] = STATE(463), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [464] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7172), + [sym_string] = STATE(2541), + [sym_comment] = STATE(464), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7378), + [sym_string] = STATE(2541), + [sym_comment] = STATE(465), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7270), + [sym_string] = STATE(2541), + [sym_comment] = STATE(466), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7225), + [sym_string] = STATE(2541), + [sym_comment] = STATE(467), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [468] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3051), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(468), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_comment] = STATE(422), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2395), - [sym__ternary_qmark] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6601), - [sym_string] = STATE(2940), - [sym_comment] = STATE(423), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [469] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6600), + [sym_string] = STATE(2924), + [sym_comment] = STATE(469), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2397), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -87384,2382 +92394,3194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_STAR_STAR] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_QMARK_QMARK] = ACTIONS(2251), - [anon_sym_instanceof] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_satisfies] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym__ternary_qmark] = ACTIONS(2253), + [470] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3056), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(470), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_DOT] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_STAR_STAR] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_QMARK_QMARK] = ACTIONS(2207), - [anon_sym_instanceof] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [471] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(471), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_satisfies] = ACTIONS(2207), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2401), - [sym__ternary_qmark] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_comment] = STATE(426), - [sym_identifier] = ACTIONS(2403), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(2403), - [anon_sym_import] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(2403), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_LTtemplate_GT] = ACTIONS(2403), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_class] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2403), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_using] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_SLASH] = ACTIONS(2403), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2403), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_void] = ACTIONS(2403), - [anon_sym_delete] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2403), - [sym_number] = ACTIONS(2403), - [sym_private_property_identifier] = ACTIONS(2403), - [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(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(124), - [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(118), - [sym__ternary_qmark] = ACTIONS(211), + [472] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7266), + [sym_string] = STATE(2541), + [sym_comment] = STATE(472), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_comment] = STATE(427), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(2405), - [anon_sym_import] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_LTtemplate_GT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_SLASH] = ACTIONS(2405), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_void] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_PLUS_PLUS] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2405), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_super] = ACTIONS(2405), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_undefined] = ACTIONS(2405), - [anon_sym_AT] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_readonly] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_override] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(2405), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [473] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3060), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(473), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_STAR_STAR] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_QMARK_QMARK] = ACTIONS(2243), - [anon_sym_instanceof] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_satisfies] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2407), - [sym__ternary_qmark] = ACTIONS(2247), + [474] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7355), + [sym_string] = STATE(2541), + [sym_comment] = STATE(474), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_STAR_STAR] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_QMARK_QMARK] = ACTIONS(2151), - [anon_sym_instanceof] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_satisfies] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2153), - [sym__ternary_qmark] = ACTIONS(2153), + [475] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3060), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(475), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2115), + [476] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7280), + [sym_string] = STATE(2541), + [sym_comment] = STATE(476), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_QMARK_DOT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), - [anon_sym_GT_EQ] = ACTIONS(2111), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_satisfies] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2409), - [sym__ternary_qmark] = ACTIONS(2115), + [477] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(477), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6645), - [sym_string] = STATE(2940), - [sym_comment] = STATE(432), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [478] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3249), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(478), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [479] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(479), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [480] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(480), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [481] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3081), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2891), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(481), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), + [482] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7051), + [sym_string] = STATE(2541), + [sym_comment] = STATE(482), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [483] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(483), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), + [sym_html_comment] = ACTIONS(5), + }, + [484] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7427), + [sym_string] = STATE(2541), + [sym_comment] = STATE(484), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [485] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2841), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(433), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(4896), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(485), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), + [486] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2844), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(486), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2415), - [sym__ternary_qmark] = ACTIONS(2203), + [487] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(487), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(436), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5286), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [488] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(488), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2417), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2421), - [sym__ternary_qmark] = ACTIONS(2219), + [489] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3078), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(489), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_STAR_STAR] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_QMARK_QMARK] = ACTIONS(2139), - [anon_sym_instanceof] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_satisfies] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2423), - [sym__ternary_qmark] = ACTIONS(2143), + [490] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(490), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_STAR_STAR] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_QMARK_QMARK] = ACTIONS(2237), - [anon_sym_instanceof] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), + [491] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3056), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(491), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2239), - [sym__ternary_qmark] = ACTIONS(2239), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_satisfies] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2235), - [sym__ternary_qmark] = ACTIONS(2235), + [492] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym__extends_clause_single] = STATE(5491), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2185), + [493] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7269), + [sym_string] = STATE(2541), + [sym_comment] = STATE(493), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_satisfies] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym__ternary_qmark] = ACTIONS(2223), + [494] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7140), + [sym_string] = STATE(2541), + [sym_comment] = STATE(494), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_comment] = STATE(443), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2405), - [anon_sym_import] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_LTtemplate_GT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_SLASH] = ACTIONS(2405), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_void] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_PLUS_PLUS] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2405), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_super] = ACTIONS(2405), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_undefined] = ACTIONS(2405), - [anon_sym_AT] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_readonly] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_override] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(2405), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [495] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3230), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(495), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2425), - [sym__ternary_qmark] = ACTIONS(2173), + [496] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(496), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6715), - [sym_string] = STATE(2940), - [sym_comment] = STATE(445), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [497] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2846), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [498] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(498), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [499] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3056), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2501), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(499), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2427), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -89782,202 +95604,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_comment] = STATE(446), - [sym_identifier] = ACTIONS(2403), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2403), - [anon_sym_import] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2403), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_LTtemplate_GT] = ACTIONS(2403), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_class] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2403), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_using] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_SLASH] = ACTIONS(2403), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2403), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_void] = ACTIONS(2403), - [anon_sym_delete] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2403), - [sym_number] = ACTIONS(2403), - [sym_private_property_identifier] = ACTIONS(2403), - [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(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(124), - [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(118), - [sym__ternary_qmark] = ACTIONS(211), + [500] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_mapped_type_clause] = STATE(7291), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2497), + [anon_sym_export] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_readonly] = ACTIONS(2499), + [anon_sym_get] = ACTIONS(2499), + [anon_sym_set] = ACTIONS(2499), + [anon_sym_declare] = ACTIONS(2499), + [anon_sym_public] = ACTIONS(2499), + [anon_sym_private] = ACTIONS(2499), + [anon_sym_protected] = ACTIONS(2499), + [anon_sym_override] = ACTIONS(2499), + [anon_sym_module] = ACTIONS(2499), + [anon_sym_any] = ACTIONS(2499), + [anon_sym_number] = ACTIONS(2499), + [anon_sym_boolean] = ACTIONS(2499), + [anon_sym_string] = ACTIONS(2499), + [anon_sym_symbol] = ACTIONS(2499), + [anon_sym_object] = ACTIONS(2499), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6693), - [sym_string] = STATE(2940), - [sym_comment] = STATE(447), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [501] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3013), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2431), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -90000,1292 +95925,947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(2433), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2435), - [sym__ternary_qmark] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_STAR_STAR] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_QMARK_QMARK] = ACTIONS(2257), - [anon_sym_instanceof] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_satisfies] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2437), - [sym__ternary_qmark] = ACTIONS(2261), + [503] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [504] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3051), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2439), - [sym__ternary_qmark] = ACTIONS(2095), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_QMARK_DOT] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_GT_GT_GT] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2085), - [anon_sym_STAR_STAR] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ] = ACTIONS(2085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_QMARK_QMARK] = ACTIONS(2085), - [anon_sym_instanceof] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2441), - [sym__ternary_qmark] = ACTIONS(2089), - [sym_html_comment] = ACTIONS(5), - }, - [452] = { - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym__automatic_semicolon] = ACTIONS(2177), - [sym__ternary_qmark] = ACTIONS(2177), - [sym_html_comment] = ACTIONS(5), - }, - [453] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_STAR_STAR] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_QMARK_QMARK] = ACTIONS(2163), - [anon_sym_instanceof] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_satisfies] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym__automatic_semicolon] = ACTIONS(2165), - [sym__ternary_qmark] = ACTIONS(2165), + [505] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7332), + [sym_string] = STATE(2541), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_STAR_STAR] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_QMARK_QMARK] = ACTIONS(2191), - [anon_sym_instanceof] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_satisfies] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2443), - [sym__ternary_qmark] = ACTIONS(2195), + [506] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2801), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(506), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), + [507] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2824), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(455), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5061), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(507), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1093), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_STAR_STAR] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_QMARK_QMARK] = ACTIONS(2125), - [anon_sym_instanceof] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), + [508] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3081), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_satisfies] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym__ternary_qmark] = ACTIONS(2127), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1940), - [sym_subscript_expression] = STATE(1940), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4554), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(457), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_pattern] = STATE(5082), - [sym_rest_pattern] = STATE(4572), - [sym_non_null_expression] = STATE(1940), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [509] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2447), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2449), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_GT] = ACTIONS(2131), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_QMARK_DOT] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_AMP_AMP] = ACTIONS(2131), - [anon_sym_PIPE_PIPE] = ACTIONS(2131), - [anon_sym_GT_GT] = ACTIONS(2131), - [anon_sym_GT_GT_GT] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_STAR_STAR] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ] = ACTIONS(2131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_QMARK_QMARK] = ACTIONS(2131), - [anon_sym_instanceof] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_satisfies] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2451), - [sym__ternary_qmark] = ACTIONS(2135), + [510] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7377), + [sym_string] = STATE(2541), + [sym_comment] = STATE(510), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6813), - [sym_string] = STATE(2940), - [sym_comment] = STATE(459), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [511] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3060), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(511), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2453), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -91308,1191 +96888,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(2455), - [sym_html_comment] = ACTIONS(5), - }, - [460] = { - [sym_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2227), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_STAR_STAR] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_QMARK_QMARK] = ACTIONS(2227), - [anon_sym_instanceof] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_satisfies] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2457), - [sym__ternary_qmark] = ACTIONS(2231), - [sym_html_comment] = ACTIONS(5), - }, - [461] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2126), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2126), - [sym_subscript_expression] = STATE(2126), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(461), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2126), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2459), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_var] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7387), - [sym_string] = STATE(2547), - [sym_comment] = STATE(462), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [512] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3170), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7389), - [sym_string] = STATE(2547), - [sym_comment] = STATE(463), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [513] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7285), + [sym_string] = STATE(2541), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7304), - [sym_string] = STATE(2547), - [sym_comment] = STATE(464), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [514] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7158), + [sym_string] = STATE(2541), + [sym_comment] = STATE(514), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7341), - [sym_string] = STATE(2547), - [sym_comment] = STATE(465), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [515] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7160), + [sym_string] = STATE(2541), + [sym_comment] = STATE(515), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7048), - [sym_string] = STATE(2547), - [sym_comment] = STATE(466), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [516] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7336), + [sym_string] = STATE(2541), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(2489), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [467] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2945), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(467), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), + [517] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(468), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [sym_html_comment] = ACTIONS(5), - }, - [469] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2322), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(469), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7033), + [sym_string] = STATE(2541), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [470] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(470), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -92512,62 +97548,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6815), - [sym_string] = STATE(2940), - [sym_comment] = STATE(471), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [518] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2568), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6580), + [sym_string] = STATE(2924), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -92576,9 +97612,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -92601,615 +97637,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3163), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), + [519] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(472), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7437), + [sym_string] = STATE(2541), + [sym_comment] = STATE(519), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [520] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3181), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(520), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2925), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(473), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), + [521] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(521), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2234), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7182), - [sym_string] = STATE(2547), - [sym_comment] = STATE(474), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [522] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(522), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(475), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [523] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3174), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(476), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), + [524] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(524), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2925), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(477), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [525] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3051), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [sym_html_comment] = ACTIONS(5), + }, + [526] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6954), + [sym_string] = STATE(2924), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93218,9 +98468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -93243,294 +98493,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [478] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2623), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7303), - [sym_string] = STATE(2547), - [sym_comment] = STATE(478), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [479] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(479), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6710), - [sym_string] = STATE(2940), - [sym_comment] = STATE(480), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [527] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(3081), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(527), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93539,9 +98575,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -93564,106 +98600,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3160), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(481), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [528] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(2919), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(528), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -93671,2006 +98707,1043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2275), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7429), - [sym_string] = STATE(2547), - [sym_comment] = STATE(482), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [529] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6706), + [sym_string] = STATE(2924), + [sym_comment] = STATE(529), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(483), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [530] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(530), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_mapped_type_clause] = STATE(7145), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2507), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [484] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2650), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7059), - [sym_string] = STATE(2547), - [sym_comment] = STATE(484), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [485] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3106), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(485), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3092), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(486), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [531] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2432), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3172), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(531), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7282), - [sym_string] = STATE(2547), - [sym_comment] = STATE(487), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [532] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7309), + [sym_string] = STATE(2541), + [sym_comment] = STATE(532), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2246), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(488), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [533] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7153), + [sym_string] = STATE(2541), + [sym_comment] = STATE(533), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7057), - [sym_string] = STATE(2547), - [sym_comment] = STATE(489), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [534] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(534), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3187), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(490), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [491] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3246), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(491), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [535] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(535), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7104), - [sym_string] = STATE(2547), - [sym_comment] = STATE(492), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [536] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(536), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(4207), + [537] = { + [sym_import] = STATE(4272), [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3248), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(493), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [494] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3256), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(494), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [495] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7097), - [sym_string] = STATE(2547), - [sym_comment] = STATE(495), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [496] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3093), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(496), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(2547), - [sym_comment] = STATE(497), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [498] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3191), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(498), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [499] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3173), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(499), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2576), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6689), - [sym_string] = STATE(2940), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [538] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_sequence_expression] = STATE(6498), + [sym_string] = STATE(2924), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95679,9 +99752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -95704,294 +99777,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2925), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2784), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [539] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(2919), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(539), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [502] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym__extends_clause_single] = STATE(5622), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6604), - [sym_string] = STATE(2940), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [540] = { + [sym_import] = STATE(4218), + [sym_statement_block] = STATE(2919), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(540), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -96000,9 +99966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -96025,433 +99991,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2320), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(2547), - [sym_comment] = STATE(504), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [541] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(541), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3213), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [542] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(542), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym__extends_clause_single] = STATE(6189), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2230), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7337), - [sym_string] = STATE(2547), - [sym_comment] = STATE(506), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [543] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7242), + [sym_string] = STATE(2541), + [sym_comment] = STATE(543), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [507] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(507), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -96471,94 +100330,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [544] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(544), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [545] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(7267), + [sym_string] = STATE(2541), + [sym_comment] = STATE(545), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -96578,201 +100544,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7196), - [sym_string] = STATE(2547), - [sym_comment] = STATE(509), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [546] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(546), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [547] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2492), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -96792,704 +100758,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2943), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(511), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [512] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2941), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(512), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [513] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(513), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [514] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2350), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(514), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [548] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2487), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2297), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(515), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [549] = { + [sym_import] = STATE(4272), + [sym_statement_block] = STATE(2554), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(549), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [516] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2446), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2834), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(516), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_sequence_expression] = STATE(6612), - [sym_string] = STATE(2940), - [sym_comment] = STATE(517), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [550] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(550), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -97498,9 +101035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -97523,647 +101060,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2453), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2833), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(518), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [551] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2831), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(519), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [552] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2242), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7312), - [sym_string] = STATE(2547), - [sym_comment] = STATE(520), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [553] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2142), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2142), + [sym_subscript_expression] = STATE(2142), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7254), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2142), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2517), + [anon_sym_export] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2527), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_readonly] = ACTIONS(2519), + [anon_sym_get] = ACTIONS(2519), + [anon_sym_set] = ACTIONS(2519), + [anon_sym_declare] = ACTIONS(2519), + [anon_sym_public] = ACTIONS(2519), + [anon_sym_private] = ACTIONS(2519), + [anon_sym_protected] = ACTIONS(2519), + [anon_sym_override] = ACTIONS(2519), + [anon_sym_module] = ACTIONS(2519), + [anon_sym_any] = ACTIONS(2519), + [anon_sym_number] = ACTIONS(2519), + [anon_sym_boolean] = ACTIONS(2519), + [anon_sym_string] = ACTIONS(2519), + [anon_sym_symbol] = ACTIONS(2519), + [anon_sym_object] = ACTIONS(2519), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2816), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(521), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [554] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2967), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(522), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [555] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2645), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(523), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [556] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2143), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2143), + [sym_subscript_expression] = STATE(2143), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7373), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2143), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2529), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_get] = ACTIONS(2531), + [anon_sym_set] = ACTIONS(2531), + [anon_sym_declare] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_private] = ACTIONS(2531), + [anon_sym_protected] = ACTIONS(2531), + [anon_sym_override] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_any] = ACTIONS(2531), + [anon_sym_number] = ACTIONS(2531), + [anon_sym_boolean] = ACTIONS(2531), + [anon_sym_string] = ACTIONS(2531), + [anon_sym_symbol] = ACTIONS(2531), + [anon_sym_object] = ACTIONS(2531), + [sym_html_comment] = ACTIONS(5), + }, + [557] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -98183,94 +101820,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(524), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym__extends_clause_single] = STATE(6281), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [558] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [559] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [560] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2825), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -98290,415 +102138,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(525), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_mapped_type_clause] = STATE(7185), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2503), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_readonly] = ACTIONS(2499), - [anon_sym_get] = ACTIONS(2499), - [anon_sym_set] = ACTIONS(2499), - [anon_sym_declare] = ACTIONS(2499), - [anon_sym_public] = ACTIONS(2499), - [anon_sym_private] = ACTIONS(2499), - [anon_sym_protected] = ACTIONS(2499), - [anon_sym_override] = ACTIONS(2499), - [anon_sym_module] = ACTIONS(2499), - [anon_sym_any] = ACTIONS(2499), - [anon_sym_number] = ACTIONS(2499), - [anon_sym_boolean] = ACTIONS(2499), - [anon_sym_string] = ACTIONS(2499), - [anon_sym_symbol] = ACTIONS(2499), - [anon_sym_object] = ACTIONS(2499), - [sym_html_comment] = ACTIONS(5), - }, - [526] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2969), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(526), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [561] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2861), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(527), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [562] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2140), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2140), + [sym_subscript_expression] = STATE(2140), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7221), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2140), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2551), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_readonly] = ACTIONS(2543), + [anon_sym_get] = ACTIONS(2543), + [anon_sym_set] = ACTIONS(2543), + [anon_sym_declare] = ACTIONS(2543), + [anon_sym_public] = ACTIONS(2543), + [anon_sym_private] = ACTIONS(2543), + [anon_sym_protected] = ACTIONS(2543), + [anon_sym_override] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_any] = ACTIONS(2543), + [anon_sym_number] = ACTIONS(2543), + [anon_sym_boolean] = ACTIONS(2543), + [anon_sym_string] = ACTIONS(2543), + [anon_sym_symbol] = ACTIONS(2543), + [anon_sym_object] = ACTIONS(2543), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(528), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [563] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -98718,490 +102456,803 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3094), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2790), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(529), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [564] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [565] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2863), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3094), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(530), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [566] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3054), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [567] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2869), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2436), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(531), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [568] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2871), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7404), - [sym_string] = STATE(2547), - [sym_comment] = STATE(532), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [569] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3094), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(533), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [570] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2144), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2555), + [anon_sym_export] = ACTIONS(2557), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2565), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_readonly] = ACTIONS(2557), + [anon_sym_get] = ACTIONS(2557), + [anon_sym_set] = ACTIONS(2557), + [anon_sym_declare] = ACTIONS(2557), + [anon_sym_public] = ACTIONS(2557), + [anon_sym_private] = ACTIONS(2557), + [anon_sym_protected] = ACTIONS(2557), + [anon_sym_override] = ACTIONS(2557), + [anon_sym_module] = ACTIONS(2557), + [anon_sym_any] = ACTIONS(2557), + [anon_sym_number] = ACTIONS(2557), + [anon_sym_boolean] = ACTIONS(2557), + [anon_sym_string] = ACTIONS(2557), + [anon_sym_symbol] = ACTIONS(2557), + [anon_sym_object] = ACTIONS(2557), + [sym_html_comment] = ACTIONS(5), + }, + [571] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -99210,9 +103261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -99235,80 +103286,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3160), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(534), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [572] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2565), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -99317,9 +103367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -99342,3168 +103392,1775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7361), - [sym_string] = STATE(2547), - [sym_comment] = STATE(535), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [573] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2872), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1520), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(536), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_mapped_type_clause] = STATE(7453), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2507), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_readonly] = ACTIONS(2509), - [anon_sym_get] = ACTIONS(2509), - [anon_sym_set] = ACTIONS(2509), - [anon_sym_declare] = ACTIONS(2509), - [anon_sym_public] = ACTIONS(2509), - [anon_sym_private] = ACTIONS(2509), - [anon_sym_protected] = ACTIONS(2509), - [anon_sym_override] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_any] = ACTIONS(2509), - [anon_sym_number] = ACTIONS(2509), - [anon_sym_boolean] = ACTIONS(2509), - [anon_sym_string] = ACTIONS(2509), - [anon_sym_symbol] = ACTIONS(2509), - [anon_sym_object] = ACTIONS(2509), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2651), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7380), - [sym_string] = STATE(2547), - [sym_comment] = STATE(537), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [538] = { - [sym_import] = STATE(4207), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(538), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [539] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7383), - [sym_string] = STATE(2547), - [sym_comment] = STATE(539), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [540] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7386), - [sym_string] = STATE(2547), - [sym_comment] = STATE(540), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [541] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2823), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(541), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [574] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2873), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2967), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(542), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [575] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2969), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2822), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(543), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [576] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7051), - [sym_string] = STATE(2547), - [sym_comment] = STATE(544), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [577] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2867), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2969), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(545), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [578] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3017), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(546), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [579] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(2967), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2821), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(547), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [580] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(4290), - [sym_statement_block] = STATE(3160), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2814), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(548), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [581] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3084), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [582] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [583] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2877), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [549] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_sequence_expression] = STATE(7171), - [sym_string] = STATE(2547), - [sym_comment] = STATE(549), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2562), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(550), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [584] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2878), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [551] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(551), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [585] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(553), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [586] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [554] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(554), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [555] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [556] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2768), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2766), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [587] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2893), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [558] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(558), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [559] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(559), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [560] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [561] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2136), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2136), - [sym_subscript_expression] = STATE(2136), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7215), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(561), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2136), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2517), - [anon_sym_export] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_readonly] = ACTIONS(2519), - [anon_sym_get] = ACTIONS(2519), - [anon_sym_set] = ACTIONS(2519), - [anon_sym_declare] = ACTIONS(2519), - [anon_sym_public] = ACTIONS(2519), - [anon_sym_private] = ACTIONS(2519), - [anon_sym_protected] = ACTIONS(2519), - [anon_sym_override] = ACTIONS(2519), - [anon_sym_module] = ACTIONS(2519), - [anon_sym_any] = ACTIONS(2519), - [anon_sym_number] = ACTIONS(2519), - [anon_sym_boolean] = ACTIONS(2519), - [anon_sym_string] = ACTIONS(2519), - [anon_sym_symbol] = ACTIONS(2519), - [anon_sym_object] = ACTIONS(2519), - [sym_html_comment] = ACTIONS(5), - }, - [562] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(562), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(563), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [588] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3094), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2529), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [589] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -102512,9 +105169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -102537,397 +105194,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [565] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [566] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [590] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [591] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2642), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -102936,9 +105381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -102961,1171 +105406,1277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2140), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2140), - [sym_subscript_expression] = STATE(2140), - [sym_assignment_expression] = STATE(2568), + [592] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7254), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2140), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2531), - [anon_sym_export] = ACTIONS(2533), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [593] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3017), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_readonly] = ACTIONS(2533), - [anon_sym_get] = ACTIONS(2533), - [anon_sym_set] = ACTIONS(2533), - [anon_sym_declare] = ACTIONS(2533), - [anon_sym_public] = ACTIONS(2533), - [anon_sym_private] = ACTIONS(2533), - [anon_sym_protected] = ACTIONS(2533), - [anon_sym_override] = ACTIONS(2533), - [anon_sym_module] = ACTIONS(2533), - [anon_sym_any] = ACTIONS(2533), - [anon_sym_number] = ACTIONS(2533), - [anon_sym_boolean] = ACTIONS(2533), - [anon_sym_string] = ACTIONS(2533), - [anon_sym_symbol] = ACTIONS(2533), - [anon_sym_object] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2817), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [594] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2137), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2137), + [sym_subscript_expression] = STATE(2137), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7337), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2137), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2567), + [anon_sym_export] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2577), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_readonly] = ACTIONS(2569), + [anon_sym_get] = ACTIONS(2569), + [anon_sym_set] = ACTIONS(2569), + [anon_sym_declare] = ACTIONS(2569), + [anon_sym_public] = ACTIONS(2569), + [anon_sym_private] = ACTIONS(2569), + [anon_sym_protected] = ACTIONS(2569), + [anon_sym_override] = ACTIONS(2569), + [anon_sym_module] = ACTIONS(2569), + [anon_sym_any] = ACTIONS(2569), + [anon_sym_number] = ACTIONS(2569), + [anon_sym_boolean] = ACTIONS(2569), + [anon_sym_string] = ACTIONS(2569), + [anon_sym_symbol] = ACTIONS(2569), + [anon_sym_object] = ACTIONS(2569), + [sym_html_comment] = ACTIONS(5), + }, + [595] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [596] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [597] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [573] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [598] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2778), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [599] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [600] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2802), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [601] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [602] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [603] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -104145,909 +106696,1121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [604] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2849), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [605] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2325), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [606] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2321), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2543), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [607] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2848), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [608] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3007), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [609] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [610] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3090), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), + [611] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2316), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [612] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2313), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [613] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2307), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [614] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -105056,9 +107819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -105081,79 +107844,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [615] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -105162,9 +107925,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -105187,105 +107950,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [616] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2304), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [617] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2545), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -105293,185 +108162,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2910), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [618] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [619] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [620] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2839), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [621] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -105480,9 +108561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -105505,2093 +108586,3153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2555), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [622] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2838), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [623] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [624] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [625] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5056), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(625), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2044), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2581), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), + [sym_html_comment] = ACTIONS(5), + }, + [626] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [594] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [627] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [596] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2587), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2581), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [628] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2139), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2139), - [sym_subscript_expression] = STATE(2139), - [sym_assignment_expression] = STATE(2568), + [629] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7331), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2139), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2547), - [anon_sym_export] = ACTIONS(2549), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2555), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_readonly] = ACTIONS(2549), - [anon_sym_get] = ACTIONS(2549), - [anon_sym_set] = ACTIONS(2549), - [anon_sym_declare] = ACTIONS(2549), - [anon_sym_public] = ACTIONS(2549), - [anon_sym_private] = ACTIONS(2549), - [anon_sym_protected] = ACTIONS(2549), - [anon_sym_override] = ACTIONS(2549), - [anon_sym_module] = ACTIONS(2549), - [anon_sym_any] = ACTIONS(2549), - [anon_sym_number] = ACTIONS(2549), - [anon_sym_boolean] = ACTIONS(2549), - [anon_sym_string] = ACTIONS(2549), - [anon_sym_symbol] = ACTIONS(2549), - [anon_sym_object] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [630] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [631] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [632] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [633] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3105), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [634] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2803), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [635] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2804), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [636] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [637] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [638] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2830), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [639] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2829), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [640] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [641] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2828), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [642] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [643] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2827), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [644] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [645] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(645), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2970), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [646] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [647] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2141), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7295), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2141), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2589), + [anon_sym_export] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2595), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2599), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_readonly] = ACTIONS(2591), + [anon_sym_get] = ACTIONS(2591), + [anon_sym_set] = ACTIONS(2591), + [anon_sym_declare] = ACTIONS(2591), + [anon_sym_public] = ACTIONS(2591), + [anon_sym_private] = ACTIONS(2591), + [anon_sym_protected] = ACTIONS(2591), + [anon_sym_override] = ACTIONS(2591), + [anon_sym_module] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2591), + [anon_sym_number] = ACTIONS(2591), + [anon_sym_boolean] = ACTIONS(2591), + [anon_sym_string] = ACTIONS(2591), + [anon_sym_symbol] = ACTIONS(2591), + [anon_sym_object] = ACTIONS(2591), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [648] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2826), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3066), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [649] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2031), - [sym_subscript_expression] = STATE(2031), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4987), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2031), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2559), - [anon_sym_export] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_namespace] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1109), + [650] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2823), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_readonly] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_declare] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_protected] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_any] = ACTIONS(1708), - [anon_sym_number] = ACTIONS(1708), - [anon_sym_boolean] = ACTIONS(1708), - [anon_sym_string] = ACTIONS(1708), - [anon_sym_symbol] = ACTIONS(1708), - [anon_sym_object] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [612] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [651] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107600,9 +111741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -107625,291 +111766,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3119), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [652] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2398), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [653] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7010), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(653), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2145), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2601), + [anon_sym_export] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_readonly] = ACTIONS(2603), + [anon_sym_get] = ACTIONS(2603), + [anon_sym_set] = ACTIONS(2603), + [anon_sym_declare] = ACTIONS(2603), + [anon_sym_public] = ACTIONS(2603), + [anon_sym_private] = ACTIONS(2603), + [anon_sym_protected] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_any] = ACTIONS(2603), + [anon_sym_number] = ACTIONS(2603), + [anon_sym_boolean] = ACTIONS(2603), + [anon_sym_string] = ACTIONS(2603), + [anon_sym_symbol] = ACTIONS(2603), + [anon_sym_object] = ACTIONS(2603), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107918,9 +112059,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -107943,1277 +112084,1383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [655] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2822), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [656] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2545), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2801), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [657] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(619), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [658] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(620), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2144), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2567), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2577), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_readonly] = ACTIONS(2569), - [anon_sym_get] = ACTIONS(2569), - [anon_sym_set] = ACTIONS(2569), - [anon_sym_declare] = ACTIONS(2569), - [anon_sym_public] = ACTIONS(2569), - [anon_sym_private] = ACTIONS(2569), - [anon_sym_protected] = ACTIONS(2569), - [anon_sym_override] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_any] = ACTIONS(2569), - [anon_sym_number] = ACTIONS(2569), - [anon_sym_boolean] = ACTIONS(2569), - [anon_sym_string] = ACTIONS(2569), - [anon_sym_symbol] = ACTIONS(2569), - [anon_sym_object] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2800), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(621), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [659] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(659), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(622), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), + [660] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(623), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [661] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(624), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [662] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2309), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(625), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [663] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3002), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [664] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2820), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [665] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [666] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [667] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -109233,1365 +113480,1259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2839), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [668] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(629), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [669] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(630), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [670] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3124), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(631), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [671] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2958), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(632), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [672] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(672), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(633), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [673] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3173), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(673), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2860), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(634), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [674] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2797), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [675] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(636), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [676] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4592), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2613), + [anon_sym_export] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2621), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2623), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_readonly] = ACTIONS(2615), + [anon_sym_get] = ACTIONS(2615), + [anon_sym_set] = ACTIONS(2615), + [anon_sym_declare] = ACTIONS(2615), + [anon_sym_public] = ACTIONS(2615), + [anon_sym_private] = ACTIONS(2615), + [anon_sym_protected] = ACTIONS(2615), + [anon_sym_override] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_any] = ACTIONS(2615), + [anon_sym_number] = ACTIONS(2615), + [anon_sym_boolean] = ACTIONS(2615), + [anon_sym_string] = ACTIONS(2615), + [anon_sym_symbol] = ACTIONS(2615), + [anon_sym_object] = ACTIONS(2615), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(637), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [677] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(677), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [sym_html_comment] = ACTIONS(5), - }, - [638] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(638), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(639), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [678] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3226), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(678), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(640), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [679] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(679), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -110611,729 +114752,623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(641), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [680] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(680), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(642), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [681] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3156), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(681), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2861), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(643), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [682] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3161), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(682), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2231), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(644), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [683] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3160), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(683), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), + [684] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), [sym_expression] = STATE(3159), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(645), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(684), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), + [685] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(646), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [sym_html_comment] = ACTIONS(5), - }, - [647] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(647), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(685), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2625), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -111353,167 +115388,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3131), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [686] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(686), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [687] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(687), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(649), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [688] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(688), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [689] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(689), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [690] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3146), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(690), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), + [sym_html_comment] = ACTIONS(5), + }, + [691] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(691), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -111522,9 +115981,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -111547,291 +116006,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(650), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [692] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3056), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(651), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [693] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(652), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [694] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [695] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -111840,9 +116405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -111865,1907 +116430,1801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(653), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [696] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2543), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(654), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [697] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3111), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(697), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(655), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [698] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3109), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(698), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3120), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(656), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [699] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3034), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(699), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(657), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [700] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3087), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3070), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(658), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [701] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(659), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [702] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(660), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [703] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(661), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [704] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2930), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2876), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(662), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [705] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2933), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(705), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3052), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(663), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [706] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(706), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [664] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2837), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(664), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [707] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2139), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2139), + [sym_subscript_expression] = STATE(2139), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7123), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(707), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2139), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2629), + [anon_sym_type] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2637), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [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), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2795), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(665), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [708] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [666] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(666), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3084), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(667), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [709] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(709), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(668), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [710] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(710), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3115), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [711] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2948), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(711), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(670), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [712] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -113773,79 +118232,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(671), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [713] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2960), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(713), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [714] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(714), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [715] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2962), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(715), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [716] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(716), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2639), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(717), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -113854,9 +118737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -113879,291 +118762,1139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(672), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [718] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2974), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(718), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(673), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [719] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3197), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(719), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(674), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [720] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3179), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), + [sym_html_comment] = ACTIONS(5), + }, + [721] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2607), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [722] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(722), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [723] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(723), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [724] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [725] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3067), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), + [sym_html_comment] = ACTIONS(5), + }, + [726] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3199), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [727] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [728] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -114172,9 +119903,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -114197,1351 +119928,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(675), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [729] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3114), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(676), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [730] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1588), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3113), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(677), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [731] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(678), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [732] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(679), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [733] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3208), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3108), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(680), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [734] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3227), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), - [sym_html_comment] = ACTIONS(5), - }, - [681] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2141), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2141), - [sym_subscript_expression] = STATE(2141), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7352), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(681), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2141), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2579), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [682] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3071), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(682), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [683] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3079), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(683), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [684] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3080), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(684), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [685] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(685), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(686), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [735] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3218), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [687] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(687), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [736] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -115550,9 +120751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -115575,111 +120776,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [688] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2584), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(688), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [737] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3221), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2138), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2138), + [sym_subscript_expression] = STATE(2138), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7106), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2138), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(2641), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_readonly] = ACTIONS(2643), + [anon_sym_get] = ACTIONS(2643), + [anon_sym_set] = ACTIONS(2643), + [anon_sym_declare] = ACTIONS(2643), + [anon_sym_public] = ACTIONS(2643), + [anon_sym_private] = ACTIONS(2643), + [anon_sym_protected] = ACTIONS(2643), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2643), + [anon_sym_any] = ACTIONS(2643), + [anon_sym_number] = ACTIONS(2643), + [anon_sym_boolean] = ACTIONS(2643), + [anon_sym_string] = ACTIONS(2643), + [anon_sym_symbol] = ACTIONS(2643), + [anon_sym_object] = ACTIONS(2643), + [sym_html_comment] = ACTIONS(5), + }, + [739] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3222), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(739), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [740] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(740), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -115699,485 +121218,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(689), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [741] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3224), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(741), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [742] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3203), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(742), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [743] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1938), - [sym_subscript_expression] = STATE(1938), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(4563), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(690), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1938), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2591), - [anon_sym_export] = ACTIONS(2593), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [744] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3228), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2599), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_readonly] = ACTIONS(2593), - [anon_sym_get] = ACTIONS(2593), - [anon_sym_set] = ACTIONS(2593), - [anon_sym_declare] = ACTIONS(2593), - [anon_sym_public] = ACTIONS(2593), - [anon_sym_private] = ACTIONS(2593), - [anon_sym_protected] = ACTIONS(2593), - [anon_sym_override] = ACTIONS(2593), - [anon_sym_module] = ACTIONS(2593), - [anon_sym_any] = ACTIONS(2593), - [anon_sym_number] = ACTIONS(2593), - [anon_sym_boolean] = ACTIONS(2593), - [anon_sym_string] = ACTIONS(2593), - [anon_sym_symbol] = ACTIONS(2593), - [anon_sym_object] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [691] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3104), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), + [745] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(691), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2587), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [746] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2971), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(692), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [747] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [748] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(693), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [749] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -116186,9 +122129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -116202,7 +122145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2545), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), @@ -116211,105 +122154,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [694] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [750] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -116317,1563 +122260,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [695] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(695), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [751] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(751), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3101), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(696), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), + [752] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(752), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(697), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [753] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2589), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(753), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3099), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(698), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [754] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(754), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(699), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [755] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2228), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [700] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(700), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(701), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [756] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2832), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(702), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [757] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7030), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3734), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7034), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1570), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_void] = ACTIONS(1570), + [anon_sym_delete] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(1588), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(703), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [758] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(3059), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2542), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(704), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [759] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2840), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(759), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [705] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(705), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(706), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [760] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2539), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(707), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [761] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(761), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2137), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2137), - [sym_subscript_expression] = STATE(2137), - [sym_assignment_expression] = STATE(2568), + [762] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(6998), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2563), [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7004), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(708), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2137), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2603), - [anon_sym_export] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7261), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(762), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2611), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1424), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1392), + [anon_sym_readonly] = ACTIONS(1392), + [anon_sym_get] = ACTIONS(1392), + [anon_sym_set] = ACTIONS(1392), + [anon_sym_declare] = ACTIONS(1392), + [anon_sym_public] = ACTIONS(1392), + [anon_sym_private] = ACTIONS(1392), + [anon_sym_protected] = ACTIONS(1392), + [anon_sym_override] = ACTIONS(1392), + [anon_sym_module] = ACTIONS(1392), + [anon_sym_any] = ACTIONS(1392), + [anon_sym_number] = ACTIONS(1392), + [anon_sym_boolean] = ACTIONS(1392), + [anon_sym_string] = ACTIONS(1392), + [anon_sym_symbol] = ACTIONS(1392), + [anon_sym_object] = ACTIONS(1392), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(709), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [763] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(763), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -117882,9 +123613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -117907,1563 +123638,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [710] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(710), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(711), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [764] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(764), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(712), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [713] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(713), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [765] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2540), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2328), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(714), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [766] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2128), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7325), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2128), + [sym_subscript_expression] = STATE(2128), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3765), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7384), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2128), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1460), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_readonly] = ACTIONS(1436), + [anon_sym_get] = ACTIONS(1436), + [anon_sym_set] = ACTIONS(1436), + [anon_sym_declare] = ACTIONS(1436), + [anon_sym_public] = ACTIONS(1436), + [anon_sym_private] = ACTIONS(1436), + [anon_sym_protected] = ACTIONS(1436), + [anon_sym_override] = ACTIONS(1436), + [anon_sym_module] = ACTIONS(1436), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [sym_html_comment] = ACTIONS(5), }, - [715] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(715), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [767] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [716] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3137), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(716), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), + [768] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2604), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2307), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(717), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [769] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3251), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3207), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(718), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [719] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2806), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(719), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [770] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(770), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [720] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(720), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [721] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(721), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [722] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(722), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(723), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), + [771] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(771), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(724), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [772] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(772), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -119472,9 +124567,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -119497,1139 +124592,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [725] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(725), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2232), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [729] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3095), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(730), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [773] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(773), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [731] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2138), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2138), - [sym_subscript_expression] = STATE(2138), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7244), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(731), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2138), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2615), - [anon_sym_export] = ACTIONS(2617), - [anon_sym_type] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2621), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2625), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2143), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2143), - [sym_subscript_expression] = STATE(2143), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7273), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(732), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2143), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2627), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [774] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(774), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2633), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(733), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [775] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2564), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(775), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3228), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(734), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [776] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(776), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(735), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [777] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2569), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(777), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120638,9 +125097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -120663,397 +125122,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(736), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), + [778] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2609), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(778), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [737] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2952), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(737), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [779] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2716), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(779), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [sym_html_comment] = ACTIONS(5), - }, - [738] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(738), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(739), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [780] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(780), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121062,9 +125415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -121087,715 +125440,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [740] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(740), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [741] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2785), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(741), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [742] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3144), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(742), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [743] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(743), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [744] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3242), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(744), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [745] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3243), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(745), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(746), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [781] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2576), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(781), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121804,9 +125521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -121829,429 +125546,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [747] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(747), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [748] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(2934), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(748), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3068), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(6992), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3709), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7255), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(749), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1574), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), + [782] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(782), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1574), - [anon_sym_delete] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1592), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_readonly] = ACTIONS(1568), - [anon_sym_get] = ACTIONS(1568), - [anon_sym_set] = ACTIONS(1568), - [anon_sym_declare] = ACTIONS(1568), - [anon_sym_public] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_number] = ACTIONS(1568), - [anon_sym_boolean] = ACTIONS(1568), - [anon_sym_string] = ACTIONS(1568), - [anon_sym_symbol] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(750), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [783] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(783), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -122271,93 +125776,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(751), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [784] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2711), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(784), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -122377,941 +125882,1577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2786), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(752), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [785] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(785), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [786] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2075), + [sym_expression] = STATE(2720), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7197), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2075), + [sym_subscript_expression] = STATE(2075), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3761), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7199), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(786), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2075), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(1494), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1494), + [anon_sym_delete] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), + [sym_private_property_identifier] = ACTIONS(1520), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_object] = ACTIONS(1486), + [sym_html_comment] = ACTIONS(5), + }, + [787] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(787), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [753] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3254), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(753), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [788] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(788), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), + [sym_html_comment] = ACTIONS(5), + }, + [789] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(754), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), + [790] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(790), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [755] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(755), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [791] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(791), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [756] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(756), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [792] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(792), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3260), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(757), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [793] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3139), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(793), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [758] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3264), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(758), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [794] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(794), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3241), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(759), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [795] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(795), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), [sym_html_comment] = ACTIONS(5), }, - [760] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(760), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [796] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(796), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [797] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(1897), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7116), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(1897), + [sym_subscript_expression] = STATE(1897), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3683), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7302), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(797), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1897), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(175), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1133), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(186), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [anon_sym_public] = ACTIONS(1119), + [anon_sym_private] = ACTIONS(1119), + [anon_sym_protected] = ACTIONS(1119), + [anon_sym_override] = ACTIONS(1119), + [anon_sym_module] = ACTIONS(1119), + [anon_sym_any] = ACTIONS(1119), + [anon_sym_number] = ACTIONS(1119), + [anon_sym_boolean] = ACTIONS(1119), + [anon_sym_string] = ACTIONS(1119), + [anon_sym_symbol] = ACTIONS(1119), + [anon_sym_object] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), + }, + [798] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(798), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), + [sym_html_comment] = ACTIONS(5), + }, + [799] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(799), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(2639), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -123331,3453 +127472,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [761] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3239), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(761), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [800] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2051), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7423), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2051), + [sym_subscript_expression] = STATE(2051), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3726), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7003), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(800), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2051), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_void] = ACTIONS(1638), + [anon_sym_delete] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1656), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_readonly] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_override] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_object] = ACTIONS(1632), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3235), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(762), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), + [801] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3135), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(801), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3229), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(763), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [764] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3224), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(764), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [765] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3231), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(765), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [766] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [767] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [768] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(768), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [769] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3212), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(769), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [770] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3215), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(770), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [771] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3214), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(771), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [772] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(772), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [773] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(773), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2569), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(774), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(775), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [776] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2142), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2142), - [sym_subscript_expression] = STATE(2142), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7085), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(776), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2142), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(2639), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_type] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2645), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [777] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(777), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(778), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(779), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(780), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3174), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(781), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2699), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(782), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [783] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(783), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(784), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [785] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(785), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [786] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3714), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7193), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(786), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2084), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_namespace] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1610), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1610), - [anon_sym_delete] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1634), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_get] = ACTIONS(1602), - [anon_sym_set] = ACTIONS(1602), - [anon_sym_declare] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_private] = ACTIONS(1602), - [anon_sym_protected] = ACTIONS(1602), - [anon_sym_override] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1602), - [anon_sym_number] = ACTIONS(1602), - [anon_sym_boolean] = ACTIONS(1602), - [anon_sym_string] = ACTIONS(1602), - [anon_sym_symbol] = ACTIONS(1602), - [anon_sym_object] = ACTIONS(1602), - [sym_html_comment] = ACTIONS(5), - }, - [787] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2674), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(787), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [788] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(788), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(789), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2013), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7163), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2013), - [sym_subscript_expression] = STATE(2013), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3771), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(790), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2013), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2651), - [sym_private_property_identifier] = ACTIONS(1027), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1646), - [anon_sym_set] = ACTIONS(1646), - [anon_sym_declare] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_private] = ACTIONS(1646), - [anon_sym_protected] = ACTIONS(1646), - [anon_sym_override] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1646), - [anon_sym_any] = ACTIONS(1646), - [anon_sym_number] = ACTIONS(1646), - [anon_sym_boolean] = ACTIONS(1646), - [anon_sym_string] = ACTIONS(1646), - [anon_sym_symbol] = ACTIONS(1646), - [anon_sym_object] = ACTIONS(1646), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3205), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(791), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [792] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(792), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [793] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(793), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), + [802] = { + [sym_import] = STATE(4218), + [sym_parenthesized_expression] = STATE(2028), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(2715), + [sym_yield_expression] = STATE(3004), + [sym_object] = STATE(2924), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2924), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(3004), + [sym_glimmer_opening_tag] = STATE(5607), + [sym_jsx_element] = STATE(3004), + [sym_jsx_opening_element] = STATE(3854), + [sym_jsx_self_closing_element] = STATE(3004), + [sym_class] = STATE(2924), + [sym_function_expression] = STATE(2924), + [sym_generator_function] = STATE(2924), + [sym_arrow_function] = STATE(2924), + [sym__call_signature] = STATE(7382), + [sym_call_expression] = STATE(2924), + [sym_new_expression] = STATE(3004), + [sym_await_expression] = STATE(3004), + [sym_member_expression] = STATE(2028), + [sym_subscript_expression] = STATE(2028), + [sym_assignment_expression] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3722), + [sym_augmented_assignment_expression] = STATE(3004), + [sym__destructuring_pattern] = STATE(7381), + [sym_ternary_expression] = STATE(3004), + [sym_binary_expression] = STATE(3004), + [sym_unary_expression] = STATE(3004), + [sym_update_expression] = STATE(3004), + [sym_string] = STATE(2924), + [sym_comment] = STATE(802), + [sym_template_string] = STATE(2924), + [sym_regex] = STATE(2924), + [sym_meta_property] = STATE(2924), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2028), + [sym_as_expression] = STATE(3004), + [sym_satisfies_expression] = STATE(3004), + [sym_instantiation_expression] = STATE(3004), + [sym_internal_module] = STATE(3004), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5619), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_namespace] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1018), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1532), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126786,9 +127747,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_function] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -126811,111 +127772,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_readonly] = ACTIONS(1532), + [anon_sym_get] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_declare] = ACTIONS(1532), + [anon_sym_public] = ACTIONS(1532), + [anon_sym_private] = ACTIONS(1532), + [anon_sym_protected] = ACTIONS(1532), + [anon_sym_override] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_any] = ACTIONS(1532), + [anon_sym_number] = ACTIONS(1532), + [anon_sym_boolean] = ACTIONS(1532), + [anon_sym_string] = ACTIONS(1532), + [anon_sym_symbol] = ACTIONS(1532), + [anon_sym_object] = ACTIONS(1532), [sym_html_comment] = ACTIONS(5), }, - [794] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(794), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), + [803] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2003), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7299), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(803), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2003), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2565), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -126935,1505 +127896,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [795] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(795), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2087), - [sym_expression] = STATE(2953), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7319), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3721), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7378), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(796), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2087), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), + [804] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(804), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1506), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1506), - [anon_sym_delete] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1524), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_get] = ACTIONS(1498), - [anon_sym_set] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_private] = ACTIONS(1498), - [anon_sym_protected] = ACTIONS(1498), - [anon_sym_override] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_any] = ACTIONS(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_object] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [797] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2112), - [sym_expression] = STATE(3009), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7145), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2112), - [sym_subscript_expression] = STATE(2112), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3782), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7154), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(797), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2112), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1109), + [805] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(805), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_delete] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1558), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_get] = ACTIONS(1534), - [anon_sym_set] = ACTIONS(1534), - [anon_sym_declare] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_protected] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_module] = ACTIONS(1534), - [anon_sym_any] = ACTIONS(1534), - [anon_sym_number] = ACTIONS(1534), - [anon_sym_boolean] = ACTIONS(1534), - [anon_sym_string] = ACTIONS(1534), - [anon_sym_symbol] = ACTIONS(1534), - [anon_sym_object] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [798] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7152), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3770), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7147), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(798), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(1470), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(63), + [806] = { + [sym_import] = STATE(4272), + [sym_parenthesized_expression] = STATE(2114), + [sym_expression] = STATE(3015), + [sym_primary_expression] = STATE(2261), + [sym_yield_expression] = STATE(2563), + [sym_object] = STATE(2541), + [sym_object_pattern] = STATE(4245), + [sym_array] = STATE(2541), + [sym_array_pattern] = STATE(4245), + [sym_glimmer_template] = STATE(2563), + [sym_glimmer_opening_tag] = STATE(5559), + [sym_jsx_element] = STATE(2563), + [sym_jsx_opening_element] = STATE(3862), + [sym_jsx_self_closing_element] = STATE(2563), + [sym_class] = STATE(2541), + [sym_function_expression] = STATE(2541), + [sym_generator_function] = STATE(2541), + [sym_arrow_function] = STATE(2541), + [sym__call_signature] = STATE(7264), + [sym_call_expression] = STATE(2541), + [sym_new_expression] = STATE(2563), + [sym_await_expression] = STATE(2563), + [sym_member_expression] = STATE(2114), + [sym_subscript_expression] = STATE(2114), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3728), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2541), + [sym_comment] = STATE(806), + [sym_template_string] = STATE(2541), + [sym_regex] = STATE(2541), + [sym_meta_property] = STATE(2541), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(2114), + [sym_as_expression] = STATE(2563), + [sym_satisfies_expression] = STATE(2563), + [sym_instantiation_expression] = STATE(2563), + [sym_internal_module] = STATE(2563), + [sym_type_parameters] = STATE(6459), + [aux_sym_export_statement_repeat1] = STATE(5610), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_namespace] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_typeof] = ACTIONS(1604), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1488), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1113), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(1622), + [sym_this] = ACTIONS(190), + [sym_super] = ACTIONS(190), + [sym_true] = ACTIONS(190), + [sym_false] = ACTIONS(190), + [sym_null] = ACTIONS(190), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_object] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_readonly] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_declare] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_protected] = ACTIONS(1598), + [anon_sym_override] = ACTIONS(1598), + [anon_sym_module] = ACTIONS(1598), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [sym_html_comment] = ACTIONS(5), }, - [799] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(799), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [807] = { + [sym_namespace_export] = STATE(6507), + [sym_export_clause] = STATE(5615), + [sym_declaration] = STATE(1463), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), + [sym_comment] = STATE(807), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_as] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(212), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [800] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(800), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(801), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(802), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(2651), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(803), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(2045), - [sym_expression] = STATE(2609), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7106), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(2045), - [sym_subscript_expression] = STATE(2045), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3702), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7131), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(804), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2045), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1394), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [805] = { - [sym_import] = STATE(4290), - [sym_parenthesized_expression] = STATE(2026), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(2881), - [sym_yield_expression] = STATE(2982), - [sym_object] = STATE(2940), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2940), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2982), - [sym_glimmer_opening_tag] = STATE(5508), - [sym_jsx_element] = STATE(2982), - [sym_jsx_opening_element] = STATE(3884), - [sym_jsx_self_closing_element] = STATE(2982), - [sym_class] = STATE(2940), - [sym_function_expression] = STATE(2940), - [sym_generator_function] = STATE(2940), - [sym_arrow_function] = STATE(2940), - [sym__call_signature] = STATE(7370), - [sym_call_expression] = STATE(2940), - [sym_new_expression] = STATE(2982), - [sym_await_expression] = STATE(2982), - [sym_member_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2982), - [sym__augmented_assignment_lhs] = STATE(3712), - [sym_augmented_assignment_expression] = STATE(2982), - [sym__destructuring_pattern] = STATE(7359), - [sym_ternary_expression] = STATE(2982), - [sym_binary_expression] = STATE(2982), - [sym_unary_expression] = STATE(2982), - [sym_update_expression] = STATE(2982), - [sym_string] = STATE(2940), - [sym_comment] = STATE(805), - [sym_template_string] = STATE(2940), - [sym_regex] = STATE(2940), - [sym_meta_property] = STATE(2940), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(2026), - [sym_as_expression] = STATE(2982), - [sym_satisfies_expression] = STATE(2982), - [sym_instantiation_expression] = STATE(2982), - [sym_internal_module] = STATE(2982), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5470), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(973), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(977), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_object] = ACTIONS(1406), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [sym_import] = STATE(4207), - [sym_parenthesized_expression] = STATE(1900), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2235), - [sym_yield_expression] = STATE(2568), - [sym_object] = STATE(2547), - [sym_object_pattern] = STATE(4288), - [sym_array] = STATE(2547), - [sym_array_pattern] = STATE(4288), - [sym_glimmer_template] = STATE(2568), - [sym_glimmer_opening_tag] = STATE(5599), - [sym_jsx_element] = STATE(2568), - [sym_jsx_opening_element] = STATE(3849), - [sym_jsx_self_closing_element] = STATE(2568), - [sym_class] = STATE(2547), - [sym_function_expression] = STATE(2547), - [sym_generator_function] = STATE(2547), - [sym_arrow_function] = STATE(2547), - [sym__call_signature] = STATE(7074), - [sym_call_expression] = STATE(2547), - [sym_new_expression] = STATE(2568), - [sym_await_expression] = STATE(2568), - [sym_member_expression] = STATE(1900), - [sym_subscript_expression] = STATE(1900), - [sym_assignment_expression] = STATE(2568), - [sym__augmented_assignment_lhs] = STATE(3711), - [sym_augmented_assignment_expression] = STATE(2568), - [sym__destructuring_pattern] = STATE(7166), - [sym_ternary_expression] = STATE(2568), - [sym_binary_expression] = STATE(2568), - [sym_unary_expression] = STATE(2568), - [sym_update_expression] = STATE(2568), - [sym_string] = STATE(2547), - [sym_comment] = STATE(806), - [sym_template_string] = STATE(2547), - [sym_regex] = STATE(2547), - [sym_meta_property] = STATE(2547), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4683), - [sym_non_null_expression] = STATE(1900), - [sym_as_expression] = STATE(2568), - [sym_satisfies_expression] = STATE(2568), - [sym_instantiation_expression] = STATE(2568), - [sym_internal_module] = STATE(2568), - [sym_type_parameters] = STATE(6493), - [aux_sym_export_statement_repeat1] = STATE(5557), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1113), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1117), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [807] = { - [sym_namespace_export] = STATE(6533), - [sym_export_clause] = STATE(5430), - [sym_declaration] = STATE(1561), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), - [sym_comment] = STATE(807), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { - [sym_namespace_export] = STATE(6533), - [sym_export_clause] = STATE(5430), - [sym_declaration] = STATE(1561), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), - [sym_comment] = STATE(808), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [808] = { + [sym_namespace_export] = STATE(6507), + [sym_export_clause] = STATE(5615), + [sym_declaration] = STATE(1463), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), + [sym_comment] = STATE(808), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_as] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(212), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [809] = { - [sym_namespace_export] = STATE(6533), - [sym_export_clause] = STATE(5430), - [sym_declaration] = STATE(1561), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), + [sym_namespace_export] = STATE(6507), + [sym_export_clause] = STATE(5615), + [sym_declaration] = STATE(1463), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(809), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), @@ -128441,7 +128448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2661), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_RBRACE] = ACTIONS(2712), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), @@ -128450,16 +128457,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2677), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2683), [anon_sym_async] = ACTIONS(2685), [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -128489,55 +128496,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2702), [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2706), [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [810] = { - [sym__call_signature] = STATE(7260), - [sym_string] = STATE(4582), + [sym__call_signature] = STATE(7278), + [sym_string] = STATE(4548), [sym_comment] = STATE(810), - [sym_formal_parameters] = STATE(4683), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_type_parameters] = STATE(6493), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_formal_parameters] = STATE(4813), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_type_parameters] = STATE(6459), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -128545,24 +128552,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -128595,7 +128602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -128609,35 +128616,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2716), [anon_sym_object] = ACTIONS(2716), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [811] = { - [sym__call_signature] = STATE(7260), - [sym_string] = STATE(4582), + [sym__call_signature] = STATE(7278), + [sym_string] = STATE(4548), [sym_comment] = STATE(811), - [sym_formal_parameters] = STATE(4683), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_type_parameters] = STATE(6493), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_formal_parameters] = STATE(4813), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_type_parameters] = STATE(6459), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -128645,24 +128652,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -128695,7 +128702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -128709,35 +128716,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2716), [anon_sym_object] = ACTIONS(2716), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [812] = { - [sym__call_signature] = STATE(7260), - [sym_string] = STATE(4582), + [sym__call_signature] = STATE(7278), + [sym_string] = STATE(4548), [sym_comment] = STATE(812), - [sym_formal_parameters] = STATE(4683), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_type_parameters] = STATE(6493), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_formal_parameters] = STATE(4813), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_type_parameters] = STATE(6459), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -128745,24 +128752,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -128795,7 +128802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -128809,38 +128816,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2716), [anon_sym_object] = ACTIONS(2716), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [813] = { - [sym_declaration] = STATE(1514), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), + [sym_declaration] = STATE(1563), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(813), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2712), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), @@ -128848,16 +128855,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2677), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2683), [anon_sym_async] = ACTIONS(2685), [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -128887,58 +128894,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2742), [anon_sym_interface] = ACTIONS(2706), [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_declaration] = STATE(1514), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), + [sym_declaration] = STATE(1563), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(814), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_RBRACE] = ACTIONS(2710), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), @@ -128947,16 +128954,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2677), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2683), [anon_sym_async] = ACTIONS(2685), [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -128986,59 +128993,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2742), [anon_sym_interface] = ACTIONS(2706), [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [815] = { - [sym_declaration] = STATE(1514), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), + [sym_declaration] = STATE(1563), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(815), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2667), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), @@ -129046,16 +129053,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2677), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2683), [anon_sym_async] = ACTIONS(2685), [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129085,52 +129092,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2742), [anon_sym_interface] = ACTIONS(2706), [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [816] = { - [sym_namespace_export] = STATE(6533), - [sym_export_clause] = STATE(5430), - [sym_declaration] = STATE(1561), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), + [sym_namespace_export] = STATE(6507), + [sym_export_clause] = STATE(5615), + [sym_declaration] = STATE(1463), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(816), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), @@ -129138,24 +129145,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2661), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), [anon_sym_const] = ACTIONS(2675), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2683), [anon_sym_async] = ACTIONS(2685), [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129185,50 +129192,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2702), [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2706), [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [817] = { - [sym_namespace_export] = STATE(6822), - [sym_export_clause] = STATE(5411), - [sym_declaration] = STATE(1347), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_class_declaration] = STATE(1327), - [sym_function_declaration] = STATE(1327), - [sym_generator_function_declaration] = STATE(1327), + [sym_namespace_export] = STATE(6877), + [sym_export_clause] = STATE(5440), + [sym_declaration] = STATE(1341), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_class_declaration] = STATE(1340), + [sym_function_declaration] = STATE(1340), + [sym_generator_function_declaration] = STATE(1340), [sym_comment] = STATE(817), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1327), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(1348), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [aux_sym_export_statement_repeat1] = STATE(5102), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1340), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(1342), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [aux_sym_export_statement_repeat1] = STATE(4973), [anon_sym_STAR] = ACTIONS(2748), [anon_sym_default] = ACTIONS(2750), [anon_sym_type] = ACTIONS(2752), @@ -129236,24 +129243,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2756), [anon_sym_namespace] = ACTIONS(2758), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2760), [anon_sym_var] = ACTIONS(2762), [anon_sym_let] = ACTIONS(2764), [anon_sym_const] = ACTIONS(2766), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2770), [anon_sym_async] = ACTIONS(2772), [anon_sym_function] = ACTIONS(2774), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129283,50 +129290,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2776), [anon_sym_module] = ACTIONS(2778), [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2782), [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [818] = { - [sym_namespace_export] = STATE(6664), - [sym_export_clause] = STATE(5593), - [sym_declaration] = STATE(6379), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_class_declaration] = STATE(6360), - [sym_function_declaration] = STATE(6360), - [sym_generator_function_declaration] = STATE(6360), + [sym_namespace_export] = STATE(6805), + [sym_export_clause] = STATE(5483), + [sym_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_class_declaration] = STATE(1157), + [sym_function_declaration] = STATE(1157), + [sym_generator_function_declaration] = STATE(1157), [sym_comment] = STATE(818), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(6360), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(6385), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [aux_sym_export_statement_repeat1] = STATE(5201), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1157), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(1154), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [aux_sym_export_statement_repeat1] = STATE(5013), [anon_sym_STAR] = ACTIONS(2786), [anon_sym_default] = ACTIONS(2788), [anon_sym_type] = ACTIONS(2790), @@ -129334,24 +129341,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2794), [anon_sym_namespace] = ACTIONS(2796), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2798), [anon_sym_var] = ACTIONS(2800), [anon_sym_let] = ACTIONS(2802), [anon_sym_const] = ACTIONS(2804), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2808), [anon_sym_async] = ACTIONS(2810), [anon_sym_function] = ACTIONS(2812), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129381,50 +129388,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2814), [anon_sym_module] = ACTIONS(2816), [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2820), [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [819] = { - [sym_namespace_export] = STATE(6753), - [sym_export_clause] = STATE(5457), - [sym_declaration] = STATE(1098), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_class_declaration] = STATE(1100), - [sym_function_declaration] = STATE(1100), - [sym_generator_function_declaration] = STATE(1100), + [sym_namespace_export] = STATE(6911), + [sym_export_clause] = STATE(5552), + [sym_declaration] = STATE(1220), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_class_declaration] = STATE(1216), + [sym_function_declaration] = STATE(1216), + [sym_generator_function_declaration] = STATE(1216), [sym_comment] = STATE(819), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1100), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(1094), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [aux_sym_export_statement_repeat1] = STATE(4991), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1216), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(1221), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [aux_sym_export_statement_repeat1] = STATE(4937), [anon_sym_STAR] = ACTIONS(2824), [anon_sym_default] = ACTIONS(2826), [anon_sym_type] = ACTIONS(2828), @@ -129432,24 +129439,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2832), [anon_sym_namespace] = ACTIONS(2834), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2836), [anon_sym_var] = ACTIONS(2838), [anon_sym_let] = ACTIONS(2840), [anon_sym_const] = ACTIONS(2842), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2846), [anon_sym_async] = ACTIONS(2848), [anon_sym_function] = ACTIONS(2850), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129479,50 +129486,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2852), [anon_sym_module] = ACTIONS(2854), [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2858), [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [820] = { - [sym_namespace_export] = STATE(6905), - [sym_export_clause] = STATE(5547), - [sym_declaration] = STATE(1406), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_class_declaration] = STATE(1444), - [sym_function_declaration] = STATE(1444), - [sym_generator_function_declaration] = STATE(1444), + [sym_namespace_export] = STATE(6670), + [sym_export_clause] = STATE(5551), + [sym_declaration] = STATE(6917), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_class_declaration] = STATE(6924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function_declaration] = STATE(6924), [sym_comment] = STATE(820), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1444), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(1399), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [aux_sym_export_statement_repeat1] = STATE(5232), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(6924), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(6916), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [aux_sym_export_statement_repeat1] = STATE(5301), [anon_sym_STAR] = ACTIONS(2862), [anon_sym_default] = ACTIONS(2864), [anon_sym_type] = ACTIONS(2866), @@ -129530,24 +129537,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2870), [anon_sym_namespace] = ACTIONS(2872), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2874), [anon_sym_var] = ACTIONS(2876), [anon_sym_let] = ACTIONS(2878), [anon_sym_const] = ACTIONS(2880), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2884), [anon_sym_async] = ACTIONS(2886), [anon_sym_function] = ACTIONS(2888), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -129577,76 +129584,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2890), [anon_sym_module] = ACTIONS(2892), [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_interface] = ACTIONS(2896), [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(821), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_override_modifier] = STATE(3531), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_override_modifier] = STATE(3533), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -129679,7 +129686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -129693,57 +129700,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [822] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(822), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_override_modifier] = STATE(3531), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_override_modifier] = STATE(3533), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -129776,7 +129783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -129790,57 +129797,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [823] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(823), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [sym_override_modifier] = STATE(3531), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [sym_override_modifier] = STATE(3533), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -129873,7 +129880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -129887,56 +129894,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [824] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(824), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -129969,7 +129976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -129983,56 +129990,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [825] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(825), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130063,9 +130070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_get] = ACTIONS(2906), + [anon_sym_set] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130079,56 +130086,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [826] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(826), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130161,7 +130168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2900), [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130175,56 +130182,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [827] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(827), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130255,9 +130262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130271,56 +130278,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [828] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(828), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130353,7 +130360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2900), [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130367,56 +130374,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [829] = { - [sym_string] = STATE(4582), + [sym_string] = STATE(4548), [sym_comment] = STATE(829), - [sym__property_name] = STATE(4808), - [sym_computed_property_name] = STATE(4582), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym__property_name] = STATE(4640), + [sym_computed_property_name] = STATE(4548), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130449,7 +130456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130463,52 +130470,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2900), [anon_sym_object] = ACTIONS(2900), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [830] = { - [sym_declaration] = STATE(1332), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_class_declaration] = STATE(1444), - [sym_function_declaration] = STATE(1444), - [sym_generator_function_declaration] = STATE(1444), + [sym_declaration] = STATE(1563), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), [sym_comment] = STATE(830), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1444), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(1399), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [aux_sym_export_statement_repeat1] = STATE(5232), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(212), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2742), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [831] = { + [sym_declaration] = STATE(1087), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_class_declaration] = STATE(1157), + [sym_function_declaration] = STATE(1157), + [sym_generator_function_declaration] = STATE(1157), + [sym_comment] = STATE(831), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1157), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(1154), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [aux_sym_export_statement_repeat1] = STATE(5013), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2804), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2888), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2812), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -130538,72 +130640,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2890), + [anon_sym_declare] = ACTIONS(2814), [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(2818), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2822), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [831] = { - [sym_declaration] = STATE(1086), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_class_declaration] = STATE(1100), - [sym_function_declaration] = STATE(1100), - [sym_generator_function_declaration] = STATE(1100), - [sym_comment] = STATE(831), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1100), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(1094), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [aux_sym_export_statement_repeat1] = STATE(4991), + [832] = { + [sym_declaration] = STATE(6896), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_class_declaration] = STATE(6924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function_declaration] = STATE(6924), + [sym_comment] = STATE(832), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(6924), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(6916), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [aux_sym_export_statement_repeat1] = STATE(5301), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2842), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2880), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2888), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -130633,72 +130735,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2852), + [anon_sym_declare] = ACTIONS(2890), [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2898), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [832] = { - [sym_declaration] = STATE(1377), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_class_declaration] = STATE(1327), - [sym_function_declaration] = STATE(1327), - [sym_generator_function_declaration] = STATE(1327), - [sym_comment] = STATE(832), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1327), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(1348), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [aux_sym_export_statement_repeat1] = STATE(5102), + [833] = { + [sym_declaration] = STATE(1360), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_class_declaration] = STATE(1340), + [sym_function_declaration] = STATE(1340), + [sym_generator_function_declaration] = STATE(1340), + [sym_comment] = STATE(833), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1340), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(1342), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [aux_sym_export_statement_repeat1] = STATE(4973), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(212), [anon_sym_import] = ACTIONS(2760), [anon_sym_var] = ACTIONS(2762), [anon_sym_let] = ACTIONS(2764), [anon_sym_const] = ACTIONS(2766), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2770), [anon_sym_async] = ACTIONS(2772), [anon_sym_function] = ACTIONS(2774), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -130728,72 +130830,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2776), [anon_sym_module] = ACTIONS(2924), [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2926), [anon_sym_interface] = ACTIONS(2782), [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [833] = { - [sym_declaration] = STATE(6491), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_class_declaration] = STATE(6360), - [sym_function_declaration] = STATE(6360), - [sym_generator_function_declaration] = STATE(6360), - [sym_comment] = STATE(833), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(6360), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(6385), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [aux_sym_export_statement_repeat1] = STATE(5201), + [834] = { + [sym_declaration] = STATE(1261), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_class_declaration] = STATE(1216), + [sym_function_declaration] = STATE(1216), + [sym_generator_function_declaration] = STATE(1216), + [sym_comment] = STATE(834), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1216), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(1221), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [aux_sym_export_statement_repeat1] = STATE(4937), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2842), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2850), [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -130823,72 +130925,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2814), + [anon_sym_declare] = ACTIONS(2852), [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2860), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [834] = { - [sym_declaration] = STATE(1514), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), - [sym_comment] = STATE(834), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), + [835] = { + [sym_declaration] = STATE(1261), + [sym_variable_declaration] = STATE(1216), + [sym_lexical_declaration] = STATE(1216), + [sym_class_declaration] = STATE(1216), + [sym_function_declaration] = STATE(1216), + [sym_generator_function_declaration] = STATE(1216), + [sym_comment] = STATE(835), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1216), + [sym_ambient_declaration] = STATE(1216), + [sym_abstract_class_declaration] = STATE(1216), + [sym_module] = STATE(1216), + [sym_internal_module] = STATE(1221), + [sym_import_alias] = STATE(1216), + [sym_interface_declaration] = STATE(1216), + [sym_enum_declaration] = STATE(1216), + [sym_type_alias_declaration] = STATE(1216), + [aux_sym_export_statement_repeat1] = STATE(4937), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2842), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2850), + [anon_sym_EQ_GT] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -130918,73 +131018,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_declare] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2930), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2860), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [835] = { - [sym_comment] = STATE(835), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(960), + [836] = { + [sym_declaration] = STATE(6896), + [sym_variable_declaration] = STATE(6924), + [sym_lexical_declaration] = STATE(6924), + [sym_class_declaration] = STATE(6924), + [sym_function_declaration] = STATE(6924), + [sym_generator_function_declaration] = STATE(6924), + [sym_comment] = STATE(836), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(6924), + [sym_ambient_declaration] = STATE(6924), + [sym_abstract_class_declaration] = STATE(6924), + [sym_module] = STATE(6924), + [sym_internal_module] = STATE(6916), + [sym_import_alias] = STATE(6924), + [sym_interface_declaration] = STATE(6924), + [sym_enum_declaration] = STATE(6924), + [sym_type_alias_declaration] = STATE(6924), + [aux_sym_export_statement_repeat1] = STATE(5301), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_let] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2880), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_EQ_GT] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(212), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -130998,86 +131110,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_readonly] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_override] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(2405), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2890), + [anon_sym_module] = ACTIONS(2918), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2898), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [sym_comment] = STATE(836), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2403), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(960), + [837] = { + [sym_comment] = STATE(837), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2409), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(2409), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2409), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131104,52 +131204,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2403), - [sym_private_property_identifier] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(987), - [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), + [sym_number] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2409), + [anon_sym_public] = ACTIONS(2409), + [anon_sym_private] = ACTIONS(2409), + [anon_sym_protected] = ACTIONS(2409), + [anon_sym_override] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_any] = ACTIONS(2409), + [anon_sym_number] = ACTIONS(2409), + [anon_sym_boolean] = ACTIONS(2409), + [anon_sym_string] = ACTIONS(2409), + [anon_sym_symbol] = ACTIONS(2409), + [anon_sym_object] = ACTIONS(2409), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [837] = { - [sym_declaration] = STATE(1377), - [sym_variable_declaration] = STATE(1327), - [sym_lexical_declaration] = STATE(1327), - [sym_class_declaration] = STATE(1327), - [sym_function_declaration] = STATE(1327), - [sym_generator_function_declaration] = STATE(1327), - [sym_comment] = STATE(837), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1327), - [sym_ambient_declaration] = STATE(1327), - [sym_abstract_class_declaration] = STATE(1327), - [sym_module] = STATE(1327), - [sym_internal_module] = STATE(1348), - [sym_import_alias] = STATE(1327), - [sym_interface_declaration] = STATE(1327), - [sym_enum_declaration] = STATE(1327), - [sym_type_alias_declaration] = STATE(1327), - [aux_sym_export_statement_repeat1] = STATE(5102), + [838] = { + [sym_declaration] = STATE(1360), + [sym_variable_declaration] = STATE(1340), + [sym_lexical_declaration] = STATE(1340), + [sym_class_declaration] = STATE(1340), + [sym_function_declaration] = STATE(1340), + [sym_generator_function_declaration] = STATE(1340), + [sym_comment] = STATE(838), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1340), + [sym_ambient_declaration] = STATE(1340), + [sym_abstract_class_declaration] = STATE(1340), + [sym_module] = STATE(1340), + [sym_internal_module] = STATE(1342), + [sym_import_alias] = STATE(1340), + [sym_interface_declaration] = STATE(1340), + [sym_enum_declaration] = STATE(1340), + [sym_type_alias_declaration] = STATE(1340), + [aux_sym_export_statement_repeat1] = STATE(4973), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2758), [anon_sym_import] = ACTIONS(2760), @@ -131157,17 +131257,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2764), [anon_sym_const] = ACTIONS(2766), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(212), [anon_sym_class] = ACTIONS(2770), [anon_sym_async] = ACTIONS(2772), [anon_sym_function] = ACTIONS(2774), [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -131197,85 +131297,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), [anon_sym_declare] = ACTIONS(2776), [anon_sym_module] = ACTIONS(2924), [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_satisfies] = ACTIONS(212), [anon_sym_global] = ACTIONS(2926), [anon_sym_interface] = ACTIONS(2782), [anon_sym_enum] = ACTIONS(2784), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [838] = { - [sym_declaration] = STATE(4945), - [sym_variable_declaration] = STATE(5171), - [sym_lexical_declaration] = STATE(5171), - [sym_class_declaration] = STATE(5171), - [sym_function_declaration] = STATE(5171), - [sym_generator_function_declaration] = STATE(5171), - [sym_comment] = STATE(838), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(5171), - [sym_ambient_declaration] = STATE(5171), - [sym_abstract_class_declaration] = STATE(5171), - [sym_module] = STATE(5171), - [sym_internal_module] = STATE(4878), - [sym_import_alias] = STATE(5171), - [sym_interface_declaration] = STATE(5171), - [sym_enum_declaration] = STATE(5171), - [sym_type_alias_declaration] = STATE(5171), - [aux_sym_export_statement_repeat1] = STATE(5382), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_EQ] = ACTIONS(1232), + [839] = { + [sym_comment] = STATE(839), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2940), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2944), - [anon_sym_const] = ACTIONS(2946), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(2409), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2409), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(1033), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131289,86 +131377,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2956), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2960), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2964), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2409), + [anon_sym_public] = ACTIONS(2409), + [anon_sym_private] = ACTIONS(2409), + [anon_sym_protected] = ACTIONS(2409), + [anon_sym_override] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_any] = ACTIONS(2409), + [anon_sym_number] = ACTIONS(2409), + [anon_sym_boolean] = ACTIONS(2409), + [anon_sym_string] = ACTIONS(2409), + [anon_sym_symbol] = ACTIONS(2409), + [anon_sym_object] = ACTIONS(2409), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [839] = { - [sym_declaration] = STATE(1514), - [sym_variable_declaration] = STATE(1558), - [sym_lexical_declaration] = STATE(1558), - [sym_class_declaration] = STATE(1558), - [sym_function_declaration] = STATE(1558), - [sym_generator_function_declaration] = STATE(1558), - [sym_comment] = STATE(839), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1558), - [sym_ambient_declaration] = STATE(1558), - [sym_abstract_class_declaration] = STATE(1558), - [sym_module] = STATE(1558), - [sym_internal_module] = STATE(1557), - [sym_import_alias] = STATE(1558), - [sym_interface_declaration] = STATE(1558), - [sym_enum_declaration] = STATE(1558), - [sym_type_alias_declaration] = STATE(1558), - [aux_sym_export_statement_repeat1] = STATE(5398), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1232), + [840] = { + [sym_comment] = STATE(840), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(2397), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2397), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(1033), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131382,74 +131470,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2397), + [sym_private_property_identifier] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_private] = ACTIONS(2397), + [anon_sym_protected] = ACTIONS(2397), + [anon_sym_override] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_any] = ACTIONS(2397), + [anon_sym_number] = ACTIONS(2397), + [anon_sym_boolean] = ACTIONS(2397), + [anon_sym_string] = ACTIONS(2397), + [anon_sym_symbol] = ACTIONS(2397), + [anon_sym_object] = ACTIONS(2397), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [840] = { - [sym_comment] = STATE(840), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2403), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(960), + [841] = { + [sym_comment] = STATE(841), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2409), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_let] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_let] = ACTIONS(2409), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2409), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131476,70 +131576,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2403), - [sym_private_property_identifier] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(987), - [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), + [sym_number] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_readonly] = ACTIONS(2409), + [anon_sym_get] = ACTIONS(2409), + [anon_sym_set] = ACTIONS(2409), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2409), + [anon_sym_public] = ACTIONS(2409), + [anon_sym_private] = ACTIONS(2409), + [anon_sym_protected] = ACTIONS(2409), + [anon_sym_override] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_any] = ACTIONS(2409), + [anon_sym_number] = ACTIONS(2409), + [anon_sym_boolean] = ACTIONS(2409), + [anon_sym_string] = ACTIONS(2409), + [anon_sym_symbol] = ACTIONS(2409), + [anon_sym_object] = ACTIONS(2409), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [sym_declaration] = STATE(6491), - [sym_variable_declaration] = STATE(6360), - [sym_lexical_declaration] = STATE(6360), - [sym_class_declaration] = STATE(6360), - [sym_function_declaration] = STATE(6360), - [sym_generator_function_declaration] = STATE(6360), - [sym_comment] = STATE(841), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(6360), - [sym_ambient_declaration] = STATE(6360), - [sym_abstract_class_declaration] = STATE(6360), - [sym_module] = STATE(6360), - [sym_internal_module] = STATE(6385), - [sym_import_alias] = STATE(6360), - [sym_interface_declaration] = STATE(6360), - [sym_enum_declaration] = STATE(6360), - [sym_type_alias_declaration] = STATE(6360), - [aux_sym_export_statement_repeat1] = STATE(5201), + [842] = { + [sym_declaration] = STATE(1563), + [sym_variable_declaration] = STATE(1527), + [sym_lexical_declaration] = STATE(1527), + [sym_class_declaration] = STATE(1527), + [sym_function_declaration] = STATE(1527), + [sym_generator_function_declaration] = STATE(1527), + [sym_comment] = STATE(842), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1527), + [sym_ambient_declaration] = STATE(1527), + [sym_abstract_class_declaration] = STATE(1527), + [sym_module] = STATE(1527), + [sym_internal_module] = STATE(1482), + [sym_import_alias] = STATE(1527), + [sym_interface_declaration] = STATE(1527), + [sym_enum_declaration] = STATE(1527), + [sym_type_alias_declaration] = STATE(1527), + [aux_sym_export_statement_repeat1] = STATE(4924), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -131569,70 +131669,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2822), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2742), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [sym_declaration] = STATE(1086), - [sym_variable_declaration] = STATE(1100), - [sym_lexical_declaration] = STATE(1100), - [sym_class_declaration] = STATE(1100), - [sym_function_declaration] = STATE(1100), - [sym_generator_function_declaration] = STATE(1100), - [sym_comment] = STATE(842), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1100), - [sym_ambient_declaration] = STATE(1100), - [sym_abstract_class_declaration] = STATE(1100), - [sym_module] = STATE(1100), - [sym_internal_module] = STATE(1094), - [sym_import_alias] = STATE(1100), - [sym_interface_declaration] = STATE(1100), - [sym_enum_declaration] = STATE(1100), - [sym_type_alias_declaration] = STATE(1100), - [aux_sym_export_statement_repeat1] = STATE(4991), + [843] = { + [sym_declaration] = STATE(1087), + [sym_variable_declaration] = STATE(1157), + [sym_lexical_declaration] = STATE(1157), + [sym_class_declaration] = STATE(1157), + [sym_function_declaration] = STATE(1157), + [sym_generator_function_declaration] = STATE(1157), + [sym_comment] = STATE(843), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(1157), + [sym_ambient_declaration] = STATE(1157), + [sym_abstract_class_declaration] = STATE(1157), + [sym_module] = STATE(1157), + [sym_internal_module] = STATE(1154), + [sym_import_alias] = STATE(1157), + [sym_interface_declaration] = STATE(1157), + [sym_enum_declaration] = STATE(1157), + [sym_type_alias_declaration] = STATE(1157), + [aux_sym_export_statement_repeat1] = STATE(5013), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2842), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2804), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2812), [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(212), [anon_sym_PLUS_EQ] = ACTIONS(2691), [anon_sym_DASH_EQ] = ACTIONS(2691), [anon_sym_STAR_EQ] = ACTIONS(2691), @@ -131662,73 +131762,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(212), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2852), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2860), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_declare] = ACTIONS(2814), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2818), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2822), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [843] = { - [sym_comment] = STATE(843), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(960), + [844] = { + [sym_declaration] = STATE(5249), + [sym_variable_declaration] = STATE(5246), + [sym_lexical_declaration] = STATE(5246), + [sym_class_declaration] = STATE(5246), + [sym_function_declaration] = STATE(5246), + [sym_generator_function_declaration] = STATE(5246), + [sym_comment] = STATE(844), + [sym_decorator] = STATE(5608), + [sym_function_signature] = STATE(5246), + [sym_ambient_declaration] = STATE(5246), + [sym_abstract_class_declaration] = STATE(5246), + [sym_module] = STATE(5246), + [sym_internal_module] = STATE(5245), + [sym_import_alias] = STATE(5246), + [sym_interface_declaration] = STATE(5246), + [sym_enum_declaration] = STATE(5246), + [sym_type_alias_declaration] = STATE(5246), + [aux_sym_export_statement_repeat1] = STATE(4959), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_let] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2938), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(212), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_EQ_GT] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(212), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131742,86 +131854,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(212), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(212), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_readonly] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_override] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(2405), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_instanceof] = ACTIONS(212), + [anon_sym_PLUS_PLUS] = ACTIONS(212), + [anon_sym_DASH_DASH] = ACTIONS(212), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2954), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2958), + [anon_sym_satisfies] = ACTIONS(212), + [anon_sym_global] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2964), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [sym_comment] = STATE(844), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2403), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(960), + [845] = { + [sym_comment] = STATE(845), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_namespace] = ACTIONS(2397), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_let] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(2397), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2397), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131848,73 +131948,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2403), - [sym_private_property_identifier] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(987), - [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), + [sym_number] = ACTIONS(2397), + [sym_private_property_identifier] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_private] = ACTIONS(2397), + [anon_sym_protected] = ACTIONS(2397), + [anon_sym_override] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_any] = ACTIONS(2397), + [anon_sym_number] = ACTIONS(2397), + [anon_sym_boolean] = ACTIONS(2397), + [anon_sym_string] = ACTIONS(2397), + [anon_sym_symbol] = ACTIONS(2397), + [anon_sym_object] = ACTIONS(2397), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [845] = { - [sym_comment] = STATE(845), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(2405), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(960), + [846] = { + [sym_comment] = STATE(846), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2397), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_let] = ACTIONS(2397), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(2397), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -131941,167 +132041,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2405), - [sym_private_property_identifier] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_readonly] = ACTIONS(2405), - [anon_sym_get] = ACTIONS(2405), - [anon_sym_set] = ACTIONS(2405), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(2405), - [anon_sym_public] = ACTIONS(2405), - [anon_sym_private] = ACTIONS(2405), - [anon_sym_protected] = ACTIONS(2405), - [anon_sym_override] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_any] = ACTIONS(2405), - [anon_sym_number] = ACTIONS(2405), - [anon_sym_boolean] = ACTIONS(2405), - [anon_sym_string] = ACTIONS(2405), - [anon_sym_symbol] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(2405), + [sym_number] = ACTIONS(2397), + [sym_private_property_identifier] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_private] = ACTIONS(2397), + [anon_sym_protected] = ACTIONS(2397), + [anon_sym_override] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_any] = ACTIONS(2397), + [anon_sym_number] = ACTIONS(2397), + [anon_sym_boolean] = ACTIONS(2397), + [anon_sym_string] = ACTIONS(2397), + [anon_sym_symbol] = ACTIONS(2397), + [anon_sym_object] = ACTIONS(2397), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [846] = { - [sym_declaration] = STATE(1332), - [sym_variable_declaration] = STATE(1444), - [sym_lexical_declaration] = STATE(1444), - [sym_class_declaration] = STATE(1444), - [sym_function_declaration] = STATE(1444), - [sym_generator_function_declaration] = STATE(1444), - [sym_comment] = STATE(846), - [sym_decorator] = STATE(5410), - [sym_function_signature] = STATE(1444), - [sym_ambient_declaration] = STATE(1444), - [sym_abstract_class_declaration] = STATE(1444), - [sym_module] = STATE(1444), - [sym_internal_module] = STATE(1399), - [sym_import_alias] = STATE(1444), - [sym_interface_declaration] = STATE(1444), - [sym_enum_declaration] = STATE(1444), - [sym_type_alias_declaration] = STATE(1444), - [aux_sym_export_statement_repeat1] = STATE(5232), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2888), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2898), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [847] = { - [sym__call_signature] = STATE(7068), + [sym__call_signature] = STATE(7364), [sym_comment] = STATE(847), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2968), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132132,7 +132139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2968), [anon_sym_get] = ACTIONS(2968), [anon_sym_set] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_declare] = ACTIONS(2968), [anon_sym_public] = ACTIONS(2968), [anon_sym_private] = ACTIONS(2968), @@ -132146,53 +132153,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2968), [anon_sym_object] = ACTIONS(2968), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [848] = { - [sym__call_signature] = STATE(7068), + [sym__call_signature] = STATE(7110), [sym_comment] = STATE(848), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(217), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(217), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_RBRACK] = ACTIONS(217), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132219,49 +132226,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [849] = { - [sym__call_signature] = STATE(7230), + [sym__call_signature] = STATE(7110), [sym_comment] = STATE(849), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(2978), [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(1127), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(1127), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2980), @@ -132269,21 +132276,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132314,7 +132321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2980), [anon_sym_get] = ACTIONS(2980), [anon_sym_set] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(1127), [anon_sym_declare] = ACTIONS(2980), [anon_sym_public] = ACTIONS(2980), [anon_sym_private] = ACTIONS(2980), @@ -132328,24 +132335,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2980), [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [850] = { - [sym__call_signature] = STATE(7230), + [sym__call_signature] = STATE(7364), [sym_comment] = STATE(850), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2968), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_RPAREN] = ACTIONS(118), @@ -132355,26 +132362,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2968), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132401,41 +132408,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_override] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_object] = ACTIONS(2968), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [851] = { - [sym__call_signature] = STATE(7230), + [sym__call_signature] = STATE(7364), [sym_comment] = STATE(851), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2968), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_RPAREN] = ACTIONS(118), @@ -132445,26 +132452,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2968), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132491,36 +132498,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_override] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_object] = ACTIONS(2968), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [852] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7057), [sym_comment] = STATE(852), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), @@ -132528,31 +132535,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132596,52 +132603,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2984), [anon_sym_object] = ACTIONS(2984), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [853] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(853), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2992), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132668,69 +132675,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [854] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(854), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132757,69 +132764,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [855] = { - [sym__call_signature] = STATE(7099), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(855), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2994), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132846,69 +132853,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [856] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(856), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132935,37 +132942,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [857] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7057), [sym_comment] = STATE(857), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), @@ -132973,31 +132980,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133041,52 +133048,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2984), [anon_sym_object] = ACTIONS(2984), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [858] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(858), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133113,70 +133120,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [859] = { - [sym__call_signature] = STATE(7230), + [sym__call_signature] = STATE(7364), [sym_comment] = STATE(859), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2968), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133203,68 +133210,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_override] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_object] = ACTIONS(2968), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [860] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(860), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133291,69 +133298,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [861] = { - [sym__call_signature] = STATE(7099), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(861), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133380,69 +133387,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym__call_signature] = STATE(7260), + [sym__call_signature] = STATE(7278), [sym_comment] = STATE(862), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2990), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2990), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1169), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133469,68 +133476,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_object] = ACTIONS(2990), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym__call_signature] = STATE(7299), + [sym__call_signature] = STATE(7329), [sym_comment] = STATE(863), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(3000), [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1212), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(217), [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3002), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133574,52 +133582,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3002), [anon_sym_object] = ACTIONS(3002), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym__call_signature] = STATE(7323), + [sym__call_signature] = STATE(7250), [sym_comment] = STATE(864), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3006), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3006), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133663,138 +133669,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3006), [anon_sym_object] = ACTIONS(3006), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7299), + [sym__call_signature] = STATE(7250), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1266), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_readonly] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_declare] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_protected] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [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_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [866] = { - [sym__call_signature] = STATE(7323), - [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3006), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3006), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133838,109 +133757,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3006), [anon_sym_object] = ACTIONS(3006), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [867] = { - [sym_catch_clause] = STATE(896), - [sym_finally_clause] = STATE(963), - [sym_comment] = STATE(867), + [866] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(866), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_else] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3008), - [anon_sym_catch] = ACTIONS(3010), - [anon_sym_finally] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LTtemplate_GT] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3008), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [sym_html_comment] = ACTIONS(5), - }, - [868] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(868), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -133948,26 +133781,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133994,40 +133827,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [869] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(869), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [867] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(867), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134035,26 +133868,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134081,67 +133914,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [870] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(870), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [868] = { + [sym__call_signature] = STATE(7329), + [sym_comment] = STATE(868), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1230), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134168,67 +134002,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [871] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(871), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [869] = { + [sym__call_signature] = STATE(7329), + [sym_comment] = STATE(869), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(1212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134255,68 +134089,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [872] = { - [sym__call_signature] = STATE(6996), - [sym_comment] = STATE(872), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3020), + [870] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(870), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3020), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134343,39 +134175,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_readonly] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(3020), - [anon_sym_set] = ACTIONS(3020), - [anon_sym_declare] = ACTIONS(3020), - [anon_sym_public] = ACTIONS(3020), - [anon_sym_private] = ACTIONS(3020), - [anon_sym_protected] = ACTIONS(3020), - [anon_sym_override] = ACTIONS(3020), - [anon_sym_module] = ACTIONS(3020), - [anon_sym_any] = ACTIONS(3020), - [anon_sym_number] = ACTIONS(3020), - [anon_sym_boolean] = ACTIONS(3020), - [anon_sym_string] = ACTIONS(3020), - [anon_sym_symbol] = ACTIONS(3020), - [anon_sym_object] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [873] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(873), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [871] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(871), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134383,26 +134216,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3010), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134429,67 +134262,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [874] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(874), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [872] = { + [sym__call_signature] = STATE(7329), + [sym_comment] = STATE(872), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134516,68 +134350,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [875] = { - [sym__call_signature] = STATE(6996), - [sym_comment] = STATE(875), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3020), + [873] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(873), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2992), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3020), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134604,39 +134436,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_readonly] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(3020), - [anon_sym_set] = ACTIONS(3020), - [anon_sym_declare] = ACTIONS(3020), - [anon_sym_public] = ACTIONS(3020), - [anon_sym_private] = ACTIONS(3020), - [anon_sym_protected] = ACTIONS(3020), - [anon_sym_override] = ACTIONS(3020), - [anon_sym_module] = ACTIONS(3020), - [anon_sym_any] = ACTIONS(3020), - [anon_sym_number] = ACTIONS(3020), - [anon_sym_boolean] = ACTIONS(3020), - [anon_sym_string] = ACTIONS(3020), - [anon_sym_symbol] = ACTIONS(3020), - [anon_sym_object] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [876] = { - [sym__call_signature] = STATE(7206), - [sym_comment] = STATE(876), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [874] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(874), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134644,26 +134477,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134690,68 +134523,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [875] = { + [sym__call_signature] = STATE(7212), + [sym_comment] = STATE(875), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(2994), + [anon_sym_EQ_GT] = ACTIONS(1272), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [876] = { + [sym_catch_clause] = STATE(891), + [sym_finally_clause] = STATE(1017), + [sym_comment] = STATE(876), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_await] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_catch] = ACTIONS(3014), + [anon_sym_finally] = ACTIONS(3016), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LTtemplate_GT] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_void] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3012), + [sym_number] = ACTIONS(3012), + [sym_private_property_identifier] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_null] = ACTIONS(3012), + [sym_undefined] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_declare] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_any] = ACTIONS(3012), + [anon_sym_number] = ACTIONS(3012), + [anon_sym_boolean] = ACTIONS(3012), + [anon_sym_string] = ACTIONS(3012), + [anon_sym_symbol] = ACTIONS(3012), + [anon_sym_object] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym__call_signature] = STATE(7323), + [sym__call_signature] = STATE(7002), [sym_comment] = STATE(877), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1274), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3020), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134778,67 +134785,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_readonly] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_declare] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_protected] = ACTIONS(3020), + [anon_sym_override] = ACTIONS(3020), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(3020), + [anon_sym_number] = ACTIONS(3020), + [anon_sym_boolean] = ACTIONS(3020), + [anon_sym_string] = ACTIONS(3020), + [anon_sym_symbol] = ACTIONS(3020), + [anon_sym_object] = ACTIONS(3020), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym__call_signature] = STATE(7323), + [sym__call_signature] = STATE(7002), [sym_comment] = STATE(878), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(1254), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3020), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1234), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134865,39 +134872,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_readonly] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_declare] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_protected] = ACTIONS(3020), + [anon_sym_override] = ACTIONS(3020), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(3020), + [anon_sym_number] = ACTIONS(3020), + [anon_sym_boolean] = ACTIONS(3020), + [anon_sym_string] = ACTIONS(3020), + [anon_sym_symbol] = ACTIONS(3020), + [anon_sym_object] = ACTIONS(3020), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym__call_signature] = STATE(7206), + [sym__call_signature] = STATE(7212), [sym_comment] = STATE(879), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3014), - [anon_sym_export] = ACTIONS(3016), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134905,26 +134912,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3010), [anon_sym_function] = ACTIONS(3022), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_EQ_GT] = ACTIONS(1272), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3016), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134951,40 +134958,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_readonly] = ACTIONS(3016), - [anon_sym_get] = ACTIONS(3016), - [anon_sym_set] = ACTIONS(3016), - [anon_sym_declare] = ACTIONS(3016), - [anon_sym_public] = ACTIONS(3016), - [anon_sym_private] = ACTIONS(3016), - [anon_sym_protected] = ACTIONS(3016), - [anon_sym_override] = ACTIONS(3016), - [anon_sym_module] = ACTIONS(3016), - [anon_sym_any] = ACTIONS(3016), - [anon_sym_number] = ACTIONS(3016), - [anon_sym_boolean] = ACTIONS(3016), - [anon_sym_string] = ACTIONS(3016), - [anon_sym_symbol] = ACTIONS(3016), - [anon_sym_object] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_readonly] = ACTIONS(3010), + [anon_sym_get] = ACTIONS(3010), + [anon_sym_set] = ACTIONS(3010), + [anon_sym_declare] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_protected] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_module] = ACTIONS(3010), + [anon_sym_any] = ACTIONS(3010), + [anon_sym_number] = ACTIONS(3010), + [anon_sym_boolean] = ACTIONS(3010), + [anon_sym_string] = ACTIONS(3010), + [anon_sym_symbol] = ACTIONS(3010), + [anon_sym_object] = ACTIONS(3010), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym__call_signature] = STATE(7323), + [sym__call_signature] = STATE(7329), [sym_comment] = STATE(880), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(1228), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134992,26 +134999,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3002), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135038,152 +135045,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [881] = { - [sym_catch_clause] = STATE(934), - [sym_finally_clause] = STATE(1160), + [sym__call_signature] = STATE(7292), [sym_comment] = STATE(881), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3008), - [anon_sym_catch] = ACTIONS(3024), - [anon_sym_finally] = ACTIONS(3026), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LTtemplate_GT] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3008), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3024), + [anon_sym_export] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3026), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3026), + [anon_sym_set] = ACTIONS(3026), + [anon_sym_declare] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_private] = ACTIONS(3026), + [anon_sym_protected] = ACTIONS(3026), + [anon_sym_override] = ACTIONS(3026), + [anon_sym_module] = ACTIONS(3026), + [anon_sym_any] = ACTIONS(3026), + [anon_sym_number] = ACTIONS(3026), + [anon_sym_boolean] = ACTIONS(3026), + [anon_sym_string] = ACTIONS(3026), + [anon_sym_symbol] = ACTIONS(3026), + [anon_sym_object] = ACTIONS(3026), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym__call_signature] = STATE(7068), + [sym__call_signature] = STATE(7329), [sym_comment] = STATE(882), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(3002), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135210,125 +135217,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [883] = { - [sym_catch_clause] = STATE(954), - [sym_finally_clause] = STATE(1200), [sym_comment] = STATE(883), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_else] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_catch] = ACTIONS(3030), - [anon_sym_finally] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LTtemplate_GT] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3008), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3028), [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym__call_signature] = STATE(7207), + [sym_catch_clause] = STATE(958), + [sym_finally_clause] = STATE(1416), [sym_comment] = STATE(884), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3034), - [anon_sym_export] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_await] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_catch] = ACTIONS(3030), + [anon_sym_finally] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LTtemplate_GT] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_void] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3012), + [sym_number] = ACTIONS(3012), + [sym_private_property_identifier] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_null] = ACTIONS(3012), + [sym_undefined] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_declare] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_any] = ACTIONS(3012), + [anon_sym_number] = ACTIONS(3012), + [anon_sym_boolean] = ACTIONS(3012), + [anon_sym_string] = ACTIONS(3012), + [anon_sym_symbol] = ACTIONS(3012), + [anon_sym_object] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [sym_html_comment] = ACTIONS(5), + }, + [885] = { + [sym__call_signature] = STATE(7292), + [sym_comment] = STATE(885), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(3024), + [anon_sym_export] = ACTIONS(3026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3026), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -135336,26 +135429,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3036), + [anon_sym_async] = ACTIONS(3026), [anon_sym_function] = ACTIONS(2973), [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135382,66 +135475,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3036), - [anon_sym_readonly] = ACTIONS(3036), - [anon_sym_get] = ACTIONS(3036), - [anon_sym_set] = ACTIONS(3036), - [anon_sym_declare] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_module] = ACTIONS(3036), - [anon_sym_any] = ACTIONS(3036), - [anon_sym_number] = ACTIONS(3036), - [anon_sym_boolean] = ACTIONS(3036), - [anon_sym_string] = ACTIONS(3036), - [anon_sym_symbol] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3026), + [anon_sym_get] = ACTIONS(3026), + [anon_sym_set] = ACTIONS(3026), + [anon_sym_declare] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_private] = ACTIONS(3026), + [anon_sym_protected] = ACTIONS(3026), + [anon_sym_override] = ACTIONS(3026), + [anon_sym_module] = ACTIONS(3026), + [anon_sym_any] = ACTIONS(3026), + [anon_sym_number] = ACTIONS(3026), + [anon_sym_boolean] = ACTIONS(3026), + [anon_sym_string] = ACTIONS(3026), + [anon_sym_symbol] = ACTIONS(3026), + [anon_sym_object] = ACTIONS(3026), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [885] = { - [sym__call_signature] = STATE(7207), - [sym_comment] = STATE(885), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3034), - [anon_sym_export] = ACTIONS(3036), + [886] = { + [sym_comment] = STATE(886), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3034), + [sym_html_comment] = ACTIONS(5), + }, + [887] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(887), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3036), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135468,120 +135647,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3036), - [anon_sym_readonly] = ACTIONS(3036), - [anon_sym_get] = ACTIONS(3036), - [anon_sym_set] = ACTIONS(3036), - [anon_sym_declare] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_module] = ACTIONS(3036), - [anon_sym_any] = ACTIONS(3036), - [anon_sym_number] = ACTIONS(3036), - [anon_sym_boolean] = ACTIONS(3036), - [anon_sym_string] = ACTIONS(3036), - [anon_sym_symbol] = ACTIONS(3036), - [anon_sym_object] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [886] = { - [sym_comment] = STATE(886), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3038), + [888] = { + [sym_catch_clause] = STATE(951), + [sym_finally_clause] = STATE(1323), + [sym_comment] = STATE(888), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_await] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_catch] = ACTIONS(3038), + [anon_sym_finally] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LTtemplate_GT] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_void] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3012), + [sym_number] = ACTIONS(3012), + [sym_private_property_identifier] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_null] = ACTIONS(3012), + [sym_undefined] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_declare] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_any] = ACTIONS(3012), + [anon_sym_number] = ACTIONS(3012), + [anon_sym_boolean] = ACTIONS(3012), + [anon_sym_string] = ACTIONS(3012), + [anon_sym_symbol] = ACTIONS(3012), + [anon_sym_object] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), [sym_html_comment] = ACTIONS(5), }, - [887] = { - [sym_comment] = STATE(887), + [889] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(889), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [890] = { + [sym_statement_block] = STATE(1118), + [sym_comment] = STATE(890), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3042), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -135606,11 +135872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), [anon_sym_case] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3044), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -135657,49 +135922,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3040), [sym_html_comment] = ACTIONS(5), }, - [888] = { - [sym__call_signature] = STATE(7323), - [sym_comment] = STATE(888), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [891] = { + [sym_finally_clause] = STATE(1094), + [sym_comment] = STATE(891), + [sym_identifier] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_await] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_debugger] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_finally] = ACTIONS(3016), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LTtemplate_GT] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_void] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3046), + [sym_number] = ACTIONS(3046), + [sym_private_property_identifier] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [sym_super] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + [anon_sym_object] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [sym_html_comment] = ACTIONS(5), + }, + [892] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(892), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1354), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135726,66 +136074,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [889] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(889), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [893] = { + [sym_catch_clause] = STATE(1009), + [sym_finally_clause] = STATE(1560), + [sym_comment] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_await] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_catch] = ACTIONS(3048), + [anon_sym_finally] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LTtemplate_GT] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_void] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3012), + [sym_number] = ACTIONS(3012), + [sym_private_property_identifier] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_null] = ACTIONS(3012), + [sym_undefined] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_readonly] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_declare] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_any] = ACTIONS(3012), + [anon_sym_number] = ACTIONS(3012), + [anon_sym_boolean] = ACTIONS(3012), + [anon_sym_string] = ACTIONS(3012), + [anon_sym_symbol] = ACTIONS(3012), + [anon_sym_object] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [sym_html_comment] = ACTIONS(5), + }, + [894] = { + [sym_comment] = STATE(894), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_html_comment] = ACTIONS(5), + }, + [895] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(895), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1302), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135812,65 +136329,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [890] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(890), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [896] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(896), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1300), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135897,35 +136414,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [891] = { - [sym_statement_block] = STATE(1102), - [sym_comment] = STATE(891), + [897] = { + [sym_comment] = STATE(897), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [898] = { + [sym_comment] = STATE(898), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_default] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -135934,7 +136535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -135950,10 +136550,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), [anon_sym_case] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3044), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -136000,47 +136601,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3056), [sym_html_comment] = ACTIONS(5), }, - [892] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(892), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [899] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(899), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1358), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136067,235 +136669,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [893] = { - [sym_comment] = STATE(893), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3046), + [900] = { + [sym_comment] = STATE(900), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3058), [sym_html_comment] = ACTIONS(5), }, - [894] = { - [sym_catch_clause] = STATE(1145), - [sym_finally_clause] = STATE(1484), - [sym_comment] = STATE(894), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_catch] = ACTIONS(3048), - [anon_sym_finally] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LTtemplate_GT] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3008), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), + [901] = { + [sym_statement_block] = STATE(1118), + [sym_comment] = STATE(901), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [895] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(895), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [902] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(902), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1356), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136322,150 +136924,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [896] = { - [sym_finally_clause] = STATE(1134), - [sym_comment] = STATE(896), - [sym_identifier] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_default] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_typeof] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_await] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_debugger] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_finally] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LTtemplate_GT] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3052), - [anon_sym_delete] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3052), - [sym_number] = ACTIONS(3052), - [sym_private_property_identifier] = ACTIONS(3052), - [sym_this] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_null] = ACTIONS(3052), - [sym_undefined] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [897] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(897), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [903] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(903), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1296), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136492,65 +137009,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [898] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(898), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [904] = { + [sym_comment] = STATE(904), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3062), + [sym_html_comment] = ACTIONS(5), + }, + [905] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(905), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1294), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136577,65 +137179,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [899] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(899), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [906] = { + [sym_comment] = STATE(906), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3064), + [sym_html_comment] = ACTIONS(5), + }, + [907] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(907), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1292), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136662,65 +137349,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [900] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(900), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), + [908] = { + [sym_comment] = STATE(908), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [909] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(909), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1298), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2980), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136747,34 +137519,793 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [901] = { - [sym_comment] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(2095), + [910] = { + [sym__call_signature] = STATE(7110), + [sym_comment] = STATE(910), + [sym_formal_parameters] = STATE(4813), + [sym_type_parameters] = STATE(6459), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [911] = { + [sym_comment] = STATE(911), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_html_comment] = ACTIONS(5), + }, + [912] = { + [sym_comment] = STATE(912), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2241), + [sym_html_comment] = ACTIONS(5), + }, + [913] = { + [sym_else_clause] = STATE(1149), + [sym_comment] = STATE(913), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_typeof] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_await] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_debugger] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_case] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_LTtemplate_GT] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_void] = ACTIONS(3066), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3066), + [sym_number] = ACTIONS(3066), + [sym_private_property_identifier] = ACTIONS(3066), + [sym_this] = ACTIONS(3066), + [sym_super] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_null] = ACTIONS(3066), + [sym_undefined] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [anon_sym_object] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [sym_html_comment] = ACTIONS(5), + }, + [914] = { + [sym_comment] = STATE(914), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3070), + [sym_html_comment] = ACTIONS(5), + }, + [915] = { + [sym_comment] = STATE(915), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2081), + [sym_html_comment] = ACTIONS(5), + }, + [916] = { + [sym_comment] = STATE(916), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [917] = { + [sym_comment] = STATE(917), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2171), + [sym_html_comment] = ACTIONS(5), + }, + [918] = { + [sym_comment] = STATE(918), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2129), + [sym_html_comment] = ACTIONS(5), + }, + [919] = { + [sym_statement_block] = STATE(1118), + [sym_comment] = STATE(919), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3042), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -136798,8 +138329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -136849,102 +138379,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3054), [sym_html_comment] = ACTIONS(5), }, - [902] = { - [sym_comment] = STATE(902), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3056), + [920] = { + [sym_comment] = STATE(920), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, - [903] = { - [sym_comment] = STATE(903), + [921] = { + [sym_statement_block] = STATE(1301), + [sym_comment] = STATE(921), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -136953,7 +138482,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -136969,10 +138497,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), [anon_sym_case] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3074), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -137019,102 +138547,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3058), [sym_html_comment] = ACTIONS(5), }, - [904] = { - [sym_comment] = STATE(904), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [905] = { - [sym_comment] = STATE(905), + [922] = { + [sym_statement_block] = STATE(1301), + [sym_comment] = STATE(922), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3072), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -137138,11 +138581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), [anon_sym_case] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3076), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -137189,273 +138631,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3060), [sym_html_comment] = ACTIONS(5), }, - [906] = { - [sym_comment] = STATE(906), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [907] = { - [sym_comment] = STATE(907), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3062), - [sym_html_comment] = ACTIONS(5), - }, - [908] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(908), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [923] = { + [sym_comment] = STATE(923), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, - [909] = { - [sym_statement_block] = STATE(1102), - [sym_comment] = STATE(909), + [924] = { + [sym_comment] = STATE(924), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_default] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -137464,7 +138733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -137480,10 +138748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), [anon_sym_case] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3064), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -137530,270 +138798,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, - [910] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(910), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [925] = { + [sym_comment] = STATE(925), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2163), [sym_html_comment] = ACTIONS(5), }, - [911] = { - [sym__call_signature] = STATE(7068), - [sym_comment] = STATE(911), - [sym_formal_parameters] = STATE(4683), - [sym_type_parameters] = STATE(6493), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [926] = { + [sym_comment] = STATE(926), + [sym_identifier] = ACTIONS(3080), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_namespace] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3080), + [anon_sym_import] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3080), + [anon_sym_var] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_await] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_debugger] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_LTtemplate_GT] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_class] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_void] = ACTIONS(3080), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3080), + [sym_number] = ACTIONS(3080), + [sym_private_property_identifier] = ACTIONS(3080), + [sym_this] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_null] = ACTIONS(3080), + [sym_undefined] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(3080), + [anon_sym_set] = ACTIONS(3080), + [anon_sym_declare] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_module] = ACTIONS(3080), + [anon_sym_any] = ACTIONS(3080), + [anon_sym_number] = ACTIONS(3080), + [anon_sym_boolean] = ACTIONS(3080), + [anon_sym_string] = ACTIONS(3080), + [anon_sym_symbol] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [sym__automatic_semicolon] = ACTIONS(3084), [sym_html_comment] = ACTIONS(5), }, - [912] = { - [sym_statement_block] = STATE(1102), - [sym_comment] = STATE(912), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), + [927] = { + [sym_comment] = STATE(927), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_with] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [anon_sym_let] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_await] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_debugger] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_finally] = ACTIONS(3086), + [anon_sym_yield] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LTtemplate_GT] = ACTIONS(3086), + [anon_sym_DQUOTE] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_async] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_void] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3086), + [sym_number] = ACTIONS(3086), + [sym_private_property_identifier] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), + [sym_super] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_null] = ACTIONS(3086), + [sym_undefined] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_readonly] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3086), + [anon_sym_set] = ACTIONS(3086), + [anon_sym_declare] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_module] = ACTIONS(3086), + [anon_sym_any] = ACTIONS(3086), + [anon_sym_number] = ACTIONS(3086), + [anon_sym_boolean] = ACTIONS(3086), + [anon_sym_string] = ACTIONS(3086), + [anon_sym_symbol] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), [sym_html_comment] = ACTIONS(5), }, - [913] = { - [sym_comment] = STATE(913), + [928] = { + [sym_statement_block] = STATE(1292), + [sym_comment] = STATE(928), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -137817,10 +139085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3090), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -137867,1109 +139135,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3066), - [sym_html_comment] = ACTIONS(5), - }, - [914] = { - [sym_comment] = STATE(914), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2133), [sym_html_comment] = ACTIONS(5), }, - [915] = { - [sym_comment] = STATE(915), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3068), - [sym_html_comment] = ACTIONS(5), - }, - [916] = { - [sym_comment] = STATE(916), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [917] = { - [sym_else_clause] = STATE(1190), - [sym_comment] = STATE(917), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_LTtemplate_GT] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_void] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3070), - [sym_number] = ACTIONS(3070), - [sym_private_property_identifier] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [sym_super] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_null] = ACTIONS(3070), - [sym_undefined] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_declare] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_module] = ACTIONS(3070), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [sym_html_comment] = ACTIONS(5), - }, - [918] = { - [sym_comment] = STATE(918), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [919] = { - [sym_comment] = STATE(919), - [sym_identifier] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_await] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_debugger] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LTtemplate_GT] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_async] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_void] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3074), - [sym_number] = ACTIONS(3074), - [sym_private_property_identifier] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [sym_super] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_null] = ACTIONS(3074), - [sym_undefined] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_readonly] = ACTIONS(3074), - [anon_sym_get] = ACTIONS(3074), - [anon_sym_set] = ACTIONS(3074), - [anon_sym_declare] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_any] = ACTIONS(3074), - [anon_sym_number] = ACTIONS(3074), - [anon_sym_boolean] = ACTIONS(3074), - [anon_sym_string] = ACTIONS(3074), - [anon_sym_symbol] = ACTIONS(3074), - [anon_sym_object] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [sym__automatic_semicolon] = ACTIONS(3078), - [sym_html_comment] = ACTIONS(5), - }, - [920] = { - [sym_comment] = STATE(920), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym_html_comment] = ACTIONS(5), - }, - [921] = { - [sym_comment] = STATE(921), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2209), - [sym_html_comment] = ACTIONS(5), - }, - [922] = { - [sym_comment] = STATE(922), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2201), - [sym_html_comment] = ACTIONS(5), - }, - [923] = { - [sym_comment] = STATE(923), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_html_comment] = ACTIONS(5), - }, - [924] = { - [sym_comment] = STATE(924), - [sym_identifier] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_await] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_debugger] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LTtemplate_GT] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_async] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_void] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_number] = ACTIONS(3082), - [sym_private_property_identifier] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [sym_super] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_null] = ACTIONS(3082), - [sym_undefined] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_readonly] = ACTIONS(3082), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_declare] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [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(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [sym__automatic_semicolon] = ACTIONS(3084), - [sym_html_comment] = ACTIONS(5), - }, - [925] = { - [sym_comment] = STATE(925), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3086), - [sym_html_comment] = ACTIONS(5), - }, - [926] = { - [sym_comment] = STATE(926), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2245), - [sym_html_comment] = ACTIONS(5), - }, - [927] = { - [sym_comment] = STATE(927), - [ts_builtin_sym_end] = ACTIONS(2095), + [929] = { + [sym_statement_block] = STATE(1292), + [sym_comment] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -138978,6 +139154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -138992,11 +139169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3092), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), @@ -139043,18 +139219,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3088), [sym_html_comment] = ACTIONS(5), }, - [928] = { - [sym_statement_block] = STATE(1351), - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2061), + [930] = { + [sym_comment] = STATE(930), + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -139063,7 +139237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -139078,10 +139251,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2057), [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3092), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -139128,101 +139302,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, - [929] = { - [sym_comment] = STATE(929), - [sym_identifier] = ACTIONS(3094), - [anon_sym_export] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_typeof] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [anon_sym_let] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_await] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_debugger] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_finally] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_LTtemplate_GT] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_async] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_void] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3094), - [sym_number] = ACTIONS(3094), - [sym_private_property_identifier] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - [sym_super] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_undefined] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), - [anon_sym_declare] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_module] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3094), - [anon_sym_number] = ACTIONS(3094), - [anon_sym_boolean] = ACTIONS(3094), - [anon_sym_string] = ACTIONS(3094), - [anon_sym_symbol] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), + [931] = { + [sym_comment] = STATE(931), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), [sym_html_comment] = ACTIONS(5), }, - [930] = { - [sym_statement_block] = STATE(1351), - [sym_comment] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(2061), + [932] = { + [sym_comment] = STATE(932), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2101), + [sym_html_comment] = ACTIONS(5), + }, + [933] = { + [sym_comment] = STATE(933), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_case] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2093), + [sym_html_comment] = ACTIONS(5), + }, + [934] = { + [sym_comment] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -139246,10 +139588,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2057), [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3096), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -139296,766 +139638,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), - [sym_html_comment] = ACTIONS(5), - }, - [931] = { - [sym_comment] = STATE(931), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3098), - [sym_html_comment] = ACTIONS(5), - }, - [932] = { - [sym_comment] = STATE(932), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2073), - [sym_html_comment] = ACTIONS(5), - }, - [933] = { - [sym_comment] = STATE(933), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [934] = { - [sym_finally_clause] = STATE(1222), - [sym_comment] = STATE(934), - [sym_identifier] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_default] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_typeof] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_await] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_debugger] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_finally] = ACTIONS(3026), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LTtemplate_GT] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3052), - [anon_sym_delete] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3052), - [sym_number] = ACTIONS(3052), - [sym_private_property_identifier] = ACTIONS(3052), - [sym_this] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_null] = ACTIONS(3052), - [sym_undefined] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, [935] = { [sym_comment] = STATE(935), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_case] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), [sym_html_comment] = ACTIONS(5), }, [936] = { [sym_comment] = STATE(936), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2263), [sym_html_comment] = ACTIONS(5), }, [937] = { [sym_comment] = STATE(937), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_else] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_finally] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3098), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_debugger] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_finally] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LTtemplate_GT] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_private_property_identifier] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + [sym_super] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_null] = ACTIONS(3098), + [sym_undefined] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), [sym_html_comment] = ACTIONS(5), }, [938] = { [sym_comment] = STATE(938), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), [sym_html_comment] = ACTIONS(5), }, [939] = { [sym_comment] = STATE(939), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2179), [sym_html_comment] = ACTIONS(5), }, [940] = { [sym_comment] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_html_comment] = ACTIONS(5), + }, + [941] = { + [sym_comment] = STATE(941), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2143), + [sym_html_comment] = ACTIONS(5), + }, + [942] = { + [sym_comment] = STATE(942), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym_html_comment] = ACTIONS(5), + }, + [943] = { + [sym_comment] = STATE(943), [sym_identifier] = ACTIONS(3102), [anon_sym_export] = ACTIONS(3102), [anon_sym_default] = ACTIONS(3102), @@ -140086,7 +140345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(3102), [anon_sym_SEMI] = ACTIONS(3102), [anon_sym_case] = ACTIONS(3102), - [anon_sym_finally] = ACTIONS(3102), [anon_sym_yield] = ACTIONS(3102), [anon_sym_LBRACK] = ACTIONS(3102), [anon_sym_LTtemplate_GT] = ACTIONS(3102), @@ -140136,521 +140394,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3102), [anon_sym_interface] = ACTIONS(3102), [anon_sym_enum] = ACTIONS(3102), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_comment] = STATE(941), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym_html_comment] = ACTIONS(5), - }, - [942] = { - [sym_else_clause] = STATE(1076), - [sym_comment] = STATE(942), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_LTtemplate_GT] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_void] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3070), - [sym_number] = ACTIONS(3070), - [sym_private_property_identifier] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [sym_super] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_null] = ACTIONS(3070), - [sym_undefined] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_declare] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_module] = ACTIONS(3070), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [sym_html_comment] = ACTIONS(5), - }, - [943] = { - [sym_comment] = STATE(943), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_html_comment] = ACTIONS(5), }, [944] = { [sym_comment] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3106), - [sym_html_comment] = ACTIONS(5), - }, - [945] = { - [sym_comment] = STATE(945), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_comment] = STATE(946), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_statement_block] = STATE(1218), - [sym_comment] = STATE(947), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_default] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -140659,6 +140413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -140677,7 +140432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3112), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -140724,17 +140478,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2063), [sym_html_comment] = ACTIONS(5), }, - [948] = { - [sym_statement_block] = STATE(1218), - [sym_comment] = STATE(948), + [945] = { + [sym_comment] = STATE(945), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [946] = { + [sym_comment] = STATE(946), + [sym_identifier] = ACTIONS(3106), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_with] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_debugger] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_finally] = ACTIONS(3106), + [anon_sym_yield] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LTtemplate_GT] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_private_property_identifier] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + [sym_super] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_null] = ACTIONS(3106), + [sym_undefined] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [947] = { + [sym_comment] = STATE(947), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_default] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -140743,6 +140665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2057), [anon_sym_const] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2057), [anon_sym_switch] = ACTIONS(2057), [anon_sym_for] = ACTIONS(2057), @@ -140761,7 +140684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -140808,517 +140730,1521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [948] = { + [sym_comment] = STATE(948), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, [949] = { [sym_comment] = STATE(949), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3110), [sym_html_comment] = ACTIONS(5), }, [950] = { [sym_comment] = STATE(950), - [sym_identifier] = ACTIONS(3116), - [anon_sym_export] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_type] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3116), - [anon_sym_import] = ACTIONS(3116), - [anon_sym_with] = ACTIONS(3116), - [anon_sym_var] = ACTIONS(3116), - [anon_sym_let] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_await] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_debugger] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_yield] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LTtemplate_GT] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_async] = ACTIONS(3116), - [anon_sym_function] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_void] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_number] = ACTIONS(3116), - [sym_private_property_identifier] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - [sym_super] = ACTIONS(3116), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [sym_null] = ACTIONS(3116), - [sym_undefined] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_readonly] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_declare] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_module] = ACTIONS(3116), - [anon_sym_any] = ACTIONS(3116), - [anon_sym_number] = ACTIONS(3116), - [anon_sym_boolean] = ACTIONS(3116), - [anon_sym_string] = ACTIONS(3116), - [anon_sym_symbol] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_LTtemplate_GT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3112), + [sym_number] = ACTIONS(3112), + [sym_private_property_identifier] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_override] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_object] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [sym__automatic_semicolon] = ACTIONS(3114), [sym_html_comment] = ACTIONS(5), }, [951] = { + [sym_finally_clause] = STATE(1439), [sym_comment] = STATE(951), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2229), + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_await] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_debugger] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_finally] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LTtemplate_GT] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_void] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3046), + [sym_number] = ACTIONS(3046), + [sym_private_property_identifier] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [sym_super] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + [anon_sym_object] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), [sym_html_comment] = ACTIONS(5), }, [952] = { [sym_comment] = STATE(952), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_case] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, [953] = { [sym_comment] = STATE(953), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_case] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_finally_clause] = STATE(1366), + [sym_else_clause] = STATE(1217), [sym_comment] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(3120), - [sym_identifier] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_typeof] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_await] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_debugger] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_finally] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LTtemplate_GT] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3052), - [anon_sym_delete] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3052), - [sym_number] = ACTIONS(3052), - [sym_private_property_identifier] = ACTIONS(3052), - [sym_this] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_null] = ACTIONS(3052), - [sym_undefined] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_typeof] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_await] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_debugger] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_case] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_LTtemplate_GT] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_void] = ACTIONS(3066), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3066), + [sym_number] = ACTIONS(3066), + [sym_private_property_identifier] = ACTIONS(3066), + [sym_this] = ACTIONS(3066), + [sym_super] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_null] = ACTIONS(3066), + [sym_undefined] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [anon_sym_object] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), [sym_html_comment] = ACTIONS(5), }, [955] = { [sym_comment] = STATE(955), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_html_comment] = ACTIONS(5), + }, + [956] = { + [sym_comment] = STATE(956), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), + [sym_html_comment] = ACTIONS(5), + }, + [957] = { + [sym_comment] = STATE(957), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [958] = { + [sym_finally_clause] = STATE(1184), + [sym_comment] = STATE(958), + [sym_identifier] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_await] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_debugger] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_finally] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LTtemplate_GT] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_void] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3046), + [sym_number] = ACTIONS(3046), + [sym_private_property_identifier] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [sym_super] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + [anon_sym_object] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [sym_html_comment] = ACTIONS(5), + }, + [959] = { + [sym_comment] = STATE(959), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3122), + [sym_html_comment] = ACTIONS(5), + }, + [960] = { + [sym_comment] = STATE(960), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym_comment] = STATE(961), + [sym_identifier] = ACTIONS(3124), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3124), + [anon_sym_import] = ACTIONS(3124), + [anon_sym_with] = ACTIONS(3124), + [anon_sym_var] = ACTIONS(3124), + [anon_sym_let] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_debugger] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_yield] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LTtemplate_GT] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_private_property_identifier] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + [sym_super] = ACTIONS(3124), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [sym_null] = ACTIONS(3124), + [sym_undefined] = ACTIONS(3124), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_override] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [anon_sym_object] = ACTIONS(3124), + [anon_sym_abstract] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [sym_html_comment] = ACTIONS(5), + }, + [962] = { + [sym_comment] = STATE(962), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2329), + [sym_html_comment] = ACTIONS(5), + }, + [963] = { + [sym_comment] = STATE(963), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_LTtemplate_GT] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3126), + [sym_private_property_identifier] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [sym_html_comment] = ACTIONS(5), + }, + [964] = { + [sym_comment] = STATE(964), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_else] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [sym_html_comment] = ACTIONS(5), + }, + [965] = { + [sym_comment] = STATE(965), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [966] = { + [sym_comment] = STATE(966), + [ts_builtin_sym_end] = ACTIONS(2339), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), [anon_sym_type] = ACTIONS(2213), [anon_sym_namespace] = ACTIONS(2213), [anon_sym_LBRACE] = ACTIONS(2213), @@ -141345,7 +142271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2213), [anon_sym_throw] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), [anon_sym_yield] = ACTIONS(2213), [anon_sym_LBRACK] = ACTIONS(2213), [anon_sym_LTtemplate_GT] = ACTIONS(2213), @@ -141395,521 +142320,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2213), [anon_sym_interface] = ACTIONS(2213), [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2217), - [sym_html_comment] = ACTIONS(5), - }, - [956] = { - [sym_comment] = STATE(956), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), + [sym__automatic_semicolon] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, - [957] = { - [sym_comment] = STATE(957), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym_html_comment] = ACTIONS(5), - }, - [958] = { - [sym_comment] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3122), - [sym_html_comment] = ACTIONS(5), - }, - [959] = { - [sym_comment] = STATE(959), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [960] = { - [sym_comment] = STATE(960), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2193), - [sym_html_comment] = ACTIONS(5), - }, - [961] = { - [sym_comment] = STATE(961), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_case] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2285), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym_statement_block] = STATE(1520), - [sym_comment] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(2061), + [967] = { + [sym_comment] = STATE(967), + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2057), [anon_sym_export] = ACTIONS(2057), [anon_sym_type] = ACTIONS(2057), [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(2057), [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_typeof] = ACTIONS(2057), [anon_sym_import] = ACTIONS(2057), @@ -141932,10 +142353,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2057), [anon_sym_throw] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), [anon_sym_yield] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3126), [anon_sym_DQUOTE] = ACTIONS(2057), [anon_sym_SQUOTE] = ACTIONS(2057), [anon_sym_class] = ACTIONS(2057), @@ -141982,176 +142403,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2057), [anon_sym_interface] = ACTIONS(2057), [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3130), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym_comment] = STATE(963), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), + [968] = { + [sym_comment] = STATE(968), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_default] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_case] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [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(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym_comment] = STATE(964), - [sym_identifier] = ACTIONS(3130), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_debugger] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym_case] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LTtemplate_GT] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_void] = ACTIONS(3130), - [anon_sym_delete] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3130), - [sym_number] = ACTIONS(3130), - [sym_private_property_identifier] = ACTIONS(3130), - [sym_this] = ACTIONS(3130), - [sym_super] = ACTIONS(3130), - [sym_true] = ACTIONS(3130), - [sym_false] = ACTIONS(3130), - [sym_null] = ACTIONS(3130), - [sym_undefined] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [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(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), + [969] = { + [sym_comment] = STATE(969), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym_comment] = STATE(965), + [970] = { + [sym_comment] = STATE(970), [sym_identifier] = ACTIONS(3132), [anon_sym_export] = ACTIONS(3132), [anon_sym_default] = ACTIONS(3132), @@ -142233,91 +142655,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym_comment] = STATE(966), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_case] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), + [971] = { + [sym_comment] = STATE(971), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym_comment] = STATE(967), + [972] = { + [sym_comment] = STATE(972), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3134), + [sym_html_comment] = ACTIONS(5), + }, + [973] = { + [sym_comment] = STATE(973), [sym_identifier] = ACTIONS(3136), [anon_sym_export] = ACTIONS(3136), [anon_sym_default] = ACTIONS(3136), @@ -142399,506 +142904,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym_comment] = STATE(968), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), - [sym_html_comment] = ACTIONS(5), - }, - [969] = { - [sym_comment] = STATE(969), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), + [974] = { + [sym_comment] = STATE(974), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3080), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_namespace] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3080), + [anon_sym_import] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3080), + [anon_sym_var] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_await] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_debugger] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_LTtemplate_GT] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_class] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_void] = ACTIONS(3080), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3080), + [sym_number] = ACTIONS(3080), + [sym_private_property_identifier] = ACTIONS(3080), + [sym_this] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_null] = ACTIONS(3080), + [sym_undefined] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(3080), + [anon_sym_set] = ACTIONS(3080), + [anon_sym_declare] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_module] = ACTIONS(3080), + [anon_sym_any] = ACTIONS(3080), + [anon_sym_number] = ACTIONS(3080), + [anon_sym_boolean] = ACTIONS(3080), + [anon_sym_string] = ACTIONS(3080), + [anon_sym_symbol] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_comment] = STATE(970), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_default] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_case] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [sym_html_comment] = ACTIONS(5), - }, - [971] = { - [sym_comment] = STATE(971), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [975] = { + [sym_comment] = STATE(975), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_with] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [anon_sym_let] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_await] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_debugger] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_finally] = ACTIONS(3086), + [anon_sym_yield] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LTtemplate_GT] = ACTIONS(3086), + [anon_sym_DQUOTE] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_async] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_void] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3086), + [sym_number] = ACTIONS(3086), + [sym_private_property_identifier] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), + [sym_super] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_null] = ACTIONS(3086), + [sym_undefined] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_readonly] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3086), + [anon_sym_set] = ACTIONS(3086), + [anon_sym_declare] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_module] = ACTIONS(3086), + [anon_sym_any] = ACTIONS(3086), + [anon_sym_number] = ACTIONS(3086), + [anon_sym_boolean] = ACTIONS(3086), + [anon_sym_string] = ACTIONS(3086), + [anon_sym_symbol] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), [sym_html_comment] = ACTIONS(5), }, - [972] = { - [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(3118), - [sym_identifier] = ACTIONS(3116), - [anon_sym_export] = ACTIONS(3116), - [anon_sym_type] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3116), - [anon_sym_import] = ACTIONS(3116), - [anon_sym_with] = ACTIONS(3116), - [anon_sym_var] = ACTIONS(3116), - [anon_sym_let] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_await] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_debugger] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_yield] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LTtemplate_GT] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_async] = ACTIONS(3116), - [anon_sym_function] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_void] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_number] = ACTIONS(3116), - [sym_private_property_identifier] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - [sym_super] = ACTIONS(3116), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [sym_null] = ACTIONS(3116), - [sym_undefined] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_readonly] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_declare] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_module] = ACTIONS(3116), - [anon_sym_any] = ACTIONS(3116), - [anon_sym_number] = ACTIONS(3116), - [anon_sym_boolean] = ACTIONS(3116), - [anon_sym_string] = ACTIONS(3116), - [anon_sym_symbol] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3118), + [976] = { + [sym_comment] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [973] = { - [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_else] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), + [977] = { + [sym_comment] = STATE(977), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, - [974] = { - [sym_comment] = STATE(974), + [978] = { + [sym_comment] = STATE(978), [sym_identifier] = ACTIONS(3146), [anon_sym_export] = ACTIONS(3146), [anon_sym_default] = ACTIONS(3146), @@ -142980,8 +143319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, - [975] = { - [sym_comment] = STATE(975), + [979] = { + [sym_comment] = STATE(979), [sym_identifier] = ACTIONS(3148), [anon_sym_export] = ACTIONS(3148), [anon_sym_default] = ACTIONS(3148), @@ -143063,8 +143402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_comment] = STATE(976), + [980] = { + [sym_comment] = STATE(980), [sym_identifier] = ACTIONS(3150), [anon_sym_export] = ACTIONS(3150), [anon_sym_default] = ACTIONS(3150), @@ -143146,8 +143485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [977] = { - [sym_comment] = STATE(977), + [981] = { + [sym_comment] = STATE(981), [sym_identifier] = ACTIONS(3152), [anon_sym_export] = ACTIONS(3152), [anon_sym_default] = ACTIONS(3152), @@ -143229,91 +143568,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, - [978] = { - [sym_comment] = STATE(978), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [982] = { + [sym_comment] = STATE(982), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [979] = { - [sym_comment] = STATE(979), + [983] = { + [sym_comment] = STATE(983), [sym_identifier] = ACTIONS(3154), [anon_sym_export] = ACTIONS(3154), [anon_sym_default] = ACTIONS(3154), @@ -143395,8 +143734,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [980] = { - [sym_comment] = STATE(980), + [984] = { + [sym_comment] = STATE(984), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym_html_comment] = ACTIONS(5), + }, + [985] = { + [sym_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_catch] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [986] = { + [sym_comment] = STATE(986), [sym_identifier] = ACTIONS(3156), [anon_sym_export] = ACTIONS(3156), [anon_sym_default] = ACTIONS(3156), @@ -143478,91 +143983,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, - [981] = { - [sym_comment] = STATE(981), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_default] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_case] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [987] = { + [sym_comment] = STATE(987), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, - [982] = { - [sym_comment] = STATE(982), + [988] = { + [sym_comment] = STATE(988), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), + [sym_html_comment] = ACTIONS(5), + }, + [989] = { + [sym_comment] = STATE(989), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [sym_html_comment] = ACTIONS(5), + }, + [990] = { + [sym_comment] = STATE(990), [sym_identifier] = ACTIONS(3160), [anon_sym_export] = ACTIONS(3160), [anon_sym_default] = ACTIONS(3160), @@ -143644,8 +144315,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [983] = { - [sym_comment] = STATE(983), + [991] = { + [sym_comment] = STATE(991), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [sym_html_comment] = ACTIONS(5), + }, + [992] = { + [sym_comment] = STATE(992), [sym_identifier] = ACTIONS(3162), [anon_sym_export] = ACTIONS(3162), [anon_sym_default] = ACTIONS(3162), @@ -143727,91 +144481,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [984] = { - [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3164), + [993] = { + [sym_comment] = STATE(993), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_case] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), [sym_html_comment] = ACTIONS(5), }, - [985] = { - [sym_comment] = STATE(985), + [994] = { + [sym_comment] = STATE(994), + [sym_identifier] = ACTIONS(3164), + [anon_sym_export] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_type] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3164), + [anon_sym_import] = ACTIONS(3164), + [anon_sym_with] = ACTIONS(3164), + [anon_sym_var] = ACTIONS(3164), + [anon_sym_let] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_else] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_debugger] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_LTtemplate_GT] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_async] = ACTIONS(3164), + [anon_sym_function] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_private_property_identifier] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), + [sym_super] = ACTIONS(3164), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [sym_null] = ACTIONS(3164), + [sym_undefined] = ACTIONS(3164), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_readonly] = ACTIONS(3164), + [anon_sym_get] = ACTIONS(3164), + [anon_sym_set] = ACTIONS(3164), + [anon_sym_declare] = ACTIONS(3164), + [anon_sym_public] = ACTIONS(3164), + [anon_sym_private] = ACTIONS(3164), + [anon_sym_protected] = ACTIONS(3164), + [anon_sym_override] = ACTIONS(3164), + [anon_sym_module] = ACTIONS(3164), + [anon_sym_any] = ACTIONS(3164), + [anon_sym_number] = ACTIONS(3164), + [anon_sym_boolean] = ACTIONS(3164), + [anon_sym_string] = ACTIONS(3164), + [anon_sym_symbol] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3164), + [anon_sym_abstract] = ACTIONS(3164), + [anon_sym_interface] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [sym_html_comment] = ACTIONS(5), + }, + [995] = { + [sym_comment] = STATE(995), [sym_identifier] = ACTIONS(3166), [anon_sym_export] = ACTIONS(3166), [anon_sym_default] = ACTIONS(3166), @@ -143893,340 +144730,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, - [986] = { - [sym_comment] = STATE(986), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [996] = { + [sym_comment] = STATE(996), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2309), [sym_html_comment] = ACTIONS(5), }, - [987] = { - [sym_comment] = STATE(987), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_case] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [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(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = 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_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [997] = { + [sym_comment] = STATE(997), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, - [988] = { - [sym_comment] = STATE(988), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [998] = { + [sym_comment] = STATE(998), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [999] = { + [sym_comment] = STATE(999), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2311), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_comment] = STATE(990), + [1000] = { + [sym_comment] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym_html_comment] = ACTIONS(5), + }, + [1001] = { + [sym_comment] = STATE(1001), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_LTtemplate_GT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3112), + [sym_number] = ACTIONS(3112), + [sym_private_property_identifier] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_override] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_object] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [sym__automatic_semicolon] = ACTIONS(3114), + [sym_html_comment] = ACTIONS(5), + }, + [1002] = { + [sym_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3172), + [sym_html_comment] = ACTIONS(5), + }, + [1003] = { + [sym_comment] = STATE(1003), [sym_identifier] = ACTIONS(3174), [anon_sym_export] = ACTIONS(3174), [anon_sym_default] = ACTIONS(3174), @@ -144308,8 +145394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, - [991] = { - [sym_comment] = STATE(991), + [1004] = { + [sym_comment] = STATE(1004), [sym_identifier] = ACTIONS(3176), [anon_sym_export] = ACTIONS(3176), [anon_sym_default] = ACTIONS(3176), @@ -144391,8 +145477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_comment] = STATE(992), + [1005] = { + [sym_comment] = STATE(1005), [sym_identifier] = ACTIONS(3178), [anon_sym_export] = ACTIONS(3178), [anon_sym_default] = ACTIONS(3178), @@ -144474,8 +145560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_comment] = STATE(993), + [1006] = { + [sym_comment] = STATE(1006), [sym_identifier] = ACTIONS(3180), [anon_sym_export] = ACTIONS(3180), [anon_sym_default] = ACTIONS(3180), @@ -144557,8 +145643,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [994] = { - [sym_comment] = STATE(994), + [1007] = { + [sym_comment] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2297), + [sym_html_comment] = ACTIONS(5), + }, + [1008] = { + [sym_comment] = STATE(1008), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_html_comment] = ACTIONS(5), + }, + [1009] = { + [sym_finally_clause] = STATE(1503), + [sym_comment] = STATE(1009), + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_with] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_await] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_debugger] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_finally] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LTtemplate_GT] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_void] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3046), + [sym_number] = ACTIONS(3046), + [sym_private_property_identifier] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [sym_super] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + [anon_sym_object] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [sym_html_comment] = ACTIONS(5), + }, + [1010] = { + [sym_comment] = STATE(1010), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1011] = { + [sym_comment] = STATE(1011), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [1012] = { + [sym_comment] = STATE(1012), [sym_identifier] = ACTIONS(3182), [anon_sym_export] = ACTIONS(3182), [anon_sym_default] = ACTIONS(3182), @@ -144640,91 +146141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [995] = { - [sym_comment] = STATE(995), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2289), - [sym_html_comment] = ACTIONS(5), - }, - [996] = { - [sym_comment] = STATE(996), + [1013] = { + [sym_comment] = STATE(1013), [sym_identifier] = ACTIONS(3184), [anon_sym_export] = ACTIONS(3184), [anon_sym_default] = ACTIONS(3184), @@ -144806,506 +146224,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [997] = { - [sym_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2315), - [sym_html_comment] = ACTIONS(5), - }, - [998] = { - [sym_comment] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3094), - [anon_sym_export] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_typeof] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [anon_sym_let] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_await] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_debugger] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_finally] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_LTtemplate_GT] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_async] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_void] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3094), - [sym_number] = ACTIONS(3094), - [sym_private_property_identifier] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - [sym_super] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_undefined] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), - [anon_sym_declare] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_module] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3094), - [anon_sym_number] = ACTIONS(3094), - [anon_sym_boolean] = ACTIONS(3094), - [anon_sym_string] = ACTIONS(3094), - [anon_sym_symbol] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [999] = { - [sym_comment] = STATE(999), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1000] = { - [sym_comment] = STATE(1000), - [sym_identifier] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_await] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_debugger] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LTtemplate_GT] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_async] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_void] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_number] = ACTIONS(3082), - [sym_private_property_identifier] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [sym_super] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_null] = ACTIONS(3082), - [sym_undefined] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_readonly] = ACTIONS(3082), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_declare] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [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(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [sym__automatic_semicolon] = ACTIONS(3084), + [1014] = { + [sym_comment] = STATE(1014), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2357), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_comment] = STATE(1001), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [1015] = { + [sym_comment] = STATE(1015), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), [sym_html_comment] = ACTIONS(5), }, - [1002] = { - [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3190), + [1016] = { + [sym_else_clause] = STATE(1509), + [sym_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_typeof] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_await] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_debugger] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_LTtemplate_GT] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_void] = ACTIONS(3066), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3066), + [sym_number] = ACTIONS(3066), + [sym_private_property_identifier] = ACTIONS(3066), + [sym_this] = ACTIONS(3066), + [sym_super] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_null] = ACTIONS(3066), + [sym_undefined] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [anon_sym_object] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_comment] = STATE(1003), + [1017] = { + [sym_comment] = STATE(1017), [sym_identifier] = ACTIONS(3192), [anon_sym_export] = ACTIONS(3192), [anon_sym_default] = ACTIONS(3192), @@ -145387,174 +146556,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_comment] = STATE(1004), - [sym_identifier] = ACTIONS(3116), - [anon_sym_export] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_type] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3116), - [anon_sym_import] = ACTIONS(3116), - [anon_sym_with] = ACTIONS(3116), - [anon_sym_var] = ACTIONS(3116), - [anon_sym_let] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_await] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_debugger] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_yield] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LTtemplate_GT] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_async] = ACTIONS(3116), - [anon_sym_function] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_void] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_number] = ACTIONS(3116), - [sym_private_property_identifier] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - [sym_super] = ACTIONS(3116), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [sym_null] = ACTIONS(3116), - [sym_undefined] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_readonly] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_declare] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_module] = ACTIONS(3116), - [anon_sym_any] = ACTIONS(3116), - [anon_sym_number] = ACTIONS(3116), - [anon_sym_boolean] = ACTIONS(3116), - [anon_sym_string] = ACTIONS(3116), - [anon_sym_symbol] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3118), - [sym_html_comment] = ACTIONS(5), - }, - [1005] = { - [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [1018] = { + [sym_comment] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2315), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_comment] = STATE(1006), + [1019] = { + [sym_comment] = STATE(1019), [sym_identifier] = ACTIONS(3194), [anon_sym_export] = ACTIONS(3194), [anon_sym_default] = ACTIONS(3194), @@ -145636,91 +146722,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2273), + [1020] = { + [sym_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2337), [sym_html_comment] = ACTIONS(5), }, - [1008] = { - [sym_comment] = STATE(1008), + [1021] = { + [sym_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym_html_comment] = ACTIONS(5), + }, + [1022] = { + [sym_comment] = STATE(1022), [sym_identifier] = ACTIONS(3196), [anon_sym_export] = ACTIONS(3196), [anon_sym_default] = ACTIONS(3196), @@ -145802,8 +146971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1009] = { - [sym_comment] = STATE(1009), + [1023] = { + [sym_comment] = STATE(1023), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), [anon_sym_default] = ACTIONS(3198), @@ -145885,423 +147054,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_comment] = STATE(1010), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1024] = { + [sym_comment] = STATE(1024), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_default] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_comment] = STATE(1025), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_comment] = STATE(1011), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1012] = { - [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1013] = { - [sym_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(3200), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_else] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym_finally] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym_html_comment] = ACTIONS(5), - }, - [1014] = { - [sym_comment] = STATE(1014), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [sym_html_comment] = ACTIONS(5), - }, - [1015] = { - [sym_comment] = STATE(1015), + [1026] = { + [sym_comment] = STATE(1026), [sym_identifier] = ACTIONS(3204), [anon_sym_export] = ACTIONS(3204), [anon_sym_default] = ACTIONS(3204), @@ -146383,506 +147303,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_else_clause] = STATE(1310), - [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(3206), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_LTtemplate_GT] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_void] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3070), - [sym_number] = ACTIONS(3070), - [sym_private_property_identifier] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [sym_super] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_null] = ACTIONS(3070), - [sym_undefined] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_declare] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_module] = ACTIONS(3070), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [sym_html_comment] = ACTIONS(5), - }, - [1017] = { - [sym_comment] = STATE(1017), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1018] = { - [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1019] = { - [sym_comment] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, - [1020] = { - [sym_comment] = STATE(1020), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2333), + [1027] = { + [sym_comment] = STATE(1027), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_default] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_case] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LTtemplate_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_number] = ACTIONS(3206), + [sym_private_property_identifier] = ACTIONS(3206), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), + [1028] = { + [sym_comment] = STATE(1028), + [sym_identifier] = ACTIONS(3208), + [anon_sym_export] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3208), + [anon_sym_import] = ACTIONS(3208), + [anon_sym_with] = ACTIONS(3208), + [anon_sym_var] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_debugger] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LTtemplate_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_function] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_private_property_identifier] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [sym_null] = ACTIONS(3208), + [sym_undefined] = ACTIONS(3208), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_readonly] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3208), + [anon_sym_set] = ACTIONS(3208), + [anon_sym_declare] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_override] = ACTIONS(3208), + [anon_sym_module] = ACTIONS(3208), + [anon_sym_any] = ACTIONS(3208), + [anon_sym_number] = ACTIONS(3208), + [anon_sym_boolean] = ACTIONS(3208), + [anon_sym_string] = ACTIONS(3208), + [anon_sym_symbol] = ACTIONS(3208), + [anon_sym_object] = ACTIONS(3208), + [anon_sym_abstract] = ACTIONS(3208), + [anon_sym_interface] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_comment] = STATE(1022), + [1029] = { + [sym_comment] = STATE(1029), [sym_identifier] = ACTIONS(3210), [anon_sym_export] = ACTIONS(3210), [anon_sym_default] = ACTIONS(3210), @@ -146964,174 +147552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_comment] = STATE(1023), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_case] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2311), - [sym_html_comment] = ACTIONS(5), - }, - [1024] = { - [sym_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym_html_comment] = ACTIONS(5), - }, - [1025] = { - [sym_comment] = STATE(1025), + [1030] = { + [sym_comment] = STATE(1030), [sym_identifier] = ACTIONS(3212), [anon_sym_export] = ACTIONS(3212), [anon_sym_default] = ACTIONS(3212), @@ -147213,8 +147635,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_comment] = STATE(1026), + [1031] = { + [sym_comment] = STATE(1031), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [sym_html_comment] = ACTIONS(5), + }, + [1032] = { + [sym_comment] = STATE(1032), [sym_identifier] = ACTIONS(3214), [anon_sym_export] = ACTIONS(3214), [anon_sym_default] = ACTIONS(3214), @@ -147296,8 +147801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_comment] = STATE(1027), + [1033] = { + [sym_comment] = STATE(1033), [sym_identifier] = ACTIONS(3216), [anon_sym_export] = ACTIONS(3216), [anon_sym_default] = ACTIONS(3216), @@ -147379,91 +147884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [1029] = { - [sym_comment] = STATE(1029), + [1034] = { + [sym_comment] = STATE(1034), [sym_identifier] = ACTIONS(3218), [anon_sym_export] = ACTIONS(3218), [anon_sym_default] = ACTIONS(3218), @@ -147545,8 +147967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_comment] = STATE(1030), + [1035] = { + [sym_comment] = STATE(1035), [sym_identifier] = ACTIONS(3220), [anon_sym_export] = ACTIONS(3220), [anon_sym_default] = ACTIONS(3220), @@ -147628,8 +148050,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, - [1031] = { - [sym_comment] = STATE(1031), + [1036] = { + [sym_comment] = STATE(1036), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2383), + [sym_html_comment] = ACTIONS(5), + }, + [1037] = { + [sym_comment] = STATE(1037), [sym_identifier] = ACTIONS(3222), [anon_sym_export] = ACTIONS(3222), [anon_sym_default] = ACTIONS(3222), @@ -147711,8 +148216,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_comment] = STATE(1032), + [1038] = { + [sym_comment] = STATE(1038), [sym_identifier] = ACTIONS(3224), [anon_sym_export] = ACTIONS(3224), [anon_sym_default] = ACTIONS(3224), @@ -147794,8 +148299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_comment] = STATE(1033), + [1039] = { + [sym_comment] = STATE(1039), [sym_identifier] = ACTIONS(3226), [anon_sym_export] = ACTIONS(3226), [anon_sym_default] = ACTIONS(3226), @@ -147877,174 +148382,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), + [1040] = { + [sym_comment] = STATE(1040), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2389), - [sym_html_comment] = ACTIONS(5), - }, - [1035] = { - [sym_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_comment] = STATE(1036), + [1041] = { + [sym_comment] = STATE(1041), [sym_identifier] = ACTIONS(3228), [anon_sym_export] = ACTIONS(3228), [anon_sym_default] = ACTIONS(3228), @@ -148126,8 +148548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_comment] = STATE(1037), + [1042] = { + [sym_comment] = STATE(1042), [sym_identifier] = ACTIONS(3230), [anon_sym_export] = ACTIONS(3230), [anon_sym_default] = ACTIONS(3230), @@ -148209,8 +148631,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_comment] = STATE(1038), + [1043] = { + [sym_comment] = STATE(1043), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3232), [anon_sym_default] = ACTIONS(3232), @@ -148292,8 +148714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_comment] = STATE(1039), + [1044] = { + [sym_comment] = STATE(1044), [sym_identifier] = ACTIONS(3234), [anon_sym_export] = ACTIONS(3234), [anon_sym_default] = ACTIONS(3234), @@ -148375,8 +148797,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, - [1040] = { - [sym_comment] = STATE(1040), + [1045] = { + [sym_comment] = STATE(1045), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_case] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2359), + [sym_html_comment] = ACTIONS(5), + }, + [1046] = { + [sym_comment] = STATE(1046), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym_html_comment] = ACTIONS(5), + }, + [1047] = { + [sym_comment] = STATE(1047), [sym_identifier] = ACTIONS(3236), [anon_sym_export] = ACTIONS(3236), [anon_sym_default] = ACTIONS(3236), @@ -148458,91 +149046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_statement_block] = STATE(1218), - [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_comment] = STATE(1042), + [1048] = { + [sym_comment] = STATE(1048), [sym_identifier] = ACTIONS(3238), [anon_sym_export] = ACTIONS(3238), [anon_sym_default] = ACTIONS(3238), @@ -148624,175 +149129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, - [1043] = { - [sym_else_clause] = STATE(1469), - [sym_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(3206), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_LTtemplate_GT] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_void] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3070), - [sym_number] = ACTIONS(3070), - [sym_private_property_identifier] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [sym_super] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_null] = ACTIONS(3070), - [sym_undefined] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_declare] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_module] = ACTIONS(3070), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [sym_html_comment] = ACTIONS(5), - }, - [1044] = { - [sym_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_await] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_debugger] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LTtemplate_GT] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_async] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_void] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3074), - [sym_number] = ACTIONS(3074), - [sym_private_property_identifier] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [sym_super] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_null] = ACTIONS(3074), - [sym_undefined] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_readonly] = ACTIONS(3074), - [anon_sym_get] = ACTIONS(3074), - [anon_sym_set] = ACTIONS(3074), - [anon_sym_declare] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_any] = ACTIONS(3074), - [anon_sym_number] = ACTIONS(3074), - [anon_sym_boolean] = ACTIONS(3074), - [anon_sym_string] = ACTIONS(3074), - [anon_sym_symbol] = ACTIONS(3074), - [anon_sym_object] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [sym__automatic_semicolon] = ACTIONS(3246), - [sym_html_comment] = ACTIONS(5), - }, - [1045] = { - [sym_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(3248), + [1049] = { + [sym_comment] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3104), [sym_identifier] = ACTIONS(3102), [anon_sym_export] = ACTIONS(3102), [anon_sym_type] = ACTIONS(3102), @@ -148821,7 +149160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3102), [anon_sym_throw] = ACTIONS(3102), [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_finally] = ACTIONS(3102), [anon_sym_yield] = ACTIONS(3102), [anon_sym_LBRACK] = ACTIONS(3102), [anon_sym_LTtemplate_GT] = ACTIONS(3102), @@ -148871,16 +149209,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3102), [anon_sym_interface] = ACTIONS(3102), [anon_sym_enum] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_html_comment] = ACTIONS(5), }, - [1046] = { - [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), + [1050] = { + [sym_comment] = STATE(1050), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [sym_html_comment] = ACTIONS(5), + }, + [1051] = { + [sym_comment] = STATE(1051), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_comment] = STATE(1052), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [sym_html_comment] = ACTIONS(5), + }, + [1053] = { + [sym_comment] = STATE(1053), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [sym_html_comment] = ACTIONS(5), + }, + [1054] = { + [sym_comment] = STATE(1054), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [sym_html_comment] = ACTIONS(5), + }, + [1055] = { + [sym_comment] = STATE(1055), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1056] = { + [sym_comment] = STATE(1056), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1057] = { + [sym_comment] = STATE(1057), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1058] = { + [sym_comment] = STATE(1058), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2333), + [sym_html_comment] = ACTIONS(5), + }, + [1059] = { + [sym_comment] = STATE(1059), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), [anon_sym_RBRACE] = ACTIONS(3250), [anon_sym_typeof] = ACTIONS(3250), [anon_sym_import] = ACTIONS(3250), @@ -148956,8 +150042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, - [1047] = { - [sym_comment] = STATE(1047), + [1060] = { + [sym_comment] = STATE(1060), [sym_identifier] = ACTIONS(3252), [anon_sym_export] = ACTIONS(3252), [anon_sym_default] = ACTIONS(3252), @@ -149039,8 +150125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1048] = { - [sym_comment] = STATE(1048), + [1061] = { + [sym_comment] = STATE(1061), [sym_identifier] = ACTIONS(3254), [anon_sym_export] = ACTIONS(3254), [anon_sym_default] = ACTIONS(3254), @@ -149122,91 +150208,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_statement_block] = STATE(1520), - [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), + [1062] = { + [sym_comment] = STATE(1062), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_LTtemplate_GT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3112), + [sym_number] = ACTIONS(3112), + [sym_private_property_identifier] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_override] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_object] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [sym__automatic_semicolon] = ACTIONS(3114), [sym_html_comment] = ACTIONS(5), }, - [1050] = { - [sym_comment] = STATE(1050), + [1063] = { + [sym_comment] = STATE(1063), + [sym_identifier] = ACTIONS(3256), + [anon_sym_export] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_typeof] = ACTIONS(3256), + [anon_sym_import] = ACTIONS(3256), + [anon_sym_with] = ACTIONS(3256), + [anon_sym_var] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_await] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_debugger] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_yield] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LTtemplate_GT] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_async] = ACTIONS(3256), + [anon_sym_function] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_void] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3256), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + [sym_super] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_undefined] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_readonly] = ACTIONS(3256), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3256), + [anon_sym_public] = ACTIONS(3256), + [anon_sym_private] = ACTIONS(3256), + [anon_sym_protected] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_module] = ACTIONS(3256), + [anon_sym_any] = ACTIONS(3256), + [anon_sym_number] = ACTIONS(3256), + [anon_sym_boolean] = ACTIONS(3256), + [anon_sym_string] = ACTIONS(3256), + [anon_sym_symbol] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3256), + [anon_sym_abstract] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [sym_html_comment] = ACTIONS(5), + }, + [1064] = { + [sym_comment] = STATE(1064), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym_html_comment] = ACTIONS(5), + }, + [1065] = { + [sym_comment] = STATE(1065), [sym_identifier] = ACTIONS(3258), [anon_sym_export] = ACTIONS(3258), [anon_sym_default] = ACTIONS(3258), @@ -149288,8 +150540,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_comment] = STATE(1051), + [1066] = { + [sym_comment] = STATE(1066), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [sym_html_comment] = ACTIONS(5), + }, + [1067] = { + [sym_comment] = STATE(1067), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2281), + [sym_html_comment] = ACTIONS(5), + }, + [1068] = { + [sym_comment] = STATE(1068), [sym_identifier] = ACTIONS(3260), [anon_sym_export] = ACTIONS(3260), [anon_sym_default] = ACTIONS(3260), @@ -149371,257 +150789,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_comment] = STATE(1052), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_default] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), + [1069] = { + [sym_comment] = STATE(1069), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, - [1053] = { - [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [1070] = { + [sym_statement_block] = STATE(1512), + [sym_comment] = STATE(1070), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_comment] = STATE(1054), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [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(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [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_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), + [1071] = { + [sym_statement_block] = STATE(1512), + [sym_comment] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_comment] = STATE(1055), + [1072] = { + [sym_comment] = STATE(1072), [sym_identifier] = ACTIONS(3268), [anon_sym_export] = ACTIONS(3268), [anon_sym_default] = ACTIONS(3268), @@ -149703,257 +151121,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_comment] = STATE(1056), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2281), - [sym_html_comment] = ACTIONS(5), - }, - [1057] = { - [sym_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1058] = { - [sym_comment] = STATE(1058), - [sym_identifier] = ACTIONS(3094), - [anon_sym_export] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_typeof] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [anon_sym_let] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_await] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_debugger] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_finally] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_LTtemplate_GT] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_async] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_void] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3094), - [sym_number] = ACTIONS(3094), - [sym_private_property_identifier] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - [sym_super] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_undefined] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), - [anon_sym_declare] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_module] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3094), - [anon_sym_number] = ACTIONS(3094), - [anon_sym_boolean] = ACTIONS(3094), - [anon_sym_string] = ACTIONS(3094), - [anon_sym_symbol] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), + [1073] = { + [sym_comment] = STATE(1073), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [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(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [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_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_comment] = STATE(1059), + [1074] = { + [sym_comment] = STATE(1074), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3272), [anon_sym_default] = ACTIONS(3272), @@ -150035,8 +151287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_comment] = STATE(1060), + [1075] = { + [sym_comment] = STATE(1075), [sym_identifier] = ACTIONS(3274), [anon_sym_export] = ACTIONS(3274), [anon_sym_default] = ACTIONS(3274), @@ -150118,257 +151370,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_comment] = STATE(1061), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), + [1076] = { + [sym_comment] = STATE(1076), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, - [1062] = { - [sym_comment] = STATE(1062), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3276), + [1077] = { + [sym_comment] = STATE(1077), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1063] = { - [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), + [1078] = { + [sym_comment] = STATE(1078), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2355), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_comment] = STATE(1064), + [1079] = { + [sym_comment] = STATE(1079), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_with] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [anon_sym_let] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_await] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_debugger] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_finally] = ACTIONS(3086), + [anon_sym_yield] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LTtemplate_GT] = ACTIONS(3086), + [anon_sym_DQUOTE] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_async] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_void] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3086), + [sym_number] = ACTIONS(3086), + [sym_private_property_identifier] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), + [sym_super] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_null] = ACTIONS(3086), + [sym_undefined] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_readonly] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3086), + [anon_sym_set] = ACTIONS(3086), + [anon_sym_declare] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_module] = ACTIONS(3086), + [anon_sym_any] = ACTIONS(3086), + [anon_sym_number] = ACTIONS(3086), + [anon_sym_boolean] = ACTIONS(3086), + [anon_sym_string] = ACTIONS(3086), + [anon_sym_symbol] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [sym_html_comment] = ACTIONS(5), + }, + [1080] = { + [sym_comment] = STATE(1080), + [sym_identifier] = ACTIONS(3080), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_namespace] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3080), + [anon_sym_import] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3080), + [anon_sym_var] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_await] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_debugger] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_LTtemplate_GT] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_class] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_void] = ACTIONS(3080), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3080), + [sym_number] = ACTIONS(3080), + [sym_private_property_identifier] = ACTIONS(3080), + [sym_this] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_null] = ACTIONS(3080), + [sym_undefined] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(3080), + [anon_sym_set] = ACTIONS(3080), + [anon_sym_declare] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_module] = ACTIONS(3080), + [anon_sym_any] = ACTIONS(3080), + [anon_sym_number] = ACTIONS(3080), + [anon_sym_boolean] = ACTIONS(3080), + [anon_sym_string] = ACTIONS(3080), + [anon_sym_symbol] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_html_comment] = ACTIONS(5), + }, + [1081] = { + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_case] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2393), + [sym_html_comment] = ACTIONS(5), + }, + [1082] = { + [sym_comment] = STATE(1082), + [sym_identifier] = ACTIONS(3106), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_with] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_debugger] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_finally] = ACTIONS(3106), + [anon_sym_yield] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LTtemplate_GT] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_private_property_identifier] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + [sym_super] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_null] = ACTIONS(3106), + [sym_undefined] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1083] = { + [sym_comment] = STATE(1083), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [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(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [sym_html_comment] = ACTIONS(5), + }, + [1084] = { + [sym_comment] = STATE(1084), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3272), [anon_sym_default] = ACTIONS(3272), @@ -150450,512 +152117,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1065] = { - [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [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(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [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_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [1068] = { - [sym_statement_block] = STATE(1351), - [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [sym_html_comment] = ACTIONS(5), - }, - [1069] = { - [sym_comment] = STATE(1069), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LTtemplate_GT] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3280), - [sym_number] = ACTIONS(3280), - [sym_private_property_identifier] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [sym_html_comment] = ACTIONS(5), - }, - [1070] = { - [sym_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2331), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_comment] = STATE(1071), + [1085] = { + [sym_statement_block] = STATE(1292), + [sym_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3088), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -150964,6 +152134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -150978,7 +152149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -151028,94 +152198,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2277), + [1086] = { + [sym_comment] = STATE(1086), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_comment] = STATE(1073), + [1087] = { + [sym_comment] = STATE(1087), [sym_identifier] = ACTIONS(3284), [anon_sym_export] = ACTIONS(3284), [anon_sym_default] = ACTIONS(3284), @@ -151197,174 +152366,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_comment] = STATE(1074), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [1075] = { - [sym_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3286), + [1088] = { + [sym_comment] = STATE(1088), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LTtemplate_GT] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3286), + [sym_number] = ACTIONS(3286), + [sym_private_property_identifier] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), [sym_html_comment] = ACTIONS(5), }, - [1076] = { - [sym_comment] = STATE(1076), + [1089] = { + [sym_comment] = STATE(1089), [sym_identifier] = ACTIONS(3288), [anon_sym_export] = ACTIONS(3288), [anon_sym_default] = ACTIONS(3288), @@ -151446,174 +152532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1077] = { - [sym_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_catch] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_comment] = STATE(1078), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym_html_comment] = ACTIONS(5), - }, - [1079] = { - [sym_comment] = STATE(1079), + [1090] = { + [sym_comment] = STATE(1090), [sym_identifier] = ACTIONS(3290), [anon_sym_export] = ACTIONS(3290), [anon_sym_default] = ACTIONS(3290), @@ -151695,8 +152615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1080] = { - [sym_comment] = STATE(1080), + [1091] = { + [sym_comment] = STATE(1091), [sym_identifier] = ACTIONS(3292), [anon_sym_export] = ACTIONS(3292), [anon_sym_default] = ACTIONS(3292), @@ -151778,91 +152698,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_comment] = STATE(1081), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), + [1092] = { + [sym_else_clause] = STATE(1432), + [sym_comment] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_typeof] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_with] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), [anon_sym_else] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [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(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_await] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_debugger] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_LTtemplate_GT] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_void] = ACTIONS(3066), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3066), + [sym_number] = ACTIONS(3066), + [sym_private_property_identifier] = ACTIONS(3066), + [sym_this] = ACTIONS(3066), + [sym_super] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_null] = ACTIONS(3066), + [sym_undefined] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [anon_sym_object] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), [sym_html_comment] = ACTIONS(5), }, - [1082] = { - [sym_comment] = STATE(1082), + [1093] = { + [sym_comment] = STATE(1093), [sym_identifier] = ACTIONS(3296), [anon_sym_export] = ACTIONS(3296), [anon_sym_default] = ACTIONS(3296), @@ -151944,8 +152864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, - [1083] = { - [sym_comment] = STATE(1083), + [1094] = { + [sym_comment] = STATE(1094), [sym_identifier] = ACTIONS(3298), [anon_sym_export] = ACTIONS(3298), [anon_sym_default] = ACTIONS(3298), @@ -152027,91 +152947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_comment] = STATE(1084), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_finally] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym_html_comment] = ACTIONS(5), - }, - [1085] = { - [sym_comment] = STATE(1085), + [1095] = { + [sym_comment] = STATE(1095), [sym_identifier] = ACTIONS(3300), [anon_sym_export] = ACTIONS(3300), [anon_sym_default] = ACTIONS(3300), @@ -152193,8 +153030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_comment] = STATE(1086), + [1096] = { + [sym_comment] = STATE(1096), [sym_identifier] = ACTIONS(3302), [anon_sym_export] = ACTIONS(3302), [anon_sym_default] = ACTIONS(3302), @@ -152276,8 +153113,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1087] = { - [sym_comment] = STATE(1087), + [1097] = { + [sym_comment] = STATE(1097), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1098] = { + [sym_comment] = STATE(1098), [sym_identifier] = ACTIONS(3304), [anon_sym_export] = ACTIONS(3304), [anon_sym_default] = ACTIONS(3304), @@ -152359,8 +153279,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_comment] = STATE(1088), + [1099] = { + [sym_comment] = STATE(1099), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1100] = { + [sym_comment] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2381), + [sym_html_comment] = ACTIONS(5), + }, + [1101] = { + [sym_comment] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2377), + [sym_html_comment] = ACTIONS(5), + }, + [1102] = { + [sym_comment] = STATE(1102), [sym_identifier] = ACTIONS(3306), [anon_sym_export] = ACTIONS(3306), [anon_sym_default] = ACTIONS(3306), @@ -152442,8 +153611,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_comment] = STATE(1089), + [1103] = { + [sym_comment] = STATE(1103), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2269), + [sym_html_comment] = ACTIONS(5), + }, + [1104] = { + [sym_comment] = STATE(1104), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2389), + [sym_html_comment] = ACTIONS(5), + }, + [1105] = { + [sym_comment] = STATE(1105), [sym_identifier] = ACTIONS(3308), [anon_sym_export] = ACTIONS(3308), [anon_sym_default] = ACTIONS(3308), @@ -152525,257 +153860,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, - [1090] = { - [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2375), + [1106] = { + [sym_comment] = STATE(1106), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, - [1091] = { - [sym_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [1107] = { + [sym_comment] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2097), - [sym_html_comment] = ACTIONS(5), - }, - [1092] = { - [sym_comment] = STATE(1092), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3310), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [1093] = { - [sym_comment] = STATE(1093), + [1108] = { + [sym_comment] = STATE(1108), [sym_identifier] = ACTIONS(3312), [anon_sym_export] = ACTIONS(3312), [anon_sym_default] = ACTIONS(3312), @@ -152857,174 +154109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1094] = { - [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2383), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_comment] = STATE(1096), + [1109] = { + [sym_comment] = STATE(1109), [sym_identifier] = ACTIONS(3314), [anon_sym_export] = ACTIONS(3314), [anon_sym_default] = ACTIONS(3314), @@ -153106,174 +154192,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1097] = { - [sym_comment] = STATE(1097), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [1110] = { + [sym_comment] = STATE(1110), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2179), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, - [1098] = { - [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LTtemplate_GT] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3316), - [sym_number] = ACTIONS(3316), - [sym_private_property_identifier] = ACTIONS(3316), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), + [1111] = { + [sym_comment] = STATE(1111), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2279), [sym_html_comment] = ACTIONS(5), }, - [1099] = { - [sym_comment] = STATE(1099), + [1112] = { + [sym_comment] = STATE(1112), [sym_identifier] = ACTIONS(3318), [anon_sym_export] = ACTIONS(3318), [anon_sym_default] = ACTIONS(3318), @@ -153355,672 +154441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, - [1100] = { - [sym_comment] = STATE(1100), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_html_comment] = ACTIONS(5), - }, - [1101] = { - [sym_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym_html_comment] = ACTIONS(5), - }, - [1102] = { - [sym_comment] = STATE(1102), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym_html_comment] = ACTIONS(5), - }, - [1103] = { - [sym_comment] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2359), - [sym_html_comment] = ACTIONS(5), - }, - [1104] = { - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), - [sym_html_comment] = ACTIONS(5), - }, - [1105] = { - [sym_comment] = STATE(1105), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_html_comment] = ACTIONS(5), - }, - [1106] = { - [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym_html_comment] = ACTIONS(5), - }, - [1107] = { - [sym_comment] = STATE(1107), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym_html_comment] = ACTIONS(5), - }, - [1108] = { - [sym_comment] = STATE(1108), + [1113] = { + [sym_comment] = STATE(1113), [sym_identifier] = ACTIONS(3320), [anon_sym_export] = ACTIONS(3320), [anon_sym_default] = ACTIONS(3320), @@ -154102,91 +154524,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [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(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), + [1114] = { + [sym_comment] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3106), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_with] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_debugger] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_finally] = ACTIONS(3106), + [anon_sym_yield] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LTtemplate_GT] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_private_property_identifier] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + [sym_super] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_null] = ACTIONS(3106), + [sym_undefined] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_comment] = STATE(1110), + [1115] = { + [sym_comment] = STATE(1115), [sym_identifier] = ACTIONS(3324), [anon_sym_export] = ACTIONS(3324), [anon_sym_default] = ACTIONS(3324), @@ -154268,257 +154690,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_comment] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2327), - [sym_html_comment] = ACTIONS(5), - }, - [1112] = { - [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_default] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), - [sym_html_comment] = ACTIONS(5), - }, - [1113] = { - [sym_comment] = STATE(1113), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2279), + [1116] = { + [sym_comment] = STATE(1116), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_comment] = STATE(1114), + [1117] = { + [sym_comment] = STATE(1117), [sym_identifier] = ACTIONS(3328), [anon_sym_export] = ACTIONS(3328), [anon_sym_default] = ACTIONS(3328), @@ -154600,174 +154856,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_comment] = STATE(1115), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [sym_html_comment] = ACTIONS(5), - }, - [1116] = { - [sym_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_await] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_debugger] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LTtemplate_GT] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_async] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_void] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_number] = ACTIONS(3082), - [sym_private_property_identifier] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [sym_super] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_null] = ACTIONS(3082), - [sym_undefined] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_readonly] = ACTIONS(3082), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_declare] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [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(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [sym__automatic_semicolon] = ACTIONS(3084), + [1118] = { + [sym_comment] = STATE(1118), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_comment] = STATE(1117), + [1119] = { + [sym_comment] = STATE(1119), [sym_identifier] = ACTIONS(3330), [anon_sym_export] = ACTIONS(3330), [anon_sym_default] = ACTIONS(3330), @@ -154849,8 +155022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_comment] = STATE(1118), + [1120] = { + [sym_comment] = STATE(1120), [sym_identifier] = ACTIONS(3332), [anon_sym_export] = ACTIONS(3332), [anon_sym_default] = ACTIONS(3332), @@ -154932,253 +155105,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_comment] = STATE(1119), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [sym_html_comment] = ACTIONS(5), - }, - [1120] = { - [sym_comment] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2367), - [sym_html_comment] = ACTIONS(5), - }, [1121] = { [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1122] = { @@ -155266,6 +155273,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1123] = { [sym_comment] = STATE(1123), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [sym_html_comment] = ACTIONS(5), + }, + [1124] = { + [sym_comment] = STATE(1124), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2367), + [sym_html_comment] = ACTIONS(5), + }, + [1125] = { + [sym_comment] = STATE(1125), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_html_comment] = ACTIONS(5), + }, + [1126] = { + [sym_comment] = STATE(1126), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1127] = { + [sym_comment] = STATE(1127), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1128] = { + [sym_comment] = STATE(1128), [sym_identifier] = ACTIONS(3338), [anon_sym_export] = ACTIONS(3338), [anon_sym_default] = ACTIONS(3338), @@ -155347,174 +155769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, - [1124] = { - [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2395), - [sym_html_comment] = ACTIONS(5), - }, - [1125] = { - [sym_comment] = STATE(1125), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2391), - [sym_html_comment] = ACTIONS(5), - }, - [1126] = { - [sym_comment] = STATE(1126), + [1129] = { + [sym_comment] = STATE(1129), [sym_identifier] = ACTIONS(3340), [anon_sym_export] = ACTIONS(3340), [anon_sym_default] = ACTIONS(3340), @@ -155596,174 +155852,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1127] = { - [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [1130] = { + [sym_comment] = STATE(1130), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1128] = { - [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [1131] = { + [sym_comment] = STATE(1131), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_case] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_comment] = STATE(1129), + [1132] = { + [sym_comment] = STATE(1132), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1133] = { + [sym_comment] = STATE(1133), [sym_identifier] = ACTIONS(3342), [anon_sym_export] = ACTIONS(3342), [anon_sym_default] = ACTIONS(3342), @@ -155845,8 +156184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_comment] = STATE(1130), + [1134] = { + [sym_comment] = STATE(1134), [sym_identifier] = ACTIONS(3344), [anon_sym_export] = ACTIONS(3344), [anon_sym_default] = ACTIONS(3344), @@ -155928,257 +156267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_comment] = STATE(1131), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2345), - [sym_html_comment] = ACTIONS(5), - }, - [1132] = { - [sym_comment] = STATE(1132), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2385), - [sym_html_comment] = ACTIONS(5), - }, - [1133] = { - [sym_comment] = STATE(1133), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym_html_comment] = ACTIONS(5), - }, - [1134] = { - [sym_comment] = STATE(1134), + [1135] = { + [sym_comment] = STATE(1135), [sym_identifier] = ACTIONS(3346), [anon_sym_export] = ACTIONS(3346), [anon_sym_default] = ACTIONS(3346), @@ -156260,8 +156350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1135] = { - [sym_comment] = STATE(1135), + [1136] = { + [sym_comment] = STATE(1136), [sym_identifier] = ACTIONS(3348), [anon_sym_export] = ACTIONS(3348), [anon_sym_default] = ACTIONS(3348), @@ -156343,9 +156433,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, - [1136] = { - [sym_comment] = STATE(1136), - [sym_identifier] = ACTIONS(3350), + [1137] = { + [sym_comment] = STATE(1137), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_case] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2325), + [sym_html_comment] = ACTIONS(5), + }, + [1138] = { + [sym_comment] = STATE(1138), + [sym_identifier] = ACTIONS(3350), [anon_sym_export] = ACTIONS(3350), [anon_sym_default] = ACTIONS(3350), [anon_sym_type] = ACTIONS(3350), @@ -156426,91 +156599,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, - [1137] = { - [sym_comment] = STATE(1137), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_LTtemplate_GT] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3352), - [sym_number] = ACTIONS(3352), - [sym_private_property_identifier] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_object] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), + [1139] = { + [sym_statement_block] = STATE(1301), + [sym_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [1138] = { - [sym_comment] = STATE(1138), + [1140] = { + [sym_comment] = STATE(1140), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3098), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_debugger] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_finally] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LTtemplate_GT] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_private_property_identifier] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + [sym_super] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_null] = ACTIONS(3098), + [sym_undefined] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [sym_html_comment] = ACTIONS(5), + }, + [1141] = { + [sym_comment] = STATE(1141), + [sym_identifier] = ACTIONS(3098), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_debugger] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_finally] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LTtemplate_GT] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_private_property_identifier] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + [sym_super] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_null] = ACTIONS(3098), + [sym_undefined] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [sym_html_comment] = ACTIONS(5), + }, + [1142] = { + [sym_comment] = STATE(1142), [sym_identifier] = ACTIONS(3354), [anon_sym_export] = ACTIONS(3354), [anon_sym_default] = ACTIONS(3354), @@ -156592,91 +156931,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, - [1139] = { - [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [1143] = { + [sym_comment] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2285), + [sym_html_comment] = ACTIONS(5), + }, + [1144] = { + [sym_comment] = STATE(1144), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1140] = { - [sym_comment] = STATE(1140), + [1145] = { + [sym_comment] = STATE(1145), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2345), + [sym_html_comment] = ACTIONS(5), + }, + [1146] = { + [sym_comment] = STATE(1146), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1147] = { + [sym_comment] = STATE(1147), [sym_identifier] = ACTIONS(3356), [anon_sym_export] = ACTIONS(3356), [anon_sym_default] = ACTIONS(3356), @@ -156758,8 +157346,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1141] = { - [sym_comment] = STATE(1141), + [1148] = { + [sym_comment] = STATE(1148), [sym_identifier] = ACTIONS(3358), [anon_sym_export] = ACTIONS(3358), [anon_sym_default] = ACTIONS(3358), @@ -156841,174 +157429,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_comment] = STATE(1142), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_finally] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [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(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), + [1149] = { + [sym_comment] = STATE(1149), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [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(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, - [1143] = { - [sym_comment] = STATE(1143), - [sym_identifier] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_await] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_debugger] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LTtemplate_GT] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_async] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_void] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3074), - [sym_number] = ACTIONS(3074), - [sym_private_property_identifier] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [sym_super] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_null] = ACTIONS(3074), - [sym_undefined] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_readonly] = ACTIONS(3074), - [anon_sym_get] = ACTIONS(3074), - [anon_sym_set] = ACTIONS(3074), - [anon_sym_declare] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_any] = ACTIONS(3074), - [anon_sym_number] = ACTIONS(3074), - [anon_sym_boolean] = ACTIONS(3074), - [anon_sym_string] = ACTIONS(3074), - [anon_sym_symbol] = ACTIONS(3074), - [anon_sym_object] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [sym__automatic_semicolon] = ACTIONS(3362), + [1150] = { + [sym_comment] = STATE(1150), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [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_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [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(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [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_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_comment] = STATE(1144), + [1151] = { + [sym_comment] = STATE(1151), [sym_identifier] = ACTIONS(3364), [anon_sym_export] = ACTIONS(3364), [anon_sym_default] = ACTIONS(3364), @@ -157090,257 +157678,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, - [1145] = { - [sym_finally_clause] = STATE(1526), - [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(3120), - [sym_identifier] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_typeof] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_await] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_debugger] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_throw] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_finally] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LTtemplate_GT] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3052), - [anon_sym_delete] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3052), - [sym_number] = ACTIONS(3052), - [sym_private_property_identifier] = ACTIONS(3052), - [sym_this] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_null] = ACTIONS(3052), - [sym_undefined] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), + [1152] = { + [sym_comment] = STATE(1152), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2187), [sym_html_comment] = ACTIONS(5), }, - [1146] = { - [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), + [1153] = { + [sym_comment] = STATE(1153), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1147] = { - [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [1154] = { + [sym_comment] = STATE(1154), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1148] = { - [sym_comment] = STATE(1148), + [1155] = { + [sym_comment] = STATE(1155), [sym_identifier] = ACTIONS(3366), [anon_sym_export] = ACTIONS(3366), [anon_sym_default] = ACTIONS(3366), @@ -157422,174 +158010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, - [1149] = { - [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), - [sym_html_comment] = ACTIONS(5), - }, - [1150] = { - [sym_comment] = STATE(1150), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [sym_html_comment] = ACTIONS(5), - }, - [1151] = { - [sym_comment] = STATE(1151), + [1156] = { + [sym_comment] = STATE(1156), [sym_identifier] = ACTIONS(3368), [anon_sym_export] = ACTIONS(3368), [anon_sym_default] = ACTIONS(3368), @@ -157671,174 +158093,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1152] = { - [sym_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2341), - [sym_html_comment] = ACTIONS(5), - }, - [1153] = { - [sym_comment] = STATE(1153), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), + [1157] = { + [sym_comment] = STATE(1157), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_comment] = STATE(1154), + [1158] = { + [sym_comment] = STATE(1158), [sym_identifier] = ACTIONS(3370), [anon_sym_export] = ACTIONS(3370), [anon_sym_default] = ACTIONS(3370), @@ -157920,3949 +158259,4601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym_html_comment] = ACTIONS(5), - }, - [1156] = { - [sym_comment] = STATE(1156), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2301), - [sym_html_comment] = ACTIONS(5), - }, - [1157] = { - [sym_comment] = STATE(1157), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2335), - [sym_html_comment] = ACTIONS(5), - }, - [1158] = { - [sym_comment] = STATE(1158), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, [1159] = { [sym_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(3372), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [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(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1160] = { [sym_comment] = STATE(1160), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_var] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_debugger] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LTtemplate_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_function] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_using] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_void] = ACTIONS(2085), + [anon_sym_delete] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2085), + [sym_number] = ACTIONS(2085), + [sym_private_property_identifier] = ACTIONS(2085), + [sym_this] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_undefined] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [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), + [anon_sym_abstract] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_statement_block] = STATE(1520), [sym_comment] = STATE(1161), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_typeof] = ACTIONS(2057), - [anon_sym_import] = ACTIONS(2057), - [anon_sym_with] = ACTIONS(2057), - [anon_sym_var] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_debugger] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_SLASH] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_void] = ACTIONS(2057), - [anon_sym_delete] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2057), - [sym_number] = ACTIONS(2057), - [sym_private_property_identifier] = ACTIONS(2057), - [sym_this] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_undefined] = ACTIONS(2057), - [anon_sym_AT] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_readonly] = ACTIONS(2057), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2057), - [anon_sym_declare] = ACTIONS(2057), - [anon_sym_public] = ACTIONS(2057), - [anon_sym_private] = ACTIONS(2057), - [anon_sym_protected] = ACTIONS(2057), - [anon_sym_override] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_any] = ACTIONS(2057), - [anon_sym_number] = ACTIONS(2057), - [anon_sym_boolean] = ACTIONS(2057), - [anon_sym_string] = ACTIONS(2057), - [anon_sym_symbol] = ACTIONS(2057), - [anon_sym_object] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1162] = { [sym_comment] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1163] = { [sym_comment] = STATE(1163), [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1164] = { [sym_comment] = STATE(1164), [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, [1165] = { [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_default] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [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(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = 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_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [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(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [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_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, [1166] = { [sym_comment] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, [1167] = { [sym_comment] = STATE(1167), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2447), [sym_html_comment] = ACTIONS(5), }, [1168] = { [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2225), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_typeof] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_var] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_debugger] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LTtemplate_GT] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_number] = ACTIONS(2225), - [sym_private_property_identifier] = ACTIONS(2225), - [sym_this] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_null] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_get] = ACTIONS(2225), - [anon_sym_set] = ACTIONS(2225), - [anon_sym_declare] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_override] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_any] = ACTIONS(2225), - [anon_sym_number] = ACTIONS(2225), - [anon_sym_boolean] = ACTIONS(2225), - [anon_sym_string] = ACTIONS(2225), - [anon_sym_symbol] = ACTIONS(2225), - [anon_sym_object] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [sym__automatic_semicolon] = ACTIONS(2457), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3382), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_comment] = STATE(1169), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2445), [sym_html_comment] = ACTIONS(5), }, [1170] = { [sym_comment] = STATE(1170), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1171] = { [sym_comment] = STATE(1171), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LTtemplate_GT] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_delete] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2241), - [sym_number] = ACTIONS(2241), - [sym_private_property_identifier] = ACTIONS(2241), - [sym_this] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_null] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_override] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_object] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2407), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_case] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [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(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = 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_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1173] = { [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_typeof] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LTtemplate_GT] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_delete] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2189), - [sym_number] = ACTIONS(2189), - [sym_private_property_identifier] = ACTIONS(2189), - [sym_this] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_declare] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_protected] = ACTIONS(2189), - [anon_sym_override] = ACTIONS(2189), - [anon_sym_module] = ACTIONS(2189), - [anon_sym_any] = ACTIONS(2189), - [anon_sym_number] = ACTIONS(2189), - [anon_sym_boolean] = ACTIONS(2189), - [anon_sym_string] = ACTIONS(2189), - [anon_sym_symbol] = ACTIONS(2189), - [anon_sym_object] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [sym__automatic_semicolon] = ACTIONS(2443), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_typeof] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_var] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_switch] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_debugger] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_throw] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LTtemplate_GT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_function] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_using] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_delete] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2139), + [sym_number] = ACTIONS(2139), + [sym_private_property_identifier] = ACTIONS(2139), + [sym_this] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [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_abstract] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [sym__automatic_semicolon] = ACTIONS(2421), [sym_html_comment] = ACTIONS(5), }, [1174] = { [sym_comment] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [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_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [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(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [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_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1175] = { [sym_comment] = STATE(1175), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2453), [sym_html_comment] = ACTIONS(5), }, [1176] = { [sym_comment] = STATE(1176), - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_case] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, [1177] = { [sym_comment] = STATE(1177), - [ts_builtin_sym_end] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3094), - [anon_sym_export] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_typeof] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [anon_sym_let] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_await] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_debugger] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_finally] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_LTtemplate_GT] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_async] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_void] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3094), - [sym_number] = ACTIONS(3094), - [sym_private_property_identifier] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - [sym_super] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_undefined] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), - [anon_sym_declare] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_module] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3094), - [anon_sym_number] = ACTIONS(3094), - [anon_sym_boolean] = ACTIONS(3094), - [anon_sym_string] = ACTIONS(3094), - [anon_sym_symbol] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1178] = { [sym_comment] = STATE(1178), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [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(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [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_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, [1179] = { [sym_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [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(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [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_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1180] = { [sym_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3098), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_with] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [anon_sym_let] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_debugger] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_finally] = ACTIONS(3098), + [anon_sym_yield] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LTtemplate_GT] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_async] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_private_property_identifier] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + [sym_super] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_null] = ACTIONS(3098), + [sym_undefined] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_readonly] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3098), + [anon_sym_set] = ACTIONS(3098), + [anon_sym_declare] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_module] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(3098), + [anon_sym_number] = ACTIONS(3098), + [anon_sym_boolean] = ACTIONS(3098), + [anon_sym_string] = ACTIONS(3098), + [anon_sym_symbol] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), [sym_html_comment] = ACTIONS(5), }, [1181] = { [sym_comment] = STATE(1181), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [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(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [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_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1182] = { [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1183] = { [sym_comment] = STATE(1183), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1184] = { [sym_comment] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, [1185] = { [sym_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2129), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_typeof] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_debugger] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LTtemplate_GT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_SLASH] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_delete] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2129), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [sym_number] = ACTIONS(2129), - [sym_private_property_identifier] = ACTIONS(2129), - [sym_this] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_get] = ACTIONS(2129), - [anon_sym_set] = ACTIONS(2129), - [anon_sym_declare] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_private] = ACTIONS(2129), - [anon_sym_protected] = ACTIONS(2129), - [anon_sym_override] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(2129), - [anon_sym_number] = ACTIONS(2129), - [anon_sym_boolean] = ACTIONS(2129), - [anon_sym_string] = ACTIONS(2129), - [anon_sym_symbol] = ACTIONS(2129), - [anon_sym_object] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym__automatic_semicolon] = ACTIONS(2451), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1186] = { [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_typeof] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_var] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_debugger] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LTtemplate_GT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2137), - [sym_number] = ACTIONS(2137), - [sym_private_property_identifier] = ACTIONS(2137), - [sym_this] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_null] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_get] = ACTIONS(2137), - [anon_sym_set] = ACTIONS(2137), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_private] = ACTIONS(2137), - [anon_sym_protected] = ACTIONS(2137), - [anon_sym_override] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_any] = ACTIONS(2137), - [anon_sym_number] = ACTIONS(2137), - [anon_sym_boolean] = ACTIONS(2137), - [anon_sym_string] = ACTIONS(2137), - [anon_sym_symbol] = ACTIONS(2137), - [anon_sym_object] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [sym__automatic_semicolon] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1187] = { [sym_comment] = STATE(1187), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, [1188] = { [sym_comment] = STATE(1188), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [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(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, [1189] = { [sym_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [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(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = 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_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [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_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [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(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [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_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1190] = { [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, [1191] = { [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [sym_html_comment] = ACTIONS(5), - }, - [1192] = { - [sym_comment] = STATE(1192), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [sym_html_comment] = ACTIONS(5), + }, + [1192] = { + [sym_comment] = STATE(1192), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LTtemplate_GT] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3238), + [sym_number] = ACTIONS(3238), + [sym_private_property_identifier] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [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(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, [1193] = { [sym_comment] = STATE(1193), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3290), - [anon_sym_set] = ACTIONS(3290), - [anon_sym_declare] = ACTIONS(3290), - [anon_sym_public] = ACTIONS(3290), - [anon_sym_private] = ACTIONS(3290), - [anon_sym_protected] = ACTIONS(3290), - [anon_sym_override] = ACTIONS(3290), - [anon_sym_module] = ACTIONS(3290), - [anon_sym_any] = ACTIONS(3290), - [anon_sym_number] = ACTIONS(3290), - [anon_sym_boolean] = ACTIONS(3290), - [anon_sym_string] = ACTIONS(3290), - [anon_sym_symbol] = ACTIONS(3290), - [anon_sym_object] = ACTIONS(3290), - [anon_sym_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1194] = { [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3164), + [anon_sym_export] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_type] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3164), + [anon_sym_import] = ACTIONS(3164), + [anon_sym_with] = ACTIONS(3164), + [anon_sym_var] = ACTIONS(3164), + [anon_sym_let] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_debugger] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_LTtemplate_GT] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_async] = ACTIONS(3164), + [anon_sym_function] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_private_property_identifier] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), + [sym_super] = ACTIONS(3164), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [sym_null] = ACTIONS(3164), + [sym_undefined] = ACTIONS(3164), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_readonly] = ACTIONS(3164), + [anon_sym_get] = ACTIONS(3164), + [anon_sym_set] = ACTIONS(3164), + [anon_sym_declare] = ACTIONS(3164), + [anon_sym_public] = ACTIONS(3164), + [anon_sym_private] = ACTIONS(3164), + [anon_sym_protected] = ACTIONS(3164), + [anon_sym_override] = ACTIONS(3164), + [anon_sym_module] = ACTIONS(3164), + [anon_sym_any] = ACTIONS(3164), + [anon_sym_number] = ACTIONS(3164), + [anon_sym_boolean] = ACTIONS(3164), + [anon_sym_string] = ACTIONS(3164), + [anon_sym_symbol] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3164), + [anon_sym_abstract] = ACTIONS(3164), + [anon_sym_interface] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), [sym_html_comment] = ACTIONS(5), }, [1195] = { [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1196] = { [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_default] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_case] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1197] = { [sym_comment] = STATE(1197), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1198] = { [sym_comment] = STATE(1198), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [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(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = 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_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [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(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1199] = { [sym_comment] = STATE(1199), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_case] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1200] = { [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, [1201] = { [sym_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1202] = { [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_var] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_debugger] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_throw] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LTtemplate_GT] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_function] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_using] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_delete] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2159), + [sym_number] = ACTIONS(2159), + [sym_private_property_identifier] = ACTIONS(2159), + [sym_this] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_abstract] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [sym__automatic_semicolon] = ACTIONS(2431), [sym_html_comment] = ACTIONS(5), }, [1203] = { [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_namespace] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_typeof] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_var] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_debugger] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_throw] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LTtemplate_GT] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_function] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_void] = ACTIONS(2259), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2259), + [sym_private_property_identifier] = ACTIONS(2259), + [sym_this] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_undefined] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_get] = ACTIONS(2259), + [anon_sym_set] = ACTIONS(2259), + [anon_sym_declare] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_private] = ACTIONS(2259), + [anon_sym_protected] = ACTIONS(2259), + [anon_sym_override] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_any] = ACTIONS(2259), + [anon_sym_number] = ACTIONS(2259), + [anon_sym_boolean] = ACTIONS(2259), + [anon_sym_string] = ACTIONS(2259), + [anon_sym_symbol] = ACTIONS(2259), + [anon_sym_object] = ACTIONS(2259), + [anon_sym_abstract] = ACTIONS(2259), + [anon_sym_interface] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym_html_comment] = ACTIONS(5), + }, + [1204] = { + [sym_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [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(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [sym_html_comment] = ACTIONS(5), + }, + [1205] = { + [sym_comment] = STATE(1205), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [sym_html_comment] = ACTIONS(5), + }, + [1206] = { + [sym_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1207] = { + [sym_comment] = STATE(1207), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [sym_html_comment] = ACTIONS(5), + }, + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [sym_html_comment] = ACTIONS(5), + }, + [1209] = { + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [sym_html_comment] = ACTIONS(5), + }, + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [sym_html_comment] = ACTIONS(5), + }, + [1211] = { + [sym_comment] = STATE(1211), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LTtemplate_GT] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3286), + [sym_number] = ACTIONS(3286), + [sym_private_property_identifier] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [sym_html_comment] = ACTIONS(5), + }, + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [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(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [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_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [sym_html_comment] = ACTIONS(5), + }, + [1213] = { + [sym_comment] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [sym_html_comment] = ACTIONS(5), + }, + [1214] = { + [sym_comment] = STATE(1214), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1215] = { + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(3422), [sym_identifier] = ACTIONS(3356), [anon_sym_export] = ACTIONS(3356), [anon_sym_type] = ACTIONS(3356), @@ -161942,4846 +162933,3452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1204] = { - [sym_comment] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_await] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_debugger] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_yield] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_LTtemplate_GT] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_async] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_void] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3074), - [sym_number] = ACTIONS(3074), - [sym_private_property_identifier] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [sym_super] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_null] = ACTIONS(3074), - [sym_undefined] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_readonly] = ACTIONS(3074), - [anon_sym_get] = ACTIONS(3074), - [anon_sym_set] = ACTIONS(3074), - [anon_sym_declare] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_module] = ACTIONS(3074), - [anon_sym_any] = ACTIONS(3074), - [anon_sym_number] = ACTIONS(3074), - [anon_sym_boolean] = ACTIONS(3074), - [anon_sym_string] = ACTIONS(3074), - [anon_sym_symbol] = ACTIONS(3074), - [anon_sym_object] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [sym__automatic_semicolon] = ACTIONS(3406), + [1216] = { + [sym_comment] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1205] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_finally] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_LTtemplate_GT] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [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(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), + [1217] = { + [sym_comment] = STATE(1217), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [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(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, - [1206] = { - [sym_comment] = STATE(1206), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), + [1218] = { + [sym_comment] = STATE(1218), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1207] = { - [sym_comment] = STATE(1207), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), + [1219] = { + [sym_comment] = STATE(1219), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [sym_html_comment] = ACTIONS(5), - }, - [1208] = { - [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1209] = { - [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), + [1220] = { + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [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(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1210] = { - [sym_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1211] = { - [sym_comment] = STATE(1211), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [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(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = 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_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1212] = { - [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1223] = { + [sym_comment] = STATE(1223), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, - [1213] = { - [sym_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), + [1224] = { + [sym_comment] = STATE(1224), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [sym_html_comment] = ACTIONS(5), - }, - [1214] = { - [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1215] = { - [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1225] = { + [sym_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1216] = { - [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [1226] = { + [sym_comment] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1217] = { - [sym_comment] = STATE(1217), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [1227] = { + [sym_comment] = STATE(1227), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [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(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [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_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [1218] = { - [sym_comment] = STATE(1218), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), + [1228] = { + [sym_comment] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3164), + [anon_sym_export] = ACTIONS(3164), + [anon_sym_type] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3164), + [anon_sym_import] = ACTIONS(3164), + [anon_sym_with] = ACTIONS(3164), + [anon_sym_var] = ACTIONS(3164), + [anon_sym_let] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_else] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_debugger] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_LTtemplate_GT] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_async] = ACTIONS(3164), + [anon_sym_function] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_private_property_identifier] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), + [sym_super] = ACTIONS(3164), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [sym_null] = ACTIONS(3164), + [sym_undefined] = ACTIONS(3164), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_readonly] = ACTIONS(3164), + [anon_sym_get] = ACTIONS(3164), + [anon_sym_set] = ACTIONS(3164), + [anon_sym_declare] = ACTIONS(3164), + [anon_sym_public] = ACTIONS(3164), + [anon_sym_private] = ACTIONS(3164), + [anon_sym_protected] = ACTIONS(3164), + [anon_sym_override] = ACTIONS(3164), + [anon_sym_module] = ACTIONS(3164), + [anon_sym_any] = ACTIONS(3164), + [anon_sym_number] = ACTIONS(3164), + [anon_sym_boolean] = ACTIONS(3164), + [anon_sym_string] = ACTIONS(3164), + [anon_sym_symbol] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3164), + [anon_sym_abstract] = ACTIONS(3164), + [anon_sym_interface] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), [sym_html_comment] = ACTIONS(5), }, - [1219] = { - [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), + [1229] = { + [sym_comment] = STATE(1229), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, - [1220] = { - [sym_comment] = STATE(1220), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), + [1230] = { + [sym_comment] = STATE(1230), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, - [1221] = { - [sym_comment] = STATE(1221), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1222] = { - [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), + [1232] = { + [sym_comment] = STATE(1232), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1223] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), + [1233] = { + [sym_comment] = STATE(1233), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym__automatic_semicolon] = ACTIONS(2127), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1224] = { - [sym_comment] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), + [1234] = { + [sym_comment] = STATE(1234), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [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(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [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_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1225] = { - [sym_comment] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), + [1235] = { + [sym_comment] = STATE(1235), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_case] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [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(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1226] = { - [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), + [1236] = { + [sym_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_object] = ACTIONS(3290), + [anon_sym_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1227] = { - [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [1237] = { + [sym_comment] = STATE(1237), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, - [1228] = { - [sym_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1229] = { - [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1239] = { + [sym_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, - [1230] = { - [sym_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), + [1240] = { + [sym_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [sym_html_comment] = ACTIONS(5), - }, - [1231] = { - [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1232] = { - [sym_comment] = STATE(1232), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), - [sym_html_comment] = ACTIONS(5), - }, - [1233] = { - [sym_comment] = STATE(1233), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [sym_html_comment] = ACTIONS(5), - }, - [1234] = { - [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), - [sym_html_comment] = ACTIONS(5), - }, - [1235] = { - [sym_comment] = STATE(1235), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_default] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_case] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), - [sym_html_comment] = ACTIONS(5), - }, - [1236] = { - [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), - [sym_html_comment] = ACTIONS(5), - }, - [1237] = { - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [sym_html_comment] = ACTIONS(5), - }, - [1238] = { - [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_case] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [sym_html_comment] = ACTIONS(5), - }, - [1239] = { - [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_finally] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [1240] = { - [sym_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3130), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_debugger] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym_case] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LTtemplate_GT] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_void] = ACTIONS(3130), - [anon_sym_delete] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3130), - [sym_number] = ACTIONS(3130), - [sym_private_property_identifier] = ACTIONS(3130), - [sym_this] = ACTIONS(3130), - [sym_super] = ACTIONS(3130), - [sym_true] = ACTIONS(3130), - [sym_false] = ACTIONS(3130), - [sym_null] = ACTIONS(3130), - [sym_undefined] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [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(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [sym_html_comment] = ACTIONS(5), - }, - [1241] = { - [sym_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [1241] = { + [sym_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, [1242] = { [sym_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1243] = { [sym_comment] = STATE(1243), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1244] = { [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [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(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1245] = { [sym_comment] = STATE(1245), - [sym_identifier] = ACTIONS(3434), - [anon_sym_export] = ACTIONS(3434), - [anon_sym_default] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_namespace] = ACTIONS(3434), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3434), - [anon_sym_import] = ACTIONS(3434), - [anon_sym_with] = ACTIONS(3434), - [anon_sym_var] = ACTIONS(3434), - [anon_sym_let] = ACTIONS(3434), - [anon_sym_const] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_switch] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3434), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_do] = ACTIONS(3434), - [anon_sym_try] = ACTIONS(3434), - [anon_sym_break] = ACTIONS(3434), - [anon_sym_continue] = ACTIONS(3434), - [anon_sym_debugger] = ACTIONS(3434), - [anon_sym_return] = ACTIONS(3434), - [anon_sym_throw] = ACTIONS(3434), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_case] = ACTIONS(3434), - [anon_sym_yield] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LTtemplate_GT] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_class] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_function] = ACTIONS(3434), - [anon_sym_new] = ACTIONS(3434), - [anon_sym_using] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_void] = ACTIONS(3434), - [anon_sym_delete] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3434), - [sym_number] = ACTIONS(3434), - [sym_private_property_identifier] = ACTIONS(3434), - [sym_this] = ACTIONS(3434), - [sym_super] = ACTIONS(3434), - [sym_true] = ACTIONS(3434), - [sym_false] = ACTIONS(3434), - [sym_null] = ACTIONS(3434), - [sym_undefined] = ACTIONS(3434), - [anon_sym_AT] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3434), - [anon_sym_readonly] = ACTIONS(3434), - [anon_sym_get] = ACTIONS(3434), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_declare] = ACTIONS(3434), - [anon_sym_public] = ACTIONS(3434), - [anon_sym_private] = ACTIONS(3434), - [anon_sym_protected] = ACTIONS(3434), - [anon_sym_override] = ACTIONS(3434), - [anon_sym_module] = ACTIONS(3434), - [anon_sym_any] = ACTIONS(3434), - [anon_sym_number] = ACTIONS(3434), - [anon_sym_boolean] = ACTIONS(3434), - [anon_sym_string] = ACTIONS(3434), - [anon_sym_symbol] = ACTIONS(3434), - [anon_sym_object] = ACTIONS(3434), - [anon_sym_abstract] = ACTIONS(3434), - [anon_sym_interface] = ACTIONS(3434), - [anon_sym_enum] = ACTIONS(3434), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3136), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_var] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_do] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_debugger] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LTtemplate_GT] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3136), + [anon_sym_delete] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, [1246] = { [sym_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_LTtemplate_GT] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3126), + [sym_private_property_identifier] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, [1247] = { [sym_comment] = STATE(1247), + [ts_builtin_sym_end] = ACTIONS(3434), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [sym_html_comment] = ACTIONS(5), + }, + [1248] = { + [sym_comment] = STATE(1248), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [sym_html_comment] = ACTIONS(5), + }, + [1249] = { + [sym_comment] = STATE(1249), [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1248] = { - [sym_comment] = STATE(1248), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_default] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [sym_html_comment] = ACTIONS(5), - }, - [1249] = { - [sym_comment] = STATE(1249), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, [1250] = { [sym_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [1251] = { [sym_comment] = STATE(1251), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [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(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [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_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1252] = { [sym_comment] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_finally] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, [1253] = { [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1254] = { [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2415), [sym_html_comment] = ACTIONS(5), }, [1255] = { [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [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(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = 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_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1256] = { [sym_comment] = STATE(1256), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, [1257] = { [sym_comment] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1258] = { [sym_comment] = STATE(1258), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [sym_html_comment] = ACTIONS(5), - }, - [1259] = { - [sym_comment] = STATE(1259), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [sym_html_comment] = ACTIONS(5), - }, - [1260] = { - [sym_comment] = STATE(1260), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [sym_html_comment] = ACTIONS(5), - }, - [1261] = { - [sym_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LTtemplate_GT] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3280), - [sym_number] = ACTIONS(3280), - [sym_private_property_identifier] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [sym_html_comment] = ACTIONS(5), - }, - [1262] = { - [sym_comment] = STATE(1262), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [sym_html_comment] = ACTIONS(5), - }, - [1263] = { - [sym_comment] = STATE(1263), [sym_identifier] = ACTIONS(3228), [anon_sym_export] = ACTIONS(3228), [anon_sym_default] = ACTIONS(3228), @@ -166862,421 +166459,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1264] = { - [sym_comment] = STATE(1264), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [sym_html_comment] = ACTIONS(5), - }, - [1265] = { - [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), + [1259] = { + [sym_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1266] = { - [sym_comment] = STATE(1266), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [1260] = { + [sym_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, - [1267] = { - [sym_comment] = STATE(1267), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), + [1261] = { + [sym_comment] = STATE(1261), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1268] = { - [sym_comment] = STATE(1268), + [1262] = { + [sym_comment] = STATE(1262), [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [sym_html_comment] = ACTIONS(5), - }, - [1269] = { - [sym_comment] = STATE(1269), [sym_identifier] = ACTIONS(3236), [anon_sym_export] = ACTIONS(3236), - [anon_sym_default] = ACTIONS(3236), [anon_sym_type] = ACTIONS(3236), [anon_sym_namespace] = ACTIONS(3236), [anon_sym_LBRACE] = ACTIONS(3236), @@ -167288,6 +166721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3236), [anon_sym_const] = ACTIONS(3236), [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_switch] = ACTIONS(3236), [anon_sym_for] = ACTIONS(3236), @@ -167302,7 +166736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3236), [anon_sym_throw] = ACTIONS(3236), [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_case] = ACTIONS(3236), [anon_sym_yield] = ACTIONS(3236), [anon_sym_LBRACK] = ACTIONS(3236), [anon_sym_LTtemplate_GT] = ACTIONS(3236), @@ -167354,93 +166787,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, - [1270] = { - [sym_comment] = STATE(1270), + [1263] = { + [sym_comment] = STATE(1263), [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1264] = { + [sym_comment] = STATE(1264), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym_html_comment] = ACTIONS(5), + }, + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym_html_comment] = ACTIONS(5), + }, + [1266] = { + [sym_comment] = STATE(1266), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [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(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [sym_html_comment] = ACTIONS(5), + }, + [1267] = { + [sym_comment] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), + [sym_html_comment] = ACTIONS(5), + }, + [1268] = { + [sym_comment] = STATE(1268), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [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(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), + [sym_html_comment] = ACTIONS(5), + }, + [1269] = { + [sym_comment] = STATE(1269), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [sym_html_comment] = ACTIONS(5), + }, + [1270] = { + [sym_comment] = STATE(1270), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1271] = { [sym_comment] = STATE(1271), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [1272] = { + [sym_comment] = STATE(1272), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [sym_html_comment] = ACTIONS(5), + }, + [1273] = { + [sym_comment] = STATE(1273), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [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(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [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_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [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(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [sym_html_comment] = ACTIONS(5), + }, + [1275] = { + [sym_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [sym_html_comment] = ACTIONS(5), + }, + [1276] = { + [sym_comment] = STATE(1276), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym_html_comment] = ACTIONS(5), + }, + [1277] = { + [sym_comment] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3450), [sym_identifier] = ACTIONS(3150), [anon_sym_export] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), [anon_sym_type] = ACTIONS(3150), [anon_sym_namespace] = ACTIONS(3150), [anon_sym_LBRACE] = ACTIONS(3150), @@ -167452,6 +167951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3150), [anon_sym_const] = ACTIONS(3150), [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), [anon_sym_if] = ACTIONS(3150), [anon_sym_switch] = ACTIONS(3150), [anon_sym_for] = ACTIONS(3150), @@ -167466,7 +167966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3150), [anon_sym_throw] = ACTIONS(3150), [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_case] = ACTIONS(3150), [anon_sym_yield] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(3150), [anon_sym_LTtemplate_GT] = ACTIONS(3150), @@ -167518,172 +168017,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1272] = { - [sym_comment] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(3448), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), + [1278] = { + [sym_comment] = STATE(1278), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1279] = { + [sym_comment] = STATE(1279), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, - [1273] = { - [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [1280] = { + [sym_comment] = STATE(1280), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, - [1274] = { - [sym_comment] = STATE(1274), + [1281] = { + [sym_comment] = STATE(1281), + [ts_builtin_sym_end] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3152), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(3152), + [anon_sym_with] = ACTIONS(3152), + [anon_sym_var] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_do] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_debugger] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LTtemplate_GT] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_class] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3152), + [anon_sym_new] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3152), + [anon_sym_delete] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [sym_html_comment] = ACTIONS(5), + }, + [1282] = { + [sym_comment] = STATE(1282), [sym_identifier] = ACTIONS(3308), [anon_sym_export] = ACTIONS(3308), [anon_sym_default] = ACTIONS(3308), @@ -167764,418 +168427,582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, - [1275] = { - [sym_comment] = STATE(1275), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [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(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [sym_html_comment] = ACTIONS(5), - }, - [1276] = { - [sym_comment] = STATE(1276), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3454), - [sym_html_comment] = ACTIONS(5), - }, - [1277] = { - [sym_comment] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), + [1283] = { + [sym_comment] = STATE(1283), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [1278] = { - [sym_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [1284] = { + [sym_comment] = STATE(1284), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym_html_comment] = ACTIONS(5), + }, + [1285] = { + [sym_comment] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, - [1279] = { - [sym_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [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(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [1286] = { + [sym_comment] = STATE(1286), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1280] = { - [sym_comment] = STATE(1280), + [1287] = { + [sym_comment] = STATE(1287), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [sym_html_comment] = ACTIONS(5), + }, + [1288] = { + [sym_comment] = STATE(1288), + [sym_identifier] = ACTIONS(3136), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_default] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_var] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_do] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_debugger] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_case] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LTtemplate_GT] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3136), + [anon_sym_delete] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [sym_html_comment] = ACTIONS(5), + }, + [1289] = { + [sym_comment] = STATE(1289), + [sym_identifier] = ACTIONS(3256), + [anon_sym_export] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_typeof] = ACTIONS(3256), + [anon_sym_import] = ACTIONS(3256), + [anon_sym_with] = ACTIONS(3256), + [anon_sym_var] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_await] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_debugger] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_yield] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LTtemplate_GT] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_async] = ACTIONS(3256), + [anon_sym_function] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_void] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3256), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + [sym_super] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_undefined] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_readonly] = ACTIONS(3256), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3256), + [anon_sym_public] = ACTIONS(3256), + [anon_sym_private] = ACTIONS(3256), + [anon_sym_protected] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_module] = ACTIONS(3256), + [anon_sym_any] = ACTIONS(3256), + [anon_sym_number] = ACTIONS(3256), + [anon_sym_boolean] = ACTIONS(3256), + [anon_sym_string] = ACTIONS(3256), + [anon_sym_symbol] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3256), + [anon_sym_abstract] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [sym_html_comment] = ACTIONS(5), + }, + [1290] = { + [sym_comment] = STATE(1290), [sym_identifier] = ACTIONS(3292), [anon_sym_export] = ACTIONS(3292), [anon_sym_default] = ACTIONS(3292), @@ -168256,2963 +169083,1979 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, - [1281] = { - [sym_comment] = STATE(1281), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_default] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_case] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [sym_html_comment] = ACTIONS(5), - }, - [1282] = { - [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_default] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_LTtemplate_GT] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3126), + [sym_private_property_identifier] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, - [1283] = { - [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [1292] = { + [sym_comment] = STATE(1292), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, - [1284] = { - [sym_comment] = STATE(1284), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [1293] = { + [sym_comment] = STATE(1293), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, - [1285] = { - [sym_comment] = STATE(1285), + [1294] = { + [sym_comment] = STATE(1294), [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1286] = { - [sym_comment] = STATE(1286), + [1295] = { + [sym_comment] = STATE(1295), [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, - [1287] = { - [sym_comment] = STATE(1287), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), + [1296] = { + [sym_comment] = STATE(1296), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, - [1288] = { - [sym_comment] = STATE(1288), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [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(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [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_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [1297] = { + [sym_comment] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [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(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [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_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1289] = { - [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1298] = { + [sym_comment] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3256), + [anon_sym_export] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_typeof] = ACTIONS(3256), + [anon_sym_import] = ACTIONS(3256), + [anon_sym_with] = ACTIONS(3256), + [anon_sym_var] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_await] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_debugger] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_yield] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LTtemplate_GT] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_async] = ACTIONS(3256), + [anon_sym_function] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_void] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3256), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + [sym_super] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_undefined] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_readonly] = ACTIONS(3256), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3256), + [anon_sym_public] = ACTIONS(3256), + [anon_sym_private] = ACTIONS(3256), + [anon_sym_protected] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_module] = ACTIONS(3256), + [anon_sym_any] = ACTIONS(3256), + [anon_sym_number] = ACTIONS(3256), + [anon_sym_boolean] = ACTIONS(3256), + [anon_sym_string] = ACTIONS(3256), + [anon_sym_symbol] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3256), + [anon_sym_abstract] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), [sym_html_comment] = ACTIONS(5), }, - [1290] = { - [sym_comment] = STATE(1290), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), - [sym_html_comment] = ACTIONS(5), - }, - [1291] = { - [sym_comment] = STATE(1291), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [sym_html_comment] = ACTIONS(5), - }, - [1292] = { - [sym_comment] = STATE(1292), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_LTtemplate_GT] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3352), - [sym_number] = ACTIONS(3352), - [sym_private_property_identifier] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_object] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [sym_html_comment] = ACTIONS(5), - }, - [1293] = { - [sym_comment] = STATE(1293), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), - [sym_html_comment] = ACTIONS(5), - }, - [1294] = { - [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), - [sym_html_comment] = ACTIONS(5), - }, - [1295] = { - [sym_comment] = STATE(1295), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym_html_comment] = ACTIONS(5), - }, - [1296] = { - [sym_comment] = STATE(1296), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [sym_html_comment] = ACTIONS(5), - }, - [1297] = { - [sym_comment] = STATE(1297), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_default] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), - [sym_html_comment] = ACTIONS(5), - }, - [1298] = { - [sym_comment] = STATE(1298), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [sym_html_comment] = ACTIONS(5), - }, - [1299] = { - [sym_comment] = STATE(1299), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [1299] = { + [sym_comment] = STATE(1299), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LTtemplate_GT] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3286), + [sym_number] = ACTIONS(3286), + [sym_private_property_identifier] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), [sym_html_comment] = ACTIONS(5), }, [1300] = { [sym_comment] = STATE(1300), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1301] = { [sym_comment] = STATE(1301), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_else] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, [1302] = { [sym_comment] = STATE(1302), [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1303] = { [sym_comment] = STATE(1303), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_default] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_case] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LTtemplate_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_number] = ACTIONS(3206), + [sym_private_property_identifier] = ACTIONS(3206), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), [sym_html_comment] = ACTIONS(5), }, [1304] = { [sym_comment] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [sym_html_comment] = ACTIONS(5), - }, - [1305] = { - [sym_comment] = STATE(1305), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [sym_html_comment] = ACTIONS(5), + }, + [1305] = { + [sym_comment] = STATE(1305), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1306] = { [sym_comment] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_else] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, [1307] = { [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3080), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_namespace] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3080), + [anon_sym_import] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3080), + [anon_sym_var] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_await] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_debugger] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_LTtemplate_GT] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_class] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_void] = ACTIONS(3080), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3080), + [sym_number] = ACTIONS(3080), + [sym_private_property_identifier] = ACTIONS(3080), + [sym_this] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_null] = ACTIONS(3080), + [sym_undefined] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(3080), + [anon_sym_set] = ACTIONS(3080), + [anon_sym_declare] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_module] = ACTIONS(3080), + [anon_sym_any] = ACTIONS(3080), + [anon_sym_number] = ACTIONS(3080), + [anon_sym_boolean] = ACTIONS(3080), + [anon_sym_string] = ACTIONS(3080), + [anon_sym_symbol] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [sym__automatic_semicolon] = ACTIONS(3478), [sym_html_comment] = ACTIONS(5), }, [1308] = { [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_await] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_debugger] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LTtemplate_GT] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_async] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_void] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_number] = ACTIONS(3082), - [sym_private_property_identifier] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [sym_super] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_null] = ACTIONS(3082), - [sym_undefined] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_readonly] = ACTIONS(3082), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_declare] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [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(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [sym__automatic_semicolon] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, [1309] = { [sym_comment] = STATE(1309), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym_identifier] = ACTIONS(3130), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_debugger] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LTtemplate_GT] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_void] = ACTIONS(3130), - [anon_sym_delete] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3130), - [sym_number] = ACTIONS(3130), - [sym_private_property_identifier] = ACTIONS(3130), - [sym_this] = ACTIONS(3130), - [sym_super] = ACTIONS(3130), - [sym_true] = ACTIONS(3130), - [sym_false] = ACTIONS(3130), - [sym_null] = ACTIONS(3130), - [sym_undefined] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [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(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), [sym_html_comment] = ACTIONS(5), }, [1310] = { [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, [1311] = { [sym_comment] = STATE(1311), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_default] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_case] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, [1312] = { [sym_comment] = STATE(1312), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [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(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1313] = { [sym_comment] = STATE(1313), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1314] = { [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1315] = { [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [sym_html_comment] = ACTIONS(5), - }, - [1316] = { - [sym_comment] = STATE(1316), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [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(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [sym_html_comment] = ACTIONS(5), - }, - [1317] = { - [sym_comment] = STATE(1317), + [ts_builtin_sym_end] = ACTIONS(3488), [sym_identifier] = ACTIONS(3162), [anon_sym_export] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), [anon_sym_type] = ACTIONS(3162), [anon_sym_namespace] = ACTIONS(3162), [anon_sym_LBRACE] = ACTIONS(3162), @@ -171224,6 +171067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3162), [anon_sym_const] = ACTIONS(3162), [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), [anon_sym_if] = ACTIONS(3162), [anon_sym_switch] = ACTIONS(3162), [anon_sym_for] = ACTIONS(3162), @@ -171238,7 +171082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3162), [anon_sym_throw] = ACTIONS(3162), [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_case] = ACTIONS(3162), [anon_sym_yield] = ACTIONS(3162), [anon_sym_LBRACK] = ACTIONS(3162), [anon_sym_LTtemplate_GT] = ACTIONS(3162), @@ -171290,3373 +171133,2553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1318] = { - [sym_comment] = STATE(1318), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), + [1316] = { + [sym_comment] = STATE(1316), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), + [sym_html_comment] = ACTIONS(5), + }, + [1317] = { + [sym_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [sym_html_comment] = ACTIONS(5), + }, + [1318] = { + [sym_comment] = STATE(1318), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1319] = { [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2319), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, [1320] = { [sym_comment] = STATE(1320), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LTtemplate_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_number] = ACTIONS(3206), + [sym_private_property_identifier] = ACTIONS(3206), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), [sym_html_comment] = ACTIONS(5), }, [1321] = { [sym_comment] = STATE(1321), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, [1322] = { [sym_comment] = STATE(1322), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [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(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [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_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, [1323] = { [sym_comment] = STATE(1323), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_else] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [1324] = { [sym_comment] = STATE(1324), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_else] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, [1325] = { [sym_comment] = STATE(1325), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [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(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, [1326] = { [sym_comment] = STATE(1326), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1327] = { [sym_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, [1328] = { [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3204), + [anon_sym_var] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_do] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_debugger] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LTtemplate_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_private_property_identifier] = ACTIONS(3204), + [sym_this] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_true] = ACTIONS(3204), + [sym_false] = ACTIONS(3204), + [sym_null] = ACTIONS(3204), + [sym_undefined] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_declare] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_module] = ACTIONS(3204), + [anon_sym_any] = ACTIONS(3204), + [anon_sym_number] = ACTIONS(3204), + [anon_sym_boolean] = ACTIONS(3204), + [anon_sym_string] = ACTIONS(3204), + [anon_sym_symbol] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_interface] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, [1329] = { [sym_comment] = STATE(1329), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, [1330] = { [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3200), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym_finally] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3208), + [anon_sym_export] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3208), + [anon_sym_import] = ACTIONS(3208), + [anon_sym_with] = ACTIONS(3208), + [anon_sym_var] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_debugger] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LTtemplate_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_function] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_private_property_identifier] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [sym_null] = ACTIONS(3208), + [sym_undefined] = ACTIONS(3208), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_readonly] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3208), + [anon_sym_set] = ACTIONS(3208), + [anon_sym_declare] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_override] = ACTIONS(3208), + [anon_sym_module] = ACTIONS(3208), + [anon_sym_any] = ACTIONS(3208), + [anon_sym_number] = ACTIONS(3208), + [anon_sym_boolean] = ACTIONS(3208), + [anon_sym_string] = ACTIONS(3208), + [anon_sym_symbol] = ACTIONS(3208), + [anon_sym_object] = ACTIONS(3208), + [anon_sym_abstract] = ACTIONS(3208), + [anon_sym_interface] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), [sym_html_comment] = ACTIONS(5), }, [1331] = { [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1332] = { [sym_comment] = STATE(1332), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3302), - [anon_sym_export] = ACTIONS(3302), - [anon_sym_type] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3302), - [anon_sym_import] = ACTIONS(3302), - [anon_sym_with] = ACTIONS(3302), - [anon_sym_var] = ACTIONS(3302), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_debugger] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_yield] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LTtemplate_GT] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(3302), - [anon_sym_function] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_private_property_identifier] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - [sym_super] = ACTIONS(3302), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [sym_null] = ACTIONS(3302), - [sym_undefined] = ACTIONS(3302), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3302), - [anon_sym_get] = ACTIONS(3302), - [anon_sym_set] = ACTIONS(3302), - [anon_sym_declare] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_override] = ACTIONS(3302), - [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(3302), - [anon_sym_interface] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [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(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1333] = { [sym_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), - [sym_html_comment] = ACTIONS(5), - }, + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [sym_html_comment] = ACTIONS(5), + }, [1334] = { [sym_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_default] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1335] = { [sym_comment] = STATE(1335), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [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(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [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_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, [1336] = { [sym_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [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(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = 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_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, [1337] = { [sym_comment] = STATE(1337), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, [1338] = { [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_else] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, [1339] = { [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3124), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3124), + [anon_sym_import] = ACTIONS(3124), + [anon_sym_with] = ACTIONS(3124), + [anon_sym_var] = ACTIONS(3124), + [anon_sym_let] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_debugger] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_yield] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LTtemplate_GT] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_private_property_identifier] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + [sym_super] = ACTIONS(3124), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [sym_null] = ACTIONS(3124), + [sym_undefined] = ACTIONS(3124), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_override] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [anon_sym_object] = ACTIONS(3124), + [anon_sym_abstract] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), [sym_html_comment] = ACTIONS(5), }, [1340] = { [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, [1341] = { [sym_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [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(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [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_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1342] = { [sym_comment] = STATE(1342), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_default] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_case] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, [1343] = { [sym_comment] = STATE(1343), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, [1344] = { [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1345] = { [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_default] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_case] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [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(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = 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_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, [1346] = { [sym_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, [1347] = { [sym_comment] = STATE(1347), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LTtemplate_GT] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3316), - [sym_number] = ACTIONS(3316), - [sym_private_property_identifier] = ACTIONS(3316), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [sym_html_comment] = ACTIONS(5), - }, - [1348] = { - [sym_comment] = STATE(1348), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_html_comment] = ACTIONS(5), - }, - [1349] = { - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), - [sym_html_comment] = ACTIONS(5), - }, - [1350] = { - [sym_comment] = STATE(1350), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_LTtemplate_GT] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3348), - [sym_number] = ACTIONS(3348), - [sym_private_property_identifier] = ACTIONS(3348), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [sym_html_comment] = ACTIONS(5), - }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [sym_html_comment] = ACTIONS(5), - }, - [1352] = { - [sym_comment] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1353] = { - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1354] = { - [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1355] = { - [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_typeof] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_var] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_debugger] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LTtemplate_GT] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_delete] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2233), - [sym_number] = ACTIONS(2233), - [sym_private_property_identifier] = ACTIONS(2233), - [sym_this] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_get] = ACTIONS(2233), - [anon_sym_set] = ACTIONS(2233), - [anon_sym_declare] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_private] = ACTIONS(2233), - [anon_sym_protected] = ACTIONS(2233), - [anon_sym_override] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_any] = ACTIONS(2233), - [anon_sym_number] = ACTIONS(2233), - [anon_sym_boolean] = ACTIONS(2233), - [anon_sym_string] = ACTIONS(2233), - [anon_sym_symbol] = ACTIONS(2233), - [anon_sym_object] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [sym_html_comment] = ACTIONS(5), - }, - [1356] = { - [sym_comment] = STATE(1356), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [sym_html_comment] = ACTIONS(5), - }, - [1357] = { - [sym_comment] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym_html_comment] = ACTIONS(5), - }, - [1358] = { - [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_else] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), - [sym_html_comment] = ACTIONS(5), - }, - [1359] = { - [sym_comment] = STATE(1359), + [ts_builtin_sym_end] = ACTIONS(3524), [sym_identifier] = ACTIONS(3182), [anon_sym_export] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), [anon_sym_type] = ACTIONS(3182), [anon_sym_namespace] = ACTIONS(3182), [anon_sym_LBRACE] = ACTIONS(3182), @@ -174668,6 +173691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3182), [anon_sym_const] = ACTIONS(3182), [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_switch] = ACTIONS(3182), [anon_sym_for] = ACTIONS(3182), @@ -174682,7 +173706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3182), [anon_sym_throw] = ACTIONS(3182), [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), [anon_sym_yield] = ACTIONS(3182), [anon_sym_LBRACK] = ACTIONS(3182), [anon_sym_LTtemplate_GT] = ACTIONS(3182), @@ -174734,1074 +173757,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [1360] = { - [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), + [1348] = { + [sym_comment] = STATE(1348), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [sym_html_comment] = ACTIONS(5), - }, - [1361] = { - [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(3118), - [sym_identifier] = ACTIONS(3116), - [anon_sym_export] = ACTIONS(3116), - [anon_sym_type] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3116), - [anon_sym_import] = ACTIONS(3116), - [anon_sym_with] = ACTIONS(3116), - [anon_sym_var] = ACTIONS(3116), - [anon_sym_let] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_await] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_debugger] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_yield] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LTtemplate_GT] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_async] = ACTIONS(3116), - [anon_sym_function] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_void] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_number] = ACTIONS(3116), - [sym_private_property_identifier] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - [sym_super] = ACTIONS(3116), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [sym_null] = ACTIONS(3116), - [sym_undefined] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_readonly] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_declare] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_module] = ACTIONS(3116), - [anon_sym_any] = ACTIONS(3116), - [anon_sym_number] = ACTIONS(3116), - [anon_sym_boolean] = ACTIONS(3116), - [anon_sym_string] = ACTIONS(3116), - [anon_sym_symbol] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3118), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), + [1349] = { + [sym_comment] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [1363] = { - [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), + [1350] = { + [sym_comment] = STATE(1350), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1364] = { - [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [1351] = { + [sym_comment] = STATE(1351), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_finally] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, - [1365] = { - [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LTtemplate_GT] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3280), - [sym_number] = ACTIONS(3280), - [sym_private_property_identifier] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), + [1352] = { + [sym_comment] = STATE(1352), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), + [1353] = { + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1367] = { - [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [1354] = { + [sym_comment] = STATE(1354), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, - [1368] = { - [sym_comment] = STATE(1368), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_LTtemplate_GT] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), + [1355] = { + [sym_comment] = STATE(1355), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3300), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_object] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [1369] = { - [sym_comment] = STATE(1369), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_case] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), + [1356] = { + [sym_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1370] = { - [sym_comment] = STATE(1370), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [1357] = { + [sym_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [1371] = { - [sym_comment] = STATE(1371), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [1358] = { + [sym_comment] = STATE(1358), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, - [1372] = { - [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), + [1359] = { + [sym_comment] = STATE(1359), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_finally] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1360] = { + [sym_comment] = STATE(1360), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_default] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_case] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1373] = { - [sym_comment] = STATE(1373), + [1361] = { + [sym_comment] = STATE(1361), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1362] = { + [sym_comment] = STATE(1362), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [sym_html_comment] = ACTIONS(5), + }, + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(2195), + [sym_html_comment] = ACTIONS(5), + }, + [1364] = { + [sym_comment] = STATE(1364), [sym_identifier] = ACTIONS(3176), [anon_sym_export] = ACTIONS(3176), [anon_sym_default] = ACTIONS(3176), @@ -175882,257 +175151,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [1374] = { - [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2425), + [1365] = { + [sym_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), [sym_html_comment] = ACTIONS(5), }, - [1375] = { - [sym_comment] = STATE(1375), - [sym_identifier] = ACTIONS(3298), - [anon_sym_export] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3298), - [anon_sym_import] = ACTIONS(3298), - [anon_sym_with] = ACTIONS(3298), - [anon_sym_var] = ACTIONS(3298), - [anon_sym_let] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_debugger] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_yield] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LTtemplate_GT] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_function] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_private_property_identifier] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - [sym_super] = ACTIONS(3298), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [sym_null] = ACTIONS(3298), - [sym_undefined] = ACTIONS(3298), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_readonly] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3298), - [anon_sym_set] = ACTIONS(3298), - [anon_sym_declare] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_override] = ACTIONS(3298), - [anon_sym_module] = ACTIONS(3298), - [anon_sym_any] = ACTIONS(3298), - [anon_sym_number] = ACTIONS(3298), - [anon_sym_boolean] = ACTIONS(3298), - [anon_sym_string] = ACTIONS(3298), - [anon_sym_symbol] = ACTIONS(3298), - [anon_sym_object] = ACTIONS(3298), - [anon_sym_abstract] = ACTIONS(3298), - [anon_sym_interface] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_LTtemplate_GT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3112), + [sym_number] = ACTIONS(3112), + [sym_private_property_identifier] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_override] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_object] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [sym__automatic_semicolon] = ACTIONS(3114), [sym_html_comment] = ACTIONS(5), }, - [1376] = { - [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_typeof] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LTtemplate_GT] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_delete] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_number] = ACTIONS(2205), - [sym_private_property_identifier] = ACTIONS(2205), - [sym_this] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_declare] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_protected] = ACTIONS(2205), - [anon_sym_override] = ACTIONS(2205), - [anon_sym_module] = ACTIONS(2205), - [anon_sym_any] = ACTIONS(2205), - [anon_sym_number] = ACTIONS(2205), - [anon_sym_boolean] = ACTIONS(2205), - [anon_sym_string] = ACTIONS(2205), - [anon_sym_symbol] = ACTIONS(2205), - [anon_sym_object] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [sym__automatic_semicolon] = ACTIONS(2401), + [1367] = { + [sym_comment] = STATE(1367), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_typeof] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_with] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [anon_sym_let] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_await] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_debugger] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_finally] = ACTIONS(3086), + [anon_sym_yield] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LTtemplate_GT] = ACTIONS(3086), + [anon_sym_DQUOTE] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_async] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_void] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3086), + [sym_number] = ACTIONS(3086), + [sym_private_property_identifier] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), + [sym_super] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_null] = ACTIONS(3086), + [sym_undefined] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_readonly] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3086), + [anon_sym_set] = ACTIONS(3086), + [anon_sym_declare] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_protected] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_module] = ACTIONS(3086), + [anon_sym_any] = ACTIONS(3086), + [anon_sym_number] = ACTIONS(3086), + [anon_sym_boolean] = ACTIONS(3086), + [anon_sym_string] = ACTIONS(3086), + [anon_sym_symbol] = ACTIONS(3086), + [anon_sym_object] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [sym_html_comment] = ACTIONS(5), + }, + [1368] = { + [sym_comment] = STATE(1368), + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3106), + [anon_sym_export] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_with] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [anon_sym_let] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_debugger] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_finally] = ACTIONS(3106), + [anon_sym_yield] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LTtemplate_GT] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_private_property_identifier] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + [sym_super] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_null] = ACTIONS(3106), + [sym_undefined] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_readonly] = ACTIONS(3106), + [anon_sym_get] = ACTIONS(3106), + [anon_sym_set] = ACTIONS(3106), + [anon_sym_declare] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_module] = ACTIONS(3106), + [anon_sym_any] = ACTIONS(3106), + [anon_sym_number] = ACTIONS(3106), + [anon_sym_boolean] = ACTIONS(3106), + [anon_sym_string] = ACTIONS(3106), + [anon_sym_symbol] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [sym_html_comment] = ACTIONS(5), + }, + [1369] = { + [sym_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1370] = { + [sym_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LTtemplate_GT] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3238), + [sym_number] = ACTIONS(3238), + [sym_private_property_identifier] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [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(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [sym_html_comment] = ACTIONS(5), + }, + [1371] = { + [sym_comment] = STATE(1371), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym_html_comment] = ACTIONS(5), + }, + [1372] = { + [sym_comment] = STATE(1372), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), + [sym_html_comment] = ACTIONS(5), + }, + [1373] = { + [sym_comment] = STATE(1373), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [sym_html_comment] = ACTIONS(5), + }, + [1374] = { + [sym_comment] = STATE(1374), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_default] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_case] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [sym_html_comment] = ACTIONS(5), + }, + [1375] = { + [sym_comment] = STATE(1375), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [sym_html_comment] = ACTIONS(5), + }, + [1376] = { + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1377] = { [sym_comment] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3540), [sym_identifier] = ACTIONS(3302), [anon_sym_export] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), [anon_sym_type] = ACTIONS(3302), [anon_sym_namespace] = ACTIONS(3302), [anon_sym_LBRACE] = ACTIONS(3302), @@ -176144,6 +176151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3302), [anon_sym_const] = ACTIONS(3302), [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), [anon_sym_if] = ACTIONS(3302), [anon_sym_switch] = ACTIONS(3302), [anon_sym_for] = ACTIONS(3302), @@ -176158,7 +176166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3302), [anon_sym_throw] = ACTIONS(3302), [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), [anon_sym_yield] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(3302), [anon_sym_LTtemplate_GT] = ACTIONS(3302), @@ -176212,2467 +176219,2139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1378] = { [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_default] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), [sym_html_comment] = ACTIONS(5), }, [1379] = { [sym_comment] = STATE(1379), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_typeof] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_var] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_debugger] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LTtemplate_GT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_using] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_delete] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_number] = ACTIONS(2255), - [sym_private_property_identifier] = ACTIONS(2255), - [sym_this] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_get] = ACTIONS(2255), - [anon_sym_set] = ACTIONS(2255), - [anon_sym_declare] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_private] = ACTIONS(2255), - [anon_sym_protected] = ACTIONS(2255), - [anon_sym_override] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_any] = ACTIONS(2255), - [anon_sym_number] = ACTIONS(2255), - [anon_sym_boolean] = ACTIONS(2255), - [anon_sym_string] = ACTIONS(2255), - [anon_sym_symbol] = ACTIONS(2255), - [anon_sym_object] = ACTIONS(2255), - [anon_sym_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2437), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, [1381] = { [sym_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [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(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [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(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1382] = { + [sym_statement_block] = STATE(1512), [sym_comment] = STATE(1382), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, [1383] = { [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [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), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2451), [sym_html_comment] = ACTIONS(5), }, [1384] = { [sym_comment] = STATE(1384), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2307), [sym_html_comment] = ACTIONS(5), }, [1385] = { [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2449), [sym_html_comment] = ACTIONS(5), }, [1386] = { [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_typeof] = ACTIONS(2083), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_debugger] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_throw] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LTtemplate_GT] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_using] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(2083), - [anon_sym_delete] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_number] = ACTIONS(2083), - [sym_private_property_identifier] = ACTIONS(2083), - [sym_this] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_null] = ACTIONS(2083), - [sym_undefined] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_get] = ACTIONS(2083), - [anon_sym_set] = ACTIONS(2083), - [anon_sym_declare] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_private] = ACTIONS(2083), - [anon_sym_protected] = ACTIONS(2083), - [anon_sym_override] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_any] = ACTIONS(2083), - [anon_sym_number] = ACTIONS(2083), - [anon_sym_boolean] = ACTIONS(2083), - [anon_sym_string] = ACTIONS(2083), - [anon_sym_symbol] = ACTIONS(2083), - [anon_sym_object] = ACTIONS(2083), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_interface] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [sym__automatic_semicolon] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_typeof] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_var] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LTtemplate_GT] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_void] = ACTIONS(2089), + [anon_sym_delete] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2089), + [sym_number] = ACTIONS(2089), + [sym_private_property_identifier] = ACTIONS(2089), + [sym_this] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_null] = ACTIONS(2089), + [sym_undefined] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_declare] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_protected] = ACTIONS(2089), + [anon_sym_override] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_any] = ACTIONS(2089), + [anon_sym_number] = ACTIONS(2089), + [anon_sym_boolean] = ACTIONS(2089), + [anon_sym_string] = ACTIONS(2089), + [anon_sym_symbol] = ACTIONS(2089), + [anon_sym_object] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2425), [sym_html_comment] = ACTIONS(5), }, [1387] = { [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_typeof] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LTtemplate_GT] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_delete] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2197), - [sym_number] = ACTIONS(2197), - [sym_private_property_identifier] = ACTIONS(2197), - [sym_this] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_null] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_protected] = ACTIONS(2197), - [anon_sym_override] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_any] = ACTIONS(2197), - [anon_sym_number] = ACTIONS(2197), - [anon_sym_boolean] = ACTIONS(2197), - [anon_sym_string] = ACTIONS(2197), - [anon_sym_symbol] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [sym__automatic_semicolon] = ACTIONS(2415), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2097), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_var] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_debugger] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LTtemplate_GT] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_void] = ACTIONS(2097), + [anon_sym_delete] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2097), + [sym_number] = ACTIONS(2097), + [sym_private_property_identifier] = ACTIONS(2097), + [sym_this] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_null] = ACTIONS(2097), + [sym_undefined] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_get] = ACTIONS(2097), + [anon_sym_set] = ACTIONS(2097), + [anon_sym_declare] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_private] = ACTIONS(2097), + [anon_sym_protected] = ACTIONS(2097), + [anon_sym_override] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_any] = ACTIONS(2097), + [anon_sym_number] = ACTIONS(2097), + [anon_sym_boolean] = ACTIONS(2097), + [anon_sym_string] = ACTIONS(2097), + [anon_sym_symbol] = ACTIONS(2097), + [anon_sym_object] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [sym__automatic_semicolon] = ACTIONS(2423), [sym_html_comment] = ACTIONS(5), }, [1388] = { [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_else] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_LTtemplate_GT] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_using] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3308), - [sym_number] = ACTIONS(3308), - [sym_private_property_identifier] = ACTIONS(3308), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_object] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_var] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_debugger] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LTtemplate_GT] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_void] = ACTIONS(2077), + [anon_sym_delete] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2077), + [sym_number] = ACTIONS(2077), + [sym_private_property_identifier] = ACTIONS(2077), + [sym_this] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_undefined] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_get] = ACTIONS(2077), + [anon_sym_set] = ACTIONS(2077), + [anon_sym_declare] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_private] = ACTIONS(2077), + [anon_sym_protected] = ACTIONS(2077), + [anon_sym_override] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_any] = ACTIONS(2077), + [anon_sym_number] = ACTIONS(2077), + [anon_sym_boolean] = ACTIONS(2077), + [anon_sym_string] = ACTIONS(2077), + [anon_sym_symbol] = ACTIONS(2077), + [anon_sym_object] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [sym__automatic_semicolon] = ACTIONS(2427), [sym_html_comment] = ACTIONS(5), }, [1389] = { [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1390] = { [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1391] = { [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [sym_html_comment] = ACTIONS(5), - }, - [1392] = { - [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1392] = { + [sym_comment] = STATE(1392), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, [1393] = { [sym_comment] = STATE(1393), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3124), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3124), + [anon_sym_import] = ACTIONS(3124), + [anon_sym_with] = ACTIONS(3124), + [anon_sym_var] = ACTIONS(3124), + [anon_sym_let] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_debugger] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_yield] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LTtemplate_GT] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_private_property_identifier] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + [sym_super] = ACTIONS(3124), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [sym_null] = ACTIONS(3124), + [sym_undefined] = ACTIONS(3124), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_override] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [anon_sym_object] = ACTIONS(3124), + [anon_sym_abstract] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), [sym_html_comment] = ACTIONS(5), }, [1394] = { [sym_comment] = STATE(1394), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, [1395] = { [sym_comment] = STATE(1395), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_typeof] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_var] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_debugger] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LTtemplate_GT] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2245), + [anon_sym_delete] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_number] = ACTIONS(2245), + [sym_private_property_identifier] = ACTIONS(2245), + [sym_this] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_null] = ACTIONS(2245), + [sym_undefined] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_get] = ACTIONS(2245), + [anon_sym_set] = ACTIONS(2245), + [anon_sym_declare] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_private] = ACTIONS(2245), + [anon_sym_protected] = ACTIONS(2245), + [anon_sym_override] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_any] = ACTIONS(2245), + [anon_sym_number] = ACTIONS(2245), + [anon_sym_boolean] = ACTIONS(2245), + [anon_sym_string] = ACTIONS(2245), + [anon_sym_symbol] = ACTIONS(2245), + [anon_sym_object] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), [sym_html_comment] = ACTIONS(5), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [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(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_html_comment] = ACTIONS(5), }, [1397] = { [sym_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [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(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = 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_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, [1398] = { [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, [1399] = { [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_html_comment] = ACTIONS(5), - }, - [1400] = { - [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [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(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = 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_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [sym_html_comment] = ACTIONS(5), + }, + [1400] = { + [sym_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3208), + [anon_sym_export] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3208), + [anon_sym_import] = ACTIONS(3208), + [anon_sym_with] = ACTIONS(3208), + [anon_sym_var] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_debugger] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LTtemplate_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_function] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_private_property_identifier] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [sym_null] = ACTIONS(3208), + [sym_undefined] = ACTIONS(3208), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_readonly] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3208), + [anon_sym_set] = ACTIONS(3208), + [anon_sym_declare] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_override] = ACTIONS(3208), + [anon_sym_module] = ACTIONS(3208), + [anon_sym_any] = ACTIONS(3208), + [anon_sym_number] = ACTIONS(3208), + [anon_sym_boolean] = ACTIONS(3208), + [anon_sym_string] = ACTIONS(3208), + [anon_sym_symbol] = ACTIONS(3208), + [anon_sym_object] = ACTIONS(3208), + [anon_sym_abstract] = ACTIONS(3208), + [anon_sym_interface] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), [sym_html_comment] = ACTIONS(5), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, [1402] = { [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_else] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3180), + [anon_sym_var] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_else] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_debugger] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LTtemplate_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_private_property_identifier] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [sym_null] = ACTIONS(3180), + [sym_undefined] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_readonly] = ACTIONS(3180), + [anon_sym_get] = ACTIONS(3180), + [anon_sym_set] = ACTIONS(3180), + [anon_sym_declare] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3180), + [anon_sym_number] = ACTIONS(3180), + [anon_sym_boolean] = ACTIONS(3180), + [anon_sym_string] = ACTIONS(3180), + [anon_sym_symbol] = ACTIONS(3180), + [anon_sym_object] = ACTIONS(3180), + [anon_sym_abstract] = ACTIONS(3180), + [anon_sym_interface] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, [1403] = { [sym_comment] = STATE(1403), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_default] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1404] = { [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_namespace] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_typeof] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_var] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_throw] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LTtemplate_GT] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_using] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_void] = ACTIONS(2103), - [anon_sym_delete] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2103), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(2103), - [sym_this] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_null] = ACTIONS(2103), - [sym_undefined] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_declare] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_protected] = ACTIONS(2103), - [anon_sym_override] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_any] = ACTIONS(2103), - [anon_sym_number] = ACTIONS(2103), - [anon_sym_boolean] = ACTIONS(2103), - [anon_sym_string] = ACTIONS(2103), - [anon_sym_symbol] = ACTIONS(2103), - [anon_sym_object] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2435), - [sym_html_comment] = ACTIONS(5), - }, - [1405] = { - [sym_comment] = STATE(1405), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [sym_html_comment] = ACTIONS(5), - }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LTtemplate_GT] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3316), - [sym_number] = ACTIONS(3316), - [sym_private_property_identifier] = ACTIONS(3316), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [sym_html_comment] = ACTIONS(5), - }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [sym_html_comment] = ACTIONS(5), - }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3542), + [ts_builtin_sym_end] = ACTIONS(3556), [sym_identifier] = ACTIONS(3290), [anon_sym_export] = ACTIONS(3290), [anon_sym_type] = ACTIONS(3290), @@ -178752,831 +178431,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1409] = { - [sym_comment] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [sym_html_comment] = ACTIONS(5), - }, - [1410] = { - [sym_comment] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), + [1405] = { + [sym_comment] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1411] = { - [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1412] = { - [sym_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [sym_html_comment] = ACTIONS(5), - }, - [1413] = { - [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [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(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [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_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), - [sym_html_comment] = ACTIONS(5), - }, - [1414] = { - [sym_comment] = STATE(1414), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), + [1407] = { + [sym_comment] = STATE(1407), + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3204), + [anon_sym_var] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_do] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_debugger] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_case] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LTtemplate_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_private_property_identifier] = ACTIONS(3204), + [sym_this] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_true] = ACTIONS(3204), + [sym_false] = ACTIONS(3204), + [sym_null] = ACTIONS(3204), + [sym_undefined] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_declare] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_module] = ACTIONS(3204), + [anon_sym_any] = ACTIONS(3204), + [anon_sym_number] = ACTIONS(3204), + [anon_sym_boolean] = ACTIONS(3204), + [anon_sym_string] = ACTIONS(3204), + [anon_sym_symbol] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_interface] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), + [1408] = { + [sym_comment] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1416] = { - [sym_comment] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_LTtemplate_GT] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3352), - [sym_number] = ACTIONS(3352), - [sym_private_property_identifier] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_object] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), + [1409] = { + [sym_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), [sym_html_comment] = ACTIONS(5), }, - [1417] = { - [sym_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1410] = { + [sym_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1418] = { - [sym_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_else] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [1411] = { + [sym_comment] = STATE(1411), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), [sym_html_comment] = ACTIONS(5), }, - [1419] = { - [sym_comment] = STATE(1419), + [1412] = { + [sym_comment] = STATE(1412), + [ts_builtin_sym_end] = ACTIONS(3564), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), [anon_sym_type] = ACTIONS(3198), [anon_sym_namespace] = ACTIONS(3198), [anon_sym_LBRACE] = ACTIONS(3198), @@ -179588,6 +179021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3198), [anon_sym_const] = ACTIONS(3198), [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), [anon_sym_if] = ACTIONS(3198), [anon_sym_switch] = ACTIONS(3198), [anon_sym_for] = ACTIONS(3198), @@ -179602,7 +179036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3198), [anon_sym_throw] = ACTIONS(3198), [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), [anon_sym_yield] = ACTIONS(3198), [anon_sym_LBRACK] = ACTIONS(3198), [anon_sym_LTtemplate_GT] = ACTIONS(3198), @@ -179654,3598 +179087,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1420] = { - [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), + [1413] = { + [sym_comment] = STATE(1413), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [sym_html_comment] = ACTIONS(5), - }, - [1421] = { - [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, - [1422] = { - [sym_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), + [1414] = { + [sym_comment] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1423] = { - [sym_comment] = STATE(1423), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [1415] = { + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), [sym_html_comment] = ACTIONS(5), }, - [1424] = { - [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1425] = { - [sym_comment] = STATE(1425), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [sym_html_comment] = ACTIONS(5), - }, - [1426] = { - [sym_comment] = STATE(1426), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), - [sym_html_comment] = ACTIONS(5), - }, - [1427] = { - [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), - [sym_html_comment] = ACTIONS(5), - }, - [1428] = { - [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_else] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [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(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [sym_html_comment] = ACTIONS(5), - }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_else] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [sym_html_comment] = ACTIONS(5), - }, - [1430] = { - [sym_comment] = STATE(1430), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1431] = { - [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), - [sym_html_comment] = ACTIONS(5), - }, - [1432] = { - [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(3570), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_else] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), - [sym_html_comment] = ACTIONS(5), - }, - [1433] = { - [sym_comment] = STATE(1433), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [sym_html_comment] = ACTIONS(5), - }, - [1434] = { - [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(3572), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), - [sym_html_comment] = ACTIONS(5), - }, - [1435] = { - [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [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(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [sym_html_comment] = ACTIONS(5), - }, - [1436] = { - [sym_comment] = STATE(1436), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [sym_html_comment] = ACTIONS(5), - }, - [1437] = { - [sym_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), - [sym_html_comment] = ACTIONS(5), - }, - [1438] = { - [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [sym_html_comment] = ACTIONS(5), - }, - [1439] = { - [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [sym_html_comment] = ACTIONS(5), - }, - [1440] = { - [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), - [sym_html_comment] = ACTIONS(5), - }, - [1441] = { - [sym_comment] = STATE(1441), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_default] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [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(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), - [sym_html_comment] = ACTIONS(5), - }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1443] = { - [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(3586), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [sym_html_comment] = ACTIONS(5), - }, - [1444] = { - [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym_html_comment] = ACTIONS(5), - }, - [1445] = { - [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LTtemplate_GT] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3268), - [sym_number] = ACTIONS(3268), - [sym_private_property_identifier] = ACTIONS(3268), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_object] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [sym_html_comment] = ACTIONS(5), - }, - [1446] = { - [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [sym_html_comment] = ACTIONS(5), - }, - [1447] = { - [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [sym_html_comment] = ACTIONS(5), - }, - [1448] = { - [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [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(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [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_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [sym_html_comment] = ACTIONS(5), - }, - [1449] = { - [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [sym_html_comment] = ACTIONS(5), - }, - [1450] = { - [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_typeof] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_var] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_debugger] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_throw] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LTtemplate_GT] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2163), - [anon_sym_delete] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2163), - [sym_number] = ACTIONS(2163), - [sym_private_property_identifier] = ACTIONS(2163), - [sym_this] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_undefined] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym_html_comment] = ACTIONS(5), - }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [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(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [sym_html_comment] = ACTIONS(5), - }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), - [sym_html_comment] = ACTIONS(5), - }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym_identifier] = ACTIONS(3130), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_with] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_debugger] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LTtemplate_GT] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_void] = ACTIONS(3130), - [anon_sym_delete] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3130), - [sym_number] = ACTIONS(3130), - [sym_private_property_identifier] = ACTIONS(3130), - [sym_this] = ACTIONS(3130), - [sym_super] = ACTIONS(3130), - [sym_true] = ACTIONS(3130), - [sym_false] = ACTIONS(3130), - [sym_null] = ACTIONS(3130), - [sym_undefined] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [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(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [sym_html_comment] = ACTIONS(5), - }, - [1454] = { - [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), - [sym_html_comment] = ACTIONS(5), - }, - [1455] = { - [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [sym_html_comment] = ACTIONS(5), - }, - [1456] = { - [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), - [sym_html_comment] = ACTIONS(5), - }, - [1457] = { - [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [sym_html_comment] = ACTIONS(5), - }, - [1458] = { - [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [sym_html_comment] = ACTIONS(5), - }, - [1459] = { - [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [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(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [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_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), + [1416] = { + [sym_comment] = STATE(1416), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1460] = { - [sym_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), + [1417] = { + [sym_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LTtemplate_GT] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [anon_sym_BQUOTE] = ACTIONS(3150), + [sym_number] = ACTIONS(3150), + [sym_private_property_identifier] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_object] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1461] = { - [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [1418] = { + [sym_comment] = STATE(1418), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1462] = { - [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), + [1419] = { + [sym_comment] = STATE(1419), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, - [1463] = { - [sym_comment] = STATE(1463), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1420] = { + [sym_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(3570), [sym_html_comment] = ACTIONS(5), }, - [1464] = { - [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(3468), + [1421] = { + [sym_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(3572), [sym_identifier] = ACTIONS(3196), [anon_sym_export] = ACTIONS(3196), [anon_sym_type] = ACTIONS(3196), @@ -183259,6 +179759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3196), [anon_sym_const] = ACTIONS(3196), [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_switch] = ACTIONS(3196), [anon_sym_for] = ACTIONS(3196), @@ -183324,333 +179825,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1466] = { - [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1423] = { + [sym_comment] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LTtemplate_GT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3358), + [sym_number] = ACTIONS(3358), + [sym_private_property_identifier] = ACTIONS(3358), + [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(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [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_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, - [1467] = { - [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [1424] = { + [sym_comment] = STATE(1424), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [1425] = { + [sym_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [sym_html_comment] = ACTIONS(5), + }, + [1426] = { + [sym_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [1427] = { + [sym_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), + [sym_html_comment] = ACTIONS(5), + }, + [1428] = { + [sym_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_default] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_with] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_debugger] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_case] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_LTtemplate_GT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3162), + [sym_number] = ACTIONS(3162), + [sym_private_property_identifier] = ACTIONS(3162), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1469] = { - [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(3478), + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(3566), [sym_identifier] = ACTIONS(3288), [anon_sym_export] = ACTIONS(3288), [anon_sym_type] = ACTIONS(3288), @@ -183664,6 +180415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3288), [anon_sym_const] = ACTIONS(3288), [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), [anon_sym_if] = ACTIONS(3288), [anon_sym_switch] = ACTIONS(3288), [anon_sym_for] = ACTIONS(3288), @@ -183729,578 +180481,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1470] = { - [sym_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), - [sym_html_comment] = ACTIONS(5), - }, - [1471] = { - [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [sym_html_comment] = ACTIONS(5), - }, - [1472] = { - [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), - [sym_html_comment] = ACTIONS(5), - }, - [1473] = { - [sym_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [sym_html_comment] = ACTIONS(5), - }, - [1474] = { - [sym_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2183), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_typeof] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_var] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_switch] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_debugger] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_throw] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LTtemplate_GT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_function] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2183), - [anon_sym_delete] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2183), - [sym_number] = ACTIONS(2183), - [sym_private_property_identifier] = ACTIONS(2183), - [sym_this] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_null] = ACTIONS(2183), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [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_abstract] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [sym_html_comment] = ACTIONS(5), - }, - [1475] = { - [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1476] = { - [sym_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1477] = { - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(3498), + [1430] = { + [sym_comment] = STATE(1430), [sym_identifier] = ACTIONS(3152), [anon_sym_export] = ACTIONS(3152), + [anon_sym_default] = ACTIONS(3152), [anon_sym_type] = ACTIONS(3152), [anon_sym_namespace] = ACTIONS(3152), [anon_sym_LBRACE] = ACTIONS(3152), @@ -184326,6 +180511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3152), [anon_sym_throw] = ACTIONS(3152), [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_case] = ACTIONS(3152), [anon_sym_yield] = ACTIONS(3152), [anon_sym_LBRACK] = ACTIONS(3152), [anon_sym_LTtemplate_GT] = ACTIONS(3152), @@ -184346,204 +180532,1108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3152), [anon_sym_DASH_DASH] = ACTIONS(3152), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [sym_html_comment] = ACTIONS(5), + }, + [1431] = { + [sym_comment] = STATE(1431), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_default] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_case] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), + [sym_html_comment] = ACTIONS(5), + }, + [1432] = { + [sym_comment] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [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(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [sym_html_comment] = ACTIONS(5), + }, + [1433] = { + [sym_comment] = STATE(1433), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LTtemplate_GT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3358), + [sym_number] = ACTIONS(3358), + [sym_private_property_identifier] = ACTIONS(3358), + [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(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [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_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [sym_html_comment] = ACTIONS(5), + }, + [1434] = { + [sym_comment] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym_html_comment] = ACTIONS(5), + }, + [1435] = { + [sym_comment] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [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(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [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_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [sym_html_comment] = ACTIONS(5), + }, + [1436] = { + [sym_comment] = STATE(1436), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [sym_html_comment] = ACTIONS(5), + }, + [1437] = { + [sym_comment] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [sym_html_comment] = ACTIONS(5), + }, + [1438] = { + [sym_comment] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_html_comment] = ACTIONS(5), + }, + [1439] = { + [sym_comment] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [sym_html_comment] = ACTIONS(5), + }, + [1440] = { + [sym_comment] = STATE(1440), + [sym_identifier] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3180), + [anon_sym_var] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_debugger] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LTtemplate_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_private_property_identifier] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [sym_null] = ACTIONS(3180), + [sym_undefined] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_readonly] = ACTIONS(3180), + [anon_sym_get] = ACTIONS(3180), + [anon_sym_set] = ACTIONS(3180), + [anon_sym_declare] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3180), + [anon_sym_number] = ACTIONS(3180), + [anon_sym_boolean] = ACTIONS(3180), + [anon_sym_string] = ACTIONS(3180), + [anon_sym_symbol] = ACTIONS(3180), + [anon_sym_object] = ACTIONS(3180), + [anon_sym_abstract] = ACTIONS(3180), + [anon_sym_interface] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [1478] = { - [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [1441] = { + [sym_comment] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [sym_html_comment] = ACTIONS(5), + }, + [1442] = { + [sym_comment] = STATE(1442), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [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(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1479] = { - [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(3542), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), + [1443] = { + [sym_comment] = STATE(1443), + [sym_identifier] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_type] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_with] = ACTIONS(3196), + [anon_sym_var] = ACTIONS(3196), + [anon_sym_let] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_debugger] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_yield] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LTtemplate_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_async] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3290), - [anon_sym_set] = ACTIONS(3290), - [anon_sym_declare] = ACTIONS(3290), - [anon_sym_public] = ACTIONS(3290), - [anon_sym_private] = ACTIONS(3290), - [anon_sym_protected] = ACTIONS(3290), - [anon_sym_override] = ACTIONS(3290), - [anon_sym_module] = ACTIONS(3290), - [anon_sym_any] = ACTIONS(3290), - [anon_sym_number] = ACTIONS(3290), - [anon_sym_boolean] = ACTIONS(3290), - [anon_sym_string] = ACTIONS(3290), - [anon_sym_symbol] = ACTIONS(3290), - [anon_sym_object] = ACTIONS(3290), - [anon_sym_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_private_property_identifier] = ACTIONS(3196), + [sym_this] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [sym_null] = ACTIONS(3196), + [sym_undefined] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_readonly] = ACTIONS(3196), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_declare] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_any] = ACTIONS(3196), + [anon_sym_number] = ACTIONS(3196), + [anon_sym_boolean] = ACTIONS(3196), + [anon_sym_string] = ACTIONS(3196), + [anon_sym_symbol] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_interface] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1480] = { - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3522), + [1444] = { + [sym_comment] = STATE(1444), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), [anon_sym_type] = ACTIONS(3198), [anon_sym_namespace] = ACTIONS(3198), [anon_sym_LBRACE] = ACTIONS(3198), @@ -184569,6 +181659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3198), [anon_sym_throw] = ACTIONS(3198), [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), [anon_sym_yield] = ACTIONS(3198), [anon_sym_LBRACK] = ACTIONS(3198), [anon_sym_LTtemplate_GT] = ACTIONS(3198), @@ -184620,171 +181711,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1481] = { - [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [1445] = { + [sym_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [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(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = 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_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [sym_html_comment] = ACTIONS(5), + }, + [1446] = { + [sym_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3204), + [anon_sym_var] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_do] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_debugger] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LTtemplate_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_private_property_identifier] = ACTIONS(3204), + [sym_this] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_true] = ACTIONS(3204), + [sym_false] = ACTIONS(3204), + [sym_null] = ACTIONS(3204), + [sym_undefined] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_declare] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_module] = ACTIONS(3204), + [anon_sym_any] = ACTIONS(3204), + [anon_sym_number] = ACTIONS(3204), + [anon_sym_boolean] = ACTIONS(3204), + [anon_sym_string] = ACTIONS(3204), + [anon_sym_symbol] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_interface] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), + [sym_html_comment] = ACTIONS(5), + }, + [1447] = { + [sym_comment] = STATE(1447), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [sym_html_comment] = ACTIONS(5), + }, + [1448] = { + [sym_comment] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(3434), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LTtemplate_GT] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3246), + [sym_number] = ACTIONS(3246), + [sym_private_property_identifier] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_object] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [sym_html_comment] = ACTIONS(5), + }, + [1449] = { + [sym_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [sym_html_comment] = ACTIONS(5), + }, + [1450] = { + [sym_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), + [sym_html_comment] = ACTIONS(5), + }, + [1451] = { + [sym_comment] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3200), + [anon_sym_export] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_namespace] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3200), + [anon_sym_import] = ACTIONS(3200), + [anon_sym_with] = ACTIONS(3200), + [anon_sym_var] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_do] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_debugger] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_throw] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LTtemplate_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_class] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_function] = ACTIONS(3200), + [anon_sym_new] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3200), + [anon_sym_delete] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_private_property_identifier] = ACTIONS(3200), + [sym_this] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_true] = ACTIONS(3200), + [sym_false] = ACTIONS(3200), + [sym_null] = ACTIONS(3200), + [sym_undefined] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_readonly] = ACTIONS(3200), + [anon_sym_get] = ACTIONS(3200), + [anon_sym_set] = ACTIONS(3200), + [anon_sym_declare] = ACTIONS(3200), + [anon_sym_public] = ACTIONS(3200), + [anon_sym_private] = ACTIONS(3200), + [anon_sym_protected] = ACTIONS(3200), + [anon_sym_override] = ACTIONS(3200), + [anon_sym_module] = ACTIONS(3200), + [anon_sym_any] = ACTIONS(3200), + [anon_sym_number] = ACTIONS(3200), + [anon_sym_boolean] = ACTIONS(3200), + [anon_sym_string] = ACTIONS(3200), + [anon_sym_symbol] = ACTIONS(3200), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_abstract] = ACTIONS(3200), + [anon_sym_interface] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [sym_html_comment] = ACTIONS(5), + }, + [1452] = { + [sym_comment] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [1453] = { + [sym_comment] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [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(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = 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_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [sym_html_comment] = ACTIONS(5), + }, + [1454] = { + [sym_comment] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_debugger] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LTtemplate_GT] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_private_property_identifier] = ACTIONS(3276), + [sym_this] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [sym_null] = ACTIONS(3276), + [sym_undefined] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_readonly] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3276), + [anon_sym_set] = ACTIONS(3276), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_protected] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), + [sym_html_comment] = ACTIONS(5), + }, + [1455] = { + [sym_comment] = STATE(1455), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), + [sym_html_comment] = ACTIONS(5), + }, + [1456] = { + [sym_comment] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LTtemplate_GT] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3270), + [sym_number] = ACTIONS(3270), + [sym_private_property_identifier] = ACTIONS(3270), + [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(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [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_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), + [1457] = { + [sym_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [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(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(3500), + [1458] = { + [sym_comment] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(3450), [sym_identifier] = ACTIONS(3150), [anon_sym_export] = ACTIONS(3150), [anon_sym_type] = ACTIONS(3150), @@ -184863,414 +182845,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [1459] = { + [sym_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_LTtemplate_GT] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3126), + [sym_private_property_identifier] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), [sym_html_comment] = ACTIONS(5), }, - [1485] = { - [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), + [1460] = { + [sym_comment] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), + [1461] = { + [sym_comment] = STATE(1461), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), + [1462] = { + [sym_comment] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, - [1488] = { - [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [1463] = { + [sym_comment] = STATE(1463), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1489] = { - [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(3402), + [1464] = { + [sym_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(3430), [sym_identifier] = ACTIONS(3136), [anon_sym_export] = ACTIONS(3136), [anon_sym_type] = ACTIONS(3136), @@ -185318,283 +183300,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3136), [anon_sym_DASH_DASH] = ACTIONS(3136), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [sym_html_comment] = ACTIONS(5), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3256), + [anon_sym_export] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_typeof] = ACTIONS(3256), + [anon_sym_import] = ACTIONS(3256), + [anon_sym_with] = ACTIONS(3256), + [anon_sym_var] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_await] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_debugger] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_yield] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LTtemplate_GT] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_async] = ACTIONS(3256), + [anon_sym_function] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_void] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3256), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + [sym_super] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_undefined] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_readonly] = ACTIONS(3256), + [anon_sym_get] = ACTIONS(3256), + [anon_sym_set] = ACTIONS(3256), + [anon_sym_declare] = ACTIONS(3256), + [anon_sym_public] = ACTIONS(3256), + [anon_sym_private] = ACTIONS(3256), + [anon_sym_protected] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_module] = ACTIONS(3256), + [anon_sym_any] = ACTIONS(3256), + [anon_sym_number] = ACTIONS(3256), + [anon_sym_boolean] = ACTIONS(3256), + [anon_sym_string] = ACTIONS(3256), + [anon_sym_symbol] = ACTIONS(3256), + [anon_sym_object] = ACTIONS(3256), + [anon_sym_abstract] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [sym_html_comment] = ACTIONS(5), + }, + [1466] = { + [sym_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [sym_html_comment] = ACTIONS(5), + }, + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LTtemplate_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3186), + [sym_number] = ACTIONS(3186), + [sym_private_property_identifier] = ACTIONS(3186), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [sym_html_comment] = ACTIONS(5), + }, + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [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(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3306), - [anon_sym_export] = ACTIONS(3306), - [anon_sym_type] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3306), - [anon_sym_import] = ACTIONS(3306), - [anon_sym_with] = ACTIONS(3306), - [anon_sym_var] = ACTIONS(3306), - [anon_sym_let] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_debugger] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_yield] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LTtemplate_GT] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_async] = ACTIONS(3306), - [anon_sym_function] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), + [1469] = { + [sym_comment] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_private_property_identifier] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), - [sym_super] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_undefined] = ACTIONS(3306), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_readonly] = ACTIONS(3306), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_override] = ACTIONS(3306), - [anon_sym_module] = ACTIONS(3306), - [anon_sym_any] = ACTIONS(3306), - [anon_sym_number] = ACTIONS(3306), - [anon_sym_boolean] = ACTIONS(3306), - [anon_sym_string] = ACTIONS(3306), - [anon_sym_symbol] = ACTIONS(3306), - [anon_sym_object] = ACTIONS(3306), - [anon_sym_abstract] = ACTIONS(3306), - [anon_sym_interface] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, - [1491] = { - [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), + [1470] = { + [sym_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1492] = { - [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), + [1471] = { + [sym_comment] = STATE(1471), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [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(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = 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_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(3510), + [1472] = { + [sym_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(3560), [sym_identifier] = ACTIONS(3268), [anon_sym_export] = ACTIONS(3268), [anon_sym_type] = ACTIONS(3268), @@ -185673,495 +183979,819 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1494] = { - [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LTtemplate_GT] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_using] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), + [1473] = { + [sym_comment] = STATE(1473), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LTtemplate_GT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [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_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_number] = ACTIONS(3362), + [sym_private_property_identifier] = ACTIONS(3362), + [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(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [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_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [sym_html_comment] = ACTIONS(5), + }, + [1474] = { + [sym_comment] = STATE(1474), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_number] = ACTIONS(3312), - [sym_private_property_identifier] = ACTIONS(3312), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3312), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LTtemplate_GT] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3280), - [sym_number] = ACTIONS(3280), - [sym_private_property_identifier] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_object] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), + [1475] = { + [sym_comment] = STATE(1475), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1496] = { - [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), + [1476] = { + [sym_comment] = STATE(1476), + [ts_builtin_sym_end] = ACTIONS(3470), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [sym_html_comment] = ACTIONS(5), + }, + [1477] = { + [sym_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1478] = { + [sym_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1479] = { + [sym_comment] = STATE(1479), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3248), + [anon_sym_import] = ACTIONS(3248), + [anon_sym_with] = ACTIONS(3248), + [anon_sym_var] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_debugger] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LTtemplate_GT] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_function] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_private_property_identifier] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [sym_null] = ACTIONS(3248), + [sym_undefined] = ACTIONS(3248), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_readonly] = ACTIONS(3248), + [anon_sym_get] = ACTIONS(3248), + [anon_sym_set] = ACTIONS(3248), + [anon_sym_declare] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_module] = ACTIONS(3248), + [anon_sym_any] = ACTIONS(3248), + [anon_sym_number] = ACTIONS(3248), + [anon_sym_boolean] = ACTIONS(3248), + [anon_sym_string] = ACTIONS(3248), + [anon_sym_symbol] = ACTIONS(3248), + [anon_sym_object] = ACTIONS(3248), + [anon_sym_abstract] = ACTIONS(3248), + [anon_sym_interface] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [sym_html_comment] = ACTIONS(5), + }, + [1480] = { + [sym_comment] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [sym_html_comment] = ACTIONS(5), - }, - [1497] = { - [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1498] = { - [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), + [1481] = { + [sym_comment] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [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(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1499] = { - [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [1482] = { + [sym_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1500] = { - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(3516), + [1483] = { + [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3582), [sym_identifier] = ACTIONS(3300), [anon_sym_export] = ACTIONS(3300), [anon_sym_type] = ACTIONS(3300), @@ -186240,900 +184870,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, - [1501] = { - [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), + [1484] = { + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, - [1502] = { - [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3370), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3370), - [anon_sym_import] = ACTIONS(3370), - [anon_sym_with] = ACTIONS(3370), - [anon_sym_var] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_const] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_if] = ACTIONS(3370), - [anon_sym_switch] = ACTIONS(3370), - [anon_sym_for] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3370), - [anon_sym_while] = ACTIONS(3370), - [anon_sym_do] = ACTIONS(3370), - [anon_sym_try] = ACTIONS(3370), - [anon_sym_break] = ACTIONS(3370), - [anon_sym_continue] = ACTIONS(3370), - [anon_sym_debugger] = ACTIONS(3370), - [anon_sym_return] = ACTIONS(3370), - [anon_sym_throw] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LTtemplate_GT] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3370), - [anon_sym_async] = ACTIONS(3370), - [anon_sym_function] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3370), - [anon_sym_using] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), + [1485] = { + [sym_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3370), - [sym_super] = ACTIONS(3370), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_undefined] = ACTIONS(3370), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3370), - [anon_sym_readonly] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3370), - [anon_sym_set] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3370), - [anon_sym_private] = ACTIONS(3370), - [anon_sym_protected] = ACTIONS(3370), - [anon_sym_override] = ACTIONS(3370), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3370), - [anon_sym_interface] = ACTIONS(3370), - [anon_sym_enum] = ACTIONS(3370), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1503] = { - [sym_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3314), - [anon_sym_var] = ACTIONS(3314), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_debugger] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LTtemplate_GT] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_async] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_private_property_identifier] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - [sym_super] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_null] = ACTIONS(3314), - [sym_undefined] = ACTIONS(3314), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_readonly] = ACTIONS(3314), - [anon_sym_get] = ACTIONS(3314), - [anon_sym_set] = ACTIONS(3314), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3314), - [anon_sym_private] = ACTIONS(3314), - [anon_sym_protected] = ACTIONS(3314), - [anon_sym_override] = ACTIONS(3314), - [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(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [sym_html_comment] = ACTIONS(5), + }, + [1487] = { + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [sym_html_comment] = ACTIONS(5), + }, + [1488] = { + [sym_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [sym_html_comment] = ACTIONS(5), + }, + [1489] = { + [sym_comment] = STATE(1489), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_with] = ACTIONS(3318), - [anon_sym_var] = ACTIONS(3318), - [anon_sym_let] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_debugger] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LTtemplate_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_async] = ACTIONS(3318), - [anon_sym_function] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), + [1490] = { + [sym_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), - [sym_super] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_undefined] = ACTIONS(3318), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_readonly] = ACTIONS(3318), - [anon_sym_get] = ACTIONS(3318), - [anon_sym_set] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_override] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_any] = ACTIONS(3318), - [anon_sym_number] = ACTIONS(3318), - [anon_sym_boolean] = ACTIONS(3318), - [anon_sym_string] = ACTIONS(3318), - [anon_sym_symbol] = ACTIONS(3318), - [anon_sym_object] = ACTIONS(3318), - [anon_sym_abstract] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [1505] = { - [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1491] = { + [sym_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1506] = { - [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), + [1492] = { + [sym_comment] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1507] = { - [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_LTtemplate_GT] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3352), - [sym_number] = ACTIONS(3352), - [sym_private_property_identifier] = ACTIONS(3352), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_object] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), + [1494] = { + [sym_comment] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1509] = { - [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), + [1495] = { + [sym_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LTtemplate_GT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3368), + [1496] = { + [sym_comment] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3368), - [sym_number] = ACTIONS(3368), - [sym_private_property_identifier] = ACTIONS(3368), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), + [sym_html_comment] = ACTIONS(5), + }, + [1497] = { + [sym_comment] = STATE(1497), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3164), + [anon_sym_export] = ACTIONS(3164), + [anon_sym_type] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3164), + [anon_sym_import] = ACTIONS(3164), + [anon_sym_with] = ACTIONS(3164), + [anon_sym_var] = ACTIONS(3164), + [anon_sym_let] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_debugger] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_LTtemplate_GT] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_async] = ACTIONS(3164), + [anon_sym_function] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_private_property_identifier] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), + [sym_super] = ACTIONS(3164), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [sym_null] = ACTIONS(3164), + [sym_undefined] = ACTIONS(3164), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_readonly] = ACTIONS(3164), + [anon_sym_get] = ACTIONS(3164), + [anon_sym_set] = ACTIONS(3164), + [anon_sym_declare] = ACTIONS(3164), + [anon_sym_public] = ACTIONS(3164), + [anon_sym_private] = ACTIONS(3164), + [anon_sym_protected] = ACTIONS(3164), + [anon_sym_override] = ACTIONS(3164), + [anon_sym_module] = ACTIONS(3164), + [anon_sym_any] = ACTIONS(3164), + [anon_sym_number] = ACTIONS(3164), + [anon_sym_boolean] = ACTIONS(3164), + [anon_sym_string] = ACTIONS(3164), + [anon_sym_symbol] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3164), + [anon_sym_abstract] = ACTIONS(3164), + [anon_sym_interface] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), [sym_html_comment] = ACTIONS(5), }, - [1511] = { - [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), + [1498] = { + [sym_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [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(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [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_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1512] = { - [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(3524), + [1499] = { + [sym_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(3410), [sym_identifier] = ACTIONS(3308), [anon_sym_export] = ACTIONS(3308), [anon_sym_type] = ACTIONS(3308), @@ -187212,90 +186166,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, - [1513] = { - [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, - [1514] = { - [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(3492), + [1501] = { + [sym_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(3540), [sym_identifier] = ACTIONS(3302), [anon_sym_export] = ACTIONS(3302), [anon_sym_type] = ACTIONS(3302), @@ -187374,171 +186328,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1515] = { - [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [sym_html_comment] = ACTIONS(5), - }, - [1516] = { - [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3572), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), + [1502] = { + [sym_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1517] = { - [sym_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(3490), + [1503] = { + [sym_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(3584), [sym_identifier] = ACTIONS(3298), [anon_sym_export] = ACTIONS(3298), [anon_sym_type] = ACTIONS(3298), @@ -187617,252 +186490,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, - [1518] = { - [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [sym_html_comment] = ACTIONS(5), - }, - [1519] = { - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1520] = { - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_typeof] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_var] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_debugger] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LTtemplate_GT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_function] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_using] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2175), - [anon_sym_delete] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_type] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_with] = ACTIONS(3196), + [anon_sym_var] = ACTIONS(3196), + [anon_sym_let] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_debugger] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_yield] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LTtemplate_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_async] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2175), - [sym_number] = ACTIONS(2175), - [sym_private_property_identifier] = ACTIONS(2175), - [sym_this] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_undefined] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_private_property_identifier] = ACTIONS(3196), + [sym_this] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [sym_null] = ACTIONS(3196), + [sym_undefined] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_readonly] = ACTIONS(3196), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_declare] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_any] = ACTIONS(3196), + [anon_sym_number] = ACTIONS(3196), + [anon_sym_boolean] = ACTIONS(3196), + [anon_sym_string] = ACTIONS(3196), + [anon_sym_symbol] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_interface] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1521] = { - [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(3386), + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(3574), [sym_identifier] = ACTIONS(3358), [anon_sym_export] = ACTIONS(3358), [anon_sym_type] = ACTIONS(3358), @@ -187941,657 +186733,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, - [1522] = { - [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [sym_html_comment] = ACTIONS(5), - }, - [1523] = { - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3338), - [anon_sym_type] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3338), - [anon_sym_import] = ACTIONS(3338), - [anon_sym_with] = ACTIONS(3338), - [anon_sym_var] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_debugger] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_throw] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LTtemplate_GT] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3338), - [anon_sym_async] = ACTIONS(3338), - [anon_sym_function] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3338), - [anon_sym_delete] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3338), - [sym_super] = ACTIONS(3338), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_undefined] = ACTIONS(3338), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_readonly] = ACTIONS(3338), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3338), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3338), - [anon_sym_module] = ACTIONS(3338), - [anon_sym_any] = ACTIONS(3338), - [anon_sym_number] = ACTIONS(3338), - [anon_sym_boolean] = ACTIONS(3338), - [anon_sym_string] = ACTIONS(3338), - [anon_sym_symbol] = ACTIONS(3338), - [anon_sym_object] = ACTIONS(3338), - [anon_sym_abstract] = ACTIONS(3338), - [anon_sym_interface] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1524] = { - [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LTtemplate_GT] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3282), + [sym_number] = ACTIONS(3282), + [sym_private_property_identifier] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_override] = ACTIONS(3282), + [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(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), + [1509] = { + [sym_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_namespace] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LTtemplate_GT] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3360), + [anon_sym_delete] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_private_property_identifier] = ACTIONS(3360), + [sym_this] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_true] = ACTIONS(3360), + [sym_false] = ACTIONS(3360), + [sym_null] = ACTIONS(3360), + [sym_undefined] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_protected] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [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(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), [sym_html_comment] = ACTIONS(5), }, - [1526] = { - [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), + [1510] = { + [sym_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, - [1527] = { - [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), + [1511] = { + [sym_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [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(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = 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_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_typeof] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_switch] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_do] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_debugger] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_throw] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LTtemplate_GT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_function] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_using] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_delete] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_number] = ACTIONS(2227), + [sym_private_property_identifier] = ACTIONS(2227), + [sym_this] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_null] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_get] = ACTIONS(2227), + [anon_sym_set] = ACTIONS(2227), + [anon_sym_declare] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_module] = ACTIONS(2227), + [anon_sym_any] = ACTIONS(2227), + [anon_sym_number] = ACTIONS(2227), + [anon_sym_boolean] = ACTIONS(2227), + [anon_sym_string] = ACTIONS(2227), + [anon_sym_symbol] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), [sym_html_comment] = ACTIONS(5), }, - [1529] = { - [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [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(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, - [1530] = { - [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3526), + [1514] = { + [sym_comment] = STATE(1514), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [sym_html_comment] = ACTIONS(5), + }, + [1515] = { + [sym_comment] = STATE(1515), + [ts_builtin_sym_end] = ACTIONS(3544), [sym_identifier] = ACTIONS(3334), [anon_sym_export] = ACTIONS(3334), [anon_sym_type] = ACTIONS(3334), @@ -188670,900 +187462,1629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1531] = { - [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LTtemplate_GT] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3286), + [sym_number] = ACTIONS(3286), + [sym_private_property_identifier] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_override] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_object] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [sym_html_comment] = ACTIONS(5), + }, + [1517] = { + [sym_comment] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LTtemplate_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_number] = ACTIONS(3206), + [sym_private_property_identifier] = ACTIONS(3206), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [sym_html_comment] = ACTIONS(5), + }, + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [sym_html_comment] = ACTIONS(5), + }, + [1519] = { + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3240), + [anon_sym_export] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3240), + [anon_sym_import] = ACTIONS(3240), + [anon_sym_with] = ACTIONS(3240), + [anon_sym_var] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_debugger] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LTtemplate_GT] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_function] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_private_property_identifier] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_null] = ACTIONS(3240), + [sym_undefined] = ACTIONS(3240), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_readonly] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3240), + [anon_sym_set] = ACTIONS(3240), + [anon_sym_declare] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_override] = ACTIONS(3240), + [anon_sym_module] = ACTIONS(3240), + [anon_sym_any] = ACTIONS(3240), + [anon_sym_number] = ACTIONS(3240), + [anon_sym_boolean] = ACTIONS(3240), + [anon_sym_string] = ACTIONS(3240), + [anon_sym_symbol] = ACTIONS(3240), + [anon_sym_object] = ACTIONS(3240), + [anon_sym_abstract] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [sym_html_comment] = ACTIONS(5), + }, + [1520] = { + [sym_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [sym_html_comment] = ACTIONS(5), + }, + [1521] = { + [sym_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_object] = ACTIONS(3290), + [anon_sym_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [sym_html_comment] = ACTIONS(5), + }, + [1522] = { + [sym_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LTtemplate_GT] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_private_property_identifier] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [sym_html_comment] = ACTIONS(5), + }, + [1523] = { + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_var] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_debugger] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LTtemplate_GT] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2109), + [anon_sym_delete] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2109), + [sym_number] = ACTIONS(2109), + [sym_private_property_identifier] = ACTIONS(2109), + [sym_this] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_undefined] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_get] = ACTIONS(2109), + [anon_sym_set] = ACTIONS(2109), + [anon_sym_declare] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_private] = ACTIONS(2109), + [anon_sym_protected] = ACTIONS(2109), + [anon_sym_override] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_any] = ACTIONS(2109), + [anon_sym_number] = ACTIONS(2109), + [anon_sym_boolean] = ACTIONS(2109), + [anon_sym_string] = ACTIONS(2109), + [anon_sym_symbol] = ACTIONS(2109), + [anon_sym_object] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3244), + [anon_sym_export] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3244), + [anon_sym_import] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3244), + [anon_sym_var] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_debugger] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LTtemplate_GT] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_private_property_identifier] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_undefined] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_readonly] = ACTIONS(3244), + [anon_sym_get] = ACTIONS(3244), + [anon_sym_set] = ACTIONS(3244), + [anon_sym_declare] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_module] = ACTIONS(3244), + [anon_sym_any] = ACTIONS(3244), + [anon_sym_number] = ACTIONS(3244), + [anon_sym_boolean] = ACTIONS(3244), + [anon_sym_string] = ACTIONS(3244), + [anon_sym_symbol] = ACTIONS(3244), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_abstract] = ACTIONS(3244), + [anon_sym_interface] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), [sym_html_comment] = ACTIONS(5), }, - [1532] = { - [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1525] = { + [sym_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1533] = { - [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), + [1526] = { + [sym_comment] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [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(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, - [1534] = { - [sym_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [1527] = { + [sym_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_typeof] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_var] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_switch] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_debugger] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_throw] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LTtemplate_GT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_function] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_using] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_delete] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2151), + [sym_number] = ACTIONS(2151), + [sym_private_property_identifier] = ACTIONS(2151), + [sym_this] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [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), + [anon_sym_abstract] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), [sym_html_comment] = ACTIONS(5), }, - [1535] = { - [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [1528] = { + [sym_comment] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LTtemplate_GT] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3310), + [sym_number] = ACTIONS(3310), + [sym_private_property_identifier] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, - [1536] = { - [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_LTtemplate_GT] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), + [1529] = { + [sym_comment] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3260), - [sym_number] = ACTIONS(3260), - [sym_private_property_identifier] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_object] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [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(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [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_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1537] = { - [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [1530] = { + [sym_comment] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [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(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [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_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [1531] = { + [sym_comment] = STATE(1531), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, - [1539] = { - [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3350), - [anon_sym_import] = ACTIONS(3350), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_var] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_debugger] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LTtemplate_GT] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_async] = ACTIONS(3350), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_private_property_identifier] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [sym_super] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_null] = ACTIONS(3350), - [sym_undefined] = ACTIONS(3350), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_readonly] = ACTIONS(3350), - [anon_sym_get] = ACTIONS(3350), - [anon_sym_set] = ACTIONS(3350), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_override] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), + [1532] = { + [sym_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LTtemplate_GT] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3242), + [sym_number] = ACTIONS(3242), + [sym_private_property_identifier] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_object] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), [sym_html_comment] = ACTIONS(5), }, - [1540] = { - [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1533] = { + [sym_comment] = STATE(1533), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1541] = { - [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), + [1534] = { + [sym_comment] = STATE(1534), + [ts_builtin_sym_end] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [sym_html_comment] = ACTIONS(5), + }, + [1535] = { + [sym_comment] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1542] = { - [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(3518), + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(3504), [sym_identifier] = ACTIONS(3228), [anon_sym_export] = ACTIONS(3228), [anon_sym_type] = ACTIONS(3228), @@ -189642,9 +189163,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym_html_comment] = ACTIONS(5), + }, + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [sym_html_comment] = ACTIONS(5), + }, + [1539] = { + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3124), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3124), + [anon_sym_import] = ACTIONS(3124), + [anon_sym_with] = ACTIONS(3124), + [anon_sym_var] = ACTIONS(3124), + [anon_sym_let] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_debugger] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_yield] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LTtemplate_GT] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_private_property_identifier] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + [sym_super] = ACTIONS(3124), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [sym_null] = ACTIONS(3124), + [sym_undefined] = ACTIONS(3124), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_override] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [anon_sym_object] = ACTIONS(3124), + [anon_sym_abstract] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [sym_html_comment] = ACTIONS(5), + }, + [1540] = { + [sym_comment] = STATE(1540), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [sym_html_comment] = ACTIONS(5), + }, + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_typeof] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LTtemplate_GT] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2193), + [anon_sym_delete] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2193), + [sym_number] = ACTIONS(2193), + [sym_private_property_identifier] = ACTIONS(2193), + [sym_this] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_null] = ACTIONS(2193), + [sym_undefined] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [sym_html_comment] = ACTIONS(5), + }, + [1542] = { + [sym_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3208), + [anon_sym_export] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3208), + [anon_sym_import] = ACTIONS(3208), + [anon_sym_with] = ACTIONS(3208), + [anon_sym_var] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_do] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_debugger] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_throw] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LTtemplate_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_function] = ACTIONS(3208), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_private_property_identifier] = ACTIONS(3208), + [sym_this] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_true] = ACTIONS(3208), + [sym_false] = ACTIONS(3208), + [sym_null] = ACTIONS(3208), + [sym_undefined] = ACTIONS(3208), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_readonly] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3208), + [anon_sym_set] = ACTIONS(3208), + [anon_sym_declare] = ACTIONS(3208), + [anon_sym_public] = ACTIONS(3208), + [anon_sym_private] = ACTIONS(3208), + [anon_sym_protected] = ACTIONS(3208), + [anon_sym_override] = ACTIONS(3208), + [anon_sym_module] = ACTIONS(3208), + [anon_sym_any] = ACTIONS(3208), + [anon_sym_number] = ACTIONS(3208), + [anon_sym_boolean] = ACTIONS(3208), + [anon_sym_string] = ACTIONS(3208), + [anon_sym_symbol] = ACTIONS(3208), + [anon_sym_object] = ACTIONS(3208), + [anon_sym_abstract] = ACTIONS(3208), + [anon_sym_interface] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [sym_html_comment] = ACTIONS(5), + }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3428), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [sym_html_comment] = ACTIONS(5), + }, + [1544] = { + [sym_comment] = STATE(1544), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [sym_html_comment] = ACTIONS(5), + }, + [1545] = { + [sym_comment] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(3488), [sym_identifier] = ACTIONS(3162), [anon_sym_export] = ACTIONS(3162), [anon_sym_type] = ACTIONS(3162), @@ -189723,576 +189892,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1544] = { - [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), + [1546] = { + [sym_comment] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_var] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_debugger] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LTtemplate_GT] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_delete] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2223), + [sym_number] = ACTIONS(2223), + [sym_private_property_identifier] = ACTIONS(2223), + [sym_this] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_null] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_override] = ACTIONS(2223), + [anon_sym_module] = ACTIONS(2223), + [anon_sym_any] = ACTIONS(2223), + [anon_sym_number] = ACTIONS(2223), + [anon_sym_boolean] = ACTIONS(2223), + [anon_sym_string] = ACTIONS(2223), + [anon_sym_symbol] = ACTIONS(2223), + [anon_sym_object] = ACTIONS(2223), + [anon_sym_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym_html_comment] = ACTIONS(5), + }, + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [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(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [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_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [sym_html_comment] = ACTIONS(5), + }, + [1548] = { + [sym_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [sym_html_comment] = ACTIONS(5), + }, + [1549] = { + [sym_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LTtemplate_GT] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3238), + [sym_number] = ACTIONS(3238), + [sym_private_property_identifier] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [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(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [sym_html_comment] = ACTIONS(5), + }, + [1550] = { + [sym_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_typeof] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_var] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_void] = ACTIONS(2105), + [anon_sym_delete] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [sym_private_property_identifier] = ACTIONS(2105), + [sym_this] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_null] = ACTIONS(2105), + [sym_undefined] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [sym_html_comment] = ACTIONS(5), + }, + [1551] = { + [sym_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3152), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(3152), + [anon_sym_with] = ACTIONS(3152), + [anon_sym_var] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_do] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_debugger] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LTtemplate_GT] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_class] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3152), + [anon_sym_new] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3152), + [anon_sym_delete] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [sym_html_comment] = ACTIONS(5), + }, + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, - [1545] = { - [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [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(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = 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_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [1553] = { + [sym_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1546] = { - [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [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(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), + [1554] = { + [sym_comment] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [1555] = { + [sym_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1548] = { - [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), + [1556] = { + [sym_comment] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [1549] = { - [sym_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_var] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_debugger] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LTtemplate_GT] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_void] = ACTIONS(2125), - [anon_sym_delete] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2125), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(2125), - [sym_this] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [sym_undefined] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [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), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), + [1557] = { + [sym_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_with] = ACTIONS(2249), + [anon_sym_var] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_debugger] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_delete] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2249), + [sym_number] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(2249), + [sym_this] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_null] = ACTIONS(2249), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_readonly] = ACTIONS(2249), + [anon_sym_get] = ACTIONS(2249), + [anon_sym_set] = ACTIONS(2249), + [anon_sym_declare] = ACTIONS(2249), + [anon_sym_public] = ACTIONS(2249), + [anon_sym_private] = ACTIONS(2249), + [anon_sym_protected] = ACTIONS(2249), + [anon_sym_override] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_any] = ACTIONS(2249), + [anon_sym_number] = ACTIONS(2249), + [anon_sym_boolean] = ACTIONS(2249), + [anon_sym_string] = ACTIONS(2249), + [anon_sym_symbol] = ACTIONS(2249), + [anon_sym_object] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), [sym_html_comment] = ACTIONS(5), }, - [1550] = { - [sym_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1551] = { - [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3426), + [1559] = { + [sym_comment] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(3388), [sym_identifier] = ACTIONS(3348), [anon_sym_export] = ACTIONS(3348), [anon_sym_type] = ACTIONS(3348), @@ -190371,657 +191026,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, - [1552] = { - [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [1560] = { + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1553] = { - [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), + [1561] = { + [sym_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, - [1554] = { - [sym_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(3586), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3180), + [anon_sym_var] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_debugger] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LTtemplate_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [sym_html_comment] = ACTIONS(5), - }, - [1555] = { - [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_var] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_switch] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_do] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_throw] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2111), - [anon_sym_delete] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_private_property_identifier] = ACTIONS(2111), - [sym_this] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_null] = ACTIONS(2111), - [sym_undefined] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_interface] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_private_property_identifier] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [sym_null] = ACTIONS(3180), + [sym_undefined] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_readonly] = ACTIONS(3180), + [anon_sym_get] = ACTIONS(3180), + [anon_sym_set] = ACTIONS(3180), + [anon_sym_declare] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3180), + [anon_sym_number] = ACTIONS(3180), + [anon_sym_boolean] = ACTIONS(3180), + [anon_sym_string] = ACTIONS(3180), + [anon_sym_symbol] = ACTIONS(3180), + [anon_sym_object] = ACTIONS(3180), + [anon_sym_abstract] = ACTIONS(3180), + [anon_sym_interface] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [1556] = { - [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3588), - [sym_identifier] = ACTIONS(3434), - [anon_sym_export] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_namespace] = ACTIONS(3434), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3434), - [anon_sym_import] = ACTIONS(3434), - [anon_sym_with] = ACTIONS(3434), - [anon_sym_var] = ACTIONS(3434), - [anon_sym_let] = ACTIONS(3434), - [anon_sym_const] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_switch] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3434), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_do] = ACTIONS(3434), - [anon_sym_try] = ACTIONS(3434), - [anon_sym_break] = ACTIONS(3434), - [anon_sym_continue] = ACTIONS(3434), - [anon_sym_debugger] = ACTIONS(3434), - [anon_sym_return] = ACTIONS(3434), - [anon_sym_throw] = ACTIONS(3434), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_yield] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LTtemplate_GT] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [anon_sym_class] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_function] = ACTIONS(3434), - [anon_sym_new] = ACTIONS(3434), - [anon_sym_using] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_void] = ACTIONS(3434), - [anon_sym_delete] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3434), - [sym_number] = ACTIONS(3434), - [sym_private_property_identifier] = ACTIONS(3434), - [sym_this] = ACTIONS(3434), - [sym_super] = ACTIONS(3434), - [sym_true] = ACTIONS(3434), - [sym_false] = ACTIONS(3434), - [sym_null] = ACTIONS(3434), - [sym_undefined] = ACTIONS(3434), - [anon_sym_AT] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3434), - [anon_sym_readonly] = ACTIONS(3434), - [anon_sym_get] = ACTIONS(3434), - [anon_sym_set] = ACTIONS(3434), - [anon_sym_declare] = ACTIONS(3434), - [anon_sym_public] = ACTIONS(3434), - [anon_sym_private] = ACTIONS(3434), - [anon_sym_protected] = ACTIONS(3434), - [anon_sym_override] = ACTIONS(3434), - [anon_sym_module] = ACTIONS(3434), - [anon_sym_any] = ACTIONS(3434), - [anon_sym_number] = ACTIONS(3434), - [anon_sym_boolean] = ACTIONS(3434), - [anon_sym_string] = ACTIONS(3434), - [anon_sym_symbol] = ACTIONS(3434), - [anon_sym_object] = ACTIONS(3434), - [anon_sym_abstract] = ACTIONS(3434), - [anon_sym_interface] = ACTIONS(3434), - [anon_sym_enum] = ACTIONS(3434), + [1563] = { + [sym_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1557] = { - [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [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(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1558] = { - [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), + [1565] = { + [sym_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [1559] = { - [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [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(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [1566] = { + [sym_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [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(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1560] = { - [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3372), + [1567] = { + [sym_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(3530), [sym_identifier] = ACTIONS(3194), [anon_sym_export] = ACTIONS(3194), [anon_sym_type] = ACTIONS(3194), @@ -191100,738 +191674,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1561] = { - [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LTtemplate_GT] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3316), - [sym_number] = ACTIONS(3316), - [sym_private_property_identifier] = ACTIONS(3316), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [sym_html_comment] = ACTIONS(5), - }, - [1562] = { - [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [sym_html_comment] = ACTIONS(5), - }, - [1563] = { - [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym_html_comment] = ACTIONS(5), - }, - [1564] = { - [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym_html_comment] = ACTIONS(5), - }, - [1565] = { - [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [sym_html_comment] = ACTIONS(5), - }, - [1566] = { - [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [sym_html_comment] = ACTIONS(5), - }, - [1567] = { - [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [sym_html_comment] = ACTIONS(5), - }, [1568] = { [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, [1569] = { [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [sym_html_comment] = ACTIONS(5), - }, - [1570] = { - [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3570), + [ts_builtin_sym_end] = ACTIONS(3444), [sym_identifier] = ACTIONS(3236), [anon_sym_export] = ACTIONS(3236), [anon_sym_type] = ACTIONS(3236), @@ -191910,210 +191836,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, + [1570] = { + [sym_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [sym_html_comment] = ACTIONS(5), + }, [1571] = { [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(3448), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, [1572] = { [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, [1573] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1573), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6245), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6002), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(3592), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3594), @@ -192121,12 +192128,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192136,64 +192143,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1574] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1574), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6309), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6202), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(3598), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3600), @@ -192201,12 +192208,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192216,64 +192223,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1575] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1575), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(5996), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(5712), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(3602), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3604), @@ -192281,12 +192288,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192296,64 +192303,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1576] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1576), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(5706), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6251), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(3606), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3608), @@ -192361,12 +192368,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192376,64 +192383,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1577] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1577), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6160), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6022), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(3610), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3612), @@ -192441,12 +192448,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192456,63 +192463,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1578] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1578), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3614), @@ -192520,12 +192527,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192535,178 +192542,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1579] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), [sym_comment] = STATE(1579), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_LTtemplate_GT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3112), + [sym_number] = ACTIONS(3112), + [sym_private_property_identifier] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_override] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_object] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), [sym_html_comment] = ACTIONS(5), }, [1580] = { [sym_comment] = STATE(1580), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, [1581] = { @@ -192789,125 +192796,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1582] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1582), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [sym_html_comment] = ACTIONS(5), - }, - [1583] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1583), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(3620), @@ -192915,12 +192843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -192930,313 +192858,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1584] = { - [sym_comment] = STATE(1584), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [sym_html_comment] = ACTIONS(5), - }, - [1585] = { - [sym_comment] = STATE(1585), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [sym_html_comment] = ACTIONS(5), - }, - [1586] = { - [sym_comment] = STATE(1586), - [sym_identifier] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_type] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_typeof] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_with] = ACTIONS(3622), - [anon_sym_var] = ACTIONS(3622), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_BANG] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_await] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_debugger] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_LTtemplate_GT] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3622), - [anon_sym_SQUOTE] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_async] = ACTIONS(3622), - [anon_sym_function] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_SLASH] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_TILDE] = ACTIONS(3622), - [anon_sym_void] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_PLUS_PLUS] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3622), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3622), - [sym_number] = ACTIONS(3622), - [sym_private_property_identifier] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [sym_super] = ACTIONS(3622), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [sym_null] = ACTIONS(3622), - [sym_undefined] = ACTIONS(3622), - [anon_sym_AT] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_readonly] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3622), - [anon_sym_declare] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_override] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_any] = ACTIONS(3622), - [anon_sym_number] = ACTIONS(3622), - [anon_sym_boolean] = ACTIONS(3622), - [anon_sym_string] = ACTIONS(3622), - [anon_sym_symbol] = ACTIONS(3622), - [anon_sym_object] = ACTIONS(3622), - [anon_sym_abstract] = ACTIONS(3622), - [anon_sym_interface] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1587] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1587), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1583] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1583), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(3622), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -193246,155 +192937,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1588] = { - [sym_comment] = STATE(1588), - [sym_identifier] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_with] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_await] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_debugger] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_yield] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LTtemplate_GT] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_async] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_void] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_number] = ACTIONS(3082), - [sym_private_property_identifier] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [sym_super] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_null] = ACTIONS(3082), - [sym_undefined] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_readonly] = ACTIONS(3082), - [anon_sym_get] = ACTIONS(3082), - [anon_sym_set] = ACTIONS(3082), - [anon_sym_declare] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_module] = ACTIONS(3082), - [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(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1589] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1589), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1584] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1584), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3626), + [anon_sym_RBRACK] = ACTIONS(3624), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -193404,76 +193016,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1590] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1590), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1585] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1585), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3628), + [anon_sym_RBRACK] = ACTIONS(3626), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -193483,313 +193095,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1591] = { - [sym_comment] = STATE(1591), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [sym_html_comment] = ACTIONS(5), - }, - [1592] = { - [sym_comment] = STATE(1592), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_var] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_debugger] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_abstract] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [sym_html_comment] = ACTIONS(5), - }, - [1593] = { - [sym_comment] = STATE(1593), - [sym_identifier] = ACTIONS(3632), - [anon_sym_export] = ACTIONS(3632), - [anon_sym_type] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym_import] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_if] = ACTIONS(3632), - [anon_sym_switch] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_do] = ACTIONS(3632), - [anon_sym_try] = ACTIONS(3632), - [anon_sym_break] = ACTIONS(3632), - [anon_sym_continue] = ACTIONS(3632), - [anon_sym_debugger] = ACTIONS(3632), - [anon_sym_return] = ACTIONS(3632), - [anon_sym_throw] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3632), - [anon_sym_LTtemplate_GT] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_void] = ACTIONS(3632), - [anon_sym_delete] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3632), - [sym_number] = ACTIONS(3632), - [sym_private_property_identifier] = ACTIONS(3632), - [sym_this] = ACTIONS(3632), - [sym_super] = ACTIONS(3632), - [sym_true] = ACTIONS(3632), - [sym_false] = ACTIONS(3632), - [sym_null] = ACTIONS(3632), - [sym_undefined] = ACTIONS(3632), - [anon_sym_AT] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3632), - [anon_sym_declare] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_module] = ACTIONS(3632), - [anon_sym_any] = ACTIONS(3632), - [anon_sym_number] = ACTIONS(3632), - [anon_sym_boolean] = ACTIONS(3632), - [anon_sym_string] = ACTIONS(3632), - [anon_sym_symbol] = ACTIONS(3632), - [anon_sym_object] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1594] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1594), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1586] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1586), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3634), + [anon_sym_RBRACK] = ACTIONS(3628), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -193799,155 +193174,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1595] = { - [sym_comment] = STATE(1595), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [1587] = { + [sym_comment] = STATE(1587), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, - [1596] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1596), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1588] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1588), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3630), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -193957,155 +193332,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1597] = { - [sym_comment] = STATE(1597), - [sym_identifier] = ACTIONS(3116), - [anon_sym_export] = ACTIONS(3116), - [anon_sym_type] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3116), - [anon_sym_import] = ACTIONS(3116), - [anon_sym_with] = ACTIONS(3116), - [anon_sym_var] = ACTIONS(3116), - [anon_sym_let] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_await] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_debugger] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_yield] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LTtemplate_GT] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [anon_sym_SQUOTE] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_async] = ACTIONS(3116), - [anon_sym_function] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3116), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_void] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_number] = ACTIONS(3116), - [sym_private_property_identifier] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - [sym_super] = ACTIONS(3116), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [sym_null] = ACTIONS(3116), - [sym_undefined] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_readonly] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3116), - [anon_sym_set] = ACTIONS(3116), - [anon_sym_declare] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_override] = ACTIONS(3116), - [anon_sym_module] = ACTIONS(3116), - [anon_sym_any] = ACTIONS(3116), - [anon_sym_number] = ACTIONS(3116), - [anon_sym_boolean] = ACTIONS(3116), - [anon_sym_string] = ACTIONS(3116), - [anon_sym_symbol] = ACTIONS(3116), - [anon_sym_object] = ACTIONS(3116), - [anon_sym_abstract] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), + [1589] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1589), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1598] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1598), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1590] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1590), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3638), + [anon_sym_RBRACK] = ACTIONS(3634), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194115,76 +193490,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1599] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1599), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1591] = { + [sym_comment] = STATE(1591), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [sym_html_comment] = ACTIONS(5), + }, + [1592] = { + [sym_comment] = STATE(1592), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1593] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1593), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3638), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194194,464 +193727,938 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1594] = { + [sym_comment] = STATE(1594), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1595] = { + [sym_comment] = STATE(1595), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1596] = { + [sym_comment] = STATE(1596), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1597] = { + [sym_comment] = STATE(1597), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [sym_html_comment] = ACTIONS(5), + }, + [1598] = { + [sym_comment] = STATE(1598), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1599] = { + [sym_comment] = STATE(1599), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [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(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), [sym_html_comment] = ACTIONS(5), }, [1600] = { [sym_comment] = STATE(1600), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, [1601] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1601), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4150), - [sym__type_query_call_expression_in_type_annotation] = STATE(4507), - [sym_asserts] = STATE(6812), - [sym__type] = STATE(4140), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_predicate] = STATE(6834), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3680), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(3642), + [sym_formal_parameters] = STATE(7020), + [sym_rest_pattern] = STATE(6795), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6793), + [sym_optional_tuple_parameter] = STATE(6793), + [sym_optional_type] = STATE(6793), + [sym_rest_type] = STATE(6793), + [sym__tuple_type_member] = STATE(6337), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3644), + [sym_this] = ACTIONS(1908), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1602] = { - [sym_import] = STATE(5669), - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), + [sym_import] = STATE(6289), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1602), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type_query_member_expression_in_type_annotation] = STATE(4310), - [sym__type_query_call_expression_in_type_annotation] = STATE(4714), - [sym_asserts] = STATE(5184), - [sym__type] = STATE(4309), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_predicate] = STATE(5187), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4033), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4329), + [sym_asserts] = STATE(4755), + [sym__type] = STATE(4036), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_predicate] = STATE(4749), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3967), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(3680), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_asserts] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(3644), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_asserts] = ACTIONS(3646), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1603] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1603), - [sym_formal_parameters] = STATE(7012), - [sym_rest_pattern] = STATE(6668), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4796), - [sym_tuple_parameter] = STATE(6666), - [sym_optional_tuple_parameter] = STATE(6666), - [sym_optional_type] = STATE(6666), - [sym_rest_type] = STATE(6666), - [sym__tuple_type_member] = STATE(6690), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(3590), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4109), + [sym__type_query_call_expression_in_type_annotation] = STATE(4581), + [sym_asserts] = STATE(6913), + [sym__type] = STATE(4110), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_predicate] = STATE(6338), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3681), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(3648), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), + [sym_this] = ACTIONS(3650), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_asserts] = ACTIONS(3652), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1604] = { - [sym_import] = STATE(6247), - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_import] = STATE(5675), + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), [sym_comment] = STATE(1604), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4322), - [sym_asserts] = STATE(4711), - [sym__type] = STATE(4035), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_predicate] = STATE(4705), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3938), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type_query_member_expression_in_type_annotation] = STATE(4311), + [sym__type_query_call_expression_in_type_annotation] = STATE(4762), + [sym_asserts] = STATE(5050), + [sym__type] = STATE(4313), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_predicate] = STATE(5036), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4050), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(3698), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_asserts] = ACTIONS(3700), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_asserts] = ACTIONS(3694), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, [1605] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1605), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3702), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194661,73 +194668,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1606] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1606), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3704), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194737,73 +194744,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1607] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1607), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3706), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194813,73 +194820,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1608] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1608), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3708), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194889,73 +194896,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1609] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1609), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3710), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -194965,73 +194972,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1610] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1610), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3712), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195041,73 +195048,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1611] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1611), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3714), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195117,73 +195124,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1612] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1612), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3716), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195193,73 +195200,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1613] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1613), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3718), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195269,73 +195276,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1614] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1614), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3720), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195345,73 +195352,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1615] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1615), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3722), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195421,73 +195428,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1616] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1616), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3724), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195497,73 +195504,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1617] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1617), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3726), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195573,73 +195580,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1618] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1618), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3728), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195649,73 +195656,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1619] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1619), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3730), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195725,73 +195732,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1620] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1620), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3732), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195801,73 +195808,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1621] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1621), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3734), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195877,73 +195884,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1622] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1622), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3736), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -195953,73 +195960,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1623] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1623), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3738), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196029,73 +196036,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1624] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1624), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3740), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196105,73 +196112,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1625] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1625), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3742), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196181,73 +196188,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1626] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1626), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3744), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196257,73 +196264,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1627] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1627), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3746), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196333,73 +196340,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1628] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1628), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3748), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196409,73 +196416,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1629] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1629), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3750), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196485,73 +196492,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1630] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1630), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3752), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196561,73 +196568,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1631] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1631), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3754), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196637,73 +196644,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1632] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1632), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3756), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196713,73 +196720,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1633] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1633), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3758), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196789,73 +196796,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1634] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1634), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3760), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196865,73 +196872,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1635] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1635), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3762), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -196941,73 +196948,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1636] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1636), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3764), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197017,73 +197024,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1637] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1637), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3766), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197093,73 +197100,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1638] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1638), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3768), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197169,73 +197176,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1639] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1639), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3770), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197245,73 +197252,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1640] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1640), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3772), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197321,73 +197328,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1641] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1641), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3774), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197397,73 +197404,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1642] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1642), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3776), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197473,73 +197480,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1643] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1643), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3778), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197549,73 +197556,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1644] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1644), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3780), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197625,73 +197632,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1645] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1645), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3782), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197701,73 +197708,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1646] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1646), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(3784), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197777,72 +197784,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1647] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1647), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(5395), - [sym__type_query_call_expression_in_type_annotation] = STATE(6096), - [sym__type] = STATE(5389), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4622), + [sym__type_query_call_expression_in_type_annotation] = STATE(5620), + [sym__type] = STATE(4623), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -197852,147 +197859,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1648] = { - [sym_import] = STATE(6247), - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1648), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type_query_member_expression_in_type_annotation] = STATE(4039), - [sym__type_query_call_expression_in_type_annotation] = STATE(4322), - [sym__type] = STATE(4035), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1649] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1649), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4670), - [sym__type_query_call_expression_in_type_annotation] = STATE(5486), - [sym__type] = STATE(4671), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4109), + [sym__type_query_call_expression_in_type_annotation] = STATE(4581), + [sym__type] = STATE(4110), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198002,72 +197934,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1649] = { + [sym_import] = STATE(6289), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1649), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4329), + [sym__type] = STATE(4036), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1650] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1650), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4830), - [sym__type_query_call_expression_in_type_annotation] = STATE(5610), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4748), + [sym__type_query_call_expression_in_type_annotation] = STATE(5511), + [sym__type] = STATE(4752), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198077,72 +198084,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1651] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1651), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4754), - [sym__type_query_call_expression_in_type_annotation] = STATE(5487), - [sym__type] = STATE(4756), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4726), + [sym__type_query_call_expression_in_type_annotation] = STATE(5502), + [sym__type] = STATE(4727), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198152,72 +198159,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1652] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1652), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4621), - [sym__type_query_call_expression_in_type_annotation] = STATE(5624), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4689), + [sym__type_query_call_expression_in_type_annotation] = STATE(5461), + [sym__type] = STATE(4691), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198227,72 +198234,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1653] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1653), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4150), - [sym__type_query_call_expression_in_type_annotation] = STATE(4507), - [sym__type] = STATE(4140), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4756), + [sym__type_query_call_expression_in_type_annotation] = STATE(5534), + [sym__type] = STATE(4757), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198302,72 +198309,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1654] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1654), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4752), - [sym__type_query_call_expression_in_type_annotation] = STATE(5480), - [sym__type] = STATE(4750), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(5123), + [sym__type_query_call_expression_in_type_annotation] = STATE(6325), + [sym__type] = STATE(5132), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198377,72 +198384,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1655] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1655), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4707), - [sym__type_query_call_expression_in_type_annotation] = STATE(5438), - [sym__type] = STATE(4708), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4650), + [sym__type_query_call_expression_in_type_annotation] = STATE(5414), + [sym__type] = STATE(4651), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198452,72 +198459,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1656] = { - [sym_import] = STATE(6061), - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_import] = STATE(5883), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1656), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type_query_member_expression_in_type_annotation] = STATE(4738), - [sym__type_query_call_expression_in_type_annotation] = STATE(5468), - [sym__type] = STATE(4739), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type_query_member_expression_in_type_annotation] = STATE(4699), + [sym__type_query_call_expression_in_type_annotation] = STATE(5467), + [sym__type] = STATE(4698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -198527,276 +198534,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1657] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), [sym_comment] = STATE(1657), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym_asserts] = STATE(4208), - [sym__type] = STATE(4209), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_predicate] = STATE(4208), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4033), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym_asserts] = STATE(4229), + [sym__type] = STATE(4233), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_predicate] = STATE(4229), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4050), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(3680), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_asserts] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_asserts] = ACTIONS(3694), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, [1658] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), [sym_comment] = STATE(1658), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym_asserts] = STATE(3684), - [sym__type] = STATE(3685), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_predicate] = STATE(3684), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3680), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3644), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1659] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1659), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym_asserts] = STATE(3730), - [sym__type] = STATE(3731), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_predicate] = STATE(3730), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3680), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3644), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_asserts] = ACTIONS(3646), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1660] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1660), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym_asserts] = STATE(2277), - [sym__type] = STATE(2273), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_predicate] = STATE(2277), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2218), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym_asserts] = STATE(2290), + [sym__type] = STATE(2233), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_predicate] = STATE(2290), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2217), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(3786), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -198804,8 +198663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -198839,112 +198698,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1661] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1661), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym_asserts] = STATE(4105), - [sym__type] = STATE(4103), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_predicate] = STATE(4105), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4033), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [1659] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1659), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym_asserts] = STATE(3997), + [sym__type] = STATE(3987), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_predicate] = STATE(3997), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3967), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(3680), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_asserts] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(3644), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_asserts] = ACTIONS(3646), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1662] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1662), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym_asserts] = STATE(2351), - [sym__type] = STATE(2359), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_predicate] = STATE(2351), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2218), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1660] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1660), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym_asserts] = STATE(2768), + [sym__type] = STATE(2767), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_predicate] = STATE(2768), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2584), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(3858), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_asserts] = ACTIONS(3866), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1661] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1661), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym_asserts] = STATE(2372), + [sym__type] = STATE(2374), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_predicate] = STATE(2372), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2217), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(3786), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -198952,8 +198885,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -198987,38 +198920,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, + [1662] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1662), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym_asserts] = STATE(3764), + [sym__type] = STATE(3763), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_predicate] = STATE(3764), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3681), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(3650), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_asserts] = ACTIONS(3652), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, [1663] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1663), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym_asserts] = STATE(2722), - [sym__type] = STATE(2721), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_predicate] = STATE(2722), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2660), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym_asserts] = STATE(3786), + [sym__type] = STATE(3787), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_predicate] = STATE(3786), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3681), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(3650), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_asserts] = ACTIONS(3652), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1664] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1664), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym_asserts] = STATE(2806), + [sym__type] = STATE(2805), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_predicate] = STATE(2806), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2584), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), [sym_identifier] = ACTIONS(3830), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), @@ -199061,257 +199142,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1664] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1664), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym_asserts] = STATE(3976), - [sym__type] = STATE(3973), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_predicate] = STATE(3976), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3938), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(3698), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_asserts] = ACTIONS(3700), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, [1665] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1665), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym_asserts] = STATE(4010), - [sym__type] = STATE(4005), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_predicate] = STATE(4010), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3938), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym_asserts] = STATE(3970), + [sym__type] = STATE(3974), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_predicate] = STATE(3970), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3967), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(3698), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_asserts] = ACTIONS(3700), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(3644), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_asserts] = ACTIONS(3646), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1666] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), [sym_comment] = STATE(1666), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym_asserts] = STATE(2749), - [sym__type] = STATE(2750), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_predicate] = STATE(2749), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2660), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(3830), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym_asserts] = STATE(4203), + [sym__type] = STATE(4194), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_predicate] = STATE(4203), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4050), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(3858), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_asserts] = ACTIONS(3866), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_asserts] = ACTIONS(3694), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, [1667] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(5740), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4658), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1667), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4658), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4658), + [sym_property_signature] = STATE(4658), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4658), + [sym_index_signature] = STATE(4658), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), [sym_identifier] = ACTIONS(3874), [anon_sym_export] = ACTIONS(3876), [anon_sym_STAR] = ACTIONS(3878), @@ -199324,8 +199331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3886), [anon_sym_SEMI] = ACTIONS(3888), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), [anon_sym_async] = ACTIONS(3892), [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), @@ -199357,50 +199364,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1668] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1668), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3914), - [anon_sym_export] = ACTIONS(3916), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3874), + [anon_sym_export] = ACTIONS(3876), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3874), + [anon_sym_namespace] = ACTIONS(3874), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3918), - [anon_sym_let] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_let] = ACTIONS(3874), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3892), + [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199409,71 +199416,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_readonly] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(3928), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_declare] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3932), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_any] = ACTIONS(3914), - [anon_sym_number] = ACTIONS(3914), - [anon_sym_boolean] = ACTIONS(3914), - [anon_sym_string] = ACTIONS(3914), - [anon_sym_symbol] = ACTIONS(3914), - [anon_sym_object] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3900), + [anon_sym_readonly] = ACTIONS(3902), + [anon_sym_get] = ACTIONS(3904), + [anon_sym_set] = ACTIONS(3904), + [anon_sym_declare] = ACTIONS(3874), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_override] = ACTIONS(3908), + [anon_sym_module] = ACTIONS(3874), + [anon_sym_any] = ACTIONS(3874), + [anon_sym_number] = ACTIONS(3874), + [anon_sym_boolean] = ACTIONS(3874), + [anon_sym_string] = ACTIONS(3874), + [anon_sym_symbol] = ACTIONS(3874), + [anon_sym_object] = ACTIONS(3874), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1669] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1669), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3934), - [anon_sym_export] = ACTIONS(3936), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3874), + [anon_sym_export] = ACTIONS(3876), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_type] = ACTIONS(3874), + [anon_sym_namespace] = ACTIONS(3874), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_let] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_let] = ACTIONS(3874), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3940), - [anon_sym_new] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3892), + [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199482,71 +199489,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3944), - [anon_sym_readonly] = ACTIONS(3946), - [anon_sym_get] = ACTIONS(3948), - [anon_sym_set] = ACTIONS(3948), - [anon_sym_declare] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_module] = ACTIONS(3934), - [anon_sym_any] = ACTIONS(3934), - [anon_sym_number] = ACTIONS(3934), - [anon_sym_boolean] = ACTIONS(3934), - [anon_sym_string] = ACTIONS(3934), - [anon_sym_symbol] = ACTIONS(3934), - [anon_sym_object] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3900), + [anon_sym_readonly] = ACTIONS(3902), + [anon_sym_get] = ACTIONS(3904), + [anon_sym_set] = ACTIONS(3904), + [anon_sym_declare] = ACTIONS(3874), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_override] = ACTIONS(3908), + [anon_sym_module] = ACTIONS(3874), + [anon_sym_any] = ACTIONS(3874), + [anon_sym_number] = ACTIONS(3874), + [anon_sym_boolean] = ACTIONS(3874), + [anon_sym_string] = ACTIONS(3874), + [anon_sym_symbol] = ACTIONS(3874), + [anon_sym_object] = ACTIONS(3874), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1670] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1670), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3956), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3924), + [anon_sym_export] = ACTIONS(3926), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_type] = ACTIONS(3924), + [anon_sym_namespace] = ACTIONS(3924), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3958), - [anon_sym_let] = ACTIONS(3954), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_let] = ACTIONS(3924), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3960), - [anon_sym_new] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3928), + [anon_sym_new] = ACTIONS(3930), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199555,71 +199562,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3964), - [anon_sym_readonly] = ACTIONS(3966), - [anon_sym_get] = ACTIONS(3968), - [anon_sym_set] = ACTIONS(3968), - [anon_sym_declare] = ACTIONS(3954), - [anon_sym_public] = ACTIONS(3970), - [anon_sym_private] = ACTIONS(3970), - [anon_sym_protected] = ACTIONS(3970), - [anon_sym_override] = ACTIONS(3972), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_any] = ACTIONS(3954), - [anon_sym_number] = ACTIONS(3954), - [anon_sym_boolean] = ACTIONS(3954), - [anon_sym_string] = ACTIONS(3954), - [anon_sym_symbol] = ACTIONS(3954), - [anon_sym_object] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3932), + [anon_sym_readonly] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3936), + [anon_sym_set] = ACTIONS(3936), + [anon_sym_declare] = ACTIONS(3924), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3940), + [anon_sym_module] = ACTIONS(3924), + [anon_sym_any] = ACTIONS(3924), + [anon_sym_number] = ACTIONS(3924), + [anon_sym_boolean] = ACTIONS(3924), + [anon_sym_string] = ACTIONS(3924), + [anon_sym_symbol] = ACTIONS(3924), + [anon_sym_object] = ACTIONS(3924), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1671] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(5682), + [sym_string] = STATE(4004), [sym_comment] = STATE(1671), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3934), - [anon_sym_export] = ACTIONS(3936), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3942), + [anon_sym_export] = ACTIONS(3944), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_type] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3946), + [anon_sym_let] = ACTIONS(3942), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3940), - [anon_sym_new] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3948), + [anon_sym_new] = ACTIONS(3950), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199628,71 +199635,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3944), - [anon_sym_readonly] = ACTIONS(3946), - [anon_sym_get] = ACTIONS(3948), - [anon_sym_set] = ACTIONS(3948), - [anon_sym_declare] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_module] = ACTIONS(3934), - [anon_sym_any] = ACTIONS(3934), - [anon_sym_number] = ACTIONS(3934), - [anon_sym_boolean] = ACTIONS(3934), - [anon_sym_string] = ACTIONS(3934), - [anon_sym_symbol] = ACTIONS(3934), - [anon_sym_object] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3952), + [anon_sym_readonly] = ACTIONS(3954), + [anon_sym_get] = ACTIONS(3956), + [anon_sym_set] = ACTIONS(3956), + [anon_sym_declare] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3958), + [anon_sym_private] = ACTIONS(3958), + [anon_sym_protected] = ACTIONS(3958), + [anon_sym_override] = ACTIONS(3960), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_any] = ACTIONS(3942), + [anon_sym_number] = ACTIONS(3942), + [anon_sym_boolean] = ACTIONS(3942), + [anon_sym_string] = ACTIONS(3942), + [anon_sym_symbol] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1672] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1672), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3914), - [anon_sym_export] = ACTIONS(3916), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3964), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_let] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3966), + [anon_sym_new] = ACTIONS(3968), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199701,71 +199708,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_readonly] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(3928), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_declare] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3932), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_any] = ACTIONS(3914), - [anon_sym_number] = ACTIONS(3914), - [anon_sym_boolean] = ACTIONS(3914), - [anon_sym_string] = ACTIONS(3914), - [anon_sym_symbol] = ACTIONS(3914), - [anon_sym_object] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_readonly] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3974), + [anon_sym_set] = ACTIONS(3974), + [anon_sym_declare] = ACTIONS(3962), + [anon_sym_public] = ACTIONS(3976), + [anon_sym_private] = ACTIONS(3976), + [anon_sym_protected] = ACTIONS(3976), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_module] = ACTIONS(3962), + [anon_sym_any] = ACTIONS(3962), + [anon_sym_number] = ACTIONS(3962), + [anon_sym_boolean] = ACTIONS(3962), + [anon_sym_string] = ACTIONS(3962), + [anon_sym_symbol] = ACTIONS(3962), + [anon_sym_object] = ACTIONS(3962), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1673] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(5682), + [sym_string] = STATE(4004), [sym_comment] = STATE(1673), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3956), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(5682), + [sym_pair] = STATE(5682), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(5700), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3942), + [anon_sym_export] = ACTIONS(3944), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_type] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3954), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3942), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3960), - [anon_sym_new] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3948), + [anon_sym_new] = ACTIONS(3950), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199774,142 +199781,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3964), - [anon_sym_readonly] = ACTIONS(3966), - [anon_sym_get] = ACTIONS(3968), - [anon_sym_set] = ACTIONS(3968), - [anon_sym_declare] = ACTIONS(3954), - [anon_sym_public] = ACTIONS(3970), - [anon_sym_private] = ACTIONS(3970), - [anon_sym_protected] = ACTIONS(3970), - [anon_sym_override] = ACTIONS(3972), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_any] = ACTIONS(3954), - [anon_sym_number] = ACTIONS(3954), - [anon_sym_boolean] = ACTIONS(3954), - [anon_sym_string] = ACTIONS(3954), - [anon_sym_symbol] = ACTIONS(3954), - [anon_sym_object] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3952), + [anon_sym_readonly] = ACTIONS(3954), + [anon_sym_get] = ACTIONS(3956), + [anon_sym_set] = ACTIONS(3956), + [anon_sym_declare] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3958), + [anon_sym_private] = ACTIONS(3958), + [anon_sym_protected] = ACTIONS(3958), + [anon_sym_override] = ACTIONS(3960), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_any] = ACTIONS(3942), + [anon_sym_number] = ACTIONS(3942), + [anon_sym_boolean] = ACTIONS(3942), + [anon_sym_string] = ACTIONS(3942), + [anon_sym_symbol] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1674] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1674), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3934), - [anon_sym_export] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3940), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3944), - [anon_sym_readonly] = ACTIONS(3946), - [anon_sym_get] = ACTIONS(3948), - [anon_sym_set] = ACTIONS(3948), - [anon_sym_declare] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_module] = ACTIONS(3934), - [anon_sym_any] = ACTIONS(3934), - [anon_sym_number] = ACTIONS(3934), - [anon_sym_boolean] = ACTIONS(3934), - [anon_sym_string] = ACTIONS(3934), - [anon_sym_symbol] = ACTIONS(3934), - [anon_sym_object] = ACTIONS(3934), - [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), - [sym_html_comment] = ACTIONS(5), - }, - [1675] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(5740), - [sym_string] = STATE(3980), - [sym_comment] = STATE(1675), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(5740), - [sym_pair] = STATE(5740), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(5792), - [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), [sym_identifier] = ACTIONS(3874), [anon_sym_export] = ACTIONS(3876), [anon_sym_STAR] = ACTIONS(3878), [anon_sym_type] = ACTIONS(3874), [anon_sym_namespace] = ACTIONS(3874), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3982), [anon_sym_let] = ACTIONS(3874), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), [anon_sym_async] = ACTIONS(3892), [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), @@ -199937,54 +199871,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3874), [anon_sym_object] = ACTIONS(3874), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), + [sym_html_comment] = ACTIONS(5), + }, + [1675] = { + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), + [sym_comment] = STATE(1675), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3924), + [anon_sym_export] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3924), + [anon_sym_namespace] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3984), + [anon_sym_let] = ACTIONS(3924), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3928), + [anon_sym_new] = ACTIONS(3930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(1902), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(3932), + [anon_sym_readonly] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3936), + [anon_sym_set] = ACTIONS(3936), + [anon_sym_declare] = ACTIONS(3924), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3940), + [anon_sym_module] = ACTIONS(3924), + [anon_sym_any] = ACTIONS(3924), + [anon_sym_number] = ACTIONS(3924), + [anon_sym_boolean] = ACTIONS(3924), + [anon_sym_string] = ACTIONS(3924), + [anon_sym_symbol] = ACTIONS(3924), + [anon_sym_object] = ACTIONS(3924), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1676] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1676), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3982), - [anon_sym_export] = ACTIONS(3984), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3924), + [anon_sym_export] = ACTIONS(3926), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3982), - [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3924), + [anon_sym_namespace] = ACTIONS(3924), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_COMMA] = ACTIONS(3914), [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3982), + [anon_sym_let] = ACTIONS(3924), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3928), + [anon_sym_new] = ACTIONS(3930), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -199993,71 +200000,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_readonly] = ACTIONS(3994), - [anon_sym_get] = ACTIONS(3996), - [anon_sym_set] = ACTIONS(3996), - [anon_sym_declare] = ACTIONS(3982), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_override] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(3982), - [anon_sym_any] = ACTIONS(3982), - [anon_sym_number] = ACTIONS(3982), - [anon_sym_boolean] = ACTIONS(3982), - [anon_sym_string] = ACTIONS(3982), - [anon_sym_symbol] = ACTIONS(3982), - [anon_sym_object] = ACTIONS(3982), + [anon_sym_static] = ACTIONS(3932), + [anon_sym_readonly] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3936), + [anon_sym_set] = ACTIONS(3936), + [anon_sym_declare] = ACTIONS(3924), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3940), + [anon_sym_module] = ACTIONS(3924), + [anon_sym_any] = ACTIONS(3924), + [anon_sym_number] = ACTIONS(3924), + [anon_sym_boolean] = ACTIONS(3924), + [anon_sym_string] = ACTIONS(3924), + [anon_sym_symbol] = ACTIONS(3924), + [anon_sym_object] = ACTIONS(3924), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1677] = { - [sym_export_statement] = STATE(4797), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1677), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4797), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4797), - [sym_property_signature] = STATE(4797), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4797), - [sym_index_signature] = STATE(4797), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3914), - [anon_sym_export] = ACTIONS(3916), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3990), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_let] = ACTIONS(3988), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3996), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -200066,71 +200073,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_readonly] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(3928), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_declare] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3932), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_any] = ACTIONS(3914), - [anon_sym_number] = ACTIONS(3914), - [anon_sym_boolean] = ACTIONS(3914), - [anon_sym_string] = ACTIONS(3914), - [anon_sym_symbol] = ACTIONS(3914), - [anon_sym_object] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_readonly] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(4002), + [anon_sym_set] = ACTIONS(4002), + [anon_sym_declare] = ACTIONS(3988), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4006), + [anon_sym_module] = ACTIONS(3988), + [anon_sym_any] = ACTIONS(3988), + [anon_sym_number] = ACTIONS(3988), + [anon_sym_boolean] = ACTIONS(3988), + [anon_sym_string] = ACTIONS(3988), + [anon_sym_symbol] = ACTIONS(3988), + [anon_sym_object] = ACTIONS(3988), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(3912), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1678] = { - [sym_export_statement] = STATE(4679), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(5739), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6145), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(5680), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6204), + [sym_string] = STATE(4004), [sym_comment] = STATE(1678), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(5739), - [sym_method_definition] = STATE(6145), - [sym_pair] = STATE(6145), - [sym_pair_pattern] = STATE(5739), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4679), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4679), - [sym_property_signature] = STATE(4679), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4679), - [sym_index_signature] = STATE(4679), - [aux_sym_export_statement_repeat1] = STATE(5563), - [aux_sym_object_repeat1] = STATE(6146), - [aux_sym_object_pattern_repeat1] = STATE(5743), - [sym_identifier] = ACTIONS(3914), - [anon_sym_export] = ACTIONS(3916), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(5680), + [sym_method_definition] = STATE(6204), + [sym_pair] = STATE(6204), + [sym_pair_pattern] = STATE(5680), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5635), + [aux_sym_object_repeat1] = STATE(6207), + [aux_sym_object_pattern_repeat1] = STATE(5685), + [sym_identifier] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3990), [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_let] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(3988), [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(3918), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3996), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(3896), [anon_sym_DASH] = ACTIONS(3896), @@ -200139,138 +200146,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3898), [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_readonly] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(3928), - [anon_sym_set] = ACTIONS(3928), - [anon_sym_declare] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3932), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_any] = ACTIONS(3914), - [anon_sym_number] = ACTIONS(3914), - [anon_sym_boolean] = ACTIONS(3914), - [anon_sym_string] = ACTIONS(3914), - [anon_sym_symbol] = ACTIONS(3914), - [anon_sym_object] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_readonly] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(4002), + [anon_sym_set] = ACTIONS(4002), + [anon_sym_declare] = ACTIONS(3988), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_override] = ACTIONS(4006), + [anon_sym_module] = ACTIONS(3988), + [anon_sym_any] = ACTIONS(3988), + [anon_sym_number] = ACTIONS(3988), + [anon_sym_boolean] = ACTIONS(3988), + [anon_sym_string] = ACTIONS(3988), + [anon_sym_symbol] = ACTIONS(3988), + [anon_sym_object] = ACTIONS(3988), [anon_sym_abstract] = ACTIONS(3910), - [anon_sym_PIPE_RBRACE] = ACTIONS(4008), + [anon_sym_PIPE_RBRACE] = ACTIONS(3920), [sym_html_comment] = ACTIONS(5), }, [1679] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_variable_declarator] = STATE(5643), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1679), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5448), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1680] = { - [sym_nested_identifier] = STATE(962), - [sym_string] = STATE(1161), - [sym_comment] = STATE(1680), - [sym__module] = STATE(1517), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4012), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200297,59 +200232,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [1681] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1681), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5451), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1680] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1680), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5562), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4018), + [anon_sym_RBRACK] = ACTIONS(4016), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -200359,62 +200294,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1682] = { - [sym_nested_identifier] = STATE(962), - [sym_string] = STATE(1161), - [sym_comment] = STATE(1682), - [sym__module] = STATE(1517), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4012), + [1681] = { + [sym_nested_identifier] = STATE(1071), + [sym_string] = STATE(1382), + [sym_comment] = STATE(1681), + [sym__module] = STATE(1569), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200441,59 +200376,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [1683] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1683), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5437), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1682] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1682), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5421), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4024), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -200503,62 +200438,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1684] = { - [sym_nested_identifier] = STATE(372), - [sym_string] = STATE(373), - [sym_comment] = STATE(1684), - [sym__module] = STATE(453), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4022), + [1683] = { + [sym_variable_declarator] = STATE(5643), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), + [sym_comment] = STATE(1683), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200585,52 +200520,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [1685] = { - [sym_variable_declarator] = STATE(5443), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), - [sym_comment] = STATE(1685), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4028), + [1684] = { + [sym_nested_identifier] = STATE(361), + [sym_string] = STATE(366), + [sym_comment] = STATE(1684), + [sym__module] = STATE(447), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200657,124 +200592,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [1686] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1686), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5412), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [1687] = { - [sym_nested_identifier] = STATE(372), - [sym_string] = STATE(373), - [sym_comment] = STATE(1687), - [sym__module] = STATE(453), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4022), + [1685] = { + [sym_nested_identifier] = STATE(1071), + [sym_string] = STATE(1382), + [sym_comment] = STATE(1685), + [sym__module] = STATE(1569), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200801,52 +200664,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, - [1688] = { - [sym_variable_declarator] = STATE(5443), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), - [sym_comment] = STATE(1688), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4028), + [1686] = { + [sym_variable_declarator] = STATE(5643), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), + [sym_comment] = STATE(1686), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200873,52 +200736,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), + [sym_html_comment] = ACTIONS(5), + }, + [1687] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1687), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5469), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1688] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1688), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5510), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1689] = { - [sym_nested_identifier] = STATE(962), - [sym_string] = STATE(1161), + [sym_nested_identifier] = STATE(361), + [sym_string] = STATE(366), [sym_comment] = STATE(1689), - [sym__module] = STATE(1517), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4012), + [sym__module] = STATE(447), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -200945,59 +200952,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1690] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1690), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4791), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4036), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5417), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [sym_jsx_identifier] = ACTIONS(4038), + [anon_sym_RBRACK] = ACTIONS(4036), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -201007,69 +201014,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1691] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1691), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5590), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4834), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4038), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4040), + [sym_jsx_identifier] = ACTIONS(4040), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -201079,62 +201086,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1692] = { - [sym_variable_declarator] = STATE(5443), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_nested_identifier] = STATE(1071), + [sym_string] = STATE(1382), [sym_comment] = STATE(1692), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4028), + [sym__module] = STATE(1569), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -201161,52 +201168,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1693] = { - [sym_nested_identifier] = STATE(372), - [sym_string] = STATE(373), + [sym_nested_identifier] = STATE(361), + [sym_string] = STATE(366), [sym_comment] = STATE(1693), - [sym__module] = STATE(453), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4022), + [sym__module] = STATE(447), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -201233,1036 +201240,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1694] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1694), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3683), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(3975), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1695] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), [sym_comment] = STATE(1695), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4293), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1696] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1696), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4099), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1697] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1697), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4097), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2706), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1698] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1698), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5580), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1699] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1699), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(6165), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3692), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1700] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1700), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(6165), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3699), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1701] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1701), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5383), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1702] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1702), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5314), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1703] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1703), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5227), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1704] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1704), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2338), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), - [sym_html_comment] = ACTIONS(5), - }, - [1705] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1705), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5353), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1706] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1706), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4267), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1707] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1707), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4271), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1708] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1708), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(6000), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(2296), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(3763), + [1696] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1696), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2326), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -202270,9 +201425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), [anon_sym_PLUS] = ACTIONS(3806), @@ -202282,12 +201437,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_readonly] = ACTIONS(3816), [anon_sym_QMARK] = ACTIONS(3818), [anon_sym_any] = ACTIONS(3808), [anon_sym_number] = ACTIONS(3808), @@ -202295,8 +201450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3808), [anon_sym_symbol] = ACTIONS(3808), [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), [anon_sym_keyof] = ACTIONS(3826), [anon_sym_unique] = ACTIONS(3828), [anon_sym_unknown] = ACTIONS(3808), @@ -202304,37 +201459,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1709] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1709), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2829), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1697] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1697), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2771), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -202353,7 +201508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -202375,37 +201530,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1710] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1710), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2720), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1698] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1698), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2770), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -202424,7 +201579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -202446,52 +201601,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1711] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1711), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3701), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1699] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1699), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(6255), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(4100), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1700] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1700), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2359), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1701] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1701), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4834), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1702] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1702), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3718), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1703] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1703), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5089), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -202501,53 +201940,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1704] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1704), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4018), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1705] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1705), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5348), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1706] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1706), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4021), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1707] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1707), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4001), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1708] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1708), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5716), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(4000), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1709] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1709), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5716), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3989), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1710] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1710), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4175), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1711] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1711), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4173), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, [1712] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1712), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2832), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5544), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1713] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1713), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5273), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1714] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1714), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(6027), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3699), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1715] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1715), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5408), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1716] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1716), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2855), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -202566,7 +202857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -202588,36 +202879,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1713] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1713), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2363), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1717] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1717), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2319), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -202625,8 +202916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -202637,7 +202928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -202659,41 +202950,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1714] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1714), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2880), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1718] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1718), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5259), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1719] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1719), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2864), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), + [anon_sym_const] = ACTIONS(4054), [anon_sym_LPAREN] = ACTIONS(3840), [anon_sym_LBRACK] = ACTIONS(3842), [anon_sym_DQUOTE] = ACTIONS(67), @@ -202708,7 +203070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -202730,52 +203092,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1715] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1715), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5397), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1720] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1720), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5233), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1721] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1721), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5217), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1722] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1722), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3698), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -202785,68 +203289,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1716] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1716), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3732), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1723] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1723), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4972), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1724] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1724), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(6027), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(5083), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(5537), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -202856,52 +203431,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1717] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1717), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2365), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1725] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1725), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2318), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -202909,8 +203484,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -202921,7 +203496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -202943,52 +203518,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1718] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1718), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3705), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1726] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1726), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5366), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1727] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1727), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5423), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -202998,210 +203644,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1719] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1719), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5334), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1720] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1720), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4069), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1721] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1721), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3734), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1728] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1728), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5472), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -203211,68 +203715,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1722] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1722), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3785), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1729] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1729), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4008), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1730] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1730), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5422), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -203282,52 +203857,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1723] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1723), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2251), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1731] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1731), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2247), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -203335,8 +203910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -203347,7 +203922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -203369,194 +203944,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1724] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1724), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2858), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), - [sym_html_comment] = ACTIONS(5), - }, - [1725] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1725), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2857), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), + [1732] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1732), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5379), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1726] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1726), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5453), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1733] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1733), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4869), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -203566,139 +204070,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1727] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1727), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2847), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), + [1734] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1734), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5402), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1728] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1728), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5592), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1735] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1735), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3715), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -203708,352 +204212,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1729] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1729), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3970), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1730] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1730), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2255), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), - [sym_html_comment] = ACTIONS(5), - }, - [1731] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1731), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4200), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1732] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1732), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2742), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1733] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1733), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3768), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1736] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1736), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3717), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204063,139 +204283,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1734] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1734), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5406), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1735] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1735), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3769), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1737] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1737), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3716), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204205,68 +204354,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1736] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1736), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3784), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1738] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1738), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5431), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204276,139 +204425,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1737] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1737), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(6311), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(2846), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1738] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1738), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5574), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1739] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1739), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3685), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204418,68 +204496,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1739] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1739), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5122), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1740] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1740), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5616), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204489,53 +204567,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1740] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1740), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2873), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1741] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1741), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5065), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1742] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1742), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2278), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1743] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1743), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4321), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1744] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1744), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4320), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1745] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1745), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4319), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1746] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1746), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2300), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1747] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1747), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2707), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -204554,7 +205058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -204576,123 +205080,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1741] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1741), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(6311), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(2844), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), + [1748] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1748), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(3999), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1742] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1742), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5530), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1749] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1749), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5535), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -204702,265 +205206,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1743] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1743), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2753), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), + [1750] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1750), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(6006), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(2378), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), + [anon_sym_void] = ACTIONS(3808), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1744] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1744), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5320), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1751] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1751), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(6006), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(2380), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1752] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1752), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2362), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1753] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1753), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2381), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1754] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1754), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2323), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4048), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1755] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1755), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3720), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1745] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1745), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3994), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1756] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1756), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5428), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1746] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1746), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2282), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1757] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1757), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2360), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -204968,8 +205756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -204980,7 +205768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -205002,107 +205790,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1747] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1747), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3995), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1748] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1748), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2337), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1758] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1758), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2363), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -205110,8 +205827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -205122,7 +205839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -205144,123 +205861,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1749] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1749), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4294), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [1759] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1759), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4151), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1750] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1750), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5417), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1760] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1760), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5477), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -205270,68 +205987,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1751] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1751), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3727), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1761] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1761), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5203), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -205341,68 +206058,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1752] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1752), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(6165), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(5388), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(5427), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1762] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1762), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5473), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -205412,210 +206129,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1753] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1753), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2849), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_typeof] = ACTIONS(3836), - [anon_sym_const] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), - [anon_sym_AMP] = ACTIONS(3846), - [anon_sym_PIPE] = ACTIONS(3848), - [anon_sym_PLUS] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3852), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(3856), - [sym_false] = ACTIONS(3856), - [sym_null] = ACTIONS(3856), - [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), - [anon_sym_QMARK] = ACTIONS(3862), - [anon_sym_any] = ACTIONS(3852), - [anon_sym_number] = ACTIONS(3852), - [anon_sym_boolean] = ACTIONS(3852), - [anon_sym_string] = ACTIONS(3852), - [anon_sym_symbol] = ACTIONS(3852), - [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), - [anon_sym_keyof] = ACTIONS(3870), - [anon_sym_unique] = ACTIONS(3872), - [anon_sym_unknown] = ACTIONS(3852), - [anon_sym_never] = ACTIONS(3852), - [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1754] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1754), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4014), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1763] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1763), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4078), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1755] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1755), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5528), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1764] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1764), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3762), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -205625,52 +206271,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1756] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1756), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2280), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1765] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1765), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4252), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1766] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1766), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2242), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -205678,8 +206395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -205690,7 +206407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -205712,37 +206429,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1757] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1757), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2841), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1767] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1767), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5583), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1768] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1768), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(6255), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(4097), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1769] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1769), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(6194), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(2879), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -205751,7 +206610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3842), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3844), + [anon_sym_new] = ACTIONS(1898), [anon_sym_AMP] = ACTIONS(3846), [anon_sym_PIPE] = ACTIONS(3848), [anon_sym_PLUS] = ACTIONS(3850), @@ -205761,12 +206620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), [sym_undefined] = ACTIONS(3856), - [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_readonly] = ACTIONS(1910), [anon_sym_QMARK] = ACTIONS(3862), [anon_sym_any] = ACTIONS(3852), [anon_sym_number] = ACTIONS(3852), @@ -205774,8 +206633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3852), [anon_sym_symbol] = ACTIONS(3852), [anon_sym_object] = ACTIONS(3852), - [anon_sym_abstract] = ACTIONS(3864), - [anon_sym_infer] = ACTIONS(3868), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), [anon_sym_keyof] = ACTIONS(3870), [anon_sym_unique] = ACTIONS(3872), [anon_sym_unknown] = ACTIONS(3852), @@ -205783,123 +206642,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1758] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1758), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5268), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1770] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1770), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5019), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1759] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1759), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5428), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1771] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1771), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4095), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1772] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1772), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5556), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -205909,636 +206839,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1760] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1760), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2236), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), - [sym_html_comment] = ACTIONS(5), - }, - [1761] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1761), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4013), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1762] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1762), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4982), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1763] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1763), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4305), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1764] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1764), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4304), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1765] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1765), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4303), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1766] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1766), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4244), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), + [1773] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1773), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(6194), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(2881), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1767] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1767), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4241), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [1774] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1774), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4958), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1768] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1768), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5426), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1775] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1775), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(4722), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -206548,68 +207052,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1769] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1769), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5474), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1776] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1776), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3771), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -206619,139 +207123,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1770] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1770), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3986), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1777] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1777), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2744), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1778] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1778), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4073), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1771] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1771), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5151), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1779] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1779), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(3969), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1780] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1780), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5118), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1781] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1781), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3772), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -206761,194 +207478,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1772] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1772), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4232), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), + [1782] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1782), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4160), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1783] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1783), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4006), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1784] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1784), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4007), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [1785] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1785), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2727), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1773] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1773), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5500), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [1786] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1786), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4083), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1774] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1774), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2270), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1787] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1787), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4254), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1788] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1788), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2352), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -206956,8 +207957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -206968,7 +207969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -206990,36 +207991,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1775] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1775), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2271), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), + [1789] = { + [sym_nested_identifier] = STATE(7052), + [sym_string] = STATE(2266), + [sym_comment] = STATE(1789), + [sym_formal_parameters] = STATE(7096), + [sym_nested_type_identifier] = STATE(2226), + [sym__type] = STATE(2276), + [sym_constructor_type] = STATE(2270), + [sym__primary_type] = STATE(2271), + [sym_template_literal_type] = STATE(2264), + [sym_infer_type] = STATE(2270), + [sym_conditional_type] = STATE(2264), + [sym_generic_type] = STATE(2264), + [sym_type_query] = STATE(2264), + [sym_index_type_query] = STATE(2264), + [sym_lookup_type] = STATE(2264), + [sym_literal_type] = STATE(2264), + [sym__number] = STATE(2273), + [sym_existential_type] = STATE(2264), + [sym_flow_maybe_type] = STATE(2264), + [sym_parenthesized_type] = STATE(2264), + [sym_predefined_type] = STATE(2264), + [sym_object_type] = STATE(2264), + [sym_type_parameters] = STATE(6952), + [sym_array_type] = STATE(2264), + [sym_tuple_type] = STATE(2264), + [sym_readonly_type] = STATE(2270), + [sym_union_type] = STATE(2264), + [sym_intersection_type] = STATE(2264), + [sym_function_type] = STATE(2270), [sym_identifier] = ACTIONS(4046), [anon_sym_STAR] = ACTIONS(3788), [anon_sym_LBRACE] = ACTIONS(3790), @@ -207027,8 +208028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3794), [anon_sym_LPAREN] = ACTIONS(3796), [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(3800), [anon_sym_AMP] = ACTIONS(3802), [anon_sym_PIPE] = ACTIONS(3804), @@ -207039,7 +208040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3810), [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), [sym_true] = ACTIONS(3812), [sym_false] = ACTIONS(3812), [sym_null] = ACTIONS(3812), @@ -207061,194 +208062,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1776] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1776), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3688), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [1790] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1790), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4141), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1791] = { + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), + [sym_comment] = STATE(1791), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4142), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1792] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1792), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2882), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1777] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1777), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4988), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1793] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1793), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4016), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1778] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1778), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3708), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1794] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1794), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5611), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -207258,139 +208401,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1779] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1779), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(6249), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(4231), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), + [1795] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1795), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4030), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1780] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5536), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1796] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1796), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3719), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -207400,636 +208543,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1781] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4162), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1782] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5710), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(4021), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1783] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(6249), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(4228), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1784] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3968), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1785] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1785), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5259), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1786] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1786), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5710), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(4019), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1787] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1787), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3967), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1788] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2336), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1789] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1789), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4791), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [1797] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1797), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3770), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -208039,124 +208614,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1790] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3974), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [1798] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1798), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(3982), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [1791] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2743), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1799] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1799), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2890), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -208175,7 +208750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -208197,108 +208772,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1792] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(6000), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(2281), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), - [sym_html_comment] = ACTIONS(5), - }, - [1793] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1793), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2734), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), + [1800] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1800), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2895), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -208317,7 +208821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -208339,392 +208843,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1794] = { - [sym_nested_identifier] = STATE(7161), - [sym_string] = STATE(4286), - [sym_comment] = STATE(1794), - [sym_formal_parameters] = STATE(7313), - [sym_nested_type_identifier] = STATE(3987), - [sym__type] = STATE(4157), - [sym_constructor_type] = STATE(4279), - [sym__primary_type] = STATE(4277), - [sym_template_literal_type] = STATE(4298), - [sym_infer_type] = STATE(4279), - [sym_conditional_type] = STATE(4298), - [sym_generic_type] = STATE(4298), - [sym_type_query] = STATE(4298), - [sym_index_type_query] = STATE(4298), - [sym_lookup_type] = STATE(4298), - [sym_literal_type] = STATE(4298), - [sym__number] = STATE(4253), - [sym_existential_type] = STATE(4298), - [sym_flow_maybe_type] = STATE(4298), - [sym_parenthesized_type] = STATE(4298), - [sym_predefined_type] = STATE(4298), - [sym_object_type] = STATE(4298), - [sym_type_parameters] = STATE(6810), - [sym_array_type] = STATE(4298), - [sym_tuple_type] = STATE(4298), - [sym_readonly_type] = STATE(4279), - [sym_union_type] = STATE(4298), - [sym_intersection_type] = STATE(4298), - [sym_function_type] = STATE(4279), + [1801] = { + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), + [sym_comment] = STATE(1801), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2745), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3678), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_infer] = ACTIONS(3690), - [anon_sym_keyof] = ACTIONS(3692), - [anon_sym_unique] = ACTIONS(3694), - [anon_sym_unknown] = ACTIONS(3674), - [anon_sym_never] = ACTIONS(3674), - [anon_sym_LBRACE_PIPE] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1795] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1795), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5244), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1796] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), - [sym_comment] = STATE(1796), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2261), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), - [sym_html_comment] = ACTIONS(5), - }, - [1797] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5233), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1798] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1798), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5065), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1799] = { - [sym_nested_identifier] = STATE(7170), - [sym_string] = STATE(2890), - [sym_comment] = STATE(1799), - [sym_formal_parameters] = STATE(7340), - [sym_nested_type_identifier] = STATE(2590), - [sym__type] = STATE(2718), - [sym_constructor_type] = STATE(2897), - [sym__primary_type] = STATE(2898), - [sym_template_literal_type] = STATE(2886), - [sym_infer_type] = STATE(2897), - [sym_conditional_type] = STATE(2886), - [sym_generic_type] = STATE(2886), - [sym_type_query] = STATE(2886), - [sym_index_type_query] = STATE(2886), - [sym_lookup_type] = STATE(2886), - [sym_literal_type] = STATE(2886), - [sym__number] = STATE(2899), - [sym_existential_type] = STATE(2886), - [sym_flow_maybe_type] = STATE(2886), - [sym_parenthesized_type] = STATE(2886), - [sym_predefined_type] = STATE(2886), - [sym_object_type] = STATE(2886), - [sym_type_parameters] = STATE(6726), - [sym_array_type] = STATE(2886), - [sym_tuple_type] = STATE(2886), - [sym_readonly_type] = STATE(2897), - [sym_union_type] = STATE(2886), - [sym_intersection_type] = STATE(2886), - [sym_function_type] = STATE(2897), - [sym_identifier] = ACTIONS(4052), [anon_sym_STAR] = ACTIONS(3832), [anon_sym_LBRACE] = ACTIONS(3834), [anon_sym_typeof] = ACTIONS(3836), @@ -208743,7 +208892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3854), [sym_number] = ACTIONS(3856), - [sym_this] = ACTIONS(4054), + [sym_this] = ACTIONS(4044), [sym_true] = ACTIONS(3856), [sym_false] = ACTIONS(3856), [sym_null] = ACTIONS(3856), @@ -208765,265 +208914,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1800] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(4000), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1801] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1801), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3982), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, [1802] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1802), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5496), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(3983), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1803] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1803), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5585), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(3708), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -209033,139 +209040,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1804] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5202), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1805] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7167), + [sym_string] = STATE(4302), [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5497), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7330), + [sym_nested_type_identifier] = STATE(3976), + [sym__type] = STATE(4205), + [sym_constructor_type] = STATE(4266), + [sym__primary_type] = STATE(4260), + [sym_template_literal_type] = STATE(4300), + [sym_infer_type] = STATE(4266), + [sym_conditional_type] = STATE(4300), + [sym_generic_type] = STATE(4300), + [sym_type_query] = STATE(4300), + [sym_index_type_query] = STATE(4300), + [sym_lookup_type] = STATE(4300), + [sym_literal_type] = STATE(4300), + [sym__number] = STATE(4255), + [sym_existential_type] = STATE(4300), + [sym_flow_maybe_type] = STATE(4300), + [sym_parenthesized_type] = STATE(4300), + [sym_predefined_type] = STATE(4300), + [sym_object_type] = STATE(4300), + [sym_type_parameters] = STATE(6849), + [sym_array_type] = STATE(4300), + [sym_tuple_type] = STATE(4300), + [sym_readonly_type] = STATE(4266), + [sym_union_type] = STATE(4300), + [sym_intersection_type] = STATE(4300), + [sym_function_type] = STATE(4266), + [sym_identifier] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3684), + [sym_this] = ACTIONS(4052), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3688), + [anon_sym_QMARK] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_infer] = ACTIONS(3696), + [anon_sym_keyof] = ACTIONS(3698), + [anon_sym_unique] = ACTIONS(3700), + [anon_sym_unknown] = ACTIONS(3680), + [anon_sym_never] = ACTIONS(3680), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1806] = { + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), + [sym_comment] = STATE(1806), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5602), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -209175,210 +209253,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1806] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), - [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5343), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1807] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3971), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), - [sym_html_comment] = ACTIONS(5), - }, - [1808] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), - [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5588), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5599), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -209388,281 +209324,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1808] = { + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), + [sym_comment] = STATE(1808), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5136), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1809] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(5589), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2730), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, [1810] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(3990), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2803), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, [1811] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7178), + [sym_string] = STATE(2892), [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2279), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), + [sym_formal_parameters] = STATE(7446), + [sym_nested_type_identifier] = STATE(2621), + [sym__type] = STATE(2804), + [sym_constructor_type] = STATE(2899), + [sym__primary_type] = STATE(2900), + [sym_template_literal_type] = STATE(2888), + [sym_infer_type] = STATE(2899), + [sym_conditional_type] = STATE(2888), + [sym_generic_type] = STATE(2888), + [sym_type_query] = STATE(2888), + [sym_index_type_query] = STATE(2888), + [sym_lookup_type] = STATE(2888), + [sym_literal_type] = STATE(2888), + [sym__number] = STATE(2901), + [sym_existential_type] = STATE(2888), + [sym_flow_maybe_type] = STATE(2888), + [sym_parenthesized_type] = STATE(2888), + [sym_predefined_type] = STATE(2888), + [sym_object_type] = STATE(2888), + [sym_type_parameters] = STATE(6732), + [sym_array_type] = STATE(2888), + [sym_tuple_type] = STATE(2888), + [sym_readonly_type] = STATE(2899), + [sym_union_type] = STATE(2888), + [sym_intersection_type] = STATE(2888), + [sym_function_type] = STATE(2899), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), + [anon_sym_void] = ACTIONS(3852), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, [1812] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(3783), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(6027), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3701), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -209672,139 +209679,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1813] = { - [sym_nested_identifier] = STATE(7046), - [sym_string] = STATE(2318), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7001), - [sym_nested_type_identifier] = STATE(2222), - [sym__type] = STATE(2254), - [sym_constructor_type] = STATE(2373), - [sym__primary_type] = STATE(2228), - [sym_template_literal_type] = STATE(2259), - [sym_infer_type] = STATE(2373), - [sym_conditional_type] = STATE(2259), - [sym_generic_type] = STATE(2259), - [sym_type_query] = STATE(2259), - [sym_index_type_query] = STATE(2259), - [sym_lookup_type] = STATE(2259), - [sym_literal_type] = STATE(2259), - [sym__number] = STATE(2380), - [sym_existential_type] = STATE(2259), - [sym_flow_maybe_type] = STATE(2259), - [sym_parenthesized_type] = STATE(2259), - [sym_predefined_type] = STATE(2259), - [sym_object_type] = STATE(2259), - [sym_type_parameters] = STATE(6884), - [sym_array_type] = STATE(2259), - [sym_tuple_type] = STATE(2259), - [sym_readonly_type] = STATE(2373), - [sym_union_type] = STATE(2259), - [sym_intersection_type] = STATE(2259), - [sym_function_type] = STATE(2373), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3788), - [anon_sym_LBRACE] = ACTIONS(3790), - [anon_sym_typeof] = ACTIONS(3792), - [anon_sym_const] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_LBRACK] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3800), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_PIPE] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5594), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3808), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3810), - [sym_number] = ACTIONS(3812), - [sym_this] = ACTIONS(4050), - [sym_true] = ACTIONS(3812), - [sym_false] = ACTIONS(3812), - [sym_null] = ACTIONS(3812), - [sym_undefined] = ACTIONS(3812), - [anon_sym_readonly] = ACTIONS(3816), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3820), - [anon_sym_infer] = ACTIONS(3824), - [anon_sym_keyof] = ACTIONS(3826), - [anon_sym_unique] = ACTIONS(3828), - [anon_sym_unknown] = ACTIONS(3808), - [anon_sym_never] = ACTIONS(3808), - [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1814] = { - [sym_nested_identifier] = STATE(7011), - [sym_string] = STATE(3758), + [sym_nested_identifier] = STATE(7019), + [sym_string] = STATE(3709), [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7012), - [sym_nested_type_identifier] = STATE(3662), - [sym__type] = STATE(4836), - [sym_constructor_type] = STATE(3763), - [sym__primary_type] = STATE(3681), - [sym_template_literal_type] = STATE(3753), - [sym_infer_type] = STATE(3763), - [sym_conditional_type] = STATE(3753), - [sym_generic_type] = STATE(3753), - [sym_type_query] = STATE(3753), - [sym_index_type_query] = STATE(3753), - [sym_lookup_type] = STATE(3753), - [sym_literal_type] = STATE(3753), - [sym__number] = STATE(3765), - [sym_existential_type] = STATE(3753), - [sym_flow_maybe_type] = STATE(3753), - [sym_parenthesized_type] = STATE(3753), - [sym_predefined_type] = STATE(3753), - [sym_object_type] = STATE(3753), - [sym_type_parameters] = STATE(6946), - [sym_array_type] = STATE(3753), - [sym_tuple_type] = STATE(3753), - [sym_readonly_type] = STATE(3763), - [sym_union_type] = STATE(3753), - [sym_intersection_type] = STATE(3753), - [sym_function_type] = STATE(3763), + [sym_formal_parameters] = STATE(7020), + [sym_nested_type_identifier] = STATE(3667), + [sym__type] = STATE(5593), + [sym_constructor_type] = STATE(3705), + [sym__primary_type] = STATE(3702), + [sym_template_literal_type] = STATE(3713), + [sym_infer_type] = STATE(3705), + [sym_conditional_type] = STATE(3713), + [sym_generic_type] = STATE(3713), + [sym_type_query] = STATE(3713), + [sym_index_type_query] = STATE(3713), + [sym_lookup_type] = STATE(3713), + [sym_literal_type] = STATE(3713), + [sym__number] = STATE(3697), + [sym_existential_type] = STATE(3713), + [sym_flow_maybe_type] = STATE(3713), + [sym_parenthesized_type] = STATE(3713), + [sym_predefined_type] = STATE(3713), + [sym_object_type] = STATE(3713), + [sym_type_parameters] = STATE(6989), + [sym_array_type] = STATE(3713), + [sym_tuple_type] = STATE(3713), + [sym_readonly_type] = STATE(3705), + [sym_union_type] = STATE(3713), + [sym_intersection_type] = STATE(3713), + [sym_function_type] = STATE(3705), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_DASH] = ACTIONS(1900), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(208), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), @@ -209814,169 +209821,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1906), [sym_undefined] = ACTIONS(1906), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [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(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(196), + [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(200), + [anon_sym_infer] = ACTIONS(202), + [anon_sym_keyof] = ACTIONS(204), + [anon_sym_unique] = ACTIONS(206), + [anon_sym_unknown] = ACTIONS(208), + [anon_sym_never] = ACTIONS(208), + [anon_sym_LBRACE_PIPE] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [1815] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1815), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5046), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(4955), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1816] = { - [sym_nested_identifier] = STATE(7025), - [sym_string] = STATE(3992), + [sym_nested_identifier] = STATE(7060), + [sym_string] = STATE(3984), [sym_comment] = STATE(1816), - [sym_formal_parameters] = STATE(7448), - [sym_nested_type_identifier] = STATE(3882), - [sym__type] = STATE(5099), - [sym_constructor_type] = STATE(3996), - [sym__primary_type] = STATE(3997), - [sym_template_literal_type] = STATE(3991), - [sym_infer_type] = STATE(3996), - [sym_conditional_type] = STATE(3991), - [sym_generic_type] = STATE(3991), - [sym_type_query] = STATE(3991), - [sym_index_type_query] = STATE(3991), - [sym_lookup_type] = STATE(3991), - [sym_literal_type] = STATE(3991), - [sym__number] = STATE(3999), - [sym_existential_type] = STATE(3991), - [sym_flow_maybe_type] = STATE(3991), - [sym_parenthesized_type] = STATE(3991), - [sym_predefined_type] = STATE(3991), - [sym_object_type] = STATE(3991), - [sym_type_parameters] = STATE(6928), - [sym_array_type] = STATE(3991), - [sym_tuple_type] = STATE(3991), - [sym_readonly_type] = STATE(3996), - [sym_union_type] = STATE(3991), - [sym_intersection_type] = STATE(3991), - [sym_function_type] = STATE(3996), - [sym_identifier] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), + [sym_formal_parameters] = STATE(6997), + [sym_nested_type_identifier] = STATE(3857), + [sym__type] = STATE(5160), + [sym_constructor_type] = STATE(3990), + [sym__primary_type] = STATE(3980), + [sym_template_literal_type] = STATE(3996), + [sym_infer_type] = STATE(3990), + [sym_conditional_type] = STATE(3996), + [sym_generic_type] = STATE(3996), + [sym_type_query] = STATE(3996), + [sym_index_type_query] = STATE(3996), + [sym_lookup_type] = STATE(3996), + [sym_literal_type] = STATE(3996), + [sym__number] = STATE(4019), + [sym_existential_type] = STATE(3996), + [sym_flow_maybe_type] = STATE(3996), + [sym_parenthesized_type] = STATE(3996), + [sym_predefined_type] = STATE(3996), + [sym_object_type] = STATE(3996), + [sym_type_parameters] = STATE(6934), + [sym_array_type] = STATE(3996), + [sym_tuple_type] = STATE(3996), + [sym_readonly_type] = STATE(3990), + [sym_union_type] = STATE(3996), + [sym_intersection_type] = STATE(3996), + [sym_function_type] = STATE(3990), + [sym_identifier] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1934), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_infer] = ACTIONS(1336), - [anon_sym_keyof] = ACTIONS(1338), - [anon_sym_unique] = ACTIONS(1340), - [anon_sym_unknown] = ACTIONS(1342), - [anon_sym_never] = ACTIONS(1342), - [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1940), + [sym_this] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1338), + [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_abstract] = ACTIONS(1342), + [anon_sym_infer] = ACTIONS(1344), + [anon_sym_keyof] = ACTIONS(1346), + [anon_sym_unique] = ACTIONS(1348), + [anon_sym_unknown] = ACTIONS(1350), + [anon_sym_never] = ACTIONS(1350), + [anon_sym_LBRACE_PIPE] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [1817] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1817), - [sym__module] = STATE(2460), + [sym__module] = STATE(2443), [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(115), @@ -209992,25 +209999,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210037,50 +210044,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1818] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1818), - [sym__module] = STATE(2460), + [sym__module] = STATE(2443), [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(1127), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(1127), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210107,50 +210114,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(1127), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1819] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1819), - [sym__module] = STATE(2460), + [sym__module] = STATE(2443), [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(214), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(217), + [anon_sym_RBRACE] = ACTIONS(217), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(217), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(217), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_RBRACK] = ACTIONS(217), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210177,107 +210184,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(217), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1820] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_export_statement] = STATE(4662), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(6875), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6729), + [sym_string] = STATE(4004), [sym_comment] = STATE(1820), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1165), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(6875), + [sym_method_definition] = STATE(6729), + [sym_pair] = STATE(6729), + [sym_pair_pattern] = STATE(6875), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4662), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4662), + [sym_property_signature] = STATE(4662), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4662), + [sym_index_signature] = STATE(4662), + [aux_sym_export_statement_repeat1] = STATE(5635), + [sym_identifier] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(4067), + [anon_sym_new] = ACTIONS(4069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4071), + [anon_sym_readonly] = ACTIONS(4073), + [anon_sym_get] = ACTIONS(4075), + [anon_sym_set] = ACTIONS(4075), + [anon_sym_declare] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_any] = ACTIONS(4060), + [anon_sym_number] = ACTIONS(4060), + [anon_sym_boolean] = ACTIONS(4060), + [anon_sym_string] = ACTIONS(4060), + [anon_sym_symbol] = ACTIONS(4060), + [anon_sym_object] = ACTIONS(4060), + [anon_sym_abstract] = ACTIONS(3910), [sym_html_comment] = ACTIONS(5), }, [1821] = { - [sym_export_statement] = STATE(4680), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(6820), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6775), - [sym_string] = STATE(3980), + [sym_export_statement] = STATE(4771), + [sym_object_pattern] = STATE(4245), + [sym_object_assignment_pattern] = STATE(6875), + [sym_array_pattern] = STATE(4245), + [sym__call_signature] = STATE(4901), + [sym__destructuring_pattern] = STATE(7181), + [sym_spread_element] = STATE(6729), + [sym_string] = STATE(4004), [sym_comment] = STATE(1821), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(6820), - [sym_method_definition] = STATE(6775), - [sym_pair] = STATE(6775), - [sym_pair_pattern] = STATE(6820), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4680), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4680), - [sym_property_signature] = STATE(4680), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4680), - [sym_index_signature] = STATE(4680), - [aux_sym_export_statement_repeat1] = STATE(5563), + [sym_decorator] = STATE(5608), + [sym_formal_parameters] = STATE(4061), + [sym_rest_pattern] = STATE(6875), + [sym_method_definition] = STATE(6729), + [sym_pair] = STATE(6729), + [sym_pair_pattern] = STATE(6875), + [sym__property_name] = STATE(3869), + [sym_computed_property_name] = STATE(4004), + [sym_method_signature] = STATE(4771), + [sym_accessibility_modifier] = STATE(3472), + [sym_override_modifier] = STATE(3535), + [sym_call_signature] = STATE(4771), + [sym_property_signature] = STATE(4771), + [sym_type_parameters] = STATE(6986), + [sym_construct_signature] = STATE(4771), + [sym_index_signature] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(5635), [sym_identifier] = ACTIONS(4060), [anon_sym_export] = ACTIONS(4062), [anon_sym_STAR] = ACTIONS(3878), @@ -210289,8 +210296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(4060), [anon_sym_LPAREN] = ACTIONS(3886), [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), [anon_sym_async] = ACTIONS(4067), [anon_sym_new] = ACTIONS(4069), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), @@ -210321,13 +210328,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1822] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1822), - [sym__module] = STATE(2460), + [sym__module] = STATE(2443), [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), @@ -210340,25 +210347,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210386,115 +210393,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1823] = { - [sym_export_statement] = STATE(4719), - [sym_object_pattern] = STATE(4288), - [sym_object_assignment_pattern] = STATE(6820), - [sym_array_pattern] = STATE(4288), - [sym__call_signature] = STATE(5095), - [sym__destructuring_pattern] = STATE(7130), - [sym_spread_element] = STATE(6775), - [sym_string] = STATE(3980), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1823), - [sym_decorator] = STATE(5410), - [sym_formal_parameters] = STATE(4055), - [sym_rest_pattern] = STATE(6820), - [sym_method_definition] = STATE(6775), - [sym_pair] = STATE(6775), - [sym_pair_pattern] = STATE(6820), - [sym__property_name] = STATE(3844), - [sym_computed_property_name] = STATE(3980), - [sym_method_signature] = STATE(4719), - [sym_accessibility_modifier] = STATE(3477), - [sym_override_modifier] = STATE(3526), - [sym_call_signature] = STATE(4719), - [sym_property_signature] = STATE(4719), - [sym_type_parameters] = STATE(6769), - [sym_construct_signature] = STATE(4719), - [sym_index_signature] = STATE(4719), - [aux_sym_export_statement_repeat1] = STATE(5563), - [sym_identifier] = ACTIONS(4060), - [anon_sym_export] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4064), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(4067), - [anon_sym_new] = ACTIONS(4069), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(1902), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3898), - [sym_private_property_identifier] = ACTIONS(3898), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4071), - [anon_sym_readonly] = ACTIONS(4073), - [anon_sym_get] = ACTIONS(4075), - [anon_sym_set] = ACTIONS(4075), - [anon_sym_declare] = ACTIONS(4060), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_protected] = ACTIONS(4077), - [anon_sym_override] = ACTIONS(4079), - [anon_sym_module] = ACTIONS(4060), - [anon_sym_any] = ACTIONS(4060), - [anon_sym_number] = ACTIONS(4060), - [anon_sym_boolean] = ACTIONS(4060), - [anon_sym_string] = ACTIONS(4060), - [anon_sym_symbol] = ACTIONS(4060), - [anon_sym_object] = ACTIONS(4060), - [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1824] = { - [sym_nested_identifier] = STATE(308), - [sym_string] = STATE(307), + [sym_nested_identifier] = STATE(340), + [sym_string] = STATE(342), [sym_comment] = STATE(1824), - [sym__module] = STATE(408), + [sym__module] = STATE(395), [sym_identifier] = ACTIONS(4081), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(1169), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(4083), [anon_sym_SQUOTE] = ACTIONS(4085), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210522,47 +210529,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1825] = { - [sym_nested_identifier] = STATE(5073), - [sym_string] = STATE(5616), + [sym_nested_identifier] = STATE(2220), + [sym_string] = STATE(2214), [sym_comment] = STATE(1825), - [sym__module] = STATE(6527), + [sym__module] = STATE(2461), [sym_identifier] = ACTIONS(4087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210590,47 +210597,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1826] = { - [sym_nested_identifier] = STATE(293), - [sym_string] = STATE(291), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1826), - [sym__module] = STATE(319), - [sym_identifier] = ACTIONS(4089), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4091), - [anon_sym_SQUOTE] = ACTIONS(4093), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210658,47 +210665,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1827] = { - [sym_variable_declarator] = STATE(5481), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1827), - [sym_identifier] = ACTIONS(4028), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210726,47 +210733,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1828] = { - [sym_nested_identifier] = STATE(372), - [sym_string] = STATE(373), + [sym_variable_declarator] = STATE(5538), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1828), - [sym__module] = STATE(453), - [sym_identifier] = ACTIONS(4022), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210794,47 +210801,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1829] = { - [sym_variable_declarator] = STATE(5572), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_nested_identifier] = STATE(2220), + [sym_string] = STATE(2214), [sym_comment] = STATE(1829), - [sym_identifier] = ACTIONS(4028), + [sym__module] = STATE(2461), + [sym_identifier] = ACTIONS(4087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210862,47 +210869,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1830] = { - [sym_nested_identifier] = STATE(891), - [sym_string] = STATE(912), + [sym_nested_identifier] = STATE(921), + [sym_string] = STATE(1139), [sym_comment] = STATE(1830), - [sym__module] = STATE(1083), - [sym_identifier] = ACTIONS(4095), + [sym__module] = STATE(1358), + [sym_identifier] = ACTIONS(4089), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_COLON] = ACTIONS(1169), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4097), - [anon_sym_SQUOTE] = ACTIONS(4099), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4091), + [anon_sym_SQUOTE] = ACTIONS(4093), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210930,47 +210937,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1831] = { - [sym_variable_declarator] = STATE(5443), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_nested_identifier] = STATE(2220), + [sym_string] = STATE(2214), [sym_comment] = STATE(1831), - [sym_identifier] = ACTIONS(4028), + [sym__module] = STATE(2461), + [sym_identifier] = ACTIONS(4087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1189), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -210998,18 +211005,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1832] = { - [sym_nested_identifier] = STATE(930), - [sym_string] = STATE(1068), + [sym_nested_identifier] = STATE(929), + [sym_string] = STATE(1085), [sym_comment] = STATE(1832), - [sym__module] = STATE(1331), - [sym_identifier] = ACTIONS(4101), + [sym__module] = STATE(1262), + [sym_identifier] = ACTIONS(4095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), @@ -211020,25 +211027,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4103), - [anon_sym_SQUOTE] = ACTIONS(4105), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211066,47 +211073,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1833] = { - [sym_nested_identifier] = STATE(2217), - [sym_string] = STATE(2221), + [sym_nested_identifier] = STATE(361), + [sym_string] = STATE(366), [sym_comment] = STATE(1833), - [sym__module] = STATE(2459), - [sym_identifier] = ACTIONS(4107), + [sym__module] = STATE(447), + [sym_identifier] = ACTIONS(4026), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211134,47 +211141,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1834] = { - [sym_nested_identifier] = STATE(2217), - [sym_string] = STATE(2221), + [sym_variable_declarator] = STATE(5524), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1834), - [sym__module] = STATE(2459), - [sym_identifier] = ACTIONS(4107), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211202,47 +211209,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1835] = { - [sym_variable_declarator] = STATE(5575), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_variable_declarator] = STATE(5482), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4159), [sym_comment] = STATE(1835), - [sym_identifier] = ACTIONS(4028), + [sym_identifier] = ACTIONS(4101), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211270,47 +211277,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1836] = { - [sym_nested_identifier] = STATE(2217), - [sym_string] = STATE(2221), + [sym_nested_identifier] = STATE(2220), + [sym_string] = STATE(2214), [sym_comment] = STATE(1836), - [sym__module] = STATE(2459), - [sym_identifier] = ACTIONS(4107), + [sym__module] = STATE(2461), + [sym_identifier] = ACTIONS(4087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211338,47 +211345,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1837] = { - [sym_nested_identifier] = STATE(947), - [sym_string] = STATE(1041), + [sym_variable_declarator] = STATE(5643), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1837), - [sym__module] = STATE(1375), - [sym_identifier] = ACTIONS(4109), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4111), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211406,47 +211413,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1838] = { - [sym_variable_declarator] = STATE(5459), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4574), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1838), - [sym_identifier] = ACTIONS(4028), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1135), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211474,47 +211482,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1839] = { - [sym_nested_identifier] = STATE(297), - [sym_string] = STATE(298), + [sym_variable_declarator] = STATE(5577), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1839), - [sym__module] = STATE(384), - [sym_identifier] = ACTIONS(4115), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211542,47 +211549,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1840] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(309), + [sym_string] = STATE(308), [sym_comment] = STATE(1840), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), + [sym__module] = STATE(406), + [sym_identifier] = ACTIONS(4103), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(4105), + [anon_sym_SQUOTE] = ACTIONS(4107), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211610,48 +211617,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1841] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(293), + [sym_string] = STATE(292), [sym_comment] = STATE(1841), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), + [sym__module] = STATE(333), + [sym_identifier] = ACTIONS(4109), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211679,46 +211685,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1842] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_variable_declarator] = STATE(5487), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4555), [sym_comment] = STATE(1842), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), + [sym_identifier] = ACTIONS(4010), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(4014), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211746,47 +211753,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1843] = { - [sym_nested_identifier] = STATE(2217), - [sym_string] = STATE(2221), + [sym_nested_identifier] = STATE(901), + [sym_string] = STATE(919), [sym_comment] = STATE(1843), - [sym__module] = STATE(2459), - [sym_identifier] = ACTIONS(4107), + [sym__module] = STATE(1047), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211814,47 +211821,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1844] = { - [sym_variable_declarator] = STATE(5540), - [sym_object_pattern] = STATE(4389), - [sym_array_pattern] = STATE(4389), - [sym__destructuring_pattern] = STATE(4072), + [sym_nested_identifier] = STATE(1071), + [sym_string] = STATE(1382), [sym_comment] = STATE(1844), - [sym_identifier] = ACTIONS(4121), + [sym__module] = STATE(1569), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211882,47 +211889,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1845] = { - [sym_nested_identifier] = STATE(962), - [sym_string] = STATE(1161), + [sym_nested_identifier] = STATE(4947), + [sym_string] = STATE(5633), [sym_comment] = STATE(1845), - [sym__module] = STATE(1517), - [sym_identifier] = ACTIONS(4012), + [sym__module] = STATE(6895), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1167), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -211950,45 +211957,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1846] = { [sym_comment] = STATE(1846), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212015,48 +212022,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1847] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1847), - [sym__module] = STATE(2460), + [sym__module] = STATE(2443), [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_EQ] = ACTIONS(1212), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(217), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212084,45 +212092,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1848] = { + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1848), - [aux_sym_object_repeat1] = STATE(5868), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4123), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1121), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212136,7 +212144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -212149,48 +212157,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1849] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), [sym_comment] = STATE(1849), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), + [aux_sym_object_repeat1] = STATE(5720), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212204,7 +212210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -212217,48 +212223,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1850] = { - [sym_nested_identifier] = STATE(2346), - [sym_string] = STATE(2345), [sym_comment] = STATE(1850), - [sym__module] = STATE(2460), - [sym_identifier] = ACTIONS(4058), + [aux_sym_object_repeat1] = STATE(6315), + [aux_sym_object_pattern_repeat1] = STATE(5721), + [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1014), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1033), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212272,7 +212277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -212285,45 +212290,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(1041), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(212), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, [1851] = { + [sym_nested_identifier] = STATE(2285), + [sym_string] = STATE(2284), [sym_comment] = STATE(1851), - [aux_sym_object_repeat1] = STATE(6261), - [aux_sym_object_pattern_repeat1] = STATE(5869), - [sym_identifier] = ACTIONS(4123), + [sym__module] = STATE(2443), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1232), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -212337,7 +212345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -212350,100 +212358,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(212), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_DQUOTE, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - STATE(947), 1, - sym_nested_identifier, - STATE(1041), 1, - sym_string, - STATE(1375), 1, - sym__module, - STATE(1852), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 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(118), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93] = 5, + [0] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1853), 1, + STATE(1852), 1, sym_comment, ACTIONS(4125), 23, anon_sym_STAR, @@ -212508,19 +212436,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [168] = 5, + [75] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1854), 1, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4081), 1, + sym_identifier, + ACTIONS(4083), 1, + anon_sym_DQUOTE, + ACTIONS(4085), 1, + anon_sym_SQUOTE, + STATE(340), 1, + sym_nested_identifier, + STATE(342), 1, + sym_string, + STATE(395), 1, + sym__module, + STATE(1853), 1, sym_comment, - ACTIONS(4129), 23, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 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(118), 36, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -212535,24 +212503,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(4131), 38, - sym__ternary_qmark, - anon_sym_as, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [168] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4014), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(1854), 1, + sym_comment, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5538), 1, + sym_variable_declarator, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212568,43 +212558,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [243] = 14, + [261] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4095), 1, + ACTIONS(4026), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4028), 1, anon_sym_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(4030), 1, anon_sym_SQUOTE, - STATE(891), 1, + STATE(361), 1, sym_nested_identifier, - STATE(912), 1, + STATE(366), 1, sym_string, - STATE(1083), 1, + STATE(447), 1, sym__module, STATE(1855), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212657,32 +212673,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [336] = 15, + [354] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(960), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(2677), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2689), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(2693), 1, - anon_sym_LT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4129), 1, + sym_identifier, STATE(1856), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2691), 15, + STATE(4316), 1, + sym_nested_identifier, + STATE(4556), 1, + sym_string, + STATE(5251), 1, + sym__module, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212698,29 +212715,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(211), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, 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(118), 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, @@ -212734,17 +212739,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [431] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(1857), 1, sym_comment, - ACTIONS(4133), 23, + ACTIONS(4131), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212768,7 +212783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4135), 38, + ACTIONS(4133), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -212807,34 +212822,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [506] = 15, + [522] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1220), 1, - anon_sym_COLON, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4010), 1, sym_identifier, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, STATE(1858), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5445), 1, + sym_variable_declarator, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212850,14 +212865,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -212887,33 +212901,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [601] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [615] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1041), 1, + anon_sym_QMARK, + ACTIONS(2667), 1, + anon_sym_RBRACE, + ACTIONS(2680), 1, + anon_sym_COLON, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4137), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(4141), 1, + anon_sym_LPAREN, + ACTIONS(4144), 1, anon_sym_EQ_GT, - ACTIONS(4022), 1, - sym_identifier, - ACTIONS(4024), 1, - anon_sym_DQUOTE, - ACTIONS(4026), 1, - anon_sym_SQUOTE, - STATE(372), 1, - sym_nested_identifier, - STATE(373), 1, - sym_string, - STATE(453), 1, - sym__module, + ACTIONS(4148), 1, + anon_sym_LT, STATE(1859), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212929,17 +212942,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4139), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, 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(4135), 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, @@ -212953,49 +212978,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [694] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [710] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_COMMA, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(216), 1, - anon_sym_RBRACK, - ACTIONS(1215), 1, - anon_sym_EQ, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(4058), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(1860), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4151), 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(4153), 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, @@ -213011,70 +213041,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + 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, + [785] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(4161), 1, anon_sym_DOT, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4165), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4169), 1, + anon_sym_LT, + STATE(1861), 1, + sym_comment, + STATE(3867), 1, + sym_arguments, + STATE(4003), 1, + sym_type_arguments, + ACTIONS(4167), 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, + ACTIONS(4157), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4139), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [791] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - STATE(1861), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5459), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213090,95 +213113,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(118), 35, + ACTIONS(4135), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [884] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [882] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(1862), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5443), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 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(118), 35, + ACTIONS(4171), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -213193,45 +213159,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4173), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [977] = 14, + anon_sym_implements, + [957] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4012), 1, - sym_identifier, - ACTIONS(4014), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(4016), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - STATE(962), 1, - sym_nested_identifier, - STATE(1161), 1, - sym_string, - STATE(1517), 1, - sym__module, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(1221), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_EQ, + ACTIONS(1230), 1, + anon_sym_COLON, + ACTIONS(4058), 1, + sym_identifier, STATE(1863), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213253,8 +213251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213284,38 +213282,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1070] = 16, + [1052] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, + ACTIONS(4155), 1, anon_sym_EQ, - ACTIONS(4145), 1, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4177), 1, anon_sym_DOT, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4153), 1, + ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4181), 1, anon_sym_LT, STATE(1864), 1, sym_comment, - STATE(3666), 1, + STATE(3660), 1, sym_arguments, - STATE(3713), 1, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4143), 3, + ACTIONS(4157), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4147), 3, + ACTIONS(4167), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -213331,7 +213329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213347,7 +213345,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(4137), 17, + ACTIONS(4135), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213365,59 +213363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1167] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1149] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(1865), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5481), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 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(118), 35, + ACTIONS(4183), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -213432,65 +213390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1260] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4161), 1, - anon_sym_DOT, - ACTIONS(4163), 1, - anon_sym_QMARK_DOT, - ACTIONS(4165), 1, - anon_sym_LT, - STATE(1866), 1, - sym_comment, - STATE(3879), 1, - sym_arguments, - STATE(4025), 1, - sym_type_arguments, - ACTIONS(4147), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4143), 7, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(4185), 38, + 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_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4141), 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(4155), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213506,8 +213423,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(4137), 18, + 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, + [1224] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1866), 1, + sym_comment, + ACTIONS(4187), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -213516,43 +213451,86 @@ 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, - [1357] = 14, + anon_sym_QMARK, + ACTIONS(4189), 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, + [1299] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4028), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, STATE(1867), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5572), 1, + STATE(5487), 1, sym_variable_declarator, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213604,32 +213582,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1450] = 15, + [1392] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(4167), 1, + ACTIONS(124), 1, + anon_sym_RBRACK, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(217), 1, + anon_sym_COMMA, + ACTIONS(1212), 1, anon_sym_EQ, - ACTIONS(4169), 1, - anon_sym_LPAREN, - ACTIONS(4172), 1, + ACTIONS(1221), 1, anon_sym_EQ_GT, - ACTIONS(4174), 1, - anon_sym_LT, + ACTIONS(4058), 1, + sym_identifier, STATE(1868), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4155), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213645,29 +213627,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(4141), 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(4137), 20, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -213681,36 +213650,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [1545] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1489] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(1217), 1, + anon_sym_COLON, + ACTIONS(1221), 1, anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, STATE(1869), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213732,8 +213712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213763,33 +213743,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1638] = 14, + [1584] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4101), 1, - sym_identifier, ACTIONS(4103), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(4105), 1, + anon_sym_DQUOTE, + ACTIONS(4107), 1, anon_sym_SQUOTE, - STATE(930), 1, - sym_nested_identifier, - STATE(1068), 1, + STATE(308), 1, sym_string, - STATE(1331), 1, + STATE(309), 1, + sym_nested_identifier, + STATE(406), 1, sym__module, STATE(1870), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213842,33 +213822,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1731] = 14, + [1677] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1871), 1, + sym_comment, + ACTIONS(4191), 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(4193), 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, + [1752] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_SQUOTE, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, + ACTIONS(4089), 1, sym_identifier, - STATE(1871), 1, - sym_comment, - STATE(2217), 1, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(4093), 1, + anon_sym_SQUOTE, + STATE(921), 1, sym_nested_identifier, - STATE(2221), 1, + STATE(1139), 1, sym_string, - STATE(2459), 1, + STATE(1358), 1, sym__module, - ACTIONS(211), 2, + STATE(1872), 1, + sym_comment, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213921,32 +213971,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1824] = 14, + [1845] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1246), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1252), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4058), 1, + ACTIONS(4115), 1, sym_identifier, - STATE(1872), 1, - sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, + ACTIONS(4117), 1, + anon_sym_DQUOTE, + ACTIONS(4119), 1, + anon_sym_SQUOTE, + STATE(901), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(919), 1, + sym_string, + STATE(1047), 1, sym__module, - ACTIONS(159), 15, + STATE(1873), 1, + sym_comment, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213962,14 +214013,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(118), 37, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -214000,15 +214050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1917] = 15, + [1938] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(960), 1, + ACTIONS(1014), 1, anon_sym_EQ, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_QMARK, - ACTIONS(2667), 1, - anon_sym_RBRACE, ACTIONS(2677), 1, anon_sym_LPAREN, ACTIONS(2680), 1, @@ -214019,11 +214067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1873), 1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + STATE(1874), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -214041,7 +214091,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(211), 17, + ACTIONS(212), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -214080,103 +214130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2012] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1874), 1, - sym_comment, - ACTIONS(4177), 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(4179), 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, - [2087] = 14, + [2033] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4089), 1, + ACTIONS(4087), 1, sym_identifier, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - STATE(291), 1, + STATE(1875), 1, + sym_comment, + STATE(2214), 1, sym_string, - STATE(293), 1, + STATE(2220), 1, sym_nested_identifier, - STATE(319), 1, + STATE(2461), 1, sym__module, - STATE(1875), 1, - sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214229,51 +214209,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2180] = 5, + [2126] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1041), 1, + anon_sym_QMARK, + ACTIONS(2680), 1, + anon_sym_COLON, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1876), 1, - sym_comment, - ACTIONS(4181), 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(4183), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2710), 1, anon_sym_RBRACE, + ACTIONS(4137), 1, + anon_sym_EQ, + ACTIONS(4141), 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(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4148), 1, + anon_sym_LT, + STATE(1876), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214289,6 +214250,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(4139), 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, @@ -214298,17 +214268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2255] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1877), 1, - sym_comment, - ACTIONS(4185), 23, + ACTIONS(4135), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -214325,25 +214286,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_QMARK, - ACTIONS(4187), 38, - sym__ternary_qmark, - anon_sym_as, + [2221] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4014), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(1877), 1, + sym_comment, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5643), 1, + sym_variable_declarator, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214359,43 +214332,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [2330] = 14, + [2314] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(1920), 1, + ACTIONS(4018), 1, + sym_identifier, + ACTIONS(4020), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(4022), 1, anon_sym_SQUOTE, - ACTIONS(4189), 1, - sym_identifier, - STATE(1878), 1, - sym_comment, - STATE(4330), 1, + STATE(1071), 1, sym_nested_identifier, - STATE(4500), 1, + STATE(1382), 1, sym_string, - STATE(5038), 1, + STATE(1569), 1, sym__module, - ACTIONS(211), 2, + STATE(1878), 1, + sym_comment, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214448,103 +214447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2423] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1879), 1, - sym_comment, - ACTIONS(4191), 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(4193), 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, - [2498] = 14, + [2407] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4115), 1, + ACTIONS(4109), 1, sym_identifier, - ACTIONS(4117), 1, + ACTIONS(4111), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(4113), 1, anon_sym_SQUOTE, - STATE(297), 1, - sym_nested_identifier, - STATE(298), 1, + STATE(292), 1, sym_string, - STATE(384), 1, + STATE(293), 1, + sym_nested_identifier, + STATE(333), 1, sym__module, - STATE(1880), 1, + STATE(1879), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214597,12 +214526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2591] = 15, + [2500] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(960), 1, + ACTIONS(1014), 1, anon_sym_EQ, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_QMARK, ACTIONS(2677), 1, anon_sym_LPAREN, @@ -214616,11 +214545,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(2712), 1, anon_sym_RBRACE, - STATE(1881), 1, + STATE(1880), 1, sym_comment, - STATE(5868), 1, + STATE(5720), 1, aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -214638,7 +214567,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(211), 17, + ACTIONS(212), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -214677,34 +214606,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2686] = 14, + [2595] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4028), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - STATE(1882), 1, + STATE(1881), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5575), 1, + STATE(5577), 1, sym_variable_declarator, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214756,34 +214685,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2779] = 15, + [2688] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1274), 1, - anon_sym_COLON, - ACTIONS(4058), 1, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4095), 1, sym_identifier, - STATE(1883), 1, - sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + STATE(929), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(1085), 1, + sym_string, + STATE(1262), 1, sym__module, - ACTIONS(159), 15, + STATE(1882), 1, + sym_comment, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214805,8 +214733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -214836,113 +214764,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2874] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(987), 1, - anon_sym_QMARK, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4169), 1, - anon_sym_LPAREN, - ACTIONS(4172), 1, - anon_sym_EQ_GT, - ACTIONS(4174), 1, - anon_sym_LT, - STATE(1884), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4155), 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(4141), 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(4137), 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, - [2969] = 14, + [2781] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(1894), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(4087), 1, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(1121), 1, + anon_sym_EQ, + ACTIONS(1234), 1, + anon_sym_EQ_GT, + ACTIONS(4058), 1, sym_identifier, - STATE(1885), 1, + STATE(1883), 1, sym_comment, - STATE(5073), 1, - sym_nested_identifier, - STATE(5616), 1, + STATE(2284), 1, sym_string, - STATE(6527), 1, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, sym__module, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214958,13 +214805,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(118), 36, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -214995,34 +214843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3062] = 14, + [2874] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(1234), 1, anon_sym_EQ_GT, - ACTIONS(4028), 1, + ACTIONS(1254), 1, + anon_sym_EQ, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - STATE(1886), 1, + STATE(1884), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5416), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215038,13 +214884,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(118), 35, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -215074,32 +214922,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3155] = 14, + [2967] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1099), 1, + ACTIONS(1121), 1, anon_sym_EQ, - ACTIONS(1252), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, ACTIONS(4058), 1, sym_identifier, - STATE(1887), 1, + STATE(1885), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215115,14 +214964,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(118), 37, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -215153,33 +215001,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3248] = 14, + [3060] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4081), 1, - sym_identifier, - ACTIONS(4083), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(4085), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - STATE(307), 1, - sym_string, - STATE(308), 1, + ACTIONS(4121), 1, + sym_identifier, + STATE(1886), 1, + sym_comment, + STATE(4947), 1, sym_nested_identifier, - STATE(408), 1, + STATE(5633), 1, + sym_string, + STATE(6895), 1, sym__module, - STATE(1888), 1, - sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215232,32 +215080,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3341] = 15, + [3153] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(987), 1, + ACTIONS(1014), 1, + anon_sym_EQ, + ACTIONS(1041), 1, anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2712), 1, + ACTIONS(2667), 1, anon_sym_RBRACE, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4169), 1, + ACTIONS(2677), 1, anon_sym_LPAREN, - ACTIONS(4172), 1, + ACTIONS(2680), 1, + anon_sym_COLON, + ACTIONS(2689), 1, anon_sym_EQ_GT, - ACTIONS(4174), 1, + ACTIONS(2693), 1, anon_sym_LT, - STATE(1889), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1887), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4155), 15, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215273,7 +215121,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(4141), 17, + ACTIONS(212), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -215291,7 +215139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 20, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215312,51 +215160,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3436] = 15, + [3248] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1041), 1, + anon_sym_QMARK, + ACTIONS(2680), 1, + anon_sym_COLON, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4195), 1, + ACTIONS(2712), 1, + anon_sym_RBRACE, + ACTIONS(4137), 1, anon_sym_EQ, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4213), 1, + ACTIONS(4141), 1, + anon_sym_LPAREN, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4148), 1, anon_sym_LT, - STATE(1890), 1, + STATE(1888), 1, sym_comment, - STATE(4022), 1, - sym_type_arguments, - ACTIONS(4198), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4202), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4141), 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(4155), 15, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215372,7 +215201,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(4137), 18, + ACTIONS(4139), 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(4135), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215382,7 +215229,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, @@ -215391,36 +215240,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3530] = 16, + [3343] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1099), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(1206), 1, - anon_sym_of, - ACTIONS(4058), 1, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4010), 1, sym_identifier, - STATE(1891), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + STATE(1889), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5524), 1, + sym_variable_declarator, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215436,12 +215283,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(118), 34, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_in, + anon_sym_SEMI, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -215471,32 +215319,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3626] = 14, + [3436] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1272), 1, + ACTIONS(1280), 1, anon_sym_EQ, + ACTIONS(1286), 1, + anon_sym_EQ_GT, ACTIONS(4058), 1, sym_identifier, - STATE(1892), 1, + STATE(1890), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215518,8 +215366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -215549,53 +215397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3718] = 16, + [3528] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4172), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(1121), 1, anon_sym_EQ, - STATE(1893), 1, + ACTIONS(1221), 1, + anon_sym_EQ_GT, + ACTIONS(4058), 1, + sym_identifier, + STATE(1891), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 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(4155), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215611,58 +215438,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(4137), 17, + ACTIONS(118), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [3814] = 18, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3620] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4151), 1, + ACTIONS(4163), 1, anon_sym_EQ_GT, ACTIONS(4195), 1, anon_sym_EQ, - ACTIONS(4202), 1, - anon_sym_extends, ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4220), 1, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4213), 1, anon_sym_LT, - ACTIONS(4226), 1, - anon_sym_QMARK, - STATE(1894), 1, + STATE(1892), 1, sym_comment, - STATE(3786), 1, + STATE(4010), 1, sym_type_arguments, - STATE(6658), 1, - sym_type_annotation, ACTIONS(4198), 2, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 13, + ACTIONS(4202), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4139), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -215676,7 +215519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215692,7 +215535,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(4137), 18, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215711,42 +215554,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3914] = 16, + [3714] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4145), 1, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4177), 1, anon_sym_DOT, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4153), 1, + ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4181), 1, anon_sym_LT, - STATE(1895), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1893), 1, sym_comment, - STATE(3666), 1, + STATE(3660), 1, sym_arguments, - STATE(3713), 1, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4147), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4143), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4157), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4141), 13, + ACTIONS(4167), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -215756,7 +215600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215772,11 +215616,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(4137), 18, + ACTIONS(4135), 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, @@ -215791,32 +215634,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4010] = 14, + [3810] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1224), 1, + ACTIONS(1221), 1, anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1896), 1, + STATE(1894), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215869,34 +215712,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4102] = 15, + [3902] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4220), 1, + anon_sym_LPAREN, + ACTIONS(4222), 1, + anon_sym_DOT, + STATE(1895), 1, + sym_comment, + STATE(2001), 1, + sym_arguments, + STATE(6419), 1, + sym_type_arguments, + ACTIONS(4218), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_DQUOTE, - ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1105), 1, - anon_sym_COLON, - ACTIONS(4058), 1, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, sym_identifier, - STATE(1897), 1, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [3984] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + STATE(1896), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4157), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4167), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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, + anon_sym_satisfies, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215912,68 +215847,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4135), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [4196] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4080] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1280), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(1286), 1, - anon_sym_EQ_GT, - ACTIONS(4058), 1, - sym_identifier, - STATE(1898), 1, + STATE(1897), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215989,53 +215890,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(118), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [4288] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1899), 1, - sym_comment, - ACTIONS(3116), 22, + ACTIONS(4135), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216056,7 +215912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3118), 38, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216070,21 +215926,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, @@ -216095,33 +215936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4362] = 7, + [4158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(1900), 1, + STATE(1898), 1, sym_comment, - ACTIONS(4155), 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(4137), 21, + ACTIONS(3102), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216142,7 +215966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4141), 23, + ACTIONS(3104), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216156,43 +215980,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4440] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - STATE(1901), 1, - sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216208,33 +215995,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(4137), 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, - ACTIONS(4141), 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, @@ -216244,43 +216004,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4532] = 16, + anon_sym_implements, + [4232] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(4233), 1, - anon_sym_EQ_GT, - STATE(1902), 1, + ACTIONS(4238), 1, + anon_sym_QMARK, + STATE(1899), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4143), 3, + STATE(6525), 1, + sym_type_annotation, + ACTIONS(4198), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 14, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -216290,7 +216052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216306,10 +216068,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(4137), 17, + ACTIONS(4135), 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, @@ -216324,32 +216087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4628] = 14, + [4332] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1099), 1, + ACTIONS(1121), 1, anon_sym_EQ, ACTIONS(1286), 1, anon_sym_EQ_GT, ACTIONS(4058), 1, sym_identifier, - STATE(1903), 1, + STATE(1900), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216402,14 +216165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4720] = 5, + [4424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1904), 1, + STATE(1901), 1, sym_comment, - ACTIONS(3082), 22, + ACTIONS(3112), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216432,7 +216195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3084), 38, + ACTIONS(3114), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216471,52 +216234,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4794] = 16, + [4498] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4235), 1, - anon_sym_EQ, - ACTIONS(4237), 1, - anon_sym_EQ_GT, - STATE(1905), 1, - sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 13, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1121), 1, + anon_sym_EQ, + ACTIONS(1127), 1, 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(4155), 15, + ACTIONS(4058), 1, + sym_identifier, + STATE(1902), 1, + sym_comment, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216532,200 +216277,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(4137), 17, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [4889] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4241), 1, - anon_sym_class, - ACTIONS(4244), 1, - anon_sym_AT, - STATE(1906), 1, - sym_comment, - STATE(1935), 1, - aux_sym_export_statement_repeat1, - STATE(2014), 1, - sym_decorator, - ACTIONS(4239), 55, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_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, - [4968] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4249), 1, - anon_sym_LPAREN, - ACTIONS(4251), 1, - anon_sym_DOT, - STATE(1907), 1, - sym_comment, - STATE(1966), 1, - sym_arguments, - ACTIONS(4247), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5045] = 16, + anon_sym_satisfies, + [4592] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, + ACTIONS(4155), 1, anon_sym_EQ, - ACTIONS(4145), 1, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4177), 1, anon_sym_DOT, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4153), 1, + ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4181), 1, anon_sym_LT, - STATE(1908), 1, + STATE(1903), 1, sym_comment, - STATE(3666), 1, + STATE(3660), 1, sym_arguments, - STATE(3713), 1, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4147), 3, + ACTIONS(4167), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4143), 4, - anon_sym_COMMA, + ACTIONS(4157), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4141), 11, + ACTIONS(4139), 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, @@ -216735,7 +216358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216751,7 +216374,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(4137), 18, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216770,32 +216393,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5140] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4688] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1350), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4155), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1909), 1, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + STATE(1904), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216811,67 +216435,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4135), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [5231] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(1910), 1, - sym_comment, - ACTIONS(4253), 5, - anon_sym_COMMA, + ACTIONS(4139), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4141), 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, @@ -216882,73 +216471,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 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(4137), 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, - [5314] = 15, + [4780] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1099), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1121), 1, anon_sym_EQ, ACTIONS(1203), 1, anon_sym_in, ACTIONS(1206), 1, anon_sym_of, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4259), 1, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4261), 1, - anon_sym_LBRACK, - STATE(1911), 1, + STATE(1905), 1, sym_comment, - STATE(6431), 1, - sym__destructuring_pattern, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216964,11 +216516,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(118), 33, + ACTIONS(118), 34, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216998,12 +216551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5407] = 17, + [4876] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4151), 1, + ACTIONS(4163), 1, anon_sym_EQ_GT, ACTIONS(4195), 1, anon_sym_EQ, @@ -217013,23 +216566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4267), 1, + ACTIONS(4244), 1, anon_sym_QMARK, - STATE(1912), 1, + STATE(1906), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4264), 2, + ACTIONS(4241), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4141), 13, + ACTIONS(4139), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217043,7 +216596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217059,7 +216612,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(4137), 18, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217078,32 +216631,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5504] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4973] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1907), 1, + sym_comment, + ACTIONS(4187), 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(4189), 37, sym__ternary_qmark, - ACTIONS(1294), 1, + 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, + [5046] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1135), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1913), 1, + ACTIONS(2030), 1, + anon_sym_extends, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + STATE(1908), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4246), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4249), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217119,70 +216735,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(212), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5595] = 11, + [5131] = 17, ACTIONS(5), 1, sym_html_comment, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4272), 1, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(4254), 1, + anon_sym_EQ, + ACTIONS(4259), 1, + anon_sym_RPAREN, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(1914), 1, + STATE(1909), 1, sym_comment, - ACTIONS(4274), 2, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2030), 6, - sym__automatic_semicolon, + ACTIONS(4257), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(211), 14, + anon_sym_COLON, + ACTIONS(4139), 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, @@ -217193,7 +216818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217209,7 +216834,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(118), 19, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217225,36 +216850,45 @@ 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, - [5680] = 10, + [5228] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4195), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4264), 1, anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_QMARK, - STATE(1915), 1, + ACTIONS(4266), 1, + anon_sym_EQ_GT, + STATE(1910), 1, sym_comment, - ACTIONS(4264), 5, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4157), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4141), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4167), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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, @@ -217264,7 +216898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217280,48 +216914,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4137), 21, + ACTIONS(4135), 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, - [5763] = 10, + [5323] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1105), 1, - anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(1916), 1, + ACTIONS(4270), 1, + anon_sym_QMARK, + STATE(1911), 1, sym_comment, - ACTIONS(4277), 5, + ACTIONS(4268), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(211), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217337,7 +216967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217353,7 +216983,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(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217375,109 +217005,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5846] = 14, + [5406] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1917), 1, + ACTIONS(4274), 1, + anon_sym_class, + ACTIONS(4277), 1, + anon_sym_AT, + STATE(1912), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 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(118), 35, - anon_sym_STAR, - anon_sym_as, + STATE(1929), 1, + aux_sym_export_statement_repeat1, + STATE(2009), 1, + sym_decorator, + ACTIONS(4272), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, + anon_sym_await, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [5937] = 14, + sym_number, + sym_identifier, + sym_private_property_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, + [5485] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1352), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1354), 1, anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1918), 1, + STATE(1913), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217529,32 +217153,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6028] = 10, + [5576] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4272), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4163), 1, anon_sym_EQ_GT, - STATE(1919), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + STATE(1914), 1, sym_comment, - ACTIONS(4281), 5, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4167), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4157), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(211), 15, + anon_sym_extends, + ACTIONS(4139), 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, @@ -217564,7 +217197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217580,7 +217213,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(118), 21, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217590,44 +217223,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, - [6111] = 14, + [5671] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1099), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1292), 1, anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1920), 1, + STATE(1915), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217679,41 +217309,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6202] = 17, + [5762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, + STATE(1916), 1, + sym_comment, + ACTIONS(4183), 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(4185), 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, - ACTIONS(4220), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(4284), 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, + anon_sym_implements, + [5835] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_RPAREN, - STATE(1921), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + STATE(1917), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4210), 2, + ACTIONS(4249), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4287), 2, + ACTIONS(2030), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4141), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(212), 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, @@ -217724,7 +217415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217740,7 +217431,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(4137), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217756,29 +217447,30 @@ 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, - [6299] = 10, + [5920] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, + ACTIONS(1127), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, - anon_sym_EQ, - STATE(1922), 1, + STATE(1918), 1, sym_comment, - ACTIONS(4287), 5, + ACTIONS(4280), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4141), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217794,7 +217486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217810,7 +217502,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(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217832,32 +217524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6382] = 14, + [6003] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1358), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1121), 1, anon_sym_EQ, - ACTIONS(4058), 1, + ACTIONS(1203), 1, + anon_sym_in, + ACTIONS(1206), 1, + anon_sym_of, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4284), 1, sym_identifier, - STATE(1923), 1, + ACTIONS(4286), 1, + anon_sym_LBRACK, + STATE(1919), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + STATE(6625), 1, + sym__destructuring_pattern, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217873,13 +217568,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(118), 35, + ACTIONS(118), 33, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217909,33 +217602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6473] = 14, + [6096] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(219), 1, anon_sym_EQ_GT, - STATE(1924), 1, + ACTIONS(1296), 1, + anon_sym_EQ, + ACTIONS(4058), 1, + sym_identifier, + STATE(1920), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4155), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217951,97 +217643,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(4141), 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(4137), 17, + ACTIONS(118), 35, 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, - [6564] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4279), 1, - anon_sym_EQ_GT, - STATE(1925), 1, - sym_comment, - ACTIONS(4292), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(211), 15, - sym__ternary_qmark, anon_sym_as, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, anon_sym_LBRACK, + anon_sym_GT, 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(2691), 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(118), 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, @@ -218056,112 +217667,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6647] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4172), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - STATE(1926), 1, - sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4155), 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(4141), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(4137), 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, - [6738] = 14, + [6187] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1348), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1358), 1, anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1927), 1, + STATE(1921), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218213,42 +217756,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6829] = 16, + [6278] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4177), 1, anon_sym_DOT, - ACTIONS(4153), 1, + ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4181), 1, anon_sym_LT, - ACTIONS(4294), 1, + ACTIONS(4289), 1, anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4291), 1, anon_sym_EQ_GT, - STATE(1928), 1, + STATE(1922), 1, sym_comment, - STATE(3666), 1, + STATE(3660), 1, sym_arguments, - STATE(3713), 1, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4143), 3, + ACTIONS(4157), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4147), 3, + ACTIONS(4167), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 13, - sym__automatic_semicolon, + ACTIONS(4139), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -218258,7 +217801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218274,7 +217817,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(4137), 17, + ACTIONS(4135), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218292,52 +217835,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6924] = 16, + [6373] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(4300), 1, - anon_sym_EQ_GT, - STATE(1929), 1, + STATE(1923), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4143), 3, + ACTIONS(4204), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, + ACTIONS(4210), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 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(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218353,7 +217877,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(4137), 17, + ACTIONS(4139), 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, + anon_sym_satisfies, + ACTIONS(4135), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218371,64 +217912,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7019] = 5, + [6464] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(214), 1, + anon_sym_EQ, + ACTIONS(217), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1930), 1, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(1924), 1, sym_comment, - ACTIONS(4181), 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(4183), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4293), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(212), 15, + sym__ternary_qmark, + anon_sym_as, + 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, @@ -218438,27 +217947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [7092] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1165), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - STATE(1931), 1, - sym_comment, - ACTIONS(4269), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -218475,16 +217963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(118), 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, @@ -218494,51 +217985,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(211), 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, - [7177] = 14, + [6547] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1354), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1356), 1, anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1932), 1, + STATE(1925), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218590,19 +218062,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7268] = 5, + [6638] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1933), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(4058), 1, + sym_identifier, + STATE(1926), 1, sym_comment, - ACTIONS(4125), 22, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 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(118), 35, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218617,22 +218127,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4127), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6729] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(115), 1, + anon_sym_EQ, + ACTIONS(217), 1, + anon_sym_QMARK, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + STATE(1927), 1, + sym_comment, + ACTIONS(4295), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(212), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218648,42 +218190,54 @@ 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, - [7341] = 14, + ACTIONS(118), 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, + [6812] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, + ACTIONS(212), 1, sym__ternary_qmark, - ACTIONS(1356), 1, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1300), 1, anon_sym_EQ, ACTIONS(4058), 1, sym_identifier, - STATE(1934), 1, + STATE(1928), 1, sym_comment, - STATE(2345), 1, + STATE(2284), 1, sym_string, - STATE(2346), 1, + STATE(2285), 1, sym_nested_identifier, - STATE(2460), 1, + STATE(2443), 1, sym__module, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218735,19 +218289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7432] = 6, + [6903] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4244), 1, + ACTIONS(4277), 1, anon_sym_AT, - STATE(2014), 1, + STATE(2009), 1, sym_decorator, - STATE(1935), 2, + STATE(1929), 2, sym_comment, aux_sym_export_statement_repeat1, - ACTIONS(4239), 56, + ACTIONS(4272), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218804,32 +218358,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7507] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [6978] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4163), 1, anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1346), 1, + ACTIONS(4195), 1, anon_sym_EQ, - ACTIONS(4058), 1, - sym_identifier, - STATE(1936), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + STATE(1930), 1, sym_comment, - STATE(2345), 1, - sym_string, - STATE(2346), 1, - sym_nested_identifier, - STATE(2460), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(4241), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4139), 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(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218845,16 +218409,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(118), 35, + ACTIONS(4135), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218869,53 +218428,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7598] = 16, + [7061] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4302), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(4254), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(1937), 1, + STATE(1931), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4143), 3, + ACTIONS(4257), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -218925,7 +218466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218941,58 +218482,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4137), 17, + ACTIONS(4135), 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, - [7692] = 9, + [7144] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1121), 1, anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(1938), 1, + ACTIONS(4058), 1, + sym_identifier, + STATE(1932), 1, sym_comment, - ACTIONS(4253), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4141), 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(4155), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219008,11 +218545,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(4137), 21, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -219027,21 +218569,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [7772] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7235] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4272), 1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4226), 1, anon_sym_EQ_GT, - STATE(1939), 1, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + STATE(1933), 1, sym_comment, - ACTIONS(2691), 15, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219057,17 +218623,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(211), 20, + ACTIONS(4139), 16, + 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_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -219078,62 +218640,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 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, - [7850] = 9, + [7326] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(219), 1, + anon_sym_EQ_GT, + ACTIONS(1302), 1, anon_sym_EQ, - STATE(1940), 1, + ACTIONS(4058), 1, + sym_identifier, + STATE(1934), 1, sym_comment, - ACTIONS(4287), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4141), 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(4155), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219149,11 +218699,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(4137), 21, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -219168,28 +218723,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [7930] = 10, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7417] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(979), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(212), 1, + sym__ternary_qmark, + ACTIONS(219), 1, anon_sym_EQ_GT, - ACTIONS(1175), 1, + ACTIONS(1298), 1, anon_sym_EQ, - ACTIONS(1195), 1, - anon_sym_COLON, - ACTIONS(4123), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(1941), 1, + STATE(1935), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + STATE(2284), 1, + sym_string, + STATE(2285), 1, + sym_nested_identifier, + STATE(2443), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219205,14 +218776,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(118), 37, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -219242,35 +218811,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [8012] = 13, + anon_sym_satisfies, + [7508] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + STATE(1936), 1, + sym_comment, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4157), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4167), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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(4146), 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(4135), 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, + [7603] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1937), 1, + sym_comment, + ACTIONS(3148), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [7673] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - STATE(1942), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(4254), 1, + anon_sym_EQ, + STATE(1938), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4281), 2, + ACTIONS(4257), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(211), 14, + anon_sym_RBRACK, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -219282,7 +218990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219298,7 +219006,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(118), 19, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219308,7 +219016,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, @@ -219318,49 +219028,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8100] = 14, + [7753] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4294), 1, + ACTIONS(1167), 1, anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(2030), 1, + anon_sym_extends, + ACTIONS(2689), 1, anon_sym_EQ_GT, - STATE(1943), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1939), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4202), 2, + ACTIONS(4246), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, + anon_sym_LBRACK, + ACTIONS(4249), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 15, - sym__automatic_semicolon, - 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, - 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(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219376,7 +219064,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(4137), 17, + ACTIONS(212), 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(118), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219391,42 +219097,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, - [8190] = 16, + [7837] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(1944), 1, + ACTIONS(4270), 1, + anon_sym_QMARK, + STATE(1940), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4210), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4306), 2, + ACTIONS(4268), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4141), 13, + ACTIONS(4139), 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, @@ -219437,60 +219134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 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(4137), 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, - [8284] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(979), 1, - anon_sym_EQ_GT, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(1201), 1, - anon_sym_COLON, - ACTIONS(4310), 1, - sym_identifier, - STATE(1945), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219506,18 +219150,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(118), 37, + ACTIONS(4135), 21, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -219532,26 +219169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8366] = 4, + [7917] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1946), 1, + STATE(1941), 1, sym_comment, - ACTIONS(4312), 58, + ACTIONS(3146), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219561,11 +219189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_class, @@ -219573,7 +219202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -219610,43 +219238,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8436] = 8, + [7987] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4229), 1, + ACTIONS(4195), 1, anon_sym_EQ, - STATE(1947), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + STATE(1942), 1, sym_comment, - ACTIONS(4155), 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(4141), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4241), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(4139), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -219658,47 +219271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 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, - [8514] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(979), 1, - anon_sym_EQ_GT, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(1199), 1, - anon_sym_COLON, - ACTIONS(4314), 1, - sym_identifier, - STATE(1948), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219714,18 +219287,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(118), 37, + ACTIONS(4135), 21, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -219740,124 +219306,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8596] = 11, + [8067] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1185), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ_GT, - STATE(1949), 1, - sym_comment, - ACTIONS(4269), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 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(211), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4175), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4177), 1, anon_sym_DOT, + ACTIONS(4179), 1, 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(118), 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, - [8680] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4181), 1, anon_sym_LT, - ACTIONS(4235), 1, + ACTIONS(4302), 1, anon_sym_EQ, - ACTIONS(4237), 1, + ACTIONS(4304), 1, anon_sym_EQ_GT, - STATE(1950), 1, + STATE(1943), 1, sym_comment, - STATE(3786), 1, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4202), 2, + ACTIONS(4157), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4210), 3, + ACTIONS(4167), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 15, + ACTIONS(4139), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219867,7 +219353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219883,7 +219369,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(4137), 17, + ACTIONS(4135), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219901,25 +219387,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8770] = 10, + [8161] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(979), 1, + ACTIONS(1033), 1, anon_sym_EQ_GT, - ACTIONS(1175), 1, + ACTIONS(1167), 1, anon_sym_EQ, - ACTIONS(1177), 1, + ACTIONS(1201), 1, anon_sym_COLON, - ACTIONS(4318), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1951), 1, + STATE(1944), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219973,23 +219459,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8852] = 11, + [8243] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_EQ, ACTIONS(2030), 1, anon_sym_extends, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1952), 1, + ACTIONS(4308), 1, + anon_sym_EQ_GT, + STATE(1945), 1, sym_comment, - ACTIONS(4269), 2, + ACTIONS(4246), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4274), 3, + ACTIONS(4249), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220009,12 +219495,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(211), 17, + ACTIONS(212), 17, 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, @@ -220046,51 +219532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8936] = 16, + [8327] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, + ACTIONS(1033), 1, anon_sym_EQ_GT, - STATE(1953), 1, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(4310), 1, + sym_identifier, + STATE(1946), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 12, + ACTIONS(212), 2, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - 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(4155), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220106,77 +219566,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(4137), 17, + ACTIONS(118), 37, 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, - [9030] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - STATE(1954), 1, - sym_comment, - ACTIONS(4155), 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(4141), 20, - sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT, 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(4137), 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, @@ -220191,172 +219592,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [9108] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1955), 1, - sym_comment, - ACTIONS(3320), 58, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [9178] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1956), 1, - sym_comment, - ACTIONS(3296), 58, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [9248] = 14, + anon_sym_satisfies, + [8409] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4220), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4298), 1, + ACTIONS(4264), 1, anon_sym_EQ, - ACTIONS(4300), 1, + ACTIONS(4266), 1, anon_sym_EQ_GT, - STATE(1957), 1, + STATE(1947), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4204), 2, + ACTIONS(4202), 2, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_extends, ACTIONS(4210), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 15, + ACTIONS(4139), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -220367,8 +219646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220384,7 +219662,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(4137), 17, + ACTIONS(4135), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220402,40 +219680,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9338] = 16, + [8499] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(4149), 1, + ACTIONS(4177), 1, anon_sym_DOT, - ACTIONS(4153), 1, + ACTIONS(4179), 1, anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + ACTIONS(4181), 1, anon_sym_LT, - ACTIONS(4229), 1, + ACTIONS(4312), 1, anon_sym_EQ, - ACTIONS(4255), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - STATE(1958), 1, + STATE(1948), 1, sym_comment, - STATE(3666), 1, + STATE(3660), 1, sym_arguments, - STATE(3713), 1, + STATE(3731), 1, sym_type_arguments, - ACTIONS(4147), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4143), 4, + ACTIONS(4157), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4141), 11, + ACTIONS(4167), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220445,7 +219724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220461,11 +219740,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(4137), 18, + ACTIONS(4135), 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, @@ -220480,28 +219758,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9432] = 9, + [8593] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4195), 1, + ACTIONS(115), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(217), 1, anon_sym_QMARK, - STATE(1959), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + STATE(1949), 1, sym_comment, - ACTIONS(4264), 5, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2030), 2, anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4249), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4295), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4141), 15, + ACTIONS(212), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -220513,7 +219797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220529,7 +219813,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(4137), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220539,9 +219823,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, @@ -220551,46 +219833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9512] = 13, + [8681] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(124), 1, - anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4279), 1, + ACTIONS(4163), 1, anon_sym_EQ_GT, - STATE(1960), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + STATE(1950), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4292), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(211), 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(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220606,7 +219860,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(118), 19, + ACTIONS(4139), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220616,7 +219891,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, @@ -220626,37 +219903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9600] = 15, + [8759] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4229), 1, + ACTIONS(4298), 1, anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_COLON, - ACTIONS(4255), 1, + ACTIONS(4300), 1, anon_sym_EQ_GT, - STATE(1961), 1, + STATE(1951), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4210), 2, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4202), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4141), 13, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -220668,7 +219944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + anon_sym_implements, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220684,11 +219961,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(4137), 18, + ACTIONS(4135), 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, @@ -220703,44 +219979,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9692] = 8, + [8849] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1165), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4272), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + ACTIONS(4289), 1, + anon_sym_EQ, + ACTIONS(4291), 1, anon_sym_EQ_GT, - STATE(1962), 1, + STATE(1952), 1, sym_comment, - ACTIONS(2691), 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(211), 20, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 15, 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, @@ -220751,47 +220021,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4146), 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(4135), 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, - [9770] = 10, + [8939] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(979), 1, + ACTIONS(1033), 1, anon_sym_EQ_GT, - ACTIONS(1175), 1, + ACTIONS(1167), 1, anon_sym_EQ, - ACTIONS(1197), 1, + ACTIONS(1195), 1, anon_sym_COLON, - ACTIONS(4324), 1, + ACTIONS(4123), 1, sym_identifier, - STATE(1963), 1, + STATE(1953), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220845,20 +220127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9852] = 9, + [9021] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2806), 1, - anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4252), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(1964), 1, + STATE(1954), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220874,14 +220154,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(4141), 18, - sym__automatic_semicolon, + ACTIONS(212), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - 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, @@ -220893,7 +220175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220915,37 +220197,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9931] = 14, + [9099] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4235), 1, anon_sym_LT, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(4304), 1, - anon_sym_EQ_GT, - STATE(1965), 1, + ACTIONS(4268), 1, + anon_sym_COLON, + STATE(1955), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 14, + ACTIONS(4316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4139), 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, @@ -220956,7 +220240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220972,10 +220256,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(4137), 17, + ACTIONS(4135), 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, @@ -220990,100 +220275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10020] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1966), 1, - sym_comment, - ACTIONS(4326), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [10089] = 14, + [9193] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_extends, - ACTIONS(4220), 1, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(4223), 1, + ACTIONS(4235), 1, anon_sym_LT, - STATE(1967), 1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4268), 1, + anon_sym_COLON, + STATE(1956), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, - ACTIONS(4204), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 14, + ACTIONS(4202), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4139), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -221095,7 +220317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221111,7 +220333,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(4137), 18, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221130,20 +220352,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10178] = 9, + [9285] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2882), 1, - anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4163), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + STATE(1957), 1, + sym_comment, + ACTIONS(4146), 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(4139), 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(4135), 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, + [9363] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4228), 1, anon_sym_EQ, - STATE(1968), 1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + STATE(1958), 1, sym_comment, - ACTIONS(4155), 15, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4167), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4157), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4139), 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(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221159,26 +220481,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(4141), 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(4137), 21, + ACTIONS(4135), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221188,61 +220491,55 @@ 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, - [10257] = 6, + [9457] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(214), 1, + anon_sym_EQ, + ACTIONS(217), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4328), 1, - anon_sym_COMMA, - STATE(1969), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(1959), 1, sym_comment, - ACTIONS(4125), 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, + ACTIONS(2030), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4249), 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, - ACTIONS(4127), 34, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - 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, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221258,27 +220555,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, - [10330] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_COMMA, - STATE(1970), 1, - sym_comment, - ACTIONS(4181), 22, + ACTIONS(118), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221287,9 +220565,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, @@ -221299,49 +220575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4183), 34, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, - [10403] = 4, + [9545] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1971), 1, + STATE(1960), 1, sym_comment, - ACTIONS(3140), 57, + ACTIONS(4320), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221352,10 +220593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, + anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_class, @@ -221363,6 +220604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -221399,26 +220641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10472] = 11, + [9615] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1260), 1, + ACTIONS(1135), 1, anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4252), 1, anon_sym_EQ_GT, - STATE(1972), 1, + STATE(1961), 1, sym_comment, - ACTIONS(4269), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -221435,11 +220668,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(211), 16, + ACTIONS(212), 20, 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, @@ -221451,17 +220689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 18, + ACTIONS(118), 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, @@ -221471,18 +220711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10555] = 8, + [9693] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(1033), 1, anon_sym_EQ_GT, - STATE(1973), 1, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(1169), 1, + anon_sym_COLON, + ACTIONS(4322), 1, + sym_identifier, + STATE(1962), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221498,31 +220745,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(118), 21, + [9775] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1033), 1, + anon_sym_EQ_GT, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(1197), 1, + anon_sym_COLON, + ACTIONS(4324), 1, + sym_identifier, + STATE(1963), 1, + sym_comment, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 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(118), 37, anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -221537,21 +220843,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [10632] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9857] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1266), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(2934), 1, anon_sym_EQ_GT, - STATE(1974), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + STATE(1964), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4249), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221567,15 +220891,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(4141), 19, + ACTIONS(212), 16, 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, @@ -221587,19 +220908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 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, @@ -221609,33 +220927,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10709] = 12, + [9940] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4277), 1, - anon_sym_COLON, - ACTIONS(4279), 1, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(4304), 1, anon_sym_EQ_GT, - STATE(1975), 1, + STATE(1965), 1, sym_comment, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 3, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4202), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(211), 14, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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, @@ -221646,7 +220968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221662,11 +220984,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(118), 19, + ACTIONS(4135), 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, @@ -221678,22 +220999,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, - [10794] = 8, + [10029] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4172), 1, + ACTIONS(4144), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + ACTIONS(4228), 1, anon_sym_EQ, - STATE(1976), 1, + STATE(1966), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221709,7 +221029,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(4141), 19, + ACTIONS(4139), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -221729,7 +221049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221751,17 +221071,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10871] = 8, + [10106] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, + ACTIONS(1135), 1, anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1977), 1, + ACTIONS(4252), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, + anon_sym_COLON, + STATE(1967), 1, sym_comment, + ACTIONS(4326), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(212), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -221778,26 +221120,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(211), 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(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -221820,14 +221142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10948] = 4, + [10187] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1978), 1, + STATE(1968), 1, sym_comment, - ACTIONS(4247), 57, + ACTIONS(4218), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221885,56 +221207,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11017] = 9, + [10256] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2882), 1, - anon_sym_COLON, - STATE(1979), 1, + STATE(1969), 1, sym_comment, - ACTIONS(2691), 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(211), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4329), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10325] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1970), 1, + sym_comment, + ACTIONS(3102), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221955,14 +221302,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11096] = 4, + ACTIONS(3104), 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, + [10396] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1980), 1, + STATE(1971), 1, sym_comment, - ACTIONS(3144), 57, + ACTIONS(4331), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221973,7 +221356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -221984,6 +221366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -222020,50 +221403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11165] = 16, + [10465] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, + ACTIONS(4144), 1, anon_sym_EQ_GT, - STATE(1981), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1972), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4147), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 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(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222079,32 +221430,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(4137), 17, + ACTIONS(4139), 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(4135), 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, - [11258] = 5, + [10542] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1982), 1, + STATE(1973), 1, sym_comment, - ACTIONS(4177), 22, + ACTIONS(4125), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222127,7 +221502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4179), 35, + ACTIONS(4127), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222163,85 +221538,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11329] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [10613] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(1983), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1974), 1, sym_comment, - ACTIONS(3238), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, + ACTIONS(4333), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_PIPE_RBRACE, + ACTIONS(4183), 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_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4185), 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, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [11398] = 9, + anon_sym_satisfies, + [10686] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2768), 1, + ACTIONS(2844), 1, anon_sym_COLON, - STATE(1984), 1, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1975), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222257,7 +221634,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(211), 18, + ACTIONS(4139), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222276,7 +221653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222298,20 +221675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11477] = 9, + [10765] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2768), 1, - anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4308), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(1985), 1, + STATE(1976), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222327,12 +221702,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(4141), 18, + ACTIONS(212), 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, @@ -222346,7 +221722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222368,32 +221744,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11556] = 12, + [10842] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(213), 1, + ACTIONS(1167), 1, anon_sym_EQ, - ACTIONS(1972), 1, - anon_sym_QMARK, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - STATE(1986), 1, + ACTIONS(2844), 1, + anon_sym_COLON, + STATE(1977), 1, sym_comment, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(211), 14, + ACTIONS(2691), 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(212), 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, @@ -222405,6 +221792,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + ACTIONS(118), 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, + [10921] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4335), 1, + anon_sym_EQ_GT, + STATE(1978), 1, + sym_comment, + ACTIONS(4246), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4249), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222421,8 +221850,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(118), 19, + ACTIONS(212), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + 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, + anon_sym_implements, + ACTIONS(118), 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, + [11004] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1979), 1, + sym_comment, + ACTIONS(4337), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4187), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -222431,7 +221908,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, @@ -222441,19 +221920,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11641] = 9, + ACTIONS(4189), 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, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11077] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, + ACTIONS(1254), 1, anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2844), 1, - anon_sym_COLON, - STATE(1987), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + STATE(1980), 1, sym_comment, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4249), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222470,14 +221989,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(211), 18, - sym__automatic_semicolon, + ACTIONS(212), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -222489,19 +222006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 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, @@ -222511,14 +222025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11720] = 4, + [11160] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1988), 1, + STATE(1981), 1, sym_comment, - ACTIONS(3260), 57, + ACTIONS(3196), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222576,18 +222090,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11789] = 8, + [11229] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1982), 1, + sym_comment, + ACTIONS(3198), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11298] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1185), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + ACTIONS(4312), 1, + anon_sym_EQ, + ACTIONS(4314), 1, anon_sym_EQ_GT, - STATE(1989), 1, + STATE(1983), 1, sym_comment, - ACTIONS(2691), 15, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222603,28 +222212,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(211), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4135), 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, + [11387] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4337), 1, 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(118), 21, + STATE(1984), 1, + sym_comment, + ACTIONS(4187), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -222645,20 +222262,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11866] = 9, + ACTIONS(4189), 34, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, + [11460] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2844), 1, - anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4144), 1, anon_sym_EQ_GT, ACTIONS(4216), 1, anon_sym_EQ, - STATE(1990), 1, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, + anon_sym_of, + STATE(1985), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222674,7 +222328,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(4141), 18, + ACTIONS(4139), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222693,10 +222347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -222715,45 +222368,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11945] = 10, + [11541] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1175), 1, + ACTIONS(1121), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_of, - STATE(1991), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4280), 1, + anon_sym_COLON, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(1986), 1, sym_comment, - ACTIONS(2691), 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(211), 18, - sym__automatic_semicolon, + ACTIONS(4249), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2030), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(212), 14, 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, @@ -222765,40 +222405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 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, - [12026] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2806), 1, - anon_sym_COLON, - STATE(1992), 1, - sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222815,26 +222421,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(211), 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(118), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222844,9 +222431,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, @@ -222856,14 +222441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12105] = 5, + [11626] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1993), 1, + STATE(1987), 1, sym_comment, - ACTIONS(4125), 22, + ACTIONS(4191), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222886,7 +222471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4127), 35, + ACTIONS(4193), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -222922,18 +222507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12176] = 8, + [11697] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1183), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4172), 1, + ACTIONS(4308), 1, anon_sym_EQ_GT, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(1994), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222949,13 +222534,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(4141), 19, + ACTIONS(212), 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, @@ -222969,7 +222554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222991,14 +222576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12253] = 5, + [11774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1995), 1, + STATE(1989), 1, sym_comment, - ACTIONS(4133), 22, + ACTIONS(3112), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223021,7 +222606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4135), 35, + ACTIONS(3114), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -223057,16 +222642,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12324] = 7, + [11845] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(1996), 1, + ACTIONS(4346), 1, + anon_sym_of, + STATE(1990), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223082,14 +222673,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(4141), 20, + ACTIONS(212), 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, @@ -223103,10 +222692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -223125,14 +222713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12399] = 5, + [11926] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(1997), 1, + STATE(1991), 1, sym_comment, - ACTIONS(3116), 22, + ACTIONS(4131), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223155,7 +222743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3118), 35, + ACTIONS(4133), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -223191,85 +222779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12470] = 10, + [11997] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1165), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - ACTIONS(4277), 1, - anon_sym_COLON, - STATE(1998), 1, - sym_comment, - ACTIONS(4336), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(211), 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(2691), 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(118), 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, - [12551] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(1999), 1, + STATE(1992), 1, sym_comment, - ACTIONS(3082), 22, + ACTIONS(4171), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223292,7 +222809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3084), 35, + ACTIONS(4173), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -223328,14 +222845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12622] = 5, + [12068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2000), 1, + STATE(1993), 1, sym_comment, - ACTIONS(4181), 22, + ACTIONS(4183), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223358,7 +222875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4183), 35, + ACTIONS(4185), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -223394,111 +222911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12693] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2001), 1, - sym_comment, - ACTIONS(4330), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4181), 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(4183), 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12766] = 13, + [12139] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1165), 1, + ACTIONS(1121), 1, anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - ACTIONS(4277), 1, - anon_sym_COLON, - STATE(2002), 1, - sym_comment, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4339), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(211), 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, + STATE(1994), 1, + sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -223515,7 +222938,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(118), 19, + ACTIONS(212), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223525,7 +222968,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, @@ -223535,14 +222980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12853] = 5, + [12216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2003), 1, + ACTIONS(4333), 1, + anon_sym_COMMA, + STATE(1995), 1, sym_comment, - ACTIONS(4191), 22, + ACTIONS(4183), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223565,16 +223012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4193), 35, - sym__automatic_semicolon, + ACTIONS(4185), 34, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -223601,18 +223047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12924] = 6, + [12289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2004), 1, + STATE(1996), 1, sym_comment, - ACTIONS(4328), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4125), 22, + ACTIONS(4151), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223635,12 +223077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4127), 32, + ACTIONS(4153), 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, @@ -223668,55 +223113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12997] = 8, + [12360] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2005), 1, + STATE(1997), 1, sym_comment, - ACTIONS(2691), 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(211), 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(118), 21, + ACTIONS(4187), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -223737,20 +223143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13074] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2746), 1, - anon_sym_COLON, - ACTIONS(4172), 1, - anon_sym_EQ_GT, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(2006), 1, - sym_comment, - ACTIONS(4155), 15, + ACTIONS(4189), 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, @@ -223766,16 +223170,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(4141), 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, @@ -223785,36 +223179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 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, - [13153] = 4, + [12431] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2007), 1, + STATE(1998), 1, sym_comment, - ACTIONS(4343), 57, + ACTIONS(4348), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223872,63 +223244,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [13222] = 5, + [12500] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2008), 1, - sym_comment, - ACTIONS(4181), 22, - anon_sym_STAR, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4228), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + STATE(1999), 1, + sym_comment, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4157), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4167), 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(4183), 35, - sym__automatic_semicolon, + ACTIONS(4139), 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_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, @@ -223938,20 +223287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13293] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1175), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2746), 1, - anon_sym_COLON, - STATE(2009), 1, - sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223967,78 +223303,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(211), 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(118), 21, + ACTIONS(4135), 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, - [13372] = 14, + [12593] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1135), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, + ACTIONS(4246), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, + ACTIONS(4252), 1, anon_sym_EQ_GT, - STATE(2010), 1, + ACTIONS(4280), 1, + anon_sym_COLON, + STATE(2000), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, + ACTIONS(4249), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4141), 14, + ACTIONS(4350), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(212), 14, 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, @@ -224049,7 +223359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224065,10 +223375,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(4137), 17, + ACTIONS(118), 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, @@ -224080,51 +223391,150 @@ 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, - [13461] = 5, + [12680] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2011), 1, + STATE(2001), 1, sym_comment, - ACTIONS(4125), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4354), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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(4127), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [12749] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2002), 1, + sym_comment, + ACTIONS(3244), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, + anon_sym_await, anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [12818] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4155), 1, + anon_sym_EQ, + STATE(2003), 1, + sym_comment, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224140,6 +223550,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(4139), 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, @@ -224149,14 +223571,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13532] = 4, + ACTIONS(4135), 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, + [12893] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2012), 1, + STATE(2004), 1, sym_comment, - ACTIONS(4345), 57, + ACTIONS(3240), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224167,6 +223611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -224177,7 +223622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -224214,16 +223658,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [13601] = 7, + [12962] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - STATE(2013), 1, + STATE(2005), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4183), 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(4185), 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, @@ -224239,16 +223715,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4141), 20, + 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, + [13033] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4163), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + STATE(2006), 1, + sym_comment, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4210), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + 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(4146), 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(4135), 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, + [13122] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2806), 1, anon_sym_COLON, + STATE(2007), 1, + sym_comment, + ACTIONS(2691), 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(212), 18, + 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_LT_EQ, @@ -224260,7 +223847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224282,14 +223869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13676] = 4, + [13201] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2014), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4347), 57, + ACTIONS(4356), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224347,14 +223934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [13745] = 4, + [13270] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2015), 1, + STATE(2009), 1, sym_comment, - ACTIONS(4349), 57, + ACTIONS(4358), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224412,16 +223999,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [13814] = 5, + [13339] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2016), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(2010), 1, sym_comment, - ACTIONS(4129), 22, + ACTIONS(4146), 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(4139), 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(4135), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224442,18 +224069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4131), 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, + [13418] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2768), 1, + anon_sym_COLON, + STATE(2011), 1, + sym_comment, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224469,6 +224098,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(212), 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, @@ -224478,16 +224117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13885] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2017), 1, - sym_comment, - ACTIONS(4185), 22, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224508,18 +224139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4187), 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, + [13497] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + STATE(2012), 1, + sym_comment, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224535,6 +224166,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(4139), 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, @@ -224544,18 +224186,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13956] = 8, + ACTIONS(4135), 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, + [13574] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(2806), 1, + anon_sym_COLON, + ACTIONS(4144), 1, anon_sym_EQ_GT, - STATE(2018), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(2013), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224571,13 +224237,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(4141), 19, + ACTIONS(4139), 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, @@ -224591,7 +224256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224613,27 +224278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14033] = 11, + [13653] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, - anon_sym_EQ_GT, - ACTIONS(4269), 1, - anon_sym_LBRACK, - STATE(2019), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + STATE(2014), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224649,12 +224303,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(211), 16, + ACTIONS(4139), 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, @@ -224666,16 +224324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4135), 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, @@ -224685,22 +224346,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14116] = 10, + [13728] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4172), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4262), 1, anon_sym_EQ_GT, - ACTIONS(4216), 1, + STATE(2015), 1, + sym_comment, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4167), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4157), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4139), 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(4146), 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(4135), 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, + [13821] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2016), 1, + sym_comment, + ACTIONS(4187), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4351), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(4354), 1, + 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(4189), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - STATE(2020), 1, + 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, + [13892] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2882), 1, + anon_sym_COLON, + STATE(2017), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224716,7 +224518,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(4141), 18, + ACTIONS(212), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -224735,9 +224537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -224756,27 +224559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14197] = 11, + [13971] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1246), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4356), 1, + ACTIONS(2882), 1, + anon_sym_COLON, + ACTIONS(4144), 1, anon_sym_EQ_GT, - STATE(2021), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(2018), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224792,12 +224588,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(211), 16, + ACTIONS(4139), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -224809,16 +224607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4135), 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, @@ -224828,39 +224629,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14280] = 16, + [14050] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(115), 1, + anon_sym_EQ, + ACTIONS(1980), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4252), 1, anon_sym_EQ_GT, - STATE(2022), 1, + STATE(2019), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4147), 2, + ACTIONS(4249), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4143), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(2030), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4141), 11, + ACTIONS(212), 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, @@ -224870,7 +224666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224886,7 +224682,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(4137), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224902,21 +224698,93 @@ 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, - [14373] = 8, + [14135] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1167), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4300), 1, + STATE(2020), 1, + sym_comment, + ACTIONS(2691), 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(212), 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(118), 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, + [14212] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2746), 1, + anon_sym_COLON, + ACTIONS(4144), 1, anon_sym_EQ_GT, - STATE(2023), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(2021), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224932,12 +224800,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(4141), 18, + ACTIONS(4139), 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, @@ -224950,8 +224819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224973,42 +224841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14449] = 11, + [14291] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1272), 1, + ACTIONS(1167), 1, anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4358), 1, - anon_sym_EQ_GT, - STATE(2024), 1, + ACTIONS(2746), 1, + anon_sym_COLON, + STATE(2022), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4274), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(211), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225025,16 +224870,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(118), 18, + ACTIONS(212), 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(118), 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, @@ -225044,20 +224911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14531] = 9, + [14370] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(4351), 1, - anon_sym_in, - ACTIONS(4354), 1, - anon_sym_of, - STATE(2025), 1, + STATE(2023), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225073,12 +224938,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(4141), 18, + ACTIONS(4139), 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, @@ -225092,9 +224958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 20, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -225113,16 +224980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14609] = 7, + [14447] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4216), 1, + ACTIONS(1266), 1, anon_sym_EQ, - STATE(2026), 1, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4360), 1, + sym_identifier, + STATE(2024), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225138,31 +225012,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(4141), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, 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(4137), 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, @@ -225177,43 +225037,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14683] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1215), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4281), 1, - anon_sym_RBRACK, - ACTIONS(4292), 1, - anon_sym_COMMA, - ACTIONS(4358), 1, - anon_sym_EQ_GT, - ACTIONS(4360), 1, - anon_sym_COLON, - STATE(2027), 1, - sym_comment, - ACTIONS(211), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(2691), 15, + [14525] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4306), 1, + sym_identifier, + STATE(2025), 1, + sym_comment, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225229,11 +225081,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(118), 21, + ACTIONS(118), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -225248,26 +225106,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [14765] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14603] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4362), 1, + ACTIONS(4322), 1, sym_identifier, - STATE(2028), 1, + STATE(2026), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225320,31 +225187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14843] = 11, + [14681] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1280), 1, + ACTIONS(1228), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(4246), 1, anon_sym_LBRACK, - ACTIONS(4364), 1, + ACTIONS(4362), 1, anon_sym_EQ_GT, - STATE(2029), 1, + STATE(2027), 1, sym_comment, ACTIONS(2030), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4274), 3, + ACTIONS(4249), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -225391,23 +225258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14925] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [14763] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4310), 1, - sym_identifier, - STATE(2030), 1, + STATE(2028), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225423,62 +225283,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(118), 36, - anon_sym_STAR, + ACTIONS(4139), 19, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15003] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(2031), 1, - sym_comment, - ACTIONS(4366), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4141), 15, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -225491,23 +225303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225529,26 +225325,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15081] = 9, + [14837] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1280), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4246), 1, + anon_sym_LBRACK, + ACTIONS(4364), 1, anon_sym_EQ_GT, - STATE(2032), 1, + STATE(2029), 1, sym_comment, - ACTIONS(4366), 3, + ACTIONS(2030), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4141), 15, + anon_sym_extends, + ACTIONS(4249), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -225560,7 +225361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225576,19 +225377,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(4137), 21, + ACTIONS(118), 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, @@ -225598,26 +225396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15159] = 12, + [14919] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1212), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_RBRACK, - ACTIONS(4287), 1, + ACTIONS(4293), 1, anon_sym_COMMA, - ACTIONS(4322), 1, + ACTIONS(4295), 1, + anon_sym_RBRACK, + ACTIONS(4362), 1, anon_sym_EQ_GT, - ACTIONS(4369), 1, - anon_sym_EQ, - ACTIONS(4372), 1, - anon_sym_in, - ACTIONS(4374), 1, + ACTIONS(4366), 1, anon_sym_COLON, - STATE(2033), 1, + STATE(2030), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225633,7 +225429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225649,9 +225445,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(4137), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -225670,36 +225467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15243] = 14, + [15001] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4204), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - anon_sym_LT, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, + ACTIONS(4241), 1, + anon_sym_RBRACK, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4314), 1, anon_sym_EQ_GT, - STATE(2034), 1, + ACTIONS(4368), 1, + anon_sym_EQ, + ACTIONS(4371), 1, + anon_sym_in, + ACTIONS(4373), 1, + anon_sym_COLON, + STATE(2031), 1, sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4210), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4141), 13, + ACTIONS(4139), 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, @@ -225710,7 +225502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225726,41 +225518,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4137), 17, + ACTIONS(4135), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15331] = 9, + [15085] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4318), 1, + ACTIONS(4310), 1, sym_identifier, - STATE(2035), 1, + STATE(2032), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225813,18 +225608,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15409] = 8, + [15163] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1260), 1, + ACTIONS(1266), 1, anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(4324), 1, + sym_identifier, + STATE(2033), 1, + sym_comment, + ACTIONS(212), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 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(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15241] = 8, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(4300), 1, anon_sym_EQ_GT, - STATE(2036), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225840,7 +225704,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(211), 18, + ACTIONS(4139), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -225859,7 +225723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225881,23 +225745,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15485] = 9, + [15317] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(4314), 1, + ACTIONS(4123), 1, sym_identifier, - STATE(2037), 1, + STATE(2035), 1, sym_comment, - ACTIONS(211), 2, + ACTIONS(212), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225950,16 +225814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15563] = 7, + [15395] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4231), 1, + ACTIONS(4228), 1, anon_sym_EQ, - STATE(2038), 1, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + STATE(2036), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225975,14 +225841,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(4141), 19, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -225995,7 +225859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + anon_sym_implements, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226017,18 +225882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15637] = 8, + [15471] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(4300), 1, + ACTIONS(4335), 1, anon_sym_EQ_GT, - STATE(2039), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226044,7 +225909,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(4141), 18, + ACTIONS(212), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -226063,7 +225928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226085,38 +225950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15713] = 8, + [15547] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4163), 1, anon_sym_EQ_GT, - STATE(2040), 1, + STATE(2038), 1, sym_comment, - ACTIONS(2691), 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(211), 18, + ACTIONS(4375), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -226130,46 +225981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 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, - [15789] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4123), 1, - sym_identifier, - STATE(2041), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226185,17 +225997,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(118), 36, + ACTIONS(4135), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -226210,35 +226016,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15867] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15625] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1135), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(2030), 1, + anon_sym_extends, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4252), 1, anon_sym_EQ_GT, - ACTIONS(4324), 1, - sym_identifier, - STATE(2042), 1, + STATE(2039), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, + ACTIONS(4246), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4249), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(212), 15, sym__ternary_qmark, - ACTIONS(159), 15, + 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226254,79 +226070,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(118), 36, + ACTIONS(118), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15945] = 11, + [15707] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1165), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4272), 1, - anon_sym_EQ_GT, - STATE(2043), 1, - sym_comment, - ACTIONS(4269), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4274), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(211), 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(2691), 15, + ACTIONS(4224), 1, + anon_sym_EQ, + STATE(2040), 1, + sym_comment, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226342,7 +226115,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(118), 19, + ACTIONS(4139), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226352,7 +226145,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, @@ -226362,27 +226157,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16027] = 10, + [15781] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1215), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4281), 1, - anon_sym_RBRACK, - ACTIONS(4292), 1, - anon_sym_COMMA, - ACTIONS(4358), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4235), 1, + anon_sym_LT, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(2044), 1, + STATE(2041), 1, sym_comment, - ACTIONS(211), 15, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4139), 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, @@ -226393,7 +226197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226409,38 +226213,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(118), 21, + ACTIONS(4135), 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, - [16106] = 7, + [15869] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, + ACTIONS(4216), 1, anon_sym_EQ, - STATE(2045), 1, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, + anon_sym_of, + STATE(2042), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226456,12 +226260,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(4141), 18, + ACTIONS(4139), 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, @@ -226474,11 +226279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4137), 21, + ACTIONS(4135), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226497,16 +226300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16179] = 8, + [15947] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, + ACTIONS(1121), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4356), 1, + ACTIONS(4335), 1, anon_sym_EQ_GT, - STATE(2046), 1, + STATE(2043), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -226524,12 +226327,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(211), 17, + ACTIONS(212), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226542,6 +226345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -226564,39 +226368,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16254] = 8, + [16023] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, - anon_sym_EQ_GT, - STATE(2047), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4268), 1, + anon_sym_COLON, + STATE(2044), 1, sym_comment, - ACTIONS(2691), 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(211), 17, - sym__automatic_semicolon, + ACTIONS(4375), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226609,7 +226399,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4146), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226631,7 +226437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16329] = 34, + [16101] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226640,47 +226446,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2048), 1, + STATE(2045), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -226688,30 +226494,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4382), 2, + ACTIONS(4384), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4384), 2, + ACTIONS(4386), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4630), 6, + STATE(4731), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -226724,100 +226530,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16456] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, + [16228] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2049), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_EQ_GT, + STATE(2046), 1, sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3888), 2, - anon_sym_COMMA, + ACTIONS(4146), 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(4139), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3896), 2, + 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(4135), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4797), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [16583] = 34, + 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, + [16303] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226826,78 +226606,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2050), 1, + STATE(2047), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, + ACTIONS(3888), 2, + anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4402), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4404), 2, + ACTIONS(3912), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4775), 6, + STATE(4658), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -226910,18 +226690,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16710] = 6, + [16430] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1266), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_COMMA, - STATE(2051), 1, + ACTIONS(2934), 1, + anon_sym_EQ_GT, + STATE(2048), 1, sym_comment, - ACTIONS(4181), 22, + ACTIONS(2691), 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(212), 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(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -226942,15 +226757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4183), 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, + [16505] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + STATE(2049), 1, + sym_comment, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226966,6 +226784,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(212), 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, @@ -226975,7 +226802,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16781] = 34, + ACTIONS(118), 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, + [16580] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226984,47 +226833,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2052), 1, + STATE(2050), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -227032,30 +226881,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4406), 2, + ACTIONS(4404), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4408), 2, + ACTIONS(4406), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4718), 6, + STATE(4758), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -227068,7 +226917,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16908] = 34, + [16707] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4298), 1, + anon_sym_EQ, + STATE(2051), 1, + sym_comment, + ACTIONS(4146), 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(4139), 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(4135), 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, + [16780] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -227077,47 +226992,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2053), 1, + STATE(2052), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -227125,30 +227040,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4410), 2, + ACTIONS(4408), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4412), 2, + ACTIONS(4410), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4757), 6, + STATE(4775), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -227161,7 +227076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17035] = 34, + [16907] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -227170,47 +227085,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2054), 1, + STATE(2053), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -227218,30 +227133,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4414), 2, + ACTIONS(4412), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4416), 2, + ACTIONS(4414), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4735), 6, + STATE(4626), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -227254,27 +227169,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17162] = 11, + [17034] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4312), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_EQ_GT, + ACTIONS(4371), 1, + anon_sym_in, + ACTIONS(4416), 1, + anon_sym_COLON, + STATE(2054), 1, + sym_comment, + ACTIONS(4146), 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(4139), 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(4135), 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, + [17113] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, + ACTIONS(1121), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(4246), 1, anon_sym_LBRACK, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, STATE(2055), 1, sym_comment, ACTIONS(2030), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4274), 3, + ACTIONS(4249), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(211), 14, + ACTIONS(212), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227324,18 +227308,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17243] = 8, + [17194] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1212), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4293), 1, + anon_sym_COMMA, + ACTIONS(4295), 1, + anon_sym_RBRACK, + ACTIONS(4362), 1, anon_sym_EQ_GT, STATE(2056), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(212), 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(2691), 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(118), 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, + [17273] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4291), 1, + anon_sym_EQ_GT, + STATE(2057), 1, + sym_comment, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227351,12 +227404,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(4141), 17, - sym__automatic_semicolon, + ACTIONS(4139), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -227369,7 +227422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227391,111 +227444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17318] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2057), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4418), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4420), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4740), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [17445] = 8, + [17348] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, + ACTIONS(4312), 1, anon_sym_EQ, - ACTIONS(4237), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, + ACTIONS(4371), 1, + anon_sym_in, + ACTIONS(4373), 1, + anon_sym_COLON, STATE(2058), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227511,13 +227475,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(4141), 17, + ACTIONS(4139), 16, 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, @@ -227529,10 +227492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -227551,10 +227513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17520] = 8, + [17427] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1121), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, @@ -227578,7 +227540,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(211), 17, + ACTIONS(212), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -227618,22 +227580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17595] = 10, + [17502] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4241), 1, anon_sym_RBRACK, - ACTIONS(4287), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4322), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4369), 1, + ACTIONS(4368), 1, anon_sym_EQ, STATE(2060), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227649,7 +227611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227665,7 +227627,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227687,16 +227649,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17674] = 8, + [17581] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2061), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4420), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4685), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [17708] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1246), 1, + ACTIONS(1228), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4356), 1, + ACTIONS(4362), 1, anon_sym_EQ_GT, - STATE(2061), 1, + ACTIONS(4366), 1, + anon_sym_COLON, + STATE(2062), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -227714,13 +227771,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(211), 17, + ACTIONS(212), 16, 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, @@ -227754,85 +227810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17749] = 6, + [17785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4328), 1, - anon_sym_COMMA, - STATE(2062), 1, - sym_comment, - ACTIONS(4125), 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(4127), 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [17820] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1272), 1, + ACTIONS(4264), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4358), 1, + ACTIONS(4266), 1, anon_sym_EQ_GT, - ACTIONS(4422), 1, - anon_sym_COLON, STATE(2063), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227848,12 +227837,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(211), 16, + ACTIONS(4139), 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, @@ -227865,7 +227855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227887,18 +227877,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17897] = 8, + [17860] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2064), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3918), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3920), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4827), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [17987] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4235), 1, + ACTIONS(4289), 1, anon_sym_EQ, - ACTIONS(4237), 1, + ACTIONS(4291), 1, anon_sym_EQ_GT, - STATE(2064), 1, + STATE(2065), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227914,7 +227997,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(4141), 17, + ACTIONS(4139), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -227932,7 +228015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227954,18 +228037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17972] = 8, + [18062] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1228), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4362), 1, anon_sym_EQ_GT, - STATE(2065), 1, + ACTIONS(4422), 1, + anon_sym_COLON, + STATE(2066), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227981,13 +228066,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(4141), 17, - sym__automatic_semicolon, + ACTIONS(212), 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, @@ -227999,7 +228083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228021,20 +228105,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18047] = 9, + [18139] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1272), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4358), 1, - anon_sym_EQ_GT, - ACTIONS(4360), 1, - anon_sym_COLON, - STATE(2066), 1, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(2067), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4187), 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(4189), 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, @@ -228050,14 +228161,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(211), 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, @@ -228067,44 +228170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 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, - [18124] = 10, + [18210] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1254), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, + ACTIONS(4339), 1, anon_sym_EQ_GT, - ACTIONS(4372), 1, - anon_sym_in, - ACTIONS(4424), 1, - anon_sym_COLON, - STATE(2067), 1, + STATE(2068), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228120,12 +228197,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(4141), 16, + ACTIONS(212), 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, @@ -228137,9 +228215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228158,7 +228237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18203] = 34, + [18285] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228167,47 +228246,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2068), 1, + STATE(2069), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -228215,30 +228294,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4426), 2, + ACTIONS(4424), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4428), 2, + ACTIONS(4426), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4769), 6, + STATE(4764), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -228251,7 +228330,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18330] = 34, + [18412] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4333), 1, + anon_sym_COMMA, + STATE(2070), 1, + sym_comment, + ACTIONS(4183), 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(4185), 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [18483] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228260,47 +228404,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2069), 1, + STATE(2071), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -228308,30 +228452,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4006), 2, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4428), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4008), 2, + ACTIONS(4430), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4679), 6, + STATE(4693), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -228344,43 +228488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18457] = 10, + [18610] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4372), 1, - anon_sym_in, - ACTIONS(4374), 1, + ACTIONS(4280), 1, anon_sym_COLON, - STATE(2070), 1, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(2072), 1, sym_comment, - ACTIONS(4155), 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(4141), 16, + ACTIONS(212), 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, @@ -228392,39 +228517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 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, - [18536] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4304), 1, - anon_sym_EQ_GT, - STATE(2071), 1, - sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228440,24 +228533,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(4141), 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(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228479,37 +228555,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18610] = 7, + [18686] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4235), 1, + ACTIONS(4241), 1, + anon_sym_RBRACK, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4368), 1, anon_sym_EQ, - STATE(2072), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4155), 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(4141), 17, + ACTIONS(4139), 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, @@ -228522,7 +228584,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4146), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228544,20 +228622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18682] = 9, + [18762] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, + ACTIONS(1121), 1, anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4277), 1, - anon_sym_COLON, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - STATE(2073), 1, + ACTIONS(4346), 1, + anon_sym_of, + STATE(2074), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228589,10 +228669,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(118), 21, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228611,18 +228690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18758] = 8, + [18840] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4358), 1, - anon_sym_EQ_GT, - STATE(2074), 1, + ACTIONS(4264), 1, + anon_sym_EQ, + STATE(2075), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228638,12 +228715,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(211), 16, + ACTIONS(4139), 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, @@ -228655,7 +228733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228677,18 +228755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18832] = 8, + [18912] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1272), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4358), 1, - anon_sym_EQ_GT, - STATE(2075), 1, + ACTIONS(4289), 1, + anon_sym_EQ, + STATE(2076), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228704,12 +228780,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(211), 16, + ACTIONS(4139), 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, @@ -228721,7 +228798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228743,85 +228820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18906] = 9, + [18984] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_RBRACK, - ACTIONS(4287), 1, - anon_sym_COMMA, - ACTIONS(4369), 1, - anon_sym_EQ, - STATE(2076), 1, - sym_comment, - ACTIONS(4141), 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(4155), 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(4137), 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, - [18982] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1280), 1, + ACTIONS(4312), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4364), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, STATE(2077), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228837,12 +228847,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(211), 16, + ACTIONS(4139), 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, @@ -228854,7 +228864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228876,18 +228886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19056] = 8, + [19058] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, + ACTIONS(4364), 1, anon_sym_EQ_GT, STATE(2078), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228903,12 +228913,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(4141), 16, + ACTIONS(212), 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, @@ -228920,7 +228930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228942,10 +228952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19130] = 8, + [19132] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, + ACTIONS(1280), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, @@ -228969,7 +228979,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(211), 16, + ACTIONS(212), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229008,22 +229018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19204] = 10, + [19206] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4262), 1, anon_sym_EQ_GT, - ACTIONS(4334), 1, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, anon_sym_of, STATE(2080), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229039,7 +229049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229055,7 +229065,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(118), 20, + ACTIONS(4135), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -229076,18 +229086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19282] = 8, + [19284] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(4322), 1, + ACTIONS(4304), 1, anon_sym_EQ_GT, STATE(2081), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229103,12 +229113,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(4141), 16, + ACTIONS(4139), 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, @@ -229120,7 +229130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229142,38 +229152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19356] = 10, + [19358] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, + ACTIONS(4362), 1, anon_sym_EQ_GT, - ACTIONS(4351), 1, - anon_sym_in, - ACTIONS(4354), 1, - anon_sym_of, STATE(2082), 1, sym_comment, - ACTIONS(4141), 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(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229189,9 +229179,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(4137), 20, + ACTIONS(212), 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(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -229210,18 +229218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19434] = 8, + [19432] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, STATE(2083), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229237,12 +229245,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(4141), 16, + ACTIONS(4139), 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, @@ -229254,7 +229262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229276,16 +229284,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19508] = 7, + [19506] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1228), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, + ACTIONS(4362), 1, + anon_sym_EQ_GT, STATE(2084), 1, sym_comment, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229301,13 +229311,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(4141), 17, - sym__automatic_semicolon, + ACTIONS(212), 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, @@ -229319,7 +229328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229344,31 +229353,15 @@ static const uint16_t ts_small_parse_table[] = { [19580] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1354), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(4304), 1, anon_sym_EQ_GT, STATE(2085), 1, sym_comment, - ACTIONS(211), 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(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229384,7 +229377,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(118), 21, + ACTIONS(4139), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229406,18 +229416,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19653] = 8, + [19654] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2086), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4432), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [19777] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2087), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4434), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [19900] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2088), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4436), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [20023] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2089), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4438), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [20146] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1356), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - ACTIONS(4430), 1, - anon_sym_EQ, - STATE(2086), 1, + STATE(2090), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229433,7 +229803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229449,7 +229819,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(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229471,37 +229841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19726] = 7, + [20219] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4320), 1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4440), 1, anon_sym_EQ, - STATE(2087), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4155), 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(4141), 16, + ACTIONS(4139), 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, @@ -229513,7 +229868,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4137), 21, + ACTIONS(4146), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229535,18 +229906,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19797] = 8, + [20292] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2092), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4442), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [20415] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1121), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - ACTIONS(4432), 1, - anon_sym_EQ, - STATE(2088), 1, + STATE(2093), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229562,7 +230023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229578,7 +230039,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(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229600,7 +230061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19870] = 33, + [20488] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229609,47 +230070,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2089), 1, + STATE(2094), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -229657,27 +230118,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4434), 2, + ACTIONS(4444), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229690,7 +230151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19993] = 33, + [20611] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229699,47 +230160,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2090), 1, + STATE(2095), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -229747,27 +230208,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4436), 2, + ACTIONS(4446), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229780,72 +230241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20116] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1099), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4279), 1, - anon_sym_EQ_GT, - STATE(2091), 1, - sym_comment, - ACTIONS(211), 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(2691), 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(118), 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, - [20189] = 33, + [20734] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229854,47 +230250,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2092), 1, + STATE(2096), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -229902,27 +230298,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4438), 2, + ACTIONS(4448), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -229935,83 +230331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20312] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - STATE(2093), 1, - sym_comment, - ACTIONS(4141), 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(4155), 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(4137), 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, - [20385] = 8, + [20857] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1350), 1, + ACTIONS(1300), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - STATE(2094), 1, + STATE(2097), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230065,7 +230396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20458] = 33, + [20930] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230074,47 +230405,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2095), 1, + STATE(2098), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -230122,27 +230453,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4440), 2, + ACTIONS(4450), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230155,72 +230486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20581] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1294), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4279), 1, - anon_sym_EQ_GT, - STATE(2096), 1, - sym_comment, - ACTIONS(211), 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(2691), 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(118), 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, - [20654] = 33, + [21053] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230229,47 +230495,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2097), 1, + STATE(2099), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -230277,27 +230543,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4442), 2, + ACTIONS(4452), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230310,7 +230576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20777] = 33, + [21176] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230319,47 +230585,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2098), 1, + STATE(2100), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -230367,27 +230633,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4444), 2, + ACTIONS(4454), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230400,18 +230666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20900] = 8, + [21299] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1358), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(2099), 1, + ACTIONS(4456), 1, + anon_sym_EQ, + STATE(2101), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230427,7 +230693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230443,7 +230709,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(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230465,83 +230731,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20973] = 8, + [21372] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4446), 1, - anon_sym_EQ, - STATE(2100), 1, - sym_comment, - ACTIONS(4141), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 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(4155), 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(4137), 21, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 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(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2102), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 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, - [21046] = 8, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4458), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [21495] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4262), 1, anon_sym_EQ_GT, - ACTIONS(4448), 1, + ACTIONS(4460), 1, anon_sym_EQ, - STATE(2101), 1, + STATE(2103), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230557,7 +230848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230573,7 +230864,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230595,18 +230886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21119] = 8, + [21568] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1356), 1, + ACTIONS(1302), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - STATE(2102), 1, + STATE(2104), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230660,7 +230951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21192] = 33, + [21641] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230669,227 +230960,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2103), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4450), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [21315] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4380), 1, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2104), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4452), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [21438] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, STATE(2105), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -230897,27 +231008,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4454), 2, + ACTIONS(4462), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -230930,7 +231041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21561] = 33, + [21764] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230939,47 +231050,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, STATE(2106), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -230987,27 +231098,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4456), 2, + ACTIONS(4464), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231020,7 +231131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21684] = 33, + [21887] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231029,47 +231140,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, STATE(2107), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231077,27 +231188,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4458), 2, + ACTIONS(4466), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231110,7 +231221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21807] = 33, + [22010] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231119,47 +231230,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, STATE(2108), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231167,27 +231278,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4460), 2, + ACTIONS(4468), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231200,18 +231311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21930] = 8, + [22133] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1348), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, - anon_sym_EQ_GT, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, + anon_sym_of, STATE(2109), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231227,7 +231340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231243,10 +231356,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(118), 21, + ACTIONS(4135), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -231265,83 +231377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22003] = 8, + [22208] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4462), 1, + ACTIONS(4228), 1, anon_sym_EQ, + ACTIONS(4262), 1, + anon_sym_EQ_GT, STATE(2110), 1, sym_comment, - ACTIONS(4141), 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(4155), 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(4137), 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, - [22076] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(2111), 1, - sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231357,54 +231404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 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(4137), 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, - [22149] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_EQ, - STATE(2112), 1, - sym_comment, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231420,24 +231420,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(4141), 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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231459,7 +231442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22220] = 33, + [22281] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231468,47 +231451,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2113), 1, + STATE(2111), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231516,27 +231499,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4464), 2, + ACTIONS(4470), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231549,7 +231532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22343] = 33, + [22404] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231558,47 +231541,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2114), 1, + STATE(2112), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231606,27 +231589,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4466), 2, + ACTIONS(4472), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231639,18 +231622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22466] = 8, + [22527] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4468), 1, + ACTIONS(4228), 1, anon_sym_EQ, - STATE(2115), 1, + ACTIONS(4268), 1, + anon_sym_COLON, + STATE(2113), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231666,7 +231649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231682,7 +231665,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231704,34 +231687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22539] = 8, + [22600] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_EQ_GT, - ACTIONS(4470), 1, + ACTIONS(4302), 1, anon_sym_EQ, - STATE(2116), 1, + STATE(2114), 1, sym_comment, - ACTIONS(4141), 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(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231747,7 +231712,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(4137), 21, + ACTIONS(4139), 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(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231769,7 +231751,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22612] = 33, + [22671] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, + anon_sym_STAR, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4390), 1, + anon_sym_async, + ACTIONS(4392), 1, + anon_sym_new, + ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4402), 1, + anon_sym_override, + STATE(2115), 1, + sym_comment, + STATE(3505), 1, + sym_accessibility_modifier, + STATE(3517), 1, + sym_override_modifier, + STATE(3893), 1, + sym__property_name, + STATE(4061), 1, + sym_formal_parameters, + STATE(4901), 1, + sym__call_signature, + STATE(5608), 1, + sym_decorator, + STATE(5635), 1, + aux_sym_export_statement_repeat1, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4398), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4474), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4400), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5351), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4378), 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, + [22794] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231778,47 +231850,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2117), 1, + STATE(2116), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231826,27 +231898,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4472), 2, + ACTIONS(4476), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -231859,18 +231931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22735] = 8, + [22917] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1346), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4262), 1, anon_sym_EQ_GT, - STATE(2118), 1, + ACTIONS(4478), 1, + anon_sym_EQ, + STATE(2117), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231886,7 +231958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231902,7 +231974,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(118), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231924,7 +231996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22808] = 33, + [22990] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231933,47 +232005,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2119), 1, + STATE(2118), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -231981,27 +232053,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4474), 2, + ACTIONS(4480), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232014,7 +232086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22931] = 33, + [23113] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232023,47 +232095,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2120), 1, + STATE(2119), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -232071,27 +232143,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4476), 2, + ACTIONS(4482), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232104,7 +232176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23054] = 33, + [23236] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232113,47 +232185,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2121), 1, + STATE(2120), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -232161,27 +232233,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4478), 2, + ACTIONS(4484), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232194,18 +232266,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23177] = 8, + [23359] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1292), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - ACTIONS(4480), 1, - anon_sym_EQ, - STATE(2122), 1, + STATE(2121), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232221,7 +232293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232237,7 +232309,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(4137), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232259,7 +232331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23250] = 33, + [23432] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232268,47 +232340,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2123), 1, + STATE(2122), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -232316,27 +232388,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4482), 2, + ACTIONS(4486), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232349,18 +232421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23373] = 8, + [23555] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, + ACTIONS(4262), 1, anon_sym_EQ_GT, - ACTIONS(4484), 1, + ACTIONS(4488), 1, anon_sym_EQ, - STATE(2124), 1, + STATE(2123), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232376,7 +232448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232392,7 +232464,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232414,110 +232486,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23446] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [23628] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(1354), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(2124), 1, + sym_comment, + ACTIONS(212), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2125), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 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(2691), 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(118), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4486), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [23569] = 9, + 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, + [23701] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4490), 1, anon_sym_EQ, - ACTIONS(4351), 1, - anon_sym_in, - ACTIONS(4354), 1, - anon_sym_of, - STATE(2126), 1, + STATE(2125), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232533,7 +232578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232549,9 +232594,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(4137), 20, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -232570,108 +232616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23644] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2127), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4488), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [23767] = 8, + [23774] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1292), 1, + ACTIONS(1294), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, - STATE(2128), 1, + STATE(2126), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232725,7 +232681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23840] = 33, + [23847] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232734,47 +232690,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2129), 1, + STATE(2127), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -232782,27 +232738,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - ACTIONS(4490), 2, + ACTIONS(4492), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232815,187 +232771,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23963] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [23970] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4312), 1, + anon_sym_EQ, + STATE(2128), 1, + sym_comment, + ACTIONS(4146), 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(4139), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2130), 1, - sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 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(4135), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4492), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [24086] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [24041] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4494), 1, + anon_sym_EQ, + STATE(2129), 1, + sym_comment, + ACTIONS(4139), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, - STATE(2131), 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(4146), 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(4135), 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, + [24114] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1358), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_EQ_GT, + STATE(2130), 1, sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(212), 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(2691), 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(118), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4494), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [24209] = 33, + 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, + [24187] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233004,47 +232974,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2132), 1, + STATE(2131), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -233052,27 +233022,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, ACTIONS(4496), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233085,108 +233055,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24332] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [24310] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(3886), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4498), 1, + anon_sym_EQ, + STATE(2132), 1, + sym_comment, + ACTIONS(4139), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, - ACTIONS(4380), 1, - anon_sym_STAR, - ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_async, - ACTIONS(4390), 1, - anon_sym_new, - ACTIONS(4392), 1, - anon_sym_static, - ACTIONS(4394), 1, - anon_sym_readonly, - ACTIONS(4400), 1, - anon_sym_override, + 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(4146), 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(4135), 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, + [24383] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1296), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_EQ_GT, STATE(2133), 1, sym_comment, - STATE(3508), 1, - sym_accessibility_modifier, - STATE(3515), 1, - sym_override_modifier, - STATE(3842), 1, - sym__property_name, - STATE(4055), 1, - sym_formal_parameters, - STATE(5095), 1, - sym__call_signature, - STATE(5410), 1, - sym_decorator, - STATE(5563), 1, - aux_sym_export_statement_repeat1, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(3896), 2, + ACTIONS(212), 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(2691), 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(118), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4396), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4498), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4398), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4943), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4376), 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, - [24455] = 8, + 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, + [24456] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, + ACTIONS(1298), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, + ACTIONS(4282), 1, anon_sym_EQ_GT, STATE(2134), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(212), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233240,7 +233250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24528] = 33, + [24529] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233249,47 +233259,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, STATE(2135), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -233297,27 +233307,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, ACTIONS(4500), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233330,16 +233340,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24651] = 7, + [24652] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4448), 1, + ACTIONS(4262), 1, + anon_sym_EQ_GT, + ACTIONS(4502), 1, anon_sym_EQ, STATE(2136), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 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(4146), 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(4135), 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, + [24725] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4494), 1, + anon_sym_EQ, + STATE(2137), 1, + sym_comment, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233355,7 +233430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233371,7 +233446,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233393,16 +233468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24721] = 7, + [24795] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4430), 1, + ACTIONS(4490), 1, anon_sym_EQ, - STATE(2137), 1, + STATE(2138), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233418,7 +233493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233434,7 +233509,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233456,16 +233531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24791] = 7, + [24865] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4470), 1, + ACTIONS(4498), 1, anon_sym_EQ, - STATE(2138), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233481,7 +233556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233497,7 +233572,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233519,16 +233594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24861] = 7, + [24935] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4480), 1, + ACTIONS(4488), 1, anon_sym_EQ, - STATE(2139), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233544,7 +233619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233560,7 +233635,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233582,16 +233657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24931] = 7, + [25005] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4468), 1, + ACTIONS(4478), 1, anon_sym_EQ, - STATE(2140), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233607,7 +233682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233623,7 +233698,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233645,16 +233720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25001] = 7, + [25075] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, + ACTIONS(4460), 1, anon_sym_EQ, - STATE(2141), 1, + STATE(2142), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233670,7 +233745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233686,7 +233761,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233708,16 +233783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25071] = 7, + [25145] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4432), 1, + ACTIONS(4456), 1, anon_sym_EQ, - STATE(2142), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233733,7 +233808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233749,7 +233824,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233771,16 +233846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25141] = 7, + [25215] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4446), 1, + ACTIONS(4440), 1, anon_sym_EQ, - STATE(2143), 1, + STATE(2144), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233796,7 +233871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233812,7 +233887,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233834,16 +233909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25211] = 7, + [25285] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4462), 1, + ACTIONS(4502), 1, anon_sym_EQ, - STATE(2144), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4141), 15, + ACTIONS(4139), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233859,7 +233934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4155), 15, + ACTIONS(4146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233875,7 +233950,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(4137), 21, + ACTIONS(4135), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233897,7 +233972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25281] = 32, + [25355] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233906,47 +233981,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2145), 1, + STATE(2146), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -233954,24 +234029,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4719), 6, + STATE(4700), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233984,7 +234059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25400] = 32, + [25474] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233993,47 +234068,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2146), 1, + STATE(2147), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234041,24 +234116,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4943), 6, + STATE(4631), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234071,7 +234146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25519] = 32, + [25593] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234080,47 +234155,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2147), 1, + STATE(2148), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234128,24 +234203,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4742), 6, + STATE(5351), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234158,7 +234233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25638] = 32, + [25712] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234167,47 +234242,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2148), 1, + STATE(2149), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234215,24 +234290,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4760), 6, + STATE(4771), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234245,7 +234320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25757] = 32, + [25831] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234254,47 +234329,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2149), 1, + STATE(2150), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234302,24 +234377,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4770), 6, + STATE(4777), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234332,7 +234407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25876] = 32, + [25950] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234341,47 +234416,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2150), 1, + STATE(2151), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234389,24 +234464,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4777), 6, + STATE(4765), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234419,7 +234494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25995] = 32, + [26069] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234428,47 +234503,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2151), 1, + STATE(2152), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234476,24 +234551,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4722), 6, + STATE(4759), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234506,7 +234581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26114] = 32, + [26188] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234515,47 +234590,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2152), 1, + STATE(2153), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234563,24 +234638,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4632), 6, + STATE(4671), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234593,7 +234668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26233] = 32, + [26307] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234602,47 +234677,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2153), 1, + STATE(2154), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234650,24 +234725,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4680), 6, + STATE(4662), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234680,7 +234755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26352] = 32, + [26426] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234689,47 +234764,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, ACTIONS(3886), 1, anon_sym_LPAREN, ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4378), 1, - anon_sym_export, ACTIONS(4380), 1, + anon_sym_export, + ACTIONS(4382), 1, anon_sym_STAR, - ACTIONS(4386), 1, - anon_sym_LBRACK, ACTIONS(4388), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4390), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4392), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4394), 1, + anon_sym_static, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - STATE(2154), 1, + STATE(2155), 1, sym_comment, - STATE(3508), 1, + STATE(3505), 1, sym_accessibility_modifier, - STATE(3515), 1, + STATE(3517), 1, sym_override_modifier, - STATE(3842), 1, + STATE(3893), 1, sym__property_name, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5095), 1, + STATE(4901), 1, sym__call_signature, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5563), 1, + STATE(5635), 1, aux_sym_export_statement_repeat1, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, ACTIONS(3896), 2, anon_sym_PLUS, @@ -234737,24 +234812,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4396), 2, + ACTIONS(4398), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4398), 3, + ACTIONS(4400), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4713), 6, + STATE(4741), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4376), 12, + ACTIONS(4378), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234767,7 +234842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26471] = 35, + [26545] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2665), 1, @@ -234800,41 +234875,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4502), 1, - anon_sym_STAR, ACTIONS(4504), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4506), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4508), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4510), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4515), 1, + ACTIONS(4517), 1, anon_sym_RBRACE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_module, - STATE(2155), 1, + STATE(2156), 1, sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, + STATE(4959), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, sym_export_clause, - STATE(5869), 1, + STATE(5608), 1, + sym_decorator, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - STATE(6927), 1, + STATE(6969), 1, sym_namespace_export, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -234842,7 +234917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234856,7 +234931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26595] = 35, + [26669] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2665), 1, @@ -234889,41 +234964,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4502), 1, - anon_sym_STAR, ACTIONS(4504), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4506), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4508), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4510), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4520), 1, - anon_sym_module, ACTIONS(4522), 1, + anon_sym_module, + ACTIONS(4524), 1, anon_sym_RBRACE, - STATE(2156), 1, + STATE(2157), 1, sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, + STATE(4959), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, sym_export_clause, - STATE(5869), 1, + STATE(5608), 1, + sym_decorator, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - STATE(6927), 1, + STATE(6969), 1, sym_namespace_export, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -234931,7 +235006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234945,7 +235020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26719] = 35, + [26793] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2665), 1, @@ -234978,41 +235053,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4502), 1, - anon_sym_STAR, ACTIONS(4504), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4506), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4508), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4510), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_module, - ACTIONS(4525), 1, + ACTIONS(4527), 1, anon_sym_RBRACE, - STATE(2157), 1, + STATE(2158), 1, sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, + STATE(4959), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, sym_export_clause, - STATE(5869), 1, + STATE(5608), 1, + sym_decorator, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - STATE(6927), 1, + STATE(6969), 1, sym_namespace_export, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235020,7 +235095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235034,7 +235109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26843] = 35, + [26917] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2665), 1, @@ -235067,41 +235142,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4502), 1, - anon_sym_STAR, ACTIONS(4504), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4506), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4508), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4510), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_module, - ACTIONS(4528), 1, + ACTIONS(4530), 1, anon_sym_RBRACE, - STATE(2158), 1, + STATE(2159), 1, sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, + STATE(4959), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, sym_export_clause, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5608), 1, + sym_decorator, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6927), 1, + STATE(6315), 1, + aux_sym_object_repeat1, + STATE(6969), 1, sym_namespace_export, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235109,7 +235184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235123,7 +235198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26967] = 35, + [27041] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2665), 1, @@ -235156,41 +235231,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4502), 1, - anon_sym_STAR, ACTIONS(4504), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4506), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4508), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4510), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_module, - ACTIONS(4531), 1, + ACTIONS(4533), 1, anon_sym_RBRACE, - STATE(2159), 1, + STATE(2160), 1, sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, + STATE(4959), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, sym_export_clause, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5608), 1, + sym_decorator, + STATE(5720), 1, aux_sym_object_repeat1, - STATE(6927), 1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6969), 1, sym_namespace_export, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -235198,7 +235273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -235212,77 +235287,412 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [27091] = 31, + [27165] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4537), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4540), 1, + ACTIONS(4538), 1, anon_sym_RBRACE, - ACTIONS(4542), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4545), 1, - anon_sym_LBRACK, + ACTIONS(4542), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(4546), 1, + anon_sym_static, ACTIONS(4548), 1, + anon_sym_readonly, + ACTIONS(4552), 1, + anon_sym_declare, + ACTIONS(4556), 1, + anon_sym_abstract, + STATE(2161), 1, + sym_comment, + STATE(2192), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, + aux_sym_export_statement_repeat1, + STATE(3389), 1, + sym_method_definition, + STATE(3429), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3525), 1, + sym_override_modifier, + STATE(3548), 1, + sym_decorator, + STATE(3819), 1, + sym__property_name, + STATE(5481), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5809), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4378), 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, + [27282] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4554), 1, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4563), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4566), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4569), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4575), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4581), 1, - anon_sym_override, - ACTIONS(4584), 1, + ACTIONS(4556), 1, anon_sym_abstract, - STATE(3279), 1, + ACTIONS(4558), 1, + anon_sym_RBRACE, + STATE(2162), 1, + sym_comment, + STATE(2194), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, - ACTIONS(4557), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4560), 2, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5809), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4378), 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, + [27399] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4562), 1, + anon_sym_RBRACE, + ACTIONS(4564), 1, + anon_sym_LBRACK, + ACTIONS(4566), 1, + anon_sym_async, + ACTIONS(4568), 1, + anon_sym_static, + ACTIONS(4570), 1, + anon_sym_readonly, + ACTIONS(4576), 1, + anon_sym_override, + STATE(2163), 1, + sym_comment, + STATE(3471), 1, + sym_accessibility_modifier, + STATE(3523), 1, + sym_override_modifier, + STATE(4547), 1, + sym__property_name, + STATE(5685), 1, + aux_sym_object_pattern_repeat1, + STATE(6207), 1, + aux_sym_object_repeat1, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(4572), 2, anon_sym_get, anon_sym_set, - STATE(2160), 2, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4574), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5680), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6204), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4560), 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, + [27510] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, + anon_sym_LBRACK, + ACTIONS(4580), 1, + anon_sym_RBRACE, + ACTIONS(4582), 1, + anon_sym_async, + ACTIONS(4584), 1, + anon_sym_static, + ACTIONS(4586), 1, + anon_sym_readonly, + ACTIONS(4592), 1, + anon_sym_override, + STATE(2164), 1, sym_comment, + STATE(3471), 1, + sym_accessibility_modifier, + STATE(3523), 1, + sym_override_modifier, + STATE(4547), 1, + sym__property_name, + STATE(5685), 1, + aux_sym_object_pattern_repeat1, + STATE(6207), 1, + aux_sym_object_repeat1, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4588), 2, + anon_sym_get, + anon_sym_set, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4590), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5680), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6204), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4578), 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, + [27621] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(4546), 1, + anon_sym_static, + ACTIONS(4548), 1, + anon_sym_readonly, + ACTIONS(4552), 1, + anon_sym_declare, + ACTIONS(4556), 1, + anon_sym_abstract, + ACTIONS(4594), 1, + anon_sym_RBRACE, + STATE(2165), 1, + sym_comment, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(3980), 2, + STATE(3292), 1, + aux_sym_export_statement_repeat1, + STATE(3389), 1, + sym_method_definition, + STATE(3429), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3525), 1, + sym_override_modifier, + STATE(3548), 1, + sym_decorator, + STATE(3819), 1, + sym__property_name, + STATE(5481), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4578), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4534), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235296,56 +235706,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27206] = 32, + [27738] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4589), 1, - anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - STATE(2160), 1, + ACTIONS(4596), 1, + anon_sym_RBRACE, + STATE(2166), 1, + sym_comment, + STATE(2191), 1, aux_sym_class_body_repeat1, - STATE(2161), 1, + STATE(3292), 1, + aux_sym_export_statement_repeat1, + STATE(3389), 1, + sym_method_definition, + STATE(3429), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3525), 1, + sym_override_modifier, + STATE(3548), 1, + sym_decorator, + STATE(3819), 1, + sym__property_name, + STATE(5481), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4550), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5809), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4378), 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, + [27855] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, + anon_sym_async, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(4546), 1, + anon_sym_static, + ACTIONS(4548), 1, + anon_sym_readonly, + ACTIONS(4552), 1, + anon_sym_declare, + ACTIONS(4556), 1, + anon_sym_abstract, + ACTIONS(4598), 1, + anon_sym_RBRACE, + STATE(2167), 1, sym_comment, - STATE(3279), 1, + STATE(2174), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235353,21 +235848,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235381,7 +235876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27323] = 29, + [27972] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -235398,57 +235893,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4611), 1, - anon_sym_RBRACE, - ACTIONS(4613), 1, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4615), 1, + ACTIONS(4602), 1, + anon_sym_RBRACE, + ACTIONS(4604), 1, anon_sym_async, - ACTIONS(4617), 1, + ACTIONS(4606), 1, anon_sym_static, - ACTIONS(4619), 1, + ACTIONS(4608), 1, anon_sym_readonly, - ACTIONS(4625), 1, + ACTIONS(4614), 1, anon_sym_override, - STATE(2162), 1, + STATE(2168), 1, sym_comment, - STATE(3468), 1, + STATE(3471), 1, sym_accessibility_modifier, - STATE(3530), 1, + STATE(3523), 1, sym_override_modifier, - STATE(4583), 1, + STATE(4547), 1, sym__property_name, - STATE(5743), 1, + STATE(5685), 1, aux_sym_object_pattern_repeat1, - STATE(5792), 1, + STATE(6207), 1, aux_sym_object_repeat1, - STATE(7130), 1, + STATE(7181), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4621), 2, + ACTIONS(4610), 2, anon_sym_get, anon_sym_set, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4623), 3, + ACTIONS(4612), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5739), 3, + STATE(5680), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5740), 3, + STATE(6204), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4609), 14, + ACTIONS(4600), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235463,56 +235958,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27434] = 32, + [28083] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4627), 1, + ACTIONS(4616), 1, anon_sym_RBRACE, - STATE(2163), 1, + STATE(2169), 1, sym_comment, - STATE(2181), 1, + STATE(2182), 1, aux_sym_class_body_repeat1, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235520,21 +236015,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235548,56 +236043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27551] = 32, + [28200] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4629), 1, + ACTIONS(4618), 1, anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2164), 1, + STATE(2170), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235605,21 +236100,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235633,56 +236128,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27668] = 32, + [28317] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4631), 1, + ACTIONS(4620), 1, anon_sym_RBRACE, - STATE(2165), 1, + STATE(2171), 1, sym_comment, - STATE(2186), 1, + STATE(2190), 1, aux_sym_class_body_repeat1, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235690,21 +236185,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235718,138 +236213,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27785] = 29, + [28434] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_RBRACE, - ACTIONS(4637), 1, - anon_sym_async, - ACTIONS(4639), 1, - anon_sym_static, - ACTIONS(4641), 1, - anon_sym_readonly, - ACTIONS(4647), 1, - anon_sym_override, - STATE(2166), 1, - sym_comment, - STATE(3468), 1, - sym_accessibility_modifier, - STATE(3530), 1, - sym_override_modifier, - STATE(4583), 1, - sym__property_name, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - STATE(5792), 1, - aux_sym_object_repeat1, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4643), 2, - anon_sym_get, - anon_sym_set, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4645), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5739), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5740), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4633), 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, - [27896] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4649), 1, + ACTIONS(4622), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2170), 1, aux_sym_class_body_repeat1, - STATE(2167), 1, + STATE(2172), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235857,21 +236270,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235885,56 +236298,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28013] = 32, + [28551] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4651), 1, + ACTIONS(4624), 1, anon_sym_RBRACE, - STATE(2168), 1, + STATE(2173), 1, sym_comment, - STATE(2170), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -235942,21 +236355,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235970,56 +236383,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28130] = 32, + [28668] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4653), 1, + ACTIONS(4626), 1, anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2169), 1, + STATE(2174), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236027,21 +236440,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236055,56 +236468,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28247] = 32, + [28785] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4655), 1, + ACTIONS(4628), 1, anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2170), 1, + STATE(2175), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236112,21 +236525,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236140,7 +236553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28364] = 29, + [28902] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236157,57 +236570,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4659), 1, + ACTIONS(4632), 1, anon_sym_RBRACE, - ACTIONS(4661), 1, + ACTIONS(4634), 1, anon_sym_async, - ACTIONS(4663), 1, + ACTIONS(4636), 1, anon_sym_static, - ACTIONS(4665), 1, + ACTIONS(4638), 1, anon_sym_readonly, - ACTIONS(4671), 1, + ACTIONS(4644), 1, anon_sym_override, - STATE(2171), 1, + STATE(2176), 1, sym_comment, - STATE(3468), 1, + STATE(3471), 1, sym_accessibility_modifier, - STATE(3530), 1, + STATE(3523), 1, sym_override_modifier, - STATE(4583), 1, + STATE(4547), 1, sym__property_name, - STATE(5743), 1, + STATE(5685), 1, aux_sym_object_pattern_repeat1, - STATE(6146), 1, + STATE(6207), 1, aux_sym_object_repeat1, - STATE(7130), 1, + STATE(7181), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4667), 2, + ACTIONS(4640), 2, anon_sym_get, anon_sym_set, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4669), 3, + ACTIONS(4642), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5739), 3, + STATE(5680), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6145), 3, + STATE(6204), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4657), 14, + ACTIONS(4630), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236222,56 +236635,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28475] = 32, + [29013] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4673), 1, + ACTIONS(4646), 1, anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2172), 1, + STATE(2177), 1, sym_comment, - STATE(3279), 1, + STATE(2180), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236279,21 +236692,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236307,56 +236720,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28592] = 32, + [29130] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4675), 1, + ACTIONS(4648), 1, anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2173), 1, + STATE(2178), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236364,21 +236777,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236392,56 +236805,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28709] = 32, + [29247] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4652), 1, + anon_sym_RBRACE, + ACTIONS(4654), 1, + anon_sym_async, + ACTIONS(4656), 1, + anon_sym_static, + ACTIONS(4658), 1, + anon_sym_readonly, + ACTIONS(4664), 1, anon_sym_override, - ACTIONS(4587), 1, + STATE(2179), 1, + sym_comment, + STATE(3471), 1, + sym_accessibility_modifier, + STATE(3523), 1, + sym_override_modifier, + STATE(4547), 1, + sym__property_name, + STATE(5685), 1, + aux_sym_object_pattern_repeat1, + STATE(6207), 1, + aux_sym_object_repeat1, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4660), 2, + anon_sym_get, + anon_sym_set, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4662), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5680), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6204), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4650), 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, + [29358] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4388), 1, + anon_sym_LBRACK, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4677), 1, + ACTIONS(4666), 1, anon_sym_RBRACE, - STATE(2167), 1, - aux_sym_class_body_repeat1, - STATE(2174), 1, + STATE(2180), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236449,21 +236944,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236477,7 +236972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28826] = 29, + [29475] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236494,57 +236989,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4670), 1, anon_sym_RBRACE, - ACTIONS(4683), 1, + ACTIONS(4672), 1, anon_sym_async, - ACTIONS(4685), 1, + ACTIONS(4674), 1, anon_sym_static, - ACTIONS(4687), 1, + ACTIONS(4676), 1, anon_sym_readonly, - ACTIONS(4693), 1, + ACTIONS(4682), 1, anon_sym_override, - STATE(2175), 1, + STATE(2181), 1, sym_comment, - STATE(3468), 1, + STATE(3471), 1, sym_accessibility_modifier, - STATE(3530), 1, + STATE(3523), 1, sym_override_modifier, - STATE(4583), 1, + STATE(4547), 1, sym__property_name, - STATE(5743), 1, + STATE(5685), 1, aux_sym_object_pattern_repeat1, - STATE(6146), 1, + STATE(5700), 1, aux_sym_object_repeat1, - STATE(7130), 1, + STATE(7181), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4689), 2, + ACTIONS(4678), 2, anon_sym_get, anon_sym_set, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4691), 3, + ACTIONS(4680), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5739), 3, + STATE(5680), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6145), 3, + STATE(5682), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4679), 14, + ACTIONS(4668), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236559,56 +237054,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28937] = 32, + [29586] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4695), 1, + ACTIONS(4684), 1, anon_sym_RBRACE, - STATE(2173), 1, - aux_sym_class_body_repeat1, - STATE(2176), 1, + STATE(2182), 1, sym_comment, - STATE(3279), 1, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236616,21 +237111,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236644,56 +237139,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29054] = 32, + [29703] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4697), 1, + ACTIONS(4686), 1, anon_sym_RBRACE, - STATE(2177), 1, + STATE(2183), 1, sym_comment, - STATE(2187), 1, + STATE(2189), 1, aux_sym_class_body_repeat1, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -236701,21 +237196,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236729,163 +237224,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29171] = 32, + [29820] = 31, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4691), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4694), 1, + anon_sym_RBRACE, + ACTIONS(4696), 1, anon_sym_SEMI, - ACTIONS(4593), 1, - anon_sym_async, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(4597), 1, - anon_sym_static, - ACTIONS(4599), 1, - anon_sym_readonly, - ACTIONS(4603), 1, - anon_sym_declare, - ACTIONS(4607), 1, - anon_sym_abstract, ACTIONS(4699), 1, - anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2178), 1, - sym_comment, - STATE(3279), 1, - aux_sym_export_statement_repeat1, - STATE(3378), 1, - sym_method_definition, - STATE(3425), 1, - sym_class_static_block, - STATE(3463), 1, - sym_accessibility_modifier, - STATE(3528), 1, - sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3792), 1, - sym__property_name, - STATE(5623), 1, - sym_method_signature, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4601), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5976), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4376), 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, - [29288] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(4702), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(4705), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, - anon_sym_STAR, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4708), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4717), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4720), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4723), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4729), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4735), 1, + anon_sym_override, + ACTIONS(4738), 1, anon_sym_abstract, - ACTIONS(4701), 1, - anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2179), 1, - sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(4711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(4714), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4726), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(2184), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4732), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4688), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236899,84 +237308,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29405] = 32, + [29935] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, - anon_sym_STAR, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4743), 1, + anon_sym_RBRACE, + ACTIONS(4745), 1, anon_sym_async, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4747), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4749), 1, anon_sym_readonly, - ACTIONS(4603), 1, - anon_sym_declare, - ACTIONS(4607), 1, - anon_sym_abstract, - ACTIONS(4703), 1, - anon_sym_RBRACE, - STATE(2180), 1, + ACTIONS(4755), 1, + anon_sym_override, + STATE(2185), 1, sym_comment, - STATE(2189), 1, - aux_sym_class_body_repeat1, - STATE(3279), 1, - aux_sym_export_statement_repeat1, - STATE(3378), 1, - sym_method_definition, - STATE(3425), 1, - sym_class_static_block, - STATE(3463), 1, + STATE(3471), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3523), 1, sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3792), 1, + STATE(4547), 1, sym__property_name, - STATE(5623), 1, - sym_method_signature, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, + STATE(5685), 1, + aux_sym_object_pattern_repeat1, + STATE(5700), 1, + aux_sym_object_repeat1, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4751), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4753), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4376), 13, + STATE(5680), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5682), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4741), 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, @@ -236984,56 +237390,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29522] = 32, + [30046] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4705), 1, + ACTIONS(4757), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2178), 1, aux_sym_class_body_repeat1, - STATE(2181), 1, + STATE(2186), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237041,21 +237447,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237069,138 +237475,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29639] = 29, + [30163] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_LBRACK, - ACTIONS(4709), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_async, - ACTIONS(4713), 1, - anon_sym_static, - ACTIONS(4715), 1, - anon_sym_readonly, - ACTIONS(4721), 1, - anon_sym_override, - STATE(2182), 1, - sym_comment, - STATE(3468), 1, - sym_accessibility_modifier, - STATE(3530), 1, - sym_override_modifier, - STATE(4583), 1, - sym__property_name, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - STATE(6146), 1, - aux_sym_object_repeat1, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4717), 2, - anon_sym_get, - anon_sym_set, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4719), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5739), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6145), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4707), 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, - [29750] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4723), 1, + ACTIONS(4759), 1, anon_sym_RBRACE, - STATE(2172), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2183), 1, + STATE(2187), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237208,21 +237532,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237236,56 +237560,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29867] = 32, + [30280] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4725), 1, + ACTIONS(4761), 1, anon_sym_RBRACE, - STATE(2169), 1, + STATE(2173), 1, aux_sym_class_body_repeat1, - STATE(2184), 1, + STATE(2188), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237293,21 +237617,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237321,56 +237645,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29984] = 32, + [30397] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4727), 1, + ACTIONS(4763), 1, anon_sym_RBRACE, - STATE(2179), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2185), 1, + STATE(2189), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237378,21 +237702,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237406,56 +237730,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30101] = 32, + [30514] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4729), 1, + ACTIONS(4765), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2186), 1, + STATE(2190), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237463,21 +237787,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237491,56 +237815,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30218] = 32, + [30631] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4731), 1, + ACTIONS(4767), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2187), 1, + STATE(2191), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237548,21 +237872,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237576,56 +237900,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30335] = 32, + [30748] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4733), 1, + ACTIONS(4769), 1, anon_sym_RBRACE, - STATE(2164), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2188), 1, + STATE(2192), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237633,21 +237957,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237661,56 +237985,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30452] = 32, + [30865] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4735), 1, + ACTIONS(4771), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2165), 1, aux_sym_class_body_repeat1, - STATE(2189), 1, + STATE(2193), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237718,21 +238042,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237746,81 +238070,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30569] = 29, + [30982] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_RBRACE, - ACTIONS(4741), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4743), 1, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4745), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4751), 1, - anon_sym_override, - STATE(2190), 1, + ACTIONS(4552), 1, + anon_sym_declare, + ACTIONS(4556), 1, + anon_sym_abstract, + ACTIONS(4773), 1, + anon_sym_RBRACE, + STATE(2184), 1, + aux_sym_class_body_repeat1, + STATE(2194), 1, sym_comment, - STATE(3468), 1, + STATE(3292), 1, + aux_sym_export_statement_repeat1, + STATE(3389), 1, + sym_method_definition, + STATE(3429), 1, + sym_class_static_block, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3530), 1, + STATE(3525), 1, sym_override_modifier, - STATE(4583), 1, + STATE(3548), 1, + sym_decorator, + STATE(3819), 1, sym__property_name, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - STATE(6146), 1, - aux_sym_object_repeat1, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5481), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4747), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4749), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5739), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6145), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4737), 14, + STATE(5809), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4378), 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, @@ -237828,56 +238155,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30680] = 32, + [31099] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4753), 1, + ACTIONS(4775), 1, anon_sym_RBRACE, - STATE(2161), 1, - aux_sym_class_body_repeat1, - STATE(2191), 1, + STATE(2195), 1, sym_comment, - STATE(3279), 1, + STATE(2200), 1, + aux_sym_class_body_repeat1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237885,21 +238212,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237913,56 +238240,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30797] = 32, + [31216] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4755), 1, + ACTIONS(4777), 1, anon_sym_RBRACE, - STATE(2178), 1, + STATE(2187), 1, aux_sym_class_body_repeat1, - STATE(2192), 1, + STATE(2196), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -237970,21 +238297,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237998,56 +238325,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30914] = 32, + [31333] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4757), 1, + ACTIONS(4779), 1, anon_sym_RBRACE, - STATE(2193), 1, - sym_comment, - STATE(2198), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(3279), 1, + STATE(2197), 1, + sym_comment, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -238055,21 +238382,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238083,81 +238410,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31031] = 29, + [31450] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, - anon_sym_RBRACE, - ACTIONS(4763), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4536), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4765), 1, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4767), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4773), 1, - anon_sym_override, - STATE(2194), 1, + ACTIONS(4552), 1, + anon_sym_declare, + ACTIONS(4556), 1, + anon_sym_abstract, + ACTIONS(4781), 1, + anon_sym_RBRACE, + STATE(2197), 1, + aux_sym_class_body_repeat1, + STATE(2198), 1, sym_comment, - STATE(3468), 1, + STATE(3292), 1, + aux_sym_export_statement_repeat1, + STATE(3389), 1, + sym_method_definition, + STATE(3429), 1, + sym_class_static_block, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3530), 1, + STATE(3525), 1, sym_override_modifier, - STATE(4583), 1, + STATE(3548), 1, + sym_decorator, + STATE(3819), 1, sym__property_name, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - STATE(6146), 1, - aux_sym_object_repeat1, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5481), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4769), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4771), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5739), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6145), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4759), 14, + STATE(5809), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4378), 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, @@ -238165,56 +238495,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31142] = 32, + [31567] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4775), 1, + ACTIONS(4783), 1, anon_sym_RBRACE, - STATE(2160), 1, + STATE(2175), 1, aux_sym_class_body_repeat1, - STATE(2195), 1, + STATE(2199), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -238222,21 +238552,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238250,56 +238580,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31259] = 32, + [31684] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4388), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(4536), 1, anon_sym_STAR, - ACTIONS(4591), 1, + ACTIONS(4540), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4542), 1, anon_sym_async, - ACTIONS(4595), 1, + ACTIONS(4544), 1, anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4546), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_readonly, - ACTIONS(4603), 1, + ACTIONS(4552), 1, anon_sym_declare, - ACTIONS(4607), 1, + ACTIONS(4556), 1, anon_sym_abstract, - ACTIONS(4777), 1, + ACTIONS(4785), 1, anon_sym_RBRACE, - STATE(2195), 1, + STATE(2184), 1, aux_sym_class_body_repeat1, - STATE(2196), 1, + STATE(2200), 1, sym_comment, - STATE(3279), 1, + STATE(3292), 1, aux_sym_export_statement_repeat1, - STATE(3378), 1, + STATE(3389), 1, sym_method_definition, - STATE(3425), 1, + STATE(3429), 1, sym_class_static_block, STATE(3463), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3525), 1, sym_override_modifier, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3792), 1, + STATE(3819), 1, sym__property_name, - STATE(5623), 1, + STATE(5481), 1, sym_method_signature, ACTIONS(3896), 2, anon_sym_PLUS, @@ -238307,21 +238637,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4550), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4554), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, + STATE(5809), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4376), 13, + ACTIONS(4378), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238335,84 +238665,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31376] = 32, + [31801] = 31, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2665), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2938), 1, + anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, + anon_sym_let, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, + anon_sym_declare, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4508), 1, + anon_sym_type, + ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4522), 1, + anon_sym_module, + ACTIONS(4787), 1, + anon_sym_EQ, + STATE(2201), 1, + sym_comment, + STATE(4959), 1, + aux_sym_export_statement_repeat1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, + sym_export_clause, + STATE(5608), 1, + sym_decorator, + STATE(6969), 1, + sym_namespace_export, + ACTIONS(4520), 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(5246), 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, + [31915] = 32, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2665), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2938), 1, + anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, + anon_sym_let, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, + anon_sym_declare, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4508), 1, + anon_sym_type, + ACTIONS(4510), 1, + anon_sym_EQ, + ACTIONS(4512), 1, + anon_sym_as, + ACTIONS(4522), 1, + anon_sym_module, + STATE(2202), 1, + sym_comment, + STATE(4959), 1, + aux_sym_export_statement_repeat1, + STATE(5242), 1, + sym_declaration, + STATE(5245), 1, + sym_internal_module, + STATE(5499), 1, + sym_export_clause, + STATE(5608), 1, + sym_decorator, + STATE(6969), 1, + sym_namespace_export, + ACTIONS(4789), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4520), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5246), 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, + [32031] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2203), 1, + sym_comment, + ACTIONS(2205), 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(2207), 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, + [32093] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2204), 1, + sym_comment, + ACTIONS(2249), 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(2251), 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, + [32155] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_LT, + STATE(2205), 1, + sym_comment, + STATE(2243), 1, + sym_type_arguments, + STATE(2244), 1, + sym_arguments, + ACTIONS(4167), 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(4157), 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, + [32226] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_LT, + ACTIONS(4803), 1, + anon_sym_DOT, + STATE(2206), 1, + sym_comment, + STATE(2269), 1, + sym_arguments, + STATE(2274), 1, + sym_type_arguments, + ACTIONS(4799), 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(4801), 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, + [32297] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_DOT, + STATE(2207), 1, + sym_comment, + STATE(2231), 1, + sym_type_arguments, + STATE(2236), 1, + sym_arguments, + ACTIONS(4805), 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(4807), 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, + [32368] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_LT, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4819), 1, + anon_sym_QMARK_DOT, + STATE(2208), 1, + sym_comment, + STATE(2249), 1, + sym_type_arguments, + STATE(2505), 1, + sym_arguments, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4811), 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(4813), 27, + 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_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, + [32445] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4797), 1, + anon_sym_LT, + ACTIONS(4823), 1, + anon_sym_DOT, + ACTIONS(4825), 1, + anon_sym_is, + STATE(2209), 1, + sym_comment, + STATE(2385), 1, + sym_type_arguments, + ACTIONS(4821), 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(4202), 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, + anon_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, + [32514] = 26, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, - anon_sym_STAR, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4829), 1, anon_sym_async, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(4597), 1, + ACTIONS(4831), 1, anon_sym_static, - ACTIONS(4599), 1, + ACTIONS(4833), 1, anon_sym_readonly, - ACTIONS(4603), 1, - anon_sym_declare, - ACTIONS(4607), 1, - anon_sym_abstract, - ACTIONS(4779), 1, - anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2197), 1, + ACTIONS(4839), 1, + anon_sym_override, + STATE(2210), 1, sym_comment, - STATE(3279), 1, - aux_sym_export_statement_repeat1, - STATE(3378), 1, - sym_method_definition, - STATE(3425), 1, - sym_class_static_block, - STATE(3463), 1, + STATE(3471), 1, sym_accessibility_modifier, - STATE(3528), 1, + STATE(3523), 1, sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3792), 1, + STATE(4547), 1, sym__property_name, - STATE(5623), 1, - sym_method_signature, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3898), 2, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4601), 2, + ACTIONS(4064), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4835), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, + ACTIONS(4837), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5976), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4376), 13, + STATE(6729), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(6875), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4827), 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, @@ -238420,267 +239330,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31493] = 32, - ACTIONS(3), 1, + [32617] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2211), 1, + sym_comment, + ACTIONS(4356), 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(4841), 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, + [32677] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4797), 1, + anon_sym_LT, + ACTIONS(4823), 1, + anon_sym_DOT, + STATE(2212), 1, + sym_comment, + STATE(2385), 1, + sym_type_arguments, + ACTIONS(4821), 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(4202), 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, + anon_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, + [32743] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4825), 1, + anon_sym_is, + STATE(2213), 1, + sym_comment, + ACTIONS(4843), 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(4845), 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, + [32805] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym_comment, + STATE(2502), 1, + sym_statement_block, + ACTIONS(2067), 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(2071), 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, + [32869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, - anon_sym_STAR, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, - anon_sym_async, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(4597), 1, - anon_sym_static, - ACTIONS(4599), 1, - anon_sym_readonly, - ACTIONS(4603), 1, - anon_sym_declare, - ACTIONS(4607), 1, - anon_sym_abstract, - ACTIONS(4781), 1, - anon_sym_RBRACE, - STATE(2160), 1, - aux_sym_class_body_repeat1, - STATE(2198), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2215), 1, sym_comment, - STATE(3279), 1, - aux_sym_export_statement_repeat1, - STATE(3378), 1, - sym_method_definition, - STATE(3425), 1, - sym_class_static_block, - STATE(3463), 1, - sym_accessibility_modifier, - STATE(3528), 1, - sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3792), 1, - sym__property_name, - STATE(5623), 1, - sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(4329), 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, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4601), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5976), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4376), 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, - [31610] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(4849), 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, + [32929] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4587), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4825), 1, + anon_sym_is, + STATE(2216), 1, + sym_comment, + ACTIONS(4851), 13, anon_sym_STAR, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, - anon_sym_async, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(4597), 1, - anon_sym_static, - ACTIONS(4599), 1, - anon_sym_readonly, - ACTIONS(4603), 1, - anon_sym_declare, - ACTIONS(4607), 1, - anon_sym_abstract, - ACTIONS(4783), 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(4853), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2197), 1, - aux_sym_class_body_repeat1, - STATE(2199), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [32991] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4859), 1, + anon_sym_is, + STATE(2217), 1, sym_comment, - STATE(3279), 1, - aux_sym_export_statement_repeat1, - STATE(3378), 1, - sym_method_definition, - STATE(3425), 1, - sym_class_static_block, - STATE(3463), 1, - sym_accessibility_modifier, - STATE(3528), 1, - sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3792), 1, - sym__property_name, - STATE(5623), 1, - sym_method_signature, - ACTIONS(3896), 2, + ACTIONS(4855), 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(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4601), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5976), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4376), 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, - [31727] = 31, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4857), 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, + [33053] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4502), 1, + STATE(2218), 1, + sym_comment, + ACTIONS(1980), 13, anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_default, - ACTIONS(4506), 1, - anon_sym_type, - ACTIONS(4510), 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(2030), 33, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4520), 1, - anon_sym_module, - ACTIONS(4785), 1, - anon_sym_EQ, - STATE(2200), 1, - sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, - sym_export_clause, - STATE(6927), 1, - sym_namespace_export, - ACTIONS(4518), 9, - sym__automatic_semicolon, + 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, - STATE(5171), 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, - [31841] = 5, + 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, + anon_sym_is, + [33113] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2201), 1, + STATE(2219), 1, sym_comment, - ACTIONS(2183), 14, + ACTIONS(2205), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238695,20 +239800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(2185), 34, - sym__automatic_semicolon, + ACTIONS(2207), 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, @@ -238729,99 +239832,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [31903] = 32, + anon_sym_implements, + [33173] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4502), 1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + ACTIONS(4861), 1, + anon_sym_DOT, + STATE(2220), 1, + sym_comment, + STATE(2502), 1, + sym_statement_block, + ACTIONS(2067), 13, anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_default, - ACTIONS(4506), 1, - anon_sym_type, - ACTIONS(4508), 1, - anon_sym_EQ, - ACTIONS(4510), 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(2071), 30, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4520), 1, - anon_sym_module, - STATE(2202), 1, - sym_comment, - STATE(4878), 1, - sym_internal_module, - STATE(5318), 1, - sym_declaration, - STATE(5382), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5549), 1, - sym_export_clause, - STATE(6927), 1, - sym_namespace_export, - ACTIONS(4787), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4518), 7, - sym__automatic_semicolon, + anon_sym_else, anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + 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, - STATE(5171), 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, - [32019] = 5, + [33239] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2203), 1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + ACTIONS(4863), 1, + anon_sym_DOT, + STATE(2221), 1, sym_comment, - ACTIONS(2251), 14, + STATE(2502), 1, + sym_statement_block, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238835,12 +239918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2253), 34, + ACTIONS(2071), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, @@ -238848,9 +239929,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -238869,26 +239948,22 @@ 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, - [32081] = 10, + [33305] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, ACTIONS(4793), 1, - anon_sym_DOT, - ACTIONS(4795), 1, - anon_sym_LT, - STATE(2204), 1, + anon_sym_LPAREN, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + STATE(2222), 1, sym_comment, - STATE(2324), 1, + STATE(2441), 2, + sym_template_string, sym_arguments, - STATE(2325), 1, - sym_type_arguments, - ACTIONS(4147), 12, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238899,9 +239974,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(4143), 30, + ACTIONS(4867), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -238912,6 +239988,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, @@ -238928,34 +240005,16 @@ 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, - [32152] = 13, + [33371] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4795), 1, - anon_sym_LT, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4805), 1, - anon_sym_QMARK_DOT, - STATE(2205), 1, + STATE(2223), 1, sym_comment, - STATE(2382), 1, - sym_type_arguments, - STATE(2391), 1, - sym_arguments, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4797), 12, + ACTIONS(4871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238966,18 +240025,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(4799), 27, + ACTIONS(4873), 33, 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, @@ -238995,23 +240059,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, - [32229] = 9, + anon_sym_is, + [33431] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4795), 1, - anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_DOT, - ACTIONS(4811), 1, - anon_sym_is, - STATE(2206), 1, + STATE(2224), 1, sym_comment, - STATE(2276), 1, - sym_type_arguments, - ACTIONS(4807), 12, + ACTIONS(4348), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239022,9 +240080,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(4202), 31, + anon_sym_QMARK, + ACTIONS(4875), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239036,6 +240096,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, @@ -239056,24 +240117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32298] = 10, + [33491] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4795), 1, - anon_sym_LT, - ACTIONS(4817), 1, - anon_sym_DOT, - STATE(2207), 1, + STATE(2225), 1, sym_comment, - STATE(2334), 1, - sym_arguments, - STATE(2335), 1, - sym_type_arguments, - ACTIONS(4813), 12, + ACTIONS(2249), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239084,19 +240135,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(4815), 30, + anon_sym_QMARK, + ACTIONS(2251), 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, @@ -239117,101 +240172,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32369] = 26, - ACTIONS(3), 1, - aux_sym_comment_token1, + [33551] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4797), 1, + anon_sym_LT, + STATE(2226), 1, + sym_comment, + STATE(2371), 1, + sym_type_arguments, + ACTIONS(4855), 12, anon_sym_STAR, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4857), 32, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_LBRACK, - ACTIONS(4821), 1, - anon_sym_async, - ACTIONS(4823), 1, - anon_sym_static, - ACTIONS(4825), 1, - anon_sym_readonly, - ACTIONS(4831), 1, - anon_sym_override, - STATE(2208), 1, - sym_comment, - STATE(3468), 1, - sym_accessibility_modifier, - STATE(3530), 1, - sym_override_modifier, - STATE(4583), 1, - sym__property_name, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4064), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4827), 2, - anon_sym_get, - anon_sym_set, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4829), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6775), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(6820), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(4819), 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, - [32472] = 10, + 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, + [33615] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4795), 1, - anon_sym_LT, - ACTIONS(4837), 1, - anon_sym_DOT, - STATE(2209), 1, + ACTIONS(4877), 1, + sym__automatic_semicolon, + STATE(2227), 1, sym_comment, - STATE(2326), 1, - sym_arguments, - STATE(2331), 1, - sym_type_arguments, - ACTIONS(4833), 12, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239222,19 +240251,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(4835), 30, + ACTIONS(2113), 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, @@ -239253,22 +240285,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32543] = 8, + [33679] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4795), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2228), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4883), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33796] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, - STATE(2210), 1, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2229), 1, sym_comment, - STATE(2276), 1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4927), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33913] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - ACTIONS(4807), 12, + STATE(2230), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4929), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34030] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2231), 1, + sym_comment, + ACTIONS(4931), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239279,9 +240553,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(4202), 31, + ACTIONS(4933), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239293,6 +240568,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, @@ -239313,14 +240589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32609] = 5, + [34089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2211), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4345), 14, + ACTIONS(4935), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239334,8 +240610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4839), 32, + ACTIONS(4937), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239368,28 +240643,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32669] = 5, + [34148] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2212), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2233), 1, sym_comment, - ACTIONS(1972), 13, + ACTIONS(4939), 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(2030), 33, + ACTIONS(4941), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239420,17 +240699,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, - anon_sym_is, - [32729] = 5, + [34213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2213), 1, + STATE(2234), 1, sym_comment, - ACTIONS(2251), 14, + ACTIONS(4949), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239444,8 +240721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2253), 32, + ACTIONS(4951), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239478,16 +240754,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32789] = 6, + [34272] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4811), 1, - anon_sym_is, - STATE(2214), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2235), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4953), 17, + 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_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, + [34363] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2236), 1, sym_comment, - ACTIONS(4841), 13, + ACTIONS(4957), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239501,7 +240845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4843), 32, + ACTIONS(4959), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239534,14 +240878,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32851] = 5, + [34422] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2215), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2237), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4961), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34539] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4963), 1, + sym__automatic_semicolon, + STATE(2238), 1, sym_comment, - ACTIONS(4845), 13, + ACTIONS(2109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239555,7 +240984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4847), 33, + ACTIONS(2111), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239586,23 +241015,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, - anon_sym_is, - [32911] = 8, + [34600] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(4851), 1, - anon_sym_DOT, - STATE(2216), 1, + STATE(2239), 1, sym_comment, - STATE(2535), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(4949), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239616,18 +241037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 30, - sym__automatic_semicolon, + ACTIONS(4951), 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, anon_sym_PIPE_PIPE, @@ -239646,21 +241068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32977] = 8, + anon_sym_extends, + anon_sym_implements, + [34659] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOT, - STATE(2217), 1, + STATE(2240), 1, sym_comment, - STATE(2535), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(4965), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239674,18 +241091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 30, - sym__automatic_semicolon, + ACTIONS(4967), 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, anon_sym_PIPE_PIPE, @@ -239704,17 +241122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33043] = 6, + anon_sym_extends, + anon_sym_implements, + [34718] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_is, - STATE(2218), 1, + STATE(2241), 1, sym_comment, - ACTIONS(4855), 13, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239728,7 +241145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 32, + ACTIONS(4971), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239761,14 +241178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33105] = 5, + [34777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2219), 1, + STATE(2242), 1, sym_comment, - ACTIONS(2183), 14, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239782,8 +241199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2185), 32, + ACTIONS(4975), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239816,21 +241232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33165] = 8, + [34836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - STATE(2220), 1, + STATE(2243), 1, sym_comment, - STATE(2458), 2, - sym_template_string, - sym_arguments, - ACTIONS(4861), 13, + ACTIONS(4977), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239844,12 +241253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4863), 29, + ACTIONS(4979), 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, @@ -239872,20 +241282,18 @@ 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, - [33231] = 7, + [34895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(2221), 1, + STATE(2244), 1, sym_comment, - STATE(2535), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(4981), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239899,18 +241307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 31, - sym__automatic_semicolon, + ACTIONS(4983), 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, @@ -239930,19 +241338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33295] = 7, + anon_sym_extends, + anon_sym_implements, + [34954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4795), 1, - anon_sym_LT, - STATE(2222), 1, + STATE(2245), 1, sym_comment, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(4855), 12, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239953,9 +241358,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(4857), 32, + ACTIONS(4971), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -239988,14 +241394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33359] = 5, + [35013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2223), 1, + STATE(2246), 1, sym_comment, - ACTIONS(4343), 14, + ACTIONS(4985), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240009,8 +241415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4867), 32, + ACTIONS(4987), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240043,20 +241448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33419] = 5, + [35072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2224), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + STATE(2247), 1, sym_comment, - ACTIONS(4349), 14, + ACTIONS(4989), 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, @@ -240064,8 +241470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4869), 32, + ACTIONS(4991), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240098,16 +241503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33479] = 6, + [35133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4811), 1, - anon_sym_is, - STATE(2225), 1, + STATE(2248), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(4993), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240121,7 +241524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 32, + ACTIONS(4995), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240154,18 +241557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33541] = 7, + [35192] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4875), 1, - sym__automatic_semicolon, - STATE(2226), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + STATE(2249), 1, sym_comment, - ACTIONS(2067), 13, + STATE(2475), 1, + sym_arguments, + ACTIONS(4997), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240179,13 +241582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 31, + ACTIONS(4999), 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, @@ -240197,28 +241599,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [35255] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5003), 1, + anon_sym_RPAREN, + STATE(2222), 1, + sym_type_arguments, + STATE(2250), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + STATE(7304), 1, + sym_type_annotation, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [33605] = 5, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35380] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2227), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4877), 13, + ACTIONS(3186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240232,7 +241721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 32, + ACTIONS(3568), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240265,16 +241754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33664] = 6, + [35439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4885), 1, - anon_sym_LBRACK, - STATE(2228), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4881), 13, + ACTIONS(3200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240288,7 +241775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 31, + ACTIONS(3536), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240298,6 +241785,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, @@ -240320,14 +241808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33725] = 5, + [35498] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2229), 1, + ACTIONS(4877), 1, + sym__automatic_semicolon, + STATE(2253), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240341,7 +241831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 32, + ACTIONS(2113), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240372,132 +241862,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33784] = 38, + [35559] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4895), 1, - anon_sym_RPAREN, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5005), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2230), 1, + STATE(2254), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7328), 1, + STATE(7319), 1, sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33909] = 18, + [35684] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5014), 1, + anon_sym_RBRACE, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4941), 1, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + STATE(2255), 1, + sym_comment, + STATE(3534), 1, + sym_override_modifier, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2231), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [35779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2256), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(5025), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -240506,15 +242040,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(4939), 19, + ACTIONS(5027), 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, @@ -240528,260 +242070,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33994] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [35838] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2232), 1, + STATE(2257), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5029), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5031), 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, - ACTIONS(4946), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [35897] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2258), 1, + sym_comment, + ACTIONS(5033), 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(4944), 14, + ACTIONS(5035), 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, - [34089] = 30, + anon_sym_extends, + anon_sym_implements, + [35956] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_BANG, - STATE(2220), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2233), 1, + STATE(2259), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + STATE(7070), 1, + sym_type_annotation, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [34198] = 38, + [36081] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(4948), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2234), 1, + STATE(2260), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7298), 1, + STATE(7344), 1, sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34323] = 9, + [36206] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4805), 1, + ACTIONS(4819), 1, anon_sym_QMARK_DOT, - STATE(2235), 1, + STATE(2261), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(2151), 13, + ACTIONS(2153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240795,7 +242387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2153), 28, + ACTIONS(2155), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240824,32 +242416,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34390] = 8, + [36273] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4956), 1, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2236), 1, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2262), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5041), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [36390] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2263), 1, sym_comment, - ACTIONS(4950), 11, + ACTIONS(5043), 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(4952), 31, + ACTIONS(5045), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240880,15 +242551,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, - [34455] = 5, + [36449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2237), 1, + STATE(2264), 1, sym_comment, - ACTIONS(4877), 13, + ACTIONS(4855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240902,7 +242574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 32, + ACTIONS(4857), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -240935,184 +242607,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34514] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2238), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4960), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34631] = 38, + [36508] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(4962), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2239), 1, + STATE(2265), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7344), 1, + STATE(7392), 1, sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34756] = 5, + [36633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2240), 1, + STATE(2266), 1, sym_comment, - ACTIONS(4964), 13, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241126,7 +242715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4966), 32, + ACTIONS(5051), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241159,184 +242748,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34815] = 34, + [36692] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2241), 1, + STATE(2267), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4851), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4968), 5, + ACTIONS(4853), 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, - [34932] = 38, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [36751] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(4970), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2242), 1, + STATE(2268), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7305), 1, + STATE(7409), 1, sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35057] = 5, + [36876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2243), 1, + STATE(2269), 1, sym_comment, - ACTIONS(3222), 13, + ACTIONS(5055), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241350,7 +242910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 32, + ACTIONS(5057), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241383,14 +242943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35116] = 5, + [36935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2244), 1, + STATE(2270), 1, sym_comment, - ACTIONS(4972), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241404,7 +242964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 32, + ACTIONS(5061), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241437,14 +242997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35175] = 5, + [36994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2245), 1, + ACTIONS(5063), 1, + anon_sym_LBRACK, + STATE(2271), 1, sym_comment, - ACTIONS(2233), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241458,19 +243020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 32, - sym__automatic_semicolon, + ACTIONS(5061), 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_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -241490,98 +243050,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [35234] = 34, + anon_sym_extends, + anon_sym_implements, + [37055] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2246), 1, + STATE(2272), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4976), 5, + ACTIONS(5067), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [35351] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [37134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2247), 1, + STATE(2273), 1, sym_comment, - ACTIONS(2237), 13, + ACTIONS(5072), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241595,19 +243137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2239), 32, - sym__automatic_semicolon, + ACTIONS(5074), 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, @@ -241627,34 +243168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [35410] = 14, + anon_sym_extends, + anon_sym_implements, + [37193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4982), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2248), 1, + STATE(2274), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(5076), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241665,16 +243188,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(4980), 23, + ACTIONS(5078), 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, @@ -241690,100 +243220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [35487] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2249), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4985), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35604] = 6, + anon_sym_extends, + anon_sym_implements, + [37252] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4991), 1, - anon_sym_DOT, - STATE(2250), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + STATE(2275), 1, sym_comment, - ACTIONS(4987), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241797,7 +243247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4989), 31, + ACTIONS(4139), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241809,6 +243259,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, @@ -241827,30 +243278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35665] = 5, + [37313] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2251), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2276), 1, sym_comment, - ACTIONS(4993), 13, + ACTIONS(5080), 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(4995), 32, + ACTIONS(5082), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241881,16 +243335,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35724] = 5, + [37378] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2252), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2277), 1, sym_comment, - ACTIONS(4997), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5084), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [37495] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2278), 1, + sym_comment, + ACTIONS(5086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241904,7 +243440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4999), 32, + ACTIONS(5088), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -241937,16 +243473,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35783] = 5, + [37554] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2253), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5094), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2279), 1, sym_comment, - ACTIONS(5001), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -241955,23 +243518,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(5003), 32, + ACTIONS(5092), 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, @@ -241985,20 +243540,14 @@ 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, - [35842] = 5, + [37639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2254), 1, + STATE(2280), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242012,7 +243561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 32, + ACTIONS(5099), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242045,14 +243594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35901] = 5, + [37698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2255), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242066,7 +243615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5011), 32, + ACTIONS(5099), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242099,14 +243648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35960] = 5, + [37757] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2256), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242120,7 +243669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 32, + ACTIONS(5099), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242153,14 +243702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36019] = 5, + [37816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2257), 1, + STATE(2283), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5101), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242174,7 +243723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5019), 32, + ACTIONS(5103), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242207,14 +243756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36078] = 5, + [37875] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2258), 1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + STATE(2284), 1, sym_comment, - ACTIONS(5017), 13, + STATE(2533), 1, + sym_statement_block, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242228,10 +243781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5019), 32, + ACTIONS(2071), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -242259,16 +243811,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36137] = 5, + [37938] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2259), 1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + ACTIONS(5107), 1, + anon_sym_DOT, + STATE(2285), 1, sym_comment, - ACTIONS(4855), 13, + STATE(2533), 1, + sym_statement_block, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242282,10 +243839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 32, + ACTIONS(2071), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -242294,7 +243850,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, @@ -242313,16 +243868,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, - [36196] = 5, + [38003] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2260), 1, + STATE(2286), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(5101), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242336,7 +243890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5023), 32, + ACTIONS(5103), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242369,21 +243923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36255] = 6, + [38062] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - STATE(2261), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5025), 12, + ACTIONS(5101), 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, @@ -242391,7 +243944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 32, + ACTIONS(5103), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242424,14 +243977,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36316] = 5, + [38121] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2262), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2288), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5109), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [38238] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + ACTIONS(5111), 1, + anon_sym_DOT, + STATE(2289), 1, sym_comment, - ACTIONS(5021), 13, + STATE(2533), 1, + sym_statement_block, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242445,10 +244087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5023), 32, + ACTIONS(2071), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -242457,7 +244098,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, @@ -242476,16 +244116,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, - [36375] = 5, + [38303] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2263), 1, + STATE(2290), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(4939), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242499,7 +244138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 32, + ACTIONS(4941), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242532,14 +244171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36434] = 5, + [38362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2264), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(5113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242553,7 +244192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5023), 32, + ACTIONS(5115), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242586,68 +244225,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36493] = 5, + [38421] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2265), 1, - sym_comment, - ACTIONS(5033), 13, - anon_sym_STAR, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, + ACTIONS(4899), 1, anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5117), 1, + anon_sym_RPAREN, + STATE(2222), 1, + sym_type_arguments, + STATE(2292), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + STATE(7313), 1, + sym_type_annotation, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38546] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4815), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2293), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36552] = 5, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5119), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [38663] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2266), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(5121), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2294), 1, sym_comment, - ACTIONS(5033), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242658,50 +244437,37 @@ 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(5035), 32, + ACTIONS(4953), 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, - [36611] = 5, + [38744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2267), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242715,7 +244481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 32, + ACTIONS(5115), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242748,14 +244514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36670] = 5, + [38803] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2268), 1, + STATE(2296), 1, sym_comment, - ACTIONS(5037), 13, + ACTIONS(4843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242769,7 +244535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5039), 32, + ACTIONS(4845), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242802,14 +244568,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36729] = 5, + [38862] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2269), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2297), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5124), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [38979] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4857), 1, + anon_sym_extends, + STATE(2298), 1, sym_comment, - ACTIONS(5041), 13, + ACTIONS(5126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242823,7 +244674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5043), 32, + ACTIONS(5128), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242854,34 +244705,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36788] = 8, + [39040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2270), 1, + STATE(2299), 1, sym_comment, - ACTIONS(5045), 11, + ACTIONS(5113), 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(5047), 31, + ACTIONS(5115), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242912,21 +244758,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, - [36853] = 8, + [39099] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, + ACTIONS(4943), 1, anon_sym_AMP, - ACTIONS(4956), 1, + ACTIONS(4945), 1, anon_sym_PIPE, - ACTIONS(4958), 1, + ACTIONS(4947), 1, anon_sym_extends, - STATE(2271), 1, + STATE(2300), 1, sym_comment, - ACTIONS(5049), 11, + ACTIONS(5126), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242938,7 +244785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5051), 31, + ACTIONS(5128), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -242970,96 +244817,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36918] = 15, + [39164] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5057), 1, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2272), 1, + STATE(2301), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5130), 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, - [36997] = 8, + [39281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2273), 1, + STATE(2302), 1, sym_comment, - ACTIONS(5060), 11, + ACTIONS(5132), 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(5062), 31, + ACTIONS(5134), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243090,210 +244952,575 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37062] = 5, + [39340] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2274), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2303), 1, sym_comment, - ACTIONS(3236), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5136), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39457] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4895), 1, anon_sym_GT_GT, + ACTIONS(4899), 1, anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4955), 1, + anon_sym_BANG, + STATE(2222), 1, + sym_type_arguments, + STATE(2304), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3570), 32, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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_LBRACK, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [39562] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2305), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37121] = 38, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5138), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39679] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5064), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2275), 1, + STATE(2306), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7412), 1, - sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37246] = 5, + ACTIONS(5140), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39796] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2276), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4955), 1, + anon_sym_BANG, + STATE(2222), 1, + sym_type_arguments, + STATE(2307), 1, sym_comment, - ACTIONS(5066), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5068), 32, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [39903] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2308), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37305] = 5, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5142), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [40020] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + ACTIONS(5144), 1, + anon_sym_RBRACE, + STATE(2309), 1, + sym_comment, + STATE(3534), 1, + sym_override_modifier, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [40115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2277), 1, + STATE(2310), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(2085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243307,18 +245534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5062), 32, + ACTIONS(2087), 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, @@ -243338,16 +245566,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, - [37364] = 5, + anon_sym_PIPE_RBRACE, + [40174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2278), 1, + STATE(2311), 1, sym_comment, - ACTIONS(5070), 13, + ACTIONS(5147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243361,7 +245588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5072), 32, + ACTIONS(5149), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243394,32 +245621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37423] = 8, + [40233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2279), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5074), 11, + ACTIONS(5151), 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(5076), 31, + ACTIONS(5153), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243450,103 +245673,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37488] = 8, + [40292] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2280), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(5121), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2313), 1, sym_comment, - ACTIONS(5078), 11, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5080), 31, + ACTIONS(4953), 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_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, - [37553] = 8, + [40379] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4883), 1, - anon_sym_extends, - ACTIONS(4885), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(2281), 1, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5159), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2314), 1, sym_comment, - ACTIONS(4881), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5082), 11, + STATE(6286), 1, + sym_optional_chain, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 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(5084), 30, + ACTIONS(5157), 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_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -243562,17 +245805,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_implements, - [37618] = 5, + [40456] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2282), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5086), 13, + ACTIONS(2245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243586,18 +245827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 32, + ACTIONS(2247), 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, @@ -243617,124 +245859,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, - [37677] = 5, + anon_sym_PIPE_RBRACE, + [40515] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2283), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2316), 1, sym_comment, - ACTIONS(5090), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 32, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4953), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [37736] = 5, + [40614] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2284), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2317), 1, sym_comment, - ACTIONS(5094), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5096), 32, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [37795] = 5, + [40715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2285), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243748,7 +246030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5100), 32, + ACTIONS(5164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243781,14 +246063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37854] = 5, + [40774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2286), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243802,7 +246084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5096), 32, + ACTIONS(5168), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243835,14 +246117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37913] = 5, + [40833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2287), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243856,7 +246138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5100), 32, + ACTIONS(5172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243889,68 +246171,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37972] = 5, + [40892] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2288), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2321), 1, sym_comment, - ACTIONS(5102), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 32, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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_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, - [38031] = 5, + [40995] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2289), 1, + STATE(2322), 1, sym_comment, - ACTIONS(5106), 13, + ACTIONS(5174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243964,7 +246268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5108), 32, + ACTIONS(5176), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -243997,28 +246301,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38090] = 5, + [41054] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2290), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2323), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5178), 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(5112), 32, + ACTIONS(5180), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244049,16 +246357,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, - [38149] = 5, + [41119] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2291), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(5174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244072,7 +246379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 32, + ACTIONS(5176), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244105,15 +246412,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38208] = 5, + [41178] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2292), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(5121), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2325), 1, sym_comment, - ACTIONS(5106), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -244122,67 +246457,54 @@ 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(5108), 32, + ACTIONS(4953), 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, - [38267] = 6, + [41263] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4875), 1, - sym__automatic_semicolon, - STATE(2293), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2326), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(5182), 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(2095), 31, + ACTIONS(5184), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244214,14 +246536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38328] = 5, + [41328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2294), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244235,7 +246557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5112), 32, + ACTIONS(5188), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244268,18 +246590,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38387] = 6, + [41387] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5118), 1, - anon_sym_extends, - STATE(2295), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5121), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2328), 1, sym_comment, - ACTIONS(5114), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -244288,51 +246637,37 @@ 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(5116), 31, + ACTIONS(4953), 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_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, - [38448] = 6, + [41474] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4885), 1, - anon_sym_LBRACK, - STATE(2296), 1, + ACTIONS(5194), 1, + anon_sym_DOT, + STATE(2329), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244346,7 +246681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 31, + ACTIONS(5192), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244356,8 +246691,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, @@ -244378,14 +246713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38509] = 5, + [41535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2297), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(5186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244399,7 +246734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 32, + ACTIONS(5188), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244432,14 +246767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38568] = 5, + [41594] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2298), 1, + ACTIONS(5197), 1, + anon_sym_DOT, + STATE(2331), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244453,7 +246790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 32, + ACTIONS(5192), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244465,7 +246802,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, @@ -244486,60 +246822,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38627] = 23, + [41655] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5139), 1, - anon_sym_RBRACE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5144), 1, + ACTIONS(5019), 1, anon_sym_async, - ACTIONS(5146), 1, + ACTIONS(5021), 1, anon_sym_readonly, - STATE(2299), 1, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(2332), 1, sym_comment, - STATE(3516), 1, + STATE(3534), 1, sym_override_modifier, - STATE(3892), 1, + STATE(3907), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5720), 1, aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5023), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 18, + ACTIONS(4378), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244558,38 +246894,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38722] = 5, + [41750] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2300), 1, + ACTIONS(3568), 1, + anon_sym_extends, + STATE(2333), 1, sym_comment, - ACTIONS(3228), 13, + ACTIONS(5203), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5206), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2059), 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(3518), 32, + ACTIONS(2065), 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, @@ -244610,16 +246951,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, - [38781] = 5, + [41817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2301), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(5186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244633,7 +246973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 32, + ACTIONS(5188), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244666,14 +247006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38840] = 5, + [41876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2302), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244687,7 +247027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 32, + ACTIONS(5211), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244720,14 +247060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38899] = 5, + [41935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2303), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5150), 13, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244741,7 +247081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 32, + ACTIONS(5215), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244774,14 +247114,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38958] = 5, + [41994] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(2337), 1, + sym_comment, + STATE(3534), 1, + sym_override_modifier, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [42089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2304), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5154), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244795,7 +247207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5156), 32, + ACTIONS(5211), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244828,14 +247240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39017] = 5, + [42148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2305), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5158), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244849,7 +247261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5160), 32, + ACTIONS(5222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244882,14 +247294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39076] = 5, + [42207] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2306), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244903,7 +247315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 32, + ACTIONS(5222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -244936,88 +247348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39135] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2307), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4944), 12, - 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [39234] = 5, + [42266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2308), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245031,7 +247369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 32, + ACTIONS(5222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245064,124 +247402,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39293] = 34, + [42325] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_extends, + STATE(2342), 1, + sym_comment, + ACTIONS(5230), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5233), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2309), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5170), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39410] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5176), 1, - anon_sym_QMARK, - ACTIONS(5178), 1, - anon_sym_extends, - STATE(2310), 1, - sym_comment, - ACTIONS(5172), 13, + ACTIONS(5224), 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(5174), 30, + ACTIONS(5228), 28, 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, @@ -245203,193 +247460,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39473] = 34, + [42392] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2311), 1, + STATE(2343), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, + ACTIONS(4965), 3, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5180), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39590] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4967), 3, anon_sym_COMMA, - ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - ACTIONS(5182), 1, - anon_sym_RBRACE, - STATE(2312), 1, - sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [39685] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2313), 1, - sym_comment, - ACTIONS(3230), 13, + anon_sym_extends, + ACTIONS(4135), 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(3508), 32, + ACTIONS(4139), 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, @@ -245410,16 +247515,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, - [39744] = 5, + [42455] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2314), 1, + STATE(2344), 1, sym_comment, - ACTIONS(3232), 13, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245433,7 +247537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3506), 32, + ACTIONS(5240), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245466,45 +247570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39803] = 19, + [42514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5185), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2315), 1, + STATE(2345), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 11, + ACTIONS(5242), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -245513,178 +247588,50 @@ 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(4944), 18, - sym__ternary_qmark, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [39890] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(5185), 1, anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2316), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 19, + ACTIONS(5244), 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, - [39975] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2317), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 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_BQUOTE, anon_sym_satisfies, - [40078] = 5, + anon_sym_extends, + anon_sym_implements, + [42573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2318), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245698,7 +247645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5190), 32, + ACTIONS(5176), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245731,176 +247678,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40137] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2319), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 12, - 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [40238] = 38, + [42632] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5192), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2320), 1, + STATE(2347), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7443), 1, - sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40363] = 5, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 14, + 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_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [42727] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2321), 1, + STATE(2348), 1, sym_comment, - ACTIONS(4841), 13, + ACTIONS(3210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245914,7 +247771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4843), 32, + ACTIONS(3420), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245947,184 +247804,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40422] = 34, + [42786] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + STATE(2222), 1, sym_type_arguments, - STATE(2322), 1, + STATE(2349), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5194), 5, + ACTIONS(4953), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40539] = 38, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [42895] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5196), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2323), 1, + STATE(2350), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(7014), 1, - sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40664] = 5, + ACTIONS(5246), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [43012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2324), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246138,7 +247987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5178), 32, + ACTIONS(5215), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246171,28 +248020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40723] = 5, + [43071] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2325), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2352), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5248), 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(5200), 32, + ACTIONS(5250), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246223,16 +248076,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, - [40782] = 5, + [43136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2326), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5202), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246246,7 +248098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 32, + ACTIONS(5254), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246279,14 +248131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40841] = 5, + [43195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2327), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246300,7 +248152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5019), 32, + ACTIONS(5258), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246333,92 +248185,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40900] = 29, + [43254] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4905), 1, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_BANG, - STATE(2220), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5260), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2328), 1, + STATE(2355), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + STATE(7414), 1, + sym_type_annotation, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [41007] = 5, + [43379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2329), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5154), 13, + ACTIONS(5262), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246432,7 +248293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5156), 32, + ACTIONS(5264), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246465,91 +248326,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41066] = 28, + [43438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_BANG, - STATE(2220), 1, - sym_type_arguments, - STATE(2330), 1, + STATE(2357), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5266), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 11, + ACTIONS(5268), 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, - [41171] = 5, + anon_sym_extends, + anon_sym_implements, + [43497] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2331), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246563,7 +248401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5208), 32, + ACTIONS(5272), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246596,14 +248434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41230] = 5, + [43556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2332), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5210), 13, + ACTIONS(5274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246617,7 +248455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5212), 32, + ACTIONS(5276), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246650,97 +248488,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41289] = 34, + [43615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4943), 1, anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2333), 1, + STATE(2360), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5278), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5214), 5, + ACTIONS(5280), 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, - [41406] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [43676] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2334), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246754,7 +248564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5218), 32, + ACTIONS(5254), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246787,28 +248597,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41465] = 5, + [43735] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2335), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2362), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5282), 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(5222), 32, + ACTIONS(5284), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246839,34 +248653,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [41524] = 8, + [43800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2336), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5224), 11, + ACTIONS(5286), 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(5226), 31, + ACTIONS(5288), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246897,15 +248706,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, - [41589] = 5, + [43859] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2337), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5228), 13, + ACTIONS(3232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246919,7 +248729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5230), 32, + ACTIONS(3448), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246952,32 +248762,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41648] = 8, + [43918] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2338), 1, + ACTIONS(5294), 1, + anon_sym_DOT, + STATE(2365), 1, sym_comment, - ACTIONS(5232), 11, + ACTIONS(5290), 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(5234), 31, + ACTIONS(5292), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246989,7 +248797,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, @@ -247008,17 +248815,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, - [41713] = 6, + [43979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4857), 1, - anon_sym_extends, - STATE(2339), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5232), 13, + ACTIONS(5296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247032,7 +248838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5234), 31, + ACTIONS(5236), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247063,15 +248869,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, - [41774] = 5, + [44038] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2340), 1, + STATE(2367), 1, sym_comment, - ACTIONS(5236), 13, + ACTIONS(5266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247085,7 +248892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5238), 32, + ACTIONS(5268), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247118,38 +248925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41833] = 16, + [44097] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(5185), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2341), 1, + STATE(2368), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(5298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247160,37 +248943,50 @@ 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(4944), 20, + ACTIONS(5300), 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, - [41914] = 5, + anon_sym_extends, + anon_sym_implements, + [44156] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2342), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247204,7 +249000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5242), 32, + ACTIONS(5304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247237,97 +249033,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41973] = 34, + [44215] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2343), 1, + STATE(2370), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + STATE(7081), 1, + sym_type_annotation, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5244), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [42090] = 5, + [44340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2344), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5246), 13, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247341,7 +249141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5248), 32, + ACTIONS(5310), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247374,18 +249174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42149] = 7, + [44399] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2345), 1, + STATE(2372), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(5312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247399,9 +249195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 30, + ACTIONS(5314), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -247429,37 +249226,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42212] = 8, + [44458] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + ACTIONS(5316), 1, + anon_sym_RBRACE, + STATE(2373), 1, + sym_comment, + STATE(3534), 1, + sym_override_modifier, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [44553] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - anon_sym_DOT, - STATE(2346), 1, + ACTIONS(4943), 1, + anon_sym_AMP, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2374), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(5312), 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(2061), 29, + ACTIONS(5314), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -247468,6 +249337,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, @@ -247487,16 +249357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42277] = 6, + [44618] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5258), 1, - anon_sym_DOT, - STATE(2347), 1, + ACTIONS(4981), 1, + anon_sym_QMARK, + ACTIONS(4983), 1, + anon_sym_extends, + STATE(2375), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247510,7 +249382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 31, + ACTIONS(5321), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247518,10 +249390,10 @@ 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, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -247540,18 +249412,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, - [42338] = 6, + [44681] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5261), 1, - anon_sym_DOT, - STATE(2348), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247565,7 +249434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 31, + ACTIONS(5325), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247577,6 +249446,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, @@ -247597,14 +249467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42399] = 5, + [44740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2349), 1, + STATE(2377), 1, sym_comment, - ACTIONS(4877), 13, + ACTIONS(5327), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247618,7 +249488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 32, + ACTIONS(5329), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247651,97 +249521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42458] = 34, + [44799] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2350), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5264), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [42575] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2351), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247755,7 +249544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 32, + ACTIONS(5333), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247765,7 +249554,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, @@ -247788,97 +249576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42634] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2352), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5270), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [42751] = 5, + [44860] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2353), 1, + ACTIONS(5339), 1, + anon_sym_extends, + STATE(2379), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5335), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247892,7 +249599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 32, + ACTIONS(5337), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247923,30 +249630,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42810] = 5, + [44921] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2354), 1, + ACTIONS(5061), 1, + anon_sym_extends, + ACTIONS(5063), 1, + anon_sym_LBRACK, + STATE(2380), 1, sym_comment, - ACTIONS(5246), 13, + ACTIONS(5059), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5341), 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(5248), 32, + ACTIONS(5343), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247956,7 +249667,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, @@ -247977,353 +249687,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42869] = 34, + [44986] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4943), 1, anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4945), 1, anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2355), 1, + ACTIONS(4947), 1, + anon_sym_extends, + STATE(2381), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5345), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5272), 5, + ACTIONS(5347), 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, - [42986] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2356), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5274), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [43103] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4917), 1, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2357), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 17, - 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_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, - [43194] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2358), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5276), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [43311] = 8, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45051] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - anon_sym_PIPE, - ACTIONS(4958), 1, - anon_sym_extends, - STATE(2359), 1, + STATE(2382), 1, sym_comment, - ACTIONS(5266), 11, + ACTIONS(3222), 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(5268), 31, + ACTIONS(3438), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248354,15 +249797,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, - [43376] = 5, + [45110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2360), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5246), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248376,7 +249820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5248), 32, + ACTIONS(5258), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248409,14 +249853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43435] = 5, + [45169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2361), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5278), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248430,7 +249874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 32, + ACTIONS(5351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248463,14 +249907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43494] = 5, + [45228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2362), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5282), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248484,7 +249928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 32, + ACTIONS(5355), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248517,14 +249961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43553] = 5, + [45287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2363), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248538,7 +249982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 32, + ACTIONS(5304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248571,14 +250015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43612] = 5, + [45346] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2364), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248592,7 +250036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 32, + ACTIONS(5359), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248625,21 +250069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43671] = 6, + [45405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4954), 1, - anon_sym_AMP, - STATE(2365), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5294), 12, + ACTIONS(5361), 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, @@ -248647,7 +250090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 32, + ACTIONS(5363), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248680,20 +250123,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43732] = 8, + [45464] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - ACTIONS(5298), 1, - anon_sym_DOT, - STATE(2366), 1, + STATE(2389), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2057), 13, + ACTIONS(2061), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5365), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248707,17 +250153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 29, + ACTIONS(2065), 24, sym__ternary_qmark, anon_sym_as, - 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, @@ -248736,185 +250178,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43797] = 34, + [45526] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2367), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2390), 1, sym_comment, - STATE(6178), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5300), 5, + ACTIONS(4953), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [43914] = 38, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [45630] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2368), 1, + STATE(2391), 1, sym_comment, - STATE(4631), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - STATE(6997), 1, - sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(5412), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44039] = 5, + [45750] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2369), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5424), 1, + anon_sym_LT, + STATE(2392), 1, sym_comment, - ACTIONS(5304), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 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(5092), 18, + 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_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [45834] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2393), 1, + sym_comment, + ACTIONS(5427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248928,7 +250425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5306), 32, + ACTIONS(5429), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248959,18 +250456,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, - [44098] = 6, + [45892] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(2370), 1, + STATE(2394), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(5431), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248984,7 +250478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 31, + ACTIONS(5433), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249016,101 +250510,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44159] = 38, + [45950] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5435), 1, + anon_sym_LT, + STATE(2395), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 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(5067), 20, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4891), 1, anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5308), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2371), 1, + [46028] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2396), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - STATE(7293), 1, - sym_type_annotation, - ACTIONS(4887), 2, + ACTIONS(5438), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5440), 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(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44284] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [46086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2372), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5442), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249124,7 +250647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 32, + ACTIONS(5444), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249155,16 +250678,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, - [44343] = 5, + [46144] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2373), 1, + STATE(2398), 1, sym_comment, - ACTIONS(4881), 13, + ACTIONS(2177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249178,7 +250700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 32, + ACTIONS(2181), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249209,16 +250731,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, - [44402] = 5, + [46202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2374), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5310), 13, + ACTIONS(2141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249232,7 +250753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 32, + ACTIONS(2145), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249263,141 +250784,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44461] = 19, + [46260] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(5185), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2375), 1, + STATE(2400), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(2199), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 19, + ACTIONS(2203), 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, - [44548] = 23, + anon_sym_implements, + [46318] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - ACTIONS(5314), 1, + ACTIONS(5316), 1, anon_sym_RBRACE, - STATE(2376), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2401), 1, sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, + STATE(4686), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5448), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 18, + ACTIONS(2900), 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, @@ -249405,60 +250905,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44643] = 23, + [46404] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, + ACTIONS(5019), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - ACTIONS(5317), 1, + ACTIONS(5316), 1, anon_sym_RBRACE, - STATE(2377), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + STATE(2402), 1, sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, + STATE(3907), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5023), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 18, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249466,10 +250960,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, @@ -249477,41 +250973,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44738] = 7, + [46492] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2378), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5029), 3, + ACTIONS(5452), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5031), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5454), 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_extends, - ACTIONS(4137), 10, + 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, + [46550] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2404), 1, + sym_comment, + ACTIONS(5456), 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(4141), 29, + ACTIONS(5458), 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, @@ -249533,43 +251079,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44801] = 9, + [46608] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_extends, - ACTIONS(5322), 1, - anon_sym_EQ, - STATE(2379), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2405), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5460), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46728] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2406), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5462), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46848] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2407), 1, sym_comment, - ACTIONS(5326), 2, + ACTIONS(5319), 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(5321), 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, - ACTIONS(5329), 3, + 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, + [46906] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2408), 1, + sym_comment, + ACTIONS(5464), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5320), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5466), 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, + [46964] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2409), 1, + sym_comment, + ACTIONS(5468), 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(5324), 28, + ACTIONS(5470), 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, @@ -249591,14 +251406,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44868] = 5, + [47022] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2380), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2410), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5142), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47138] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2411), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47258] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2412), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47378] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2413), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(5476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249612,7 +251677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 32, + ACTIONS(5478), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249643,62 +251708,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44927] = 23, + [47436] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, + ACTIONS(5019), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - ACTIONS(5336), 1, + ACTIONS(5200), 1, anon_sym_RBRACE, - STATE(2381), 1, + ACTIONS(5450), 1, + anon_sym_LBRACK, + STATE(2414), 1, sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, + STATE(3907), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5720), 1, aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5023), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 18, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249706,10 +251764,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, @@ -249717,18 +251777,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45022] = 7, + [47524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2415), 1, + sym_comment, + ACTIONS(2245), 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(2247), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(2382), 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, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [47582] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2416), 1, sym_comment, - STATE(2444), 1, - sym_arguments, - ACTIONS(5339), 13, + ACTIONS(2085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249742,12 +251851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5341), 30, + ACTIONS(2087), 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, @@ -249773,43 +251883,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45085] = 9, + [47640] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3570), 1, - anon_sym_extends, - STATE(2383), 1, + STATE(2417), 1, sym_comment, - ACTIONS(5343), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5346), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2069), 10, + ACTIONS(2079), 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(2075), 28, + ACTIONS(2083), 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, @@ -249831,38 +251936,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45152] = 5, + [47698] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2384), 1, + ACTIONS(4853), 1, + anon_sym_extends, + STATE(2418), 1, sym_comment, - ACTIONS(5349), 13, + ACTIONS(5480), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5483), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5351), 32, + ACTIONS(4139), 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, @@ -249883,16 +251991,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, - [45211] = 5, + [47762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2385), 1, + STATE(2419), 1, sym_comment, - ACTIONS(5353), 13, + ACTIONS(2099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249906,7 +252013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5355), 32, + ACTIONS(2103), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249937,16 +252044,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, - [45270] = 5, + [47820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2386), 1, + STATE(2420), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(2091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249960,7 +252066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 32, + ACTIONS(2095), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249991,18 +252097,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, - [45329] = 6, + [47878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, - sym__automatic_semicolon, - STATE(2387), 1, + STATE(2421), 1, sym_comment, - ACTIONS(2111), 13, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250016,7 +252119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 31, + ACTIONS(2173), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250048,14 +252151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45390] = 5, + [47936] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2388), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5363), 13, + ACTIONS(2127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250069,7 +252172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 31, + ACTIONS(2131), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250101,14 +252204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45448] = 5, + [47994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2389), 1, + STATE(2423), 1, sym_comment, - ACTIONS(5367), 13, + ACTIONS(2261), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250122,7 +252225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 31, + ACTIONS(2265), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250154,82 +252257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45506] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, - anon_sym_async, - ACTIONS(5377), 1, - anon_sym_readonly, - ACTIONS(5381), 1, - sym__automatic_semicolon, - STATE(2390), 1, - sym_comment, - STATE(3418), 1, - sym_statement_block, - STATE(3523), 1, - sym_override_modifier, - STATE(3819), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5379), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [45594] = 5, + [48052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2391), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5384), 13, + ACTIONS(2161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250243,7 +252278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5386), 31, + ACTIONS(2165), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250275,89 +252310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45652] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5422), 1, - anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2392), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5180), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [45768] = 19, + [48110] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250366,36 +252319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5200), 1, anon_sym_RBRACE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2393), 1, + STATE(2425), 1, sym_comment, - STATE(4736), 1, + STATE(4686), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5720), 1, aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5442), 2, + ACTIONS(5448), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -250424,107 +252377,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45854] = 5, + [48196] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2394), 1, - sym_comment, - ACTIONS(2145), 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(2147), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(5374), 1, anon_sym_LBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, anon_sym_AMP_AMP, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, + anon_sym_AMP, + ACTIONS(5500), 1, anon_sym_CARET, + ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5506), 1, anon_sym_PERCENT, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5510), 1, + anon_sym_LT, + ACTIONS(5518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5520), 1, + sym__ternary_qmark, + STATE(2426), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5488), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5514), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5512), 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_PIPE_RBRACE, - [45912] = 20, + ACTIONS(5109), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [48312] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5522), 1, anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, + ACTIONS(5524), 1, + anon_sym_LBRACE, + ACTIONS(5526), 1, anon_sym_async, - ACTIONS(5336), 1, - anon_sym_RBRACE, - ACTIONS(5444), 1, - anon_sym_LBRACK, - STATE(2395), 1, + ACTIONS(5528), 1, + anon_sym_readonly, + ACTIONS(5532), 1, + sym__automatic_semicolon, + STATE(2427), 1, sym_comment, - STATE(3892), 1, + STATE(3428), 1, + sym_statement_block, + STATE(3522), 1, + sym_override_modifier, + STATE(3809), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5530), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 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(4376), 20, + ACTIONS(4378), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250532,12 +252516,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, @@ -250545,38 +252527,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46000] = 5, + [48400] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2396), 1, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2428), 1, sym_comment, - ACTIONS(5446), 13, + ACTIONS(5535), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5448), 31, + ACTIONS(4139), 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, @@ -250598,14 +252583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46058] = 5, + [48464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2397), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250619,7 +252604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5452), 31, + ACTIONS(5543), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250651,96 +252636,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46116] = 34, + [48522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2430), 1, + sym_comment, + ACTIONS(5545), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(5547), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2398), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [48580] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5363), 1, + anon_sym_extends, + STATE(2431), 1, + sym_comment, + ACTIONS(5553), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5556), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5549), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5551), 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, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5276), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [46232] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [48644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2399), 1, + STATE(2432), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5559), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250754,7 +252766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5492), 31, + ACTIONS(5084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250786,105 +252798,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46290] = 27, + [48702] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5217), 1, + anon_sym_RBRACE, + ACTIONS(5450), 1, + anon_sym_LBRACK, + STATE(2433), 1, + sym_comment, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [48790] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2434), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [48876] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5418), 1, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - STATE(2400), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + ACTIONS(5561), 1, + anon_sym_COMMA, + ACTIONS(5564), 1, + anon_sym_RBRACE, + STATE(2435), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(5566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 10, + [48996] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, - anon_sym_of, + ACTIONS(5217), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2436), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [49082] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, anon_sym_satisfies, - [46392] = 13, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2437), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5568), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49198] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5494), 1, - anon_sym_QMARK_DOT, - ACTIONS(5496), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5570), 1, anon_sym_LT, - STATE(2401), 1, + STATE(2438), 1, sym_comment, - STATE(2869), 1, + STATE(2627), 1, sym_type_arguments, - STATE(3016), 1, - sym_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4797), 12, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250897,12 +253205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4799), 24, + ACTIONS(5157), 22, 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, @@ -250920,206 +253227,181 @@ 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, - [46466] = 36, + [49274] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2402), 1, + STATE(2439), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5500), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46586] = 5, + ACTIONS(5119), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [49390] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2403), 1, - sym_comment, - ACTIONS(5502), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, anon_sym_GT_GT, + ACTIONS(5382), 1, anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 31, - sym__ternary_qmark, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 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(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, anon_sym_AMP_AMP, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_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(5418), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5420), 1, anon_sym_satisfies, - anon_sym_implements, - [46644] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2404), 1, + ACTIONS(5422), 1, + sym__ternary_qmark, + ACTIONS(5561), 1, + anon_sym_COMMA, + ACTIONS(5564), 1, + anon_sym_RBRACE, + STATE(2440), 1, sym_comment, - ACTIONS(5506), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5138), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5368), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5508), 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(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [46702] = 5, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2405), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5510), 13, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251133,7 +253415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5512), 31, + ACTIONS(5575), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251165,54 +253447,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46760] = 20, + [49568] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5144), 1, + ACTIONS(5019), 1, anon_sym_async, - ACTIONS(5317), 1, + ACTIONS(5144), 1, anon_sym_RBRACE, - ACTIONS(5444), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - STATE(2406), 1, + STATE(2442), 1, sym_comment, - STATE(3892), 1, + STATE(3907), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(5023), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 20, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -251233,125 +253515,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46848] = 34, + [49656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2443), 1, + sym_comment, + ACTIONS(2223), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(2225), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2407), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5270), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [46964] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [49714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5514), 1, - anon_sym_LT, - STATE(2408), 1, + STATE(2444), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5577), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -251360,363 +253585,293 @@ 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(4944), 18, - sym__automatic_semicolon, + ACTIONS(5579), 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, - [47048] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5314), 1, - anon_sym_RBRACE, - ACTIONS(5444), 1, - anon_sym_LBRACK, - STATE(2409), 1, - sym_comment, - STATE(3892), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [47136] = 34, + anon_sym_implements, + [49772] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2410), 1, + STATE(2445), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4960), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [47252] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5317), 1, - anon_sym_RBRACE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2411), 1, - sym_comment, - STATE(4736), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5442), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 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, - [47338] = 36, + [49892] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2412), 1, + STATE(2446), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5517), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47458] = 8, + ACTIONS(5124), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5043), 1, - anon_sym_extends, - STATE(2413), 1, + STATE(2447), 1, sym_comment, - ACTIONS(5523), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5526), 3, + ACTIONS(5583), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5519), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5585), 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, + [50066] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2448), 1, + sym_comment, + ACTIONS(5587), 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(5521), 28, + ACTIONS(5589), 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, @@ -251738,317 +253893,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47522] = 5, + [50124] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2414), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2449), 1, sym_comment, - ACTIONS(5529), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5531), 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(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [47580] = 34, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4883), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [50240] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2415), 1, + STATE(2450), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5272), 4, + ACTIONS(4961), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [47696] = 36, + [50356] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2416), 1, + STATE(2451), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5533), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5564), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5591), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47816] = 36, + [50474] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5498), 1, + ACTIONS(5593), 1, anon_sym_COMMA, - STATE(2417), 1, + ACTIONS(5596), 1, + anon_sym_RBRACE, + STATE(2452), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4883), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5535), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47936] = 5, + [50594] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2418), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(2453), 1, sym_comment, - ACTIONS(5537), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 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(5157), 22, + 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_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [50670] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2454), 1, + sym_comment, + ACTIONS(5601), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252062,7 +254307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5539), 31, + ACTIONS(5603), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252094,14 +254339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47994] = 5, + [50728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2419), 1, + STATE(2455), 1, sym_comment, - ACTIONS(2145), 13, + ACTIONS(5605), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252115,7 +254360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 31, + ACTIONS(5607), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252147,14 +254392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48052] = 5, + [50786] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2420), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5541), 13, + ACTIONS(5609), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252168,7 +254413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5543), 31, + ACTIONS(5611), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252200,14 +254445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48110] = 5, + [50844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2421), 1, + STATE(2457), 1, sym_comment, - ACTIONS(5545), 13, + ACTIONS(5583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252221,7 +254466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5547), 31, + ACTIONS(5585), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252253,125 +254498,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48168] = 34, + [50902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2458), 1, + sym_comment, + ACTIONS(5613), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(5615), 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, + [50960] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2422), 1, + STATE(2459), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5264), 4, + ACTIONS(5130), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [48284] = 18, + [51076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5549), 1, - anon_sym_LT, - STATE(2423), 1, + STATE(2460), 1, sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(5583), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -252380,14 +254651,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(4939), 18, - sym__automatic_semicolon, + ACTIONS(5585), 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, @@ -252401,14 +254681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48368] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2424), 1, + STATE(2461), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(2223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252422,18 +254707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 31, + ACTIONS(2225), 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, @@ -252453,15 +254738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [48426] = 5, + anon_sym_PIPE_RBRACE, + [51192] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2425), 1, + STATE(2462), 1, sym_comment, - ACTIONS(5556), 13, + ACTIONS(2105), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252475,18 +254760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5558), 31, + ACTIONS(2107), 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, @@ -252506,15 +254791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [48484] = 5, + anon_sym_PIPE_RBRACE, + [51250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2426), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5560), 13, + ACTIONS(5617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252528,7 +254813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5562), 31, + ACTIONS(5619), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252560,14 +254845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48542] = 5, + [51308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2427), 1, + STATE(2464), 1, sym_comment, - ACTIONS(5564), 13, + ACTIONS(5549), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252581,7 +254866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 31, + ACTIONS(5551), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252613,182 +254898,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48600] = 36, + [51366] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2428), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5568), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48720] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5414), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, - anon_sym_PERCENT, - ACTIONS(5476), 1, - anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2429), 1, + STATE(2465), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5570), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48840] = 5, + ACTIONS(5041), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [51482] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2430), 1, + STATE(2466), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(5621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252802,7 +255001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5574), 31, + ACTIONS(5623), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252834,447 +255033,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48898] = 34, + [51540] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2431), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2467), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5244), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49014] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2432), 1, - sym_comment, - ACTIONS(5576), 13, - anon_sym_STAR, + ACTIONS(4955), 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(5578), 31, + ACTIONS(4953), 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, - [49072] = 14, + [51630] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5580), 1, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, anon_sym_LT, - STATE(2433), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2468), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(5368), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4980), 22, - 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_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [49148] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5138), 4, sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, anon_sym_COMMA, - ACTIONS(5314), 1, anon_sym_RBRACE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2434), 1, - sym_comment, - STATE(4736), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5442), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 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, - [49234] = 5, + [51746] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2435), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2469), 1, sym_comment, - ACTIONS(5552), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4927), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [51862] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5374), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, anon_sym_AMP_AMP, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, + anon_sym_AMP, + ACTIONS(5500), 1, anon_sym_CARET, + ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5506), 1, anon_sym_PERCENT, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5510), 1, + anon_sym_LT, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5520), 1, + sym__ternary_qmark, + STATE(2470), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [49292] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2436), 1, - sym_comment, - ACTIONS(5583), 13, + ACTIONS(5486), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5194), 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(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5512), 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, - [49350] = 15, + ACTIONS(4929), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [51978] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5585), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, + anon_sym_AMP, + ACTIONS(5500), 1, + anon_sym_CARET, + ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5506), 1, + anon_sym_PERCENT, + ACTIONS(5508), 1, + anon_sym_STAR_STAR, + ACTIONS(5510), 1, anon_sym_LT, - STATE(2437), 1, + ACTIONS(5518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5520), 1, + sym__ternary_qmark, + STATE(2471), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(5486), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 20, + ACTIONS(5516), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5512), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5084), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + [52094] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, anon_sym_AMP_AMP, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2472), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 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(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [49428] = 5, + ACTIONS(5140), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [52210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2438), 1, + STATE(2473), 1, sym_comment, - ACTIONS(5588), 13, + ACTIONS(5625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253288,7 +255533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 31, + ACTIONS(5140), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253320,81 +255565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49486] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5514), 1, - anon_sym_LT, - STATE(2439), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 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, - [49572] = 5, + [52268] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2440), 1, + STATE(2474), 1, sym_comment, - ACTIONS(2237), 13, + ACTIONS(5627), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253408,7 +255586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2239), 31, + ACTIONS(5629), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253440,14 +255618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49630] = 5, + [52326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2441), 1, + STATE(2475), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(5631), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253461,7 +255639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 31, + ACTIONS(5633), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253493,14 +255671,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49688] = 5, + [52384] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2442), 1, + STATE(2476), 1, sym_comment, - ACTIONS(5592), 13, + ACTIONS(5637), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5641), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5635), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253514,18 +255701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5594), 31, + ACTIONS(5639), 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, @@ -253545,15 +255726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49746] = 5, + [52446] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2443), 1, + STATE(2477), 1, sym_comment, - ACTIONS(2233), 13, + ACTIONS(5644), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253567,7 +255747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 31, + ACTIONS(5646), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253599,14 +255779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49804] = 5, + [52504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2444), 1, + STATE(2478), 1, sym_comment, - ACTIONS(5596), 13, + ACTIONS(5648), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253620,7 +255800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5598), 31, + ACTIONS(5650), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253652,14 +255832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49862] = 5, + [52562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2445), 1, + STATE(2479), 1, sym_comment, - ACTIONS(5600), 13, + ACTIONS(5652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253673,7 +255853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5602), 31, + ACTIONS(4961), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253705,14 +255885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49920] = 5, + [52620] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2446), 1, + STATE(2480), 1, sym_comment, - ACTIONS(5604), 13, + ACTIONS(2239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253726,7 +255906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 31, + ACTIONS(2243), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253758,172 +255938,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49978] = 26, + [52678] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5462), 1, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5474), 1, + ACTIONS(5500), 1, + anon_sym_CARET, + ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - STATE(2447), 1, + STATE(2481), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 11, + ACTIONS(4953), 8, 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, - [50078] = 36, + [52786] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2448), 1, + STATE(2482), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50198] = 5, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 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, + [52880] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2449), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + STATE(2483), 1, sym_comment, - ACTIONS(5608), 13, + ACTIONS(5224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253937,7 +256110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5610), 31, + ACTIONS(5228), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253945,7 +256118,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, @@ -253969,14 +256141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50256] = 5, + [52940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2450), 1, + STATE(2484), 1, sym_comment, - ACTIONS(2215), 13, + ACTIONS(5654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253990,7 +256162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 31, + ACTIONS(5656), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254022,14 +256194,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50314] = 5, + [52998] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2451), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2485), 1, sym_comment, - ACTIONS(2227), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5658), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53118] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2486), 1, + sym_comment, + ACTIONS(5660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254043,7 +256299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 31, + ACTIONS(5662), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254075,14 +256331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50372] = 5, + [53176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2452), 1, + STATE(2487), 1, sym_comment, - ACTIONS(2243), 13, + ACTIONS(5664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254096,7 +256352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 31, + ACTIONS(5124), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254128,14 +256384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50430] = 5, + [53234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2453), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5612), 13, + ACTIONS(5666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254149,7 +256405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5264), 31, + ACTIONS(5668), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254181,14 +256437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50488] = 5, + [53292] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2454), 1, + STATE(2489), 1, sym_comment, - ACTIONS(2191), 13, + ACTIONS(5670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254202,7 +256458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 31, + ACTIONS(5672), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254234,170 +256490,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50546] = 35, + [53350] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2455), 1, + STATE(2490), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5614), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5616), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5674), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50664] = 25, + [53470] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5474), 1, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - STATE(2456), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2491), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5676), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [50762] = 5, + [53590] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2457), 1, + STATE(2492), 1, sym_comment, - ACTIONS(5618), 13, + ACTIONS(5678), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254411,7 +256679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5620), 31, + ACTIONS(5119), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254443,14 +256711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50820] = 5, + [53648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2458), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5622), 13, + ACTIONS(5680), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254464,7 +256732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 31, + ACTIONS(5682), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254496,14 +256764,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50878] = 5, + [53706] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2459), 1, + STATE(2494), 1, sym_comment, - ACTIONS(2163), 13, + ACTIONS(5226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5684), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254517,17 +256794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 31, - sym__automatic_semicolon, + ACTIONS(5228), 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, @@ -254548,15 +256819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [50936] = 5, + [53768] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2460), 1, + STATE(2495), 1, sym_comment, - ACTIONS(2163), 13, + ACTIONS(2193), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254570,18 +256840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 31, + ACTIONS(2195), 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, @@ -254601,97 +256871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [50994] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5422), 1, - anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5300), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51110] = 5, + anon_sym_PIPE_RBRACE, + [53826] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2462), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5626), 13, + ACTIONS(5687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254705,7 +256893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5628), 31, + ACTIONS(5689), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254737,141 +256925,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51168] = 34, + [53884] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, ACTIONS(5406), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, - anon_sym_PERCENT, + anon_sym_BANG, ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5691), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2463), 1, + STATE(2497), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5194), 4, + ACTIONS(4953), 17, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [51284] = 21, + anon_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, + [53970] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5418), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5691), 1, anon_sym_LT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(2464), 1, + STATE(2498), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(5486), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 7, + ACTIONS(4955), 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(4944), 16, + ACTIONS(4953), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -254880,6 +257048,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -254888,16 +257058,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [51374] = 6, + [54054] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - STATE(2465), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + ACTIONS(5564), 1, + anon_sym_RBRACE, + ACTIONS(5694), 1, + anon_sym_COMMA, + STATE(2499), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(4883), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54174] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2500), 1, sym_comment, - ACTIONS(5630), 13, + ACTIONS(5697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254911,7 +257163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 30, + ACTIONS(5699), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254919,6 +257171,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, @@ -254942,358 +257195,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51434] = 36, + [54232] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2466), 1, + STATE(2501), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5636), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51554] = 36, + ACTIONS(5130), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [54348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2502), 1, + sym_comment, + ACTIONS(2227), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(2229), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 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_PIPE_RBRACE, + [54406] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2467), 1, + STATE(2503), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, + STATE(5560), 1, aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5638), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5701), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51674] = 36, + [54526] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2504), 1, + sym_comment, + ACTIONS(5703), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(5705), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5640), 1, - anon_sym_COMMA, - ACTIONS(5643), 1, - anon_sym_RBRACE, - STATE(2468), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5300), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54584] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2505), 1, + sym_comment, + ACTIONS(5707), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51794] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, + ACTIONS(5709), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5614), 1, - anon_sym_RBRACE, - ACTIONS(5645), 1, - anon_sym_COMMA, - STATE(2469), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5300), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54642] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5637), 1, + anon_sym_EQ, + STATE(2506), 1, + sym_comment, + ACTIONS(5635), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5639), 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, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51914] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_is, - STATE(2470), 1, + STATE(2507), 1, sym_comment, - STATE(2848), 1, - sym_type_arguments, - ACTIONS(4807), 12, + ACTIONS(5711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255304,18 +257592,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(4202), 28, - sym__automatic_semicolon, + ACTIONS(5713), 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, @@ -255334,281 +257626,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51980] = 26, + anon_sym_implements, + [54760] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5418), 1, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - STATE(2471), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2508), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 11, + ACTIONS(5119), 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52080] = 36, + [54876] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - ACTIONS(5614), 1, - anon_sym_RBRACE, - ACTIONS(5652), 1, - anon_sym_COMMA, - STATE(2472), 1, + STATE(2509), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5170), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52200] = 5, + ACTIONS(5142), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [54992] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2473), 1, - sym_comment, - ACTIONS(5655), 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(5244), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5374), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5376), 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(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, + anon_sym_AMP, + ACTIONS(5506), 1, anon_sym_PERCENT, + ACTIONS(5508), 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, - [52258] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2474), 1, - sym_comment, - ACTIONS(5632), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5657), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5630), 13, - anon_sym_STAR, + ACTIONS(5510), 1, + anon_sym_LT, + STATE(2510), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(4955), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 24, + ACTIONS(5516), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5512), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 11, + 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, - [52320] = 5, + [55092] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2475), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255622,7 +257886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 31, + ACTIONS(5717), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255654,324 +257918,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52378] = 10, + [55150] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5664), 1, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - STATE(2476), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_PERCENT, + ACTIONS(5508), 1, + anon_sym_STAR_STAR, + ACTIONS(5510), 1, + anon_sym_LT, + STATE(2512), 1, sym_comment, - STATE(2731), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2732), 1, - sym_arguments, - ACTIONS(4813), 12, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4815), 27, + ACTIONS(5516), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5512), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 11, 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, - [52446] = 36, + [55248] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5691), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5614), 1, - anon_sym_RBRACE, - ACTIONS(5652), 1, - anon_sym_COMMA, - STATE(2477), 1, + STATE(2513), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5666), 2, + ACTIONS(4953), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 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, - [52566] = 36, + anon_sym_satisfies, + [55334] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2478), 1, + STATE(2514), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52686] = 36, + ACTIONS(4927), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [55450] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, - anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5719), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2479), 1, + STATE(2515), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5670), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52806] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2480), 1, - sym_comment, - ACTIONS(5672), 13, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255982,49 +258182,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(5674), 31, + ACTIONS(4953), 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, - [52864] = 5, + [55530] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2481), 1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_LT, + STATE(2516), 1, sym_comment, - ACTIONS(5676), 13, + STATE(2813), 1, + sym_type_arguments, + STATE(2814), 1, + sym_arguments, + ACTIONS(4799), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256035,22 +258232,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(5678), 31, + ACTIONS(4801), 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, @@ -256069,188 +258261,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52922] = 34, + anon_sym_extends, + [55598] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(4955), 1, anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2482), 1, + STATE(2517), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5274), 4, + ACTIONS(4953), 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, + [55704] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5724), 1, + anon_sym_LT, + ACTIONS(5726), 1, + anon_sym_DOT, + STATE(2518), 1, + sym_comment, + STATE(2815), 1, + sym_type_arguments, + STATE(2816), 1, + sym_arguments, + ACTIONS(4805), 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(4807), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [53038] = 34, + 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, + [55772] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2483), 1, + STATE(2519), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5180), 4, + ACTIONS(4929), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [53154] = 7, + [55888] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2484), 1, + STATE(2520), 1, sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5680), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2069), 13, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256264,12 +258502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 24, + ACTIONS(2065), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -256289,188 +258532,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53216] = 34, + anon_sym_implements, + [55948] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2485), 1, + STATE(2521), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5276), 4, + ACTIONS(4953), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [53332] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [56050] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2522), 1, + sym_comment, + ACTIONS(5728), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(5730), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5402), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5406), 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_implements, + [56108] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2486), 1, + STATE(2523), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5274), 4, + ACTIONS(4953), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [53448] = 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [56212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5683), 1, - anon_sym_DOT, - STATE(2487), 1, + STATE(2524), 1, sym_comment, - STATE(2735), 1, - sym_type_arguments, - STATE(2736), 1, - sym_arguments, - ACTIONS(4833), 12, + ACTIONS(5732), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256481,17 +258755,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(4835), 27, - sym__automatic_semicolon, + ACTIONS(5734), 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, @@ -256510,25 +258789,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53516] = 10, + anon_sym_implements, + [56270] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5685), 1, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - STATE(2488), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5508), 1, + anon_sym_STAR_STAR, + ACTIONS(5691), 1, + anon_sym_LT, + STATE(2525), 1, sym_comment, - STATE(2737), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2738), 1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, sym_arguments, - ACTIONS(4147), 12, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256541,42 +258834,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4143), 27, + ACTIONS(4953), 19, 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_satisfies, + [56350] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, + anon_sym_AMP, + ACTIONS(5500), 1, + anon_sym_CARET, + ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5506), 1, + anon_sym_PERCENT, + ACTIONS(5508), 1, + anon_sym_STAR_STAR, + ACTIONS(5510), 1, + anon_sym_LT, + ACTIONS(5518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5520), 1, + sym__ternary_qmark, + STATE(2526), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5486), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5488), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5514), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5516), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5512), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5140), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [56466] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_satisfies, - anon_sym_extends, - [53584] = 5, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2527), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2489), 1, + STATE(2528), 1, sym_comment, - ACTIONS(2125), 13, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256590,7 +259041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2127), 31, + ACTIONS(5740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256622,16 +259073,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53642] = 6, + [56644] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5014), 1, + anon_sym_RBRACE, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5450), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym_comment, + STATE(3907), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [56732] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - STATE(2490), 1, + STATE(2530), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(5742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256645,7 +259162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 30, + ACTIONS(5744), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256653,6 +259170,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, @@ -256676,169 +259194,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53702] = 25, + [56790] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5422), 1, - anon_sym_LT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(2491), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 11, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, - anon_sym_of, + ACTIONS(5014), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2531), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53800] = 34, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [56876] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, ACTIONS(5406), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2492), 1, + STATE(2532), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5270), 4, + ACTIONS(5138), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [53916] = 5, + [56992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2493), 1, + STATE(2533), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(2227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256852,7 +259364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5689), 31, + ACTIONS(2229), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256884,96 +259396,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53974] = 34, + [57050] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5724), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2494), 1, + ACTIONS(5746), 1, + anon_sym_DOT, + STATE(2534), 1, sym_comment, - STATE(2627), 1, + STATE(2817), 1, sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, + STATE(2818), 1, + sym_arguments, + ACTIONS(4167), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5264), 4, + ACTIONS(4157), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, - [54090] = 5, + 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, + [57118] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2495), 1, + STATE(2535), 1, sym_comment, - ACTIONS(5691), 13, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256987,7 +259475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4968), 31, + ACTIONS(2219), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257019,14 +259507,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54148] = 5, + [57176] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2496), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5748), 1, + anon_sym_LT, + STATE(2536), 1, sym_comment, - ACTIONS(5693), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257037,23 +259547,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(5695), 31, + ACTIONS(5067), 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, @@ -257067,19 +259569,15 @@ 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, - [54206] = 5, + [57254] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2497), 1, + STATE(2537), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(2109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257093,18 +259591,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 31, + ACTIONS(2111), 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, @@ -257124,181 +259622,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54264] = 34, + anon_sym_PIPE_RBRACE, + [57312] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2498), 1, + STATE(2538), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(5751), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5244), 4, + [57432] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5753), 1, sym__automatic_semicolon, + STATE(2539), 1, + sym_comment, + ACTIONS(2109), 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(2111), 30, + 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, - [54380] = 34, + 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, + [57492] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(4955), 1, anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2499), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + STATE(2540), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4968), 4, + ACTIONS(4953), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [54496] = 6, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [57598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, - sym__automatic_semicolon, - STATE(2500), 1, + STATE(2541), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257312,17 +259859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 30, + ACTIONS(4139), 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, @@ -257342,15 +259890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [54556] = 5, + anon_sym_implements, + [57656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2501), 1, + STATE(2542), 1, sym_comment, - ACTIONS(5703), 13, + ACTIONS(2193), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257364,7 +259912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5705), 31, + ACTIONS(2195), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257396,465 +259944,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54614] = 5, + [57714] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2502), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_PERCENT, + ACTIONS(5508), 1, + anon_sym_STAR_STAR, + ACTIONS(5510), 1, + anon_sym_LT, + STATE(2543), 1, sym_comment, - ACTIONS(5707), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5496), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5504), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5709), 31, + ACTIONS(4953), 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, - [54672] = 34, + [57804] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2503), 1, + STATE(2544), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4985), 4, + ACTIONS(4961), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [54788] = 34, + [57920] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2504), 1, + STATE(2545), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4976), 4, + ACTIONS(4883), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [54904] = 36, + [58036] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5490), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5492), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5494), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2505), 1, + STATE(2546), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55024] = 34, + ACTIONS(5246), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [58152] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2506), 1, + STATE(2547), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5272), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55140] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(5084), 4, sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, anon_sym_COMMA, - ACTIONS(5139), 1, anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5444), 1, - anon_sym_LBRACK, - STATE(2507), 1, - sym_comment, - STATE(3892), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [55228] = 5, + [58268] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2508), 1, + STATE(2548), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(2183), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257868,7 +260362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 31, + ACTIONS(2185), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257900,247 +260394,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55286] = 34, + [58326] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2509), 1, + STATE(2549), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5755), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5300), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [55402] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [58446] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2550), 1, + sym_comment, + ACTIONS(5757), 13, anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 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(5759), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5139), 1, anon_sym_RBRACE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2510), 1, - sym_comment, - STATE(4736), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5442), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, 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(2900), 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, - [55488] = 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, + [58504] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2511), 1, + STATE(2551), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5170), 4, + ACTIONS(5124), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [55604] = 5, + [58620] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2512), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5761), 1, + anon_sym_LT, + STATE(2552), 1, sym_comment, - ACTIONS(2105), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -258149,23 +260658,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(2109), 31, + ACTIONS(5092), 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, @@ -258179,72 +260679,81 @@ 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, - [55662] = 5, + [58704] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2513), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5719), 1, + anon_sym_LT, + STATE(2553), 1, sym_comment, - ACTIONS(5713), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5715), 31, + ACTIONS(4953), 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, - [55720] = 5, + [58790] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2514), 1, + STATE(2554), 1, sym_comment, - ACTIONS(2111), 13, + ACTIONS(5764), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258258,7 +260767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 31, + ACTIONS(5130), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258290,14 +260799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55778] = 5, + [58848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2515), 1, + STATE(2555), 1, sym_comment, - ACTIONS(2199), 13, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258311,7 +260820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 31, + ACTIONS(5768), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258343,92 +260852,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55836] = 30, + [58906] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - STATE(2516), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2556), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5770), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [55944] = 5, + [59026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2517), 1, + STATE(2557), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(5772), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258442,7 +260957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5719), 31, + ACTIONS(5774), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258474,135 +260989,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56002] = 23, + [59084] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5418), 1, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - STATE(2518), 1, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + STATE(2558), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5432), 2, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4946), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 13, + ACTIONS(4953), 8, 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_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [56096] = 23, + [59192] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - STATE(2519), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2559), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3075), 2, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 5, + ACTIONS(4955), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 13, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -258612,153 +261138,87 @@ 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, - [56190] = 34, + [59290] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2520), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2560), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5194), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [56306] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2521), 1, - sym_comment, - ACTIONS(2085), 13, - anon_sym_STAR, + ACTIONS(4955), 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(2089), 31, + ACTIONS(4953), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_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, - [56364] = 5, + [59384] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2522), 1, + STATE(2561), 1, sym_comment, - ACTIONS(2257), 13, + ACTIONS(2109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258772,7 +261232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2261), 31, + ACTIONS(2111), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258795,183 +261255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [56422] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2523), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5721), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [56538] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_GT_GT, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, - anon_sym_PERCENT, - ACTIONS(5420), 1, - anon_sym_STAR_STAR, - ACTIONS(5422), 1, - anon_sym_LT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(2524), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5388), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5396), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5408), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5416), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5428), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5424), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [56646] = 5, + anon_sym_implements, + [59442] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2525), 1, + ACTIONS(5776), 1, + sym__automatic_semicolon, + STATE(2562), 1, sym_comment, - ACTIONS(2125), 13, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258985,8 +261287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2127), 31, - sym__automatic_semicolon, + ACTIONS(2113), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -259017,14 +261318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [56704] = 5, + [59502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2526), 1, + STATE(2563), 1, sym_comment, - ACTIONS(2207), 13, + ACTIONS(2153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259038,7 +261339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2211), 31, + ACTIONS(2155), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259070,158 +261371,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56762] = 19, + [59560] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5418), 1, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5514), 1, + ACTIONS(5394), 1, anon_sym_LT, - STATE(2527), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2564), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5416), 2, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5432), 2, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 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(4944), 18, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 11, 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_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, - [56848] = 29, + [59660] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - STATE(2528), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2565), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 9, + ACTIONS(5246), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [56954] = 5, + [59776] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2529), 1, + ACTIONS(5724), 1, + anon_sym_LT, + ACTIONS(5778), 1, + anon_sym_DOT, + ACTIONS(5780), 1, + anon_sym_is, + STATE(2566), 1, sym_comment, - ACTIONS(2169), 13, + STATE(2883), 1, + sym_type_arguments, + ACTIONS(4821), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259232,22 +261553,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(2173), 31, + ACTIONS(4202), 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, @@ -259266,348 +261583,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57012] = 28, + anon_sym_extends, + [59842] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - STATE(2530), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5408), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2567), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(5782), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [57116] = 5, + [59962] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2531), 1, - sym_comment, - ACTIONS(5723), 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(5725), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5374), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5376), 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, - [57174] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2532), 1, - sym_comment, - ACTIONS(2221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5378), 1, anon_sym_GT_GT, + ACTIONS(5382), 1, anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2223), 31, - sym__ternary_qmark, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5408), 1, 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(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, anon_sym_AMP_AMP, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_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(5418), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5420), 1, anon_sym_satisfies, - anon_sym_implements, - [57232] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5474), 1, - anon_sym_PERCENT, - ACTIONS(5476), 1, - anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - STATE(2533), 1, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2568), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5560), 1, + aux_sym_sequence_expression_repeat1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5464), 2, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 16, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5784), 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_CARET, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 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, - [57322] = 34, + [60082] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, - anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2534), 1, + STATE(2569), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4976), 4, + ACTIONS(4953), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [57438] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60184] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2535), 1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_LT, + ACTIONS(5786), 1, + anon_sym_QMARK_DOT, + STATE(2570), 1, sym_comment, - ACTIONS(2175), 13, + STATE(2904), 1, + sym_type_arguments, + STATE(3029), 1, + sym_arguments, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(4811), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259618,23 +261861,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(2177), 31, + ACTIONS(4813), 24, 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, @@ -259652,199 +261888,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [57496] = 34, + [60258] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, - ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2536), 1, + STATE(2571), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4968), 4, + ACTIONS(5109), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [57612] = 34, + [60374] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, ACTIONS(5406), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2537), 1, + STATE(2572), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5488), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5170), 4, + ACTIONS(5041), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [57728] = 14, + [60490] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5727), 1, + ACTIONS(5719), 1, anon_sym_LT, - STATE(2538), 1, + STATE(2573), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - STATE(3075), 2, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4978), 12, - anon_sym_STAR, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -259853,175 +262097,118 @@ 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(4980), 22, + ACTIONS(4953), 18, 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_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [57804] = 34, + [60574] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5402), 1, - anon_sym_AMP_AMP, ACTIONS(5404), 1, - anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, ACTIONS(5406), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5488), 1, + anon_sym_GT, + ACTIONS(5490), 1, + anon_sym_AMP_AMP, + ACTIONS(5492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5494), 1, + anon_sym_GT_GT, + ACTIONS(5498), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5500), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5502), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5506), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5508), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5518), 1, anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5520), 1, sym__ternary_qmark, - STATE(2539), 1, + ACTIONS(5790), 1, + anon_sym_in, + STATE(2574), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5486), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5496), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5516), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5512), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4985), 4, + ACTIONS(5788), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [57920] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2540), 1, - sym_comment, - ACTIONS(2175), 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(2177), 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, - [57978] = 5, + [60692] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2541), 1, + STATE(2575), 1, sym_comment, - ACTIONS(5519), 13, + ACTIONS(2105), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260035,7 +262222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5521), 31, + ACTIONS(2107), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260067,40 +262254,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58036] = 16, + [60750] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5420), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5514), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5719), 1, anon_sym_LT, - STATE(2542), 1, + STATE(2576), 1, sym_comment, STATE(2627), 1, sym_type_arguments, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 12, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -260111,12 +262303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 19, + ACTIONS(4953), 17, 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, @@ -260130,15 +262321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [58116] = 5, + [60836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2543), 1, + STATE(2577), 1, sym_comment, - ACTIONS(2111), 13, + ACTIONS(2183), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260152,7 +262342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 31, + ACTIONS(2185), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -260184,16 +262374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [58174] = 6, + [60894] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5730), 1, - sym__automatic_semicolon, - STATE(2544), 1, + ACTIONS(5780), 1, + anon_sym_is, + STATE(2578), 1, sym_comment, - ACTIONS(2111), 13, + ACTIONS(4843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260207,15 +262397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 30, + ACTIONS(4845), 29, + 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, @@ -260237,402 +262426,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [58234] = 5, + anon_sym_extends, + [60953] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2545), 1, - sym_comment, - ACTIONS(5732), 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(5734), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4815), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4817), 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, + ACTIONS(4869), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [58292] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5498), 1, + ACTIONS(5001), 1, anon_sym_COMMA, - STATE(2546), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5793), 1, + anon_sym_COLON, + STATE(2222), 1, sym_type_arguments, - STATE(5591), 1, + STATE(2579), 1, + sym_comment, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5736), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58412] = 5, + [61072] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2547), 1, - sym_comment, - ACTIONS(4137), 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(4141), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4815), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4923), 1, anon_sym_satisfies, - anon_sym_implements, - [58470] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2548), 1, - sym_comment, - ACTIONS(5738), 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(4976), 31, + ACTIONS(4925), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5795), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(5797), 1, 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, - [58528] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2549), 1, + STATE(2222), 1, + sym_type_arguments, + STATE(2580), 1, sym_comment, - ACTIONS(2221), 13, + STATE(5797), 1, + aux_sym_array_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2223), 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, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [58586] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2550), 1, - sym_comment, - ACTIONS(5740), 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(5742), 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, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 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, - anon_sym_implements, - [58644] = 19, + [61191] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5182), 1, - anon_sym_RBRACE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(2551), 1, + ACTIONS(5799), 1, + anon_sym_static, + ACTIONS(5801), 1, + anon_sym_readonly, + ACTIONS(5803), 1, + anon_sym_abstract, + STATE(2581), 1, sym_comment, - STATE(4736), 1, + STATE(3501), 1, + sym_accessibility_modifier, + STATE(3586), 1, + sym_override_modifier, + STATE(4285), 1, sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5442), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1041), 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(2900), 21, + ACTIONS(4378), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -260640,13 +262649,9 @@ 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, @@ -260654,71 +262659,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58730] = 7, + [61276] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2552), 1, - sym_comment, - ACTIONS(5322), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5744), 5, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5795), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5805), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5320), 13, + STATE(2222), 1, + sym_type_arguments, + STATE(2582), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + STATE(6298), 1, + aux_sym_array_repeat1, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61395] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2583), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [58792] = 6, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5788), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [61510] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2553), 1, + ACTIONS(5807), 1, + anon_sym_is, + STATE(2584), 1, sym_comment, - ACTIONS(2069), 13, + ACTIONS(4855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260732,17 +262846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 30, + ACTIONS(4857), 29, + 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_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -260762,15 +262875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58852] = 5, + anon_sym_extends, + [61569] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2554), 1, + ACTIONS(5780), 1, + anon_sym_is, + STATE(2585), 1, sym_comment, - ACTIONS(5747), 13, + ACTIONS(4851), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260784,18 +262899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 31, + ACTIONS(4853), 29, + 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, @@ -260815,254 +262928,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58910] = 19, + anon_sym_extends, + [61628] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5476), 1, + ACTIONS(5813), 1, + anon_sym_AMP_AMP, + ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_PERCENT, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5751), 1, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2555), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2586), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 11, + ACTIONS(5809), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 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(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4929), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58996] = 18, + [61743] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5474), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, + anon_sym_AMP_AMP, + ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5751), 1, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2556), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2587), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, - anon_sym_BANG, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 18, - 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_LT_EQ, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5084), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [59080] = 34, + [61858] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5402), 1, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5404), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - sym__ternary_qmark, - STATE(2557), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2588), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5396), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5408), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5835), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [61965] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5829), 1, + anon_sym_PERCENT, + ACTIONS(5831), 1, + anon_sym_STAR_STAR, + ACTIONS(5833), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2589), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(5809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4960), 4, - sym__automatic_semicolon, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59196] = 5, + 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, + [62058] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2558), 1, + ACTIONS(5203), 1, + anon_sym_LBRACK, + STATE(2590), 1, sym_comment, - ACTIONS(5754), 13, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5206), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2059), 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(5756), 31, + ACTIONS(2065), 26, 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, @@ -261083,90 +263294,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59254] = 27, + [62123] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5462), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5474), 1, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - STATE(2559), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5845), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2591), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [59356] = 5, + [62242] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2560), 1, + STATE(2592), 1, sym_comment, - ACTIONS(5758), 13, + ACTIONS(4356), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261180,18 +263398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5760), 31, + ACTIONS(4841), 30, + 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, @@ -261211,356 +263427,620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59414] = 35, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [62299] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5402), 1, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5404), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5410), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5414), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5418), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5420), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5422), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5764), 1, - anon_sym_in, - STATE(2561), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2593), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5388), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5408), 2, + ACTIONS(5811), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5416), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5426), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5428), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5424), 3, + ACTIONS(5119), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5762), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59532] = 16, + [62414] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5476), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, + anon_sym_AMP_AMP, + ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_PERCENT, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5751), 1, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2562), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2594), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(5809), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 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(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5124), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [59612] = 15, + [62529] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5767), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, + anon_sym_AMP_AMP, + ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, + anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_PERCENT, + ACTIONS(5831), 1, + anon_sym_STAR_STAR, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2563), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2595), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(5809), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5839), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5130), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_implements, + ACTIONS(5835), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62644] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5847), 1, + anon_sym_RBRACK, + STATE(2222), 1, + sym_type_arguments, + STATE(2596), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [59690] = 28, + [62763] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5462), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - STATE(2564), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2597), 1, + sym_comment, + STATE(6167), 1, + aux_sym_array_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 10, - sym__automatic_semicolon, - sym__ternary_qmark, + [62882] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, anon_sym_satisfies, - [59794] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2565), 1, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5851), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_type_arguments, + STATE(2598), 1, sym_comment, - ACTIONS(2139), 13, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2143), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63001] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4815), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, anon_sym_AMP_AMP, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_PERCENT, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5833), 1, + anon_sym_LT, + ACTIONS(5841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2599), 1, + sym_comment, + STATE(3108), 1, + sym_type_arguments, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5835), 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, + ACTIONS(5853), 3, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_implements, - [59852] = 5, + [63116] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2566), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5831), 1, + anon_sym_STAR_STAR, + ACTIONS(5855), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2600), 1, sym_comment, - ACTIONS(2131), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -261569,118 +264049,62 @@ 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(2135), 31, + ACTIONS(4953), 16, 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, - [59910] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5182), 1, - anon_sym_RBRACE, - ACTIONS(5444), 1, - anon_sym_LBRACK, - STATE(2567), 1, - sym_comment, - STATE(3892), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [59998] = 5, + [63201] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2568), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5829), 1, + anon_sym_PERCENT, + ACTIONS(5831), 1, + anon_sym_STAR_STAR, + ACTIONS(5855), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2601), 1, sym_comment, - ACTIONS(2151), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -261689,144 +264113,145 @@ 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(2153), 31, + ACTIONS(4953), 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_implements, - [60056] = 18, + [63284] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5770), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, anon_sym_LT, - STATE(2569), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5858), 1, + anon_sym_RBRACE, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2602), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(4879), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4939), 18, - 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_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60140] = 8, + [63403] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - STATE(2570), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4244), 1, + anon_sym_QMARK, + STATE(2603), 1, sym_comment, - ACTIONS(5773), 2, + ACTIONS(4241), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5776), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4135), 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(4141), 28, + ACTIONS(4139), 23, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -261846,580 +264271,754 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [60204] = 29, + [63466] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5462), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2571), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2604), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 9, - sym__automatic_semicolon, + ACTIONS(4953), 9, 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, - [60310] = 8, + anon_sym_implements, + [63567] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(2572), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5860), 1, + anon_sym_RPAREN, + STATE(2222), 1, + sym_type_arguments, + STATE(2605), 1, + sym_comment, + STATE(6232), 1, + aux_sym_array_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63686] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, anon_sym_AMP_AMP, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5823), 1, anon_sym_CARET, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, anon_sym_PERCENT, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5833), 1, + anon_sym_LT, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5843), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2606), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(5809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5839), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5142), 3, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_implements, - [60374] = 36, + ACTIONS(5835), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63801] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2573), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(2607), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5785), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4927), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60494] = 19, + [63916] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5474), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5817), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_AMP, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5751), 1, + ACTIONS(5833), 1, anon_sym_LT, - STATE(2574), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2608), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5472), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 8, - anon_sym_BANG, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 18, - sym__automatic_semicolon, + ACTIONS(5839), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5835), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 10, 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_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, - [60580] = 36, + anon_sym_implements, + [64015] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2575), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(2609), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60700] = 36, + ACTIONS(4953), 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, + [64112] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, - anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5855), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(2576), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5591), 1, - aux_sym_sequence_expression_repeat1, - STATE(5804), 1, + STATE(2610), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5484), 2, + ACTIONS(4953), 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(5789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60820] = 36, + anon_sym_satisfies, + anon_sym_implements, + [64197] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5791), 1, - anon_sym_RBRACK, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2577), 1, + STATE(2611), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60939] = 10, + ACTIONS(4953), 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, + [64302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5326), 1, - anon_sym_LBRACK, - STATE(2578), 1, + STATE(2612), 1, sym_comment, - ACTIONS(5329), 2, + ACTIONS(1980), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5793), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2030), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5003), 4, + 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, + [64359] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5724), 1, + anon_sym_LT, + ACTIONS(5778), 1, + anon_sym_DOT, + STATE(2613), 1, + sym_comment, + STATE(2883), 1, + sym_type_arguments, + ACTIONS(4821), 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(4202), 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, + anon_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(5320), 11, + [64422] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2614), 1, + sym_comment, + ACTIONS(5637), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5862), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5635), 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(5324), 22, + ACTIONS(5639), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -262439,254 +265038,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61006] = 36, + [64483] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5799), 1, - anon_sym_RBRACK, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2579), 1, + STATE(2615), 1, sym_comment, - STATE(5970), 1, - aux_sym_array_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61125] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_static, - ACTIONS(5803), 1, - anon_sym_readonly, - ACTIONS(5805), 1, - anon_sym_abstract, - STATE(2580), 1, - sym_comment, - STATE(3494), 1, - sym_accessibility_modifier, - STATE(3567), 1, - sym_override_modifier, - STATE(4076), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(4953), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4376), 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, - [61210] = 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [64586] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5170), 1, - anon_sym_COMMA, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2581), 1, - sym_comment, - STATE(2627), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5864), 1, + anon_sym_RBRACK, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2616), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5666), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61327] = 7, + [64705] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2582), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5831), 1, + anon_sym_STAR_STAR, + ACTIONS(5855), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2617), 1, sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5807), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2069), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262697,205 +265238,308 @@ 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(2075), 23, + ACTIONS(4953), 18, 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, - [61388] = 7, + anon_sym_implements, + [64784] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2583), 1, - sym_comment, - ACTIONS(5632), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5809), 5, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5866), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5630), 13, + STATE(2222), 1, + sym_type_arguments, + STATE(2618), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64903] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5868), 1, + anon_sym_RPAREN, + STATE(2222), 1, + sym_type_arguments, + STATE(2619), 1, + sym_comment, + STATE(6089), 1, + aux_sym_array_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 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, - [61449] = 34, + [65022] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2584), 1, + STATE(2620), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5170), 3, + ACTIONS(4961), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61564] = 9, + [65137] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(2585), 1, + ACTIONS(5724), 1, + anon_sym_LT, + STATE(2621), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + STATE(2870), 1, + sym_type_arguments, + ACTIONS(4855), 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(4141), 26, + ACTIONS(4857), 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_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -262915,254 +265559,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61629] = 34, + anon_sym_extends, + [65198] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2586), 1, + STATE(2622), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4968), 3, + ACTIONS(4883), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61744] = 36, + [65313] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(4254), 1, + anon_sym_EQ, + STATE(2623), 1, + sym_comment, + ACTIONS(4257), 5, anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5847), 1, + anon_sym_RBRACE, anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2587), 1, - sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4135), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61863] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4139), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5849), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2588), 1, - sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61982] = 17, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65376] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -263171,31 +265705,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5317), 1, + ACTIONS(5014), 1, anon_sym_RBRACE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2589), 1, + STATE(2624), 1, sym_comment, - STATE(4736), 1, + STATE(4686), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -263226,286 +265760,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [62063] = 7, + [65457] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5496), 1, - anon_sym_LT, - STATE(2590), 1, - sym_comment, - STATE(2840), 1, - sym_type_arguments, - ACTIONS(4855), 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(4857), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 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, + ACTIONS(4869), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [62124] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5170), 1, - anon_sym_COMMA, - ACTIONS(5390), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2591), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2625), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62241] = 34, + ACTIONS(5870), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [65572] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2592), 1, + STATE(2626), 1, sym_comment, - STATE(2921), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5853), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [62356] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5496), 1, - anon_sym_LT, - ACTIONS(5648), 1, - anon_sym_DOT, - STATE(2593), 1, - sym_comment, - STATE(2848), 1, - sym_type_arguments, - ACTIONS(4807), 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(4202), 28, + ACTIONS(5136), 3, 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, + ACTIONS(5396), 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, - anon_sym_extends, - [62419] = 5, + [65687] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2594), 1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(2627), 1, sym_comment, - ACTIONS(1972), 13, + STATE(3058), 2, + sym_template_string, + sym_arguments, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263519,13 +265950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2030), 30, + ACTIONS(4867), 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, @@ -263546,273 +265976,208 @@ 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, - [62476] = 36, + [65750] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2595), 1, + STATE(2628), 1, sym_comment, - STATE(5723), 1, - aux_sym_array_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5041), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62595] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5857), 1, - anon_sym_static, - ACTIONS(5859), 1, - anon_sym_readonly, - ACTIONS(5861), 1, - anon_sym_abstract, - STATE(2596), 1, - sym_comment, - STATE(3480), 1, - sym_accessibility_modifier, - STATE(3554), 1, - sym_override_modifier, - STATE(4125), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(987), 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(4376), 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, - [62680] = 34, + [65865] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5872), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2597), 1, + STATE(2629), 1, sym_comment, - STATE(6178), 1, + STATE(6266), 1, + aux_sym_array_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5863), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [62795] = 6, + [65984] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5650), 1, - anon_sym_is, - STATE(2598), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5230), 1, + anon_sym_LBRACK, + STATE(2630), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(5236), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5233), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5224), 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(4873), 29, - sym__automatic_semicolon, + ACTIONS(5228), 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, @@ -263832,260 +266197,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62854] = 34, + [66049] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + STATE(2631), 1, + sym_comment, + STATE(3534), 1, + sym_override_modifier, + STATE(3907), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5874), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [66136] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2599), 1, + STATE(2632), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5180), 3, + ACTIONS(4955), 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(4953), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + 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, - [62969] = 34, + anon_sym_satisfies, + anon_sym_implements, + [66225] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5138), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, - anon_sym_AMP_AMP, - ACTIONS(5460), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5486), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2600), 1, - sym_comment, - STATE(2627), 1, - sym_type_arguments, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5482), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5762), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [63084] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5414), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5865), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2601), 1, + STATE(2633), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(5878), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63203] = 5, + [66342] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2602), 1, + STATE(2634), 1, sym_comment, - ACTIONS(4343), 13, + ACTIONS(2061), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5880), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264099,15 +266444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 30, - sym__automatic_semicolon, + ACTIONS(2065), 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, @@ -264128,190 +266468,91 @@ 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, - [63260] = 34, + [66403] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2635), 1, + sym_comment, + ACTIONS(5226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5882), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5224), 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(5228), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2603), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5272), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63375] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RBRACE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2604), 1, - sym_comment, - STATE(4736), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63456] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66464] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3570), 1, - anon_sym_extends, - STATE(2605), 1, - sym_comment, - ACTIONS(5343), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5346), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2069), 10, + STATE(2636), 1, + sym_comment, + ACTIONS(4871), 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(2075), 26, + ACTIONS(4873), 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, @@ -264331,128 +266572,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63521] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2606), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5762), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [63636] = 17, + anon_sym_extends, + anon_sym_is, + [66521] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5182), 1, - anon_sym_RBRACE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(2607), 1, + ACTIONS(5884), 1, + anon_sym_static, + ACTIONS(5886), 1, + anon_sym_readonly, + ACTIONS(5888), 1, + anon_sym_abstract, + STATE(2637), 1, sym_comment, - STATE(4736), 1, + STATE(3485), 1, + sym_accessibility_modifier, + STATE(3536), 1, + sym_override_modifier, + STATE(4179), 1, sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1041), 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(2900), 23, + ACTIONS(4378), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -264460,15 +266630,9 @@ 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, @@ -264476,502 +266640,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63717] = 34, + [66606] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5203), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, + STATE(2638), 1, + sym_comment, + ACTIONS(5206), 2, anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2608), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5890), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3568), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2059), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5276), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63832] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(2065), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2609), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66673] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5230), 1, + anon_sym_LBRACK, + STATE(2639), 1, + sym_comment, + ACTIONS(5233), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5894), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5236), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5224), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5228), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5274), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63947] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5139), 1, - anon_sym_RBRACE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2610), 1, - sym_comment, - STATE(4736), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [64028] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66740] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2611), 1, + STATE(2640), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5270), 3, + ACTIONS(5138), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64143] = 34, + [66855] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2612), 1, + STATE(2641), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5264), 3, + ACTIONS(5140), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64258] = 34, + [66970] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5138), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2613), 1, + STATE(2642), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5244), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64373] = 14, + [67087] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5867), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2614), 1, + STATE(2643), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(4329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264982,13 +267016,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(4980), 21, + ACTIONS(4849), 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, @@ -265004,126 +267046,113 @@ 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, - [64448] = 34, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [67144] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5898), 1, + anon_sym_RBRACK, + STATE(2222), 1, sym_type_arguments, - STATE(2615), 1, + STATE(2644), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4960), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64563] = 18, + [67263] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5870), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2616), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4270), 1, + anon_sym_QMARK, + STATE(2645), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(4268), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4135), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -265132,12 +267161,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(4939), 17, + ACTIONS(4139), 23, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, @@ -265151,714 +267184,682 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [64646] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67326] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5873), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2617), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 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(5055), 19, - sym__ternary_qmark, + ACTIONS(4881), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4923), 1, anon_sym_satisfies, - anon_sym_implements, - [64723] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2618), 1, - sym_comment, - ACTIONS(5178), 4, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, anon_sym_COMMA, + ACTIONS(5900), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5172), 13, + STATE(2222), 1, + sym_type_arguments, + STATE(2646), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 26, - 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_AMP_AMP, - anon_sym_PIPE_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(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [64782] = 9, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67445] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_extends, - ACTIONS(5322), 1, - anon_sym_EQ, - STATE(2619), 1, - sym_comment, - ACTIONS(5326), 2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5138), 1, anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5329), 3, - anon_sym_GT, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5320), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5324), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, anon_sym_AMP_AMP, + ACTIONS(5416), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_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(5418), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5420), 1, anon_sym_satisfies, - [64847] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2620), 1, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2647), 1, sym_comment, - ACTIONS(4845), 13, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4847), 30, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5902), 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, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 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, - anon_sym_extends, - anon_sym_is, - [64904] = 36, + [67562] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5876), 1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2621), 1, + STATE(2648), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5729), 1, + aux_sym_array_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65023] = 35, + [67681] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5170), 1, - anon_sym_COMMA, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2622), 1, - sym_comment, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(2649), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65140] = 36, + ACTIONS(5906), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [67796] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5880), 1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, anon_sym_RBRACK, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2623), 1, + STATE(2650), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5797), 1, + aux_sym_array_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65259] = 8, + [67915] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(2624), 1, - sym_comment, - ACTIONS(4253), 5, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5910), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4137), 13, + STATE(2222), 1, + sym_type_arguments, + STATE(2651), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65322] = 36, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68034] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5815), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2625), 1, + STATE(2652), 1, sym_comment, - STATE(6013), 1, - aux_sym_array_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5246), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65441] = 36, + [68149] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5884), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5912), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2626), 1, + STATE(2653), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65560] = 8, + [68268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(2627), 1, + STATE(2654), 1, sym_comment, - STATE(3118), 2, - sym_template_string, - sym_arguments, - ACTIONS(4861), 13, + ACTIONS(4983), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265872,14 +267873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4863), 26, - sym__automatic_semicolon, + ACTIONS(5321), 26, 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, @@ -265898,671 +267898,803 @@ 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, - [65623] = 36, + [68327] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5886), 1, - anon_sym_RPAREN, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, + anon_sym_RBRACE, + STATE(2222), 1, sym_type_arguments, - STATE(2628), 1, + STATE(2655), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65742] = 36, + [68446] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2656), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68527] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5888), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5916), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2629), 1, + STATE(2657), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65861] = 36, + [68646] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5890), 1, - anon_sym_RBRACE, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5918), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2630), 1, + STATE(2658), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65980] = 36, + [68765] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5422), 1, sym__ternary_qmark, - ACTIONS(5892), 1, - anon_sym_RBRACE, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2631), 1, + STATE(2659), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5396), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66099] = 36, + ACTIONS(5788), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [68880] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5894), 1, - anon_sym_RBRACK, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5920), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2632), 1, + STATE(2660), 1, sym_comment, - STATE(4631), 1, + STATE(4675), 1, aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66218] = 36, + [68999] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5922), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2661), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 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(5067), 19, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4893), 1, + 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, + [69076] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5925), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2662), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 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(5092), 17, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 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_implements, + [69159] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5813), 1, + anon_sym_AMP_AMP, + ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5817), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5821), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5823), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5825), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5829), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5831), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5833), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5841), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5843), 1, sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5896), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2633), 1, + STATE(2663), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - STATE(6324), 1, - aux_sym_array_repeat1, - ACTIONS(4887), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5811), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5109), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5835), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66337] = 35, + [69274] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5170), 1, - anon_sym_COMMA, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2627), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5928), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2634), 1, + STATE(2664), 1, sym_comment, - STATE(5804), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5898), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5480), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66454] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - STATE(2635), 1, - sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5900), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [66541] = 7, + [69393] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2636), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5930), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2665), 1, sym_comment, - ACTIONS(5322), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5904), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5320), 13, + STATE(6286), 1, + sym_optional_chain, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266573,16 +268705,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(5324), 23, + ACTIONS(5157), 21, 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, @@ -266598,90 +268727,144 @@ 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, - [66602] = 34, + anon_sym_implements, + [69468] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2637), 1, + STATE(2666), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5906), 3, + [69587] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2667), 1, + sym_comment, + ACTIONS(4348), 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(4875), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [66717] = 17, + 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, + [69644] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -266690,31 +268873,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5217), 1, anon_sym_RBRACE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2638), 1, + STATE(2668), 1, sym_comment, - STATE(4736), 1, + STATE(4686), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -266745,66 +268928,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66798] = 5, + [69725] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2639), 1, - sym_comment, - ACTIONS(4349), 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(4869), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4895), 1, + anon_sym_GT_GT, + ACTIONS(4899), 1, + anon_sym_AMP, + ACTIONS(4901), 1, anon_sym_CARET, + ACTIONS(4903), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, anon_sym_PERCENT, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5935), 1, + anon_sym_RPAREN, + STATE(2222), 1, + sym_type_arguments, + STATE(2669), 1, + sym_comment, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [66855] = 5, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2640), 1, + STATE(2670), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266818,7 +269032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 30, + ACTIONS(5321), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266849,120 +269063,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66912] = 36, + [69901] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5138), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_GT_GT, + ACTIONS(5382), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_CARET, + ACTIONS(5386), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, + anon_sym_PERCENT, + ACTIONS(5392), 1, + anon_sym_STAR_STAR, + ACTIONS(5394), 1, + anon_sym_LT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2671), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5368), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5380), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5400), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70018] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5797), 1, + ACTIONS(5001), 1, anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RBRACK, - STATE(2220), 1, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_type_arguments, - STATE(2641), 1, + STATE(2672), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - STATE(6206), 1, - aux_sym_array_repeat1, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67031] = 5, + [70137] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2642), 1, + ACTIONS(3568), 1, + anon_sym_extends, + STATE(2673), 1, sym_comment, - ACTIONS(4345), 13, + ACTIONS(5203), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5206), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2059), 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(4839), 30, + ACTIONS(2065), 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, @@ -266982,422 +269284,641 @@ 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, - [67088] = 36, + [70202] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5797), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(5910), 1, + ACTIONS(5941), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2643), 1, + STATE(2674), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(6189), 1, + STATE(6019), 1, aux_sym_array_repeat1, - ACTIONS(4887), 2, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67207] = 34, + [70321] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5943), 1, + anon_sym_RBRACK, + STATE(2222), 1, sym_type_arguments, - STATE(2644), 1, + STATE(2675), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + STATE(6328), 1, + aux_sym_array_repeat1, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5300), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67322] = 34, + [70440] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5138), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5378), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5384), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5386), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5390), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5392), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5414), 1, + anon_sym_AMP_AMP, + ACTIONS(5416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5418), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2645), 1, + STATE(2676), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5368), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5372), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5380), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5398), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5400), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5194), 3, - anon_sym_LBRACE, + ACTIONS(5396), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70557] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(5200), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2677), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [70638] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_extends, + STATE(2678), 1, + sym_comment, + ACTIONS(5230), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5233), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5224), 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(5228), 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, - [67437] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70703] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(4925), 1, sym__ternary_qmark, - ACTIONS(5797), 1, + ACTIONS(5001), 1, anon_sym_COMMA, - ACTIONS(5912), 1, - anon_sym_RPAREN, - STATE(2220), 1, + ACTIONS(5947), 1, + anon_sym_RBRACK, + STATE(2222), 1, sym_type_arguments, - STATE(2646), 1, + STATE(2679), 1, sym_comment, - STATE(6178), 1, + STATE(4675), 1, + aux_sym_sequence_expression_repeat1, + STATE(6286), 1, sym_optional_chain, - STATE(6233), 1, - aux_sym_array_repeat1, - ACTIONS(4887), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67556] = 21, + [70822] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(5535), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2647), 1, + STATE(2680), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4135), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + 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(4944), 15, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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, - anon_sym_implements, - [67645] = 8, + [70887] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4155), 1, anon_sym_EQ, - STATE(2648), 1, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2681), 1, sym_comment, - ACTIONS(4287), 5, + ACTIONS(5535), 2, anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(4139), 26, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4137), 13, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70952] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5316), 1, + anon_sym_RBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2682), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71033] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2683), 1, + sym_comment, + ACTIONS(5266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267411,10 +269932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(5268), 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, @@ -267435,285 +269961,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67708] = 34, + anon_sym_extends, + [71089] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5458), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5466), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5468), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5470), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5474), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5486), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, + ACTIONS(5983), 1, sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2649), 1, + STATE(2684), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5246), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5472), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5214), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5480), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67823] = 36, + [71203] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5914), 1, - anon_sym_RBRACK, - STATE(2220), 1, + ACTIONS(5985), 1, + anon_sym_SEMI, + ACTIONS(5987), 1, + sym__automatic_semicolon, + STATE(2627), 1, sym_type_arguments, - STATE(2650), 1, + STATE(2685), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67942] = 36, + [71319] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(2686), 1, + sym_comment, + STATE(4686), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5874), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [71397] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5989), 1, + anon_sym_STAR, + ACTIONS(5991), 1, + anon_sym_async, + ACTIONS(5993), 1, + anon_sym_readonly, + STATE(2687), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(3853), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5995), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + 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(4378), 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, + [71479] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5916), 1, - anon_sym_COLON, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2651), 1, + STATE(2688), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(5997), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68061] = 16, + [71593] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5918), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2652), 1, + ACTIONS(4983), 1, + anon_sym_extends, + STATE(2689), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267724,554 +270349,553 @@ 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(4944), 18, + ACTIONS(5321), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [68140] = 36, + [71651] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5480), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, + STATE(2690), 1, + sym_comment, + ACTIONS(4853), 2, anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, + anon_sym_extends, + ACTIONS(5483), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5921), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2653), 1, - sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4135), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68259] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5170), 1, - anon_sym_COMMA, - ACTIONS(5390), 1, + ACTIONS(4139), 26, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5458), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5462), 1, - anon_sym_GT_GT, - ACTIONS(5466), 1, - anon_sym_AMP, - ACTIONS(5468), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5470), 1, - anon_sym_PIPE, - ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5478), 1, - anon_sym_LT, - ACTIONS(5486), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5488), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2654), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5454), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71713] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5007), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5456), 2, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5450), 1, + anon_sym_LBRACK, + STATE(2691), 1, + sym_comment, + STATE(3907), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5874), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [71793] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2692), 1, + sym_comment, + ACTIONS(3186), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5464), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5472), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5482), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5484), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5923), 2, + ACTIONS(3568), 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, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5480), 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, - [68376] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71849] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5925), 1, - anon_sym_RPAREN, - STATE(2220), 1, + ACTIONS(5999), 1, + anon_sym_SEMI, + ACTIONS(6001), 1, + sym__automatic_semicolon, + STATE(2627), 1, sym_type_arguments, - STATE(2655), 1, + STATE(2693), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68495] = 36, + [71965] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(3568), 1, + anon_sym_extends, + ACTIONS(5203), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(6003), 1, + anon_sym_RPAREN, + STATE(2694), 1, + sym_comment, + ACTIONS(2061), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5206), 2, anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5797), 1, + ACTIONS(5880), 2, anon_sym_COMMA, - ACTIONS(5927), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2656), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(6260), 1, - aux_sym_array_repeat1, - ACTIONS(4887), 2, + anon_sym_COLON, + ACTIONS(2059), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68614] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(2065), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5929), 1, - anon_sym_RBRACE, - STATE(2220), 1, - sym_type_arguments, - STATE(2657), 1, + [72033] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4853), 1, + anon_sym_extends, + ACTIONS(5480), 1, + anon_sym_LBRACK, + ACTIONS(6010), 1, + anon_sym_RPAREN, + STATE(2695), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6006), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4135), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4139), 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, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68733] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72101] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5230), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5236), 1, + anon_sym_extends, + ACTIONS(6013), 1, + anon_sym_RPAREN, + STATE(2696), 1, + sym_comment, + ACTIONS(5226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5233), 2, anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2658), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5224), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 9, + ACTIONS(5228), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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, - anon_sym_implements, - [68836] = 10, + [72169] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5343), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(2659), 1, + ACTIONS(6016), 1, + anon_sym_STAR, + ACTIONS(6018), 1, + anon_sym_async, + ACTIONS(6020), 1, + anon_sym_readonly, + STATE(2697), 1, sym_comment, - ACTIONS(5346), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5931), 2, + STATE(3524), 1, + sym_override_modifier, + STATE(3870), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6022), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3570), 4, - 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(2069), 11, + ACTIONS(4378), 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, + [72251] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2698), 1, + sym_comment, + ACTIONS(4843), 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(2075), 22, + ACTIONS(4845), 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, @@ -268291,16 +270915,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68903] = 6, + anon_sym_extends, + [72307] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6024), 1, + anon_sym_static, + ACTIONS(6026), 1, + anon_sym_readonly, + ACTIONS(6028), 1, + anon_sym_abstract, + STATE(2699), 1, + sym_comment, + STATE(3572), 1, + sym_override_modifier, + STATE(4217), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [72387] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6030), 1, + anon_sym_STAR, + ACTIONS(6032), 1, + anon_sym_async, + ACTIONS(6036), 1, + anon_sym_abstract, + STATE(2700), 1, + sym_comment, + STATE(3825), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6034), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [72465] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6040), 1, + anon_sym_RBRACE, + STATE(2701), 1, + sym_comment, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [72555] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6030), 1, + anon_sym_STAR, + ACTIONS(6032), 1, + anon_sym_async, + ACTIONS(6042), 1, + anon_sym_readonly, + STATE(2702), 1, + sym_comment, + STATE(3528), 1, + sym_override_modifier, + STATE(3829), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6034), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [72637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5935), 1, - anon_sym_is, - STATE(2660), 1, + STATE(2703), 1, sym_comment, - ACTIONS(4855), 13, + ACTIONS(3200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268314,7 +271194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4857), 29, + ACTIONS(3536), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -268344,113 +271224,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68962] = 36, + [72693] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(2704), 1, + sym_comment, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [72783] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5937), 1, - anon_sym_RPAREN, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2661), 1, + STATE(2705), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(6044), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69081] = 6, + [72897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5650), 1, - anon_sym_is, - STATE(2662), 1, + ACTIONS(6046), 1, + anon_sym_AMP, + ACTIONS(6048), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2706), 1, sym_comment, - ACTIONS(4841), 13, + ACTIONS(5178), 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(4843), 29, + ACTIONS(5180), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -268479,29 +271426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [69140] = 9, + [72959] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5326), 1, - anon_sym_LBRACK, - STATE(2663), 1, - sym_comment, - ACTIONS(5003), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5329), 3, - anon_sym_GT, + ACTIONS(6046), 1, anon_sym_AMP, + ACTIONS(6048), 1, anon_sym_PIPE, - ACTIONS(5320), 10, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2707), 1, + sym_comment, + ACTIONS(5182), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -268509,14 +271451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 26, + ACTIONS(5184), 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_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268536,43 +271480,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69205] = 9, + [73021] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, anon_sym_LBRACK, - STATE(2664), 1, - sym_comment, - ACTIONS(3570), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5346), 3, - anon_sym_GT, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(2069), 10, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2708), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5949), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5951), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73135] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2709), 1, + sym_comment, + ACTIONS(3210), 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(2075), 26, + ACTIONS(3420), 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, @@ -268592,42 +271610,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69270] = 8, + anon_sym_extends, + [73191] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_QMARK, - STATE(2665), 1, + STATE(2710), 1, sym_comment, - ACTIONS(4264), 5, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5535), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4137), 13, + anon_sym_LBRACK, + ACTIONS(5051), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4135), 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(4141), 23, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268647,221 +271665,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69333] = 29, + [73253] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5819), 1, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(4911), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2666), 1, + STATE(2711), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5596), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5837), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 8, + [73367] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2712), 1, + sym_comment, + ACTIONS(5535), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(4139), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, - anon_sym_implements, - [69438] = 34, + [73431] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(4891), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(4893), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(4895), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(4899), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(4901), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(4903), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(4907), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(4909), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(4911), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(4919), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2667), 1, + STATE(2713), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4879), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(4897), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(4917), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5564), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + ACTIONS(4913), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69553] = 19, + [73545] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5918), 1, + ACTIONS(6052), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2668), 1, + STATE(2714), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 8, + ACTIONS(5065), 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(4944), 17, + ACTIONS(5067), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, @@ -268869,574 +271941,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [69638] = 34, + [73621] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(5786), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2669), 1, + STATE(2715), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(2153), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4985), 3, - anon_sym_LBRACE, + ACTIONS(2155), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5837), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, - [69753] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73685] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5939), 1, - anon_sym_RBRACK, - STATE(2220), 1, + ACTIONS(6055), 1, + anon_sym_LT, + STATE(2627), 1, sym_type_arguments, - STATE(2670), 1, + STATE(2716), 1, sym_comment, - STATE(5970), 1, - aux_sym_array_repeat1, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5092), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69872] = 30, + [73767] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2671), 1, + STATE(2717), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5109), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5837), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [69979] = 25, + [73881] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2672), 1, + STATE(2718), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5556), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5553), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5363), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5549), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 10, + ACTIONS(5551), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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, - anon_sym_implements, - [70076] = 26, + [73943] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5831), 1, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + sym__automatic_semicolon, + STATE(2627), 1, sym_type_arguments, - STATE(2673), 1, + STATE(2719), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5811), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5837), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [70175] = 27, + [74059] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(6062), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2674), 1, + STATE(2720), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5811), 2, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 9, + ACTIONS(5157), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, - anon_sym_implements, - [70276] = 23, + [74133] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2675), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + STATE(2721), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4135), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 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(4944), 12, + ACTIONS(4139), 28, 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, - [70369] = 18, + [74191] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5918), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2676), 1, + ACTIONS(5776), 1, + sym__automatic_semicolon, + STATE(2722), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(2057), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -269445,65 +272408,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(4944), 17, + ACTIONS(2113), 27, 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, - [70452] = 19, + [74251] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5918), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2677), 1, + STATE(2723), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 11, + ACTIONS(3222), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -269512,228 +272458,284 @@ 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(4944), 16, + ACTIONS(3438), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [70537] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [74307] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, + ACTIONS(5363), 1, + anon_sym_extends, + STATE(2724), 1, + sym_comment, + ACTIONS(5553), 2, anon_sym_COMMA, - ACTIONS(4893), 1, + anon_sym_LBRACK, + ACTIONS(5556), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5549), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4899), 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(5551), 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(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5941), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2678), 1, + [74369] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2725), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(4965), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4967), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4135), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(4139), 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, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70656] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74429] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2726), 1, + sym_comment, + ACTIONS(3232), 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(3448), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - ACTIONS(5943), 1, - anon_sym_RPAREN, - STATE(2220), 1, - sym_type_arguments, - STATE(2679), 1, + anon_sym_extends, + [74485] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6046), 1, + anon_sym_AMP, + ACTIONS(6048), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2727), 1, sym_comment, - STATE(4631), 1, - aux_sym_sequence_expression_repeat1, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5080), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5082), 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, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70775] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74547] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2680), 1, + STATE(2728), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5190), 6, + ACTIONS(4983), 4, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4137), 11, + ACTIONS(5319), 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(4141), 22, + ACTIONS(5321), 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, @@ -269753,124 +272755,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70840] = 36, + [74605] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5945), 1, - anon_sym_RPAREN, - STATE(2220), 1, + ACTIONS(6065), 1, + anon_sym_SEMI, + ACTIONS(6067), 1, + sym__automatic_semicolon, + STATE(2627), 1, sym_type_arguments, - STATE(2681), 1, + STATE(2729), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - STATE(6278), 1, - aux_sym_array_repeat1, - ACTIONS(4887), 2, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4897), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4915), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4925), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(4923), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70959] = 8, + [74721] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(2682), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(5086), 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(4141), 26, + ACTIONS(5088), 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, @@ -269890,14 +272886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71021] = 5, + anon_sym_extends, + [74777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2683), 1, + STATE(2731), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269911,7 +272908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5023), 29, + ACTIONS(5099), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -269941,14 +272938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71077] = 5, + [74833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2684), 1, + STATE(2732), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269962,7 +272959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 29, + ACTIONS(5099), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -269992,14 +272989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71133] = 5, + [74889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2685), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270013,7 +273010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5112), 29, + ACTIONS(5099), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270043,14 +273040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71189] = 5, + [74945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2686), 1, + STATE(2734), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(5101), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270064,7 +273061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 29, + ACTIONS(5103), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270094,14 +273091,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71245] = 5, + [75001] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2687), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5230), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_extends, + ACTIONS(5296), 1, + anon_sym_QMARK, + ACTIONS(5882), 1, + anon_sym_COLON, + STATE(2735), 1, + sym_comment, + ACTIONS(5233), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5894), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5224), 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(5228), 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, + [75071] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2736), 1, + sym_comment, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5480), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4853), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4135), 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(4139), 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, + [75133] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2737), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5101), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270115,7 +273224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5112), 29, + ACTIONS(5103), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270145,14 +273254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71301] = 5, + [75189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2688), 1, + STATE(2738), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(5101), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270166,7 +273275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 29, + ACTIONS(5103), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270196,14 +273305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71357] = 5, + [75245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2689), 1, + STATE(2739), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270217,7 +273326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 29, + ACTIONS(5115), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270247,14 +273356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71413] = 5, + [75301] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2690), 1, + STATE(2740), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(5113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270268,7 +273377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 29, + ACTIONS(5115), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270298,14 +273407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71469] = 5, + [75357] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2691), 1, + ACTIONS(6069), 1, + sym__automatic_semicolon, + STATE(2741), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(2113), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270319,14 +273435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 29, - sym__automatic_semicolon, + ACTIONS(2065), 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, @@ -270348,15 +273461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71525] = 5, + [75419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2692), 1, + STATE(2742), 1, sym_comment, - ACTIONS(3232), 13, + ACTIONS(5113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270370,7 +273482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3506), 29, + ACTIONS(5115), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270400,14 +273512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71581] = 5, + [75475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2693), 1, + STATE(2743), 1, sym_comment, - ACTIONS(5158), 13, + ACTIONS(5132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270421,7 +273533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5160), 29, + ACTIONS(5134), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270451,14 +273563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71637] = 5, + [75531] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2694), 1, + STATE(2744), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270472,7 +273584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 29, + ACTIONS(5164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270502,96 +273614,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71693] = 34, + [75587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2745), 1, + sym_comment, + ACTIONS(5166), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2695), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5947), 2, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(5949), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5951), 2, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5168), 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, - ACTIONS(5959), 2, + 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(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 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(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71807] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [75643] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - STATE(2696), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(5170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270605,7 +273686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 28, + ACTIONS(5172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270634,41 +273715,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71865] = 8, + anon_sym_extends, + [75699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2697), 1, + STATE(2747), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5779), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5190), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4137), 11, + ACTIONS(5174), 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(4141), 22, + ACTIONS(5176), 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, @@ -270688,42 +273766,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71927] = 9, + anon_sym_extends, + [75755] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(2698), 1, + STATE(2748), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(5174), 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(4141), 25, + ACTIONS(5176), 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, @@ -270743,121 +273817,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71991] = 34, + anon_sym_extends, + [75811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2699), 1, + STATE(2749), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, + ACTIONS(5174), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5614), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72105] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5773), 1, - anon_sym_LBRACK, - STATE(2700), 1, - sym_comment, - ACTIONS(4843), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5776), 3, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4137), 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(4141), 26, + ACTIONS(5176), 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, @@ -270877,41 +273868,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72167] = 8, + anon_sym_extends, + [75867] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2701), 1, + STATE(2750), 1, sym_comment, - ACTIONS(5526), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5523), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5043), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5519), 11, + ACTIONS(5186), 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(5521), 22, + ACTIONS(5188), 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, @@ -270931,14 +273919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72229] = 5, + anon_sym_extends, + [75923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2702), 1, + STATE(2751), 1, sym_comment, - ACTIONS(5210), 13, + ACTIONS(5186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270952,7 +273941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5212), 29, + ACTIONS(5188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -270982,14 +273971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72285] = 5, + [75979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2703), 1, + STATE(2752), 1, sym_comment, - ACTIONS(5154), 13, + ACTIONS(5186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271003,7 +273992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5156), 29, + ACTIONS(5188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271033,67 +274022,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72341] = 22, + [76035] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(5987), 1, + ACTIONS(6073), 1, + anon_sym_COMMA, + ACTIONS(6075), 1, anon_sym_RBRACE, - STATE(2704), 1, + STATE(2753), 1, sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(6211), 1, aux_sym_object_pattern_repeat1, + STATE(7093), 1, + sym__property_name, + STATE(7181), 1, + sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, + STATE(6203), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6071), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -271101,14 +274086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72431] = 5, + [76117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2705), 1, + STATE(2754), 1, sym_comment, - ACTIONS(5154), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271122,7 +274107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5156), 29, + ACTIONS(5222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271152,14 +274137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72487] = 5, + [76173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2706), 1, + STATE(2755), 1, sym_comment, - ACTIONS(5106), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271173,7 +274158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5108), 29, + ACTIONS(5222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271203,14 +274188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72543] = 5, + [76229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2707), 1, + STATE(2756), 1, sym_comment, - ACTIONS(5106), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271224,7 +274209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5108), 29, + ACTIONS(5222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271254,45 +274239,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72599] = 12, + [76285] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3236), 1, - anon_sym_QMARK, - ACTIONS(3570), 1, - anon_sym_extends, - ACTIONS(5343), 1, - anon_sym_LBRACK, - ACTIONS(5807), 1, - anon_sym_COLON, - STATE(2708), 1, + STATE(2757), 1, sym_comment, - ACTIONS(5346), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5931), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2069), 11, + ACTIONS(5238), 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(2075), 22, + ACTIONS(5240), 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, @@ -271312,37 +274289,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72669] = 5, + anon_sym_extends, + [76341] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2709), 1, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(4254), 1, + anon_sym_EQ, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(2758), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(4257), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5051), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5096), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -271362,26 +274347,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72725] = 7, + [76409] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2710), 1, + ACTIONS(4853), 1, + anon_sym_extends, + ACTIONS(5480), 1, + anon_sym_LBRACK, + ACTIONS(6081), 1, + anon_sym_RPAREN, + STATE(2759), 1, sym_comment, - ACTIONS(5029), 2, + ACTIONS(5483), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5031), 7, - sym__automatic_semicolon, + ACTIONS(6077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6079), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4137), 11, + anon_sym_COLON, + ACTIONS(4135), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271393,7 +274381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 22, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -271416,41 +274404,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72785] = 8, + [76477] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6084), 1, + anon_sym_RBRACE, + STATE(2760), 1, + sym_comment, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [76567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5523), 1, - anon_sym_LBRACK, - STATE(2711), 1, + STATE(2761), 1, sym_comment, - ACTIONS(5043), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5526), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5519), 10, + ACTIONS(4985), 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(5521), 26, + ACTIONS(4987), 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, @@ -271470,14 +274522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72847] = 5, + anon_sym_extends, + [76623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2712), 1, + STATE(2762), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271491,7 +274544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5100), 29, + ACTIONS(5351), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271521,41 +274574,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72903] = 8, + [76679] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2713), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + STATE(2763), 1, sym_comment, - ACTIONS(5776), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5773), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4843), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4137), 11, + ACTIONS(5224), 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(4141), 22, + ACTIONS(5228), 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, @@ -271575,108 +274626,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72965] = 25, + [76737] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2714), 1, + STATE(2764), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(5327), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 9, + ACTIONS(5329), 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, - [73061] = 5, + anon_sym_extends, + [76793] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2715), 1, + ACTIONS(3186), 1, + anon_sym_QMARK, + ACTIONS(3568), 1, + anon_sym_extends, + ACTIONS(5203), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_COLON, + STATE(2765), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5206), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5890), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2059), 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(5096), 29, - sym__automatic_semicolon, + ACTIONS(2065), 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, @@ -271696,53 +274735,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73117] = 18, + [76863] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(6013), 1, + ACTIONS(6088), 1, anon_sym_async, - ACTIONS(6015), 1, + ACTIONS(6090), 1, anon_sym_readonly, - STATE(2716), 1, + STATE(2766), 1, sym_comment, - STATE(3527), 1, + STATE(3529), 1, sym_override_modifier, - STATE(3809), 1, + STATE(3903), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6017), 2, + ACTIONS(6092), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(4376), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -271761,80 +274799,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73199] = 5, + [76945] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2717), 1, - sym_comment, - ACTIONS(5304), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6046), 1, anon_sym_AMP, + ACTIONS(6048), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5306), 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, + ACTIONS(6050), 1, anon_sym_extends, - [73255] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6019), 1, - anon_sym_AMP, - STATE(2718), 1, + STATE(2767), 1, sym_comment, - ACTIONS(5294), 12, + ACTIONS(5312), 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(5296), 29, + ACTIONS(5314), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271863,17 +274853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73313] = 6, + [77007] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - STATE(2719), 1, + STATE(2768), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(5312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271887,16 +274874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 28, + ACTIONS(5314), 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, @@ -271916,14 +274903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73371] = 5, + anon_sym_extends, + [77063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2720), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271937,7 +274925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 29, + ACTIONS(5272), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271967,20 +274955,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73427] = 8, + [77119] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(6046), 1, anon_sym_AMP, - ACTIONS(6021), 1, + ACTIONS(6048), 1, anon_sym_PIPE, - ACTIONS(6023), 1, + ACTIONS(6050), 1, anon_sym_extends, - STATE(2721), 1, + STATE(2770), 1, sym_comment, - ACTIONS(5266), 11, + ACTIONS(5248), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271992,7 +274980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 28, + ACTIONS(5250), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272021,14 +275009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73489] = 5, + [77181] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2722), 1, + STATE(2771), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272042,7 +275030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 29, + ACTIONS(5276), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272072,16 +275060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73545] = 6, + [77237] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5261), 1, - anon_sym_DOT, - STATE(2723), 1, + STATE(2772), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5262), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272095,7 +275081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 28, + ACTIONS(5264), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272105,6 +275091,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, @@ -272124,78 +275111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73603] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6011), 1, - anon_sym_STAR, - ACTIONS(6013), 1, - anon_sym_async, - ACTIONS(6025), 1, - anon_sym_abstract, - STATE(2724), 1, - sym_comment, - STATE(3810), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6017), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [73681] = 6, + [77293] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5258), 1, - anon_sym_DOT, - STATE(2725), 1, + STATE(2773), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272209,7 +275132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 28, + ACTIONS(5258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272219,6 +275142,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, @@ -272238,14 +275162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73739] = 5, + [77349] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2726), 1, + STATE(2774), 1, sym_comment, - ACTIONS(5310), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272259,7 +275183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 29, + ACTIONS(5304), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272289,77 +275213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73795] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6027), 1, - anon_sym_static, - ACTIONS(6029), 1, - anon_sym_readonly, - ACTIONS(6031), 1, - anon_sym_abstract, - STATE(2727), 1, - sym_comment, - STATE(3577), 1, - sym_override_modifier, - STATE(4233), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [73875] = 5, + [77405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2728), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5090), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272373,7 +275234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 29, + ACTIONS(5258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272403,14 +275264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73931] = 5, + [77461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2729), 1, + STATE(2776), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272424,7 +275285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5242), 29, + ACTIONS(5304), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272454,14 +275315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73987] = 5, + [77517] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2730), 1, + STATE(2777), 1, sym_comment, - ACTIONS(5236), 13, + ACTIONS(5266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272475,7 +275336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5238), 29, + ACTIONS(5268), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272505,14 +275366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74043] = 5, + [77573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2731), 1, + STATE(2778), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272526,7 +275387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5222), 29, + ACTIONS(5254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272556,14 +275417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74099] = 5, + [77629] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2732), 1, + STATE(2779), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272577,7 +275438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5218), 29, + ACTIONS(5254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272607,14 +275468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74155] = 5, + [77685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2733), 1, + STATE(2780), 1, sym_comment, - ACTIONS(3230), 13, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272628,7 +275489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3508), 29, + ACTIONS(5215), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272658,14 +275519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74211] = 5, + [77741] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2734), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5086), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272679,7 +275540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 29, + ACTIONS(5211), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272709,14 +275570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74267] = 5, + [77797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2735), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272730,7 +275591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5208), 29, + ACTIONS(5215), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272760,14 +275621,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74323] = 5, + [77853] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(2783), 1, + sym_comment, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [77943] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2736), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5202), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272781,7 +275710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 29, + ACTIONS(5211), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272811,14 +275740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74379] = 5, + [77999] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2737), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272832,7 +275761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 29, + ACTIONS(5153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272862,14 +275791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74435] = 5, + [78055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2738), 1, + STATE(2786), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272883,7 +275812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5178), 29, + ACTIONS(5149), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272913,21 +275842,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74491] = 8, + [78111] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6098), 1, + anon_sym_async, + ACTIONS(6102), 1, + anon_sym_abstract, + STATE(2787), 1, + sym_comment, + STATE(3807), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6100), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [78189] = 6, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6033), 1, - sym__automatic_semicolon, - STATE(2739), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + STATE(2788), 1, sym_comment, - ACTIONS(2095), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2069), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272941,11 +275927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 25, + ACTIONS(4139), 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, @@ -272967,107 +275956,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74553] = 35, + [78247] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6098), 1, + anon_sym_async, + ACTIONS(6104), 1, + anon_sym_readonly, + STATE(2789), 1, + sym_comment, + STATE(3521), 1, + sym_override_modifier, + STATE(3833), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6100), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6035), 1, + anon_sym_QMARK, + ACTIONS(4378), 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, + [78329] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6106), 1, + anon_sym_static, + ACTIONS(6108), 1, + anon_sym_readonly, + ACTIONS(6110), 1, + anon_sym_abstract, + STATE(2790), 1, + sym_comment, + STATE(3567), 1, + sym_override_modifier, + STATE(4209), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(6037), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4378), 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, + [78409] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - STATE(2627), 1, - sym_type_arguments, - STATE(2740), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6112), 1, + anon_sym_STAR, + ACTIONS(6114), 1, + anon_sym_async, + ACTIONS(6118), 1, + anon_sym_abstract, + STATE(2791), 1, sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5947), 2, + STATE(3822), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6116), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [78487] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6112), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74669] = 35, + ACTIONS(6114), 1, + anon_sym_async, + ACTIONS(6120), 1, + anon_sym_readonly, + STATE(2792), 1, + sym_comment, + STATE(3518), 1, + sym_override_modifier, + STATE(3822), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6116), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [78569] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, @@ -273091,23 +276252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(6039), 1, - anon_sym_SEMI, - ACTIONS(6041), 1, - sym__automatic_semicolon, STATE(2627), 1, sym_type_arguments, - STATE(2741), 1, + STATE(2793), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -273122,93 +276279,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + ACTIONS(6122), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74785] = 8, + [78683] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6019), 1, - anon_sym_AMP, - ACTIONS(6021), 1, - anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2742), 1, - sym_comment, - ACTIONS(4950), 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(4952), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, + anon_sym_LBRACK, + ACTIONS(6073), 1, anon_sym_COMMA, + ACTIONS(6126), 1, 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, - [74847] = 8, + STATE(2794), 1, + sym_comment, + STATE(5685), 1, + aux_sym_object_pattern_repeat1, + STATE(7093), 1, + sym__property_name, + STATE(7181), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + STATE(5680), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6124), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78765] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, - anon_sym_AMP, - ACTIONS(6021), 1, - anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2743), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5078), 11, + ACTIONS(4935), 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(5080), 28, + ACTIONS(4937), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273237,160 +276403,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74909] = 9, + anon_sym_extends, + [78821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(2744), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(4949), 13, 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(4141), 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, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74973] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6043), 1, - anon_sym_STAR, - ACTIONS(6045), 1, - anon_sym_async, - ACTIONS(6047), 1, - anon_sym_readonly, - STATE(2745), 1, - sym_comment, - STATE(3529), 1, - sym_override_modifier, - STATE(3872), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(4376), 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, - [75055] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - STATE(2746), 1, - sym_comment, - ACTIONS(5773), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5776), 3, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4137), 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(4141), 26, + ACTIONS(4951), 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, @@ -273410,14 +276454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75117] = 5, + anon_sym_extends, + [78877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2747), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5070), 13, + ACTIONS(4949), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273431,7 +276476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5072), 29, + ACTIONS(4951), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273461,16 +276506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75173] = 6, + [78933] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(2748), 1, + STATE(2798), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273484,7 +276527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 28, + ACTIONS(4971), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273513,14 +276556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75231] = 5, + anon_sym_extends, + [78989] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2749), 1, + STATE(2799), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273534,7 +276578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5062), 29, + ACTIONS(4971), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273564,24 +276608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75287] = 8, + [79045] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(2800), 1, + sym_comment, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6021), 1, anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2750), 1, - sym_comment, - ACTIONS(5060), 11, + ACTIONS(4135), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -273589,16 +276635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5062), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -273618,94 +276662,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75349] = 34, + [79107] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2751), 1, + STATE(2801), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5140), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6051), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75463] = 5, + [79221] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2752), 1, + STATE(2802), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(4993), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273719,7 +276763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 29, + ACTIONS(4995), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273749,32 +276793,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75519] = 8, + [79277] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(6046), 1, anon_sym_AMP, - ACTIONS(6021), 1, - anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2753), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5232), 11, + ACTIONS(4989), 12, 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(5234), 28, + ACTIONS(4991), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273803,16 +276844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75581] = 6, + anon_sym_extends, + [79335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4857), 1, - anon_sym_extends, - STATE(2754), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5232), 13, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273826,7 +276866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5234), 28, + ACTIONS(4975), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273855,29 +276895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75639] = 11, + anon_sym_extends, + [79391] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - ACTIONS(5773), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_RPAREN, - STATE(2755), 1, - sym_comment, - ACTIONS(5776), 2, + ACTIONS(6046), 1, anon_sym_AMP, + ACTIONS(6048), 1, anon_sym_PIPE, - ACTIONS(6053), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6055), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4137), 11, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2805), 1, + sym_comment, + ACTIONS(4939), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273889,10 +276921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 22, + ACTIONS(4941), 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, @@ -273912,14 +276950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75707] = 5, + [79453] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2756), 1, + STATE(2806), 1, sym_comment, - ACTIONS(5353), 13, + ACTIONS(4939), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273933,7 +276971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5355), 29, + ACTIONS(4941), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -273963,478 +277001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75763] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_LBRACK, - ACTIONS(6062), 1, - anon_sym_COMMA, - ACTIONS(6064), 1, - anon_sym_RBRACE, - STATE(2757), 1, - sym_comment, - STATE(5743), 1, - aux_sym_object_pattern_repeat1, - STATE(7005), 1, - sym__property_name, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - STATE(5739), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6060), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75845] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2758), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4968), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75959] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2759), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5170), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76073] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2760), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5272), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76187] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2761), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5300), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76301] = 34, + [79509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5194), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2762), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5194), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76415] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2763), 1, + STATE(2807), 1, sym_comment, - ACTIONS(5349), 13, + ACTIONS(5190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274448,7 +277024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5351), 29, + ACTIONS(5192), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274458,7 +277034,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, @@ -274478,185 +277053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76471] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, - anon_sym_AMP_AMP, - ACTIONS(4903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, - anon_sym_GT_GT, - ACTIONS(4909), 1, - anon_sym_AMP, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(4917), 1, - anon_sym_PERCENT, - ACTIONS(4919), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4929), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2764), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6080), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76585] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2765), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - 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, - [76673] = 16, + [79567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5197), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6082), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2766), 1, + STATE(2808), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(5190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274667,188 +277073,126 @@ 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(4944), 17, + ACTIONS(5192), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [76751] = 34, + anon_sym_extends, + [79625] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4903), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4905), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4909), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4911), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4917), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4919), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4921), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4929), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4935), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2767), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4887), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4897), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4907), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4915), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4925), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4927), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5643), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4923), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76865] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2768), 1, + STATE(2809), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + ACTIONS(6164), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [76967] = 5, + [79739] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2769), 1, + STATE(2810), 1, sym_comment, - ACTIONS(5037), 13, + ACTIONS(5242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274862,7 +277206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5039), 29, + ACTIONS(5244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274891,155 +277235,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77023] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - STATE(2220), 1, - sym_type_arguments, - STATE(2770), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [77127] = 19, + anon_sym_extends, + [79795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6082), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2771), 1, + STATE(2811), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(5298), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 16, + ACTIONS(5300), 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, - [77211] = 5, + anon_sym_extends, + [79851] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2772), 1, + STATE(2812), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5323), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275053,7 +277308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, + ACTIONS(5325), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275083,86 +277338,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77267] = 26, + [79907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_type_arguments, - STATE(2773), 1, + STATE(2813), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5989), 2, + ACTIONS(5076), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 9, + ACTIONS(5078), 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, - [77365] = 5, + anon_sym_extends, + [79963] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2774), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5055), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275176,7 +277410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, + ACTIONS(5057), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275206,14 +277440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77421] = 5, + [80019] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2775), 1, + STATE(2815), 1, sym_comment, - ACTIONS(3236), 13, + ACTIONS(4931), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275227,7 +277461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3570), 29, + ACTIONS(4933), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275257,87 +277491,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77477] = 27, + [80075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - STATE(2220), 1, - sym_type_arguments, - STATE(2776), 1, + STATE(2816), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5989), 2, + ACTIONS(4957), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 8, + ACTIONS(4959), 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, - [77577] = 5, + anon_sym_extends, + [80131] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2777), 1, + STATE(2817), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(4977), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275351,7 +277563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, + ACTIONS(4979), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275381,43 +277593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77633] = 18, + [80187] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6082), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2778), 1, + STATE(2818), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(4981), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -275426,182 +277610,78 @@ 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(4944), 16, + ACTIONS(4983), 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, - [77715] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_extends, + [80243] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_LBRACK, - ACTIONS(6062), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_RBRACE, - STATE(2779), 1, - sym_comment, - STATE(6147), 1, - aux_sym_object_pattern_repeat1, - STATE(7005), 1, - sym__property_name, - STATE(7130), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - STATE(6143), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6085), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77797] = 16, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5230), 1, anon_sym_LBRACK, - STATE(2780), 1, + ACTIONS(5236), 1, + anon_sym_extends, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(2819), 1, sym_comment, - STATE(4736), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5442), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5900), 2, + ACTIONS(5226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5233), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5684), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 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, - [77875] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2781), 1, - sym_comment, - ACTIONS(5021), 13, + ACTIONS(5224), 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(5023), 29, - sym__automatic_semicolon, + ACTIONS(5228), 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, @@ -275621,111 +277701,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77931] = 34, + [80311] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2782), 1, + STATE(2820), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5138), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6089), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78045] = 12, + [80425] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, - anon_sym_QMARK, - ACTIONS(5003), 1, + ACTIONS(3568), 1, anon_sym_extends, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5326), 1, + ACTIONS(5203), 1, anon_sym_LBRACK, - ACTIONS(5904), 1, - anon_sym_COLON, - STATE(2783), 1, + ACTIONS(5890), 1, + anon_sym_RPAREN, + STATE(2821), 1, sym_comment, - ACTIONS(5329), 2, + ACTIONS(2061), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5206), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5793), 2, + ACTIONS(5365), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5320), 11, + anon_sym_COLON, + ACTIONS(2059), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275737,7 +277815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 22, + ACTIONS(2065), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -275760,305 +277838,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78115] = 34, + [80493] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2784), 1, + STATE(2822), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4968), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5041), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78229] = 34, + [80607] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2785), 1, + STATE(2823), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5170), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4883), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78343] = 34, + [80721] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2786), 1, + STATE(2824), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5272), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(4961), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78457] = 5, + [80835] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2787), 1, - sym_comment, - ACTIONS(5290), 13, - anon_sym_STAR, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_AMP_AMP, + ACTIONS(4893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 1, anon_sym_GT_GT, + ACTIONS(4899), 1, anon_sym_AMP, + ACTIONS(4901), 1, + anon_sym_CARET, + ACTIONS(4903), 1, anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_PERCENT, + ACTIONS(4909), 1, + anon_sym_STAR_STAR, + ACTIONS(4911), 1, + anon_sym_LT, + ACTIONS(4919), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2825), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4879), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4897), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4905), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4917), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6166), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4913), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80949] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2826), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4953), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [78513] = 5, + [81037] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2788), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6168), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2827), 1, sym_comment, - ACTIONS(5282), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276069,510 +278267,338 @@ 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(5284), 29, - sym__automatic_semicolon, + ACTIONS(4953), 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, - [78569] = 34, + [81115] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2789), 1, + STATE(2828), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5300), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78683] = 34, + ACTIONS(4953), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [81217] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2790), 1, + STATE(2829), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5194), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78797] = 21, + ACTIONS(4953), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [81321] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6168), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2791), 1, + STATE(2830), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 7, + ACTIONS(4955), 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(4944), 14, - sym__automatic_semicolon, + ACTIONS(4953), 16, sym__ternary_qmark, anon_sym_as, - 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, - [78885] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5444), 1, - anon_sym_LBRACK, - STATE(2792), 1, - sym_comment, - STATE(3892), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5900), 2, - anon_sym_COMMA, anon_sym_RBRACE, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 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, - [78965] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(6091), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2793), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 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(4980), 20, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [79039] = 5, + [81405] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2794), 1, - sym_comment, - ACTIONS(5278), 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(5280), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 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, + ACTIONS(4869), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79095] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5971), 1, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6094), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2795), 1, + STATE(2831), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(6128), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 17, - sym__automatic_semicolon, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + 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, anon_sym_satisfies, - [79173] = 5, + [81501] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2796), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6171), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2832), 1, sym_comment, - ACTIONS(5021), 13, + STATE(6286), 1, + sym_optional_chain, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5155), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276583,21 +278609,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(5023), 29, - sym__automatic_semicolon, + ACTIONS(5157), 20, sym__ternary_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, @@ -276613,26 +278631,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, - anon_sym_extends, - [79229] = 28, + [81575] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, ACTIONS(5961), 1, @@ -276647,19 +278671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2797), 1, + STATE(2833), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5140), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -276674,106 +278705,195 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 8, - sym__automatic_semicolon, + [81689] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2834), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [79331] = 29, + [81787] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5957), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2798), 1, + STATE(2835), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 7, - sym__automatic_semicolon, + ACTIONS(4953), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [79435] = 5, + [81887] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2799), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6168), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2836), 1, sym_comment, - ACTIONS(5098), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -276782,217 +278902,294 @@ 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(5100), 29, - sym__automatic_semicolon, + ACTIONS(4953), 16, 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_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, + [81969] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6168), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2837), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4953), 15, + sym__ternary_qmark, + anon_sym_RBRACE, + 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, - [79491] = 19, + [82053] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5969), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6094), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2800), 1, + STATE(2838), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5967), 2, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 8, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4955), 5, 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(4944), 16, - sym__automatic_semicolon, + ACTIONS(4953), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + 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, - [79575] = 25, + [82145] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5957), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2801), 1, + STATE(2839), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 9, - sym__automatic_semicolon, + ACTIONS(4953), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [79671] = 26, + [82251] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, ACTIONS(5969), 1, anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2802), 1, + STATE(2840), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5432), 2, + ACTIONS(5138), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -277007,66 +279204,233 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 9, - sym__automatic_semicolon, - sym__ternary_qmark, + [82365] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2841), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5084), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82479] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - [79769] = 27, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2842), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4929), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82593] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, ACTIONS(5961), 1, anon_sym_AMP, ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, ACTIONS(5969), 1, anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + ACTIONS(6174), 1, + anon_sym_SEMI, + ACTIONS(6176), 1, + sym__automatic_semicolon, STATE(2627), 1, sym_type_arguments, - STATE(2803), 1, + STATE(2843), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -277081,132 +279445,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [79869] = 18, + [82709] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5969), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6094), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2804), 1, + STATE(2844), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5119), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, - anon_sym_BANG, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 16, - 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_LT_EQ, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [79951] = 18, + [82823] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6099), 1, - anon_sym_async, - ACTIONS(6101), 1, - anon_sym_readonly, - STATE(2805), 1, + STATE(2845), 1, sym_comment, - STATE(3519), 1, + STATE(3533), 1, sym_override_modifier, - STATE(3909), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6103), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 18, + ACTIONS(2900), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -277225,461 +279600,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80033] = 19, + [82913] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(6094), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2806), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_SEMI, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, 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, - [80117] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2807), 1, - sym_comment, - ACTIONS(3228), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6136), 1, anon_sym_GT_GT, + ACTIONS(6140), 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(3518), 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, + ACTIONS(6142), 1, anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2846), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [80173] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5178), 1, - anon_sym_extends, - STATE(2808), 1, - sym_comment, - ACTIONS(5172), 13, + ACTIONS(5124), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 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(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 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, - [80231] = 19, + [83027] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6082), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2809), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 15, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, 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, - [80315] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2810), 1, + STATE(2847), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5130), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3075), 2, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4946), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 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, - [80407] = 23, + [83141] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5993), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5999), 1, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6001), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2811), 1, + STATE(2848), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(5142), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2508), 2, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4946), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - 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, - [80499] = 30, + [83255] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5953), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - STATE(2627), 1, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2812), 1, + STATE(2849), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(4927), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 6, + [83369] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2850), 1, + sym_comment, + ACTIONS(5025), 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(5027), 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, - [80605] = 5, + anon_sym_extends, + [83425] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2813), 1, + STATE(2851), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5029), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277693,7 +279992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5019), 29, + ACTIONS(5031), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277723,26 +280022,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80661] = 34, + [83481] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, @@ -277768,20 +280067,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2814), 1, + STATE(2852), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4976), 2, + ACTIONS(5041), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -277796,280 +280095,341 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80775] = 30, + [83595] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - STATE(2220), 1, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(2815), 1, + STATE(2853), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(5246), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [80881] = 34, + [83709] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2854), 1, + sym_comment, + ACTIONS(5033), 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(5035), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2816), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4976), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [83765] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6046), 1, + anon_sym_AMP, + ACTIONS(6048), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2855), 1, + sym_comment, + ACTIONS(5282), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5284), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80995] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83827] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2856), 1, + sym_comment, + ACTIONS(4965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4967), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4135), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(4139), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2817), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(4985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83887] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5553), 1, + anon_sym_LBRACK, + STATE(2857), 1, + sym_comment, + ACTIONS(5363), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5556), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5549), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5551), 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, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81109] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83949] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2818), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2858), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5535), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5019), 29, + ACTIONS(4139), 25, 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, @@ -278089,38 +280449,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81165] = 5, + [84013] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2819), 1, + ACTIONS(4853), 1, + anon_sym_extends, + STATE(2859), 1, sym_comment, - ACTIONS(5017), 13, + ACTIONS(5480), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5483), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5019), 29, + ACTIONS(4139), 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, @@ -278140,38 +280503,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81221] = 5, + [84075] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2820), 1, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2860), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5535), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5015), 29, + ACTIONS(4139), 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, @@ -278191,27 +280557,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81277] = 34, + [84137] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, @@ -278237,20 +280602,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2821), 1, + STATE(2861), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5244), 2, + ACTIONS(4883), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -278265,33 +280630,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81391] = 34, + [84251] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, @@ -278317,20 +280682,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2822), 1, + STATE(2862), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5264), 2, + ACTIONS(4961), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -278345,503 +280710,423 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81505] = 34, + [84365] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, ACTIONS(5969), 1, anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2823), 1, + STATE(2863), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5270), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, - anon_sym_in, - anon_sym_GT, ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5979), 2, + ACTIONS(4953), 14, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81619] = 35, + anon_sym_satisfies, + [84453] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(6046), 1, + anon_sym_AMP, + ACTIONS(6048), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_extends, + STATE(2864), 1, + sym_comment, + ACTIONS(5126), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(5128), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, - anon_sym_LT, - ACTIONS(5981), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6105), 1, - anon_sym_SEMI, - ACTIONS(6107), 1, - sym__automatic_semicolon, - STATE(2627), 1, - sym_type_arguments, - STATE(2824), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84515] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4857), 1, + anon_sym_extends, + STATE(2865), 1, + sym_comment, + ACTIONS(5126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5128), 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(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81735] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84573] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(6178), 1, anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2825), 1, + STATE(2866), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4985), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5067), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81849] = 34, + anon_sym_satisfies, + [84649] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6181), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2826), 1, + STATE(2867), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5274), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(5092), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + 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, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81963] = 34, + [84731] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(5965), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(5981), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2827), 1, + STATE(2868), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5109), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82077] = 35, + [84845] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6184), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6109), 1, - anon_sym_SEMI, - ACTIONS(6111), 1, - sym__automatic_semicolon, STATE(2627), 1, sym_type_arguments, - STATE(2828), 1, + STATE(2869), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82193] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2829), 1, - sym_comment, - ACTIONS(5009), 13, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278852,195 +281137,34 @@ 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(5011), 29, + ACTIONS(4953), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [82249] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6113), 1, - anon_sym_RBRACE, - STATE(2830), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [82339] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2831), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5244), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82453] = 5, + [84923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2832), 1, + STATE(2870), 1, sym_comment, - ACTIONS(4993), 13, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279054,7 +281178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4995), 29, + ACTIONS(5310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279083,192 +281207,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [82509] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2833), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5264), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82623] = 34, + anon_sym_extends, + [84979] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, sym_type_arguments, - STATE(2834), 1, + STATE(2871), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5270), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82737] = 35, + ACTIONS(4953), 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, + [85081] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + ACTIONS(4955), 1, anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, ACTIONS(5961), 1, @@ -279283,27 +281315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - ACTIONS(6115), 1, - anon_sym_SEMI, - ACTIONS(6117), 1, - sym__automatic_semicolon, STATE(2627), 1, sym_type_arguments, - STATE(2835), 1, + STATE(2872), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -279318,69 +281342,122 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82853] = 34, + ACTIONS(4953), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [85185] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(6184), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2873), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4953), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5955), 1, 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, + [85269] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, ACTIONS(5969), 1, anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2836), 1, + STATE(2874), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -279395,75 +281472,68 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82967] = 34, + ACTIONS(4953), 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, + [85365] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, ACTIONS(5957), 1, anon_sym_GT_GT, ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, ACTIONS(5969), 1, anon_sym_PERCENT, ACTIONS(5971), 1, anon_sym_STAR_STAR, ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, STATE(2627), 1, sym_type_arguments, - STATE(2837), 1, + STATE(2875), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5180), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -279478,156 +281548,133 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83081] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5043), 1, - anon_sym_extends, - STATE(2838), 1, - sym_comment, - ACTIONS(5523), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5526), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5519), 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(5521), 26, + ACTIONS(4953), 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, - [83143] = 34, + [85463] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5999), 1, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6001), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2839), 1, + STATE(2876), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5274), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83257] = 5, + ACTIONS(4953), 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, + [85563] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2840), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(6184), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2877), 1, sym_comment, - ACTIONS(5150), 13, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -279636,240 +281683,100 @@ 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(5152), 29, + ACTIONS(4953), 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, - anon_sym_extends, - [83313] = 8, + [85645] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, - anon_sym_AMP, - ACTIONS(6021), 1, - anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2841), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(6184), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2878), 1, sym_comment, - ACTIONS(5049), 11, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(5051), 28, + ACTIONS(4953), 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, - [83375] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(2842), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [83465] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(2843), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [83555] = 6, + [85729] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6123), 1, + ACTIONS(6187), 1, anon_sym_LBRACK, - STATE(2844), 1, + STATE(2879), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5331), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279883,7 +281790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 28, + ACTIONS(5333), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279912,16 +281819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83613] = 6, + [85787] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6125), 1, + ACTIONS(6189), 1, anon_sym_extends, - STATE(2845), 1, + STATE(2880), 1, sym_comment, - ACTIONS(5114), 13, + ACTIONS(5335), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279935,7 +281842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 28, + ACTIONS(5337), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279964,21 +281871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83671] = 8, + [85845] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4883), 1, + ACTIONS(5061), 1, anon_sym_extends, - ACTIONS(6123), 1, + ACTIONS(6187), 1, anon_sym_LBRACK, - STATE(2846), 1, + STATE(2881), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(5059), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5082), 11, + ACTIONS(5341), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279990,7 +281897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5084), 27, + ACTIONS(5343), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280018,20 +281925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83733] = 8, + [85907] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(6046), 1, anon_sym_AMP, - ACTIONS(6021), 1, + ACTIONS(6048), 1, anon_sym_PIPE, - ACTIONS(6023), 1, + ACTIONS(6050), 1, anon_sym_extends, - STATE(2847), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5074), 11, + ACTIONS(5345), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280043,7 +281950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5076), 28, + ACTIONS(5347), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280072,14 +281979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83795] = 5, + [85969] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2848), 1, + STATE(2883), 1, sym_comment, - ACTIONS(5066), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280093,7 +282000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5068), 29, + ACTIONS(5355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280123,121 +282030,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83851] = 8, + [86025] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, - anon_sym_AMP, - ACTIONS(6021), 1, - anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2849), 1, - sym_comment, - ACTIONS(5045), 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(5047), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5374), 1, anon_sym_LBRACK, + ACTIONS(5376), 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(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 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, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2884), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83913] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2850), 1, - sym_comment, - ACTIONS(5029), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5031), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4137), 10, + ACTIONS(5949), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 26, + ACTIONS(4953), 11, 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, - [83973] = 5, + [86117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2851), 1, + STATE(2885), 1, sym_comment, - ACTIONS(5041), 13, + ACTIONS(5361), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280251,7 +282120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5043), 29, + ACTIONS(5363), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280281,14 +282150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84029] = 5, + [86173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2852), 1, + STATE(2886), 1, sym_comment, - ACTIONS(4964), 13, + ACTIONS(4965), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280302,7 +282171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4966), 29, + ACTIONS(4967), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280332,14 +282201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84085] = 5, + [86229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2853), 1, + STATE(2887), 1, sym_comment, - ACTIONS(4877), 13, + ACTIONS(5043), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280353,7 +282222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 29, + ACTIONS(5045), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280383,14 +282252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84141] = 5, + [86285] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2854), 1, + STATE(2888), 1, sym_comment, - ACTIONS(4877), 13, + ACTIONS(4855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280404,7 +282273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 29, + ACTIONS(4857), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280434,118 +282303,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84197] = 5, + [86341] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2855), 1, - sym_comment, - ACTIONS(4877), 13, - anon_sym_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 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(4879), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5370), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5374), 1, anon_sym_LBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 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, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2889), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [84253] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2856), 1, - sym_comment, - ACTIONS(5029), 13, + ACTIONS(5949), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 29, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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, - [84309] = 6, + [86447] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(6046), 1, anon_sym_AMP, - STATE(2857), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5025), 12, + ACTIONS(5278), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280558,7 +282401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5027), 29, + ACTIONS(5280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280588,65 +282431,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84367] = 5, + [86505] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2858), 1, - sym_comment, - ACTIONS(5005), 13, - anon_sym_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5007), 29, - sym__automatic_semicolon, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + STATE(2627), 1, + sym_type_arguments, + STATE(2891), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5084), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5951), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 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(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 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, - [84423] = 5, + [86619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2859), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5001), 13, + ACTIONS(5049), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280660,7 +282532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 29, + ACTIONS(5051), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280690,261 +282562,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84479] = 34, + [86675] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2860), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5276), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84593] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6001), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2861), 1, + STATE(2893), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4929), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5180), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84707] = 11, + [86789] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2862), 1, + STATE(2894), 1, sym_comment, - ACTIONS(4264), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5190), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 11, + ACTIONS(4851), 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(4141), 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, - [84775] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - ACTIONS(5773), 1, - anon_sym_LBRACK, - ACTIONS(6132), 1, - anon_sym_RPAREN, - STATE(2863), 1, - sym_comment, - ACTIONS(5776), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6127), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6129), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4137), 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(4141), 22, + ACTIONS(4853), 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, @@ -280964,14 +282692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84843] = 5, + anon_sym_extends, + [86845] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2864), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280985,7 +282714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 29, + ACTIONS(5288), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281015,14 +282744,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84899] = 5, + [86901] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2865), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2896), 1, sym_comment, - ACTIONS(4997), 13, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5951), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6191), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87015] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2897), 1, + sym_comment, + ACTIONS(5296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281036,7 +282845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4999), 29, + ACTIONS(5236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281066,16 +282875,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84955] = 6, + [87071] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6136), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, anon_sym_DOT, - STATE(2866), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2898), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5951), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6193), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2899), 1, sym_comment, - ACTIONS(4987), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281089,7 +282976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4989), 28, + ACTIONS(5061), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281099,6 +282986,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, @@ -281118,14 +283006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85013] = 5, + [87241] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2867), 1, + ACTIONS(6187), 1, + anon_sym_LBRACK, + STATE(2900), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281139,7 +283029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 29, + ACTIONS(5061), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281148,7 +283038,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, @@ -281169,14 +283058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85069] = 5, + [87299] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2868), 1, + STATE(2901), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5072), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281190,7 +283079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 29, + ACTIONS(5074), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281220,40 +283109,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85125] = 7, + [87355] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - STATE(2869), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4244), 1, + anon_sym_QMARK, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(2902), 1, sym_comment, - STATE(2975), 1, - sym_arguments, - ACTIONS(5339), 13, + ACTIONS(4241), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5051), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5341), 27, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -281273,37 +283166,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85185] = 5, + [87423] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2870), 1, + ACTIONS(4853), 1, + anon_sym_extends, + ACTIONS(5480), 1, + anon_sym_LBRACK, + ACTIONS(6198), 1, + anon_sym_RPAREN, + STATE(2903), 1, sym_comment, - ACTIONS(5246), 13, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6195), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4135), 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(5248), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -281323,15 +283223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85241] = 5, + [87491] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2871), 1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + STATE(2904), 1, sym_comment, - ACTIONS(5246), 13, + STATE(3045), 1, + sym_arguments, + ACTIONS(4997), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281345,13 +283248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5248), 29, + ACTIONS(4999), 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, @@ -281374,15 +283276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85297] = 5, + [87551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2872), 1, + STATE(2905), 1, sym_comment, - ACTIONS(5246), 13, + ACTIONS(5357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281396,7 +283297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5248), 29, + ACTIONS(5359), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281426,14 +283327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85353] = 5, + [87607] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2873), 1, + ACTIONS(6202), 1, + anon_sym_DOT, + STATE(2906), 1, sym_comment, - ACTIONS(5228), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281447,7 +283350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5230), 29, + ACTIONS(5292), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281457,7 +283360,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, @@ -281477,223 +283379,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85409] = 15, + [87665] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6138), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2874), 1, + STATE(2907), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5119), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(5949), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5055), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - 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, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [85485] = 11, + [87779] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3570), 1, - anon_sym_extends, - ACTIONS(5343), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(6141), 1, - anon_sym_RPAREN, - STATE(2875), 1, - sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5346), 2, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5807), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2069), 11, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2908), 1, + sym_comment, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(5124), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 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(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 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, - [85553] = 18, + [87893] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(6144), 1, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2876), 1, + STATE(2909), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5130), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(5949), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4939), 16, - sym__ternary_qmark, - anon_sym_RBRACE, - 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, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85635] = 8, + [88007] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2877), 1, + ACTIONS(5637), 1, + anon_sym_EQ, + STATE(2910), 1, sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(5635), 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(4141), 26, + ACTIONS(5639), 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_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -281713,124 +283671,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85697] = 34, + [88065] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(5406), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(5410), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(5420), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6076), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2878), 1, + STATE(2911), 1, sym_comment, - STATE(6178), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(5142), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4960), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(5989), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85811] = 11, + [88179] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_extends, - ACTIONS(5326), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(6147), 1, - anon_sym_RPAREN, - STATE(2879), 1, + ACTIONS(5522), 1, + anon_sym_STAR, + ACTIONS(5526), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_abstract, + STATE(2912), 1, sym_comment, - ACTIONS(5322), 2, + STATE(3809), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5530), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5329), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5904), 2, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5320), 11, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4378), 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, + [88257] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6210), 1, + sym_regex_flags, + STATE(2913), 1, + sym_comment, + ACTIONS(6206), 16, 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(5324), 22, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6208), 25, 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, @@ -281845,81 +283862,235 @@ 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, - [85879] = 8, + [88315] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6019), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6021), 1, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6023), 1, - anon_sym_extends, - STATE(2880), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2914), 1, sym_comment, - ACTIONS(5224), 11, + STATE(5704), 1, + sym_optional_chain, + ACTIONS(4927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5402), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5949), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5226), 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(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3098), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 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, - [85941] = 9, + [88429] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6212), 1, + anon_sym_RBRACE, + STATE(2915), 1, + sym_comment, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [88519] = 22, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5398), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5494), 1, - anon_sym_QMARK_DOT, - STATE(2881), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(2916), 1, sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(2151), 13, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [88609] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2917), 1, + sym_comment, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281933,7 +284104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2153), 25, + ACTIONS(2065), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281942,6 +284113,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, @@ -281959,26 +284133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86005] = 35, + [88667] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(5374), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(5406), 1, + anon_sym_as, + ACTIONS(5410), 1, + anon_sym_BANG, + ACTIONS(5420), 1, anon_sym_satisfies, ACTIONS(5953), 1, anon_sym_AMP_AMP, @@ -282002,23 +284176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(6150), 1, + ACTIONS(6214), 1, anon_sym_SEMI, - ACTIONS(6152), 1, + ACTIONS(6216), 1, sym__automatic_semicolon, STATE(2627), 1, sym_type_arguments, - STATE(2882), 1, + STATE(2918), 1, sym_comment, - STATE(5804), 1, + STATE(5704), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(5402), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(5949), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(5951), 2, anon_sym_in, anon_sym_GT, ACTIONS(5959), 2, @@ -282033,40 +284207,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(3098), 2, sym_template_string, sym_arguments, ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86121] = 14, + [88783] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6154), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(2883), 1, + STATE(2919), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(5625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282077,13 +284232,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(4980), 20, + ACTIONS(5140), 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -282099,141 +284262,121 @@ 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, - [86195] = 6, + [88838] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2884), 1, - sym_comment, - ACTIONS(5178), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5172), 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(5174), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4961), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2920), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86253] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2885), 1, - sym_comment, - ACTIONS(4972), 13, + ACTIONS(6218), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 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(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [86309] = 5, + [88951] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2886), 1, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(2921), 1, sym_comment, - ACTIONS(4855), 13, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5535), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4135), 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(4857), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282253,19 +284396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86365] = 7, + [89012] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, - sym__automatic_semicolon, - STATE(2887), 1, + STATE(2922), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(5476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282279,7 +284417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 27, + ACTIONS(5478), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -282307,14 +284446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86425] = 5, + [89067] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2888), 1, + STATE(2923), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(2099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282328,7 +284467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4873), 29, + ACTIONS(2103), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282357,77 +284496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86481] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6157), 1, - anon_sym_STAR, - ACTIONS(6159), 1, - anon_sym_async, - ACTIONS(6163), 1, - anon_sym_abstract, - STATE(2889), 1, - sym_comment, - STATE(3803), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6161), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [86559] = 5, + [89122] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2890), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282441,7 +284517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5190), 29, + ACTIONS(4139), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282470,45 +284546,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86615] = 11, + [89177] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4267), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2891), 1, + STATE(2925), 1, sym_comment, - ACTIONS(4287), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5190), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 11, + ACTIONS(2091), 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(4141), 22, + ACTIONS(2095), 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, @@ -282528,14 +284596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86683] = 5, + [89232] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2892), 1, + STATE(2926), 1, sym_comment, - ACTIONS(4841), 13, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282549,7 +284617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4843), 29, + ACTIONS(2173), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282578,45 +284646,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86739] = 11, + [89287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - ACTIONS(5773), 1, - anon_sym_LBRACK, - ACTIONS(6167), 1, - anon_sym_RPAREN, - STATE(2893), 1, + STATE(2927), 1, sym_comment, - ACTIONS(5776), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6127), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6165), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4137), 11, + ACTIONS(2127), 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(4141), 22, + ACTIONS(2131), 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, @@ -282636,221 +284696,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86807] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6157), 1, - anon_sym_STAR, - ACTIONS(6159), 1, - anon_sym_async, - ACTIONS(6170), 1, - anon_sym_readonly, - STATE(2894), 1, - sym_comment, - STATE(3524), 1, - sym_override_modifier, - STATE(3797), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6161), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [86889] = 34, + [89342] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, - anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6254), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2895), 1, + STATE(2928), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5967), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(4953), 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, - ACTIONS(6172), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87003] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_static, - ACTIONS(6176), 1, - anon_sym_readonly, - ACTIONS(6178), 1, - anon_sym_abstract, - STATE(2896), 1, - sym_comment, - STATE(3582), 1, - sym_override_modifier, - STATE(4122), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [87083] = 5, + [89425] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2897), 1, + STATE(2929), 1, sym_comment, - ACTIONS(4881), 13, + ACTIONS(5464), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282864,7 +284781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 29, + ACTIONS(5466), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282893,18 +284810,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87139] = 6, + [89480] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6123), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(2898), 1, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2930), 1, sym_comment, - ACTIONS(4881), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -282913,47 +284855,39 @@ 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(4883), 28, - sym__automatic_semicolon, + ACTIONS(4953), 15, 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [87197] = 5, + [89561] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2899), 1, + STATE(2931), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(6257), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6259), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282967,15 +284901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -282996,54 +284925,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87253] = 15, + [89620] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(6180), 1, - anon_sym_LT, - STATE(2627), 1, - sym_type_arguments, - STATE(2900), 1, + ACTIONS(5049), 1, + anon_sym_QMARK, + STATE(2932), 1, sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(5051), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5535), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4135), 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(5055), 18, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -283057,274 +284975,134 @@ 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, - [87329] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_async, - ACTIONS(6189), 1, - anon_sym_abstract, - STATE(2901), 1, - sym_comment, - STATE(3794), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6187), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [87407] = 34, + [89683] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(5963), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6242), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2902), 1, + STATE(2933), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87521] = 18, + ACTIONS(4953), 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, + [89782] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_async, - ACTIONS(6193), 1, - anon_sym_readonly, - STATE(2903), 1, + STATE(2934), 1, sym_comment, - STATE(3517), 1, - sym_override_modifier, - STATE(3794), 1, + STATE(4686), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6187), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + ACTIONS(5874), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, anon_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, - [87603] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(2904), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -283332,67 +285110,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87693] = 22, + [89855] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6261), 1, anon_sym_STAR, - ACTIONS(6195), 1, - anon_sym_RBRACE, - STATE(2905), 1, + STATE(2935), 1, sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, + STATE(4654), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6263), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 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(2900), 18, + ACTIONS(2900), 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, @@ -283400,57 +285169,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87783] = 18, + [89928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2936), 1, + sym_comment, + ACTIONS(2079), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 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(2083), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5398), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5434), 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(5436), 1, anon_sym_satisfies, - ACTIONS(6197), 1, + [89983] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2906), 1, + STATE(2937), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3075), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4937), 11, + ACTIONS(6244), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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, + [90080] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(5049), 1, + anon_sym_QMARK, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(2938), 1, + sym_comment, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4135), 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(4939), 16, - sym__automatic_semicolon, + ACTIONS(4139), 22, sym__ternary_qmark, - anon_sym_SEMI, + 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, @@ -283464,52 +285341,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87865] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90145] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6261), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6265), 1, anon_sym_async, - ACTIONS(6204), 1, - anon_sym_readonly, - STATE(2907), 1, + STATE(2939), 1, sym_comment, - STATE(3534), 1, - sym_override_modifier, - STATE(3863), 1, + STATE(3808), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, + ACTIONS(6267), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(4376), 18, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283517,10 +285392,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, @@ -283528,44 +285405,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87947] = 11, + [90220] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3570), 1, - anon_sym_extends, - ACTIONS(5343), 1, - anon_sym_LBRACK, - ACTIONS(5931), 1, - anon_sym_RPAREN, - STATE(2908), 1, + ACTIONS(6269), 1, + sym__automatic_semicolon, + STATE(2940), 1, sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5346), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5680), 2, + ACTIONS(2375), 4, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2069), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2099), 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(2075), 22, + ACTIONS(2103), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283585,16 +285457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88015] = 6, + [90279] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2909), 1, + STATE(2941), 1, sym_comment, - ACTIONS(2069), 13, + ACTIONS(5468), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283608,7 +285478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 28, + ACTIONS(5470), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283637,121 +285507,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88073] = 34, + [90334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, + STATE(2942), 1, + sym_comment, + ACTIONS(5456), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_PERCENT, - ACTIONS(5971), 1, - anon_sym_STAR_STAR, - ACTIONS(5973), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, - sym_type_arguments, - STATE(2910), 1, - sym_comment, - STATE(5804), 1, - sym_optional_chain, - ACTIONS(5432), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5616), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5458), 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, - ACTIONS(5947), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5949), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5959), 2, + 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(5967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5979), 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(3075), 2, - sym_template_string, - sym_arguments, - ACTIONS(5975), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88187] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90389] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6212), 1, - sym_regex_flags, - STATE(2911), 1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4268), 1, + anon_sym_COLON, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(2943), 1, sym_comment, - ACTIONS(6208), 16, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4135), 11, 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, - ACTIONS(6210), 25, + ACTIONS(4139), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, 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, @@ -283766,188 +285607,114 @@ 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, - [88245] = 34, + anon_sym_satisfies, + [90454] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_as, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(5436), 1, - anon_sym_satisfies, - ACTIONS(5953), 1, - anon_sym_AMP_AMP, - ACTIONS(5955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5957), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(5961), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_CARET, - ACTIONS(5965), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(5971), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(5973), 1, + ACTIONS(6242), 1, anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5983), 1, - sym__ternary_qmark, - STATE(2627), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2912), 1, + STATE(2944), 1, sym_comment, - STATE(5804), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4960), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5432), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5947), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5949), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5959), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5967), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5977), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5979), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5975), 3, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88359] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1041), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(2913), 1, - sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [88449] = 5, + ACTIONS(4953), 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, + [90549] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2914), 1, + STATE(2945), 1, sym_comment, - ACTIONS(3222), 13, + ACTIONS(4965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4967), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4135), 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(3540), 29, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -283967,30 +285734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88505] = 11, + [90608] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_extends, - ACTIONS(5326), 1, - anon_sym_LBRACK, - ACTIONS(5793), 1, - anon_sym_RPAREN, - STATE(2915), 1, - sym_comment, - ACTIONS(5322), 2, - anon_sym_EQ, + ACTIONS(5361), 1, anon_sym_QMARK, - ACTIONS(5329), 2, + STATE(2946), 1, + sym_comment, + ACTIONS(5363), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5556), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5744), 2, + ACTIONS(5553), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5320), 11, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5549), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284002,7 +285765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 22, + ACTIONS(5551), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -284025,16 +285788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88573] = 6, + [90671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - STATE(2916), 1, + ACTIONS(6271), 1, + anon_sym_COMMA, + STATE(2947), 1, sym_comment, - ACTIONS(5630), 13, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284048,16 +285811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 28, - sym__automatic_semicolon, + ACTIONS(5321), 27, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -284077,39 +285839,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88631] = 16, + [90728] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2948), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4953), 15, + 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_LT_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, + [90811] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5371), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6273), 1, anon_sym_STAR, - ACTIONS(5375), 1, + ACTIONS(6275), 1, anon_sym_async, - ACTIONS(5444), 1, - anon_sym_LBRACK, - ACTIONS(6214), 1, - anon_sym_abstract, - STATE(2917), 1, + STATE(2949), 1, sym_comment, - STATE(3819), 1, + STATE(3810), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5379), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -284118,7 +285942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 20, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284139,60 +285963,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88709] = 8, + [90886] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5043), 1, - anon_sym_extends, - STATE(2918), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_STAR, + ACTIONS(6018), 1, + anon_sym_async, + STATE(2950), 1, sym_comment, - ACTIONS(5526), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5523), 3, + STATE(3870), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6022), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 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, + [90961] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5519), 11, + ACTIONS(6016), 1, 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, + STATE(2951), 1, + sym_comment, + STATE(4677), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6279), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5521), 24, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [91034] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6030), 1, + anon_sym_STAR, + ACTIONS(6032), 1, + anon_sym_async, + STATE(2952), 1, + sym_comment, + STATE(3794), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6034), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, 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, - [88770] = 18, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4378), 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, + [91109] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -284203,21 +286153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6113), 1, + ACTIONS(6040), 1, anon_sym_RBRACE, - STATE(2919), 1, + STATE(2953), 1, sym_comment, - STATE(4808), 1, + STATE(4640), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, @@ -284225,10 +286175,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -284255,49 +286205,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88851] = 14, + [91190] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6216), 1, + ACTIONS(6038), 1, anon_sym_STAR, - STATE(2920), 1, + ACTIONS(6040), 1, + anon_sym_RBRACE, + STATE(2954), 1, sym_comment, - STATE(4810), 1, + STATE(4640), 1, sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6218), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -284314,149 +286269,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88924] = 9, + [91273] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - STATE(2921), 1, - sym_comment, - STATE(2458), 2, - sym_template_string, - sym_arguments, - ACTIONS(6220), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - 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), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6281), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(2955), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [88987] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2922), 1, - sym_comment, - ACTIONS(2275), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2191), 13, + ACTIONS(6128), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 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(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 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, - [89044] = 14, + [91386] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4564), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_STAR, - STATE(2923), 1, + STATE(2956), 1, sym_comment, - STATE(4720), 1, + STATE(7093), 1, sym__property_name, + STATE(7181), 1, + sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(6285), 2, 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(2900), 21, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + STATE(6875), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6283), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284466,6 +286395,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, @@ -284478,65 +286409,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89117] = 6, + [91463] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2924), 1, - sym_comment, - ACTIONS(6224), 3, + ACTIONS(6287), 1, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5172), 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(5174), 25, - sym__ternary_qmark, - anon_sym_as, + STATE(2957), 1, + sym_comment, + ACTIONS(2387), 4, 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89174] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2925), 1, - sym_comment, - ACTIONS(5691), 13, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284550,15 +286437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4968), 28, - sym__automatic_semicolon, + ACTIONS(2095), 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, @@ -284579,50 +286461,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89229] = 19, + [91522] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6030), 1, anon_sym_STAR, - STATE(2926), 1, + ACTIONS(6032), 1, + anon_sym_async, + STATE(2958), 1, sym_comment, - STATE(4808), 1, + STATE(3828), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6034), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 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(2900), 20, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284643,46 +286521,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89312] = 15, + [91597] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5444), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_async, - STATE(2927), 1, + STATE(2959), 1, sym_comment, - STATE(3863), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 20, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284703,247 +286585,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89387] = 6, + [91680] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2928), 1, - sym_comment, - ACTIONS(2343), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2199), 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(2203), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6222), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 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, + ACTIONS(6242), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2960), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89444] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6226), 1, - sym__automatic_semicolon, - STATE(2929), 1, - sym_comment, - ACTIONS(2365), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2085), 13, + ACTIONS(6218), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2089), 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(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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(4953), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [89503] = 34, + [91783] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(2961), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [91864] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(6244), 1, + ACTIONS(6234), 1, anon_sym_PIPE, - ACTIONS(6248), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6242), 1, anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2930), 1, + STATE(2962), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89616] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4231), 1, - anon_sym_EQ, - STATE(2931), 1, - sym_comment, - ACTIONS(4137), 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(4141), 27, - sym__automatic_semicolon, + ACTIONS(4953), 7, 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [89673] = 5, + [91965] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6273), 1, + anon_sym_STAR, + ACTIONS(6275), 1, + anon_sym_async, + STATE(2963), 1, + sym_comment, + STATE(3795), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6277), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 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, + [92040] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2932), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2131), 13, + ACTIONS(2379), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2079), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284957,15 +286882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2135), 28, - sym__automatic_semicolon, + ACTIONS(2083), 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, @@ -284986,14 +286906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89728] = 5, + [92097] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2933), 1, + STATE(2965), 1, sym_comment, - ACTIONS(2139), 13, + ACTIONS(5670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285007,7 +286927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2143), 28, + ACTIONS(5672), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285036,122 +286956,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89783] = 34, + [92152] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(6289), 1, + anon_sym_STAR, + ACTIONS(6291), 1, + anon_sym_async, + STATE(2966), 1, + sym_comment, + STATE(3832), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6293), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5274), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2934), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + anon_sym_QMARK, + ACTIONS(4378), 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, + [92227] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6289), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89896] = 18, + STATE(2967), 1, + sym_comment, + STATE(4708), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6295), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [92300] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(966), 1, + ACTIONS(1059), 1, anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6038), 1, anon_sym_STAR, - STATE(2935), 1, + STATE(2968), 1, sym_comment, - STATE(4808), 1, + STATE(4640), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5720), 1, aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -285178,73 +287138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89977] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6264), 1, - sym__automatic_semicolon, - STATE(2936), 1, - sym_comment, - ACTIONS(2329), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2243), 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(2247), 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, - [90036] = 7, + [92381] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6266), 1, - sym__automatic_semicolon, - STATE(2937), 1, + STATE(2969), 1, sym_comment, - ACTIONS(2357), 4, + ACTIONS(6297), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6299), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2257), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285258,7 +287166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2261), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -285282,35 +287190,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90095] = 14, + [92440] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6157), 1, + ACTIONS(6273), 1, anon_sym_STAR, - STATE(2938), 1, + ACTIONS(6275), 1, + anon_sym_async, + STATE(2970), 1, sym_comment, - STATE(4801), 1, + STATE(3823), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -285319,12 +287229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -285341,46 +287250,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90168] = 15, + [92515] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6270), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6272), 1, - anon_sym_async, - STATE(2939), 1, + STATE(2971), 1, sym_comment, - STATE(3838), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6274), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 20, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285401,14 +287314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90243] = 5, + [92598] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2940), 1, + STATE(2972), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(6297), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285422,15 +287342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -285451,123 +287366,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90298] = 34, + [92657] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2973), 1, + sym_comment, + ACTIONS(6297), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 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(4139), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_of, - ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92716] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_LT, + STATE(2222), 1, sym_type_arguments, - STATE(2941), 1, + STATE(2974), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(4953), 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90411] = 16, + anon_sym_satisfies, + [92793] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(2942), 1, + ACTIONS(6301), 1, + anon_sym_STAR, + STATE(2975), 1, sym_comment, - STATE(7005), 1, + STATE(4618), 1, sym__property_name, - STATE(7130), 1, - sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6278), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4582), 2, + ACTIONS(6303), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - STATE(6820), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6276), 23, + ACTIONS(1041), 8, + 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(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285577,8 +287526,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, @@ -285591,93 +287538,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90488] = 34, + [92866] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2976), 1, + sym_comment, + ACTIONS(6305), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6307), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 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(4139), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5264), 1, - anon_sym_of, - ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2943), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90601] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92925] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6301), 1, + anon_sym_STAR, + ACTIONS(6309), 1, + anon_sym_async, + STATE(2977), 1, + sym_comment, + STATE(3837), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6311), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + 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(4378), 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, + [93000] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2944), 1, + STATE(2978), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285691,7 +287671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 28, + ACTIONS(2203), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285720,136 +287700,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90656] = 34, + [93055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + STATE(2979), 1, + sym_comment, + ACTIONS(2141), 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(2145), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5244), 1, - anon_sym_of, - ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2945), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93110] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2980), 1, + sym_comment, + ACTIONS(2177), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(2181), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90769] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93165] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(1041), 1, + ACTIONS(5200), 1, anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(2946), 1, + STATE(2981), 1, sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, + STATE(5720), 1, aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285862,58 +287856,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90850] = 19, + [93232] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, - ACTIONS(1041), 1, + ACTIONS(5200), 1, anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(2947), 1, + STATE(2982), 1, sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, + STATE(5720), 1, aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285926,16 +287912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90933] = 6, + [93299] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - STATE(2948), 1, + STATE(2983), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(2239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285949,13 +287933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 27, + ACTIONS(2243), 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, @@ -285977,46 +287962,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90990] = 15, + [93354] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_async, - STATE(2949), 1, + ACTIONS(6212), 1, + anon_sym_RBRACE, + STATE(2984), 1, sym_comment, - STATE(3794), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6187), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 20, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286037,66 +288026,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91065] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93437] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_STAR, - STATE(2950), 1, - sym_comment, - STATE(4731), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6280), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4216), 1, anon_sym_EQ, - anon_sym_COMMA, + STATE(2985), 1, + sym_comment, + ACTIONS(4135), 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(4139), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [91138] = 18, + 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, + [93494] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -286107,21 +288088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6195), 1, + ACTIONS(6212), 1, anon_sym_RBRACE, - STATE(2951), 1, + STATE(2986), 1, sym_comment, - STATE(4808), 1, + STATE(4640), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, @@ -286129,10 +288110,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -286159,180 +288140,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91219] = 34, + [93575] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(5203), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, + STATE(2987), 1, + sym_comment, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5206), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2059), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, + anon_sym_in, anon_sym_GT_GT, - ACTIONS(5999), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2065), 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, - ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(6003), 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, + [93638] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, + anon_sym_of, + STATE(2988), 1, + sym_comment, + ACTIONS(4135), 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, - ACTIONS(6066), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4139), 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, - ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6282), 1, - anon_sym_COLON, - STATE(2220), 1, - sym_type_arguments, - STATE(2952), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93699] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2989), 1, + sym_comment, + ACTIONS(5583), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(5585), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91332] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93754] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4224), 1, + anon_sym_EQ, + STATE(2990), 1, + sym_comment, + ACTIONS(4135), 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(4139), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6288), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2953), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2991), 1, + sym_comment, + ACTIONS(5442), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(5444), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91445] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93866] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6273), 1, + anon_sym_STAR, + STATE(2992), 1, + sym_comment, + STATE(4617), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6313), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [93939] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4216), 1, - anon_sym_EQ, - ACTIONS(4351), 1, - anon_sym_in, - ACTIONS(4354), 1, - anon_sym_of, - STATE(2954), 1, + STATE(2993), 1, sym_comment, - ACTIONS(4137), 12, + ACTIONS(6006), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6008), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -286343,13 +288485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 26, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -286370,21 +288509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91506] = 7, + [93998] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2955), 1, + STATE(2994), 1, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6315), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6055), 3, + ACTIONS(6317), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286398,7 +288537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -286422,39 +288561,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91565] = 7, + [94057] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2956), 1, - sym_comment, - ACTIONS(6322), 2, + ACTIONS(5226), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6324), 3, + ACTIONS(5230), 1, + anon_sym_LBRACK, + STATE(2995), 1, + sym_comment, + ACTIONS(5236), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + anon_sym_extends, + ACTIONS(5233), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5224), 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(4141), 23, + ACTIONS(5228), 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, @@ -286474,14 +288615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91624] = 5, + [94120] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2957), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5576), 13, + ACTIONS(5438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286495,7 +288636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5578), 28, + ACTIONS(5440), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286524,152 +288665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91679] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5180), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(2958), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91792] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(2959), 1, - sym_comment, - STATE(4799), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6326), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 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, - [91865] = 5, + [94175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2960), 1, + STATE(2997), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(5772), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286683,7 +288686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5689), 28, + ACTIONS(5774), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286712,185 +288715,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91920] = 7, + [94230] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2961), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2998), 1, sym_comment, - ACTIONS(6328), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6330), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4141), 23, + ACTIONS(4953), 13, 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, - [91979] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6332), 1, - anon_sym_STAR, - ACTIONS(6334), 1, - anon_sym_async, - STATE(2962), 1, - sym_comment, - STATE(3861), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6336), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(4376), 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, - [92054] = 7, + [94317] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2963), 1, - sym_comment, - ACTIONS(6328), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6330), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 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(4141), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4883), 1, + anon_sym_of, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(2999), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [92113] = 7, + [94430] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2964), 1, + STATE(3000), 1, sym_comment, - ACTIONS(6328), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6330), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(5431), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286904,10 +288881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(5433), 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, @@ -286928,7 +288910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92172] = 14, + [94485] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -286937,34 +288919,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6332), 1, + ACTIONS(5522), 1, anon_sym_STAR, - STATE(2965), 1, + STATE(3001), 1, sym_comment, - STATE(4784), 1, + STATE(4843), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6338), 2, + ACTIONS(6319), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(2900), 21, anon_sym_export, anon_sym_type, @@ -286987,14 +288969,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92245] = 5, + [94558] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2966), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6321), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3002), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3003), 1, sym_comment, - ACTIONS(5626), 13, + ACTIONS(5427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287008,7 +289069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5628), 28, + ACTIONS(5429), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287037,14 +289098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92300] = 5, + [94726] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2967), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(2153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287058,7 +289119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5244), 28, + ACTIONS(2155), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287087,14 +289148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92355] = 5, + [94781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2968), 1, + STATE(3005), 1, sym_comment, - ACTIONS(5618), 13, + ACTIONS(5541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287108,7 +289169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5620), 28, + ACTIONS(5543), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287137,14 +289198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92410] = 5, + [94836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2969), 1, + STATE(3006), 1, sym_comment, - ACTIONS(5612), 13, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287158,7 +289219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5264), 28, + ACTIONS(5321), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287187,172 +289248,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92465] = 34, + [94891] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5721), 1, + ACTIONS(5568), 1, anon_sym_RBRACE, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6076), 1, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(2970), 1, + STATE(3007), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92578] = 34, + [95004] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6340), 1, - anon_sym_COLON, - STATE(2220), 1, - sym_type_arguments, - STATE(2971), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(6323), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92691] = 5, + ACTIONS(6325), 1, + anon_sym_async, + STATE(3008), 1, + sym_comment, + STATE(3864), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6327), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + 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(4378), 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, + [95079] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2972), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5600), 13, + ACTIONS(5583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287366,7 +289408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5602), 28, + ACTIONS(5585), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287395,19 +289437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92746] = 7, + [95134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6342), 1, - sym__automatic_semicolon, - STATE(2973), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2271), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2105), 13, + ACTIONS(5587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287421,11 +289458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2109), 25, + ACTIONS(5589), 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, @@ -287447,78 +289487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92805] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6195), 1, - anon_sym_RBRACE, - STATE(2974), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [92888] = 5, + [95189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2975), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5596), 13, + ACTIONS(5601), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287532,7 +289508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5598), 28, + ACTIONS(5603), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287561,46 +289537,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92943] = 15, + [95244] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6344), 1, + ACTIONS(6329), 1, anon_sym_STAR, - ACTIONS(6346), 1, + ACTIONS(6331), 1, anon_sym_async, - STATE(2976), 1, + STATE(3012), 1, sym_comment, - STATE(3806), 1, + STATE(3842), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6348), 2, + ACTIONS(6333), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(4376), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287621,14 +289597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93018] = 5, + [95319] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2977), 1, + STATE(3013), 1, sym_comment, - ACTIONS(5592), 13, + ACTIONS(5664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287642,7 +289618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5594), 28, + ACTIONS(5124), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287671,14 +289647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93073] = 5, + [95374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2978), 1, + STATE(3014), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(5613), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287692,7 +289668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 28, + ACTIONS(5615), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287721,72 +289697,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93128] = 6, + [95429] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2979), 1, - sym_comment, - ACTIONS(5172), 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(5174), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4815), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5246), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3015), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [93185] = 7, + [95542] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2980), 1, + STATE(3016), 1, sym_comment, - ACTIONS(6350), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6352), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(5583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287800,10 +289797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(5585), 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, @@ -287824,118 +289826,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93244] = 9, + [95597] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5041), 1, - anon_sym_QMARK, - STATE(2981), 1, - sym_comment, - ACTIONS(5043), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5526), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5523), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5519), 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(5521), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6335), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3017), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93307] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2982), 1, - sym_comment, - ACTIONS(2151), 13, + ACTIONS(6128), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2153), 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(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 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, - [93362] = 5, + [95710] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2983), 1, + STATE(3018), 1, sym_comment, - ACTIONS(5588), 13, + ACTIONS(2299), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2153), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287949,14 +289929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 28, + ACTIONS(2155), 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, @@ -287978,39 +289956,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93417] = 7, + [95767] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2984), 1, + STATE(3019), 1, sym_comment, - ACTIONS(5029), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5031), 4, + ACTIONS(2295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4137), 11, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2239), 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(4141), 24, + ACTIONS(2243), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -288030,37 +290007,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93476] = 5, + [95824] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2985), 1, + ACTIONS(5203), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_COLON, + STATE(3020), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(5206), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3568), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2059), 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(5554), 28, - sym__automatic_semicolon, + ACTIONS(2065), 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, @@ -288080,14 +290062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93531] = 5, + [95889] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2986), 1, + STATE(3021), 1, sym_comment, - ACTIONS(5560), 13, + ACTIONS(2313), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2177), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288101,15 +290089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5562), 28, - sym__automatic_semicolon, + ACTIONS(2181), 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, @@ -288130,14 +290113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93586] = 5, + [95946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2987), 1, + STATE(3022), 1, sym_comment, - ACTIONS(5556), 13, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288151,7 +290134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5558), 28, + ACTIONS(5740), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288180,74 +290163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93641] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6344), 1, - anon_sym_STAR, - ACTIONS(6346), 1, - anon_sym_async, - STATE(2988), 1, - sym_comment, - STATE(3818), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6348), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [93716] = 5, + [96001] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2989), 1, + ACTIONS(6337), 1, + sym__automatic_semicolon, + STATE(3023), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(2295), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288261,14 +290189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 28, - sym__automatic_semicolon, + ACTIONS(2243), 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, @@ -288281,106 +290206,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93771] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6344), 1, - anon_sym_STAR, - STATE(2990), 1, - sym_comment, - STATE(4820), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6354), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 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, - [93844] = 6, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96060] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2991), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5230), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_COLON, + STATE(3024), 1, sym_comment, - ACTIONS(2325), 5, - sym__automatic_semicolon, + ACTIONS(5233), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5236), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2227), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5224), 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(2231), 23, + ACTIONS(5228), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -288400,80 +290270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93901] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_STAR, - STATE(2992), 1, - sym_comment, - STATE(4715), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6356), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 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, - [93974] = 6, + [96125] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6358), 1, - sym_regex_flags, - STATE(2993), 1, + ACTIONS(6339), 1, + sym__automatic_semicolon, + STATE(3025), 1, sym_comment, - ACTIONS(6208), 17, + ACTIONS(2313), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2177), 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, @@ -288484,11 +290296,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(6210), 23, - sym__automatic_semicolon, + ACTIONS(2181), 25, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -288507,23 +290317,19 @@ 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, - [94031] = 6, + anon_sym_satisfies, + [96184] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2994), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2215), 13, + ACTIONS(5732), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288537,10 +290343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 23, + ACTIONS(5734), 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, @@ -288561,89 +290372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94088] = 24, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, - anon_sym_async, - ACTIONS(6368), 1, - anon_sym_static, - ACTIONS(6370), 1, - anon_sym_readonly, - ACTIONS(6376), 1, - anon_sym_override, - STATE(2995), 1, - sym_comment, - STATE(3468), 1, - sym_accessibility_modifier, - STATE(3530), 1, - sym_override_modifier, - STATE(4504), 1, - sym__property_name, - STATE(5847), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6372), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6374), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5848), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6360), 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, - [94181] = 6, + [96239] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2996), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2381), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2207), 13, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288657,10 +290393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2211), 23, + ACTIONS(5717), 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, @@ -288681,73 +290422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94238] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6270), 1, - anon_sym_STAR, - STATE(2997), 1, - sym_comment, - STATE(4701), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6378), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 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, - [94311] = 5, + [96294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2998), 1, + STATE(3028), 1, sym_comment, - ACTIONS(5506), 13, + ACTIONS(5711), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288761,7 +290443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5508), 28, + ACTIONS(5713), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288790,20 +290472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94366] = 6, + [96349] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2999), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2373), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2169), 13, + ACTIONS(5707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288817,10 +290493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 23, + ACTIONS(5709), 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, @@ -288841,21 +290522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94423] = 7, + [96404] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6380), 1, - sym__automatic_semicolon, - STATE(3000), 1, + STATE(3030), 1, sym_comment, - ACTIONS(2287), 4, + ACTIONS(2339), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2139), 13, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288869,7 +290549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2143), 23, + ACTIONS(2219), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -288893,20 +290573,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94482] = 6, + [96461] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3001), 1, + ACTIONS(6341), 1, + anon_sym_LPAREN, + ACTIONS(6344), 1, + anon_sym_COLON, + ACTIONS(6346), 1, + anon_sym_LT, + ACTIONS(6349), 1, + anon_sym_QMARK, + STATE(3031), 1, sym_comment, - ACTIONS(2313), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2131), 13, + ACTIONS(4135), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288917,13 +290599,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(2135), 23, + ACTIONS(4139), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -288944,7 +290627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94539] = 14, + [96524] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -288953,26 +290636,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6382), 1, + ACTIONS(5989), 1, anon_sym_STAR, - STATE(3002), 1, + STATE(3032), 1, sym_comment, - STATE(4696), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6384), 2, + ACTIONS(6351), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -289003,37 +290686,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94612] = 15, + [96597] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6386), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3003), 1, + ACTIONS(6353), 1, + sym_regex_flags, + STATE(3033), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 12, + ACTIONS(6206), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -289043,12 +290707,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(5055), 17, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6208), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + 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_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -289061,212 +290734,254 @@ 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_satisfies, - [94687] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [96654] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6389), 1, + ACTIONS(4929), 1, + anon_sym_of, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3004), 1, + STATE(3034), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4937), 11, + ACTIONS(6218), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4939), 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, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94768] = 9, + [96767] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - ACTIONS(5779), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(3005), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5084), 1, + anon_sym_of, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_CARET, + ACTIONS(6234), 1, anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3035), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6220), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [94831] = 34, + [96880] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4960), 1, - anon_sym_of, - ACTIONS(6232), 1, + ACTIONS(6359), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6244), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6248), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6260), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3006), 1, + STATE(3036), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94944] = 5, + [96993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3007), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5502), 13, + ACTIONS(5703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289280,7 +290995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 28, + ACTIONS(5705), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289309,14 +291024,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94999] = 5, + [97048] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5989), 1, + anon_sym_STAR, + ACTIONS(5991), 1, + anon_sym_async, + STATE(3038), 1, + sym_comment, + STATE(3853), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5995), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + 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(4378), 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, + [97123] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3008), 1, + STATE(3039), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(2261), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289330,7 +291105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5452), 28, + ACTIONS(2265), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289359,33 +291134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95054] = 14, + [97178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6392), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3009), 1, + STATE(3040), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(2161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289396,12 +291152,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(4980), 19, + ACTIONS(2165), 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, @@ -289417,142 +291182,16 @@ 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, - [95127] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(3010), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [95208] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(3011), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [95291] = 5, + [97233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3012), 1, + STATE(3041), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289566,7 +291205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 28, + ACTIONS(5623), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289595,130 +291234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95346] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6344), 1, - anon_sym_STAR, - ACTIONS(6346), 1, - anon_sym_async, - STATE(3013), 1, - sym_comment, - STATE(3825), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6348), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [95421] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5182), 1, - anon_sym_RBRACE, - STATE(3014), 1, - sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95488] = 5, + [97288] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3015), 1, + ACTIONS(6393), 1, + sym__automatic_semicolon, + STATE(3042), 1, sym_comment, - ACTIONS(5446), 13, + ACTIONS(2339), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289732,14 +291260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5448), 28, - sym__automatic_semicolon, + ACTIONS(2219), 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, @@ -289761,14 +291286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95543] = 5, + [97347] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3016), 1, + STATE(3043), 1, sym_comment, - ACTIONS(5384), 13, + ACTIONS(2277), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289782,15 +291313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5386), 28, - sym__automatic_semicolon, + ACTIONS(2173), 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, @@ -289811,14 +291337,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95598] = 5, + [97404] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3017), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6395), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3044), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97517] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3045), 1, sym_comment, - ACTIONS(5604), 13, + ACTIONS(5631), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289832,7 +291437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 28, + ACTIONS(5633), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289861,137 +291466,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95653] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [97572] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6395), 1, - anon_sym_STAR, - STATE(3018), 1, - sym_comment, - STATE(4692), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6397), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 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, - [95726] = 15, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(6399), 1, - anon_sym_STAR, - ACTIONS(6401), 1, - anon_sym_async, - STATE(3019), 1, - sym_comment, - STATE(3828), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6403), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4883), 1, + anon_sym_RBRACK, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6361), 1, + anon_sym_AMP_AMP, + ACTIONS(6363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, + anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6381), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4376), 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, - [95801] = 6, + ACTIONS(6389), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3046), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6358), 1, - sym_regex_flags, - STATE(3020), 1, + STATE(3047), 1, sym_comment, - ACTIONS(6208), 16, + ACTIONS(5617), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -290004,14 +291566,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(6210), 24, + ACTIONS(5619), 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, @@ -290028,22 +291590,19 @@ 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, - [95858] = 7, + anon_sym_satisfies, + [97740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6405), 1, - sym__automatic_semicolon, - STATE(3021), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2215), 13, + ACTIONS(5697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290057,11 +291616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 25, + ACTIONS(5699), 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, @@ -290083,14 +291645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95917] = 5, + [97795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3022), 1, + STATE(3049), 1, sym_comment, - ACTIONS(5541), 13, + ACTIONS(5654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290104,7 +291666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5543), 28, + ACTIONS(5656), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290133,19 +291695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95972] = 7, + [97850] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6407), 1, - sym__automatic_semicolon, - STATE(3023), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2325), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2227), 13, + ACTIONS(2365), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290159,12 +291722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 25, + ACTIONS(2131), 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, @@ -290185,14 +291746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96031] = 5, + [97907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3024), 1, + STATE(3051), 1, sym_comment, - ACTIONS(5545), 13, + ACTIONS(5652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290206,7 +291767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5547), 28, + ACTIONS(4961), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290235,14 +291796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96086] = 5, + [97962] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3025), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2105), 13, + ACTIONS(5648), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290256,7 +291817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2109), 28, + ACTIONS(5650), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290285,49 +291846,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96141] = 14, + [98017] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6399), 1, + ACTIONS(6397), 1, anon_sym_STAR, - STATE(3026), 1, + ACTIONS(6399), 1, + anon_sym_async, + STATE(3053), 1, sym_comment, - STATE(4662), 1, + STATE(3851), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6409), 2, + ACTIONS(6401), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -290344,50 +291906,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96214] = 11, + [98092] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6403), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3054), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98205] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6397), 1, + anon_sym_STAR, + STATE(3055), 1, + sym_comment, + STATE(4725), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6405), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_COMMA, - ACTIONS(5182), 1, anon_sym_RBRACE, - STATE(3027), 1, - sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, + ACTIONS(2900), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290400,14 +292044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96281] = 5, + [98278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3028), 1, + STATE(3056), 1, sym_comment, - ACTIONS(5564), 13, + ACTIONS(5764), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290421,7 +292065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 28, + ACTIONS(5130), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290450,101 +292094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96336] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(2220), 1, - sym_type_arguments, - STATE(3029), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96449] = 9, + [98333] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6413), 1, - anon_sym_LPAREN, - ACTIONS(6416), 1, - anon_sym_COLON, - ACTIONS(6418), 1, - anon_sym_LT, - ACTIONS(6421), 1, - anon_sym_QMARK, - STATE(3030), 1, + STATE(3057), 1, sym_comment, - ACTIONS(4137), 12, + ACTIONS(5666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290555,13 +292112,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(4141), 25, + ACTIONS(5668), 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, @@ -290583,14 +292144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96512] = 5, + [98388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3031), 1, + STATE(3058), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290604,7 +292165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5492), 28, + ACTIONS(5575), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290633,247 +292194,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96567] = 34, + [98443] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4985), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3032), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96680] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4976), 1, - anon_sym_of, - ACTIONS(6232), 1, + ACTIONS(6132), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, + ACTIONS(6136), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6140), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6142), 1, anon_sym_CARET, - ACTIONS(6244), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6248), 1, + ACTIONS(6148), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(6260), 1, + ACTIONS(6160), 1, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, + ACTIONS(6162), 1, sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3033), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96793] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - STATE(2220), 1, + ACTIONS(6407), 1, + anon_sym_COLON, + STATE(2222), 1, sym_type_arguments, - STATE(3034), 1, + STATE(3059), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6128), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6130), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6138), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6154), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [96898] = 5, + [98556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3035), 1, + STATE(3060), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(5678), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290887,7 +292294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5574), 28, + ACTIONS(5119), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290916,14 +292323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96953] = 5, + [98611] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3036), 1, + STATE(3061), 1, sym_comment, - ACTIONS(5529), 13, + ACTIONS(5680), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290937,7 +292344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5531), 28, + ACTIONS(5682), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290966,162 +292373,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97008] = 23, + [98666] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(3062), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3037), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 10, - 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, - [97099] = 35, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98733] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(3063), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5762), 1, - anon_sym_of, - ACTIONS(6230), 1, - anon_sym_GT, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - ACTIONS(6423), 1, - anon_sym_in, - STATE(2220), 1, - sym_type_arguments, - STATE(3038), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97214] = 5, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3039), 1, + STATE(3064), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(5609), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291135,7 +292506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5715), 28, + ACTIONS(5611), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291164,20 +292535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97269] = 6, + [98855] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3040), 1, - sym_comment, - ACTIONS(2351), 5, + ACTIONS(6409), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2151), 13, + STATE(3065), 1, + sym_comment, + ACTIONS(2335), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291191,10 +292561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2153), 23, + ACTIONS(2145), 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, @@ -291215,40 +292587,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97326] = 9, + [98914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(3041), 1, + STATE(3066), 1, sym_comment, - ACTIONS(5779), 2, + ACTIONS(2299), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2153), 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(4141), 24, + ACTIONS(2155), 23, 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, @@ -291268,65 +292638,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [97389] = 5, + [98971] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3042), 1, - sym_comment, - ACTIONS(2215), 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(2219), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5041), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3067), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [97444] = 5, + [99084] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3043), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2227), 13, + ACTIONS(6077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6195), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291340,15 +292745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -291369,14 +292769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97499] = 5, + [99143] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3044), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2243), 13, + ACTIONS(6077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6079), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291390,15 +292797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -291419,14 +292821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97554] = 5, + [99202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3045), 1, + STATE(3070), 1, sym_comment, - ACTIONS(2191), 13, + ACTIONS(5605), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291440,7 +292842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 28, + ACTIONS(5607), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291469,54 +292871,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97609] = 19, + [99257] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6323), 1, anon_sym_STAR, - STATE(3046), 1, + STATE(3071), 1, sym_comment, - STATE(4808), 1, + STATE(4660), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6411), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -291533,99 +292930,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97692] = 7, + [99330] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6426), 1, - sym__automatic_semicolon, - STATE(3047), 1, - sym_comment, - ACTIONS(2313), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2131), 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(2135), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, anon_sym_AMP_AMP, + ACTIONS(6134), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, anon_sym_PERCENT, + ACTIONS(6150), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6413), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3072), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 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, - [97751] = 18, + [99443] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6329), 1, anon_sym_STAR, - STATE(3048), 1, + STATE(3073), 1, sym_comment, - STATE(4808), 1, + STATE(4649), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6415), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 8, + 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(2900), 21, anon_sym_export, anon_sym_type, @@ -291648,146 +293068,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97832] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3049), 1, - sym_comment, - ACTIONS(6428), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6430), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 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(4141), 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, - [97891] = 8, + [99516] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(3050), 1, + STATE(3074), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5779), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4137), 11, + ACTIONS(5452), 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(4141), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97952] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5343), 1, - anon_sym_LBRACK, - STATE(3051), 1, - sym_comment, - ACTIONS(3570), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5346), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2069), 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(2075), 24, + ACTIONS(5454), 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, @@ -291806,79 +293117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [98015] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3052), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [98098] = 5, + anon_sym_satisfies, + [99571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3053), 1, + STATE(3075), 1, sym_comment, - ACTIONS(5693), 13, + ACTIONS(5766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291892,7 +293139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5695), 28, + ACTIONS(5768), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291921,19 +293168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98153] = 7, + [99626] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6435), 1, - sym__automatic_semicolon, - STATE(3054), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2287), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2139), 13, + ACTIONS(5687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291947,11 +293189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2143), 25, + ACTIONS(5689), 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, @@ -291973,149 +293218,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98212] = 18, + [99681] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6248), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5119), 1, + anon_sym_of, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6432), 1, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3055), 1, + STATE(3077), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, - anon_sym_BANG, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 15, - sym__ternary_qmark, + ACTIONS(6248), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99794] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5124), 1, anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3078), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [98293] = 27, + [99907] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6236), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5130), 1, + anon_sym_of, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(6248), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3056), 1, + STATE(3079), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6228), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 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, - [98392] = 5, + [100020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3057), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2169), 13, + ACTIONS(5545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292129,7 +293476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2173), 28, + ACTIONS(5547), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292158,14 +293505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98447] = 5, + [100075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3058), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2207), 13, + ACTIONS(5559), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292179,7 +293526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2211), 28, + ACTIONS(5084), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292208,14 +293555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98502] = 5, + [100130] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3059), 1, + ACTIONS(6417), 1, + sym__automatic_semicolon, + STATE(3082), 1, sym_comment, - ACTIONS(2257), 13, + ACTIONS(2335), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292229,15 +293583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2261), 28, - sym__automatic_semicolon, + ACTIONS(2145), 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, @@ -292258,120 +293607,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98557] = 5, + [100189] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3060), 1, - sym_comment, - ACTIONS(2085), 13, - anon_sym_STAR, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5142), 1, + anon_sym_of, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, anon_sym_GT_GT, + ACTIONS(6230), 1, anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_CARET, + ACTIONS(6234), 1, anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_PERCENT, + ACTIONS(6240), 1, + anon_sym_STAR_STAR, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3083), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2089), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6248), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100302] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4927), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3084), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98612] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RBRACE, - STATE(3061), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, - anon_sym_export, + ACTIONS(6218), 2, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98679] = 5, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100415] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3062), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2199), 13, + ACTIONS(5660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292385,7 +293786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 28, + ACTIONS(5662), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292414,59 +293815,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98734] = 7, + [100470] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6437), 1, - sym__automatic_semicolon, - STATE(3063), 1, - sym_comment, - ACTIONS(2329), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2243), 13, - anon_sym_STAR, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, anon_sym_GT_GT, + ACTIONS(6140), 1, anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, + anon_sym_LT, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6419), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3086), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6156), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100583] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3087), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6220), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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(4953), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [98793] = 14, + [100688] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -292475,34 +293978,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(6421), 1, anon_sym_STAR, - STATE(3064), 1, + STATE(3088), 1, sym_comment, - STATE(4816), 1, + STATE(4646), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6439), 2, + ACTIONS(6423), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(2900), 21, anon_sym_export, anon_sym_type, @@ -292525,135 +294028,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98866] = 5, + [100761] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3065), 1, - sym_comment, - ACTIONS(5510), 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(5512), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6084), 1, anon_sym_RBRACE, + STATE(3089), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, 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, - [98921] = 26, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [100842] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6236), 1, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6248), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3066), 1, + STATE(3090), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6228), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 8, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 10, 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, - [99018] = 5, + [100933] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6084), 1, + anon_sym_RBRACE, + STATE(3091), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [101016] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3067), 1, + ACTIONS(6425), 1, + sym__automatic_semicolon, + STATE(3092), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(2283), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292667,14 +294249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 28, - sym__automatic_semicolon, + ACTIONS(2165), 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, @@ -292696,93 +294275,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99073] = 34, + [101075] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_RBRACE, + STATE(3093), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101142] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(6427), 1, anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6441), 1, - anon_sym_COLON, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3068), 1, + STATE(3094), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99186] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3069), 1, - sym_comment, - ACTIONS(5703), 13, + ACTIONS(5155), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292793,21 +294368,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(5705), 28, - sym__automatic_semicolon, + ACTIONS(5157), 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -292823,150 +294389,192 @@ 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, - [99241] = 25, + [101215] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3070), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3095), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [101298] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 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, - [99336] = 19, + STATE(3096), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [101379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3071), 1, + STATE(3097), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(5577), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 15, + ACTIONS(5579), 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, - [99419] = 5, + [101434] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3072), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5608), 13, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292980,7 +294588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5610), 28, + ACTIONS(5321), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293009,37 +294617,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99474] = 5, + [101489] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3073), 1, + ACTIONS(4289), 1, + anon_sym_EQ, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3099), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5709), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -293059,46 +294671,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99529] = 15, + [101552] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5450), 1, anon_sym_LBRACK, - ACTIONS(6443), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(6445), 1, + ACTIONS(6088), 1, anon_sym_async, - STATE(3074), 1, + STATE(3100), 1, sym_comment, - STATE(3823), 1, + STATE(3903), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6447), 2, + ACTIONS(6092), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(4376), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293119,462 +294731,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99604] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3075), 1, - sym_comment, - ACTIONS(5172), 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(5174), 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, - [99659] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_of, - ACTIONS(6449), 1, - anon_sym_in, - STATE(3076), 1, - sym_comment, - ACTIONS(5320), 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(5324), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99720] = 34, + [101627] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6290), 1, + ACTIONS(5109), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - ACTIONS(6452), 1, - anon_sym_RBRACK, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3077), 1, + STATE(3101), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99833] = 34, + [101740] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6086), 1, + anon_sym_STAR, + STATE(3102), 1, + sym_comment, + STATE(4774), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6430), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, + 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(2900), 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, + [101813] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(5140), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6076), 1, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - ACTIONS(6454), 1, - anon_sym_COLON, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3078), 1, + STATE(3103), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99946] = 29, + [101926] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3079), 1, + ACTIONS(6432), 1, + sym__automatic_semicolon, + STATE(3104), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(2343), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2261), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 6, + ACTIONS(2265), 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, - [100049] = 28, + [101985] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6434), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3080), 1, + STATE(3105), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 7, + ACTIONS(5092), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + 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_satisfies, - [100150] = 15, + anon_sym_instanceof, + [102066] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_STAR, - ACTIONS(6099), 1, - anon_sym_async, - STATE(3081), 1, - sym_comment, - STATE(3909), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6103), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_COMMA, + ACTIONS(5144), 1, anon_sym_RBRACE, + STATE(3106), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4376), 20, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293587,7 +295119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100225] = 14, + [102133] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -293596,33 +295128,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3082), 1, + ACTIONS(6030), 1, + anon_sym_STAR, + STATE(3107), 1, sym_comment, - STATE(4736), 1, + STATE(4842), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5900), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + ACTIONS(6437), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 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(2900), 23, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293632,8 +295166,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, @@ -293646,38 +295178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100298] = 16, + [102206] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6432), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3083), 1, + STATE(3108), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2441), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 12, + ACTIONS(6439), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293688,392 +295207,396 @@ 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(4944), 16, + ACTIONS(4867), 21, 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, - [100375] = 34, + [102269] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + ACTIONS(5138), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6068), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6076), 1, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - ACTIONS(6456), 1, - anon_sym_COLON, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3084), 1, + STATE(3109), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5991), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5995), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5997), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6007), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6009), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100488] = 5, + [102382] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3085), 1, - sym_comment, - ACTIONS(5519), 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(5521), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6361), 1, anon_sym_AMP_AMP, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, anon_sym_PERCENT, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6391), 1, + sym__ternary_qmark, + ACTIONS(6441), 1, + anon_sym_RBRACK, + STATE(2222), 1, + sym_type_arguments, + STATE(3110), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100543] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3086), 1, - sym_comment, - ACTIONS(6127), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6129), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(6355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 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, - [100602] = 5, + [102495] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3087), 1, - sym_comment, - ACTIONS(5732), 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(5734), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5041), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, anon_sym_PERCENT, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3111), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100657] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4235), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3088), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + ACTIONS(6355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6357), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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, - anon_sym_PIPE_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(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 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, - [100720] = 10, + [102608] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4195), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5188), 1, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5014), 1, + anon_sym_RBRACE, + STATE(3112), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(5779), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - STATE(3089), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102675] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6443), 1, + anon_sym_STAR, + STATE(3113), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5190), 3, + STATE(4833), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6445), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4137), 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(4141), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, 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, - [100785] = 14, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 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, + [102748] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6458), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3090), 1, + ACTIONS(6447), 1, + sym__automatic_semicolon, + STATE(3114), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4978), 12, + ACTIONS(2301), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294084,12 +295607,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(4980), 19, + ACTIONS(2203), 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, @@ -294105,239 +295634,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [100858] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3091), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 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, - [100945] = 34, + [102807] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(6449), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5194), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3092), 1, + ACTIONS(6457), 1, + anon_sym_QMARK, + STATE(3115), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(5772), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101058] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4968), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3093), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(5774), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101171] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102870] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5014), 1, + anon_sym_RBRACE, + STATE(3116), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102937] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3094), 1, + STATE(3117), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5549), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294351,7 +295767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5194), 28, + ACTIONS(5551), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294380,128 +295796,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101226] = 34, + [102992] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(3118), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [103075] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5316), 1, + anon_sym_RBRACE, + STATE(3119), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103142] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_COMMA, + ACTIONS(5316), 1, + anon_sym_RBRACE, + STATE(3120), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103209] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5300), 1, - anon_sym_of, - ACTIONS(6232), 1, + ACTIONS(4961), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6244), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6248), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6260), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3095), 1, + STATE(3121), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101339] = 14, + [103322] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6461), 1, + ACTIONS(6459), 1, anon_sym_STAR, - STATE(3096), 1, + ACTIONS(6461), 1, + anon_sym_async, + STATE(3122), 1, sym_comment, - STATE(4779), 1, + STATE(3804), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, ACTIONS(6463), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(2900), 21, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294518,37 +296111,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101412] = 5, + [103397] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3097), 1, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + STATE(3123), 1, sym_comment, - ACTIONS(5537), 13, + ACTIONS(5535), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(5539), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -294568,50 +296164,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101467] = 15, + anon_sym_implements, + [103460] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6461), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_async, - STATE(3098), 1, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(3124), 1, sym_comment, - STATE(3837), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6467), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4376), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294628,254 +296228,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101542] = 34, + [103541] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5170), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3099), 1, + STATE(3125), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(6316), 2, + ACTIONS(4953), 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101655] = 34, + anon_sym_satisfies, + [103628] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(5880), 1, + anon_sym_of, + ACTIONS(6465), 1, + anon_sym_in, + STATE(3126), 1, + sym_comment, + ACTIONS(2059), 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(2065), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4960), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103689] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6468), 1, + anon_sym_LT, + STATE(2222), 1, sym_type_arguments, - STATE(3100), 1, + STATE(3127), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(5067), 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101768] = 34, + anon_sym_satisfies, + [103764] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6459), 1, + anon_sym_STAR, + STATE(3128), 1, + sym_comment, + STATE(4838), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6471), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [103837] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5272), 1, + ACTIONS(5246), 1, anon_sym_RBRACK, - ACTIONS(6290), 1, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3101), 1, + STATE(3129), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101881] = 5, + [103950] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3102), 1, + ACTIONS(5637), 1, + anon_sym_EQ, + ACTIONS(5862), 1, + anon_sym_of, + ACTIONS(6473), 1, + anon_sym_in, + STATE(3130), 1, sym_comment, - ACTIONS(5363), 13, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -294886,14 +296571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 28, + ACTIONS(5639), 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, @@ -294915,14 +296598,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101936] = 5, + [104011] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + STATE(3131), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6476), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [104084] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3103), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6478), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3132), 1, sym_comment, - ACTIONS(5676), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294933,21 +296697,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(5678), 28, - sym__automatic_semicolon, + ACTIONS(5067), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -294961,99 +296716,44 @@ 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, - [101991] = 34, + [104159] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6481), 1, anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3104), 1, + STATE(3133), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102104] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3105), 1, - sym_comment, - ACTIONS(5672), 13, + ACTIONS(5090), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295062,21 +296762,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(5674), 28, - sym__automatic_semicolon, + ACTIONS(5092), 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, @@ -295090,187 +296780,159 @@ 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, - [102159] = 34, + [104240] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5194), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, + ACTIONS(5109), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6234), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6242), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6250), 1, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, + ACTIONS(6252), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3106), 1, + STATE(3134), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102272] = 21, + [104353] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6484), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3107), 1, + STATE(3135), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 7, + ACTIONS(5155), 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(4944), 13, + ACTIONS(5157), 19, 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, - [102359] = 16, + [104426] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3108), 1, + ACTIONS(6487), 1, + sym__automatic_semicolon, + STATE(3136), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 12, + ACTIONS(2343), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2261), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295281,185 +296943,397 @@ 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(4944), 16, + ACTIONS(2265), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [102436] = 28, + [104485] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(6294), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5788), 1, + anon_sym_of, + ACTIONS(6220), 1, + anon_sym_GT, + ACTIONS(6222), 1, + anon_sym_AMP_AMP, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6234), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + ACTIONS(6489), 1, + anon_sym_in, + STATE(2222), 1, sym_type_arguments, - STATE(3109), 1, + STATE(3137), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 7, - sym__ternary_qmark, + [104600] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4927), 1, anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, + anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [102537] = 29, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3138), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104713] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(6290), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5138), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, - ACTIONS(6294), 1, + ACTIONS(6224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6226), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6230), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6232), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6234), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6238), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6242), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6250), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3110), 1, + STATE(3139), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6218), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6228), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6244), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [102640] = 7, + [104826] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6492), 1, + anon_sym_STAR, + STATE(3140), 1, + sym_comment, + STATE(4841), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6494), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [104899] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6496), 1, + anon_sym_STAR, + STATE(3141), 1, + sym_comment, + STATE(4629), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6498), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(2900), 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, + [104972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6472), 1, - sym__automatic_semicolon, - STATE(3111), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2275), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2191), 13, + ACTIONS(5742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295473,11 +297347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 25, + ACTIONS(5744), 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, @@ -295499,14 +297376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102699] = 5, + [105027] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3112), 1, + ACTIONS(6500), 1, + sym__automatic_semicolon, + STATE(3143), 1, sym_comment, - ACTIONS(5367), 13, + ACTIONS(2365), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295520,14 +297402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5369), 28, - sym__automatic_semicolon, + ACTIONS(2131), 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, @@ -295549,248 +297428,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102754] = 19, + [105086] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3113), 1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5882), 1, + anon_sym_of, + ACTIONS(6502), 1, + anon_sym_in, + STATE(3144), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(5224), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 15, + ACTIONS(5228), 26, + sym__automatic_semicolon, 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [102837] = 25, + [105147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3114), 1, + STATE(3145), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(5627), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 8, + ACTIONS(5629), 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, - [102932] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3115), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 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(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [103029] = 18, + [105202] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6474), 1, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6505), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3116), 1, + STATE(3146), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4937), 11, + ACTIONS(4955), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295801,85 +297575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4939), 15, - 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, - [103110] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_COLON, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3117), 1, - sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5190), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4137), 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(4141), 22, + ACTIONS(4953), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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, - [103175] = 5, + [105279] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3118), 1, + ACTIONS(6508), 1, + sym__automatic_semicolon, + STATE(3147), 1, sym_comment, - ACTIONS(5622), 13, + ACTIONS(2277), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295893,14 +297618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 28, - sym__automatic_semicolon, + ACTIONS(2173), 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, @@ -295922,150 +297644,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103230] = 34, + [105338] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6072), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6074), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6477), 1, - anon_sym_COLON, - STATE(2220), 1, - sym_type_arguments, - STATE(3119), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103343] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3120), 1, + STATE(3148), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 7, + ACTIONS(4953), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -296073,24 +297717,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [103442] = 7, + [105439] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3121), 1, + ACTIONS(6353), 1, + sym_regex_flags, + STATE(3149), 1, sym_comment, - ACTIONS(6127), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6165), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(6206), 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, @@ -296101,10 +297742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6208), 23, + 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, @@ -296120,117 +297765,132 @@ 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, - [103501] = 18, + [105496] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6361), 1, + anon_sym_AMP_AMP, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, + anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6381), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3122), 1, + STATE(3150), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 10, - anon_sym_BANG, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 15, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 6, 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, - [103582] = 15, + [105599] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6479), 1, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6505), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3123), 1, + STATE(3151), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(6355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6375), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(5053), 12, - anon_sym_STAR, + ACTIONS(4955), 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(5055), 17, + ACTIONS(4953), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -296239,8 +297899,6 @@ 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, @@ -296248,114 +297906,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [103657] = 34, + [105682] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(6510), 1, + sym__automatic_semicolon, + STATE(3152), 1, + sym_comment, + ACTIONS(2379), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2079), 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(2083), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5180), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3124), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103770] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105741] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6443), 1, + ACTIONS(6112), 1, anon_sym_STAR, - STATE(3125), 1, + ACTIONS(6114), 1, + anon_sym_async, + STATE(3153), 1, sym_comment, - STATE(4821), 1, + STATE(3822), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6482), 2, + ACTIONS(6116), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -296364,12 +297997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296386,129 +298018,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103843] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5276), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3126), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103956] = 15, + [105816] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6382), 1, + ACTIONS(6112), 1, anon_sym_STAR, - ACTIONS(6484), 1, - anon_sym_async, - STATE(3127), 1, + STATE(3154), 1, sym_comment, - STATE(3839), 1, + STATE(4801), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6486), 2, + ACTIONS(6512), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(4376), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296525,124 +298077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104031] = 34, + [105889] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5274), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3128), 1, + STATE(3155), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(2301), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2199), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104144] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3129), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -296651,717 +298101,426 @@ 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(4944), 14, + ACTIONS(2203), 23, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [104227] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105946] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6003), 1, + ACTIONS(6505), 1, anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_AMP_AMP, - ACTIONS(6068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, - anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6488), 1, - anon_sym_COLON, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3130), 1, + STATE(3156), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104340] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6294), 1, - anon_sym_GT_GT, - ACTIONS(6306), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - anon_sym_STAR_STAR, - ACTIONS(6310), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3131), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 10, + ACTIONS(4953), 14, 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_satisfies, - [104431] = 34, + anon_sym_instanceof, + [106029] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5142), 1, anon_sym_RBRACK, - ACTIONS(6290), 1, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3132), 1, + STATE(3157), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104544] = 30, + [106142] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3133), 1, + STATE(3158), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 5, + ACTIONS(4953), 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, - [104649] = 34, + [106237] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4976), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3134), 1, + STATE(3159), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104762] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6113), 1, - anon_sym_RBRACE, - STATE(3135), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [104845] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6490), 1, - anon_sym_STAR, - STATE(3136), 1, - sym_comment, - STATE(4843), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6492), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 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, - [104918] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4953), 8, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5993), 1, - anon_sym_GT_GT, - ACTIONS(5999), 1, - anon_sym_PERCENT, - ACTIONS(6001), 1, - anon_sym_STAR_STAR, - ACTIONS(6003), 1, - anon_sym_LT, - ACTIONS(6066), 1, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6070), 1, - anon_sym_AMP, - ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6074), 1, - anon_sym_PIPE, - ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6078), 1, - sym__ternary_qmark, - ACTIONS(6494), 1, - anon_sym_COLON, - STATE(2220), 1, - sym_type_arguments, - STATE(3137), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5991), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5995), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5997), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6007), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6009), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6005), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105031] = 7, + anon_sym_satisfies, + [106334] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3138), 1, - sym_comment, - ACTIONS(6496), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 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(4141), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, anon_sym_CARET, + ACTIONS(6377), 1, anon_sym_PERCENT, + ACTIONS(6379), 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, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3160), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105090] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3139), 1, - sym_comment, - ACTIONS(2271), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2105), 13, - anon_sym_STAR, + ACTIONS(4955), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2109), 23, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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, - [105147] = 5, + [106433] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3140), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6505), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3161), 1, sym_comment, - ACTIONS(5758), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6355), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -297370,166 +298529,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(5760), 28, - sym__automatic_semicolon, + ACTIONS(4953), 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [105202] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6043), 1, - anon_sym_STAR, - ACTIONS(6045), 1, - anon_sym_async, - STATE(3141), 1, - sym_comment, - STATE(3872), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(4376), 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, - [105277] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6043), 1, - anon_sym_STAR, - STATE(3142), 1, - sym_comment, - STATE(4618), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6500), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 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, - [105350] = 5, + [106514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3143), 1, + STATE(3162), 1, sym_comment, - ACTIONS(5754), 13, + ACTIONS(5757), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297543,7 +298568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5756), 28, + ACTIONS(5759), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297572,100 +298597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105405] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5272), 1, - anon_sym_of, - ACTIONS(6232), 1, - anon_sym_AMP_AMP, - ACTIONS(6234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, - anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, - anon_sym_PERCENT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3144), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6256), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6258), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105518] = 7, + [106569] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3145), 1, + STATE(3163), 1, sym_comment, - ACTIONS(6502), 2, + ACTIONS(6514), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6504), 3, + ACTIONS(6516), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297679,7 +298625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -297703,39 +298649,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105577] = 7, + [106628] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3146), 1, + ACTIONS(5363), 1, + anon_sym_extends, + STATE(3164), 1, sym_comment, - ACTIONS(6502), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6504), 3, - anon_sym_COMMA, + ACTIONS(5556), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5553), 3, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4137), 13, + anon_sym_LBRACK, + ACTIONS(5549), 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(4141), 23, + ACTIONS(5551), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -297755,39 +298702,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105636] = 7, + [106689] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3147), 1, - sym_comment, - ACTIONS(6502), 2, + ACTIONS(4155), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6504), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4268), 1, anon_sym_COLON, - ACTIONS(4137), 13, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3165), 1, + sym_comment, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6518), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4135), 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(4141), 23, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -297807,14 +298758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105695] = 5, + [106756] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3148), 1, + STATE(3166), 1, sym_comment, - ACTIONS(5747), 13, + ACTIONS(6514), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6516), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297828,15 +298786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -297857,19 +298810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105750] = 7, + [106815] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6506), 1, - sym__automatic_semicolon, - STATE(3149), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2343), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2199), 13, + ACTIONS(6271), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297883,12 +298835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2203), 25, + ACTIONS(5321), 25, 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, @@ -297909,730 +298861,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105809] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6011), 1, - anon_sym_STAR, - ACTIONS(6013), 1, - anon_sym_async, - STATE(3150), 1, - sym_comment, - STATE(3814), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6017), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [105884] = 34, + [106872] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5264), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, - anon_sym_AMP, - ACTIONS(6300), 1, - anon_sym_CARET, - ACTIONS(6302), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3151), 1, + STATE(3168), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105997] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3152), 1, - sym_comment, - ACTIONS(5740), 13, - anon_sym_STAR, + ACTIONS(4955), 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(5742), 28, - sym__automatic_semicolon, + ACTIONS(4953), 10, sym__ternary_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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [106052] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5139), 1, - anon_sym_RBRACE, - STATE(3153), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106119] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5139), 1, - anon_sym_RBRACE, - STATE(3154), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106186] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RBRACE, - STATE(3155), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106253] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - STATE(3156), 1, - sym_comment, - STATE(4822), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6510), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 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, - [106326] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5317), 1, - anon_sym_RBRACE, - STATE(3157), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106393] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5317), 1, - anon_sym_RBRACE, - STATE(3158), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106460] = 34, + [106963] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(4985), 1, - anon_sym_RBRACK, - ACTIONS(6290), 1, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3159), 1, + STATE(3169), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6314), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106573] = 5, + ACTIONS(4953), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [107068] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3160), 1, - sym_comment, - ACTIONS(5738), 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(4976), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5140), 1, + anon_sym_of, + ACTIONS(6222), 1, anon_sym_AMP_AMP, + ACTIONS(6224), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6226), 1, + anon_sym_GT_GT, + ACTIONS(6230), 1, + anon_sym_AMP, + ACTIONS(6232), 1, anon_sym_CARET, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_PERCENT, + ACTIONS(6240), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6242), 1, + anon_sym_LT, + ACTIONS(6250), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6252), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3170), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106628] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_COLON, - ACTIONS(5190), 1, - anon_sym_extends, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3161), 1, - sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6512), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4137), 11, + ACTIONS(6218), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6220), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6228), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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(6248), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6244), 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, - [106695] = 6, + [107181] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3162), 1, + STATE(3171), 1, sym_comment, - ACTIONS(2351), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2151), 13, + ACTIONS(6514), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6516), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298646,13 +299111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2153), 26, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -298673,310 +299135,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106752] = 34, + [107240] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(5244), 1, + ACTIONS(5084), 1, anon_sym_RBRACK, - ACTIONS(6290), 1, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6292), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6294), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6298), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6300), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6302), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6308), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6310), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6320), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3163), 1, + STATE(3172), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6296), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6314), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6316), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106865] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5336), 1, - anon_sym_RBRACE, - STATE(3164), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106932] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5136), 1, - anon_sym_COMMA, - ACTIONS(5336), 1, - anon_sym_RBRACE, - STATE(3165), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106999] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5326), 1, - anon_sym_LBRACK, - ACTIONS(5904), 1, - anon_sym_COLON, - STATE(3166), 1, - sym_comment, - ACTIONS(5329), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5003), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5320), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6375), 2, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_DASH, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107353] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(4929), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, anon_sym_PERCENT, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3173), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [107064] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3167), 1, - sym_comment, - ACTIONS(5723), 13, + ACTIONS(6355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5725), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6387), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107466] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5119), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, + anon_sym_AMP, + ACTIONS(6371), 1, anon_sym_CARET, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6377), 1, anon_sym_PERCENT, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3174), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 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, - [107119] = 5, + [107579] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3168), 1, + STATE(3175), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(6522), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6524), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298990,15 +299400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5719), 28, - sym__automatic_semicolon, + ACTIONS(4139), 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, @@ -299019,74 +299424,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107174] = 10, + [107638] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, - anon_sym_COLON, - STATE(3169), 1, - sym_comment, - ACTIONS(5346), 2, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(5124), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, + anon_sym_AMP_AMP, + ACTIONS(6363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6365), 1, + anon_sym_GT_GT, + ACTIONS(6369), 1, anon_sym_AMP, + ACTIONS(6371), 1, + anon_sym_CARET, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(3570), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2069), 11, + ACTIONS(6377), 1, + anon_sym_PERCENT, + ACTIONS(6379), 1, + anon_sym_STAR_STAR, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6389), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6391), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3176), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 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(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6383), 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, - [107239] = 7, + [107751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6516), 1, - sym__automatic_semicolon, - STATE(3170), 1, + STATE(3177), 1, sym_comment, - ACTIONS(2365), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2085), 13, + ACTIONS(5644), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299100,11 +299524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2089), 25, + ACTIONS(5646), 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, @@ -299126,19 +299553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107298] = 7, + [107806] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6518), 1, - sym__automatic_semicolon, - STATE(3171), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2357), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2257), 13, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299152,11 +299574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2261), 25, + ACTIONS(2219), 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, @@ -299178,22 +299603,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107357] = 9, + [107861] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6520), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(6523), 1, - anon_sym_COLON, - ACTIONS(6525), 1, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6132), 1, + anon_sym_AMP_AMP, + ACTIONS(6134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6136), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_AMP, + ACTIONS(6142), 1, + anon_sym_CARET, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6148), 1, + anon_sym_PERCENT, + ACTIONS(6150), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 1, anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK, - STATE(3172), 1, + ACTIONS(6160), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6162), 1, + sym__ternary_qmark, + ACTIONS(6526), 1, + anon_sym_COLON, + STATE(2222), 1, + sym_type_arguments, + STATE(3179), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6138), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6156), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6158), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6154), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107974] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3180), 1, sym_comment, - ACTIONS(5576), 12, + ACTIONS(2283), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2161), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299204,14 +299706,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(5578), 25, - sym__automatic_semicolon, + ACTIONS(2165), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -299232,180 +299733,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107420] = 34, + [108031] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(4968), 1, - anon_sym_of, - ACTIONS(6232), 1, + ACTIONS(5130), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, + ACTIONS(6363), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, + ACTIONS(6365), 1, anon_sym_GT_GT, - ACTIONS(6240), 1, + ACTIONS(6369), 1, anon_sym_AMP, - ACTIONS(6242), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6244), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6248), 1, + ACTIONS(6377), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, + ACTIONS(6379), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, + ACTIONS(6381), 1, anon_sym_LT, - ACTIONS(6260), 1, + ACTIONS(6389), 1, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, + ACTIONS(6391), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3173), 1, + STATE(3181), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + ACTIONS(6355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6230), 2, + ACTIONS(6357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, + ACTIONS(6367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6246), 2, + ACTIONS(6375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(6387), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6254), 3, + ACTIONS(6383), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107533] = 34, + [108144] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(6528), 1, + sym__automatic_semicolon, + STATE(3182), 1, + sym_comment, + ACTIONS(2375), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2099), 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(2103), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4801), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5170), 1, - anon_sym_of, - ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6236), 1, - anon_sym_GT_GT, - ACTIONS(6240), 1, - anon_sym_AMP, - ACTIONS(6242), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6252), 1, - anon_sym_LT, - ACTIONS(6260), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6262), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3174), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6228), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108203] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6530), 1, + sym__automatic_semicolon, + STATE(3183), 1, + sym_comment, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2091), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6230), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6238), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6246), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6256), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6258), 2, + ACTIONS(2095), 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6254), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [107646] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108262] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - ACTIONS(5809), 1, - anon_sym_of, - ACTIONS(6530), 1, - anon_sym_in, - STATE(3175), 1, + STATE(3184), 1, sym_comment, - ACTIONS(5630), 12, + ACTIONS(5728), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -299416,12 +299937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 26, + ACTIONS(5730), 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, @@ -299443,40 +299966,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107707] = 8, + [108317] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5807), 1, - anon_sym_of, - ACTIONS(6533), 1, - anon_sym_in, - STATE(3176), 1, + ACTIONS(4264), 1, + anon_sym_EQ, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3185), 1, sym_comment, - ACTIONS(2069), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4135), 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(2075), 26, + ACTIONS(4139), 24, 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, @@ -299496,126 +300020,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107768] = 18, + [108380] = 24, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, + ACTIONS(225), 1, + anon_sym_STAR, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(2123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(5987), 1, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6536), 1, anon_sym_RBRACE, - STATE(3177), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(6538), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6540), 1, anon_sym_static, + ACTIONS(6542), 1, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(6548), 1, anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107849] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(5987), 1, - anon_sym_RBRACE, - STATE(3178), 1, + STATE(3186), 1, sym_comment, - STATE(4808), 1, + STATE(3471), 1, + sym_accessibility_modifier, + STATE(3523), 1, + sym_override_modifier, + STATE(4569), 1, sym__property_name, - STATE(5868), 1, + STATE(5753), 1, aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6544), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(6546), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5755), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6532), 14, 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, @@ -299623,37 +300089,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107932] = 15, + [108473] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3187), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4955), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 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, + [108563] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, - anon_sym_STAR, - ACTIONS(6013), 1, - anon_sym_async, - STATE(3179), 1, + STATE(3188), 1, sym_comment, - STATE(3798), 1, + STATE(4841), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6017), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -299662,15 +300188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 20, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -299683,30 +300212,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108007] = 9, + [108631] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5188), 1, - anon_sym_QMARK, - STATE(3180), 1, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3189), 1, sym_comment, - ACTIONS(5190), 2, - anon_sym_RPAREN, + ACTIONS(5051), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(5782), 2, + ACTIONS(5538), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5779), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4137), 11, + ACTIONS(4135), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -299714,10 +300239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 22, + ACTIONS(4139), 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, @@ -299737,19 +300264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108070] = 7, + [108691] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6536), 1, - sym__automatic_semicolon, - STATE(3181), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + STATE(3190), 1, sym_comment, - ACTIONS(2381), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2207), 13, + ACTIONS(4375), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299763,12 +300291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2211), 25, + ACTIONS(4139), 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, @@ -299789,39 +300315,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108129] = 7, + [108749] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6538), 1, - sym__automatic_semicolon, - STATE(3182), 1, + ACTIONS(3568), 1, + anon_sym_extends, + STATE(3191), 1, sym_comment, - ACTIONS(2373), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2169), 13, + ACTIONS(5203), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5206), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2059), 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(2173), 25, + ACTIONS(2065), 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, anon_sym_AMP_AMP, @@ -299841,28 +300368,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108188] = 9, + [108811] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, + ACTIONS(5226), 1, anon_sym_EQ, - ACTIONS(5326), 1, - anon_sym_LBRACK, - STATE(3183), 1, - sym_comment, - ACTIONS(5003), 2, - anon_sym_COMMA, + ACTIONS(5236), 1, anon_sym_extends, - ACTIONS(5329), 3, - anon_sym_GT, + STATE(3192), 1, + sym_comment, + ACTIONS(5230), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5233), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5320), 10, + ACTIONS(5224), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -299870,12 +300397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 24, - sym__automatic_semicolon, + ACTIONS(5228), 23, 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, @@ -299895,67 +300421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108251] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6540), 1, - anon_sym_STAR, - ACTIONS(6542), 1, - anon_sym_async, - STATE(3184), 1, - sym_comment, - STATE(3799), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6544), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 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, - [108326] = 14, + [108873] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -299964,35 +300430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6540), 1, - anon_sym_STAR, - STATE(3185), 1, + STATE(3193), 1, sym_comment, - STATE(4651), 1, + STATE(4725), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6546), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300002,6 +300463,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, @@ -300014,40 +300477,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108399] = 9, + [108941] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3570), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(5051), 1, anon_sym_extends, - STATE(3186), 1, + STATE(3194), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5535), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5346), 2, + ACTIONS(5538), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2069), 11, + ACTIONS(4135), 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(4139), 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, + [109003] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4298), 1, + anon_sym_EQ, + STATE(3195), 1, + sym_comment, + ACTIONS(4135), 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(2075), 23, + ACTIONS(4139), 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, @@ -300067,379 +300579,689 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108461] = 33, + anon_sym_implements, + [109059] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3196), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109169] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3197), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109279] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3198), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109389] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3187), 1, + STATE(3199), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108571] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - STATE(3188), 1, - sym_comment, - STATE(4122), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(4376), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [108639] = 33, + [109499] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3189), 1, + STATE(3200), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108749] = 9, + [109609] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(3190), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_RBRACE, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5782), 2, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3201), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4137), 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 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, + [109695] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6586), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3202), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 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(4141), 23, + ACTIONS(4953), 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, - [108811] = 33, + [109771] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, + anon_sym_QMARK_DOT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6586), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3203), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 10, anon_sym_BANG, - ACTIONS(4899), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4953), 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, + [109851] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(5410), 1, + anon_sym_BANG, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3191), 1, + STATE(3204), 1, sym_comment, - STATE(6178), 1, + STATE(3326), 1, + sym_type_arguments, + STATE(5704), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108921] = 8, + [109961] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5523), 1, - anon_sym_LBRACK, - STATE(3192), 1, + ACTIONS(6210), 1, + sym_regex_flags, + STATE(3205), 1, sym_comment, - ACTIONS(5043), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5526), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5519), 10, + ACTIONS(6206), 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(5521), 24, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6208), 22, 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, @@ -300454,97 +301276,119 @@ 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, - [108981] = 9, + [110017] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, - anon_sym_extends, - ACTIONS(5322), 1, - anon_sym_EQ, - STATE(3193), 1, - sym_comment, - ACTIONS(5326), 2, - anon_sym_RBRACE, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5329), 2, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, anon_sym_PIPE, - ACTIONS(5320), 11, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, + sym_type_arguments, + STATE(3206), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 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(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 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, - [109043] = 12, + [110127] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3194), 1, + STATE(3207), 1, sym_comment, - STATE(4068), 1, + STATE(4677), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(4376), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300568,26 +301412,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109111] = 8, + [110195] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5773), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(3195), 1, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_BANG, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + STATE(2222), 1, + sym_type_arguments, + STATE(3208), 1, sym_comment, - ACTIONS(4843), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5776), 3, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [110295] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3209), 1, + sym_comment, + ACTIONS(4965), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4137), 10, + anon_sym_QMARK, + ACTIONS(4967), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4135), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -300595,12 +301512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 24, - sym__automatic_semicolon, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -300620,7 +301535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109171] = 12, + [110353] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300629,29 +301544,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3196), 1, + STATE(3210), 1, sym_comment, - STATE(4696), 1, + STATE(4629), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -300676,94 +301591,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109239] = 12, + [110421] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3197), 1, - sym_comment, - STATE(4701), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1020), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109307] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3211), 1, sym_comment, - STATE(4692), 1, + STATE(4640), 1, sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -300788,7 +301651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109375] = 12, + [110497] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300797,21 +301660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3199), 1, + STATE(3212), 1, sym_comment, - STATE(4726), 1, + STATE(4694), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -300844,42 +301707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109443] = 16, + [110565] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5987), 1, - anon_sym_RBRACE, - STATE(3200), 1, + STATE(3213), 1, sym_comment, - STATE(4808), 1, + STATE(4833), 1, sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -300904,39 +301763,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109519] = 16, + [110633] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3201), 1, + STATE(3214), 1, sym_comment, - STATE(4808), 1, + STATE(4801), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 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, @@ -300964,7 +301819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109595] = 12, + [110701] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300973,29 +301828,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3202), 1, + STATE(3215), 1, sym_comment, - STATE(4720), 1, + STATE(4708), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -301020,249 +301875,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109663] = 33, + [110769] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(5535), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, + STATE(3216), 1, + sym_comment, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3203), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(4135), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109773] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3204), 1, - sym_comment, - STATE(4779), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109841] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4139), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, + anon_sym_of, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, anon_sym_AMP_AMP, - ACTIONS(6554), 1, anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3205), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [109951] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110831] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - ACTIONS(5809), 1, - anon_sym_COLON, - STATE(3206), 1, + ACTIONS(5553), 1, + anon_sym_LBRACK, + STATE(3217), 1, sym_comment, - ACTIONS(5657), 2, + ACTIONS(5363), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5630), 13, + anon_sym_extends, + ACTIONS(5556), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5549), 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(5634), 23, + ACTIONS(5551), 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, @@ -301282,268 +301980,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110011] = 18, + [110891] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6584), 1, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6586), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3207), 1, + STATE(3218), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2508), 2, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4937), 11, - anon_sym_STAR, + ACTIONS(4955), 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(4939), 14, + ACTIONS(4953), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110091] = 19, + anon_sym_satisfies, + [110973] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(3208), 1, + STATE(3219), 1, sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, + STATE(4209), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 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(2900), 18, + ACTIONS(4378), 23, 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, - [110173] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6590), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3209), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(5053), 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(5055), 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, - [110247] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3210), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [110357] = 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111041] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -301552,21 +302108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3211), 1, + STATE(3220), 1, sym_comment, - STATE(4810), 1, + STATE(4791), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -301599,33 +302155,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110425] = 14, + [111109] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6593), 1, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3212), 1, + STATE(3221), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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, + [111203] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6572), 1, + anon_sym_AMP, + STATE(2222), 1, + sym_type_arguments, + STATE(3222), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - STATE(2508), 2, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4978), 12, + ACTIONS(6566), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 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, + [111299] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3223), 1, + sym_comment, + ACTIONS(4983), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301636,11 +302315,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(4980), 18, + ACTIONS(5321), 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, @@ -301656,181 +302342,183 @@ 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, - [110497] = 33, + [111355] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6570), 1, + ACTIONS(6562), 1, anon_sym_STAR_STAR, - ACTIONS(6572), 1, + ACTIONS(6564), 1, anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + STATE(2222), 1, sym_type_arguments, - STATE(3213), 1, + STATE(3224), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(4955), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110607] = 21, + ACTIONS(4953), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [111453] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6556), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, anon_sym_GT_GT, - ACTIONS(6568), 1, + ACTIONS(6560), 1, anon_sym_PERCENT, - ACTIONS(6570), 1, + ACTIONS(6562), 1, anon_sym_STAR_STAR, - ACTIONS(6572), 1, + ACTIONS(6564), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3214), 1, + STATE(3225), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6558), 2, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [110693] = 16, + [111563] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6596), 1, + ACTIONS(6589), 1, anon_sym_LT, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3215), 1, + STATE(3226), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(4946), 12, + ACTIONS(5155), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301843,7 +302531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4944), 15, + ACTIONS(5157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -301852,195 +302540,128 @@ 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_satisfies, - [110769] = 7, + [111635] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4139), 1, - anon_sym_EQ, - STATE(3216), 1, - sym_comment, - ACTIONS(4366), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4137), 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(4141), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4793), 1, anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, + ACTIONS(4817), 1, anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 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(4955), 1, + anon_sym_BANG, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, anon_sym_PERCENT, + ACTIONS(6562), 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, - [110827] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3217), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(6564), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6572), 1, anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, anon_sym_PIPE, - ACTIONS(4137), 10, + STATE(2222), 1, + sym_type_arguments, + STATE(3227), 1, + sym_comment, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6552), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 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, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 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(4953), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [110889] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2081), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - anon_sym_async, - ACTIONS(6605), 1, - anon_sym_static, - ACTIONS(6607), 1, - anon_sym_readonly, - ACTIONS(6613), 1, - anon_sym_override, - STATE(3218), 1, - sym_comment, - STATE(3468), 1, - sym_accessibility_modifier, - STATE(3530), 1, - sym_override_modifier, - STATE(4504), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6601), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6609), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6611), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6775), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6599), 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, - [110977] = 6, + [111737] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4298), 1, - anon_sym_EQ, - STATE(3219), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6586), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(3228), 1, sym_comment, - ACTIONS(4137), 13, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(4955), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -302049,421 +302670,222 @@ 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(4141), 26, + ACTIONS(4953), 13, 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, - [111033] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [111819] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(3220), 1, - sym_comment, - STATE(4816), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_PERCENT, + ACTIONS(6562), 1, + anon_sym_STAR_STAR, + ACTIONS(6564), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111101] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6212), 1, - sym_regex_flags, - STATE(3221), 1, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + STATE(2222), 1, + sym_type_arguments, + STATE(3229), 1, sym_comment, - ACTIONS(6208), 17, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6550), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6556), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6210), 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, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4953), 4, + sym__ternary_qmark, + anon_sym_as, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [111157] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1041), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3222), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111233] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3223), 1, - sym_comment, - STATE(4801), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111301] = 29, + anon_sym_satisfies, + [111923] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6556), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3224), 1, + STATE(3230), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [111403] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [112033] = 18, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_LBRACK, - STATE(3225), 1, - sym_comment, - STATE(4822), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6592), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111471] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3226), 1, + STATE(2222), 1, + sym_type_arguments, + STATE(3231), 1, sym_comment, - ACTIONS(5029), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5031), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4137), 11, + STATE(6286), 1, + sym_optional_chain, + ACTIONS(4921), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5090), 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(4141), 22, + ACTIONS(5092), 14, 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, @@ -302477,238 +302899,178 @@ 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, - [111529] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3227), 1, - sym_comment, - STATE(4799), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111597] = 33, + [112113] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, + ACTIONS(6595), 1, anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3228), 1, + STATE(3232), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(5065), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(5067), 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, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [111707] = 19, + anon_sym_satisfies, + [112187] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(6568), 1, + ACTIONS(4923), 1, + anon_sym_satisfies, + ACTIONS(6554), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, anon_sym_PERCENT, - ACTIONS(6570), 1, + ACTIONS(6562), 1, anon_sym_STAR_STAR, - ACTIONS(6596), 1, + ACTIONS(6564), 1, anon_sym_LT, - STATE(2220), 1, + ACTIONS(6568), 1, + anon_sym_AMP_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6572), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3229), 1, + STATE(3233), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6552), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6558), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6578), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2407), 2, + sym_template_string, + sym_arguments, + ACTIONS(6566), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [111789] = 12, + [112297] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3230), 1, + ACTIONS(6040), 1, + anon_sym_RBRACE, + STATE(3234), 1, sym_comment, - STATE(4618), 1, + STATE(4640), 1, sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -302733,79 +303095,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111857] = 28, + [112373] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(5637), 1, + anon_sym_EQ, + ACTIONS(5862), 1, + anon_sym_COLON, + STATE(3235), 1, + sym_comment, + ACTIONS(5641), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5635), 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(5639), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, - anon_sym_BANG, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3231), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 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(6548), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112433] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4312), 1, + anon_sym_EQ, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3236), 1, + sym_comment, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 6, + ACTIONS(4139), 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, - [111957] = 12, + [112495] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -302814,21 +303209,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3232), 1, + STATE(3237), 1, sym_comment, - STATE(4641), 1, + STATE(4843), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -302861,35 +303256,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112025] = 12, + [112563] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3233), 1, + ACTIONS(6084), 1, + anon_sym_RBRACE, + STATE(3238), 1, sym_comment, - STATE(4731), 1, + STATE(4640), 1, sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -302917,39 +303316,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112093] = 16, + [112639] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3234), 1, + STATE(3239), 1, sym_comment, - STATE(4808), 1, + STATE(4617), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 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, @@ -302977,111 +303372,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112169] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3235), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 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, - [112263] = 16, + [112707] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(3236), 1, + STATE(3240), 1, sym_comment, - STATE(4808), 1, + STATE(4672), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -303106,60 +303428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112339] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3237), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 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(4141), 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, - [112401] = 12, + [112775] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -303168,21 +303437,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3238), 1, + STATE(3241), 1, sym_comment, - STATE(4662), 1, + STATE(4654), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -303215,77 +303484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112469] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3239), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 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, - [112565] = 12, + [112843] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -303294,21 +303493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3240), 1, + STATE(3242), 1, sym_comment, - STATE(4651), 1, + STATE(4824), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -303341,232 +303540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112633] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3241), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4946), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4944), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [112731] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3242), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112841] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3243), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112951] = 12, + [112911] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -303575,46 +303549,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3244), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3243), 1, sym_comment, - STATE(4784), 1, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6598), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2900), 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, @@ -303622,167 +303603,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113019] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3245), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 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(4141), 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, - [113079] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, - ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6560), 1, - anon_sym_AMP, - ACTIONS(6562), 1, - anon_sym_CARET, - ACTIONS(6564), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6582), 1, - sym__ternary_qmark, - STATE(2220), 1, - sym_type_arguments, - STATE(3246), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6576), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6578), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113189] = 16, + [112993] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6195), 1, - anon_sym_RBRACE, - STATE(3247), 1, + STATE(3244), 1, sym_comment, - STATE(4808), 1, + STATE(4640), 1, sym__property_name, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -303811,196 +303663,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113265] = 33, + [113069] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3248), 1, + STATE(3245), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113375] = 12, + [113179] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(225), 1, + anon_sym_STAR, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(2123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3249), 1, - sym_comment, - STATE(4821), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(6605), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6607), 1, anon_sym_static, + ACTIONS(6609), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113443] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6362), 1, - anon_sym_COMMA, ACTIONS(6615), 1, - anon_sym_RBRACE, - STATE(3250), 1, + anon_sym_override, + STATE(3246), 1, sym_comment, - STATE(3531), 1, + STATE(3471), 1, + sym_accessibility_modifier, + STATE(3523), 1, sym_override_modifier, - STATE(4808), 1, + STATE(4569), 1, sym__property_name, - STATE(5670), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6603), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6611), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(6613), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6729), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6601), 14, 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, @@ -304008,7 +303806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113527] = 12, + [113267] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -304017,21 +303815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3251), 1, + STATE(3247), 1, sym_comment, - STATE(4843), 1, + STATE(4618), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -304064,7 +303862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113595] = 12, + [113335] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -304073,29 +303871,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3252), 1, + STATE(3248), 1, sym_comment, - STATE(4715), 1, + STATE(4838), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -304120,315 +303918,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113663] = 33, + [113403] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3253), 1, + STATE(3249), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113773] = 33, + [113513] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3254), 1, + STATE(3250), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113883] = 33, + [113623] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(5392), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5398), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(3255), 1, - sym_comment, - STATE(3314), 1, + STATE(2222), 1, sym_type_arguments, - STATE(5804), 1, + STATE(3251), 1, + sym_comment, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3075), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113993] = 33, + [113733] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4889), 1, + ACTIONS(4881), 1, anon_sym_as, - ACTIONS(4893), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4923), 1, anon_sym_satisfies, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - ACTIONS(6580), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, sym__ternary_qmark, - STATE(2220), 1, + STATE(2222), 1, sym_type_arguments, - STATE(3256), 1, + STATE(3252), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114103] = 12, + [113843] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3253), 1, + sym_comment, + STATE(4172), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 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(4378), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113911] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -304437,29 +304291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3257), 1, + STATE(3254), 1, sym_comment, - STATE(4820), 1, + STATE(4660), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 8, - anon_sym_EQ, + ACTIONS(1041), 8, 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(2900), 23, anon_sym_export, anon_sym_type, @@ -304484,283 +304338,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114171] = 30, + [113979] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(4815), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4881), 1, + anon_sym_as, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(6552), 1, - anon_sym_AMP_AMP, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4923), 1, + anon_sym_satisfies, ACTIONS(6554), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6556), 1, anon_sym_GT_GT, ACTIONS(6560), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(6562), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(6564), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6568), 1, - anon_sym_PERCENT, + anon_sym_AMP_AMP, ACTIONS(6570), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, + anon_sym_AMP, + ACTIONS(6574), 1, + anon_sym_CARET, + ACTIONS(6576), 1, + anon_sym_PIPE, + ACTIONS(6582), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6584), 1, + sym__ternary_qmark, + STATE(2222), 1, sym_type_arguments, - STATE(3258), 1, + STATE(3255), 1, sym_comment, - STATE(6178), 1, + STATE(6286), 1, sym_optional_chain, - ACTIONS(4931), 2, + ACTIONS(4921), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6548), 2, + ACTIONS(6550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6550), 2, + ACTIONS(6552), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6558), 2, + ACTIONS(6556), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6566), 2, + ACTIONS(6558), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6576), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6578), 2, + ACTIONS(6580), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2508), 2, + STATE(2407), 2, sym_template_string, sym_arguments, - ACTIONS(6574), 3, + ACTIONS(6566), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4944), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [114275] = 23, + [114089] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6556), 1, - anon_sym_GT_GT, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6572), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3259), 1, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(3256), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6550), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6558), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6566), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(6574), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4946), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4944), 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, - [114365] = 19, + STATE(4640), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114165] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4889), 1, - anon_sym_as, - ACTIONS(4893), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(4933), 1, - anon_sym_satisfies, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6596), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3260), 1, + STATE(3257), 1, sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [114447] = 6, + STATE(4640), 1, + sym__property_name, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114241] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3261), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3258), 1, sym_comment, - ACTIONS(5178), 2, + STATE(4649), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5172), 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(5174), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, 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, - [114503] = 9, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114309] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_QMARK, - ACTIONS(4843), 1, - anon_sym_extends, - STATE(3262), 1, + ACTIONS(5480), 1, + anon_sym_LBRACK, + STATE(3259), 1, sym_comment, - ACTIONS(5776), 2, + ACTIONS(4853), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5483), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5773), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4137), 11, + ACTIONS(4135), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -304768,10 +304618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 22, + ACTIONS(4139), 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, @@ -304791,42 +304643,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114565] = 16, + [114369] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6113), 1, - anon_sym_RBRACE, - STATE(3263), 1, + STATE(3260), 1, sym_comment, - STATE(4808), 1, + STATE(4646), 1, sym__property_name, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -304851,102 +304699,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114641] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, - anon_sym_LBRACK, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6568), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_STAR_STAR, - ACTIONS(6596), 1, - anon_sym_LT, - STATE(2220), 1, - sym_type_arguments, - STATE(3264), 1, - sym_comment, - STATE(6178), 1, - sym_optional_chain, - ACTIONS(4931), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6548), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2508), 2, - sym_template_string, - sym_arguments, - ACTIONS(4946), 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(4944), 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, - [114721] = 6, + [114437] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - STATE(3265), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3261), 1, sym_comment, - ACTIONS(987), 10, + STATE(4842), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, 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(2405), 29, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -304963,25 +304755,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114777] = 6, + [114505] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - STATE(3266), 1, + STATE(3262), 1, sym_comment, - ACTIONS(987), 8, + ACTIONS(1041), 10, 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, - ACTIONS(2403), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -305011,8 +304805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [114832] = 16, + [114561] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -305021,19 +304814,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6362), 1, + ACTIONS(6534), 1, anon_sym_COMMA, - ACTIONS(6615), 1, + ACTIONS(6617), 1, anon_sym_RBRACE, - STATE(3267), 1, + STATE(3263), 1, sym_comment, - STATE(4808), 1, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, sym__property_name, - STATE(5670), 1, + STATE(5660), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, @@ -305041,29 +304842,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2900), 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, @@ -305071,41 +304869,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114907] = 8, + [114645] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4851), 1, + anon_sym_QMARK, + ACTIONS(4853), 1, + anon_sym_extends, + STATE(3264), 1, + sym_comment, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5480), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4135), 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(4139), 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, + [114707] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(3268), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3265), 1, sym_comment, - ACTIONS(5900), 2, + STATE(4774), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 8, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2405), 29, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -305122,41 +304978,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114966] = 8, + [114775] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(3269), 1, - sym_comment, - ACTIONS(5900), 2, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6212), 1, anon_sym_RBRACE, - ACTIONS(987), 6, + STATE(3266), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -305173,87 +305038,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115025] = 6, + [114851] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3270), 1, + ACTIONS(5553), 1, + anon_sym_LBRACK, + STATE(3267), 1, sym_comment, - ACTIONS(2211), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6617), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5556), 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(6620), 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, - [115080] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5744), 1, - anon_sym_RBRACK, - ACTIONS(5904), 1, + ACTIONS(5363), 3, anon_sym_COMMA, - STATE(3271), 1, - sym_comment, - ACTIONS(5320), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5549), 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(5324), 23, + ACTIONS(5551), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -305273,69 +305089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115139] = 6, + [114910] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(3272), 1, + STATE(3268), 1, sym_comment, - ACTIONS(4137), 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(4141), 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, - [115194] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - ACTIONS(5657), 1, - anon_sym_RBRACK, - ACTIONS(5809), 1, + ACTIONS(2203), 3, anon_sym_COMMA, - STATE(3273), 1, - sym_comment, - ACTIONS(5630), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305349,7 +305114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 23, + ACTIONS(6622), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -305373,59 +305138,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115253] = 17, + [114965] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5440), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RBRACE, - STATE(3274), 1, + ACTIONS(6625), 1, + anon_sym_readonly, + STATE(3269), 1, sym_comment, - STATE(4808), 1, + STATE(3590), 1, + sym_override_modifier, + STATE(4126), 1, sym__property_name, - STATE(5670), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(4378), 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_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -305433,108 +305196,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115330] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(5807), 1, - anon_sym_COMMA, - STATE(3275), 1, - sym_comment, - ACTIONS(2069), 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(2075), 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, - [115389] = 15, + [115038] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_readonly, - STATE(3276), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3270), 1, sym_comment, - STATE(3574), 1, - sym_override_modifier, - STATE(4143), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5660), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 21, + ACTIONS(2900), 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_get, - anon_sym_set, + 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, @@ -305542,88 +305256,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115462] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3277), 1, - sym_comment, - ACTIONS(2173), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6625), 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(6628), 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, - [115517] = 13, + [115115] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6631), 1, + ACTIONS(6627), 1, anon_sym_abstract, - STATE(3278), 1, + STATE(3271), 1, sym_comment, - STATE(4164), 1, + STATE(4124), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -305647,67 +305312,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115586] = 25, + [115184] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_AT, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6633), 1, + ACTIONS(6038), 1, anon_sym_STAR, - ACTIONS(6635), 1, - anon_sym_async, - ACTIONS(6637), 1, - anon_sym_static, - ACTIONS(6639), 1, - anon_sym_readonly, - ACTIONS(6643), 1, - anon_sym_declare, - ACTIONS(6645), 1, - anon_sym_abstract, - STATE(3279), 1, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3272), 1, sym_comment, - STATE(3400), 1, - sym_method_definition, - STATE(3436), 1, - sym_accessibility_modifier, - STATE(3496), 1, - aux_sym_export_statement_repeat1, - STATE(3521), 1, - sym_override_modifier, - STATE(3557), 1, - sym_decorator, - STATE(3807), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(5660), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6641), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4605), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4376), 13, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, @@ -305715,18 +305371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115679] = 6, + [115259] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3280), 1, + STATE(3273), 1, sym_comment, - ACTIONS(5574), 3, + ACTIONS(5444), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6647), 13, + ACTIONS(6629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305740,7 +305396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6650), 23, + ACTIONS(6632), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -305764,18 +305420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115734] = 6, + [115314] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3281), 1, + STATE(3274), 1, sym_comment, - ACTIONS(5725), 3, + ACTIONS(5440), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6653), 13, + ACTIONS(6635), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305789,7 +305445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6656), 23, + ACTIONS(6638), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -305813,36 +305469,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115789] = 6, + [115369] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6641), 1, + anon_sym_abstract, + STATE(3275), 1, + sym_comment, + STATE(4172), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4378), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115438] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3282), 1, + ACTIONS(4853), 1, + anon_sym_extends, + STATE(3276), 1, sym_comment, - ACTIONS(2195), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6659), 13, + ACTIONS(5480), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5483), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(6662), 23, + ACTIONS(4139), 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, @@ -305862,18 +305576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115844] = 6, + [115497] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3283), 1, - sym_comment, - ACTIONS(5566), 3, + ACTIONS(4241), 1, + anon_sym_RBRACK, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6665), 13, + ACTIONS(4368), 1, + anon_sym_EQ, + STATE(3277), 1, + sym_comment, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305887,7 +305603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6668), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -305911,57 +305627,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115899] = 15, + [115556] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6671), 1, - anon_sym_readonly, - STATE(3284), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3278), 1, sym_comment, - STATE(3561), 1, - sym_override_modifier, - STATE(4210), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 21, + ACTIONS(2900), 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_get, - anon_sym_set, + 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, @@ -305969,16 +305686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115972] = 6, + [115631] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - STATE(3285), 1, + STATE(3279), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4983), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5319), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305992,13 +305710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 25, - sym__automatic_semicolon, + ACTIONS(5321), 24, 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_AMP_AMP, @@ -306018,16 +305735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116027] = 6, + [115686] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6224), 1, + ACTIONS(5365), 1, + anon_sym_RBRACK, + ACTIONS(5880), 1, anon_sym_COMMA, - STATE(3286), 1, + STATE(3280), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(2059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306041,12 +305762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 25, - sym__automatic_semicolon, + ACTIONS(2065), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -306067,38 +305786,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116082] = 8, + [115745] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4843), 1, - anon_sym_extends, - STATE(3287), 1, + STATE(3281), 1, sym_comment, - ACTIONS(5773), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5776), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 11, + ACTIONS(2173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6643), 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(4141), 23, + ACTIONS(6646), 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, @@ -306118,18 +305835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116141] = 6, + [115800] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3288), 1, - sym_comment, - ACTIONS(5610), 3, + ACTIONS(5637), 1, + anon_sym_EQ, + ACTIONS(5641), 1, + anon_sym_RBRACK, + ACTIONS(5862), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6673), 13, + STATE(3282), 1, + sym_comment, + ACTIONS(5635), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306143,7 +305862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 23, + ACTIONS(5639), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -306167,43 +305886,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116196] = 15, + [115859] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3283), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [115932] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(6649), 1, anon_sym_readonly, - STATE(3289), 1, + STATE(3284), 1, sym_comment, - STATE(3582), 1, + STATE(3593), 1, sym_override_modifier, - STATE(4122), 1, + STATE(4303), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 21, + ACTIONS(4378), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306225,38 +306002,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116269] = 8, + [116005] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5779), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3290), 1, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3285), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5190), 3, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [116084] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4520), 1, + sym__automatic_semicolon, + STATE(3286), 1, + sym_comment, + ACTIONS(1041), 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(2397), 30, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [116139] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5684), 1, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4137), 11, + ACTIONS(5882), 1, + anon_sym_COMMA, + STATE(3287), 1, + sym_comment, + ACTIONS(5224), 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(4141), 22, + ACTIONS(5228), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306276,39 +306163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116328] = 13, + [116198] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6681), 1, + ACTIONS(6653), 1, anon_sym_abstract, - STATE(3291), 1, + STATE(3288), 1, sym_comment, - STATE(4202), 1, + STATE(4147), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306332,20 +306219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116397] = 8, + [116267] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_RBRACK, - ACTIONS(4287), 1, - anon_sym_COMMA, - ACTIONS(4369), 1, + ACTIONS(4289), 1, anon_sym_EQ, - STATE(3292), 1, + STATE(3289), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306359,10 +306242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 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, @@ -306383,56 +306268,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116456] = 18, + [116322] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(3293), 1, + ACTIONS(6655), 1, + anon_sym_readonly, + STATE(3290), 1, sym_comment, - STATE(3531), 1, + STATE(3587), 1, sym_override_modifier, - STATE(4808), 1, + STATE(4149), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(4378), 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, @@ -306444,39 +306326,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116535] = 13, + [116395] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6189), 1, + ACTIONS(6657), 1, anon_sym_abstract, - STATE(3294), 1, + STATE(3291), 1, sym_comment, - STATE(4122), 1, + STATE(4174), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306500,58 +306382,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116604] = 16, + [116464] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4544), 1, + anon_sym_AT, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6659), 1, anon_sym_STAR, - STATE(3295), 1, + ACTIONS(6661), 1, + anon_sym_async, + ACTIONS(6663), 1, + anon_sym_static, + ACTIONS(6665), 1, + anon_sym_readonly, + ACTIONS(6669), 1, + anon_sym_declare, + ACTIONS(6671), 1, + anon_sym_abstract, + STATE(3292), 1, sym_comment, - STATE(4808), 1, + STATE(3381), 1, + sym_method_definition, + STATE(3451), 1, + sym_accessibility_modifier, + STATE(3489), 1, + aux_sym_export_statement_repeat1, + STATE(3520), 1, + sym_override_modifier, + STATE(3548), 1, + sym_decorator, + STATE(3800), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6667), 2, anon_sym_get, anon_sym_set, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(4554), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4378), 13, 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, @@ -306559,57 +306450,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116679] = 15, + [116557] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3293), 1, + sym_comment, + ACTIONS(5538), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4135), 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(4139), 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, + [116616] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6685), 1, - anon_sym_readonly, - STATE(3296), 1, - sym_comment, - STATE(3585), 1, - sym_override_modifier, - STATE(4068), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(5009), 1, anon_sym_EQ, + STATE(3294), 1, + sym_comment, + ACTIONS(5874), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(1041), 6, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -306617,46 +306552,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116752] = 13, + [116675] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6687), 1, - anon_sym_abstract, - STATE(3297), 1, - sym_comment, - STATE(4068), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(5009), 1, anon_sym_EQ, + STATE(3295), 1, + sym_comment, + ACTIONS(5874), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(1041), 6, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -306673,39 +306603,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116821] = 9, + [116734] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3298), 1, - sym_comment, - ACTIONS(5190), 2, + ACTIONS(6271), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 10, + STATE(3296), 1, + sym_comment, + ACTIONS(5319), 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(4141), 22, + ACTIONS(5321), 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, @@ -306725,43 +306652,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116882] = 15, + [116789] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(3299), 1, + ACTIONS(6118), 1, + anon_sym_abstract, + STATE(3297), 1, sym_comment, - STATE(4808), 1, + STATE(4209), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306771,6 +306694,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, @@ -306783,66 +306708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116955] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3300), 1, - sym_comment, - ACTIONS(2135), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6689), 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(6692), 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, - [117010] = 6, + [116858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3301), 1, + ACTIONS(4264), 1, + anon_sym_EQ, + STATE(3298), 1, sym_comment, - ACTIONS(5178), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5172), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306856,12 +306731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5174), 24, + ACTIONS(4139), 25, + 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_AMP_AMP, @@ -306881,43 +306757,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117065] = 15, + [116913] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6695), 1, + ACTIONS(6673), 1, anon_sym_readonly, - STATE(3302), 1, + STATE(3299), 1, sym_comment, - STATE(3541), 1, + STATE(3567), 1, sym_override_modifier, - STATE(4219), 1, + STATE(4209), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 21, + ACTIONS(4378), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306939,23 +306815,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117138] = 8, + [116986] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5523), 1, + ACTIONS(5480), 1, anon_sym_LBRACK, - STATE(3303), 1, + STATE(3300), 1, sym_comment, - ACTIONS(5526), 2, + ACTIONS(5483), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5043), 3, + ACTIONS(4853), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5519), 11, + ACTIONS(4135), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306967,7 +306843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5521), 22, + ACTIONS(4139), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -306990,39 +306866,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117197] = 13, + [117045] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6697), 1, - anon_sym_abstract, - STATE(3304), 1, + ACTIONS(6675), 1, + anon_sym_readonly, + STATE(3301), 1, sym_comment, - STATE(4220), 1, + STATE(3582), 1, + sym_override_modifier, + STATE(4172), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307031,14 +306911,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, @@ -307046,38 +306924,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117266] = 8, + [117118] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3302), 1, + sym_comment, + ACTIONS(5662), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6677), 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(6680), 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, + [117173] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(5535), 1, + anon_sym_LBRACK, + STATE(3303), 1, + sym_comment, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5538), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4135), 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(4139), 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, + [117234] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5773), 1, + STATE(3304), 1, + sym_comment, + ACTIONS(2165), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6683), 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(6686), 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, + [117289] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(3305), 1, sym_comment, - ACTIONS(5776), 2, + ACTIONS(5478), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6689), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4843), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6692), 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, + [117344] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3306), 1, + sym_comment, + ACTIONS(2131), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4137), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6695), 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(4141), 22, + ACTIONS(6698), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307097,37 +307172,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117325] = 12, + [117399] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3306), 1, + STATE(3307), 1, sym_comment, - STATE(4161), 1, + STATE(4214), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307151,29 +307226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117391] = 10, + [117465] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(6195), 1, + ACTIONS(1051), 1, anon_sym_RBRACE, - STATE(3307), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3308), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307203,79 +307278,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117453] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4351), 1, - anon_sym_in, - ACTIONS(4354), 1, - anon_sym_of, - STATE(3308), 1, - sym_comment, - ACTIONS(4137), 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(4141), 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, - [117511] = 10, + [117527] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, + ACTIONS(6094), 1, + anon_sym_RBRACE, STATE(3309), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(5720), 1, aux_sym_object_repeat1, - ACTIONS(987), 4, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307305,42 +307330,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117573] = 10, + [117589] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, - anon_sym_EQ, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, STATE(3310), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, + STATE(4199), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -307357,42 +307384,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117635] = 10, + [117655] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(6113), 1, - anon_sym_RBRACE, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, STATE(3311), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, + STATE(4120), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -307409,81 +307438,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117697] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [117721] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4228), 1, anon_sym_EQ, - ACTIONS(6113), 1, - anon_sym_RBRACE, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4344), 1, + anon_sym_of, STATE(3312), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2403), 29, - anon_sym_export, + ACTIONS(4135), 12, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + 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(4139), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117759] = 10, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117779] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5987), 1, + ACTIONS(6094), 1, anon_sym_RBRACE, STATE(3313), 1, sym_comment, - STATE(5868), 1, + STATE(5720), 1, aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307513,21 +307540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117821] = 8, + [117841] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5434), 1, - anon_sym_BQUOTE, + ACTIONS(4312), 1, + anon_sym_EQ, STATE(3314), 1, sym_comment, - STATE(3118), 2, - sym_template_string, - sym_arguments, - ACTIONS(4861), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307541,10 +307563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4863), 21, + ACTIONS(4139), 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, @@ -307562,38 +307586,39 @@ 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, - [117879] = 12, + [117895] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, STATE(3315), 1, sym_comment, - STATE(4190), 1, + STATE(4170), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307617,29 +307642,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117945] = 10, + [117961] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(5987), 1, + ACTIONS(6212), 1, anon_sym_RBRACE, STATE(3316), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(987), 4, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -307669,37 +307694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118007] = 12, + [118023] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, STATE(3317), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307723,37 +307748,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118073] = 12, + [118089] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, STATE(3318), 1, sym_comment, - STATE(4289), 1, + STATE(4275), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307777,42 +307802,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118139] = 10, + [118155] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, - anon_sym_EQ, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, + anon_sym_LBRACK, STATE(3319), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, + STATE(4071), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -307829,41 +307856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118201] = 14, + [118221] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(4520), 1, + sym__automatic_semicolon, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, STATE(3320), 1, sym_comment, - STATE(4808), 1, + STATE(4183), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, + ACTIONS(1041), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307873,6 +307896,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, @@ -307885,44 +307910,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118271] = 12, + [118287] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_RBRACE, + ACTIONS(5009), 1, + anon_sym_EQ, STATE(3321), 1, sym_comment, - STATE(4226), 1, - sym__property_name, - ACTIONS(3898), 2, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2397), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118349] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1059), 1, + anon_sym_RBRACE, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3322), 1, + sym_comment, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -307939,7 +308014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118337] = 13, + [118411] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307948,24 +308023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3322), 1, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3323), 1, sym_comment, - STATE(4808), 1, + STATE(4640), 1, sym__property_name, + STATE(5660), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -307994,16 +308070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118405] = 6, + [118481] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4320), 1, + ACTIONS(4302), 1, anon_sym_EQ, - STATE(3323), 1, + STATE(3324), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308017,12 +308093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 24, + ACTIONS(4139), 24, 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_AMP_AMP, @@ -308042,86 +308118,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118459] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - STATE(3324), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [118531] = 10, + [118535] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1041), 1, + ACTIONS(1051), 1, anon_sym_RBRACE, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, STATE(3325), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - ACTIONS(987), 4, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308151,22 +308170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118593] = 8, + [118597] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5904), 1, - anon_sym_of, - ACTIONS(6449), 1, - anon_sym_in, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_BQUOTE, STATE(3326), 1, sym_comment, - ACTIONS(5320), 12, + STATE(3058), 2, + sym_template_string, + sym_arguments, + ACTIONS(4865), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -308177,10 +308198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5324), 23, + ACTIONS(4867), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -308199,31 +308219,26 @@ 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, - [118651] = 10, + [118655] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1041), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, - anon_sym_EQ, + ACTIONS(4520), 1, + sym__automatic_semicolon, STATE(3327), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + anon_sym_PIPE_RBRACE, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308253,44 +308268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118713] = 12, + [118709] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(6084), 1, + anon_sym_RBRACE, STATE(3328), 1, sym_comment, - STATE(4296), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -308307,96 +308320,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118779] = 12, + [118771] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, STATE(3329), 1, sym_comment, - STATE(4218), 1, + STATE(4186), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118845] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1043), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(3330), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -308413,87 +308374,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118907] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_EQ, - ACTIONS(5809), 1, - anon_sym_of, - ACTIONS(6530), 1, - anon_sym_in, - STATE(3331), 1, - sym_comment, - ACTIONS(5630), 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(5634), 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, - [118965] = 12, + [118837] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3332), 1, + STATE(3330), 1, sym_comment, - STATE(4295), 1, + STATE(4248), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308517,20 +308428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119031] = 8, + [118903] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, + ACTIONS(2061), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5807), 1, + ACTIONS(5880), 1, anon_sym_of, - ACTIONS(6533), 1, + ACTIONS(6465), 1, anon_sym_in, - STATE(3333), 1, + STATE(3331), 1, sym_comment, - ACTIONS(2069), 12, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -308543,7 +308454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 23, + ACTIONS(2065), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -308567,29 +308478,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119089] = 10, + [118961] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_EQ, - ACTIONS(6121), 1, + ACTIONS(1020), 1, anon_sym_RBRACE, - STATE(3334), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3332), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308619,85 +308530,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119151] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RBRACE, - STATE(3335), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - STATE(5670), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119221] = 10, + [119023] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(6121), 1, + ACTIONS(6084), 1, anon_sym_RBRACE, - STATE(3336), 1, + STATE(3333), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308727,37 +308582,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119283] = 12, + [119085] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3337), 1, + STATE(3334), 1, sym_comment, - STATE(4109), 1, + STATE(4134), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308781,38 +308636,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119349] = 6, + [119151] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4518), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, sym__automatic_semicolon, - STATE(3338), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3335), 1, sym_comment, - ACTIONS(987), 8, + STATE(4278), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2403), 29, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -308829,85 +308690,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119403] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_EQ, - STATE(3339), 1, - sym_comment, - ACTIONS(4137), 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(4141), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_BQUOTE, - anon_sym_satisfies, - [119457] = 12, + [119217] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3340), 1, + STATE(3336), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308931,37 +308744,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119523] = 12, + [119283] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3341), 1, + STATE(3337), 1, sym_comment, - STATE(4198), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + ACTIONS(6598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308985,85 +308799,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119589] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6212), 1, - sym_regex_flags, - STATE(3342), 1, - sym_comment, - ACTIONS(6208), 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(6210), 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, - [119643] = 12, + [119351] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3343), 1, + STATE(3338), 1, sym_comment, - STATE(4285), 1, + STATE(4182), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309087,37 +308853,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119709] = 12, + [119417] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3344), 1, + STATE(3339), 1, sym_comment, - STATE(4077), 1, + STATE(4139), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309141,37 +308907,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119775] = 12, + [119483] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4518), 1, + ACTIONS(4520), 1, sym__automatic_semicolon, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3345), 1, + STATE(3340), 1, sym_comment, - STATE(4147), 1, + STATE(4087), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 6, + ACTIONS(1041), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309195,44 +308961,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119841] = 12, + [119549] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - STATE(3346), 1, - sym_comment, - STATE(4085), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(6040), 1, + anon_sym_RBRACE, + STATE(3341), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(2397), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -309249,29 +309013,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119907] = 10, + [119611] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5882), 1, + anon_sym_of, + ACTIONS(6502), 1, + anon_sym_in, + STATE(3342), 1, + sym_comment, + ACTIONS(5224), 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(5228), 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, + [119669] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(5009), 1, anon_sym_EQ, - ACTIONS(6195), 1, + ACTIONS(6040), 1, anon_sym_RBRACE, - STATE(3347), 1, + STATE(3343), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(987), 4, + ACTIONS(1041), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309301,44 +309115,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119969] = 12, + [119731] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4518), 1, - sym__automatic_semicolon, - ACTIONS(5142), 1, - anon_sym_LBRACK, - STATE(3348), 1, - sym_comment, - STATE(4170), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 6, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3344), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4376), 23, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -309355,19 +309167,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120035] = 6, + [119793] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4446), 1, + ACTIONS(5637), 1, anon_sym_EQ, - STATE(3349), 1, + ACTIONS(5862), 1, + anon_sym_of, + ACTIONS(6473), 1, + anon_sym_in, + STATE(3345), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(5635), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -309378,7 +309193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(5639), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309402,16 +309217,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120088] = 6, + [119851] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6210), 1, + sym_regex_flags, + STATE(3346), 1, + sym_comment, + ACTIONS(6206), 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(6208), 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, + [119905] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(6212), 1, + anon_sym_RBRACE, + STATE(3347), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2397), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119967] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3348), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [120037] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3349), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, + [120109] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4484), 1, + ACTIONS(4498), 1, anon_sym_EQ, STATE(3350), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309425,7 +309453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309449,16 +309477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120141] = 6, + [120162] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4480), 1, + ACTIONS(4440), 1, anon_sym_EQ, STATE(3351), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309472,7 +309500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309496,16 +309524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120194] = 6, + [120215] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4432), 1, + ACTIONS(4456), 1, anon_sym_EQ, STATE(3352), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309519,7 +309547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309543,69 +309571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120247] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3353), 1, - sym_comment, - STATE(4808), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120312] = 6, + [120268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4448), 1, + ACTIONS(4488), 1, anon_sym_EQ, - STATE(3354), 1, + STATE(3353), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309619,7 +309594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309643,16 +309618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120365] = 6, + [120321] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4468), 1, + ACTIONS(4490), 1, anon_sym_EQ, - STATE(3355), 1, + STATE(3354), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309666,7 +309641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309690,16 +309665,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120418] = 6, + [120374] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3355), 1, + sym_comment, + STATE(4640), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120439] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4462), 1, + ACTIONS(4502), 1, anon_sym_EQ, STATE(3356), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309713,7 +309741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309737,16 +309765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120471] = 6, + [120492] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4430), 1, + ACTIONS(4494), 1, anon_sym_EQ, STATE(3357), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309760,7 +309788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309784,16 +309812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120524] = 6, + [120545] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4470), 1, + ACTIONS(4460), 1, anon_sym_EQ, STATE(3358), 1, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309807,7 +309835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4141), 23, + ACTIONS(4139), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -309831,61 +309859,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120577] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [120598] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6701), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ, STATE(3359), 1, sym_comment, - ACTIONS(6699), 35, - anon_sym_export, + ACTIONS(4135), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [120627] = 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4139), 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, + [120651] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, STATE(3360), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309921,16 +309951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120677] = 5, + [120701] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6709), 1, + ACTIONS(6707), 1, sym__automatic_semicolon, STATE(3361), 1, sym_comment, - ACTIONS(6707), 35, + ACTIONS(6705), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -309966,16 +309996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120727] = 5, + [120751] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6713), 1, + ACTIONS(6711), 1, sym__automatic_semicolon, STATE(3362), 1, sym_comment, - ACTIONS(6711), 35, + ACTIONS(6709), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310011,16 +310041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120777] = 5, + [120801] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6715), 1, sym__automatic_semicolon, STATE(3363), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6713), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310056,16 +310086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120827] = 5, + [120851] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, STATE(3364), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310101,34 +310131,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120877] = 5, + [120901] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6701), 1, - sym__automatic_semicolon, + ACTIONS(5009), 1, + anon_sym_EQ, STATE(3365), 1, sym_comment, - ACTIONS(6699), 35, + ACTIONS(6598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -310145,17 +310178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [120927] = 5, + [120955] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6701), 1, + ACTIONS(6723), 1, sym__automatic_semicolon, STATE(3366), 1, sym_comment, - ACTIONS(6699), 35, + ACTIONS(6721), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310191,16 +310223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120977] = 5, + [121005] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, STATE(3367), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310236,151 +310268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121027] = 5, + [121055] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6725), 1, + ACTIONS(6715), 1, sym__automatic_semicolon, STATE(3368), 1, sym_comment, - ACTIONS(6723), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [121077] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6729), 1, - sym__automatic_semicolon, - STATE(3369), 1, - sym_comment, - ACTIONS(6727), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [121127] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6721), 1, - sym__automatic_semicolon, - STATE(3370), 1, - sym_comment, - ACTIONS(6719), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [121177] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6733), 1, - sym__automatic_semicolon, - STATE(3371), 1, - sym_comment, - ACTIONS(6731), 35, + ACTIONS(6713), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310416,38 +310313,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121227] = 8, + [121105] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RBRACE, - STATE(3372), 1, + ACTIONS(6703), 1, + sym__automatic_semicolon, + STATE(3369), 1, sym_comment, - STATE(5670), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -310464,16 +310357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121283] = 5, + anon_sym_abstract, + [121155] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6727), 1, sym__automatic_semicolon, - STATE(3373), 1, + STATE(3370), 1, sym_comment, - ACTIONS(6735), 35, + ACTIONS(6725), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310509,16 +310403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121333] = 5, + [121205] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, - STATE(3374), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310554,16 +310448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121383] = 5, + [121255] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6731), 1, sym__automatic_semicolon, - STATE(3375), 1, + STATE(3372), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6729), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310599,16 +310493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121433] = 5, + [121305] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2223), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, - STATE(3376), 1, + STATE(3373), 1, sym_comment, - ACTIONS(2221), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310644,16 +310538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121483] = 5, + [121355] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, - STATE(3377), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310689,24 +310583,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121533] = 6, + [121405] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(6748), 1, + ACTIONS(6735), 1, sym__automatic_semicolon, - STATE(3378), 1, + STATE(3375), 1, sym_comment, - ACTIONS(6743), 34, + ACTIONS(6733), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -310735,16 +310628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121585] = 5, + [121455] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2115), 1, + ACTIONS(6731), 1, sym__automatic_semicolon, - STATE(3379), 1, + STATE(3376), 1, sym_comment, - ACTIONS(2111), 35, + ACTIONS(6729), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310780,38 +310673,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121635] = 8, + [121505] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RBRACE, - STATE(3380), 1, + ACTIONS(6715), 1, + sym__automatic_semicolon, + STATE(3377), 1, sym_comment, - STATE(5670), 1, - aux_sym_object_repeat1, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(6713), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -310828,16 +310717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121691] = 5, + anon_sym_abstract, + [121555] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6739), 1, sym__automatic_semicolon, - STATE(3381), 1, + STATE(3378), 1, sym_comment, - ACTIONS(6735), 35, + ACTIONS(6737), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310873,16 +310763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121741] = 5, + [121605] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6743), 1, sym__automatic_semicolon, - STATE(3382), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6741), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310918,16 +310808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121791] = 5, + [121655] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, - STATE(3383), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -310963,23 +310853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121841] = 5, + [121705] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6750), 1, sym__automatic_semicolon, - STATE(3384), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6745), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -311008,16 +310899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121891] = 5, + [121757] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6707), 1, sym__automatic_semicolon, - STATE(3385), 1, + STATE(3382), 1, sym_comment, - ACTIONS(6735), 35, + ACTIONS(6705), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311053,16 +310944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121941] = 5, + [121807] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6715), 1, sym__automatic_semicolon, - STATE(3386), 1, + STATE(3383), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6713), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311098,16 +310989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121991] = 5, + [121857] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6743), 1, sym__automatic_semicolon, - STATE(3387), 1, + STATE(3384), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6741), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311143,16 +311034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122041] = 5, + [121907] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6752), 1, + ACTIONS(6754), 1, sym__automatic_semicolon, - STATE(3388), 1, + STATE(3385), 1, sym_comment, - ACTIONS(6750), 35, + ACTIONS(6752), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311188,73 +311079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122091] = 17, + [121957] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6754), 1, - anon_sym_STAR, - ACTIONS(6756), 1, - anon_sym_async, ACTIONS(6758), 1, - anon_sym_readonly, - STATE(3389), 1, - sym_comment, - STATE(3525), 1, - sym_override_modifier, - STATE(4826), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6760), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 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, - [122165] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3390), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6756), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311290,16 +311124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122215] = 5, + [122007] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6764), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, - STATE(3391), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6762), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311335,37 +311169,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122265] = 7, + [122057] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(3392), 1, + ACTIONS(6762), 1, + sym__automatic_semicolon, + STATE(3388), 1, sym_comment, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(6760), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -311382,23 +311213,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122319] = 5, + anon_sym_abstract, + [122107] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6766), 1, + anon_sym_SEMI, + ACTIONS(6769), 1, sym__automatic_semicolon, - STATE(3393), 1, + STATE(3389), 1, sym_comment, - ACTIONS(2111), 35, + ACTIONS(6764), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -311427,16 +311260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122369] = 5, + [122159] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6707), 1, sym__automatic_semicolon, - STATE(3394), 1, + STATE(3390), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6705), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311472,37 +311305,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122419] = 7, + [122209] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(3395), 1, + ACTIONS(6762), 1, + sym__automatic_semicolon, + STATE(3391), 1, sym_comment, - ACTIONS(6587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(6760), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -311519,16 +311349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122473] = 5, + anon_sym_abstract, + [122259] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6701), 1, + ACTIONS(6762), 1, sym__automatic_semicolon, - STATE(3396), 1, + STATE(3392), 1, sym_comment, - ACTIONS(6699), 35, + ACTIONS(6760), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311564,16 +311395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122523] = 5, + [122309] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6762), 1, sym__automatic_semicolon, - STATE(3397), 1, + STATE(3393), 1, sym_comment, - ACTIONS(6735), 35, + ACTIONS(6760), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311609,16 +311440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122573] = 5, + [122359] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6770), 1, + ACTIONS(6707), 1, sym__automatic_semicolon, - STATE(3398), 1, + STATE(3394), 1, sym_comment, - ACTIONS(6768), 35, + ACTIONS(6705), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311654,16 +311485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122623] = 5, + [122409] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, - STATE(3399), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311699,24 +311530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122673] = 6, + [122459] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6774), 1, - anon_sym_SEMI, - ACTIONS(6777), 1, + ACTIONS(2107), 1, sym__automatic_semicolon, - STATE(3400), 1, + STATE(3396), 1, sym_comment, - ACTIONS(6772), 34, + ACTIONS(2105), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -311745,16 +311575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122725] = 5, + [122509] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6779), 1, + ACTIONS(6731), 1, sym__automatic_semicolon, - STATE(3401), 1, + STATE(3397), 1, sym_comment, - ACTIONS(2067), 35, + ACTIONS(6729), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311790,16 +311620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122775] = 5, + [122559] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6771), 1, sym__automatic_semicolon, - STATE(3402), 1, + STATE(3398), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(2057), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311835,16 +311665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122825] = 5, + [122609] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6781), 1, + ACTIONS(6773), 1, sym__automatic_semicolon, - STATE(3403), 1, + STATE(3399), 1, sym_comment, - ACTIONS(2111), 35, + ACTIONS(2109), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311880,16 +311710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122875] = 5, + [122659] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6715), 1, sym__automatic_semicolon, - STATE(3404), 1, + STATE(3400), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6713), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311925,16 +311755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122925] = 5, + [122709] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(2111), 1, sym__automatic_semicolon, - STATE(3405), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(2109), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311970,16 +311800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122975] = 5, + [122759] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6703), 1, sym__automatic_semicolon, - STATE(3406), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6701), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312015,16 +311845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123025] = 5, + [122809] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6725), 1, + ACTIONS(6758), 1, sym__automatic_semicolon, - STATE(3407), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6723), 35, + ACTIONS(6756), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312060,43 +311890,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123075] = 5, + [122859] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6701), 1, - sym__automatic_semicolon, - STATE(3408), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, + anon_sym_async, + ACTIONS(6779), 1, + anon_sym_readonly, + STATE(3404), 1, sym_comment, - ACTIONS(6699), 35, + STATE(3516), 1, + sym_override_modifier, + STATE(4794), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6781), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -312104,35 +311947,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123125] = 5, + [122933] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, - sym__automatic_semicolon, - STATE(3409), 1, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3405), 1, sym_comment, - ACTIONS(6703), 35, + STATE(5660), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2397), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -312149,17 +311995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123175] = 5, + [122989] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6707), 1, sym__automatic_semicolon, - STATE(3410), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6705), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312195,30 +312040,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123225] = 5, + [123039] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(4181), 1, + anon_sym_LT, ACTIONS(6783), 1, - sym__automatic_semicolon, - STATE(3411), 1, + anon_sym_LPAREN, + ACTIONS(6785), 1, + anon_sym_DOT, + STATE(3407), 1, sym_comment, - ACTIONS(2067), 35, + STATE(3594), 1, + sym_arguments, + STATE(6483), 1, + sym_type_arguments, + ACTIONS(4218), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, @@ -312240,34 +312089,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123275] = 5, + [123097] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, - sym__automatic_semicolon, - STATE(3412), 1, + ACTIONS(6534), 1, + anon_sym_COMMA, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3408), 1, sym_comment, - ACTIONS(6703), 35, + STATE(5660), 1, + aux_sym_object_repeat1, + ACTIONS(1041), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -312284,17 +312137,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123325] = 5, + [123153] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6770), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, - STATE(3413), 1, + STATE(3409), 1, sym_comment, - ACTIONS(6768), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312330,16 +312182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123375] = 5, + [123203] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6731), 1, sym__automatic_semicolon, - STATE(3414), 1, + STATE(3410), 1, sym_comment, - ACTIONS(6735), 35, + ACTIONS(6729), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312375,16 +312227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123425] = 5, + [123253] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6719), 1, sym__automatic_semicolon, - STATE(3415), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312420,47 +312272,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123475] = 14, + [123303] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6785), 1, - anon_sym_STAR, - ACTIONS(6787), 1, - anon_sym_async, - STATE(3416), 1, + ACTIONS(6762), 1, + sym__automatic_semicolon, + STATE(3412), 1, sym_comment, - STATE(4758), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6789), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(6760), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312473,35 +312316,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123542] = 6, + anon_sym_abstract, + [123353] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3417), 1, + ACTIONS(6787), 1, + sym__automatic_semicolon, + STATE(3413), 1, sym_comment, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2403), 29, + ACTIONS(2109), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -312518,14 +312361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123593] = 4, + anon_sym_abstract, + [123403] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3418), 1, + ACTIONS(6719), 1, + sym__automatic_semicolon, + STATE(3414), 1, sym_comment, - ACTIONS(6791), 35, + ACTIONS(6717), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312561,14 +312407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123640] = 4, + [123453] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3419), 1, + ACTIONS(6789), 1, + sym__automatic_semicolon, + STATE(3415), 1, sym_comment, - ACTIONS(6793), 35, + ACTIONS(2057), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312604,14 +312452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123687] = 4, + [123503] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3420), 1, + ACTIONS(6731), 1, + sym__automatic_semicolon, + STATE(3416), 1, sym_comment, - ACTIONS(6793), 35, + ACTIONS(6729), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312647,47 +312497,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123734] = 14, + [123553] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6754), 1, - anon_sym_STAR, - ACTIONS(6756), 1, - anon_sym_async, - STATE(3421), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3417), 1, sym_comment, - STATE(4826), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6760), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(6598), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312700,46 +312544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123801] = 13, + [123607] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6754), 1, - anon_sym_STAR, - STATE(3422), 1, + STATE(3418), 1, sym_comment, - STATE(4826), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6760), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(6791), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312752,14 +312586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123866] = 4, + anon_sym_abstract, + [123654] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3423), 1, + STATE(3419), 1, sym_comment, - ACTIONS(2111), 35, + ACTIONS(6793), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312795,32 +312630,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123913] = 4, + [123701] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3424), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6795), 1, + anon_sym_EQ_GT, + STATE(3420), 1, sym_comment, - ACTIONS(2221), 35, + STATE(4794), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -312837,37 +312681,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123960] = 4, + [123764] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3425), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6775), 1, + anon_sym_STAR, + STATE(3421), 1, sym_comment, - ACTIONS(6743), 35, + STATE(4794), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6781), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312880,8 +312733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [124007] = 13, + [123829] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312890,33 +312742,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6785), 1, + ACTIONS(6775), 1, anon_sym_STAR, - STATE(3426), 1, + ACTIONS(6777), 1, + anon_sym_async, + STATE(3422), 1, sym_comment, - STATE(4758), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6789), 2, + ACTIONS(6781), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -312933,7 +312786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124072] = 12, + [123896] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312942,25 +312795,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6795), 1, - anon_sym_EQ_GT, - STATE(3427), 1, + ACTIONS(6797), 1, + anon_sym_STAR, + STATE(3423), 1, sym_comment, - STATE(4826), 1, + STATE(4811), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6799), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312970,8 +312826,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, @@ -312984,46 +312838,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124135] = 13, + [123961] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6797), 1, - anon_sym_STAR, - STATE(3428), 1, + STATE(3424), 1, sym_comment, - STATE(4675), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6799), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(6801), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -313036,14 +312880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124200] = 4, + anon_sym_abstract, + [124008] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3429), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(2105), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313079,7 +312924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124247] = 14, + [124055] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313088,34 +312933,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6797), 1, - anon_sym_STAR, ACTIONS(6803), 1, - anon_sym_async, - STATE(3430), 1, + anon_sym_STAR, + STATE(3426), 1, sym_comment, - STATE(4675), 1, + STATE(4661), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6799), 2, + ACTIONS(6805), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -313132,14 +312976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124314] = 4, + [124120] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3431), 1, + STATE(3427), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(2109), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -313175,46 +313019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124361] = 13, + [124167] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6807), 1, - anon_sym_STAR, - STATE(3432), 1, + STATE(3428), 1, sym_comment, - STATE(4653), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6809), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(6807), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -313227,35 +313061,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124426] = 6, + anon_sym_abstract, + [124214] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3433), 1, + STATE(3429), 1, sym_comment, - ACTIONS(6683), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(987), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(6764), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313272,7 +313104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124477] = 11, + anon_sym_abstract, + [124261] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313281,34 +313114,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3434), 1, + ACTIONS(6797), 1, + anon_sym_STAR, + ACTIONS(6809), 1, + anon_sym_async, + STATE(3430), 1, sym_comment, - STATE(4662), 1, + STATE(4811), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6799), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 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, @@ -313321,39 +313158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124537] = 11, + [124328] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3435), 1, + STATE(3431), 1, sym_comment, - STATE(4803), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(6793), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313370,56 +313200,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124597] = 19, + anon_sym_abstract, + [124375] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6157), 1, - anon_sym_STAR, - ACTIONS(6159), 1, - anon_sym_async, ACTIONS(6811), 1, - anon_sym_static, - ACTIONS(6813), 1, - anon_sym_readonly, - ACTIONS(6815), 1, - anon_sym_declare, - ACTIONS(6817), 1, - anon_sym_abstract, - STATE(3436), 1, + anon_sym_STAR, + STATE(3432), 1, sym_comment, - STATE(3533), 1, - sym_override_modifier, - STATE(3831), 1, + STATE(4724), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6161), 2, + ACTIONS(6813), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 16, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 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, @@ -313427,39 +313253,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124673] = 11, + [124440] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3437), 1, + STATE(3433), 1, sym_comment, - STATE(4823), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2397), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313476,39 +313298,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124733] = 11, + [124491] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3438), 1, + STATE(3434), 1, sym_comment, - STATE(4821), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(6651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1041), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2409), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313525,7 +313343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124793] = 11, + [124542] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313534,34 +313352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3439), 1, + ACTIONS(6811), 1, + anon_sym_STAR, + ACTIONS(6815), 1, + anon_sym_async, + STATE(3435), 1, sym_comment, - STATE(4701), 1, + STATE(4724), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6813), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 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, @@ -313574,7 +313396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124853] = 11, + [124609] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313583,19 +313405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3440), 1, + STATE(3436), 1, sym_comment, - STATE(4702), 1, + STATE(4738), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313623,7 +313445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124913] = 11, + [124669] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313632,19 +313454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3441), 1, + STATE(3437), 1, sym_comment, - STATE(4779), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313672,7 +313494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124973] = 11, + [124729] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313681,19 +313503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3442), 1, + STATE(3438), 1, sym_comment, - STATE(4820), 1, + STATE(4838), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313721,7 +313543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125033] = 11, + [124789] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313730,19 +313552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3443), 1, + STATE(3439), 1, sym_comment, - STATE(4816), 1, + STATE(4725), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313770,34 +313592,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125093] = 7, + [124849] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, - anon_sym_LPAREN, - ACTIONS(6821), 1, - anon_sym_DOT, - STATE(3444), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3440), 1, sym_comment, - STATE(3594), 1, - sym_arguments, - ACTIONS(4247), 31, + STATE(4811), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124909] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, anon_sym_DQUOTE, + ACTIONS(1896), 1, anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3441), 1, + sym_comment, + STATE(4694), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124969] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3442), 1, + sym_comment, + STATE(4617), 1, + sym__property_name, + ACTIONS(2734), 2, sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [125029] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3443), 1, + sym_comment, + STATE(4660), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -313814,8 +313788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [125145] = 11, + [125089] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313824,19 +313797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3445), 1, + STATE(3444), 1, sym_comment, - STATE(4675), 1, + STATE(4654), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313864,7 +313837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125205] = 11, + [125149] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313873,19 +313846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3446), 1, + STATE(3445), 1, sym_comment, - STATE(4673), 1, + STATE(4708), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313913,7 +313886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125265] = 11, + [125209] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313922,19 +313895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3446), 1, sym_comment, - STATE(4690), 1, + STATE(4842), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -313962,7 +313935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125325] = 11, + [125269] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313971,19 +313944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3448), 1, + STATE(3447), 1, sym_comment, - STATE(4692), 1, + STATE(4625), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314011,7 +313984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125385] = 11, + [125329] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314020,19 +313993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3449), 1, + STATE(3448), 1, sym_comment, - STATE(4653), 1, + STATE(4661), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314060,7 +314033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125445] = 11, + [125389] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314069,19 +314042,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3450), 1, + STATE(3449), 1, sym_comment, - STATE(4810), 1, + STATE(4645), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314109,7 +314082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125505] = 11, + [125449] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314118,19 +314091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3451), 1, + STATE(3450), 1, sym_comment, - STATE(4696), 1, + STATE(4618), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314158,7 +314131,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125565] = 11, + [125509] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6098), 1, + anon_sym_async, + ACTIONS(6817), 1, + anon_sym_static, + ACTIONS(6819), 1, + anon_sym_readonly, + ACTIONS(6821), 1, + anon_sym_declare, + ACTIONS(6823), 1, + anon_sym_abstract, + STATE(3451), 1, + sym_comment, + STATE(3532), 1, + sym_override_modifier, + STATE(3811), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6100), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 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, + [125585] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314167,19 +314197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3452), 1, sym_comment, - STATE(4731), 1, + STATE(4724), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314207,7 +314237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125625] = 11, + [125645] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314216,19 +314246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3453), 1, sym_comment, - STATE(4822), 1, + STATE(4629), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314256,7 +314286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125685] = 11, + [125705] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314265,19 +314295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3454), 1, sym_comment, - STATE(4618), 1, + STATE(4649), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314305,7 +314335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125745] = 11, + [125765] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314314,19 +314344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3455), 1, sym_comment, - STATE(4784), 1, + STATE(4841), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314354,7 +314384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125805] = 11, + [125825] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314363,19 +314393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3456), 1, sym_comment, - STATE(4651), 1, + STATE(4747), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314403,7 +314433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125865] = 11, + [125885] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314412,19 +314442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3457), 1, sym_comment, - STATE(4641), 1, + STATE(4646), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314452,7 +314482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125925] = 11, + [125945] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314461,19 +314491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3458), 1, sym_comment, - STATE(4749), 1, + STATE(4801), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314501,7 +314531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125985] = 11, + [126005] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314510,19 +314540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3459), 1, sym_comment, - STATE(4843), 1, + STATE(4836), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314550,7 +314580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126045] = 11, + [126065] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314559,19 +314589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3460), 1, sym_comment, - STATE(4826), 1, + STATE(4644), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314599,7 +314629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126105] = 11, + [126125] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314608,19 +314638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3461), 1, sym_comment, - STATE(4758), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314648,7 +314678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126165] = 11, + [126185] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314657,19 +314687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3462), 1, sym_comment, - STATE(4715), 1, + STATE(4677), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -314697,47 +314727,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126225] = 19, + [126245] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(5522), 1, anon_sym_STAR, - ACTIONS(5375), 1, + ACTIONS(5526), 1, anon_sym_async, - ACTIONS(6823), 1, - anon_sym_static, ACTIONS(6825), 1, - anon_sym_readonly, + anon_sym_static, ACTIONS(6827), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(6829), 1, + anon_sym_declare, + ACTIONS(6831), 1, anon_sym_abstract, STATE(3463), 1, sym_comment, - STATE(3523), 1, + STATE(3522), 1, sym_override_modifier, - STATE(3819), 1, + STATE(3809), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5379), 2, + ACTIONS(5530), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 16, + ACTIONS(4378), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314754,7 +314784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126301] = 12, + [126321] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314763,22 +314793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6831), 1, - anon_sym_RBRACE, STATE(3464), 1, sym_comment, - STATE(5037), 1, + STATE(4833), 1, sym__property_name, - STATE(5722), 1, - sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, + ACTIONS(1041), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -314803,39 +314833,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126362] = 12, + [126381] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6833), 1, - anon_sym_RBRACE, STATE(3465), 1, sym_comment, - STATE(5555), 1, - sym__property_name, - STATE(6757), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4320), 34, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_LT, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -314852,7 +314874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126423] = 12, + anon_sym_abstract, + [126427] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314861,20 +314884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6835), 1, + ACTIONS(6833), 1, anon_sym_RBRACE, STATE(3466), 1, sym_comment, - STATE(5555), 1, + STATE(5240), 1, sym__property_name, - STATE(6757), 1, + STATE(6265), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -314901,7 +314924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126484] = 12, + [126488] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314910,20 +314933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6837), 1, + ACTIONS(6835), 1, anon_sym_RBRACE, STATE(3467), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -314950,7 +314973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126545] = 17, + [126549] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314959,44 +314982,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, - anon_sym_STAR, - ACTIONS(6839), 1, - anon_sym_static, + ACTIONS(6837), 1, + anon_sym_RBRACE, STATE(3468), 1, sym_comment, - STATE(3531), 1, - sym_override_modifier, - STATE(4808), 1, + STATE(5418), 1, sym__property_name, + STATE(6747), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 17, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315004,7 +315022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126616] = 12, + [126610] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315013,20 +315031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6841), 1, + ACTIONS(6839), 1, anon_sym_RBRACE, STATE(3469), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315053,7 +315071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126677] = 12, + [126671] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315062,20 +315080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6843), 1, + ACTIONS(6841), 1, anon_sym_RBRACE, STATE(3470), 1, sym_comment, - STATE(5252), 1, + STATE(5418), 1, sym__property_name, - STATE(6280), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315102,7 +315120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126738] = 12, + [126732] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315111,39 +315129,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6845), 1, - anon_sym_RBRACE, + ACTIONS(6038), 1, + anon_sym_STAR, + ACTIONS(6843), 1, + anon_sym_static, STATE(3471), 1, sym_comment, - STATE(5555), 1, + STATE(3533), 1, + sym_override_modifier, + STATE(4640), 1, sym__property_name, - STATE(6757), 1, - sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2900), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -315151,108 +315174,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126799] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2872), 1, - anon_sym_namespace, - ACTIONS(2874), 1, - anon_sym_import, - ACTIONS(2876), 1, - anon_sym_var, - ACTIONS(2878), 1, - anon_sym_let, - ACTIONS(2880), 1, - anon_sym_const, - ACTIONS(2884), 1, - anon_sym_class, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2888), 1, - anon_sym_function, - ACTIONS(2890), 1, - anon_sym_declare, - ACTIONS(2892), 1, - anon_sym_module, - ACTIONS(2894), 1, - anon_sym_abstract, - ACTIONS(2896), 1, - anon_sym_interface, - ACTIONS(2898), 1, - anon_sym_enum, - ACTIONS(2910), 1, - anon_sym_type, - ACTIONS(6847), 1, - anon_sym_default, - STATE(1399), 1, - sym_internal_module, - STATE(1439), 1, - sym_declaration, - STATE(3472), 1, - sym_comment, - STATE(5232), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(1444), 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, - [126884] = 15, + [126803] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6849), 1, + ACTIONS(5007), 1, anon_sym_STAR, - ACTIONS(6851), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, anon_sym_readonly, - STATE(3473), 1, + ACTIONS(6845), 1, + anon_sym_static, + STATE(3472), 1, sym_comment, - STATE(3522), 1, + STATE(3534), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3907), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6853), 2, + ACTIONS(5023), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 17, anon_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, @@ -315264,7 +315228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126951] = 12, + [126874] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315273,20 +315237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6855), 1, + ACTIONS(6847), 1, anon_sym_RBRACE, - STATE(3474), 1, + STATE(3473), 1, sym_comment, - STATE(5344), 1, + STATE(5418), 1, sym__property_name, - STATE(6259), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315313,68 +315277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127012] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2663), 1, - anon_sym_namespace, - ACTIONS(2669), 1, - anon_sym_import, - ACTIONS(2671), 1, - anon_sym_var, - ACTIONS(2673), 1, - anon_sym_let, - ACTIONS(2675), 1, - anon_sym_const, - ACTIONS(2683), 1, - anon_sym_class, - ACTIONS(2685), 1, - anon_sym_async, - ACTIONS(2687), 1, - anon_sym_function, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_declare, - ACTIONS(2704), 1, - anon_sym_abstract, - ACTIONS(2706), 1, - anon_sym_interface, - ACTIONS(2708), 1, - anon_sym_enum, - ACTIONS(2738), 1, - anon_sym_type, - ACTIONS(2740), 1, - anon_sym_module, - ACTIONS(2742), 1, - anon_sym_global, - STATE(1514), 1, - sym_declaration, - STATE(1557), 1, - sym_internal_module, - STATE(3475), 1, - sym_comment, - STATE(5398), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(1558), 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, - [127097] = 24, + [126935] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -315405,23 +315308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2898), 1, anon_sym_enum, - ACTIONS(2910), 1, + ACTIONS(2916), 1, anon_sym_type, - ACTIONS(2912), 1, + ACTIONS(2918), 1, anon_sym_module, - ACTIONS(2914), 1, + ACTIONS(2920), 1, anon_sym_global, - STATE(1332), 1, - sym_declaration, - STATE(1399), 1, - sym_internal_module, - STATE(3476), 1, + STATE(3474), 1, sym_comment, - STATE(5232), 1, + STATE(5301), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(1444), 13, + STATE(6896), 1, + sym_declaration, + STATE(6916), 1, + sym_internal_module, + STATE(6924), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -315435,61 +315338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [127182] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_readonly, - ACTIONS(6857), 1, - anon_sym_static, - STATE(3477), 1, - sym_comment, - STATE(3516), 1, - sym_override_modifier, - STATE(3892), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5148), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4376), 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, - [127253] = 24, + [127020] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -315516,27 +315365,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(2954), 1, anon_sym_declare, + ACTIONS(2956), 1, + anon_sym_module, ACTIONS(2958), 1, anon_sym_abstract, + ACTIONS(2960), 1, + anon_sym_global, ACTIONS(2962), 1, anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4520), 1, - anon_sym_module, - ACTIONS(6859), 1, - anon_sym_default, - STATE(3478), 1, + STATE(3475), 1, sym_comment, - STATE(4878), 1, + STATE(4959), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, sym_internal_module, - STATE(5051), 1, + STATE(5249), 1, sym_declaration, - STATE(5382), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -315550,7 +315399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [127338] = 12, + [127105] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315559,20 +315408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6861), 1, + ACTIONS(6849), 1, anon_sym_RBRACE, - STATE(3479), 1, + STATE(3476), 1, sym_comment, - STATE(5555), 1, + STATE(5318), 1, sym__property_name, - STATE(6757), 1, + STATE(6172), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315599,59 +315448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127399] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6863), 1, - anon_sym_static, - ACTIONS(6865), 1, - anon_sym_readonly, - ACTIONS(6867), 1, - anon_sym_abstract, - STATE(3480), 1, - sym_comment, - STATE(3590), 1, - sym_override_modifier, - STATE(4224), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4376), 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, - [127466] = 12, + [127166] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315660,20 +315457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6869), 1, + ACTIONS(6851), 1, anon_sym_RBRACE, - STATE(3481), 1, + STATE(3477), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315700,81 +315497,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127527] = 12, + [127227] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6871), 1, - anon_sym_RBRACE, - STATE(3482), 1, + ACTIONS(6853), 1, + anon_sym_STAR, + ACTIONS(6855), 1, + anon_sym_readonly, + STATE(3478), 1, sym_comment, - STATE(5555), 1, + STATE(3526), 1, + sym_override_modifier, + STATE(3801), 1, sym__property_name, - STATE(6757), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_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(6857), 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, - [127588] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6873), 1, - anon_sym_RBRACE, - STATE(3483), 1, - sym_comment, - STATE(5555), 1, - sym__property_name, - STATE(6757), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315783,14 +315538,10 @@ 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, @@ -315798,68 +315549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127649] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2758), 1, - anon_sym_namespace, - ACTIONS(2760), 1, - anon_sym_import, - ACTIONS(2762), 1, - anon_sym_var, - ACTIONS(2764), 1, - anon_sym_let, - ACTIONS(2766), 1, - anon_sym_const, - ACTIONS(2770), 1, - anon_sym_class, - ACTIONS(2772), 1, - anon_sym_async, - ACTIONS(2774), 1, - anon_sym_function, - ACTIONS(2776), 1, - anon_sym_declare, - ACTIONS(2778), 1, - anon_sym_module, - ACTIONS(2780), 1, - anon_sym_abstract, - ACTIONS(2782), 1, - anon_sym_interface, - ACTIONS(2784), 1, - anon_sym_enum, - ACTIONS(2922), 1, - anon_sym_type, - ACTIONS(6875), 1, - anon_sym_default, - STATE(1348), 1, - sym_internal_module, - STATE(1403), 1, - sym_declaration, - STATE(3484), 1, - sym_comment, - STATE(5102), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(1327), 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, - [127734] = 12, + [127294] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315868,20 +315558,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6877), 1, + ACTIONS(6859), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3479), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -315908,7 +315598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127795] = 24, + [127355] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2663), 1, @@ -315933,8 +315623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(2700), 1, anon_sym_declare, - ACTIONS(2702), 1, - anon_sym_module, ACTIONS(2704), 1, anon_sym_abstract, ACTIONS(2706), 1, @@ -315943,19 +315631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2738), 1, anon_sym_type, - ACTIONS(6879), 1, - anon_sym_default, - STATE(1473), 1, - sym_declaration, - STATE(1557), 1, + ACTIONS(2740), 1, + anon_sym_module, + ACTIONS(2742), 1, + anon_sym_global, + STATE(1482), 1, sym_internal_module, - STATE(3486), 1, + STATE(1563), 1, + sym_declaration, + STATE(3480), 1, sym_comment, - STATE(5398), 1, + STATE(4924), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(1558), 13, + STATE(1527), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -315969,7 +315659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [127880] = 12, + [127440] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315978,20 +315668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6881), 1, + ACTIONS(6861), 1, anon_sym_RBRACE, - STATE(3487), 1, + STATE(3481), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316018,7 +315708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127941] = 12, + [127501] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316027,20 +315717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6883), 1, + ACTIONS(6863), 1, anon_sym_RBRACE, - STATE(3488), 1, + STATE(3482), 1, sym_comment, - STATE(5154), 1, + STATE(5418), 1, sym__property_name, - STATE(6188), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316067,95 +315757,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128002] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3489), 1, - sym_comment, - ACTIONS(4312), 33, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [128047] = 24, + [127562] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2758), 1, + ACTIONS(2796), 1, anon_sym_namespace, - ACTIONS(2760), 1, + ACTIONS(2798), 1, anon_sym_import, - ACTIONS(2762), 1, + ACTIONS(2800), 1, anon_sym_var, - ACTIONS(2764), 1, + ACTIONS(2802), 1, anon_sym_let, - ACTIONS(2766), 1, + ACTIONS(2804), 1, anon_sym_const, - ACTIONS(2770), 1, + ACTIONS(2808), 1, anon_sym_class, - ACTIONS(2772), 1, + ACTIONS(2810), 1, anon_sym_async, - ACTIONS(2774), 1, + ACTIONS(2812), 1, anon_sym_function, - ACTIONS(2776), 1, + ACTIONS(2814), 1, anon_sym_declare, - ACTIONS(2780), 1, + ACTIONS(2816), 1, + anon_sym_module, + ACTIONS(2818), 1, anon_sym_abstract, - ACTIONS(2782), 1, + ACTIONS(2820), 1, anon_sym_interface, - ACTIONS(2784), 1, + ACTIONS(2822), 1, anon_sym_enum, - ACTIONS(2922), 1, + ACTIONS(2910), 1, anon_sym_type, - ACTIONS(2924), 1, - anon_sym_module, - ACTIONS(2926), 1, - anon_sym_global, - STATE(1348), 1, - sym_internal_module, - STATE(1377), 1, + ACTIONS(6865), 1, + anon_sym_default, + STATE(1093), 1, sym_declaration, - STATE(3490), 1, + STATE(1154), 1, + sym_internal_module, + STATE(3483), 1, sym_comment, - STATE(5102), 1, + STATE(5013), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(1327), 13, + STATE(1157), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -316169,7 +315818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128132] = 24, + [127647] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -316196,27 +315845,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(2954), 1, anon_sym_declare, - ACTIONS(2956), 1, - anon_sym_module, ACTIONS(2958), 1, anon_sym_abstract, - ACTIONS(2960), 1, - anon_sym_global, ACTIONS(2962), 1, anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - STATE(3491), 1, + ACTIONS(4522), 1, + anon_sym_module, + ACTIONS(6867), 1, + anon_sym_default, + STATE(3484), 1, sym_comment, - STATE(4878), 1, + STATE(4959), 1, + aux_sym_export_statement_repeat1, + STATE(5245), 1, sym_internal_module, - STATE(4945), 1, + STATE(5285), 1, sym_declaration, - STATE(5382), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(5171), 13, + STATE(5246), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -316230,32 +315879,38 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128217] = 12, + [127732] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6885), 1, - anon_sym_RBRACE, - STATE(3492), 1, + ACTIONS(6106), 1, + anon_sym_static, + ACTIONS(6108), 1, + anon_sym_readonly, + ACTIONS(6110), 1, + anon_sym_abstract, + STATE(3485), 1, sym_comment, - STATE(5555), 1, + STATE(3567), 1, + sym_override_modifier, + STATE(4209), 1, sym__property_name, - STATE(6757), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316263,15 +315918,12 @@ 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, @@ -316279,7 +315931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128278] = 12, + [127799] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316288,20 +315940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6887), 1, + ACTIONS(6869), 1, anon_sym_RBRACE, - STATE(3493), 1, + STATE(3486), 1, sym_comment, - STATE(5555), 1, + STATE(4923), 1, sym__property_name, - STATE(6757), 1, + STATE(6088), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316328,38 +315980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128339] = 15, + [127860] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_static, - ACTIONS(6176), 1, - anon_sym_readonly, - ACTIONS(6178), 1, - anon_sym_abstract, - STATE(3494), 1, + ACTIONS(6871), 1, + anon_sym_RBRACE, + STATE(3487), 1, sym_comment, - STATE(3582), 1, - sym_override_modifier, - STATE(4122), 1, + STATE(5151), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6302), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 20, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316367,12 +316013,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, @@ -316380,7 +316029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128406] = 12, + [127921] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316389,20 +316038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6873), 1, anon_sym_RBRACE, - STATE(3495), 1, + STATE(3488), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316429,19 +316078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128467] = 6, + [127982] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6891), 1, + ACTIONS(6875), 1, anon_sym_AT, - STATE(3557), 1, + STATE(3548), 1, sym_decorator, - STATE(3496), 2, + STATE(3489), 2, sym_comment, aux_sym_export_statement_repeat1, - ACTIONS(4239), 30, + ACTIONS(4272), 30, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -316472,39 +316121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128516] = 15, + [128031] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, - anon_sym_override, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_readonly, - ACTIONS(6894), 1, - anon_sym_STAR, - STATE(3497), 1, + ACTIONS(6878), 1, + anon_sym_RBRACE, + STATE(3490), 1, sym_comment, - STATE(3520), 1, - sym_override_modifier, - STATE(3796), 1, + STATE(5418), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6896), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316513,10 +316155,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, @@ -316524,7 +316170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128583] = 12, + [128092] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316533,20 +316179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6898), 1, + ACTIONS(6880), 1, anon_sym_RBRACE, - STATE(3498), 1, + STATE(3491), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316573,68 +316219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128644] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2796), 1, - anon_sym_namespace, - ACTIONS(2798), 1, - anon_sym_import, - ACTIONS(2800), 1, - anon_sym_var, - ACTIONS(2802), 1, - anon_sym_let, - ACTIONS(2804), 1, - anon_sym_const, - ACTIONS(2808), 1, - anon_sym_class, - ACTIONS(2810), 1, - anon_sym_async, - ACTIONS(2812), 1, - anon_sym_function, - ACTIONS(2814), 1, - anon_sym_declare, - ACTIONS(2818), 1, - anon_sym_abstract, - ACTIONS(2820), 1, - anon_sym_interface, - ACTIONS(2822), 1, - anon_sym_enum, - ACTIONS(2928), 1, - anon_sym_type, - ACTIONS(2930), 1, - anon_sym_module, - ACTIONS(2932), 1, - anon_sym_global, - STATE(3499), 1, - sym_comment, - STATE(5201), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(6385), 1, - sym_internal_module, - STATE(6491), 1, - sym_declaration, - STATE(6360), 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, - [128729] = 12, + [128153] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316643,20 +316228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6900), 1, + ACTIONS(6882), 1, anon_sym_RBRACE, - STATE(3500), 1, + STATE(3492), 1, sym_comment, - STATE(5555), 1, + STATE(5390), 1, sym__property_name, - STATE(6757), 1, + STATE(6018), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316683,7 +316268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128790] = 12, + [128214] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316692,20 +316277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6902), 1, + ACTIONS(6884), 1, anon_sym_RBRACE, - STATE(3501), 1, + STATE(3493), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316732,7 +316317,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128851] = 12, + [128275] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(6673), 1, + anon_sym_readonly, + ACTIONS(6886), 1, + anon_sym_STAR, + STATE(3494), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(3831), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6888), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 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, + [128342] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316741,20 +316378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6904), 1, + ACTIONS(6890), 1, anon_sym_RBRACE, - STATE(3502), 1, + STATE(3495), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316781,7 +316418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128912] = 12, + [128403] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316790,20 +316427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6906), 1, + ACTIONS(6892), 1, anon_sym_RBRACE, - STATE(3503), 1, + STATE(3496), 1, sym_comment, - STATE(5279), 1, + STATE(5418), 1, sym__property_name, - STATE(6012), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316830,68 +316467,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128973] = 24, + [128464] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2834), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6894), 1, + anon_sym_RBRACE, + STATE(3497), 1, + sym_comment, + STATE(5418), 1, + sym__property_name, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2836), 1, - anon_sym_import, - ACTIONS(2838), 1, - anon_sym_var, - ACTIONS(2840), 1, anon_sym_let, - ACTIONS(2842), 1, - anon_sym_const, - ACTIONS(2846), 1, - anon_sym_class, - ACTIONS(2848), 1, anon_sym_async, - ACTIONS(2850), 1, - anon_sym_function, - ACTIONS(2852), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2854), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(2856), 1, - anon_sym_abstract, - ACTIONS(2858), 1, - anon_sym_interface, - ACTIONS(2860), 1, - anon_sym_enum, - ACTIONS(2916), 1, - anon_sym_type, - ACTIONS(6908), 1, - anon_sym_default, - STATE(1022), 1, - sym_declaration, - STATE(1094), 1, - sym_internal_module, - STATE(3504), 1, - sym_comment, - STATE(4991), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(1100), 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, - [129058] = 12, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [128525] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316900,20 +316525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6910), 1, + ACTIONS(6896), 1, anon_sym_RBRACE, - STATE(3505), 1, + STATE(3498), 1, sym_comment, - STATE(5313), 1, + STATE(5418), 1, sym__property_name, - STATE(6323), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -316940,54 +316565,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129119] = 24, + [128586] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2796), 1, + ACTIONS(2758), 1, anon_sym_namespace, - ACTIONS(2798), 1, + ACTIONS(2760), 1, anon_sym_import, - ACTIONS(2800), 1, + ACTIONS(2762), 1, anon_sym_var, - ACTIONS(2802), 1, + ACTIONS(2764), 1, anon_sym_let, - ACTIONS(2804), 1, + ACTIONS(2766), 1, anon_sym_const, - ACTIONS(2808), 1, + ACTIONS(2770), 1, anon_sym_class, - ACTIONS(2810), 1, + ACTIONS(2772), 1, anon_sym_async, - ACTIONS(2812), 1, + ACTIONS(2774), 1, anon_sym_function, - ACTIONS(2814), 1, + ACTIONS(2776), 1, anon_sym_declare, - ACTIONS(2816), 1, - anon_sym_module, - ACTIONS(2818), 1, + ACTIONS(2780), 1, anon_sym_abstract, - ACTIONS(2820), 1, + ACTIONS(2782), 1, anon_sym_interface, - ACTIONS(2822), 1, + ACTIONS(2784), 1, anon_sym_enum, - ACTIONS(2928), 1, + ACTIONS(2922), 1, anon_sym_type, - ACTIONS(6912), 1, - anon_sym_default, - STATE(3506), 1, + ACTIONS(2924), 1, + anon_sym_module, + ACTIONS(2926), 1, + anon_sym_global, + STATE(1342), 1, + sym_internal_module, + STATE(1360), 1, + sym_declaration, + STATE(3499), 1, sym_comment, - STATE(5201), 1, + STATE(4973), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(6385), 1, - sym_internal_module, - STATE(6982), 1, - sym_declaration, - STATE(6360), 13, + STATE(1340), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -317001,7 +316626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [129204] = 12, + [128671] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317010,20 +316635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6914), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(3507), 1, + STATE(3500), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -317050,49 +316675,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129265] = 17, + [128732] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4400), 1, + ACTIONS(4402), 1, anon_sym_override, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_async, - ACTIONS(6204), 1, - anon_sym_readonly, - ACTIONS(6916), 1, + ACTIONS(6900), 1, anon_sym_static, - STATE(3508), 1, + ACTIONS(6902), 1, + anon_sym_readonly, + ACTIONS(6904), 1, + anon_sym_abstract, + STATE(3501), 1, sym_comment, - STATE(3534), 1, + STATE(3573), 1, sym_override_modifier, - STATE(3863), 1, + STATE(4289), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 17, + ACTIONS(4378), 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, @@ -317104,7 +316727,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129336] = 12, + [128799] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2834), 1, + anon_sym_namespace, + ACTIONS(2836), 1, + anon_sym_import, + ACTIONS(2838), 1, + anon_sym_var, + ACTIONS(2840), 1, + anon_sym_let, + ACTIONS(2842), 1, + anon_sym_const, + ACTIONS(2846), 1, + anon_sym_class, + ACTIONS(2848), 1, + anon_sym_async, + ACTIONS(2850), 1, + anon_sym_function, + ACTIONS(2852), 1, + anon_sym_declare, + ACTIONS(2854), 1, + anon_sym_module, + ACTIONS(2856), 1, + anon_sym_abstract, + ACTIONS(2858), 1, + anon_sym_interface, + ACTIONS(2860), 1, + anon_sym_enum, + ACTIONS(2928), 1, + anon_sym_type, + ACTIONS(6906), 1, + anon_sym_default, + STATE(1221), 1, + sym_internal_module, + STATE(1375), 1, + sym_declaration, + STATE(3502), 1, + sym_comment, + STATE(4937), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + STATE(1216), 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, + [128884] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317113,20 +316797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6918), 1, + ACTIONS(6908), 1, anon_sym_RBRACE, - STATE(3509), 1, + STATE(3503), 1, sym_comment, - STATE(5555), 1, + STATE(5004), 1, sym__property_name, - STATE(6757), 1, + STATE(5728), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -317153,7 +316837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129397] = 24, + [128945] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -317184,23 +316868,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2860), 1, anon_sym_enum, - ACTIONS(2916), 1, + ACTIONS(2928), 1, anon_sym_type, - ACTIONS(2918), 1, + ACTIONS(2930), 1, anon_sym_module, - ACTIONS(2920), 1, + ACTIONS(2932), 1, anon_sym_global, - STATE(1086), 1, - sym_declaration, - STATE(1094), 1, + STATE(1221), 1, sym_internal_module, - STATE(3510), 1, + STATE(1261), 1, + sym_declaration, + STATE(3504), 1, sym_comment, - STATE(4991), 1, + STATE(4937), 1, aux_sym_export_statement_repeat1, - STATE(5410), 1, + STATE(5608), 1, sym_decorator, - STATE(1100), 13, + STATE(1216), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -317214,48 +316898,53 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [129482] = 12, + [129030] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(4402), 1, + anon_sym_override, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6920), 1, - anon_sym_RBRACE, - STATE(3511), 1, + ACTIONS(6086), 1, + anon_sym_STAR, + ACTIONS(6088), 1, + anon_sym_async, + ACTIONS(6090), 1, + anon_sym_readonly, + ACTIONS(6910), 1, + anon_sym_static, + STATE(3505), 1, sym_comment, - STATE(5555), 1, + STATE(3529), 1, + sym_override_modifier, + STATE(3903), 1, sym__property_name, - STATE(6757), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6092), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -317263,7 +316952,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129543] = 12, + [129101] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2872), 1, + anon_sym_namespace, + ACTIONS(2874), 1, + anon_sym_import, + ACTIONS(2876), 1, + anon_sym_var, + ACTIONS(2878), 1, + anon_sym_let, + ACTIONS(2880), 1, + anon_sym_const, + ACTIONS(2884), 1, + anon_sym_class, + ACTIONS(2886), 1, + anon_sym_async, + ACTIONS(2888), 1, + anon_sym_function, + ACTIONS(2890), 1, + anon_sym_declare, + ACTIONS(2892), 1, + anon_sym_module, + ACTIONS(2894), 1, + anon_sym_abstract, + ACTIONS(2896), 1, + anon_sym_interface, + ACTIONS(2898), 1, + anon_sym_enum, + ACTIONS(2916), 1, + anon_sym_type, + ACTIONS(6912), 1, + anon_sym_default, + STATE(3506), 1, + sym_comment, + STATE(5301), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + STATE(6809), 1, + sym_declaration, + STATE(6916), 1, + sym_internal_module, + STATE(6924), 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, + [129186] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317272,20 +317022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6922), 1, + ACTIONS(6914), 1, anon_sym_RBRACE, - STATE(3512), 1, + STATE(3507), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -317312,7 +317062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129604] = 12, + [129247] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317321,20 +317071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6924), 1, + ACTIONS(6916), 1, anon_sym_RBRACE, - STATE(3513), 1, + STATE(3508), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -317361,7 +317111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129665] = 12, + [129308] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317370,20 +317120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6926), 1, + ACTIONS(6918), 1, anon_sym_RBRACE, - STATE(3514), 1, + STATE(3509), 1, sym_comment, - STATE(5555), 1, + STATE(5418), 1, sym__property_name, - STATE(6757), 1, + STATE(6747), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -317410,44 +317160,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129726] = 14, + [129369] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_async, - ACTIONS(6204), 1, - anon_sym_readonly, - STATE(3515), 1, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(3510), 1, sym_comment, - STATE(3863), 1, + STATE(5418), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317460,44 +317209,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129790] = 14, + [129430] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2758), 1, + anon_sym_namespace, + ACTIONS(2760), 1, + anon_sym_import, + ACTIONS(2762), 1, + anon_sym_var, + ACTIONS(2764), 1, + anon_sym_let, + ACTIONS(2766), 1, + anon_sym_const, + ACTIONS(2770), 1, + anon_sym_class, + ACTIONS(2772), 1, + anon_sym_async, + ACTIONS(2774), 1, + anon_sym_function, + ACTIONS(2776), 1, + anon_sym_declare, + ACTIONS(2778), 1, + anon_sym_module, + ACTIONS(2780), 1, + anon_sym_abstract, + ACTIONS(2782), 1, + anon_sym_interface, + ACTIONS(2784), 1, + anon_sym_enum, + ACTIONS(2922), 1, + anon_sym_type, + ACTIONS(6922), 1, + anon_sym_default, + STATE(1342), 1, + sym_internal_module, + STATE(1354), 1, + sym_declaration, + STATE(3511), 1, + sym_comment, + STATE(4973), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + STATE(1340), 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, + [129515] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2663), 1, + anon_sym_namespace, + ACTIONS(2669), 1, + anon_sym_import, + ACTIONS(2671), 1, + anon_sym_var, + ACTIONS(2673), 1, + anon_sym_let, + ACTIONS(2675), 1, + anon_sym_const, + ACTIONS(2683), 1, + anon_sym_class, + ACTIONS(2685), 1, + anon_sym_async, + ACTIONS(2687), 1, + anon_sym_function, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2700), 1, + anon_sym_declare, + ACTIONS(2702), 1, + anon_sym_module, + ACTIONS(2704), 1, + anon_sym_abstract, + ACTIONS(2706), 1, + anon_sym_interface, + ACTIONS(2708), 1, + anon_sym_enum, + ACTIONS(2738), 1, + anon_sym_type, + ACTIONS(6924), 1, + anon_sym_default, + STATE(1482), 1, + sym_internal_module, + STATE(1552), 1, + sym_declaration, + STATE(3512), 1, + sym_comment, + STATE(4924), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + STATE(1527), 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, + [129600] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_STAR, - ACTIONS(6099), 1, - anon_sym_async, - ACTIONS(6101), 1, - anon_sym_readonly, - STATE(3516), 1, + ACTIONS(6926), 1, + anon_sym_RBRACE, + STATE(3513), 1, sym_comment, - STATE(3909), 1, + STATE(5418), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6103), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317510,44 +317380,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129854] = 14, + [129661] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6540), 1, - anon_sym_STAR, - ACTIONS(6542), 1, - anon_sym_async, ACTIONS(6928), 1, - anon_sym_readonly, - STATE(3517), 1, + anon_sym_RBRACE, + STATE(3514), 1, sym_comment, - STATE(3799), 1, + STATE(5418), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6544), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317560,7 +317429,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129918] = 11, + [129722] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2796), 1, + anon_sym_namespace, + ACTIONS(2798), 1, + anon_sym_import, + ACTIONS(2800), 1, + anon_sym_var, + ACTIONS(2802), 1, + anon_sym_let, + ACTIONS(2804), 1, + anon_sym_const, + ACTIONS(2808), 1, + anon_sym_class, + ACTIONS(2810), 1, + anon_sym_async, + ACTIONS(2812), 1, + anon_sym_function, + ACTIONS(2814), 1, + anon_sym_declare, + ACTIONS(2818), 1, + anon_sym_abstract, + ACTIONS(2820), 1, + anon_sym_interface, + ACTIONS(2822), 1, + anon_sym_enum, + ACTIONS(2910), 1, + anon_sym_type, + ACTIONS(2912), 1, + anon_sym_module, + ACTIONS(2914), 1, + anon_sym_global, + STATE(1087), 1, + sym_declaration, + STATE(1154), 1, + sym_internal_module, + STATE(3515), 1, + sym_comment, + STATE(5013), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + STATE(1157), 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, + [129807] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317569,32 +317499,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3518), 1, + ACTIONS(6797), 1, + anon_sym_STAR, + ACTIONS(6809), 1, + anon_sym_async, + ACTIONS(6930), 1, + anon_sym_readonly, + STATE(3516), 1, sym_comment, - STATE(5555), 1, + STATE(4811), 1, sym__property_name, - STATE(6757), 1, - sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6799), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2900), 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_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317607,37 +317540,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129976] = 14, + [129871] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6270), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(6272), 1, + ACTIONS(6088), 1, anon_sym_async, - ACTIONS(6930), 1, + ACTIONS(6090), 1, anon_sym_readonly, - STATE(3519), 1, + STATE(3517), 1, sym_comment, - STATE(3838), 1, + STATE(3903), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6274), 2, + ACTIONS(6092), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317657,42 +317590,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130040] = 12, + [129935] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6289), 1, anon_sym_STAR, - STATE(3520), 1, + ACTIONS(6291), 1, + anon_sym_async, + ACTIONS(6932), 1, + anon_sym_readonly, + STATE(3518), 1, sym_comment, - STATE(4641), 1, + STATE(3832), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6934), 2, + ACTIONS(6293), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(4378), 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_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317705,44 +317640,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130100] = 14, + [129999] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6157), 1, + ACTIONS(6934), 1, anon_sym_STAR, - ACTIONS(6159), 1, - anon_sym_async, - ACTIONS(6936), 1, - anon_sym_readonly, - STATE(3521), 1, + STATE(3519), 1, sym_comment, - STATE(3826), 1, + STATE(4694), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6161), 2, + ACTIONS(6936), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 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, @@ -317755,42 +317688,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130164] = 12, + [130059] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6894), 1, + ACTIONS(6096), 1, anon_sym_STAR, - STATE(3522), 1, + ACTIONS(6098), 1, + anon_sym_async, + ACTIONS(6938), 1, + anon_sym_readonly, + STATE(3520), 1, sym_comment, - STATE(4726), 1, + STATE(3803), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6938), 2, + ACTIONS(6100), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(4378), 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_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -317803,37 +317738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130224] = 14, + [130123] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, + ACTIONS(6030), 1, anon_sym_STAR, - ACTIONS(6185), 1, + ACTIONS(6032), 1, anon_sym_async, - ACTIONS(6193), 1, + ACTIONS(6940), 1, anon_sym_readonly, - STATE(3523), 1, + STATE(3521), 1, sym_comment, - STATE(3794), 1, + STATE(3797), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6187), 2, + ACTIONS(6034), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317853,37 +317788,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130288] = 14, + [130187] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(6112), 1, anon_sym_STAR, - ACTIONS(6013), 1, + ACTIONS(6114), 1, anon_sym_async, - ACTIONS(6940), 1, + ACTIONS(6120), 1, anon_sym_readonly, - STATE(3524), 1, + STATE(3522), 1, sym_comment, - STATE(3795), 1, + STATE(3822), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6017), 2, + ACTIONS(6116), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317903,7 +317838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130352] = 14, + [130251] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317912,25 +317847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - ACTIONS(6785), 1, - anon_sym_STAR, - ACTIONS(6787), 1, + ACTIONS(2902), 1, anon_sym_async, - ACTIONS(6942), 1, + ACTIONS(2904), 1, anon_sym_readonly, - STATE(3525), 1, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, + anon_sym_STAR, + STATE(3523), 1, sym_comment, - STATE(4758), 1, + STATE(4640), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6789), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 19, @@ -317953,37 +317888,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130416] = 14, + [130315] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5132), 1, - anon_sym_STAR, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5144), 1, + ACTIONS(6301), 1, + anon_sym_STAR, + ACTIONS(6309), 1, anon_sym_async, - ACTIONS(5146), 1, + ACTIONS(6942), 1, anon_sym_readonly, - STATE(3526), 1, + STATE(3524), 1, sym_comment, - STATE(3892), 1, + STATE(3837), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5148), 2, + ACTIONS(6311), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318003,37 +317938,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130480] = 14, + [130379] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6344), 1, + ACTIONS(5522), 1, anon_sym_STAR, - ACTIONS(6346), 1, + ACTIONS(5526), 1, anon_sym_async, - ACTIONS(6944), 1, + ACTIONS(5528), 1, anon_sym_readonly, - STATE(3527), 1, + STATE(3525), 1, sym_comment, - STATE(3815), 1, + STATE(3809), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6348), 2, + ACTIONS(5530), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318053,44 +317988,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130544] = 14, + [130443] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6886), 1, anon_sym_STAR, - ACTIONS(5375), 1, - anon_sym_async, - ACTIONS(5377), 1, - anon_sym_readonly, - STATE(3528), 1, + STATE(3526), 1, sym_comment, - STATE(3819), 1, + STATE(4791), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5379), 2, + ACTIONS(6944), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 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, @@ -318103,44 +318036,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130608] = 14, + [130503] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6332), 1, - anon_sym_STAR, - ACTIONS(6334), 1, - anon_sym_async, - ACTIONS(6946), 1, - anon_sym_readonly, - STATE(3529), 1, + STATE(3527), 1, sym_comment, - STATE(3861), 1, + STATE(5418), 1, sym__property_name, - ACTIONS(3898), 2, + STATE(6747), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6336), 2, - anon_sym_get, - anon_sym_set, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318153,37 +318083,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130672] = 14, + [130561] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5985), 1, + ACTIONS(6273), 1, anon_sym_STAR, - STATE(3530), 1, + ACTIONS(6275), 1, + anon_sym_async, + ACTIONS(6946), 1, + anon_sym_readonly, + STATE(3528), 1, sym_comment, - STATE(4808), 1, + STATE(3817), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318203,37 +318133,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130736] = 14, + [130625] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6754), 1, + ACTIONS(6016), 1, anon_sym_STAR, - ACTIONS(6756), 1, + ACTIONS(6018), 1, anon_sym_async, - ACTIONS(6758), 1, + ACTIONS(6020), 1, anon_sym_readonly, - STATE(3531), 1, + STATE(3529), 1, sym_comment, - STATE(4826), 1, + STATE(3870), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6760), 2, + ACTIONS(6022), 2, anon_sym_get, anon_sym_set, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318253,18 +318183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130800] = 5, + [130689] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3532), 1, + STATE(3530), 1, sym_comment, - ACTIONS(987), 3, + ACTIONS(1041), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2405), 29, + ACTIONS(2409), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318294,37 +318224,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130846] = 14, + [130735] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(6323), 1, anon_sym_STAR, - ACTIONS(6013), 1, + ACTIONS(6325), 1, anon_sym_async, ACTIONS(6948), 1, anon_sym_readonly, - STATE(3533), 1, + STATE(3531), 1, sym_comment, - STATE(3813), 1, + STATE(3864), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6017), 2, + ACTIONS(6327), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318344,37 +318274,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130910] = 14, + [130799] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6043), 1, + ACTIONS(6030), 1, anon_sym_STAR, - ACTIONS(6045), 1, + ACTIONS(6032), 1, anon_sym_async, - ACTIONS(6047), 1, + ACTIONS(6950), 1, anon_sym_readonly, - STATE(3534), 1, + STATE(3532), 1, sym_comment, - STATE(3872), 1, + STATE(3820), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6049), 2, + ACTIONS(6034), 2, anon_sym_get, anon_sym_set, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 19, + ACTIONS(4378), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318394,7 +318324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130974] = 10, + [130863] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -318403,30 +318333,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3535), 1, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, + anon_sym_async, + ACTIONS(6779), 1, + anon_sym_readonly, + STATE(3533), 1, sym_comment, - STATE(4820), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(6781), 2, + anon_sym_get, + anon_sym_set, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2900), 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_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318439,39 +318374,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131029] = 10, + [130927] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3536), 1, + ACTIONS(5989), 1, + anon_sym_STAR, + ACTIONS(5991), 1, + anon_sym_async, + ACTIONS(5993), 1, + anon_sym_readonly, + STATE(3534), 1, sym_comment, - STATE(4821), 1, + STATE(3853), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(5995), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 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_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318484,39 +318424,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131084] = 10, + [130991] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5007), 1, + anon_sym_STAR, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3537), 1, + ACTIONS(5019), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_readonly, + STATE(3535), 1, sym_comment, - STATE(4702), 1, + STATE(3907), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + ACTIONS(5023), 2, + anon_sym_get, + anon_sym_set, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 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_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -318529,28 +318474,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131139] = 10, + [131055] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3538), 1, + ACTIONS(6673), 1, + anon_sym_readonly, + STATE(3536), 1, sym_comment, - STATE(4715), 1, + STATE(4209), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318559,7 +318506,6 @@ 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, @@ -318574,35 +318520,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131194] = 10, + [131112] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3539), 1, + STATE(3537), 1, sym_comment, - STATE(4736), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4331), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -318619,38 +318558,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131249] = 11, + anon_sym_abstract, + [131155] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_readonly, - STATE(3540), 1, + STATE(3538), 1, sym_comment, - STATE(4236), 1, - sym__property_name, - ACTIONS(3898), 2, - sym_number, - sym_private_property_identifier, - STATE(3980), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4356), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -318665,30 +318597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131306] = 11, + anon_sym_abstract, + [131198] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6952), 1, - anon_sym_readonly, - STATE(3541), 1, + STATE(3539), 1, sym_comment, - STATE(4283), 1, + STATE(4640), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318697,6 +318628,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, @@ -318711,28 +318643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131363] = 10, + [131253] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3542), 1, + STATE(3540), 1, sym_comment, - STATE(4675), 1, + STATE(4301), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318756,28 +318688,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131418] = 4, + [131308] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3543), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3541), 1, sym_comment, - ACTIONS(4345), 31, + STATE(4654), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -318794,8 +318733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131461] = 10, + [131363] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -318804,16 +318742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3544), 1, + STATE(3542), 1, sym_comment, - STATE(4618), 1, + STATE(4738), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -318840,14 +318778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131516] = 4, + [131418] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3545), 1, + STATE(3543), 1, sym_comment, - ACTIONS(4343), 31, + ACTIONS(4348), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318879,7 +318817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [131559] = 10, + [131461] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -318888,16 +318826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3546), 1, + STATE(3544), 1, sym_comment, - STATE(4673), 1, + STATE(4694), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -318924,28 +318862,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131614] = 10, + [131516] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3547), 1, + ACTIONS(6952), 1, + anon_sym_readonly, + STATE(3545), 1, sym_comment, - STATE(4068), 1, + STATE(4238), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318954,7 +318894,6 @@ 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, @@ -318969,7 +318908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131669] = 10, + [131573] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -318978,16 +318917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(3546), 1, sym_comment, - STATE(4803), 1, + STATE(4724), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319014,7 +318953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131724] = 10, + [131628] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319023,16 +318962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3549), 1, + STATE(3547), 1, sym_comment, - STATE(4808), 1, + STATE(4677), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319059,35 +318998,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131779] = 10, + [131683] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3550), 1, + STATE(3548), 1, sym_comment, - STATE(4810), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4358), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -319104,28 +319036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131834] = 4, + anon_sym_abstract, + [131726] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3551), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3549), 1, sym_comment, - ACTIONS(4349), 31, + STATE(4686), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -319142,8 +319082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131877] = 10, + [131781] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319152,16 +319091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3552), 1, + STATE(3550), 1, sym_comment, - STATE(4826), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319188,7 +319127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131932] = 10, + [131836] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319197,16 +319136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3553), 1, + STATE(3551), 1, sym_comment, - STATE(4801), 1, + STATE(4661), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319233,30 +319172,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131987] = 11, + [131891] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6954), 1, - anon_sym_readonly, - STATE(3554), 1, + STATE(3552), 1, sym_comment, - STATE(4225), 1, + STATE(4625), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319265,6 +319202,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, @@ -319279,7 +319217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132044] = 10, + [131946] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319288,16 +319226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3555), 1, + STATE(3553), 1, sym_comment, - STATE(4799), 1, + STATE(4660), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319324,7 +319262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132099] = 10, + [132001] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319333,16 +319271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3556), 1, + STATE(3554), 1, sym_comment, - STATE(4701), 1, + STATE(4649), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319369,28 +319307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132154] = 4, + [132056] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3557), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3555), 1, sym_comment, - ACTIONS(4347), 31, + STATE(4131), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -319407,8 +319352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [132197] = 10, + [132111] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319417,16 +319361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3558), 1, + STATE(3556), 1, sym_comment, - STATE(4784), 1, + STATE(4646), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319453,7 +319397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132252] = 10, + [132166] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319462,16 +319406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3559), 1, + STATE(3557), 1, sym_comment, - STATE(4731), 1, + STATE(4833), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319498,28 +319442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132307] = 10, + [132221] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3560), 1, + STATE(3558), 1, sym_comment, - STATE(4696), 1, + STATE(4172), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319543,30 +319487,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132362] = 11, + [132276] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6956), 1, - anon_sym_readonly, - STATE(3561), 1, + STATE(3559), 1, sym_comment, - STATE(4159), 1, + STATE(4836), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319575,6 +319517,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, @@ -319589,28 +319532,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132419] = 10, + [132331] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3562), 1, + STATE(3560), 1, sym_comment, - STATE(4158), 1, + STATE(4841), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319634,30 +319577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132474] = 11, + [132386] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6958), 1, - anon_sym_readonly, - STATE(3563), 1, + STATE(3561), 1, sym_comment, - STATE(4221), 1, + STATE(4838), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319666,6 +319607,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, @@ -319680,28 +319622,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132531] = 10, + [132441] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3564), 1, + STATE(3562), 1, sym_comment, - STATE(4122), 1, + STATE(4842), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319725,7 +319667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132586] = 10, + [132496] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319734,16 +319676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3565), 1, + STATE(3563), 1, sym_comment, - STATE(4816), 1, + STATE(4824), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319770,28 +319712,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132641] = 10, + [132551] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3564), 1, + sym_comment, + ACTIONS(4329), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [132594] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3566), 1, + STATE(3565), 1, sym_comment, - STATE(4216), 1, + STATE(4617), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319815,30 +319796,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132696] = 11, + [132649] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_readonly, - STATE(3567), 1, + STATE(3566), 1, sym_comment, - STATE(4122), 1, + STATE(4645), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319847,6 +319826,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, @@ -319861,28 +319841,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132753] = 10, + [132704] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3568), 1, + ACTIONS(6675), 1, + anon_sym_readonly, + STATE(3567), 1, sym_comment, - STATE(4726), 1, + STATE(4172), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319891,7 +319873,6 @@ 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, @@ -319906,7 +319887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132808] = 10, + [132761] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319915,16 +319896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3569), 1, + STATE(3568), 1, sym_comment, - STATE(4758), 1, + STATE(4774), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -319951,28 +319932,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132863] = 10, + [132816] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3570), 1, + ACTIONS(6954), 1, + anon_sym_readonly, + STATE(3569), 1, sym_comment, - STATE(4282), 1, + STATE(4123), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319981,7 +319964,6 @@ 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, @@ -319996,30 +319978,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132918] = 11, + [132873] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6960), 1, - anon_sym_readonly, - STATE(3571), 1, + STATE(3570), 1, sym_comment, - STATE(4191), 1, + STATE(4794), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320028,6 +320008,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, @@ -320042,7 +320023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132975] = 10, + [132928] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320051,16 +320032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3572), 1, + STATE(3571), 1, sym_comment, - STATE(4822), 1, + STATE(4708), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -320087,28 +320068,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133030] = 10, + [132983] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3573), 1, + ACTIONS(6956), 1, + anon_sym_readonly, + STATE(3572), 1, sym_comment, - STATE(4117), 1, + STATE(4121), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320117,7 +320100,6 @@ 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, @@ -320132,30 +320114,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133085] = 11, + [133040] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6962), 1, + ACTIONS(6958), 1, anon_sym_readonly, - STATE(3574), 1, + STATE(3573), 1, sym_comment, - STATE(4094), 1, + STATE(4145), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320178,28 +320160,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133142] = 10, + [133097] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3575), 1, + STATE(3574), 1, sym_comment, - STATE(4092), 1, + STATE(4843), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320223,28 +320205,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133197] = 10, + [133152] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3576), 1, + ACTIONS(6960), 1, + anon_sym_readonly, + STATE(3575), 1, sym_comment, - STATE(4641), 1, + STATE(4146), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320253,7 +320237,6 @@ 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, @@ -320268,30 +320251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133252] = 11, + [133209] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_readonly, - STATE(3577), 1, + STATE(3576), 1, sym_comment, - STATE(4194), 1, + STATE(4629), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320300,6 +320281,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, @@ -320314,7 +320296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133309] = 10, + [133264] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320323,16 +320305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3578), 1, + STATE(3577), 1, sym_comment, - STATE(4823), 1, + STATE(4618), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -320359,7 +320341,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133364] = 10, + [133319] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3578), 1, + sym_comment, + ACTIONS(4218), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [133362] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320368,16 +320389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3579), 1, sym_comment, - STATE(4692), 1, + STATE(4747), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -320404,30 +320425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133419] = 11, + [133417] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, + ACTIONS(6962), 1, anon_sym_readonly, STATE(3580), 1, sym_comment, - STATE(4126), 1, + STATE(4297), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320450,28 +320471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133476] = 10, + [133474] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, STATE(3581), 1, sym_comment, - STATE(4289), 1, + STATE(4791), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320495,30 +320516,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133531] = 11, + [133529] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(6685), 1, + ACTIONS(6964), 1, anon_sym_readonly, STATE(3582), 1, sym_comment, - STATE(4068), 1, + STATE(4182), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320541,28 +320562,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133588] = 10, + [133586] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, + ACTIONS(6966), 1, + anon_sym_readonly, STATE(3583), 1, sym_comment, - STATE(4843), 1, + STATE(4274), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320571,7 +320594,6 @@ 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, @@ -320587,6 +320609,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [133643] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3584), 1, + sym_comment, + STATE(4209), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133698] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320595,16 +320662,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(3585), 1, sym_comment, - STATE(4690), 1, + STATE(4801), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -320631,30 +320698,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133698] = 11, + [133753] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, ACTIONS(6968), 1, anon_sym_readonly, - STATE(3585), 1, + STATE(3586), 1, sym_comment, - STATE(4289), 1, + STATE(4108), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320677,30 +320744,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133755] = 11, + [133810] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, ACTIONS(6970), 1, anon_sym_readonly, - STATE(3586), 1, + STATE(3587), 1, sym_comment, - STATE(4201), 1, + STATE(4184), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 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, + [133867] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3588), 1, + sym_comment, + STATE(4185), 1, sym__property_name, ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320709,6 +320820,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, @@ -320723,7 +320835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133812] = 10, + [133922] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320732,16 +320844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - STATE(3587), 1, + STATE(3589), 1, sym_comment, - STATE(4653), 1, + STATE(4811), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -320768,28 +320880,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133867] = 10, + [133977] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3588), 1, + ACTIONS(6972), 1, + anon_sym_readonly, + STATE(3590), 1, sym_comment, - STATE(4749), 1, + STATE(4200), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320798,7 +320912,6 @@ 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, @@ -320813,28 +320926,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133922] = 10, + [134034] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3589), 1, + STATE(3591), 1, sym_comment, - STATE(4651), 1, + STATE(4201), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320858,30 +320971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133977] = 11, + [134089] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_readonly, - STATE(3590), 1, + STATE(3592), 1, sym_comment, - STATE(4189), 1, + STATE(4644), 1, sym__property_name, - ACTIONS(3898), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(3980), 2, + STATE(4548), 2, sym_string, sym_computed_property_name, - ACTIONS(4376), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320890,6 +321001,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, @@ -320904,28 +321016,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134034] = 10, + [134144] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3591), 1, + ACTIONS(6974), 1, + anon_sym_readonly, + STATE(3593), 1, sym_comment, - STATE(4720), 1, + STATE(4153), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320934,7 +321048,6 @@ 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, @@ -320949,35 +321062,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134089] = 10, + [134201] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5440), 1, - anon_sym_LBRACK, - STATE(3592), 1, + STATE(3594), 1, sym_comment, - STATE(4662), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4582), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4354), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -320994,28 +321100,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134144] = 10, + anon_sym_abstract, + [134244] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - STATE(3593), 1, + STATE(3595), 1, sym_comment, - STATE(4779), 1, + STATE(4182), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4582), 2, + STATE(4004), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4378), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321039,28 +321146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134199] = 4, + [134299] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3594), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + STATE(3596), 1, sym_comment, - ACTIONS(4326), 31, + STATE(4725), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4548), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321077,29 +321191,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [134242] = 4, + [134354] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3595), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(3597), 1, sym_comment, - ACTIONS(4247), 31, + STATE(4163), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(4004), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4378), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321116,19 +321236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [134285] = 6, + [134409] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6974), 1, + ACTIONS(6976), 1, sym_identifier, - STATE(3596), 1, + STATE(3598), 1, sym_comment, - STATE(7124), 1, + STATE(7481), 1, sym_mapped_type_clause, - ACTIONS(6976), 22, + ACTIONS(6978), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321151,17 +321270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134325] = 5, + [134449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3597), 1, + STATE(3599), 1, sym_comment, - ACTIONS(4345), 2, + ACTIONS(4329), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4839), 19, + ACTIONS(4849), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -321181,29 +321300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [134360] = 11, + [134484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(3598), 1, + STATE(3600), 1, sym_comment, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, - ACTIONS(4147), 2, + ACTIONS(4356), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4143), 13, + ACTIONS(4841), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321213,33 +321321,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_class, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, anon_sym_extends, - [134407] = 11, + [134519] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_LT, ACTIONS(6980), 1, anon_sym_DOT, ACTIONS(6982), 1, anon_sym_QMARK_DOT, - STATE(3599), 1, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(3601), 1, sym_comment, - STATE(3649), 1, + STATE(3675), 1, sym_arguments, - STATE(3718), 1, + STATE(3710), 1, sym_type_arguments, - ACTIONS(4833), 2, + ACTIONS(4799), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4835), 13, + ACTIONS(4801), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321253,29 +321366,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134454] = 11, + [134566] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_LT, ACTIONS(6984), 1, - anon_sym_DOT, + anon_sym_LT, ACTIONS(6986), 1, + anon_sym_DOT, + ACTIONS(6988), 1, anon_sym_QMARK_DOT, - STATE(3600), 1, + STATE(3602), 1, sym_comment, - STATE(3659), 1, + STATE(3653), 1, sym_arguments, - STATE(3720), 1, + STATE(3712), 1, sym_type_arguments, - ACTIONS(4813), 2, + ACTIONS(4805), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4815), 13, + ACTIONS(4807), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321289,18 +321402,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134501] = 5, + [134613] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3601), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DOT, + ACTIONS(4179), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(3603), 1, sym_comment, - ACTIONS(4349), 2, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, + ACTIONS(4167), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4869), 19, - anon_sym_export, + ACTIONS(4157), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321310,26 +321434,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_class, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, anon_sym_extends, - [134536] = 5, + [134660] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3602), 1, + STATE(3604), 1, sym_comment, - ACTIONS(4343), 2, + ACTIONS(4348), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4867), 19, + ACTIONS(4875), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -321349,16 +321468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [134571] = 5, + [134695] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2251), 1, + ACTIONS(2205), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3603), 1, + STATE(3605), 1, sym_comment, - ACTIONS(2253), 19, + ACTIONS(2207), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321378,16 +321497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [134605] = 5, + [134729] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2183), 1, + ACTIONS(2249), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3604), 1, + STATE(3606), 1, sym_comment, - ACTIONS(2185), 19, + ACTIONS(2251), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321407,45 +321526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [134639] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3605), 1, - sym_comment, - ACTIONS(5021), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5023), 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, - [134672] = 5, + [134763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3606), 1, + STATE(3607), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(5174), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4879), 17, + ACTIONS(5176), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321463,17 +321554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134705] = 5, + [134796] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3607), 1, + STATE(3608), 1, sym_comment, - ACTIONS(5021), 2, + ACTIONS(5113), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5023), 17, + ACTIONS(5115), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321491,49 +321582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134738] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4807), 1, - anon_sym_EQ, - ACTIONS(6978), 1, - anon_sym_LT, - ACTIONS(6988), 1, - anon_sym_DOT, - ACTIONS(6990), 1, - anon_sym_is, - STATE(3608), 1, - sym_comment, - STATE(3786), 1, - sym_type_arguments, - ACTIONS(4202), 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, - [134779] = 5, + [134829] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3609), 1, sym_comment, - ACTIONS(5033), 2, + ACTIONS(5238), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5035), 17, + ACTIONS(5240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321551,17 +321610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134812] = 5, + [134862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3610), 1, sym_comment, - ACTIONS(5094), 2, + ACTIONS(5174), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5096), 17, + ACTIONS(5176), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321579,17 +321638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134845] = 5, + [134895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3611), 1, sym_comment, - ACTIONS(5033), 2, + ACTIONS(5151), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5035), 17, + ACTIONS(5153), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321607,17 +321666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134878] = 5, + [134928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3612), 1, sym_comment, - ACTIONS(5033), 2, + ACTIONS(5147), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5035), 17, + ACTIONS(5149), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321635,17 +321694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134911] = 5, + [134961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3613), 1, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5039), 17, + ACTIONS(5222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321663,17 +321722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134944] = 5, + [134994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3614), 1, sym_comment, - ACTIONS(5098), 2, + ACTIONS(5186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5100), 17, + ACTIONS(5188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321691,17 +321750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134977] = 5, + [135027] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3615), 1, sym_comment, - ACTIONS(5094), 2, + ACTIONS(5209), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5096), 17, + ACTIONS(5211), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321719,17 +321778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135010] = 5, + [135060] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3616), 1, sym_comment, - ACTIONS(5098), 2, + ACTIONS(5186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5100), 17, + ACTIONS(5188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321747,17 +321806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135043] = 5, + [135093] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3617), 1, sym_comment, - ACTIONS(5017), 2, + ACTIONS(5213), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5019), 17, + ACTIONS(5215), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321775,17 +321834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135076] = 5, + [135126] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3618), 1, sym_comment, - ACTIONS(5102), 2, + ACTIONS(5209), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5104), 17, + ACTIONS(5211), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321803,17 +321862,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135109] = 5, + [135159] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3619), 1, sym_comment, - ACTIONS(5017), 2, + ACTIONS(5186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5019), 17, + ACTIONS(5188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321831,17 +321890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135142] = 5, + [135192] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3620), 1, sym_comment, - ACTIONS(5017), 2, + ACTIONS(5220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5019), 17, + ACTIONS(5222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321859,45 +321918,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135175] = 5, + [135225] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4821), 1, + anon_sym_EQ, + ACTIONS(6984), 1, + anon_sym_LT, + ACTIONS(6990), 1, + anon_sym_DOT, + ACTIONS(6992), 1, + anon_sym_is, STATE(3621), 1, sym_comment, - ACTIONS(5110), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5112), 17, + STATE(3695), 1, + sym_type_arguments, + ACTIONS(4202), 14, 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_QMARK, anon_sym_extends, - [135208] = 5, + [135266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3622), 1, sym_comment, - ACTIONS(5102), 2, + ACTIONS(5220), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5104), 17, + ACTIONS(5222), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321915,17 +321978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135241] = 5, + [135299] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3623), 1, sym_comment, - ACTIONS(5110), 2, + ACTIONS(5132), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5112), 17, + ACTIONS(5134), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321943,17 +322006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135274] = 5, + [135332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3624), 1, sym_comment, - ACTIONS(5124), 2, + ACTIONS(5174), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5126), 17, + ACTIONS(5176), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321971,17 +322034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135307] = 5, + [135365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3625), 1, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5113), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5130), 17, + ACTIONS(5115), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -321999,17 +322062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135340] = 5, + [135398] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3626), 1, sym_comment, - ACTIONS(5021), 2, + ACTIONS(5113), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5023), 17, + ACTIONS(5115), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322027,17 +322090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135373] = 5, + [135431] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3627), 1, sym_comment, - ACTIONS(5124), 2, + ACTIONS(5101), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5126), 17, + ACTIONS(5103), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322055,17 +322118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135406] = 5, + [135464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3628), 1, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5101), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5130), 17, + ACTIONS(5103), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322083,17 +322146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135439] = 5, + [135497] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3629), 1, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5101), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5248), 17, + ACTIONS(5103), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322111,17 +322174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135472] = 5, + [135530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3630), 1, sym_comment, - ACTIONS(5158), 2, + ACTIONS(5256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5160), 17, + ACTIONS(5258), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322139,17 +322202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135505] = 5, + [135563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3631), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5302), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5168), 17, + ACTIONS(5304), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322167,17 +322230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135538] = 5, + [135596] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3632), 1, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5248), 17, + ACTIONS(5258), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322195,17 +322258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135571] = 5, + [135629] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3633), 1, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5302), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5248), 17, + ACTIONS(5304), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322223,17 +322286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135604] = 5, + [135662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3634), 1, sym_comment, - ACTIONS(5162), 2, + ACTIONS(5266), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5164), 17, + ACTIONS(5268), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322251,17 +322314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135637] = 5, + [135695] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3635), 1, sym_comment, - ACTIONS(5162), 2, + ACTIONS(5252), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5164), 17, + ACTIONS(5254), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322279,17 +322342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135670] = 5, + [135728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3636), 1, sym_comment, - ACTIONS(4964), 2, + ACTIONS(5097), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4966), 17, + ACTIONS(5099), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322307,17 +322370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135703] = 5, + [135761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3637), 1, sym_comment, - ACTIONS(5162), 2, + ACTIONS(5097), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5164), 17, + ACTIONS(5099), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322335,17 +322398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135736] = 5, + [135794] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3638), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(5266), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4879), 17, + ACTIONS(5268), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322363,17 +322426,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135769] = 5, + [135827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3639), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(5252), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5254), 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, + [135860] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3640), 1, + sym_comment, + ACTIONS(5213), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5215), 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, + [135893] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3641), 1, + sym_comment, + ACTIONS(5097), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4879), 17, + ACTIONS(5099), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322391,175 +322510,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [135802] = 16, + [135926] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6992), 1, - sym_identifier, ACTIONS(6994), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(6996), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(6998), 1, - anon_sym_LBRACE, + anon_sym_type, ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7002), 1, anon_sym_typeof, - STATE(3640), 1, + STATE(3642), 1, sym_comment, - STATE(5578), 1, + STATE(5486), 1, sym_import_require_clause, - STATE(5579), 1, + STATE(5490), 1, sym_string, - STATE(6559), 1, + STATE(6543), 1, sym__import_identifier, - STATE(6676), 1, + STATE(6968), 1, sym_import_clause, - STATE(7302), 2, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [135856] = 16, + [135980] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7004), 1, - sym_identifier, ACTIONS(7006), 1, - anon_sym_type, + sym_identifier, ACTIONS(7008), 1, + anon_sym_type, + ACTIONS(7010), 1, anon_sym_typeof, - STATE(3641), 1, + STATE(3643), 1, sym_comment, - STATE(5436), 1, - sym_string, - STATE(5439), 1, + STATE(5540), 1, sym_import_require_clause, - STATE(6558), 1, - sym_import_clause, - STATE(6559), 1, + STATE(5541), 1, + sym_string, + STATE(6543), 1, sym__import_identifier, - STATE(7302), 2, + STATE(6682), 1, + sym_import_clause, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [135910] = 19, + [136034] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7012), 1, - anon_sym_EQ, ACTIONS(7014), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(7016), 1, - anon_sym_COMMA, + anon_sym_LBRACE, ACTIONS(7018), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(7020), 1, + anon_sym_COLON, + ACTIONS(7022), 1, anon_sym_GT, - ACTIONS(7023), 1, - anon_sym_DOT, ACTIONS(7025), 1, - anon_sym_SLASH_GT, + anon_sym_DOT, ACTIONS(7027), 1, + anon_sym_SLASH_GT, + ACTIONS(7029), 1, anon_sym_LT, + ACTIONS(7031), 1, + anon_sym_extends, + STATE(3644), 1, + sym_comment, + STATE(4226), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4227), 1, + sym_type_arguments, + STATE(4734), 1, + sym_jsx_namespace_name, + STATE(5505), 1, + sym_constraint, + STATE(6974), 1, + sym_default_type, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136094] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_EQ, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7018), 1, + anon_sym_COMMA, + ACTIONS(7020), 1, + anon_sym_COLON, + ACTIONS(7022), 1, + anon_sym_GT, + ACTIONS(7025), 1, + anon_sym_DOT, ACTIONS(7029), 1, + anon_sym_LT, + ACTIONS(7031), 1, anon_sym_extends, - STATE(3642), 1, + ACTIONS(7033), 1, + anon_sym_SLASH_GT, + STATE(3645), 1, sym_comment, - STATE(4281), 1, + STATE(4092), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4300), 1, + STATE(4093), 1, sym_type_arguments, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - STATE(5617), 1, + STATE(5505), 1, sym_constraint, - STATE(6886), 1, + STATE(6974), 1, sym_default_type, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [135970] = 16, + [136154] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7035), 1, sym_identifier, - ACTIONS(7033), 1, + ACTIONS(7037), 1, anon_sym_type, - ACTIONS(7035), 1, + ACTIONS(7039), 1, anon_sym_typeof, - STATE(3643), 1, + STATE(3646), 1, sym_comment, - STATE(5413), 1, + STATE(5441), 1, sym_string, - STATE(5414), 1, + STATE(5442), 1, sym_import_require_clause, - STATE(6559), 1, + STATE(6543), 1, sym__import_identifier, - STATE(6821), 1, + STATE(6874), 1, sym_import_clause, - STATE(7302), 2, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136024] = 8, + [136208] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4807), 1, + ACTIONS(4821), 1, anon_sym_EQ, - ACTIONS(6978), 1, + ACTIONS(6984), 1, anon_sym_LT, - ACTIONS(6988), 1, + ACTIONS(6990), 1, anon_sym_DOT, - STATE(3644), 1, + STATE(3647), 1, sym_comment, - STATE(3786), 1, + STATE(3695), 1, sym_type_arguments, ACTIONS(4202), 14, anon_sym_as, @@ -322576,145 +322736,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136062] = 16, + [136246] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7037), 1, + ACTIONS(7041), 1, sym_identifier, - ACTIONS(7039), 1, + ACTIONS(7043), 1, anon_sym_type, - ACTIONS(7041), 1, + ACTIONS(7045), 1, anon_sym_typeof, - STATE(3645), 1, + STATE(3648), 1, sym_comment, - STATE(5542), 1, - sym_import_require_clause, - STATE(5545), 1, + STATE(5574), 1, sym_string, - STATE(6559), 1, + STATE(5575), 1, + sym_import_require_clause, + STATE(6543), 1, sym__import_identifier, - STATE(6918), 1, + STATE(6914), 1, sym_import_clause, - STATE(7302), 2, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136116] = 16, + [136300] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7043), 1, + ACTIONS(7047), 1, sym_identifier, - ACTIONS(7045), 1, + ACTIONS(7049), 1, anon_sym_type, - ACTIONS(7047), 1, + ACTIONS(7051), 1, anon_sym_typeof, - STATE(3646), 1, + STATE(3649), 1, sym_comment, - STATE(5526), 1, + STATE(5553), 1, sym_import_require_clause, - STATE(5569), 1, + STATE(5622), 1, sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6808), 1, + STATE(6540), 1, sym_import_clause, - STATE(7302), 2, + STATE(6543), 1, + sym__import_identifier, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [136170] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7012), 1, - anon_sym_EQ, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7016), 1, - anon_sym_COMMA, - ACTIONS(7018), 1, - anon_sym_COLON, - ACTIONS(7020), 1, - anon_sym_GT, - ACTIONS(7023), 1, - anon_sym_DOT, - ACTIONS(7027), 1, - anon_sym_LT, - ACTIONS(7029), 1, - anon_sym_extends, - ACTIONS(7049), 1, - anon_sym_SLASH_GT, - STATE(3647), 1, - sym_comment, - STATE(4172), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4176), 1, - sym_type_arguments, - STATE(4832), 1, - sym_jsx_namespace_name, - STATE(5617), 1, - sym_constraint, - STATE(6886), 1, - sym_default_type, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [136230] = 11, + [136354] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4813), 1, + ACTIONS(4805), 1, anon_sym_PIPE, - ACTIONS(7051), 1, - anon_sym_DOT, ACTIONS(7053), 1, - anon_sym_QMARK_DOT, + anon_sym_DOT, ACTIONS(7055), 1, + anon_sym_QMARK_DOT, + ACTIONS(7057), 1, anon_sym_LT, - STATE(3648), 1, + STATE(3650), 1, sym_comment, - STATE(3874), 1, + STATE(3852), 1, sym_arguments, - STATE(4028), 1, + STATE(4015), 1, sym_type_arguments, - ACTIONS(4815), 10, + ACTIONS(4807), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -322725,42 +322844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [136273] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3649), 1, - sym_comment, - ACTIONS(5202), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5204), 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, - [136304] = 5, + [136397] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, + ACTIONS(4969), 1, anon_sym_EQ, - STATE(3650), 1, + STATE(3651), 1, sym_comment, - ACTIONS(5292), 16, + ACTIONS(4971), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322777,21 +322870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136335] = 5, + [136428] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2247), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, + ACTIONS(5190), 1, anon_sym_EQ, - STATE(3651), 1, + STATE(3652), 1, sym_comment, - ACTIONS(5284), 16, + ACTIONS(5192), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -322800,51 +322894,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [136366] = 5, + [136461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, - anon_sym_EQ, - STATE(3652), 1, + STATE(3653), 1, sym_comment, - ACTIONS(5108), 16, + ACTIONS(4957), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4959), 15, 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_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [136397] = 5, + [136492] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, + ACTIONS(3186), 1, anon_sym_EQ, - STATE(3653), 1, + STATE(3654), 1, sym_comment, - ACTIONS(5156), 16, + ACTIONS(3568), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322852,19 +322947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136428] = 5, + [136523] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5033), 1, anon_sym_EQ, - STATE(3654), 1, + STATE(3655), 1, sym_comment, - ACTIONS(5280), 16, + ACTIONS(5035), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322881,16 +322975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136459] = 5, + [136554] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, + ACTIONS(5029), 1, anon_sym_EQ, - STATE(3655), 1, + STATE(3656), 1, sym_comment, - ACTIONS(5156), 16, + ACTIONS(5031), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322907,25 +323001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136490] = 7, + [136585] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7057), 1, - anon_sym_DOT, - ACTIONS(7059), 1, - anon_sym_QMARK_DOT, - STATE(3656), 1, - sym_comment, - ACTIONS(4987), 2, + ACTIONS(5025), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4989), 13, + STATE(3657), 1, + sym_comment, + ACTIONS(5027), 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, @@ -322934,17 +323024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [136525] = 5, + [136616] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5210), 1, + ACTIONS(4985), 1, anon_sym_EQ, - STATE(3657), 1, + STATE(3658), 1, sym_comment, - ACTIONS(5212), 16, + ACTIONS(4987), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -322961,23 +323053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136556] = 5, + [136647] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3232), 1, - anon_sym_EQ, - STATE(3658), 1, + ACTIONS(7059), 1, + anon_sym_DOT, + ACTIONS(7061), 1, + anon_sym_QMARK_DOT, + STATE(3659), 1, sym_comment, - ACTIONS(3506), 16, + ACTIONS(5290), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5292), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322985,19 +323080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [136587] = 5, + [136682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3659), 1, + STATE(3660), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(4981), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5218), 15, + ACTIONS(4983), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323013,16 +323107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [136618] = 5, + [136713] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2183), 1, + ACTIONS(2205), 1, anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3660), 1, + STATE(3661), 1, sym_comment, - ACTIONS(2185), 16, + ACTIONS(2207), 16, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -323039,16 +323133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [136649] = 5, + [136744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, + ACTIONS(5349), 1, anon_sym_EQ, - STATE(3661), 1, + STATE(3662), 1, sym_comment, - ACTIONS(5108), 16, + ACTIONS(5351), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323065,25 +323159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136680] = 7, + [136775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(3200), 1, anon_sym_EQ, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(3662), 1, + STATE(3663), 1, sym_comment, - STATE(3690), 1, - sym_type_arguments, - ACTIONS(4857), 14, + ACTIONS(3536), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323093,50 +323185,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136715] = 6, + [136806] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2239), 1, - anon_sym_DOT, + ACTIONS(2249), 1, + anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, - anon_sym_EQ, - STATE(3663), 1, + STATE(3664), 1, sym_comment, - ACTIONS(5256), 15, - anon_sym_as, + ACTIONS(2251), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_with, + anon_sym_BANG, + anon_sym_LPAREN, + 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, anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [136748] = 6, + anon_sym_PIPE_RBRACE, + [136837] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2235), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, + ACTIONS(3232), 1, anon_sym_EQ, - STATE(3664), 1, + STATE(3665), 1, sym_comment, - ACTIONS(5256), 15, + ACTIONS(3448), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323144,84 +323235,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [136781] = 11, + [136868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(4833), 1, - anon_sym_PIPE, - ACTIONS(7055), 1, - anon_sym_LT, - ACTIONS(7061), 1, - anon_sym_DOT, - ACTIONS(7063), 1, - anon_sym_QMARK_DOT, - STATE(3665), 1, - sym_comment, - STATE(3877), 1, - sym_arguments, - STATE(4026), 1, - sym_type_arguments, - ACTIONS(4835), 10, - sym__automatic_semicolon, + ACTIONS(3222), 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, - [136824] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(3666), 1, sym_comment, - ACTIONS(5176), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5178), 15, + ACTIONS(3438), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, 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_QMARK, anon_sym_extends, - [136855] = 5, + [136899] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3228), 1, + ACTIONS(4855), 1, anon_sym_EQ, + ACTIONS(6984), 1, + anon_sym_LT, STATE(3667), 1, sym_comment, - ACTIONS(3518), 16, + STATE(3703), 1, + sym_type_arguments, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323231,16 +323291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136886] = 5, + [136934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, + ACTIONS(4935), 1, anon_sym_EQ, STATE(3668), 1, sym_comment, - ACTIONS(5351), 16, + ACTIONS(4937), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323257,42 +323317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136917] = 5, + [136965] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3230), 1, + ACTIONS(4949), 1, anon_sym_EQ, STATE(3669), 1, sym_comment, - ACTIONS(3508), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, - 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, - [136948] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5353), 1, - anon_sym_EQ, - STATE(3670), 1, - sym_comment, - ACTIONS(5355), 16, + ACTIONS(4951), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323309,16 +323343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136979] = 5, + [136996] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5357), 1, + ACTIONS(4969), 1, anon_sym_EQ, - STATE(3671), 1, + STATE(3670), 1, sym_comment, - ACTIONS(5359), 16, + ACTIONS(4971), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323335,28 +323369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [137010] = 11, + [137027] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4147), 1, - anon_sym_PIPE, ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4161), 1, + ACTIONS(4799), 1, + anon_sym_PIPE, + ACTIONS(7057), 1, + anon_sym_LT, + ACTIONS(7063), 1, anon_sym_DOT, - ACTIONS(4163), 1, + ACTIONS(7065), 1, anon_sym_QMARK_DOT, - ACTIONS(7055), 1, - anon_sym_LT, - STATE(3672), 1, + STATE(3671), 1, sym_comment, - STATE(3879), 1, + STATE(3850), 1, sym_arguments, - STATE(4025), 1, + STATE(4022), 1, sym_type_arguments, - ACTIONS(4143), 10, + ACTIONS(4801), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -323367,16 +323401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [137053] = 5, + [137070] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3222), 1, + ACTIONS(3210), 1, anon_sym_EQ, - STATE(3673), 1, + STATE(3672), 1, sym_comment, - ACTIONS(3540), 16, + ACTIONS(3420), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323393,49 +323427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137084] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2251), 1, - anon_sym_PIPE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3674), 1, - sym_comment, - ACTIONS(2253), 16, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - 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, - [137115] = 5, + [137101] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3236), 1, + ACTIONS(5327), 1, anon_sym_EQ, - STATE(3675), 1, + STATE(3673), 1, sym_comment, - ACTIONS(3570), 16, + ACTIONS(5329), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323443,95 +323450,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [137146] = 6, + [137132] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_EQ, - ACTIONS(6990), 1, - anon_sym_is, - STATE(3676), 1, - sym_comment, - ACTIONS(4843), 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, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4165), 1, + anon_sym_QMARK_DOT, + ACTIONS(4167), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137178] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4845), 1, - anon_sym_EQ, - STATE(3677), 1, + ACTIONS(7057), 1, + anon_sym_LT, + STATE(3674), 1, sym_comment, - ACTIONS(4847), 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, - [137208] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4871), 1, + STATE(3867), 1, + sym_arguments, + STATE(4003), 1, + sym_type_arguments, + ACTIONS(4157), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6990), 1, - anon_sym_is, - STATE(3678), 1, - sym_comment, - ACTIONS(4873), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, 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_QMARK, anon_sym_extends, - [137240] = 5, + anon_sym_PIPE_RBRACE, + [137175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1972), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3679), 1, + STATE(3675), 1, sym_comment, - ACTIONS(2030), 15, + ACTIONS(5055), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5057), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323541,28 +323505,27 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK, anon_sym_extends, - anon_sym_is, - [137270] = 6, + [137206] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, + ACTIONS(4949), 1, anon_sym_EQ, - ACTIONS(7065), 1, - anon_sym_is, - STATE(3680), 1, + STATE(3676), 1, sym_comment, - ACTIONS(4857), 14, + ACTIONS(4951), 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, @@ -323571,67 +323534,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [137302] = 6, + [137237] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2087), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, + ACTIONS(5190), 1, anon_sym_EQ, - ACTIONS(7067), 1, - anon_sym_LBRACK, - STATE(3681), 1, + STATE(3677), 1, sym_comment, - ACTIONS(4883), 13, + ACTIONS(5192), 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, - [137333] = 5, + [137270] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5166), 1, - anon_sym_PIPE, - STATE(3682), 1, - sym_comment, - ACTIONS(5168), 14, - sym__automatic_semicolon, + ACTIONS(1980), 1, 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, - [137362] = 5, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, - anon_sym_EQ, - STATE(3683), 1, + STATE(3678), 1, sym_comment, - ACTIONS(5007), 14, + ACTIONS(2030), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323646,16 +323588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137391] = 5, + anon_sym_is, + [137300] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5060), 1, + ACTIONS(4843), 1, anon_sym_EQ, - STATE(3684), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3679), 1, sym_comment, - ACTIONS(5062), 14, + ACTIONS(4845), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323670,22 +323615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137420] = 8, + [137332] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5060), 1, + ACTIONS(4851), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(3685), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3680), 1, sym_comment, - ACTIONS(5062), 11, + ACTIONS(4853), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323696,75 +323637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_QMARK, - [137455] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7075), 1, - anon_sym_LPAREN, - ACTIONS(7077), 1, - anon_sym_DOT, - ACTIONS(7079), 1, - anon_sym_QMARK_DOT, - ACTIONS(7081), 1, - anon_sym_LT, - STATE(3686), 1, - sym_comment, - STATE(4001), 1, - sym_arguments, - STATE(4124), 1, - sym_type_arguments, - ACTIONS(4815), 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, - [137494] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7075), 1, - anon_sym_LPAREN, - ACTIONS(7081), 1, - anon_sym_LT, - ACTIONS(7083), 1, - anon_sym_DOT, - ACTIONS(7085), 1, - anon_sym_QMARK_DOT, - STATE(3687), 1, - sym_comment, - STATE(4007), 1, - sym_arguments, - STATE(4129), 1, - sym_type_arguments, - ACTIONS(4835), 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_QMARK, anon_sym_extends, - [137533] = 5, + [137364] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5086), 1, + ACTIONS(4855), 1, anon_sym_EQ, - STATE(3688), 1, + ACTIONS(7067), 1, + anon_sym_is, + STATE(3681), 1, sym_comment, - ACTIONS(5088), 14, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323779,16 +323667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137562] = 5, + [137396] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5090), 1, + ACTIONS(4871), 1, anon_sym_EQ, - STATE(3689), 1, + STATE(3682), 1, sym_comment, - ACTIONS(5092), 14, + ACTIONS(4873), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323803,50 +323691,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137591] = 5, + anon_sym_is, + [137426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5150), 1, - anon_sym_EQ, - STATE(3690), 1, + STATE(3683), 1, sym_comment, - ACTIONS(5152), 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, - [137620] = 10, + ACTIONS(7069), 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, + [137453] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7093), 1, + ACTIONS(7077), 1, sym_number, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - STATE(3691), 1, + STATE(3684), 1, sym_comment, - STATE(7179), 1, - sym_predefined_type, - STATE(7183), 1, + STATE(7479), 2, sym_string, - ACTIONS(7091), 9, + sym_predefined_type, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -323856,43 +323743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137659] = 6, + [137490] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5120), 1, + ACTIONS(5278), 1, anon_sym_EQ, - ACTIONS(7067), 1, - anon_sym_LBRACK, - STATE(3692), 1, - sym_comment, - ACTIONS(5122), 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, + ACTIONS(7081), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137690] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5114), 1, - anon_sym_EQ, - ACTIONS(7097), 1, - anon_sym_extends, - STATE(3693), 1, + STATE(3685), 1, sym_comment, - ACTIONS(5116), 13, + ACTIONS(5280), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -323900,89 +323762,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137721] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7099), 1, - sym_number, - STATE(3694), 1, - sym_comment, - STATE(7470), 1, - sym_predefined_type, - STATE(7473), 1, - sym_string, - ACTIONS(7091), 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, - [137760] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7101), 1, - sym_number, - STATE(3695), 1, - sym_comment, - STATE(7115), 1, - sym_string, - STATE(7117), 1, - sym_predefined_type, - ACTIONS(7091), 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, - [137799] = 9, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [137521] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7103), 1, + ACTIONS(7083), 1, sym_number, - STATE(3696), 1, + STATE(3686), 1, sym_comment, - STATE(7047), 2, - sym_string, + STATE(7013), 1, sym_predefined_type, - ACTIONS(7091), 9, + STATE(7014), 1, + sym_string, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -323992,26 +323797,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137836] = 10, + [137560] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7105), 1, + ACTIONS(7085), 1, sym_number, - STATE(3697), 1, + STATE(3687), 1, sym_comment, - STATE(7110), 1, - sym_string, - STATE(7111), 1, + STATE(7008), 1, sym_predefined_type, - ACTIONS(7091), 9, + STATE(7009), 1, + sym_string, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324021,26 +323826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137875] = 10, + [137599] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7107), 1, + ACTIONS(7087), 1, sym_number, - STATE(3698), 1, + STATE(3688), 1, sym_comment, - STATE(7072), 1, - sym_string, - STATE(7107), 1, + STATE(7004), 1, sym_predefined_type, - ACTIONS(7091), 9, + STATE(7005), 1, + sym_string, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324050,52 +323855,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137914] = 7, + [137638] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5082), 1, - anon_sym_EQ, - ACTIONS(7067), 1, - anon_sym_LBRACK, - STATE(3699), 1, + ACTIONS(7089), 1, + anon_sym_LPAREN, + ACTIONS(7091), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + anon_sym_QMARK_DOT, + ACTIONS(7095), 1, + anon_sym_LT, + STATE(3689), 1, sym_comment, - ACTIONS(4883), 3, + STATE(4029), 1, + sym_arguments, + STATE(4280), 1, + sym_type_arguments, + ACTIONS(4801), 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, - ACTIONS(5084), 10, - anon_sym_as, + [137677] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7089), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + anon_sym_LT, + ACTIONS(7097), 1, + anon_sym_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK_DOT, + STATE(3690), 1, + sym_comment, + STATE(3972), 1, + sym_arguments, + STATE(4178), 1, + sym_type_arguments, + ACTIONS(4807), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [137947] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137716] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7109), 1, + ACTIONS(7101), 1, sym_number, - STATE(3700), 1, + STATE(3691), 1, sym_comment, - STATE(7188), 1, - sym_predefined_type, - STATE(7190), 1, + STATE(7018), 2, sym_string, - ACTIONS(7091), 9, + sym_predefined_type, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324105,22 +323941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137986] = 8, + [137753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5074), 1, + ACTIONS(4965), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(3701), 1, + STATE(3692), 1, sym_comment, - ACTIONS(5076), 11, + ACTIONS(4967), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324131,49 +323961,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [138021] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3702), 1, - sym_comment, - ACTIONS(7111), 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, - [138048] = 9, + anon_sym_extends, + [137782] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7113), 1, + ACTIONS(7103), 1, sym_number, - STATE(3703), 1, + STATE(3693), 1, sym_comment, - STATE(7093), 2, + STATE(7105), 2, sym_string, sym_predefined_type, - ACTIONS(7091), 9, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324183,47 +323993,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [138085] = 10, + [137819] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7115), 1, - sym_number, - STATE(3704), 1, + ACTIONS(5361), 1, + anon_sym_EQ, + STATE(3694), 1, sym_comment, - STATE(7374), 1, - sym_string, - STATE(7478), 1, - sym_predefined_type, - ACTIONS(7091), 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, - [138124] = 6, + ACTIONS(5363), 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, + [137848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + ACTIONS(5353), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - STATE(3705), 1, + STATE(3695), 1, sym_comment, - ACTIONS(5027), 13, + ACTIONS(5355), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324234,58 +324037,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138155] = 10, + [137877] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7117), 1, - sym_number, - STATE(3706), 1, - sym_comment, - STATE(7460), 1, - sym_predefined_type, - STATE(7463), 1, - sym_string, - ACTIONS(7091), 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, - [138194] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7075), 1, anon_sym_LPAREN, - ACTIONS(7081), 1, + ACTIONS(7095), 1, anon_sym_LT, - ACTIONS(7119), 1, + ACTIONS(7105), 1, anon_sym_DOT, - ACTIONS(7121), 1, + ACTIONS(7107), 1, anon_sym_QMARK_DOT, - STATE(3707), 1, + STATE(3696), 1, sym_comment, - STATE(4009), 1, + STATE(3994), 1, sym_arguments, - STATE(4133), 1, + STATE(4219), 1, sym_type_arguments, - ACTIONS(4143), 9, + ACTIONS(4157), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -324295,22 +324070,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138233] = 8, + [137916] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5078), 1, + ACTIONS(5072), 1, anon_sym_EQ, - ACTIONS(7069), 1, + STATE(3697), 1, + sym_comment, + ACTIONS(5074), 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, - ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + anon_sym_QMARK, anon_sym_extends, - STATE(3708), 1, + [137945] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5345), 1, + anon_sym_EQ, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3698), 1, sym_comment, - ACTIONS(5080), 11, + ACTIONS(5347), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324322,39 +324121,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [138268] = 4, + [137980] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3709), 1, + ACTIONS(5341), 1, + anon_sym_EQ, + ACTIONS(7113), 1, + anon_sym_LBRACK, + STATE(3699), 1, sym_comment, - ACTIONS(7123), 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, - [138295] = 5, + ACTIONS(5061), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5343), 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, + [138013] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5041), 1, + ACTIONS(5335), 1, anon_sym_EQ, - STATE(3710), 1, + ACTIONS(7115), 1, + anon_sym_extends, + STATE(3700), 1, sym_comment, - ACTIONS(5043), 14, + ACTIONS(5337), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324368,63 +324172,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [138324] = 4, + [138044] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3711), 1, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(7113), 1, + anon_sym_LBRACK, + STATE(3701), 1, sym_comment, - ACTIONS(7125), 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, - [138351] = 4, + ACTIONS(5333), 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, + [138075] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3712), 1, + ACTIONS(5059), 1, + anon_sym_EQ, + ACTIONS(7113), 1, + anon_sym_LBRACK, + STATE(3702), 1, sym_comment, - ACTIONS(7127), 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, - [138378] = 5, + ACTIONS(5061), 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, + [138106] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5198), 1, + ACTIONS(5308), 1, anon_sym_EQ, - STATE(3713), 1, + STATE(3703), 1, sym_comment, - ACTIONS(5200), 14, + ACTIONS(5310), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324439,96 +324246,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138407] = 4, + [138135] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3714), 1, + ACTIONS(5170), 1, + anon_sym_EQ, + STATE(3704), 1, sym_comment, - ACTIONS(7129), 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, - [138434] = 10, + ACTIONS(5172), 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, + [138164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7131), 1, - sym_number, - STATE(3715), 1, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(3705), 1, sym_comment, - STATE(7199), 1, - sym_predefined_type, - STATE(7212), 1, - sym_string, - ACTIONS(7091), 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, - [138473] = 9, + ACTIONS(5061), 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, + [138193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7133), 1, - sym_number, - STATE(3716), 1, + ACTIONS(4851), 1, + anon_sym_EQ, + STATE(3706), 1, sym_comment, - STATE(7257), 2, - sym_string, - sym_predefined_type, - ACTIONS(7091), 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, - [138510] = 5, + ACTIONS(4853), 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, + [138222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, + ACTIONS(4993), 1, anon_sym_EQ, - STATE(3717), 1, + STATE(3707), 1, sym_comment, - ACTIONS(5003), 14, + ACTIONS(4995), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324543,16 +324342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138539] = 5, + [138251] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5206), 1, + ACTIONS(5182), 1, anon_sym_EQ, - STATE(3718), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3708), 1, sym_comment, - ACTIONS(5208), 14, + ACTIONS(5184), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324563,20 +324368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [138568] = 5, + [138286] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5070), 1, + ACTIONS(5049), 1, anon_sym_EQ, - STATE(3719), 1, + STATE(3709), 1, sym_comment, - ACTIONS(5072), 14, + ACTIONS(5051), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324591,16 +324393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138597] = 5, + [138315] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5220), 1, + ACTIONS(5076), 1, anon_sym_EQ, - STATE(3720), 1, + STATE(3710), 1, sym_comment, - ACTIONS(5222), 14, + ACTIONS(5078), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324615,14 +324417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138626] = 4, + [138344] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3721), 1, + STATE(3711), 1, sym_comment, - ACTIONS(7135), 15, + ACTIONS(7117), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -324638,16 +324440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [138653] = 5, + [138371] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4997), 1, + ACTIONS(4931), 1, anon_sym_EQ, - STATE(3722), 1, + STATE(3712), 1, sym_comment, - ACTIONS(4999), 14, + ACTIONS(4933), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324662,73 +324464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138682] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7137), 1, - sym_number, - STATE(3723), 1, - sym_comment, - STATE(7141), 2, - sym_string, - sym_predefined_type, - ACTIONS(7091), 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, - [138719] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7139), 1, - sym_number, - STATE(3724), 1, - sym_comment, - STATE(7134), 1, - sym_predefined_type, - STATE(7139), 1, - sym_string, - ACTIONS(7091), 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, - [138758] = 5, + [138400] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5236), 1, + ACTIONS(4855), 1, anon_sym_EQ, - STATE(3725), 1, + STATE(3713), 1, sym_comment, - ACTIONS(5238), 14, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324743,16 +324488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138787] = 5, + [138429] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5240), 1, + ACTIONS(5043), 1, anon_sym_EQ, - STATE(3726), 1, + STATE(3714), 1, sym_comment, - ACTIONS(5242), 14, + ACTIONS(5045), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324767,16 +324512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138816] = 5, + [138458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5228), 1, + ACTIONS(5166), 1, anon_sym_EQ, - STATE(3727), 1, + STATE(3715), 1, sym_comment, - ACTIONS(5230), 14, + ACTIONS(5168), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324791,16 +324536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138845] = 5, + [138487] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(5162), 1, anon_sym_EQ, - STATE(3728), 1, + STATE(3716), 1, sym_comment, - ACTIONS(5312), 14, + ACTIONS(5164), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324815,16 +324560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138874] = 5, + [138516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, + ACTIONS(4989), 1, anon_sym_EQ, - STATE(3729), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + STATE(3717), 1, sym_comment, - ACTIONS(5031), 14, + ACTIONS(4991), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324835,20 +324582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138903] = 5, + [138547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5266), 1, + ACTIONS(4973), 1, anon_sym_EQ, - STATE(3730), 1, + STATE(3718), 1, sym_comment, - ACTIONS(5268), 14, + ACTIONS(4975), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324863,22 +324609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138932] = 8, + [138576] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5266), 1, + ACTIONS(5086), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(3731), 1, + STATE(3719), 1, sym_comment, - ACTIONS(5268), 11, + ACTIONS(5088), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324889,15 +324629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [138967] = 5, + anon_sym_extends, + [138605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(5286), 1, anon_sym_EQ, - STATE(3732), 1, + STATE(3720), 1, sym_comment, ACTIONS(5288), 14, anon_sym_as, @@ -324914,26 +324657,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138996] = 10, + [138634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + STATE(3721), 1, + sym_comment, + ACTIONS(7119), 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, + [138661] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3722), 1, + sym_comment, + ACTIONS(7121), 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, + [138688] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5097), 1, + anon_sym_PIPE, + STATE(3723), 1, + sym_comment, + ACTIONS(5099), 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, + [138717] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5097), 1, + anon_sym_PIPE, + STATE(3724), 1, + sym_comment, + ACTIONS(5099), 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, + [138746] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5097), 1, + anon_sym_PIPE, + STATE(3725), 1, + sym_comment, + ACTIONS(5099), 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, + [138775] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3726), 1, + sym_comment, + ACTIONS(7123), 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, + [138802] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4821), 1, + anon_sym_PIPE, + ACTIONS(7057), 1, + anon_sym_LT, + ACTIONS(7125), 1, + anon_sym_DOT, + ACTIONS(7127), 1, + anon_sym_is, + STATE(3727), 1, + sym_comment, + STATE(4010), 1, + sym_type_arguments, + ACTIONS(4202), 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, + [138839] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3728), 1, + sym_comment, + ACTIONS(7129), 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, + [138866] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7141), 1, + ACTIONS(7131), 1, sym_number, - STATE(3733), 1, + STATE(3729), 1, sym_comment, - STATE(7125), 1, + STATE(7201), 2, + sym_string, sym_predefined_type, - STATE(7132), 1, + ACTIONS(7075), 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, + [138903] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7133), 1, + sym_number, + STATE(3730), 1, + sym_comment, + STATE(7203), 1, sym_string, - ACTIONS(7091), 9, + STATE(7204), 1, + sym_predefined_type, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -324943,18 +324906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139035] = 6, + [138942] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5294), 1, + ACTIONS(4977), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - STATE(3734), 1, + STATE(3731), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(4979), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -324965,43 +324926,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139066] = 5, + [138971] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5304), 1, - anon_sym_EQ, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7135), 1, + sym_number, + STATE(3732), 1, + sym_comment, + STATE(7208), 1, + sym_string, + STATE(7210), 1, + sym_predefined_type, + ACTIONS(7075), 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, + [139010] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7137), 1, + sym_number, + STATE(3733), 1, + sym_comment, + STATE(7484), 2, + sym_string, + sym_predefined_type, + ACTIONS(7075), 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, + [139047] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3734), 1, + sym_comment, + ACTIONS(7139), 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, + [139074] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7141), 1, + sym_number, STATE(3735), 1, sym_comment, - ACTIONS(5306), 14, - anon_sym_as, + STATE(7217), 1, + sym_string, + STATE(7227), 1, + sym_predefined_type, + ACTIONS(7075), 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, + [139113] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7143), 1, + sym_number, + STATE(3736), 1, + sym_comment, + STATE(7230), 1, + sym_string, + STATE(7356), 1, + sym_predefined_type, + ACTIONS(7075), 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, + [139152] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5101), 1, + anon_sym_PIPE, + STATE(3737), 1, + sym_comment, + ACTIONS(5103), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [139181] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5113), 1, anon_sym_PIPE, - anon_sym_QMARK, + STATE(3738), 1, + sym_comment, + ACTIONS(5115), 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, - [139095] = 5, + anon_sym_PIPE_RBRACE, + [139210] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5162), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7145), 1, + sym_number, + STATE(3739), 1, + sym_comment, + STATE(7466), 1, + sym_predefined_type, + STATE(7469), 1, + sym_string, + ACTIONS(7075), 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, + [139249] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5147), 1, anon_sym_PIPE, - STATE(3736), 1, + STATE(3740), 1, sym_comment, - ACTIONS(5164), 14, + ACTIONS(5149), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325016,16 +325169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139124] = 5, + [139278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_PIPE, - STATE(3737), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5160), 14, + ACTIONS(5153), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325040,16 +325193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139153] = 5, + [139307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5128), 1, + ACTIONS(5209), 1, anon_sym_PIPE, - STATE(3738), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5130), 14, + ACTIONS(5211), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325064,16 +325217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139182] = 5, + [139336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5124), 1, + ACTIONS(5213), 1, anon_sym_PIPE, - STATE(3739), 1, + STATE(3743), 1, sym_comment, - ACTIONS(5126), 14, + ACTIONS(5215), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325088,16 +325241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139211] = 5, + [139365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5128), 1, + ACTIONS(5209), 1, anon_sym_PIPE, - STATE(3740), 1, + STATE(3744), 1, sym_comment, - ACTIONS(5130), 14, + ACTIONS(5211), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325112,16 +325265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139240] = 5, + [139394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5124), 1, + ACTIONS(5213), 1, anon_sym_PIPE, - STATE(3741), 1, + STATE(3745), 1, sym_comment, - ACTIONS(5126), 14, + ACTIONS(5215), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325136,16 +325289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139269] = 5, + [139423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5110), 1, + ACTIONS(5252), 1, anon_sym_PIPE, - STATE(3742), 1, + STATE(3746), 1, sym_comment, - ACTIONS(5112), 14, + ACTIONS(5254), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325160,16 +325313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139298] = 5, + [139452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5102), 1, + ACTIONS(5266), 1, anon_sym_PIPE, - STATE(3743), 1, + STATE(3747), 1, sym_comment, - ACTIONS(5104), 14, + ACTIONS(5268), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325184,16 +325337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139327] = 5, + [139481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5110), 1, + ACTIONS(5252), 1, anon_sym_PIPE, - STATE(3744), 1, + STATE(3748), 1, sym_comment, - ACTIONS(5112), 14, + ACTIONS(5254), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325208,16 +325361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139356] = 5, + [139510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5102), 1, + ACTIONS(5266), 1, anon_sym_PIPE, - STATE(3745), 1, + STATE(3749), 1, sym_comment, - ACTIONS(5104), 14, + ACTIONS(5268), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325232,16 +325385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139385] = 5, + [139539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5098), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - STATE(3746), 1, + STATE(3750), 1, sym_comment, - ACTIONS(5100), 14, + ACTIONS(5304), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325256,16 +325409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139414] = 5, + [139568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5094), 1, + ACTIONS(5256), 1, anon_sym_PIPE, - STATE(3747), 1, + STATE(3751), 1, sym_comment, - ACTIONS(5096), 14, + ACTIONS(5258), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325280,16 +325433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139443] = 5, + [139597] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5098), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - STATE(3748), 1, + STATE(3752), 1, sym_comment, - ACTIONS(5100), 14, + ACTIONS(5304), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325304,16 +325457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139472] = 5, + [139626] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5094), 1, + ACTIONS(5256), 1, anon_sym_PIPE, - STATE(3749), 1, + STATE(3753), 1, sym_comment, - ACTIONS(5096), 14, + ACTIONS(5258), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325328,50 +325481,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139501] = 5, + [139655] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4972), 1, - anon_sym_EQ, - STATE(3750), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7147), 1, + sym_number, + STATE(3754), 1, sym_comment, - ACTIONS(4974), 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, - [139530] = 10, + STATE(7462), 1, + sym_predefined_type, + STATE(7463), 1, + sym_string, + ACTIONS(7075), 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, + [139694] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7143), 1, + ACTIONS(7149), 1, sym_number, - STATE(3751), 1, + STATE(3755), 1, sym_comment, - STATE(7118), 1, + STATE(7454), 1, sym_predefined_type, - STATE(7119), 1, + STATE(7458), 1, sym_string, - ACTIONS(7091), 9, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325381,16 +325539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139569] = 5, + [139733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5246), 1, + ACTIONS(5101), 1, anon_sym_PIPE, - STATE(3752), 1, + STATE(3756), 1, sym_comment, - ACTIONS(5248), 14, + ACTIONS(5103), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325405,40 +325563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139598] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4855), 1, - anon_sym_EQ, - STATE(3753), 1, - sym_comment, - ACTIONS(4857), 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, - [139627] = 5, + [139762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5246), 1, + ACTIONS(5101), 1, anon_sym_PIPE, - STATE(3754), 1, + STATE(3757), 1, sym_comment, - ACTIONS(5248), 14, + ACTIONS(5103), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325453,16 +325587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139656] = 5, + [139791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5246), 1, + ACTIONS(5113), 1, anon_sym_PIPE, - STATE(3755), 1, + STATE(3758), 1, sym_comment, - ACTIONS(5248), 14, + ACTIONS(5115), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325477,16 +325611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139685] = 5, + [139820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5162), 1, + ACTIONS(5113), 1, anon_sym_PIPE, - STATE(3756), 1, + STATE(3759), 1, sym_comment, - ACTIONS(5164), 14, + ACTIONS(5115), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325501,44 +325635,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139714] = 9, + [139849] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4807), 1, - anon_sym_PIPE, - ACTIONS(7055), 1, - anon_sym_LT, - ACTIONS(7145), 1, - anon_sym_DOT, - ACTIONS(7147), 1, - anon_sym_is, - STATE(3757), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7151), 1, + sym_number, + STATE(3760), 1, sym_comment, - STATE(4022), 1, - sym_type_arguments, - ACTIONS(4202), 10, - sym__automatic_semicolon, + STATE(7340), 1, + sym_predefined_type, + STATE(7341), 1, + sym_string, + ACTIONS(7075), 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, + [139888] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3761), 1, + sym_comment, + ACTIONS(7153), 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, + [139915] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5080), 1, anon_sym_EQ, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3762), 1, + sym_comment, + ACTIONS(5082), 11, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139751] = 5, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [139950] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5188), 1, + ACTIONS(4939), 1, anon_sym_EQ, - STATE(3758), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3763), 1, sym_comment, - ACTIONS(5190), 14, + ACTIONS(4941), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325549,20 +325740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [139780] = 5, + [139985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4841), 1, + ACTIONS(4939), 1, anon_sym_EQ, - STATE(3759), 1, + STATE(3764), 1, sym_comment, - ACTIONS(4843), 14, + ACTIONS(4941), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325577,84 +325765,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139809] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7149), 1, - sym_number, - STATE(3760), 1, - sym_comment, - STATE(7210), 1, - sym_predefined_type, - STATE(7213), 1, - sym_string, - ACTIONS(7091), 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, - [139848] = 10, + [140014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7151), 1, - sym_number, - STATE(3761), 1, + STATE(3765), 1, sym_comment, - STATE(7219), 1, - sym_predefined_type, - STATE(7224), 1, - sym_string, - ACTIONS(7091), 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, - [139887] = 10, + ACTIONS(7155), 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, + [140041] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7073), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7079), 1, anon_sym_unique, - ACTIONS(7153), 1, + ACTIONS(7157), 1, sym_number, - STATE(3762), 1, + STATE(3766), 1, sym_comment, - STATE(7226), 1, + STATE(7320), 1, sym_predefined_type, - STATE(7228), 1, + STATE(7334), 1, sym_string, - ACTIONS(7091), 9, + ACTIONS(7075), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -325664,16 +325817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139926] = 5, + [140080] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, + ACTIONS(5242), 1, anon_sym_EQ, - STATE(3763), 1, + STATE(3767), 1, sym_comment, - ACTIONS(4883), 14, + ACTIONS(5244), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325688,16 +325841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139955] = 5, + [140109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, + ACTIONS(5262), 1, anon_sym_EQ, - STATE(3764), 1, + STATE(3768), 1, sym_comment, - ACTIONS(4873), 14, + ACTIONS(5264), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325712,16 +325865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139984] = 5, + [140138] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(4843), 1, anon_sym_EQ, - STATE(3765), 1, + STATE(3769), 1, sym_comment, - ACTIONS(5334), 14, + ACTIONS(4845), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325736,44 +325889,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140013] = 9, + [140167] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_unique, - ACTIONS(7155), 1, - sym_number, - STATE(3766), 1, + ACTIONS(5178), 1, + anon_sym_EQ, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3770), 1, sym_comment, - STATE(7232), 2, - sym_string, - sym_predefined_type, - ACTIONS(7091), 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, - [140050] = 5, + ACTIONS(5180), 11, + 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_QMARK, + [140202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, + ACTIONS(5274), 1, anon_sym_EQ, - STATE(3767), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5015), 14, + ACTIONS(5276), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325788,16 +325940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140079] = 5, + [140231] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, + ACTIONS(5248), 1, anon_sym_EQ, - STATE(3768), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + STATE(3772), 1, sym_comment, - ACTIONS(5011), 14, + ACTIONS(5250), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325808,20 +325966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [140108] = 5, + [140266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4993), 1, + ACTIONS(5270), 1, anon_sym_EQ, - STATE(3769), 1, + STATE(3773), 1, sym_comment, - ACTIONS(4995), 14, + ACTIONS(5272), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -325836,62 +325991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140137] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3770), 1, - sym_comment, - ACTIONS(7157), 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, - [140164] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3771), 1, - sym_comment, - ACTIONS(7159), 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, - [140191] = 5, + [140295] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, + ACTIONS(5238), 1, anon_sym_PIPE, - STATE(3772), 1, + STATE(3774), 1, sym_comment, - ACTIONS(5039), 14, + ACTIONS(5240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325906,16 +326015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140220] = 5, + [140324] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5220), 1, anon_sym_PIPE, - STATE(3773), 1, + STATE(3775), 1, sym_comment, - ACTIONS(5035), 14, + ACTIONS(5222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325930,16 +326039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140249] = 5, + [140353] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5220), 1, anon_sym_PIPE, - STATE(3774), 1, + STATE(3776), 1, sym_comment, - ACTIONS(5035), 14, + ACTIONS(5222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325954,16 +326063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140278] = 5, + [140382] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5220), 1, anon_sym_PIPE, - STATE(3775), 1, + STATE(3777), 1, sym_comment, - ACTIONS(5035), 14, + ACTIONS(5222), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -325978,16 +326087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140307] = 5, + [140411] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5021), 1, + ACTIONS(5186), 1, anon_sym_PIPE, - STATE(3776), 1, + STATE(3778), 1, sym_comment, - ACTIONS(5023), 14, + ACTIONS(5188), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326002,16 +326111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140336] = 5, + [140440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5021), 1, + ACTIONS(5186), 1, anon_sym_PIPE, - STATE(3777), 1, + STATE(3779), 1, sym_comment, - ACTIONS(5023), 14, + ACTIONS(5188), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326026,16 +326135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140365] = 5, + [140469] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5021), 1, + ACTIONS(5186), 1, anon_sym_PIPE, - STATE(3778), 1, + STATE(3780), 1, sym_comment, - ACTIONS(5023), 14, + ACTIONS(5188), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326050,16 +326159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140394] = 5, + [140498] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, + ACTIONS(5174), 1, anon_sym_PIPE, - STATE(3779), 1, + STATE(3781), 1, sym_comment, - ACTIONS(5019), 14, + ACTIONS(5176), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326074,16 +326183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140423] = 5, + [140527] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, + ACTIONS(5174), 1, anon_sym_PIPE, - STATE(3780), 1, + STATE(3782), 1, sym_comment, - ACTIONS(5019), 14, + ACTIONS(5176), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326098,16 +326207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140452] = 5, + [140556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, + ACTIONS(5174), 1, anon_sym_PIPE, - STATE(3781), 1, + STATE(3783), 1, sym_comment, - ACTIONS(5019), 14, + ACTIONS(5176), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326122,45 +326231,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140481] = 4, + [140585] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3782), 1, + ACTIONS(5298), 1, + anon_sym_EQ, + STATE(3784), 1, sym_comment, - ACTIONS(7161), 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, - [140508] = 8, + ACTIONS(5300), 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, + [140614] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5224), 1, + ACTIONS(5357), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(3783), 1, + STATE(3785), 1, sym_comment, - ACTIONS(5226), 11, + ACTIONS(5359), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -326171,23 +326275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [140543] = 8, + anon_sym_extends, + [140643] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5049), 1, + ACTIONS(5312), 1, anon_sym_EQ, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(3784), 1, + STATE(3786), 1, sym_comment, - ACTIONS(5051), 11, + ACTIONS(5314), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -326198,23 +326299,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [140578] = 8, + anon_sym_extends, + [140672] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5045), 1, + ACTIONS(5312), 1, anon_sym_EQ, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - STATE(3785), 1, + STATE(3787), 1, sym_comment, - ACTIONS(5047), 11, + ACTIONS(5314), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -326226,16 +326330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [140613] = 5, + [140707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5066), 1, + ACTIONS(5323), 1, anon_sym_EQ, - STATE(3786), 1, + STATE(3788), 1, sym_comment, - ACTIONS(5068), 14, + ACTIONS(5325), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -326250,112 +326354,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140642] = 5, + [140736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4964), 1, - anon_sym_PIPE, - STATE(3787), 1, - sym_comment, - ACTIONS(4966), 14, - sym__automatic_semicolon, + ACTIONS(5296), 1, anon_sym_EQ, + STATE(3789), 1, + sym_comment, + ACTIONS(5236), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [140671] = 5, + [140765] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4877), 1, - anon_sym_PIPE, - STATE(3788), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7159), 1, + sym_number, + STATE(3790), 1, sym_comment, - ACTIONS(4879), 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, - [140700] = 5, + STATE(7078), 1, + sym_predefined_type, + STATE(7082), 1, + sym_string, + ACTIONS(7075), 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, + [140804] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4877), 1, - anon_sym_PIPE, - STATE(3789), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7161), 1, + sym_number, + STATE(3791), 1, sym_comment, - ACTIONS(4879), 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, - [140729] = 5, + STATE(7049), 1, + sym_string, + STATE(7084), 1, + sym_predefined_type, + ACTIONS(7075), 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, + [140843] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4877), 1, - anon_sym_PIPE, - STATE(3790), 1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, + ACTIONS(7079), 1, + anon_sym_unique, + ACTIONS(7163), 1, + sym_number, + STATE(3792), 1, sym_comment, - ACTIONS(4879), 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, - [140758] = 5, + STATE(7098), 1, + sym_predefined_type, + STATE(7099), 1, + sym_string, + ACTIONS(7075), 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, + [140882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5162), 1, + ACTIONS(5132), 1, anon_sym_PIPE, - STATE(3791), 1, + STATE(3793), 1, sym_comment, - ACTIONS(5164), 14, + ACTIONS(5134), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -326370,828 +326489,721 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140787] = 15, + [140911] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7167), 1, - anon_sym_BANG, ACTIONS(7169), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7175), 1, - anon_sym_QMARK, - STATE(3792), 1, - sym_comment, - STATE(4255), 1, - sym_formal_parameters, - STATE(4798), 1, - sym__call_signature, - STATE(5090), 1, - sym_type_annotation, - STATE(6152), 1, - sym__initializer, - STATE(6732), 1, - sym_type_parameters, - ACTIONS(7165), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140835] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3793), 1, - sym_comment, - STATE(5505), 1, - sym_import_require_clause, - STATE(5506), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6719), 1, - sym_import_clause, - ACTIONS(7181), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [140883] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7185), 1, - anon_sym_BANG, - ACTIONS(7187), 1, + ACTIONS(7177), 1, anon_sym_QMARK, STATE(3794), 1, sym_comment, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4648), 1, - sym__call_signature, - STATE(5112), 1, + STATE(4941), 1, sym_type_annotation, - STATE(5865), 1, + STATE(5708), 1, sym__initializer, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7183), 3, + STATE(6591), 1, + sym__call_signature, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140931] = 15, + [140959] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7191), 1, + ACTIONS(7181), 1, anon_sym_BANG, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7195), 1, + ACTIONS(7183), 1, anon_sym_QMARK, STATE(3795), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5276), 1, + STATE(5383), 1, sym_type_annotation, - STATE(6009), 1, + STATE(6000), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6923), 1, + STATE(6852), 1, sym__call_signature, - ACTIONS(7189), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140979] = 15, + [141007] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, ACTIONS(7185), 1, - anon_sym_BANG, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7199), 1, - anon_sym_QMARK, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, STATE(3796), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(5112), 1, - sym_type_annotation, - STATE(5830), 1, - sym__initializer, - STATE(5831), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7183), 3, - sym__automatic_semicolon, + STATE(5500), 1, + sym_import_require_clause, + STATE(5501), 1, + sym_string, + STATE(6543), 1, + sym__import_identifier, + STATE(6725), 1, + sym_import_clause, + ACTIONS(7189), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141027] = 15, + anon_sym_from, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [141055] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7203), 1, + ACTIONS(7191), 1, anon_sym_BANG, - ACTIONS(7205), 1, + ACTIONS(7193), 1, anon_sym_QMARK, STATE(3797), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5078), 1, + STATE(5252), 1, sym_type_annotation, - STATE(5826), 1, + STATE(5899), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6704), 1, + STATE(6946), 1, sym__call_signature, - ACTIONS(7201), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141075] = 15, + [141103] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(7207), 1, - anon_sym_BANG, - ACTIONS(7209), 1, - anon_sym_QMARK, + ACTIONS(4869), 1, + anon_sym_BQUOTE, STATE(3798), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(5229), 1, - sym_type_annotation, - STATE(5983), 1, - sym__initializer, - STATE(6493), 1, - sym_type_parameters, - STATE(6953), 1, - sym__call_signature, - ACTIONS(7189), 3, - sym__automatic_semicolon, + STATE(2441), 2, + sym_template_string, + sym_arguments, + ACTIONS(4979), 10, anon_sym_COMMA, - anon_sym_SEMI, - [141123] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7213), 1, - anon_sym_BANG, - ACTIONS(7215), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - STATE(3799), 1, - sym_comment, - STATE(4255), 1, - sym_formal_parameters, - STATE(4669), 1, - sym__call_signature, - STATE(5185), 1, - sym_type_annotation, - STATE(5950), 1, - sym__initializer, - STATE(6732), 1, - sym_type_parameters, - ACTIONS(7211), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141171] = 15, + anon_sym_extends, + [141135] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7177), 1, + ACTIONS(7185), 1, sym_identifier, - ACTIONS(7179), 1, + ACTIONS(7187), 1, anon_sym_type, - STATE(3800), 1, + STATE(3799), 1, sym_comment, - STATE(5409), 1, + STATE(5503), 1, sym_import_require_clause, - STATE(5628), 1, + STATE(5508), 1, sym_string, - STATE(6559), 1, + STATE(6543), 1, sym__import_identifier, - STATE(6922), 1, + STATE(6817), 1, sym_import_clause, - ACTIONS(7181), 2, + ACTIONS(7189), 2, anon_sym_COMMA, anon_sym_from, - STATE(7302), 2, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - [141219] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(205), 1, - anon_sym_unique, - STATE(3801), 1, - sym_comment, - STATE(3985), 1, - sym_type_predicate, - STATE(7041), 1, - sym_predefined_type, - ACTIONS(7217), 2, - sym_identifier, - sym_this, - ACTIONS(207), 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, - [141253] = 13, + [141183] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4525), 1, - anon_sym_RBRACE, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(3802), 1, + anon_sym_BANG, + ACTIONS(7199), 1, + anon_sym_QMARK, + STATE(3800), 1, sym_comment, - STATE(4457), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - STATE(6477), 1, + STATE(5042), 1, + sym_type_annotation, + STATE(6188), 1, + sym__initializer, + STATE(6405), 1, + sym__call_signature, + STATE(6459), 1, sym_type_parameters, - ACTIONS(4518), 5, + ACTIONS(7195), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [141297] = 15, + [141231] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7221), 1, + ACTIONS(7203), 1, anon_sym_BANG, - ACTIONS(7223), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7207), 1, anon_sym_QMARK, - STATE(3803), 1, + STATE(3801), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5077), 1, + STATE(5009), 1, sym_type_annotation, - STATE(5820), 1, + STATE(6166), 1, sym__initializer, - STATE(6493), 1, - sym_type_parameters, - STATE(6698), 1, + STATE(6244), 1, sym__call_signature, + STATE(6986), 1, + sym_type_parameters, ACTIONS(7201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141345] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3804), 1, - sym_comment, - STATE(5431), 1, - sym_string, - STATE(5432), 1, - sym_import_require_clause, - STATE(6559), 1, - sym__import_identifier, - STATE(6816), 1, - sym_import_clause, - ACTIONS(7181), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [141393] = 13, + [141279] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_RBRACE, - ACTIONS(7173), 1, + ACTIONS(4821), 1, + anon_sym_PIPE, + ACTIONS(7057), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(3805), 1, + ACTIONS(7125), 1, + anon_sym_DOT, + STATE(3802), 1, sym_comment, - STATE(4457), 1, - sym_formal_parameters, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - STATE(6477), 1, - sym_type_parameters, - ACTIONS(4518), 5, + STATE(4010), 1, + sym_type_arguments, + ACTIONS(4202), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [141437] = 15, + [141313] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7227), 1, + ACTIONS(7211), 1, anon_sym_BANG, - ACTIONS(7229), 1, + ACTIONS(7213), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3803), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4884), 1, + STATE(5321), 1, sym_type_annotation, - STATE(5881), 1, + STATE(6164), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6811), 1, + STATE(6587), 1, sym__call_signature, - ACTIONS(7225), 3, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141485] = 15, + [141361] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, + ACTIONS(7217), 1, anon_sym_BANG, - ACTIONS(7235), 1, + ACTIONS(7219), 1, anon_sym_QMARK, - STATE(3807), 1, + STATE(3804), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5331), 1, + STATE(4962), 1, sym_type_annotation, - STATE(6294), 1, + STATE(6120), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6574), 1, + STATE(6658), 1, sym__call_signature, - ACTIONS(7231), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141533] = 13, + [141409] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(206), 1, + anon_sym_unique, + STATE(3805), 1, + sym_comment, + STATE(4128), 1, + sym_type_predicate, + STATE(7277), 1, + sym_predefined_type, + ACTIONS(7221), 2, + sym_identifier, + sym_this, + ACTIONS(208), 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, + [141443] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4531), 1, + ACTIONS(4530), 1, anon_sym_RBRACE, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, + ACTIONS(7223), 1, anon_sym_EQ, - STATE(3808), 1, + STATE(3806), 1, sym_comment, - STATE(4457), 1, + STATE(4479), 1, sym_formal_parameters, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - STATE(6477), 1, + STATE(6555), 1, sym_type_parameters, - ACTIONS(4518), 5, + ACTIONS(4520), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [141577] = 15, + [141487] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7237), 1, + ACTIONS(7225), 1, anon_sym_BANG, - ACTIONS(7239), 1, + ACTIONS(7227), 1, anon_sym_QMARK, - STATE(3809), 1, + STATE(3807), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5258), 1, + STATE(5267), 1, sym_type_annotation, - STATE(6297), 1, + STATE(6226), 1, sym__initializer, - STATE(6381), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7189), 3, + STATE(6519), 1, + sym__call_signature, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141625] = 15, + [141535] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7241), 1, + ACTIONS(7231), 1, anon_sym_BANG, - ACTIONS(7243), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(7235), 1, anon_sym_QMARK, - STATE(3810), 1, + STATE(3808), 1, sym_comment, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5242), 1, + STATE(4635), 1, + sym__call_signature, + STATE(5032), 1, sym_type_annotation, - STATE(6271), 1, + STATE(5775), 1, sym__initializer, - STATE(6446), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - ACTIONS(7189), 3, + ACTIONS(7229), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141673] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3811), 1, - sym_comment, - STATE(5639), 1, - sym_import_require_clause, - STATE(5640), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6851), 1, - sym_import_clause, - ACTIONS(7181), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [141721] = 15, + [141583] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7247), 1, + ACTIONS(7203), 1, anon_sym_BANG, - ACTIONS(7249), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(7237), 1, anon_sym_QMARK, - STATE(3812), 1, + STATE(3809), 1, sym_comment, - STATE(4055), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5321), 1, - sym_type_annotation, - STATE(6331), 1, + STATE(4789), 1, sym__call_signature, - STATE(6333), 1, + STATE(5009), 1, + sym_type_annotation, + STATE(6157), 1, sym__initializer, - STATE(6769), 1, + STATE(6561), 1, sym_type_parameters, - ACTIONS(7245), 3, + ACTIONS(7201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141769] = 15, + [141631] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7251), 1, + ACTIONS(7239), 1, anon_sym_BANG, - ACTIONS(7253), 1, + ACTIONS(7241), 1, anon_sym_QMARK, - STATE(3813), 1, + STATE(3810), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5178), 1, + STATE(5080), 1, sym_type_annotation, - STATE(6203), 1, + STATE(5825), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6553), 1, + STATE(6583), 1, sym__call_signature, - ACTIONS(7189), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141817] = 15, + [141679] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7255), 1, + ACTIONS(7243), 1, anon_sym_BANG, - ACTIONS(7257), 1, + ACTIONS(7245), 1, anon_sym_QMARK, - STATE(3814), 1, + STATE(3811), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5152), 1, + STATE(5319), 1, sym_type_annotation, - STATE(6187), 1, + STATE(6081), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6593), 1, + STATE(6585), 1, sym__call_signature, - ACTIONS(7189), 3, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141865] = 15, + [141727] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3812), 1, + sym_comment, + STATE(5452), 1, + sym_string, + STATE(5453), 1, + sym_import_require_clause, + STATE(6543), 1, + sym__import_identifier, + STATE(6855), 1, + sym_import_clause, + ACTIONS(7189), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [141775] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3813), 1, + sym_comment, + STATE(5436), 1, + sym_import_require_clause, + STATE(5437), 1, + sym_string, + STATE(6543), 1, + sym__import_identifier, + STATE(6963), 1, + sym_import_clause, + ACTIONS(7189), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [141823] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_RBRACE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, + STATE(3814), 1, + sym_comment, + STATE(4479), 1, + sym_formal_parameters, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + STATE(6555), 1, + sym_type_parameters, + ACTIONS(4520), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7173), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [141867] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4533), 1, + anon_sym_RBRACE, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7259), 1, - anon_sym_BANG, - ACTIONS(7261), 1, - anon_sym_QMARK, + ACTIONS(7223), 1, + anon_sym_EQ, STATE(3815), 1, sym_comment, - STATE(4683), 1, + STATE(4479), 1, sym_formal_parameters, - STATE(4883), 1, - sym_type_annotation, - STATE(5930), 1, - sym__initializer, - STATE(6493), 1, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6555), 1, sym_type_parameters, - STATE(6935), 1, - sym__call_signature, - ACTIONS(7225), 3, + ACTIONS(4520), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [141913] = 8, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [141911] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(205), 1, + ACTIONS(206), 1, anon_sym_unique, - STATE(2888), 1, + STATE(2296), 1, sym_type_predicate, STATE(3816), 1, sym_comment, - STATE(7327), 1, - sym_predefined_type, - ACTIONS(7263), 2, - sym_identifier, - sym_this, - ACTIONS(207), 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, - [141947] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(205), 1, - anon_sym_unique, - STATE(3817), 1, - sym_comment, - STATE(4100), 1, - sym_type_predicate, - STATE(7403), 1, + STATE(7376), 1, sym_predefined_type, - ACTIONS(7265), 2, + ACTIONS(7247), 2, sym_identifier, sym_this, - ACTIONS(207), 9, + ACTIONS(208), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -327201,204 +327213,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141981] = 15, + [141945] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7267), 1, + ACTIONS(7249), 1, anon_sym_BANG, - ACTIONS(7269), 1, + ACTIONS(7251), 1, anon_sym_QMARK, - STATE(3818), 1, + STATE(3817), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4894), 1, + STATE(5342), 1, sym_type_annotation, - STATE(5946), 1, + STATE(6121), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6983), 1, + STATE(6690), 1, sym__call_signature, - ACTIONS(7225), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [141993] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_GT, + ACTIONS(7258), 1, + anon_sym_DOT, + STATE(3695), 1, + sym_type_arguments, + STATE(3818), 1, + sym_comment, + ACTIONS(7253), 4, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + ACTIONS(4821), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, [142029] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(7262), 1, anon_sym_BANG, - ACTIONS(7271), 1, + ACTIONS(7264), 1, anon_sym_QMARK, STATE(3819), 1, sym_comment, - STATE(4255), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(4729), 1, + STATE(4820), 1, sym__call_signature, - STATE(5321), 1, + STATE(4938), 1, sym_type_annotation, - STATE(6321), 1, + STATE(6004), 1, sym__initializer, - STATE(6732), 1, + STATE(6561), 1, sym_type_parameters, - ACTIONS(7245), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142077] = 7, + [142077] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_BANG, + ACTIONS(7268), 1, + anon_sym_QMARK, STATE(3820), 1, sym_comment, - STATE(2458), 2, - sym_template_string, - sym_arguments, - ACTIONS(5200), 10, + STATE(4813), 1, + sym_formal_parameters, + STATE(4969), 1, + sym_type_annotation, + STATE(5718), 1, + sym__initializer, + STATE(6459), 1, + sym_type_parameters, + STATE(6722), 1, + sym__call_signature, + ACTIONS(7167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142125] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4514), 1, anon_sym_COMMA, + ACTIONS(4524), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7223), 1, + anon_sym_EQ, + STATE(3821), 1, + sym_comment, + STATE(4479), 1, + sym_formal_parameters, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + STATE(6555), 1, + sym_type_parameters, + ACTIONS(4520), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_extends, - [142109] = 8, + anon_sym_PIPE_RBRACE, + [142169] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4807), 1, - anon_sym_PIPE, - ACTIONS(7055), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7145), 1, - anon_sym_DOT, - STATE(3821), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(7272), 1, + anon_sym_BANG, + ACTIONS(7274), 1, + anon_sym_QMARK, + STATE(3822), 1, sym_comment, - STATE(4022), 1, - sym_type_arguments, - ACTIONS(4202), 10, + STATE(4286), 1, + sym_formal_parameters, + STATE(4682), 1, + sym__call_signature, + STATE(5221), 1, + sym_type_annotation, + STATE(6320), 1, + sym__initializer, + STATE(6561), 1, + sym_type_parameters, + ACTIONS(7270), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142217] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7276), 1, + anon_sym_BANG, + ACTIONS(7278), 1, + anon_sym_QMARK, + STATE(3823), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(5225), 1, + sym_type_annotation, + STATE(6309), 1, + sym__initializer, + STATE(6355), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + ACTIONS(7179), 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, - [142143] = 13, + [142265] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, + ACTIONS(4514), 1, anon_sym_COMMA, - ACTIONS(4528), 1, + ACTIONS(4527), 1, anon_sym_RBRACE, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, + ACTIONS(7223), 1, anon_sym_EQ, - STATE(3822), 1, + STATE(3824), 1, sym_comment, - STATE(4457), 1, + STATE(4479), 1, sym_formal_parameters, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6477), 1, + STATE(6315), 1, + aux_sym_object_repeat1, + STATE(6555), 1, sym_type_parameters, - ACTIONS(4518), 5, + ACTIONS(4520), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [142187] = 15, + [142309] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7275), 1, + ACTIONS(7280), 1, anon_sym_BANG, - ACTIONS(7277), 1, + ACTIONS(7282), 1, anon_sym_QMARK, - STATE(3823), 1, + STATE(3825), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4902), 1, + STATE(5054), 1, sym_type_annotation, - STATE(5650), 1, + STATE(5798), 1, sym__initializer, - STATE(6347), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7273), 3, + STATE(6972), 1, + sym__call_signature, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142235] = 8, + [142357] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3826), 1, + sym_comment, + STATE(5627), 1, + sym_string, + STATE(5628), 1, + sym_import_require_clause, + STATE(6543), 1, + sym__import_identifier, + STATE(6928), 1, + sym_import_clause, + ACTIONS(7189), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [142405] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(205), 1, + ACTIONS(206), 1, anon_sym_unique, - STATE(2229), 1, + STATE(3769), 1, sym_type_predicate, - STATE(3824), 1, + STATE(3827), 1, sym_comment, - STATE(7384), 1, + STATE(7231), 1, sym_predefined_type, - ACTIONS(7279), 2, + ACTIONS(7284), 2, sym_identifier, sym_this, - ACTIONS(207), 9, + ACTIONS(208), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -327408,153 +327559,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142269] = 15, + [142439] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, + ACTIONS(7286), 1, anon_sym_BANG, - ACTIONS(7283), 1, + ACTIONS(7288), 1, anon_sym_QMARK, - STATE(3825), 1, + STATE(3828), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4994), 1, + STATE(5307), 1, sym_type_annotation, - STATE(6097), 1, + STATE(5916), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6797), 1, + STATE(6936), 1, sym__call_signature, - ACTIONS(7225), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142317] = 15, + [142487] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7290), 1, + anon_sym_BANG, + ACTIONS(7292), 1, + anon_sym_QMARK, + STATE(3829), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(5070), 1, + sym_type_annotation, + STATE(5817), 1, + sym__initializer, + STATE(6459), 1, + sym_type_parameters, + STATE(6560), 1, + sym__call_signature, + ACTIONS(7167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142535] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(206), 1, + anon_sym_unique, + STATE(3830), 1, + sym_comment, + STATE(3995), 1, + sym_type_predicate, + STATE(7166), 1, + sym_predefined_type, + ACTIONS(7294), 2, + sym_identifier, + sym_this, + ACTIONS(208), 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, + [142569] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_BANG, - ACTIONS(7287), 1, + ACTIONS(7296), 1, anon_sym_QMARK, - STATE(3826), 1, + STATE(3831), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4940), 1, + STATE(5221), 1, sym_type_annotation, - STATE(5676), 1, + STATE(6257), 1, sym__initializer, - STATE(6405), 1, + STATE(6267), 1, sym__call_signature, - STATE(6493), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7201), 3, + ACTIONS(7270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142365] = 13, + [142617] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4515), 1, - anon_sym_RBRACE, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(3827), 1, + ACTIONS(7300), 1, + anon_sym_BANG, + ACTIONS(7302), 1, + anon_sym_QMARK, + STATE(3832), 1, sym_comment, - STATE(4457), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - STATE(6477), 1, + STATE(4648), 1, + sym__call_signature, + STATE(5372), 1, + sym_type_annotation, + STATE(5958), 1, + sym__initializer, + STATE(6561), 1, sym_type_parameters, - ACTIONS(4518), 5, + ACTIONS(7298), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [142409] = 15, + [142665] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7291), 1, + ACTIONS(7304), 1, anon_sym_BANG, - ACTIONS(7293), 1, + ACTIONS(7306), 1, anon_sym_QMARK, - STATE(3828), 1, + STATE(3833), 1, sym_comment, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4819), 1, - sym__call_signature, - STATE(5025), 1, + STATE(5264), 1, sym_type_annotation, - STATE(6114), 1, + STATE(6230), 1, sym__initializer, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7289), 3, + STATE(6511), 1, + sym__call_signature, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142457] = 8, + [142713] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(205), 1, + ACTIONS(206), 1, anon_sym_unique, - STATE(3764), 1, + STATE(2698), 1, sym_type_predicate, - STATE(3829), 1, + STATE(3834), 1, sym_comment, - STATE(7311), 1, + STATE(7134), 1, sym_predefined_type, - ACTIONS(7295), 2, + ACTIONS(7308), 2, sym_identifier, sym_this, - ACTIONS(207), 9, + ACTIONS(208), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -327564,136 +327776,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142491] = 9, - ACTIONS(3), 1, + [142747] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3835), 1, + sym_comment, + ACTIONS(5149), 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, + [142772] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4157), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7095), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_GT, - ACTIONS(7302), 1, + ACTIONS(7310), 1, anon_sym_DOT, - STATE(3786), 1, - sym_type_arguments, - STATE(3830), 1, + ACTIONS(7312), 1, + anon_sym_is, + STATE(3836), 1, sym_comment, - ACTIONS(7297), 4, + STATE(4242), 1, + sym_type_arguments, + ACTIONS(4202), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - ACTIONS(4807), 6, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [142527] = 15, + [142805] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7304), 1, - anon_sym_BANG, - ACTIONS(7306), 1, + ACTIONS(7316), 1, anon_sym_QMARK, - STATE(3831), 1, + STATE(3837), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5023), 1, + STATE(5158), 1, sym_type_annotation, - STATE(5725), 1, - sym__initializer, - STATE(6493), 1, - sym_type_parameters, - STATE(6525), 1, + STATE(5161), 1, sym__call_signature, - ACTIONS(7201), 3, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7314), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142575] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3832), 1, - sym_comment, - STATE(5516), 1, - sym_import_require_clause, - STATE(5517), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6898), 1, - sym_import_clause, - ACTIONS(7181), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [142623] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7308), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - sym_html_character_reference, - ACTIONS(7314), 1, - anon_sym_LT_SLASH, - ACTIONS(7316), 1, - anon_sym_LT, - STATE(3833), 1, - sym_comment, - STATE(3883), 1, - sym_jsx_opening_element, - STATE(3924), 1, - aux_sym_jsx_element_repeat1, - STATE(4717), 1, - sym_jsx_closing_element, - ACTIONS(7310), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [142664] = 4, + anon_sym_PIPE_RBRACE, + [142846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3834), 1, + STATE(3838), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(5099), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -327707,278 +327872,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142689] = 12, + [142871] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7308), 1, + ACTIONS(7318), 1, anon_sym_LBRACE, - ACTIONS(7312), 1, + ACTIONS(7322), 1, sym_html_character_reference, - ACTIONS(7316), 1, - anon_sym_LT, - ACTIONS(7318), 1, + ACTIONS(7324), 1, anon_sym_LT_SLASH, - STATE(3835), 1, + ACTIONS(7326), 1, + anon_sym_LT, + STATE(2430), 1, + sym_jsx_closing_element, + STATE(3839), 1, sym_comment, - STATE(3865), 1, - aux_sym_jsx_element_repeat1, - STATE(3883), 1, + STATE(3899), 1, sym_jsx_opening_element, - STATE(5127), 1, - sym_jsx_closing_element, - ACTIONS(7310), 2, + STATE(3931), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7320), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4763), 4, + STATE(4668), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [142730] = 5, + [142912] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7025), 1, + anon_sym_DOT, + ACTIONS(7029), 1, + anon_sym_LT, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + ACTIONS(7332), 1, + anon_sym_SLASH_GT, + STATE(3840), 1, + sym_comment, + STATE(4079), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4080), 1, + sym_type_arguments, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [142957] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, - anon_sym_PIPE, - STATE(3836), 1, + STATE(3841), 1, sym_comment, - ACTIONS(5156), 12, + ACTIONS(5099), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142757] = 12, + [142982] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(3837), 1, - sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4859), 1, - sym__call_signature, - STATE(4862), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7320), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142798] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7336), 1, anon_sym_QMARK, - STATE(3838), 1, + STATE(3842), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4534), 1, + STATE(4500), 1, sym__call_signature, - STATE(5188), 1, + STATE(4881), 1, sym_type_annotation, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7324), 5, + ACTIONS(7334), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142839] = 12, + [143023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7328), 1, - anon_sym_QMARK, - STATE(3839), 1, + STATE(3843), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4548), 1, - sym__call_signature, - STATE(4862), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7320), 5, + ACTIONS(5099), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142880] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [143048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5210), 1, - anon_sym_PIPE, - STATE(3840), 1, + STATE(3844), 1, sym_comment, - ACTIONS(5212), 12, + ACTIONS(5103), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142907] = 5, + [143073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5357), 1, - anon_sym_PIPE, - STATE(3841), 1, + STATE(3845), 1, sym_comment, - ACTIONS(5359), 12, + ACTIONS(5103), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142934] = 12, + [143098] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, + ACTIONS(7318), 1, + anon_sym_LBRACE, + ACTIONS(7322), 1, + sym_html_character_reference, + ACTIONS(7326), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7332), 1, - anon_sym_QMARK, - STATE(3842), 1, + ACTIONS(7338), 1, + anon_sym_LT_SLASH, + STATE(3846), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(5363), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7330), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142975] = 5, + STATE(3899), 1, + sym_jsx_opening_element, + STATE(3931), 1, + aux_sym_jsx_element_repeat1, + STATE(4763), 1, + sym_jsx_closing_element, + ACTIONS(7320), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143139] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, + ACTIONS(4329), 1, anon_sym_PIPE, - STATE(3843), 1, + STATE(3847), 1, sym_comment, - ACTIONS(5355), 12, + ACTIONS(4849), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143002] = 12, + [143166] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2087), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7334), 1, - anon_sym_COLON, - ACTIONS(7336), 1, - anon_sym_QMARK, - STATE(3844), 1, + ACTIONS(5190), 1, + anon_sym_PIPE, + STATE(3848), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4455), 1, - sym__call_signature, - STATE(5368), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7330), 5, + ACTIONS(5192), 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, - [143043] = 5, + [143195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, + ACTIONS(4949), 1, anon_sym_PIPE, - STATE(3845), 1, + STATE(3849), 1, sym_comment, - ACTIONS(5351), 12, + ACTIONS(4951), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -327991,16 +328141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143070] = 5, + [143222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4349), 1, + ACTIONS(5055), 1, anon_sym_PIPE, - STATE(3846), 1, + STATE(3850), 1, sym_comment, - ACTIONS(4869), 12, + ACTIONS(5057), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328013,118 +328163,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143097] = 5, + [143249] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, - anon_sym_PIPE, - STATE(3847), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7340), 1, + anon_sym_QMARK, + STATE(3851), 1, sym_comment, - ACTIONS(5156), 12, + STATE(4061), 1, + sym_formal_parameters, + STATE(4881), 1, + sym_type_annotation, + STATE(4882), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7334), 5, 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, - [143124] = 5, + [143290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, + ACTIONS(4957), 1, anon_sym_PIPE, - STATE(3848), 1, + STATE(3852), 1, sym_comment, - ACTIONS(5108), 12, + ACTIONS(4959), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143151] = 12, + [143317] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_QMARK, + STATE(3853), 1, + sym_comment, + STATE(4061), 1, + sym_formal_parameters, + STATE(4537), 1, + sym__call_signature, + STATE(4855), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7342), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143358] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7308), 1, + ACTIONS(7318), 1, anon_sym_LBRACE, - ACTIONS(7312), 1, + ACTIONS(7322), 1, sym_html_character_reference, - ACTIONS(7316), 1, + ACTIONS(7326), 1, anon_sym_LT, - ACTIONS(7338), 1, + ACTIONS(7346), 1, anon_sym_LT_SLASH, - STATE(2496), 1, + STATE(3047), 1, sym_jsx_closing_element, - STATE(3849), 1, + STATE(3854), 1, sym_comment, - STATE(3883), 1, + STATE(3899), 1, sym_jsx_opening_element, STATE(3900), 1, aux_sym_jsx_element_repeat1, - ACTIONS(7310), 2, + ACTIONS(7320), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4763), 4, + STATE(4668), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [143192] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7023), 1, - anon_sym_DOT, - ACTIONS(7027), 1, - anon_sym_LT, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_GT, - ACTIONS(7344), 1, - anon_sym_SLASH_GT, - STATE(3850), 1, - sym_comment, - STATE(4185), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4186), 1, - sym_type_arguments, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [143237] = 4, + [143399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3851), 1, + STATE(3855), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(5103), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328138,37 +328293,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143262] = 4, + [143424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3852), 1, + ACTIONS(4969), 1, + anon_sym_PIPE, + STATE(3856), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(4971), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [143287] = 5, + anon_sym_PIPE_RBRACE, + [143451] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4345), 1, + ACTIONS(4855), 1, anon_sym_PIPE, - STATE(3853), 1, + ACTIONS(7057), 1, + anon_sym_LT, + STATE(3857), 1, sym_comment, - ACTIONS(4839), 12, + STATE(3973), 1, + sym_type_arguments, + ACTIONS(4857), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328176,19 +328336,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [143314] = 4, + [143482] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3854), 1, + STATE(3858), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(5115), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328202,37 +328360,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143339] = 4, + [143507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3855), 1, + ACTIONS(4969), 1, + anon_sym_PIPE, + STATE(3859), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(4971), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [143364] = 5, + anon_sym_PIPE_RBRACE, + [143534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, + ACTIONS(4949), 1, anon_sym_PIPE, - STATE(3856), 1, + STATE(3860), 1, sym_comment, - ACTIONS(5108), 12, + ACTIONS(4951), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328245,43 +328404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143391] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7308), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - sym_html_character_reference, - ACTIONS(7316), 1, - anon_sym_LT, - ACTIONS(7346), 1, - anon_sym_LT_SLASH, - STATE(3152), 1, - sym_jsx_closing_element, - STATE(3857), 1, - sym_comment, - STATE(3883), 1, - sym_jsx_opening_element, - STATE(3924), 1, - aux_sym_jsx_element_repeat1, - ACTIONS(7310), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143432] = 4, + [143561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3858), 1, + STATE(3861), 1, sym_comment, - ACTIONS(5023), 13, + ACTIONS(5115), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328295,39 +328425,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143457] = 8, + [143586] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7081), 1, + ACTIONS(7318), 1, + anon_sym_LBRACE, + ACTIONS(7322), 1, + sym_html_character_reference, + ACTIONS(7324), 1, + anon_sym_LT_SLASH, + ACTIONS(7326), 1, anon_sym_LT, - ACTIONS(7348), 1, - anon_sym_DOT, - ACTIONS(7350), 1, - anon_sym_is, - STATE(3859), 1, + STATE(2463), 1, + sym_jsx_closing_element, + STATE(3839), 1, + aux_sym_jsx_element_repeat1, + STATE(3862), 1, sym_comment, - STATE(4078), 1, - sym_type_arguments, - ACTIONS(4202), 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, - [143490] = 4, + STATE(3899), 1, + sym_jsx_opening_element, + ACTIONS(7320), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3860), 1, + STATE(3863), 1, sym_comment, - ACTIONS(5023), 13, + ACTIONS(5115), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328341,43 +328475,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143515] = 12, + [143652] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7352), 1, + ACTIONS(7348), 1, anon_sym_QMARK, - STATE(3861), 1, + STATE(3864), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5183), 1, + STATE(4513), 1, sym__call_signature, - STATE(5188), 1, + STATE(5158), 1, sym_type_annotation, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7324), 5, + ACTIONS(7314), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143556] = 4, + [143693] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3862), 1, + STATE(3865), 1, sym_comment, - ACTIONS(5023), 13, + ACTIONS(5134), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328391,97 +328525,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143581] = 12, + [143718] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7356), 1, - anon_sym_QMARK, - STATE(3863), 1, + ACTIONS(4935), 1, + anon_sym_PIPE, + STATE(3866), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4915), 1, - sym__call_signature, - STATE(4926), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7354), 5, + ACTIONS(4937), 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, - [143622] = 4, + [143745] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3864), 1, + ACTIONS(4981), 1, + anon_sym_PIPE, + STATE(3867), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(4983), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [143647] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7308), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - sym_html_character_reference, - ACTIONS(7316), 1, - anon_sym_LT, - ACTIONS(7318), 1, - anon_sym_LT_SLASH, - STATE(3865), 1, - sym_comment, - STATE(3883), 1, - sym_jsx_opening_element, - STATE(3924), 1, - aux_sym_jsx_element_repeat1, - STATE(5058), 1, - sym_jsx_closing_element, - ACTIONS(7310), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143688] = 6, + anon_sym_PIPE_RBRACE, + [143772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2235), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - STATE(3866), 1, + STATE(3868), 1, sym_comment, - ACTIONS(5256), 11, + ACTIONS(4875), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328489,43 +328586,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, 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, - [143717] = 4, + [143799] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3867), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7352), 1, + anon_sym_COLON, + ACTIONS(7354), 1, + anon_sym_QMARK, + STATE(3869), 1, sym_comment, - ACTIONS(5019), 13, + STATE(4061), 1, + sym_formal_parameters, + STATE(4599), 1, + sym__call_signature, + STATE(5067), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7350), 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, + [143840] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - anon_sym_extends, - [143742] = 6, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7356), 1, + anon_sym_QMARK, + STATE(3870), 1, + sym_comment, + STATE(4061), 1, + sym_formal_parameters, + STATE(4853), 1, + sym__call_signature, + STATE(4855), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7342), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143881] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2239), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, + ACTIONS(5290), 1, anon_sym_PIPE, - STATE(3868), 1, + ACTIONS(7358), 1, + anon_sym_DOT, + ACTIONS(7360), 1, + anon_sym_QMARK_DOT, + STATE(3871), 1, sym_comment, - ACTIONS(5256), 11, + ACTIONS(5292), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -328534,17 +328671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143771] = 4, + [143912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3869), 1, + STATE(3872), 1, sym_comment, - ACTIONS(5096), 13, + ACTIONS(5176), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328558,14 +328694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143796] = 4, + [143937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3870), 1, + STATE(3873), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(5176), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328579,14 +328715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143821] = 4, + [143962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3871), 1, + STATE(3874), 1, sym_comment, - ACTIONS(5100), 13, + ACTIONS(5176), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328600,43 +328736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143846] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7360), 1, - anon_sym_QMARK, - STATE(3872), 1, - sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(5117), 1, - sym_type_annotation, - STATE(5121), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7358), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143887] = 4, + [143987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3873), 1, + STATE(3875), 1, sym_comment, - ACTIONS(5096), 13, + ACTIONS(5188), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328650,36 +328757,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143912] = 5, + [144012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5216), 1, - anon_sym_PIPE, - STATE(3874), 1, + STATE(3876), 1, sym_comment, - ACTIONS(5218), 12, + ACTIONS(5188), 13, 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_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143939] = 4, + [144037] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3875), 1, + STATE(3877), 1, sym_comment, - ACTIONS(5100), 13, + ACTIONS(5153), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328693,110 +328799,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143964] = 4, + [144062] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3876), 1, + ACTIONS(5033), 1, + anon_sym_PIPE, + STATE(3878), 1, sym_comment, - ACTIONS(5104), 13, + ACTIONS(5035), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [143989] = 5, + anon_sym_PIPE_RBRACE, + [144089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5202), 1, + ACTIONS(5029), 1, anon_sym_PIPE, - STATE(3877), 1, + STATE(3879), 1, sym_comment, - ACTIONS(5204), 12, + ACTIONS(5031), 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_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144016] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7023), 1, - anon_sym_DOT, - ACTIONS(7027), 1, - anon_sym_LT, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_GT, - ACTIONS(7362), 1, - anon_sym_SLASH_GT, - STATE(3878), 1, - sym_comment, - STATE(4260), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4261), 1, - sym_type_arguments, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [144061] = 5, + [144116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5176), 1, + ACTIONS(5025), 1, anon_sym_PIPE, - STATE(3879), 1, + STATE(3880), 1, sym_comment, - ACTIONS(5178), 12, + ACTIONS(5027), 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_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144088] = 4, + [144143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3880), 1, + STATE(3881), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(5188), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328810,14 +328886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144113] = 4, + [144168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3881), 1, + STATE(3882), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(5222), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328831,95 +328907,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144138] = 7, + [144193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, - anon_sym_PIPE, - ACTIONS(7055), 1, - anon_sym_LT, - STATE(3882), 1, + STATE(3883), 1, sym_comment, - STATE(4023), 1, - sym_type_arguments, - ACTIONS(4857), 10, + ACTIONS(5211), 13, 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_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144169] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [144218] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7308), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - sym_html_character_reference, - ACTIONS(7314), 1, - anon_sym_LT_SLASH, - ACTIONS(7316), 1, - anon_sym_LT, - STATE(3833), 1, - aux_sym_jsx_element_repeat1, - STATE(4753), 1, - sym_jsx_closing_element, - ACTIONS(7310), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3883), 2, - sym_jsx_opening_element, - sym_comment, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144208] = 12, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7308), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - sym_html_character_reference, - ACTIONS(7316), 1, - anon_sym_LT, - ACTIONS(7346), 1, - anon_sym_LT_SLASH, - STATE(3053), 1, - sym_jsx_closing_element, - STATE(3857), 1, - aux_sym_jsx_element_repeat1, - STATE(3883), 1, - sym_jsx_opening_element, STATE(3884), 1, sym_comment, - ACTIONS(7310), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144249] = 4, + ACTIONS(5215), 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, + [144243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3885), 1, sym_comment, - ACTIONS(5164), 13, + ACTIONS(5211), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328933,14 +328970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144274] = 4, + [144268] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3886), 1, sym_comment, - ACTIONS(5164), 13, + ACTIONS(5215), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328954,14 +328991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144299] = 4, + [144293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3887), 1, sym_comment, - ACTIONS(5112), 13, + ACTIONS(5254), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328975,14 +329012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144324] = 4, + [144318] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3888), 1, sym_comment, - ACTIONS(5164), 13, + ACTIONS(5222), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -328996,14 +329033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144349] = 4, + [144343] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3889), 1, sym_comment, - ACTIONS(4879), 13, + ACTIONS(5268), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329017,14 +329054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144374] = 4, + [144368] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3890), 1, sym_comment, - ACTIONS(4879), 13, + ACTIONS(5222), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329038,14 +329075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144399] = 4, + [144393] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3891), 1, sym_comment, - ACTIONS(5104), 13, + ACTIONS(5254), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329059,68 +329096,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144424] = 12, + [144418] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(7364), 1, - anon_sym_QMARK, STATE(3892), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4487), 1, - sym__call_signature, - STATE(4926), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7354), 5, + ACTIONS(5268), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144465] = 8, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [144443] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(5198), 1, - anon_sym_PIPE, + ACTIONS(7362), 1, + anon_sym_QMARK, STATE(3893), 1, sym_comment, - STATE(2458), 2, - sym_template_string, - sym_arguments, - ACTIONS(5200), 8, + STATE(4061), 1, + sym_formal_parameters, + STATE(5063), 1, + sym__call_signature, + STATE(5067), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7350), 5, 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, - [144498] = 4, + [144484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3894), 1, sym_comment, - ACTIONS(5112), 13, + ACTIONS(5304), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329134,58 +329167,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144523] = 5, + [144509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, - anon_sym_PIPE, STATE(3895), 1, sym_comment, - ACTIONS(5292), 12, + ACTIONS(5258), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144550] = 5, + [144534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, - anon_sym_PIPE, STATE(3896), 1, sym_comment, - ACTIONS(5284), 12, + ACTIONS(5304), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144577] = 4, + [144559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(3897), 1, sym_comment, - ACTIONS(4879), 13, + ACTIONS(5240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -329199,705 +329230,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144602] = 5, + [144584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, - anon_sym_PIPE, STATE(3898), 1, sym_comment, - ACTIONS(5280), 12, + ACTIONS(5258), 13, 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_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144629] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4343), 1, - anon_sym_PIPE, - STATE(3899), 1, - sym_comment, - ACTIONS(4867), 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_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144656] = 12, + [144609] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7308), 1, + ACTIONS(7318), 1, anon_sym_LBRACE, - ACTIONS(7312), 1, + ACTIONS(7322), 1, sym_html_character_reference, - ACTIONS(7316), 1, + ACTIONS(7326), 1, anon_sym_LT, ACTIONS(7338), 1, anon_sym_LT_SLASH, - STATE(2550), 1, + STATE(3846), 1, + aux_sym_jsx_element_repeat1, + STATE(4788), 1, sym_jsx_closing_element, - STATE(3883), 1, + ACTIONS(7320), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3899), 2, + sym_jsx_opening_element, + sym_comment, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144648] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7318), 1, + anon_sym_LBRACE, + ACTIONS(7322), 1, + sym_html_character_reference, + ACTIONS(7326), 1, + anon_sym_LT, + ACTIONS(7346), 1, + anon_sym_LT_SLASH, + STATE(3080), 1, + sym_jsx_closing_element, + STATE(3899), 1, sym_jsx_opening_element, STATE(3900), 1, sym_comment, - STATE(3924), 1, + STATE(3931), 1, aux_sym_jsx_element_repeat1, - ACTIONS(7310), 2, + ACTIONS(7320), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4763), 4, + STATE(4668), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [144697] = 4, + [144689] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7025), 1, + anon_sym_DOT, + ACTIONS(7029), 1, + anon_sym_LT, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + ACTIONS(7364), 1, + anon_sym_SLASH_GT, STATE(3901), 1, sym_comment, - ACTIONS(5126), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4190), 1, + sym_type_arguments, + STATE(4192), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [144734] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7318), 1, 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(7322), 1, + sym_html_character_reference, + ACTIONS(7326), 1, anon_sym_LT, - anon_sym_extends, - [144722] = 4, + ACTIONS(7366), 1, + anon_sym_LT_SLASH, + STATE(3899), 1, + sym_jsx_opening_element, + STATE(3902), 1, + sym_comment, + STATE(3905), 1, + aux_sym_jsx_element_repeat1, + STATE(5133), 1, + sym_jsx_closing_element, + ACTIONS(7320), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144775] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3902), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7370), 1, + anon_sym_QMARK, + STATE(3903), 1, sym_comment, - ACTIONS(5168), 13, + STATE(4061), 1, + sym_formal_parameters, + STATE(5341), 1, + sym__call_signature, + STATE(5343), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7368), 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, - [144747] = 4, + anon_sym_PIPE_RBRACE, + [144816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3903), 1, + ACTIONS(4356), 1, + anon_sym_PIPE, + STATE(3904), 1, sym_comment, - ACTIONS(5160), 13, + ACTIONS(4841), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [144772] = 7, + anon_sym_PIPE_RBRACE, + [144843] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7318), 1, + anon_sym_LBRACE, + ACTIONS(7322), 1, + sym_html_character_reference, + ACTIONS(7326), 1, + anon_sym_LT, + ACTIONS(7366), 1, + anon_sym_LT_SLASH, + STATE(3899), 1, + sym_jsx_opening_element, + STATE(3905), 1, + sym_comment, + STATE(3931), 1, + aux_sym_jsx_element_repeat1, + STATE(5278), 1, + sym_jsx_closing_element, + ACTIONS(7320), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [144884] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(5349), 1, anon_sym_PIPE, - ACTIONS(7366), 1, - anon_sym_DOT, - ACTIONS(7368), 1, - anon_sym_QMARK_DOT, - STATE(3904), 1, + STATE(3906), 1, sym_comment, - ACTIONS(4989), 10, + ACTIONS(5351), 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, - [144803] = 4, + [144911] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3905), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(7372), 1, + anon_sym_QMARK, + STATE(3907), 1, sym_comment, - ACTIONS(4966), 13, + STATE(4061), 1, + sym_formal_parameters, + STATE(4566), 1, + sym__call_signature, + STATE(5343), 1, + sym_type_annotation, + STATE(6986), 1, + sym_type_parameters, + ACTIONS(7368), 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, - [144828] = 4, + anon_sym_PIPE_RBRACE, + [144952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3906), 1, + ACTIONS(4985), 1, + anon_sym_PIPE, + STATE(3908), 1, sym_comment, - ACTIONS(5130), 13, + ACTIONS(4987), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [144853] = 4, + anon_sym_PIPE_RBRACE, + [144979] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2247), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3907), 1, + ACTIONS(5190), 1, + anon_sym_PIPE, + STATE(3909), 1, sym_comment, - ACTIONS(5126), 13, + ACTIONS(5192), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [144878] = 4, + anon_sym_PIPE_RBRACE, + [145008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3908), 1, + ACTIONS(5327), 1, + anon_sym_PIPE, + STATE(3910), 1, sym_comment, - ACTIONS(5130), 13, + ACTIONS(5329), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [144903] = 12, + anon_sym_PIPE_RBRACE, + [145035] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, - anon_sym_QMARK, - STATE(3909), 1, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4977), 1, + anon_sym_PIPE, + STATE(3911), 1, sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(4515), 1, - sym__call_signature, - STATE(5117), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7358), 5, + STATE(2441), 2, + sym_template_string, + sym_arguments, + ACTIONS(4979), 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, - [144944] = 11, + [145068] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(3910), 1, + STATE(3912), 1, sym_comment, - STATE(4055), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5392), 1, - sym__call_signature, - STATE(5404), 1, + STATE(5005), 1, sym_type_annotation, - STATE(6769), 1, + STATE(5737), 1, + sym__initializer, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7372), 5, + STATE(6816), 1, + sym__call_signature, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144982] = 11, + [145110] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3911), 1, + STATE(3913), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4532), 1, - sym__call_signature, - STATE(5179), 1, + STATE(4883), 1, sym_type_annotation, - STATE(6769), 1, + STATE(4884), 1, + sym__call_signature, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7374), 5, + ACTIONS(7376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145020] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3912), 1, - sym_comment, - STATE(5409), 1, - sym_import_require_clause, - STATE(5628), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6922), 1, - sym_import_clause, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [145064] = 13, + [145148] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3913), 1, + STATE(3914), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5145), 1, + STATE(5149), 1, + sym__call_signature, + STATE(5150), 1, sym_type_annotation, - STATE(6182), 1, - sym__initializer, - STATE(6493), 1, + STATE(6986), 1, sym_type_parameters, - STATE(6603), 1, - sym__call_signature, - ACTIONS(7376), 3, + ACTIONS(7378), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145106] = 13, + anon_sym_PIPE_RBRACE, + [145186] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - STATE(3914), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(3915), 1, sym_comment, - STATE(4255), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4748), 1, - sym__call_signature, - STATE(5225), 1, + STATE(5169), 1, sym_type_annotation, - STATE(5799), 1, - sym__initializer, - STATE(6732), 1, + STATE(5170), 1, + sym__call_signature, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7378), 3, + ACTIONS(7380), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145148] = 13, + anon_sym_PIPE_RBRACE, + [145224] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, + ACTIONS(7029), 1, anon_sym_LT, - ACTIONS(7380), 1, - anon_sym_GT, ACTIONS(7382), 1, - anon_sym_DOT, + anon_sym_GT, ACTIONS(7384), 1, + anon_sym_DOT, + ACTIONS(7386), 1, anon_sym_SLASH_GT, - STATE(3915), 1, + STATE(3916), 1, sym_comment, - STATE(4258), 1, + STATE(4223), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4259), 1, + STATE(4224), 1, sym_type_arguments, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [145190] = 13, + [145266] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3916), 1, + STATE(3917), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5270), 1, + STATE(4956), 1, sym_type_annotation, - STATE(5793), 1, + STATE(6114), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6646), 1, + STATE(6669), 1, sym__call_signature, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145232] = 11, + [145308] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(3917), 1, - sym_comment, - STATE(4055), 1, - sym_formal_parameters, - STATE(5177), 1, - sym__call_signature, - STATE(5179), 1, - sym_type_annotation, - STATE(6769), 1, - sym_type_parameters, - ACTIONS(7374), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145270] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, STATE(3918), 1, sym_comment, - STATE(4055), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5115), 1, - sym_type_annotation, - STATE(5116), 1, + STATE(4630), 1, sym__call_signature, - STATE(6769), 1, + STATE(5018), 1, + sym_type_annotation, + STATE(5757), 1, + sym__initializer, + STATE(6561), 1, sym_type_parameters, - ACTIONS(7388), 5, + ACTIONS(7390), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145308] = 11, + [145350] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, STATE(3919), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4488), 1, + STATE(4565), 1, sym__call_signature, - STATE(4948), 1, + STATE(5354), 1, sym_type_annotation, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7390), 5, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145346] = 10, + [145388] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, + ACTIONS(7223), 1, anon_sym_EQ, STATE(3920), 1, sym_comment, - STATE(4457), 1, + STATE(4479), 1, sym_formal_parameters, - STATE(6477), 1, + STATE(6555), 1, sym_type_parameters, - ACTIONS(4787), 2, + ACTIONS(4789), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4518), 5, + ACTIONS(4520), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145382] = 9, + [145424] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4525), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, STATE(3921), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145416] = 13, + STATE(5436), 1, + sym_import_require_clause, + STATE(5437), 1, + sym_string, + STATE(6543), 1, + sym__import_identifier, + STATE(6963), 1, + sym_import_clause, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [145468] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, STATE(3922), 1, sym_comment, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4815), 1, - sym__call_signature, - STATE(5042), 1, + STATE(4970), 1, sym_type_annotation, - STATE(6136), 1, + STATE(6125), 1, sym__initializer, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7392), 3, + STATE(6635), 1, + sym__call_signature, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145458] = 13, + [145510] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, STATE(3923), 1, sym_comment, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5001), 1, + STATE(4786), 1, + sym__call_signature, + STATE(5022), 1, sym_type_annotation, - STATE(5828), 1, + STATE(6176), 1, sym__initializer, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - STATE(6722), 1, - sym__call_signature, ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145500] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7396), 1, - anon_sym_LBRACE, - ACTIONS(7402), 1, - sym_html_character_reference, - ACTIONS(7405), 1, - anon_sym_LT_SLASH, - ACTIONS(7407), 1, - anon_sym_LT, - STATE(3883), 1, - sym_jsx_opening_element, - ACTIONS(7399), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(3924), 2, - sym_comment, - aux_sym_jsx_element_repeat1, - STATE(4763), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [145536] = 5, + [145552] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1972), 1, - anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3925), 1, + ACTIONS(4871), 1, + anon_sym_PIPE, + STATE(3924), 1, sym_comment, - ACTIONS(2030), 11, + ACTIONS(4873), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -329909,1139 +329950,1174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, anon_sym_PIPE_RBRACE, - [145562] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(3926), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145596] = 11, + [145578] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3927), 1, + STATE(3925), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4946), 1, + STATE(4496), 1, sym__call_signature, - STATE(4948), 1, + STATE(5150), 1, sym_type_annotation, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7390), 5, + ACTIONS(7378), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145634] = 13, + [145616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3928), 1, + ACTIONS(4843), 1, + anon_sym_PIPE, + ACTIONS(7127), 1, + anon_sym_is, + STATE(3926), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(5019), 1, - sym_type_annotation, - STATE(5661), 1, - sym__initializer, - STATE(6358), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - ACTIONS(7386), 3, + ACTIONS(4845), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [145676] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4515), 1, anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(3929), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [145710] = 13, + [145644] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, - anon_sym_LT, - ACTIONS(7380), 1, - anon_sym_GT, - ACTIONS(7382), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_SLASH_GT, - STATE(3930), 1, - sym_comment, - STATE(4222), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4227), 1, - sym_type_arguments, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, + ACTIONS(7185), 1, sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [145752] = 13, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3927), 1, + sym_comment, + STATE(5503), 1, + sym_import_require_clause, + STATE(5508), 1, + sym_string, + STATE(6543), 1, + sym__import_identifier, + STATE(6817), 1, + sym_import_clause, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [145688] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3931), 1, + STATE(3928), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5002), 1, + STATE(5047), 1, sym_type_annotation, - STATE(6106), 1, + STATE(5786), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6790), 1, + STATE(6949), 1, sym__call_signature, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145794] = 13, + [145730] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3932), 1, + STATE(3929), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4898), 1, + STATE(5198), 1, sym_type_annotation, - STATE(5646), 1, + STATE(6332), 1, sym__initializer, - STATE(6340), 1, + STATE(6354), 1, sym__call_signature, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7386), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145836] = 13, + [145772] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - STATE(3933), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(3930), 1, sym_comment, - STATE(4255), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4667), 1, + STATE(4502), 1, sym__call_signature, - STATE(5166), 1, + STATE(4883), 1, sym_type_annotation, - STATE(5940), 1, - sym__initializer, - STATE(6732), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7412), 3, + ACTIONS(7376), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145878] = 13, + anon_sym_PIPE_RBRACE, + [145810] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7398), 1, + anon_sym_LBRACE, + ACTIONS(7404), 1, + sym_html_character_reference, + ACTIONS(7407), 1, + anon_sym_LT_SLASH, + ACTIONS(7409), 1, + anon_sym_LT, + STATE(3899), 1, + sym_jsx_opening_element, + ACTIONS(7401), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(3931), 2, + sym_comment, + aux_sym_jsx_element_repeat1, + STATE(4668), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [145846] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3934), 1, + STATE(3932), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4989), 1, + STATE(5214), 1, sym_type_annotation, - STATE(6094), 1, + STATE(6334), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6805), 1, + STATE(6473), 1, sym__call_signature, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145920] = 13, + [145888] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3935), 1, + STATE(3933), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5053), 1, + STATE(5409), 1, sym_type_annotation, - STATE(5769), 1, + STATE(5921), 1, sym__initializer, - STATE(6403), 1, + STATE(5922), 1, sym__call_signature, - STATE(6493), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7414), 3, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145962] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3936), 1, - sym_comment, - STATE(5639), 1, - sym_import_require_clause, - STATE(5640), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6851), 1, - sym_import_clause, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [146006] = 13, + [145930] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3937), 1, + STATE(3934), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5103), 1, + STATE(5222), 1, sym_type_annotation, - STATE(5837), 1, + STATE(6273), 1, sym__initializer, - STATE(5843), 1, + STATE(6276), 1, sym__call_signature, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7416), 3, + ACTIONS(7414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146048] = 6, + [145972] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4855), 1, - anon_sym_PIPE, - ACTIONS(7418), 1, - anon_sym_is, - STATE(3938), 1, - sym_comment, - ACTIONS(4857), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4514), 1, anon_sym_COMMA, + ACTIONS(4530), 1, anon_sym_RBRACE, + ACTIONS(7223), 1, + anon_sym_EQ, + STATE(3935), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146076] = 13, + [146006] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, + ACTIONS(7029), 1, anon_sym_LT, - ACTIONS(7380), 1, + ACTIONS(7382), 1, anon_sym_GT, + ACTIONS(7384), 1, + anon_sym_DOT, + ACTIONS(7416), 1, + anon_sym_SLASH_GT, + STATE(3936), 1, + sym_comment, + STATE(4193), 1, + sym_type_arguments, + STATE(4211), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [146048] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3937), 1, + sym_comment, + STATE(5627), 1, + sym_string, + STATE(5628), 1, + sym_import_require_clause, + STATE(6543), 1, + sym__import_identifier, + STATE(6928), 1, + sym_import_clause, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [146092] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7029), 1, + anon_sym_LT, ACTIONS(7382), 1, + anon_sym_GT, + ACTIONS(7384), 1, anon_sym_DOT, - ACTIONS(7420), 1, + ACTIONS(7418), 1, anon_sym_SLASH_GT, - STATE(3939), 1, + STATE(3938), 1, sym_comment, - STATE(4168), 1, + STATE(4089), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4171), 1, + STATE(4090), 1, sym_type_arguments, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [146118] = 11, + [146134] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(3940), 1, + STATE(3939), 1, sym_comment, - STATE(4055), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4553), 1, - sym__call_signature, - STATE(5404), 1, + STATE(5095), 1, sym_type_annotation, - STATE(6769), 1, + STATE(5834), 1, + sym__initializer, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7372), 5, + STATE(6990), 1, + sym__call_signature, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146156] = 13, + [146176] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4527), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3941), 1, + STATE(3940), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(5066), 1, - sym_type_annotation, - STATE(5879), 1, - sym__initializer, - STATE(6493), 1, - sym_type_parameters, - STATE(6791), 1, - sym__call_signature, - ACTIONS(7394), 3, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [146198] = 7, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146210] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_LT, - ACTIONS(7348), 1, - anon_sym_DOT, - STATE(3942), 1, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4533), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, + anon_sym_EQ, + STATE(3941), 1, sym_comment, - STATE(4078), 1, - sym_type_arguments, - ACTIONS(4202), 9, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4520), 7, 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_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146228] = 14, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146244] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(6994), 1, + ACTIONS(6996), 1, anon_sym_STAR, - ACTIONS(6998), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - ACTIONS(7177), 1, + ACTIONS(7185), 1, sym_identifier, - ACTIONS(7179), 1, + ACTIONS(7187), 1, anon_sym_type, - STATE(3943), 1, + STATE(3942), 1, sym_comment, - STATE(5516), 1, + STATE(5500), 1, sym_import_require_clause, - STATE(5517), 1, + STATE(5501), 1, sym_string, - STATE(6559), 1, + STATE(6543), 1, sym__import_identifier, - STATE(6898), 1, + STATE(6725), 1, sym_import_clause, - STATE(7302), 2, + STATE(7318), 2, sym_namespace_import, sym_named_imports, - [146272] = 13, + [146288] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(3944), 1, + STATE(3943), 1, sym_comment, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5030), 1, + STATE(4702), 1, + sym__call_signature, + STATE(5222), 1, sym_type_annotation, - STATE(5877), 1, + STATE(6307), 1, sym__initializer, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - STATE(6780), 1, - sym__call_signature, - ACTIONS(7386), 3, + ACTIONS(7414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146314] = 13, + [146330] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, + STATE(3944), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146364] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, STATE(3945), 1, sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4874), 1, + STATE(4536), 1, + sym__call_signature, + STATE(4865), 1, sym_type_annotation, - STATE(5924), 1, - sym__initializer, - STATE(6493), 1, + STATE(6986), 1, sym_type_parameters, - STATE(6904), 1, - sym__call_signature, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146356] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4845), 1, - anon_sym_PIPE, - STATE(3946), 1, - sym_comment, - ACTIONS(4847), 11, + ACTIONS(7420), 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, - [146382] = 13, + [146402] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, + ACTIONS(7029), 1, anon_sym_LT, - ACTIONS(7380), 1, - anon_sym_GT, ACTIONS(7382), 1, + anon_sym_GT, + ACTIONS(7384), 1, anon_sym_DOT, ACTIONS(7422), 1, anon_sym_SLASH_GT, - STATE(3947), 1, + STATE(3946), 1, sym_comment, - STATE(4183), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4184), 1, + STATE(4130), 1, sym_type_arguments, - STATE(4832), 1, + STATE(4207), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [146424] = 11, + [146444] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(3948), 1, + STATE(3947), 1, sym_comment, - STATE(4055), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(4546), 1, + STATE(4653), 1, sym__call_signature, - STATE(4858), 1, + STATE(5409), 1, sym_type_annotation, - STATE(6769), 1, + STATE(5965), 1, + sym__initializer, + STATE(6561), 1, sym_type_parameters, - ACTIONS(7424), 5, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146462] = 13, + [146486] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3949), 1, + STATE(3948), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5213), 1, + STATE(5025), 1, sym_type_annotation, - STATE(6234), 1, + STATE(5950), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6501), 1, + STATE(6880), 1, sym__call_signature, - ACTIONS(7376), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146504] = 11, + [146528] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(6996), 1, + anon_sym_STAR, + ACTIONS(7000), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_type, + STATE(3949), 1, + sym_comment, + STATE(5452), 1, + sym_string, + STATE(5453), 1, + sym_import_require_clause, + STATE(6543), 1, + sym__import_identifier, + STATE(6855), 1, + sym_import_clause, + STATE(7318), 2, + sym_namespace_import, + sym_named_imports, + [146572] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, STATE(3950), 1, sym_comment, - STATE(4055), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4857), 1, - sym__call_signature, - STATE(4858), 1, + STATE(5275), 1, sym_type_annotation, - STATE(6769), 1, + STATE(5904), 1, + sym__initializer, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7424), 5, + STATE(6941), 1, + sym__call_signature, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146542] = 6, + [146614] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, - anon_sym_PIPE, - ACTIONS(7147), 1, - anon_sym_is, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, STATE(3951), 1, sym_comment, - ACTIONS(4873), 10, + STATE(4813), 1, + sym_formal_parameters, + STATE(5184), 1, + sym_type_annotation, + STATE(5874), 1, + sym__initializer, + STATE(6459), 1, + sym_type_parameters, + STATE(6961), 1, + sym__call_signature, + ACTIONS(7374), 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, - [146570] = 13, + [146656] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(3952), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5189), 1, + STATE(4915), 1, sym_type_annotation, - STATE(6139), 1, + STATE(5681), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6571), 1, + STATE(6517), 1, sym__call_signature, - ACTIONS(7426), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146612] = 13, + [146698] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, STATE(3953), 1, sym_comment, - STATE(4255), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4706), 1, + STATE(4516), 1, sym__call_signature, - STATE(5319), 1, + STATE(5169), 1, sym_type_annotation, - STATE(6314), 1, - sym__initializer, - STATE(6732), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7428), 3, + ACTIONS(7380), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146654] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, - STATE(3954), 1, - sym_comment, - STATE(5505), 1, - sym_import_require_clause, - STATE(5506), 1, - sym_string, - STATE(6559), 1, - sym__import_identifier, - STATE(6719), 1, - sym_import_clause, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [146698] = 13, + anon_sym_PIPE_RBRACE, + [146736] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7169), 1, - anon_sym_LPAREN, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - STATE(3955), 1, + STATE(3954), 1, sym_comment, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4643), 1, - sym__call_signature, - STATE(5103), 1, + STATE(5311), 1, sym_type_annotation, - STATE(5853), 1, + STATE(6180), 1, sym__initializer, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - ACTIONS(7416), 3, + STATE(6529), 1, + sym__call_signature, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146740] = 13, + [146778] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3956), 1, + STATE(3955), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5303), 1, + STATE(5312), 1, sym_type_annotation, - STATE(6028), 1, + STATE(6179), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6899), 1, + STATE(6461), 1, sym__call_signature, - ACTIONS(7376), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146782] = 6, + [146820] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_PIPE, - ACTIONS(7147), 1, - anon_sym_is, - STATE(3957), 1, - sym_comment, - ACTIONS(4843), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4514), 1, anon_sym_COMMA, + ACTIONS(4524), 1, anon_sym_RBRACE, + ACTIONS(7223), 1, + anon_sym_EQ, + STATE(3956), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146810] = 11, + [146854] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3958), 1, + STATE(3957), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4516), 1, + STATE(4864), 1, sym__call_signature, - STATE(5115), 1, + STATE(4865), 1, sym_type_annotation, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7388), 5, + ACTIONS(7420), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146848] = 13, + [146892] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3959), 1, + STATE(3958), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5251), 1, + STATE(5377), 1, sym_type_annotation, - STATE(5993), 1, + STATE(6042), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6936), 1, + STATE(6769), 1, sym__call_signature, - ACTIONS(7376), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146890] = 13, + [146934] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, ACTIONS(7171), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(3960), 1, + STATE(3959), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4889), 1, + STATE(5105), 1, sym_type_annotation, - STATE(5943), 1, + STATE(6254), 1, sym__initializer, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6988), 1, + STATE(6480), 1, sym__call_signature, - ACTIONS(7394), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146932] = 9, + [146976] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(6984), 1, + anon_sym_LT, + ACTIONS(6990), 1, + anon_sym_DOT, + ACTIONS(7428), 1, + anon_sym_QMARK, + STATE(3695), 1, + sym_type_arguments, + STATE(3960), 1, + sym_comment, + STATE(6525), 1, + sym_type_annotation, + ACTIONS(4202), 6, anon_sym_COMMA, - ACTIONS(4528), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147012] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1980), 1, + anon_sym_PIPE, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(3961), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4518), 7, + ACTIONS(2030), 11, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [146966] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [147038] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(6994), 1, - anon_sym_STAR, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - anon_sym_type, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, STATE(3962), 1, sym_comment, - STATE(5431), 1, - sym_string, - STATE(5432), 1, - sym_import_require_clause, - STATE(6559), 1, - sym__import_identifier, - STATE(6816), 1, - sym_import_clause, - STATE(7302), 2, - sym_namespace_import, - sym_named_imports, - [147010] = 10, + STATE(4286), 1, + sym_formal_parameters, + STATE(4750), 1, + sym__call_signature, + STATE(5135), 1, + sym_type_annotation, + STATE(6262), 1, + sym__initializer, + STATE(6561), 1, + sym_type_parameters, + ACTIONS(7431), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147080] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(6978), 1, + ACTIONS(7095), 1, anon_sym_LT, - ACTIONS(6988), 1, + ACTIONS(7310), 1, anon_sym_DOT, - ACTIONS(7430), 1, - anon_sym_QMARK, - STATE(3786), 1, - sym_type_arguments, STATE(3963), 1, sym_comment, - STATE(6658), 1, - sym_type_annotation, - ACTIONS(4202), 6, + STATE(4242), 1, + sym_type_arguments, + ACTIONS(4202), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [147046] = 13, + [147110] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, STATE(3964), 1, sym_comment, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5166), 1, - sym_type_annotation, - STATE(5964), 1, + STATE(5353), 1, sym__call_signature, - STATE(5965), 1, - sym__initializer, - STATE(6769), 1, + STATE(5354), 1, + sym_type_annotation, + STATE(6986), 1, sym_type_parameters, - ACTIONS(7412), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147088] = 9, + anon_sym_PIPE_RBRACE, + [147148] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4512), 1, - anon_sym_COMMA, - ACTIONS(4531), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, + ACTIONS(7165), 1, anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LT, STATE(3965), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 7, + STATE(4813), 1, + sym_formal_parameters, + STATE(4894), 1, + sym_type_annotation, + STATE(6063), 1, + sym__initializer, + STATE(6459), 1, + sym_type_parameters, + STATE(6740), 1, + sym__call_signature, + ACTIONS(7388), 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, - [147122] = 4, + [147190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4851), 1, + anon_sym_PIPE, + ACTIONS(7127), 1, + anon_sym_is, STATE(3966), 1, sym_comment, - ACTIONS(4518), 11, + ACTIONS(4853), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, 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_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147145] = 7, + [147218] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7435), 1, + ACTIONS(4855), 1, anon_sym_PIPE, - ACTIONS(7437), 1, - anon_sym_extends, + ACTIONS(7433), 1, + anon_sym_is, STATE(3967), 1, sym_comment, - ACTIONS(5076), 8, + ACTIONS(4857), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331049,17 +331125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147174] = 5, + [147246] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4993), 1, + ACTIONS(5357), 1, anon_sym_PIPE, STATE(3968), 1, sym_comment, - ACTIONS(4995), 10, + ACTIONS(5359), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331070,16 +331148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147199] = 5, + [147271] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, + ACTIONS(5274), 1, anon_sym_PIPE, STATE(3969), 1, sym_comment, - ACTIONS(5015), 10, + ACTIONS(5276), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331090,16 +331168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147224] = 5, + [147296] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5228), 1, + ACTIONS(4939), 1, anon_sym_PIPE, STATE(3970), 1, sym_comment, - ACTIONS(5230), 10, + ACTIONS(4941), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331110,16 +331188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147249] = 5, + [147321] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, + ACTIONS(3232), 1, anon_sym_PIPE, STATE(3971), 1, sym_comment, - ACTIONS(5011), 10, + ACTIONS(3448), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331130,16 +331208,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147274] = 5, + [147346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5090), 1, - anon_sym_PIPE, STATE(3972), 1, sym_comment, - ACTIONS(5092), 10, + ACTIONS(4959), 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, + [147369] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5308), 1, + anon_sym_PIPE, + STATE(3973), 1, + sym_comment, + ACTIONS(5310), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331150,20 +331247,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147299] = 7, + [147394] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(3973), 1, + STATE(3974), 1, sym_comment, - ACTIONS(5062), 8, + ACTIONS(4941), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331172,20 +331269,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [147328] = 7, + [147423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(4973), 1, + anon_sym_PIPE, + STATE(3975), 1, + sym_comment, + ACTIONS(4975), 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, + [147448] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7095), 1, + anon_sym_LT, + STATE(3976), 1, + sym_comment, + STATE(4250), 1, + sym_type_arguments, + ACTIONS(4857), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7435), 1, anon_sym_PIPE, - ACTIONS(7437), 1, anon_sym_extends, - STATE(3974), 1, + [147475] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3200), 1, + anon_sym_PIPE, + STATE(3977), 1, sym_comment, - ACTIONS(5226), 8, + ACTIONS(3536), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331193,23 +331327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147357] = 8, + [147500] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(3975), 1, + STATE(3978), 1, sym_comment, - STATE(4457), 1, + STATE(4479), 1, sym_formal_parameters, - STATE(6477), 1, + STATE(6555), 1, sym_type_parameters, - ACTIONS(4518), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -331217,16 +331353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147388] = 5, + [147531] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5060), 1, + ACTIONS(5043), 1, anon_sym_PIPE, - STATE(3976), 1, + STATE(3979), 1, sym_comment, - ACTIONS(5062), 10, + ACTIONS(5045), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331237,36 +331373,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147413] = 5, + [147556] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3222), 1, + ACTIONS(5059), 1, anon_sym_PIPE, - STATE(3977), 1, + ACTIONS(7441), 1, + anon_sym_LBRACK, + STATE(3980), 1, sym_comment, - ACTIONS(3540), 10, + ACTIONS(5061), 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_extends, anon_sym_PIPE_RBRACE, - [147438] = 5, + [147583] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5070), 1, + ACTIONS(5170), 1, anon_sym_PIPE, - STATE(3978), 1, + STATE(3981), 1, sym_comment, - ACTIONS(5072), 10, + ACTIONS(5172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331277,79 +331414,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147463] = 4, + [147608] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3979), 1, + ACTIONS(5166), 1, + anon_sym_PIPE, + STATE(3982), 1, sym_comment, - ACTIONS(6523), 11, + ACTIONS(5168), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, 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_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147486] = 4, + [147633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3980), 1, + ACTIONS(5162), 1, + anon_sym_PIPE, + STATE(3983), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(5164), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, 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_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147509] = 6, + [147658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7439), 1, - anon_sym_DOT, - ACTIONS(7441), 1, - anon_sym_QMARK_DOT, - STATE(3981), 1, + ACTIONS(5049), 1, + anon_sym_PIPE, + STATE(3984), 1, sym_comment, - ACTIONS(4989), 9, + ACTIONS(5051), 10, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [147536] = 7, + anon_sym_PIPE_RBRACE, + [147683] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_type, + ACTIONS(7447), 1, + anon_sym_COMMA, + ACTIONS(7449), 1, + anon_sym_RBRACE, + ACTIONS(7451), 1, + anon_sym_typeof, + STATE(3985), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(5743), 1, + sym_import_specifier, + STATE(6851), 1, + sym__import_identifier, + STATE(7127), 1, + sym__module_export_name, + [147726] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7435), 1, + ACTIONS(3222), 1, anon_sym_PIPE, - ACTIONS(7437), 1, - anon_sym_extends, - STATE(3982), 1, + STATE(3986), 1, sym_comment, - ACTIONS(5080), 8, + ACTIONS(3438), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331357,36 +331520,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147565] = 4, + [147751] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3983), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, + anon_sym_extends, + STATE(3987), 1, sym_comment, - ACTIONS(4839), 11, + ACTIONS(5314), 8, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [147588] = 5, + anon_sym_PIPE_RBRACE, + [147780] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3232), 1, + ACTIONS(3210), 1, anon_sym_PIPE, - STATE(3984), 1, + STATE(3988), 1, sym_comment, - ACTIONS(3506), 10, + ACTIONS(3420), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331397,36 +331565,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147613] = 5, + [147805] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, + ACTIONS(5331), 1, anon_sym_PIPE, - STATE(3985), 1, + ACTIONS(7441), 1, + anon_sym_LBRACK, + STATE(3989), 1, sym_comment, - ACTIONS(4873), 10, + ACTIONS(5333), 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_extends, anon_sym_PIPE_RBRACE, - [147638] = 5, + [147832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5086), 1, + ACTIONS(5059), 1, anon_sym_PIPE, - STATE(3986), 1, + STATE(3990), 1, sym_comment, - ACTIONS(5088), 10, + ACTIONS(5061), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331437,37 +331606,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147663] = 6, + [147857] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7081), 1, - anon_sym_LT, - STATE(3987), 1, + ACTIONS(5335), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_extends, + STATE(3991), 1, sym_comment, - STATE(4093), 1, - sym_type_arguments, - ACTIONS(4857), 9, + ACTIONS(5337), 9, sym__automatic_semicolon, - sym__function_signature_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, - anon_sym_extends, - [147690] = 5, + anon_sym_PIPE_RBRACE, + [147884] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5304), 1, + ACTIONS(5296), 1, anon_sym_PIPE, - STATE(3988), 1, + STATE(3992), 1, sym_comment, - ACTIONS(5306), 10, + ACTIONS(5236), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331478,38 +331647,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147715] = 5, + [147909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4972), 1, - anon_sym_PIPE, - STATE(3989), 1, + STATE(3993), 1, sym_comment, - ACTIONS(4974), 10, + ACTIONS(6452), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, 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, + [147932] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3994), 1, + sym_comment, + ACTIONS(4983), 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, - anon_sym_PIPE_RBRACE, - [147740] = 6, + [147955] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5294), 1, + ACTIONS(4843), 1, anon_sym_PIPE, - ACTIONS(7433), 1, - anon_sym_AMP, - STATE(3990), 1, + STATE(3995), 1, sym_comment, - ACTIONS(5296), 9, + ACTIONS(4845), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331517,16 +331702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147767] = 5, + [147980] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(4855), 1, anon_sym_PIPE, - STATE(3991), 1, + STATE(3996), 1, sym_comment, ACTIONS(4857), 10, sym__automatic_semicolon, @@ -331539,16 +331725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147792] = 5, + [148005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5188), 1, + ACTIONS(5312), 1, anon_sym_PIPE, - STATE(3992), 1, + STATE(3997), 1, sym_comment, - ACTIONS(5190), 10, + ACTIONS(5314), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331559,16 +331745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147817] = 5, + [148030] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4841), 1, + ACTIONS(4851), 1, anon_sym_PIPE, - STATE(3993), 1, + STATE(3998), 1, sym_comment, - ACTIONS(4843), 10, + ACTIONS(4853), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331579,20 +331765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147842] = 7, + [148055] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(3994), 1, + STATE(3999), 1, sym_comment, - ACTIONS(5047), 8, + ACTIONS(5082), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331601,20 +331787,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [147871] = 7, + [148084] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(5059), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_LBRACK, + STATE(4000), 1, + sym_comment, + ACTIONS(5061), 2, anon_sym_AMP, + anon_sym_extends, + ACTIONS(5343), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148113] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(3995), 1, + STATE(4001), 1, sym_comment, - ACTIONS(5051), 8, + ACTIONS(5347), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331623,16 +331831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [147900] = 5, + [148142] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, + ACTIONS(3186), 1, anon_sym_PIPE, - STATE(3996), 1, + STATE(4002), 1, sym_comment, - ACTIONS(4883), 10, + ACTIONS(3568), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331643,37 +331851,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147925] = 6, + [148167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, + ACTIONS(4977), 1, anon_sym_PIPE, - ACTIONS(7443), 1, - anon_sym_LBRACK, - STATE(3997), 1, + STATE(4003), 1, sym_comment, - ACTIONS(4883), 9, + ACTIONS(4979), 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, - [147952] = 5, + [148192] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4004), 1, + sym_comment, + ACTIONS(6344), 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, + [148215] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3236), 1, + ACTIONS(7455), 1, + anon_sym_DOT, + ACTIONS(7457), 1, + anon_sym_QMARK_DOT, + STATE(4005), 1, + sym_comment, + ACTIONS(5292), 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, - STATE(3998), 1, + anon_sym_extends, + [148242] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, + anon_sym_extends, + STATE(4006), 1, sym_comment, - ACTIONS(3570), 10, + ACTIONS(5184), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331681,19 +331932,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [148271] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7435), 1, anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, + STATE(4007), 1, + sym_comment, + ACTIONS(5180), 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, - [147977] = 5, + [148300] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(4989), 1, anon_sym_PIPE, - STATE(3999), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + STATE(4008), 1, sym_comment, - ACTIONS(5334), 10, + ACTIONS(4991), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331701,19 +331974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148002] = 5, + [148327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - STATE(4000), 1, + STATE(4009), 1, sym_comment, - ACTIONS(5288), 10, + ACTIONS(4995), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331724,35 +331996,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148027] = 4, + [148352] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4001), 1, + ACTIONS(5353), 1, + anon_sym_PIPE, + STATE(4010), 1, sym_comment, - ACTIONS(5218), 11, + ACTIONS(5355), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [148050] = 5, + anon_sym_PIPE_RBRACE, + [148377] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2235), 1, + ACTIONS(2247), 1, anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4002), 1, + STATE(4011), 1, sym_comment, - ACTIONS(5256), 10, + ACTIONS(5192), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -331763,69 +332036,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148075] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [148402] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7445), 1, - sym_identifier, - ACTIONS(7447), 1, - anon_sym_type, - ACTIONS(7449), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5262), 1, + anon_sym_PIPE, + STATE(4012), 1, + sym_comment, + ACTIONS(5264), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7451), 1, anon_sym_RBRACE, - ACTIONS(7453), 1, - anon_sym_typeof, - STATE(4003), 1, - sym_comment, - STATE(5551), 1, - sym_string, - STATE(5923), 1, - sym_import_specifier, - STATE(6907), 1, - sym__import_identifier, - STATE(7043), 1, - sym__module_export_name, - [148118] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2239), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4004), 1, + STATE(4013), 1, sym_comment, - ACTIONS(5256), 10, + ACTIONS(4841), 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_LT, anon_sym_extends, - [148143] = 7, + [148450] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7435), 1, + ACTIONS(5361), 1, anon_sym_PIPE, - ACTIONS(7437), 1, - anon_sym_extends, - STATE(4005), 1, + STATE(4014), 1, sym_comment, - ACTIONS(5268), 8, + ACTIONS(5363), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331833,17 +332092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [148172] = 5, + [148475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4997), 1, + ACTIONS(4931), 1, anon_sym_PIPE, - STATE(4006), 1, + STATE(4015), 1, sym_comment, - ACTIONS(4999), 10, + ACTIONS(4933), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331854,33 +332115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148197] = 4, + [148500] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4007), 1, + ACTIONS(5086), 1, + anon_sym_PIPE, + STATE(4016), 1, sym_comment, - ACTIONS(5204), 11, + ACTIONS(5088), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [148220] = 4, + anon_sym_PIPE_RBRACE, + [148525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4008), 1, + STATE(4017), 1, sym_comment, - ACTIONS(4867), 11, + ACTIONS(4875), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -331892,35 +332154,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [148243] = 4, + [148548] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4009), 1, + ACTIONS(5286), 1, + anon_sym_PIPE, + STATE(4018), 1, sym_comment, - ACTIONS(5178), 11, + ACTIONS(5288), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [148266] = 5, + anon_sym_PIPE_RBRACE, + [148573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5266), 1, + ACTIONS(5072), 1, anon_sym_PIPE, - STATE(4010), 1, + STATE(4019), 1, sym_comment, - ACTIONS(5268), 10, + ACTIONS(5074), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331931,36 +332194,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148291] = 5, + [148598] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2087), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3230), 1, - anon_sym_PIPE, - STATE(4011), 1, + STATE(4020), 1, sym_comment, - ACTIONS(3508), 10, + ACTIONS(5192), 10, 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_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148316] = 5, + [148623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, + ACTIONS(5278), 1, anon_sym_PIPE, - STATE(4012), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + STATE(4021), 1, sym_comment, - ACTIONS(5003), 10, + ACTIONS(5280), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331968,19 +332233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148341] = 5, + [148650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, + ACTIONS(5076), 1, anon_sym_PIPE, - STATE(4013), 1, + STATE(4022), 1, sym_comment, - ACTIONS(5007), 10, + ACTIONS(5078), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331991,18 +332255,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148366] = 6, + [148675] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, + STATE(4023), 1, + sym_comment, + ACTIONS(4520), 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, + [148698] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4965), 1, anon_sym_PIPE, - ACTIONS(7433), 1, - anon_sym_AMP, - STATE(4014), 1, + STATE(4024), 1, sym_comment, - ACTIONS(5027), 9, + ACTIONS(4967), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332010,18 +332291,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148393] = 5, + [148723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, + STATE(4025), 1, + sym_comment, + ACTIONS(4849), 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, - STATE(4015), 1, + anon_sym_extends, + [148746] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5270), 1, + anon_sym_PIPE, + STATE(4026), 1, sym_comment, - ACTIONS(5031), 10, + ACTIONS(5272), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332032,16 +332333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148418] = 5, + [148771] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5041), 1, + ACTIONS(5323), 1, anon_sym_PIPE, - STATE(4016), 1, + STATE(4027), 1, sym_comment, - ACTIONS(5043), 10, + ACTIONS(5325), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332052,16 +332353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148443] = 5, + [148796] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3228), 1, + ACTIONS(5298), 1, anon_sym_PIPE, - STATE(4017), 1, + STATE(4028), 1, sym_comment, - ACTIONS(3518), 10, + ACTIONS(5300), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332072,16 +332373,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148468] = 5, + [148821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + STATE(4029), 1, + sym_comment, + ACTIONS(5057), 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, - STATE(4018), 1, + anon_sym_extends, + [148844] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, + anon_sym_extends, + STATE(4030), 1, sym_comment, - ACTIONS(5312), 10, + ACTIONS(5250), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332089,501 +332413,886 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [148493] = 7, + [148873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4881), 1, + ACTIONS(5242), 1, anon_sym_PIPE, - ACTIONS(7443), 1, - anon_sym_LBRACK, - STATE(4019), 1, + STATE(4031), 1, sym_comment, - ACTIONS(4883), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5084), 7, + ACTIONS(5244), 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, - [148522] = 6, + [148898] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7459), 1, + sym_identifier, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + STATE(3177), 1, + sym_class_body, + STATE(4032), 1, + sym_comment, + STATE(4564), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [148938] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7467), 1, + anon_sym_EQ, + ACTIONS(7471), 1, + anon_sym_BANG, + STATE(4033), 1, + sym_comment, + STATE(4975), 1, + sym__initializer, + STATE(5361), 1, + sym_type_annotation, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7469), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148972] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7475), 1, + sym_identifier, + STATE(3177), 1, + sym_class_body, + STATE(4034), 1, + sym_comment, + STATE(4564), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149012] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7477), 1, + sym_identifier, + STATE(3177), 1, + sym_class_body, + STATE(4035), 1, + sym_comment, + STATE(4564), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149052] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5114), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7437), 1, anon_sym_PIPE, - ACTIONS(7455), 1, + ACTIONS(7439), 1, anon_sym_extends, - STATE(4020), 1, + STATE(4036), 1, sym_comment, - ACTIONS(5116), 9, + ACTIONS(7479), 7, 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, - [148549] = 6, + [149080] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5120), 1, - anon_sym_PIPE, - ACTIONS(7443), 1, - anon_sym_LBRACK, - STATE(4021), 1, - sym_comment, - ACTIONS(5122), 9, - sym__automatic_semicolon, + ACTIONS(7223), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(4037), 1, + sym_comment, + ACTIONS(4789), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4520), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [148576] = 5, + [149106] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7033), 1, + anon_sym_SLASH_GT, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + STATE(4038), 1, + sym_comment, + STATE(4094), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149142] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5066), 1, - anon_sym_PIPE, - STATE(4022), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(7483), 1, + anon_sym_DOT, + STATE(4039), 1, sym_comment, - ACTIONS(5068), 10, + STATE(4337), 1, + sym_arguments, + ACTIONS(7481), 7, 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, - [148601] = 5, + [149170] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5150), 1, - anon_sym_PIPE, - STATE(4023), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7485), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4040), 1, sym_comment, - ACTIONS(5152), 10, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149210] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7487), 1, + sym_identifier, + STATE(3177), 1, + sym_class_body, + STATE(4041), 1, + sym_comment, + STATE(4564), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149250] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_type, + ACTIONS(7451), 1, + anon_sym_typeof, + ACTIONS(7489), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + STATE(4042), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(6638), 1, + sym_import_specifier, + STATE(6851), 1, + sym__import_identifier, + STATE(7127), 1, + sym__module_export_name, + [149290] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148626] = 5, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7491), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4043), 1, + sym_comment, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149330] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5240), 1, - anon_sym_PIPE, - STATE(4024), 1, + ACTIONS(7495), 1, + anon_sym_COLON, + STATE(4044), 1, sym_comment, - ACTIONS(5242), 10, + STATE(4797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7493), 6, 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, - [148651] = 5, + [149356] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5198), 1, - anon_sym_PIPE, - STATE(4025), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7497), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4045), 1, sym_comment, - ACTIONS(5200), 10, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149396] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, anon_sym_LBRACE, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7499), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4046), 1, + sym_comment, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149436] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7501), 1, + anon_sym_type, + ACTIONS(7503), 1, + anon_sym_as, + STATE(4047), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(6848), 1, + sym__import_identifier, + STATE(7119), 1, + sym__module_export_name, + ACTIONS(7189), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [149474] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148676] = 5, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7505), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4048), 1, + sym_comment, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149514] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5206), 1, - anon_sym_PIPE, - STATE(4026), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7471), 1, + anon_sym_BANG, + STATE(4049), 1, sym_comment, - ACTIONS(5208), 10, + STATE(5361), 1, + sym_type_annotation, + STATE(5760), 1, + sym__initializer, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7469), 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, - [148701] = 4, + [149548] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4027), 1, + ACTIONS(7507), 1, + anon_sym_is, + STATE(4050), 1, sym_comment, - ACTIONS(4869), 11, + ACTIONS(4857), 9, 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, - [148724] = 5, + [149572] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + ACTIONS(7364), 1, + anon_sym_SLASH_GT, + STATE(4051), 1, + sym_comment, + STATE(4189), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149608] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5220), 1, - anon_sym_PIPE, - STATE(4028), 1, + ACTIONS(7312), 1, + anon_sym_is, + STATE(4052), 1, sym_comment, - ACTIONS(5222), 10, + ACTIONS(4853), 9, 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_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148749] = 5, + [149632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5236), 1, - anon_sym_PIPE, - STATE(4029), 1, + ACTIONS(7312), 1, + anon_sym_is, + STATE(4053), 1, sym_comment, - ACTIONS(5238), 10, + ACTIONS(4845), 9, 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_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148774] = 12, + [149656] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7457), 1, - sym_identifier, + ACTIONS(1902), 1, + anon_sym_LT, ACTIONS(7461), 1, - anon_sym_COMMA, + anon_sym_LBRACE, ACTIONS(7463), 1, - anon_sym_RBRACE, - STATE(4030), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7509), 1, + sym_identifier, + STATE(3177), 1, + sym_class_body, + STATE(4054), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(5829), 1, - sym_export_specifier, - STATE(5832), 1, - sym__module_export_name, - ACTIONS(7459), 2, - anon_sym_type, - anon_sym_typeof, - [148812] = 7, + STATE(4564), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6604), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149696] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(4031), 1, + STATE(4055), 1, sym_comment, - STATE(3118), 2, - sym_template_string, - sym_arguments, - ACTIONS(5200), 6, + ACTIONS(4873), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [148840] = 13, + anon_sym_is, + [149718] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7027), 1, + anon_sym_SLASH_GT, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + STATE(4056), 1, + sym_comment, + STATE(4228), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149754] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, + ACTIONS(7463), 1, + anon_sym_extends, ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7511), 1, sym_identifier, - ACTIONS(7467), 1, + ACTIONS(7513), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - STATE(3167), 1, + STATE(2477), 1, sym_class_body, - STATE(4032), 1, + STATE(4057), 1, sym_comment, - STATE(4506), 1, + STATE(4476), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6831), 1, + STATE(6486), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [148880] = 5, + [149794] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7473), 1, - anon_sym_is, - STATE(4033), 1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_GT, + ACTIONS(7332), 1, + anon_sym_SLASH_GT, + STATE(4058), 1, sym_comment, - ACTIONS(4857), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149830] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7461), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7463), 1, anon_sym_extends, - [148904] = 13, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7515), 1, + sym_identifier, + STATE(3085), 1, + sym_class_body, + STATE(4059), 1, + sym_comment, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [149870] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7461), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7463), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7465), 1, anon_sym_implements, - ACTIONS(7475), 1, + ACTIONS(7517), 1, sym_identifier, - STATE(3112), 1, + STATE(3177), 1, sym_class_body, - STATE(4034), 1, + STATE(4060), 1, sym_comment, - STATE(4570), 1, + STATE(4564), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6641), 1, + STATE(6604), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [148944] = 7, + [149910] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7435), 1, - anon_sym_PIPE, - ACTIONS(7437), 1, - anon_sym_extends, - STATE(4035), 1, + ACTIONS(7495), 1, + anon_sym_COLON, + STATE(4061), 1, sym_comment, - ACTIONS(7477), 7, + STATE(4787), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7519), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148972] = 13, + [149936] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7463), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7465), 1, anon_sym_implements, - ACTIONS(7479), 1, + ACTIONS(7513), 1, + anon_sym_LBRACE, + ACTIONS(7521), 1, sym_identifier, - STATE(3112), 1, + STATE(2486), 1, sym_class_body, - STATE(4036), 1, + STATE(4062), 1, sym_comment, - STATE(4570), 1, + STATE(4439), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6641), 1, + STATE(6516), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [149012] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_GT, - ACTIONS(7362), 1, - anon_sym_SLASH_GT, - STATE(4037), 1, - sym_comment, - STATE(4262), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149048] = 13, + [149976] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7461), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7463), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7465), 1, anon_sym_implements, - ACTIONS(7481), 1, + ACTIONS(7523), 1, sym_identifier, - STATE(3167), 1, + STATE(3177), 1, sym_class_body, - STATE(4038), 1, + STATE(4063), 1, sym_comment, - STATE(4506), 1, + STATE(4564), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6831), 1, + STATE(6604), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [149088] = 7, + [150016] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(7485), 1, - anon_sym_DOT, - STATE(4039), 1, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + STATE(4064), 1, sym_comment, - STATE(4332), 1, + STATE(3058), 2, + sym_template_string, sym_arguments, - ACTIONS(7483), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4979), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149116] = 13, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150044] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7469), 1, + ACTIONS(7461), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7465), 1, anon_sym_implements, - ACTIONS(7487), 1, + ACTIONS(7525), 1, sym_identifier, - ACTIONS(7489), 1, + STATE(3085), 1, + sym_class_body, + STATE(4065), 1, + sym_comment, + STATE(4578), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6901), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [150084] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7463), 1, + anon_sym_extends, + ACTIONS(7465), 1, + anon_sym_implements, + ACTIONS(7513), 1, anon_sym_LBRACE, - STATE(3281), 1, + ACTIONS(7527), 1, + sym_identifier, + STATE(3302), 1, sym_class_body, - STATE(4040), 1, + STATE(4066), 1, sym_comment, - STATE(4499), 1, + STATE(4561), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6706), 1, + STATE(6821), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [149156] = 13, + [150124] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332592,83 +333301,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(7445), 1, + ACTIONS(7529), 1, sym_identifier, - ACTIONS(7447), 1, + ACTIONS(7533), 1, + anon_sym_COMMA, + ACTIONS(7535), 1, + anon_sym_RBRACE, + STATE(4067), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(5714), 1, + sym_export_specifier, + STATE(5715), 1, + sym__module_export_name, + ACTIONS(7531), 2, anon_sym_type, - ACTIONS(7453), 1, anon_sym_typeof, - ACTIONS(7491), 1, + [150162] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_type, + ACTIONS(7451), 1, + anon_sym_typeof, + ACTIONS(7537), 1, anon_sym_RBRACE, - STATE(4041), 1, + STATE(4068), 1, sym_comment, - STATE(5551), 1, + STATE(5427), 1, sym_string, - STATE(6472), 1, + STATE(6638), 1, sym_import_specifier, - STATE(6907), 1, + STATE(6851), 1, sym__import_identifier, - STATE(7043), 1, + STATE(7127), 1, sym__module_export_name, - [149196] = 11, - ACTIONS(3), 1, + [150202] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4069), 1, + sym_comment, + ACTIONS(2030), 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, + [150224] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7539), 1, anon_sym_LBRACE, - ACTIONS(7049), 1, - anon_sym_SLASH_GT, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_GT, - STATE(4042), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4070), 1, sym_comment, - STATE(4178), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149232] = 10, + STATE(4410), 1, + sym_type_parameters, + STATE(5297), 1, + sym_class_body, + STATE(5699), 1, + sym_extends_clause, + STATE(6770), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [150261] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7493), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7497), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7545), 1, anon_sym_BANG, - STATE(4043), 1, + ACTIONS(7547), 1, + anon_sym_QMARK, + STATE(4071), 1, sym_comment, - STATE(4888), 1, + STATE(4867), 1, sym_type_annotation, - STATE(5311), 1, + STATE(6084), 1, sym__initializer, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7495), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149266] = 5, + [150294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7350), 1, - anon_sym_is, - STATE(4044), 1, + STATE(4072), 1, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5351), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -332678,144 +333428,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [149290] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150315] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7025), 1, - anon_sym_SLASH_GT, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_GT, - STATE(4045), 1, - sym_comment, - STATE(4299), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149326] = 13, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4073), 1, + sym_comment, + ACTIONS(5082), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [150342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4074), 1, + sym_comment, + ACTIONS(5359), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7469), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7501), 1, - sym_identifier, - STATE(3112), 1, - sym_class_body, - STATE(4046), 1, - sym_comment, - STATE(4570), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6641), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149366] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150363] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7445), 1, - sym_identifier, - ACTIONS(7447), 1, - anon_sym_type, - ACTIONS(7453), 1, - anon_sym_typeof, - ACTIONS(7503), 1, - anon_sym_RBRACE, - STATE(4047), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7555), 1, + anon_sym_EQ, + STATE(4075), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6472), 1, - sym_import_specifier, - STATE(6907), 1, - sym__import_identifier, - STATE(7043), 1, - sym__module_export_name, - [149406] = 10, + ACTIONS(4337), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [150386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7497), 1, - anon_sym_BANG, - STATE(4048), 1, + STATE(4076), 1, sym_comment, - STATE(4888), 1, - sym_type_annotation, - STATE(5942), 1, - sym__initializer, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7495), 3, + ACTIONS(4967), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149440] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7469), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7489), 1, - anon_sym_LBRACE, - ACTIONS(7505), 1, - sym_identifier, - STATE(2531), 1, - sym_class_body, - STATE(4049), 1, - sym_comment, - STATE(4348), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6416), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149480] = 4, + [150407] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4050), 1, + STATE(4077), 1, sym_comment, - ACTIONS(2030), 10, + ACTIONS(5236), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -332825,415 +333517,470 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [149502] = 6, + [150428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7509), 1, - anon_sym_COLON, - STATE(4051), 1, + STATE(4078), 1, sym_comment, - STATE(4704), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7507), 6, + ACTIONS(5288), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149528] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150449] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7511), 1, + ACTIONS(7557), 1, + anon_sym_GT, + ACTIONS(7559), 1, + anon_sym_SLASH_GT, + STATE(4079), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, sym_identifier, - STATE(3167), 1, - sym_class_body, - STATE(4052), 1, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150482] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7561), 1, + anon_sym_GT, + ACTIONS(7563), 1, + anon_sym_SLASH_GT, + STATE(4080), 1, sym_comment, - STATE(4506), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149568] = 5, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150515] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7567), 1, + anon_sym_SLASH_GT, + STATE(4081), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150548] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7569), 1, + anon_sym_GT, + ACTIONS(7571), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7350), 1, - anon_sym_is, - STATE(4053), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + STATE(4083), 1, sym_comment, - ACTIONS(4843), 9, + ACTIONS(5280), 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, anon_sym_extends, - [149592] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150604] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7513), 1, - sym_identifier, - STATE(3112), 1, + ACTIONS(7573), 1, + anon_sym_LBRACE, + STATE(1543), 1, sym_class_body, - STATE(4054), 1, + STATE(4084), 1, sym_comment, - STATE(4570), 1, + STATE(4549), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6641), 1, + STATE(6727), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [149632] = 6, + [150641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7509), 1, - anon_sym_COLON, - STATE(4055), 1, + STATE(4085), 1, sym_comment, - STATE(4751), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7515), 6, + ACTIONS(4337), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [149658] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150662] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4086), 1, + sym_comment, + ACTIONS(5363), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7469), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7517), 1, - sym_identifier, - STATE(3167), 1, - sym_class_body, - STATE(4056), 1, + [150683] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7575), 1, + anon_sym_BANG, + ACTIONS(7577), 1, + anon_sym_QMARK, + STATE(4087), 1, sym_comment, - STATE(4506), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149698] = 11, + STATE(4990), 1, + sym_type_annotation, + STATE(6142), 1, + sym__initializer, + ACTIONS(7215), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150716] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, + ACTIONS(7565), 1, anon_sym_GT, - ACTIONS(7344), 1, + ACTIONS(7579), 1, anon_sym_SLASH_GT, - STATE(4057), 1, + STATE(4088), 1, sym_comment, - STATE(4188), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [149734] = 12, + [150749] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7445), 1, - sym_identifier, - ACTIONS(7519), 1, - anon_sym_type, - ACTIONS(7521), 1, - anon_sym_as, - STATE(4058), 1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7583), 1, + anon_sym_SLASH_GT, + STATE(4089), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6778), 1, - sym__import_identifier, - STATE(7126), 1, - sym__module_export_name, - ACTIONS(7181), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [149772] = 13, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150782] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7523), 1, - sym_identifier, - STATE(3167), 1, - sym_class_body, - STATE(4059), 1, + ACTIONS(7585), 1, + anon_sym_GT, + ACTIONS(7587), 1, + anon_sym_SLASH_GT, + STATE(4090), 1, sym_comment, - STATE(4506), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149812] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4279), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150815] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7525), 1, - sym_identifier, - STATE(3167), 1, - sym_class_body, - STATE(4060), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7589), 1, + anon_sym_EQ, + STATE(4091), 1, sym_comment, - STATE(4506), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149852] = 13, + ACTIONS(4333), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [150838] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7489), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7527), 1, - sym_identifier, - STATE(2389), 1, - sym_class_body, - STATE(4061), 1, + ACTIONS(7557), 1, + anon_sym_GT, + ACTIONS(7591), 1, + anon_sym_SLASH_GT, + STATE(4092), 1, sym_comment, - STATE(4395), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6673), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149892] = 13, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150871] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7529), 1, - sym_identifier, - STATE(3167), 1, - sym_class_body, - STATE(4062), 1, + ACTIONS(7561), 1, + anon_sym_GT, + ACTIONS(7593), 1, + anon_sym_SLASH_GT, + STATE(4093), 1, sym_comment, - STATE(4506), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6831), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149932] = 13, + STATE(4277), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150904] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7467), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, - anon_sym_extends, - ACTIONS(7471), 1, - anon_sym_implements, - ACTIONS(7531), 1, - sym_identifier, - STATE(3112), 1, - sym_class_body, - STATE(4063), 1, + ACTIONS(7569), 1, + anon_sym_GT, + ACTIONS(7595), 1, + anon_sym_SLASH_GT, + STATE(4094), 1, sym_comment, - STATE(4570), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6641), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [149972] = 6, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150937] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, - anon_sym_EQ, - STATE(4064), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4095), 1, sym_comment, - ACTIONS(4787), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4518), 7, + ACTIONS(5347), 6, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [149998] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LBRACK, + [150964] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7533), 1, - sym_identifier, - STATE(3112), 1, + ACTIONS(7597), 1, + anon_sym_LBRACE, + STATE(966), 1, sym_class_body, - STATE(4065), 1, + STATE(4096), 1, sym_comment, - STATE(4570), 1, + STATE(4348), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6641), 1, + STATE(6582), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [150038] = 13, - ACTIONS(3), 1, + [151001] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7599), 1, + anon_sym_LBRACK, + STATE(4097), 1, + sym_comment, + ACTIONS(5061), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5343), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [151026] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7471), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7535), 1, - sym_identifier, - STATE(3112), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1403), 1, sym_class_body, - STATE(4066), 1, + STATE(4098), 1, sym_comment, - STATE(4570), 1, + STATE(4352), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6641), 1, + STATE(6782), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [150078] = 4, + [151063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4067), 1, + ACTIONS(7603), 1, + anon_sym_extends, + STATE(4099), 1, sym_comment, - ACTIONS(4847), 10, + ACTIONS(5337), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -333242,493 +333989,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [150100] = 9, + [151086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4068), 1, + ACTIONS(7599), 1, + anon_sym_LBRACK, + STATE(4100), 1, sym_comment, - STATE(5185), 1, - sym_type_annotation, - STATE(5951), 1, - sym__initializer, - ACTIONS(7213), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7211), 3, + ACTIONS(5333), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150131] = 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151109] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(7541), 1, anon_sym_extends, - STATE(4069), 1, - sym_comment, - ACTIONS(5080), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7605), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [150158] = 4, + STATE(1188), 1, + sym_class_body, + STATE(4101), 1, + sym_comment, + STATE(4457), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6421), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [151146] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4070), 1, - sym_comment, - ACTIONS(4330), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4817), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [150179] = 9, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(2407), 1, + sym_template_string, + STATE(3279), 1, + sym_arguments, + STATE(3798), 1, + sym_type_arguments, + STATE(4102), 1, + sym_comment, + STATE(6453), 1, + sym_optional_chain, + [151183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7493), 1, - anon_sym_EQ, - STATE(4071), 1, + STATE(4103), 1, sym_comment, - STATE(4888), 1, - sym_type_annotation, - STATE(5239), 1, - sym__initializer, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7495), 3, + ACTIONS(4937), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150210] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151204] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4072), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(6984), 1, + anon_sym_LT, + ACTIONS(7607), 1, + anon_sym_DOT, + STATE(3006), 1, + sym_arguments, + STATE(3098), 1, + sym_template_string, + STATE(4104), 1, sym_comment, - STATE(4888), 1, - sym_type_annotation, - STATE(5944), 1, - sym__initializer, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150241] = 12, + STATE(5561), 1, + sym_type_arguments, + STATE(6656), 1, + sym_optional_chain, + [151241] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, anon_sym_LT, - ACTIONS(7543), 1, - anon_sym_LBRACE, - ACTIONS(7545), 1, + ACTIONS(7609), 1, + anon_sym_DOT, + STATE(2407), 1, + sym_template_string, + STATE(2947), 1, + sym_arguments, + STATE(4105), 1, + sym_comment, + STATE(5506), 1, + sym_type_arguments, + STATE(6453), 1, + sym_optional_chain, + [151278] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - STATE(1173), 1, + ACTIONS(7611), 1, + anon_sym_LBRACE, + STATE(367), 1, sym_class_body, - STATE(4073), 1, + STATE(4106), 1, sym_comment, - STATE(4481), 1, + STATE(4353), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6521), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [150278] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - ACTIONS(7551), 1, - anon_sym_RBRACE, - STATE(4074), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [150309] = 12, + [151315] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(7597), 1, anon_sym_LBRACE, - STATE(3282), 1, + STATE(1021), 1, sym_class_body, - STATE(4075), 1, + STATE(4107), 1, sym_comment, - STATE(4468), 1, + STATE(4354), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6399), 1, + STATE(6856), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [150346] = 9, + [151352] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4076), 1, + ACTIONS(7613), 1, + anon_sym_BANG, + ACTIONS(7615), 1, + anon_sym_QMARK, + STATE(4108), 1, sym_comment, - STATE(5321), 1, + STATE(5092), 1, sym_type_annotation, - STATE(6325), 1, + STATE(5832), 1, sym__initializer, - ACTIONS(7247), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7245), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150377] = 10, + [151385] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7617), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7555), 1, - anon_sym_BANG, - ACTIONS(7557), 1, - anon_sym_QMARK, - STATE(4077), 1, + ACTIONS(7619), 1, + anon_sym_DOT, + STATE(4109), 1, sym_comment, - STATE(5193), 1, - sym_type_annotation, - STATE(5809), 1, - sym__initializer, - ACTIONS(7273), 3, - sym__automatic_semicolon, + STATE(4327), 1, + sym_arguments, + ACTIONS(7481), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [150410] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [151414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4078), 1, - sym_comment, - ACTIONS(5068), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7081), 1, anon_sym_AMP, + ACTIONS(7109), 1, anon_sym_PIPE, + ACTIONS(7111), 1, anon_sym_extends, - [150431] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4079), 1, - sym_comment, - ACTIONS(7559), 9, + ACTIONS(7621), 1, anon_sym_EQ, + STATE(4110), 1, + sym_comment, + ACTIONS(7479), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK, - [150452] = 9, + anon_sym_EQ_GT, + [151443] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7561), 1, - anon_sym_LBRACE, - ACTIONS(7563), 1, - anon_sym_DQUOTE, - ACTIONS(7565), 1, - anon_sym_SQUOTE, - ACTIONS(7567), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(3835), 1, - sym_jsx_opening_element, - STATE(4080), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7623), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_class_body, + STATE(4111), 1, sym_comment, - STATE(5405), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [150483] = 9, + STATE(4449), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6460), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [151480] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7561), 1, - anon_sym_LBRACE, - ACTIONS(7563), 1, - anon_sym_DQUOTE, - ACTIONS(7565), 1, - anon_sym_SQUOTE, - ACTIONS(7567), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(3835), 1, - sym_jsx_opening_element, - STATE(4081), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(457), 1, + sym_class_body, + STATE(4112), 1, sym_comment, - STATE(5403), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [150514] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4531), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6692), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [151517] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7572), 1, - anon_sym_LBRACE, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7569), 2, - sym_jsx_identifier, - sym_identifier, - ACTIONS(7575), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4082), 2, - sym_comment, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150543] = 10, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4113), 1, + sym_comment, + ACTIONS(4951), 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, + [151538] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_GT, - ACTIONS(7579), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4083), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4114), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150576] = 10, + ACTIONS(4951), 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, + [151559] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7581), 1, + ACTIONS(7627), 1, anon_sym_GT, - ACTIONS(7583), 1, + ACTIONS(7629), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4084), 1, + STATE(4115), 1, sym_comment, - STATE(4832), 1, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [150609] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7585), 1, - anon_sym_BANG, - ACTIONS(7587), 1, - anon_sym_QMARK, - STATE(4085), 1, - sym_comment, - STATE(5341), 1, - sym_type_annotation, - STATE(5754), 1, - sym__initializer, - ACTIONS(7273), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150642] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3111), 1, - sym_class_body, - STATE(4086), 1, - sym_comment, - STATE(4341), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6423), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [150679] = 10, + [151592] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7631), 1, anon_sym_GT, - ACTIONS(7591), 1, + ACTIONS(7633), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4087), 1, + STATE(4116), 1, sym_comment, - STATE(4832), 1, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [150712] = 12, + [151625] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5400), 1, + ACTIONS(4817), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6978), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, anon_sym_LT, - STATE(2808), 1, - sym_arguments, - STATE(3075), 1, + STATE(2407), 1, sym_template_string, - STATE(4031), 1, + STATE(2654), 1, + sym_arguments, + STATE(3798), 1, sym_type_arguments, - STATE(4088), 1, + STATE(4117), 1, sym_comment, - STATE(6667), 1, + STATE(6453), 1, sym_optional_chain, - [150749] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_GT, - ACTIONS(7593), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4089), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150782] = 11, + [151662] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333737,194 +334403,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(7457), 1, + ACTIONS(7529), 1, sym_identifier, - ACTIONS(7595), 1, + ACTIONS(7635), 1, anon_sym_RBRACE, - STATE(4090), 1, + STATE(4118), 1, sym_comment, - STATE(5551), 1, + STATE(5427), 1, sym_string, - STATE(5832), 1, + STATE(5715), 1, sym__module_export_name, - STATE(6537), 1, + STATE(6683), 1, sym_export_specifier, - ACTIONS(7459), 2, + ACTIONS(7531), 2, anon_sym_type, anon_sym_typeof, - [150817] = 4, + [151697] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4091), 1, - sym_comment, - ACTIONS(2185), 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, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, anon_sym_extends, - [150838] = 10, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1226), 1, + sym_class_body, + STATE(4119), 1, + sym_comment, + STATE(4360), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6944), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [151734] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7597), 1, + ACTIONS(7637), 1, anon_sym_BANG, - ACTIONS(7599), 1, + ACTIONS(7639), 1, anon_sym_QMARK, - STATE(4092), 1, + STATE(4120), 1, sym_comment, - STATE(5399), 1, + STATE(5243), 1, sym_type_annotation, - STATE(5733), 1, + STATE(6205), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150871] = 4, + [151767] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4093), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7641), 1, + anon_sym_BANG, + ACTIONS(7643), 1, + anon_sym_QMARK, + STATE(4121), 1, sym_comment, - ACTIONS(5152), 9, + STATE(5247), 1, + sym_type_annotation, + STATE(6259), 1, + sym__initializer, + ACTIONS(7179), 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, - [150892] = 10, + [151800] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7330), 1, + anon_sym_GT, + ACTIONS(7332), 1, + anon_sym_SLASH_GT, + STATE(4081), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4122), 1, + sym_comment, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [151833] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7601), 1, + ACTIONS(7645), 1, anon_sym_BANG, - ACTIONS(7603), 1, + ACTIONS(7647), 1, anon_sym_QMARK, - STATE(4094), 1, + STATE(4123), 1, sym_comment, - STATE(5384), 1, + STATE(5263), 1, sym_type_annotation, - STATE(5719), 1, + STATE(6234), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150925] = 4, + [151866] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4095), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7649), 1, + anon_sym_BANG, + ACTIONS(7651), 1, + anon_sym_QMARK, + STATE(4124), 1, sym_comment, - ACTIONS(5306), 9, + STATE(5280), 1, + sym_type_annotation, + STATE(6206), 1, + sym__initializer, + ACTIONS(7179), 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, - [150946] = 12, + anon_sym_SEMI, + [151899] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7653), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(1175), 1, sym_class_body, - STATE(4096), 1, + STATE(4125), 1, sym_comment, - STATE(4422), 1, + STATE(4527), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6878), 1, + STATE(6673), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [150983] = 5, + [151936] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - STATE(4097), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7655), 1, + anon_sym_BANG, + ACTIONS(7657), 1, + anon_sym_QMARK, + STATE(4126), 1, sym_comment, - ACTIONS(5296), 8, + STATE(5304), 1, + sym_type_annotation, + STATE(6323), 1, + sym__initializer, + ACTIONS(7179), 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, - [151006] = 12, + [151969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7607), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_class_body, - STATE(4098), 1, + STATE(4127), 1, sym_comment, - STATE(4475), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6461), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151043] = 4, + ACTIONS(7659), 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, + [151990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4099), 1, + STATE(4128), 1, sym_comment, - ACTIONS(5288), 9, + ACTIONS(4845), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -333934,14 +334640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151064] = 4, + [152011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4100), 1, + STATE(4129), 1, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5300), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -333951,109 +334657,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151085] = 12, + [152032] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - STATE(3025), 1, - sym_class_body, - STATE(4101), 1, + ACTIONS(7585), 1, + anon_sym_GT, + ACTIONS(7661), 1, + anon_sym_SLASH_GT, + STATE(4116), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4130), 1, sym_comment, - STATE(4503), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6798), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151122] = 12, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [152065] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(7055), 1, - anon_sym_LT, - STATE(2508), 1, - sym_template_string, - STATE(2884), 1, - sym_arguments, - STATE(3893), 1, - sym_type_arguments, - STATE(4102), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7663), 1, + anon_sym_BANG, + ACTIONS(7665), 1, + anon_sym_QMARK, + STATE(4131), 1, sym_comment, - STATE(6617), 1, - sym_optional_chain, - [151159] = 7, + STATE(5330), 1, + sym_type_annotation, + STATE(6149), 1, + sym__initializer, + ACTIONS(7179), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, - STATE(4103), 1, + STATE(4132), 1, sym_comment, - ACTIONS(5268), 6, + ACTIONS(4971), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [151186] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7609), 1, - anon_sym_LBRACE, - STATE(960), 1, - sym_class_body, - STATE(4104), 1, - sym_comment, - STATE(4472), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6445), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151223] = 4, + [152119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4105), 1, + STATE(4133), 1, sym_comment, - ACTIONS(5268), 9, + ACTIONS(4971), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334063,213 +334737,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151244] = 12, + [152140] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(327), 1, - sym_class_body, - STATE(4106), 1, - sym_comment, - STATE(4471), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6439), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151281] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(2310), 1, - sym_arguments, - STATE(2508), 1, - sym_template_string, - STATE(3820), 1, - sym_type_arguments, - STATE(4107), 1, + anon_sym_COLON, + STATE(4134), 1, sym_comment, - STATE(6617), 1, - sym_optional_chain, - [151318] = 12, + STATE(5125), 1, + sym_type_annotation, + STATE(6333), 1, + sym__initializer, + ACTIONS(7669), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7667), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7607), 1, - anon_sym_LBRACE, - STATE(996), 1, - sym_class_body, - STATE(4108), 1, + STATE(4135), 1, sym_comment, - STATE(4470), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6425), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151355] = 10, + ACTIONS(7671), 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, + [152192] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7613), 1, + ACTIONS(7673), 1, anon_sym_BANG, - ACTIONS(7615), 1, + ACTIONS(7675), 1, anon_sym_QMARK, - STATE(4109), 1, + STATE(4136), 1, sym_comment, - STATE(5222), 1, + STATE(5122), 1, sym_type_annotation, - STATE(5701), 1, + STATE(5863), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151388] = 4, + [152225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4110), 1, + ACTIONS(7677), 1, + anon_sym_EQ, + STATE(4137), 1, sym_comment, - ACTIONS(2253), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7679), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [151409] = 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [152248] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7609), 1, + ACTIONS(7623), 1, anon_sym_LBRACE, - STATE(953), 1, + STATE(1103), 1, sym_class_body, - STATE(4111), 1, + STATE(4138), 1, sym_comment, - STATE(4469), 1, + STATE(4441), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6412), 1, + STATE(6512), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [151446] = 4, + [152285] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4112), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7681), 1, + anon_sym_BANG, + ACTIONS(7683), 1, + anon_sym_QMARK, + STATE(4139), 1, sym_comment, - ACTIONS(5312), 9, + STATE(5303), 1, + sym_type_annotation, + STATE(5914), 1, + sym__initializer, + ACTIONS(7179), 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, - [151467] = 4, + [152318] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4113), 1, + STATE(4140), 1, sym_comment, - ACTIONS(5242), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7685), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [151488] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_class_body, - STATE(4114), 1, - sym_comment, - STATE(4467), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6392), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151525] = 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [152339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4115), 1, + STATE(4141), 1, sym_comment, - ACTIONS(5280), 9, + ACTIONS(5164), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334279,62 +334899,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151546] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4116), 1, - sym_comment, - STATE(4351), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6219), 1, - sym_class_body, - STATE(6448), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151583] = 10, + [152360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7619), 1, - anon_sym_BANG, - ACTIONS(7621), 1, - anon_sym_QMARK, - STATE(4117), 1, + STATE(4142), 1, sym_comment, - STATE(4879), 1, - sym_type_annotation, - STATE(5928), 1, - sym__initializer, - ACTIONS(7225), 3, + ACTIONS(5168), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [151616] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152381] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4118), 1, + STATE(4143), 1, sym_comment, - ACTIONS(5238), 9, + ACTIONS(5172), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334344,120 +334933,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151637] = 4, + [152402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4119), 1, - sym_comment, - ACTIONS(7623), 9, - sym__automatic_semicolon, + ACTIONS(7687), 1, anon_sym_EQ, + STATE(4144), 1, + sym_comment, + ACTIONS(7689), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [151658] = 12, + anon_sym_EQ_GT, + [152425] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(4120), 1, - sym_comment, - STATE(4363), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6595), 1, - sym_class_heritage, - STATE(6880), 1, - sym_class_body, - STATE(7265), 1, - sym_implements_clause, - [151695] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4121), 1, + anon_sym_COLON, + ACTIONS(7691), 1, + anon_sym_BANG, + ACTIONS(7693), 1, + anon_sym_QMARK, + STATE(4145), 1, sym_comment, - ACTIONS(7627), 9, + STATE(5294), 1, + sym_type_annotation, + STATE(5912), 1, + sym__initializer, + ACTIONS(7179), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [151716] = 9, + [152458] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4122), 1, + ACTIONS(7695), 1, + anon_sym_BANG, + ACTIONS(7697), 1, + anon_sym_QMARK, + STATE(4146), 1, sym_comment, - STATE(5112), 1, + STATE(5232), 1, sym_type_annotation, - STATE(5849), 1, + STATE(5898), 1, sym__initializer, - ACTIONS(7185), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7183), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151747] = 12, + [152491] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3045), 1, - sym_class_body, - STATE(4123), 1, + anon_sym_COLON, + ACTIONS(7699), 1, + anon_sym_BANG, + ACTIONS(7701), 1, + anon_sym_QMARK, + STATE(4147), 1, sym_comment, - STATE(4477), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6488), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [151784] = 4, + STATE(5215), 1, + sym_type_annotation, + STATE(5894), 1, + sym__initializer, + ACTIONS(7179), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152524] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4124), 1, + STATE(4148), 1, sym_comment, - ACTIONS(5222), 9, + ACTIONS(5325), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334467,102 +335037,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151805] = 10, + [152545] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7629), 1, + ACTIONS(7703), 1, anon_sym_BANG, - ACTIONS(7631), 1, + ACTIONS(7705), 1, anon_sym_QMARK, - STATE(4125), 1, + STATE(4149), 1, sym_comment, - STATE(5008), 1, + STATE(5205), 1, sym_type_annotation, - STATE(5813), 1, + STATE(5893), 1, sym__initializer, - ACTIONS(7201), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151838] = 10, + [152578] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7633), 1, + ACTIONS(7707), 1, anon_sym_BANG, - ACTIONS(7635), 1, + ACTIONS(7709), 1, anon_sym_QMARK, - STATE(4126), 1, + STATE(4150), 1, sym_comment, - STATE(5056), 1, + STATE(5193), 1, sym_type_annotation, - STATE(5780), 1, + STATE(5877), 1, sym__initializer, - ACTIONS(7201), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [151871] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, - anon_sym_LT, - ACTIONS(7637), 1, - anon_sym_DOT, - STATE(2508), 1, - sym_template_string, - STATE(2640), 1, - sym_arguments, - STATE(4127), 1, - sym_comment, - STATE(5544), 1, - sym_type_arguments, - STATE(6617), 1, - sym_optional_chain, - [151908] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4128), 1, - sym_comment, - ACTIONS(3506), 9, + ACTIONS(7179), 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, - [151929] = 4, + [152611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4129), 1, + STATE(4151), 1, sym_comment, - ACTIONS(5208), 9, + ACTIONS(5088), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334572,81 +335100,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151950] = 12, + [152632] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7639), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(1265), 1, + STATE(2978), 1, sym_class_body, - STATE(4130), 1, + STATE(4152), 1, sym_comment, - STATE(4461), 1, + STATE(4519), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6378), 1, + STATE(6647), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [151987] = 4, + [152669] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4131), 1, - sym_comment, - ACTIONS(7641), 9, + ACTIONS(7165), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(7173), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7713), 1, + anon_sym_BANG, + ACTIONS(7715), 1, anon_sym_QMARK, - [152008] = 12, + STATE(4153), 1, + sym_comment, + STATE(5165), 1, + sym_type_annotation, + STATE(5870), 1, + sym__initializer, + ACTIONS(7179), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(7717), 1, + anon_sym_EQ, + STATE(4154), 1, + sym_comment, + ACTIONS(7719), 8, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4803), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(2508), 1, - sym_template_string, - STATE(3301), 1, - sym_arguments, - STATE(3820), 1, - sym_type_arguments, - STATE(4132), 1, - sym_comment, - STATE(6617), 1, - sym_optional_chain, - [152045] = 4, + anon_sym_EQ_GT, + [152725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4133), 1, + STATE(4155), 1, sym_comment, - ACTIONS(5200), 9, + ACTIONS(4987), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334656,233 +335183,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152066] = 4, + [152746] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4134), 1, - sym_comment, - ACTIONS(7643), 9, + ACTIONS(7223), 1, anon_sym_EQ, + ACTIONS(7721), 1, anon_sym_COMMA, + ACTIONS(7723), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(4156), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [152087] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4135), 1, - sym_comment, - ACTIONS(3508), 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, - [152108] = 12, + [152777] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7645), 1, + ACTIONS(7725), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(348), 1, sym_class_body, - STATE(4136), 1, + STATE(4157), 1, sym_comment, - STATE(4459), 1, + STATE(4401), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6432), 1, + STATE(6890), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [152145] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7457), 1, - sym_identifier, - ACTIONS(7647), 1, - anon_sym_RBRACE, - STATE(4137), 1, - sym_comment, - STATE(5551), 1, - sym_string, - STATE(5832), 1, - sym__module_export_name, - STATE(6537), 1, - sym_export_specifier, - ACTIONS(7459), 2, - anon_sym_type, - anon_sym_typeof, - [152180] = 4, + [152814] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4138), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7467), 1, + anon_sym_EQ, + STATE(4158), 1, sym_comment, - ACTIONS(3518), 9, + STATE(4976), 1, + sym__initializer, + STATE(5361), 1, + sym_type_annotation, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7469), 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, - [152201] = 12, + [152845] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_class_body, - STATE(4139), 1, + anon_sym_COLON, + STATE(4159), 1, sym_comment, - STATE(4482), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6550), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [152238] = 8, + STATE(5361), 1, + sym_type_annotation, + STATE(5762), 1, + sym__initializer, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7469), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(7651), 1, - anon_sym_EQ, - STATE(4140), 1, + STATE(4160), 1, sym_comment, - ACTIONS(7477), 5, + ACTIONS(5276), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [152267] = 12, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152897] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(2922), 1, + STATE(3268), 1, sym_class_body, - STATE(4141), 1, + STATE(4161), 1, sym_comment, - STATE(4458), 1, + STATE(4508), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6447), 1, + STATE(6621), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [152304] = 12, + [152934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + STATE(4162), 1, + sym_comment, + ACTIONS(4333), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_LT, - ACTIONS(7653), 1, + anon_sym_SEMI, anon_sym_DOT, - STATE(2508), 1, - sym_template_string, - STATE(2924), 1, - sym_arguments, - STATE(4142), 1, - sym_comment, - STATE(5544), 1, - sym_type_arguments, - STATE(6617), 1, - sym_optional_chain, - [152341] = 10, + anon_sym_PIPE_RBRACE, + [152955] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7655), 1, + ACTIONS(7729), 1, anon_sym_BANG, - ACTIONS(7657), 1, + ACTIONS(7731), 1, anon_sym_QMARK, - STATE(4143), 1, + STATE(4163), 1, sym_comment, - STATE(4867), 1, + STATE(5174), 1, sym_type_annotation, - STATE(5916), 1, + STATE(5823), 1, sym__initializer, - ACTIONS(7225), 3, + ACTIONS(7179), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152374] = 4, + [152988] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4144), 1, + STATE(4164), 1, sym_comment, - ACTIONS(7659), 9, + ACTIONS(7689), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -334892,39 +335373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [152395] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1236), 1, - sym_class_body, - STATE(4145), 1, - sym_comment, - STATE(4456), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6468), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [152432] = 4, + [153009] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4146), 1, + STATE(4165), 1, sym_comment, - ACTIONS(7661), 9, + ACTIONS(7719), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -334934,1023 +335390,830 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [152453] = 10, + [153030] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7721), 1, + anon_sym_COMMA, + STATE(4166), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7663), 1, - anon_sym_BANG, - ACTIONS(7665), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4147), 1, + [153061] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4167), 1, sym_comment, - STATE(5133), 1, - sym_type_annotation, - STATE(5683), 1, - sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7733), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [152486] = 12, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [153082] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7645), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(3178), 1, sym_class_body, - STATE(4148), 1, + STATE(4168), 1, sym_comment, - STATE(4452), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6512), 1, + STATE(6869), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [152523] = 10, + [153119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + STATE(4169), 1, + sym_comment, + ACTIONS(7735), 9, anon_sym_EQ, - ACTIONS(7171), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [153140] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7667), 1, + ACTIONS(7737), 1, anon_sym_BANG, - ACTIONS(7669), 1, + ACTIONS(7739), 1, anon_sym_QMARK, - STATE(4149), 1, + STATE(4170), 1, sym_comment, - STATE(5163), 1, + STATE(5068), 1, sym_type_annotation, - STATE(5691), 1, + STATE(6212), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152556] = 8, + [153173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7671), 1, + ACTIONS(7741), 1, anon_sym_EQ, - ACTIONS(7673), 1, - anon_sym_DOT, - STATE(4150), 1, + STATE(4171), 1, sym_comment, - STATE(4337), 1, - sym_arguments, - ACTIONS(7483), 5, + ACTIONS(7733), 8, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, - [152585] = 12, + [153196] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, + anon_sym_COLON, + STATE(4172), 1, + sym_comment, + STATE(5372), 1, + sym_type_annotation, + STATE(5827), 1, + sym__initializer, + ACTIONS(7300), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7298), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153227] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3139), 1, - sym_class_body, - STATE(4151), 1, + STATE(4173), 1, sym_comment, - STATE(4448), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6579), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [152622] = 5, + ACTIONS(5180), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [153254] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7675), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4152), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7743), 1, + anon_sym_BANG, + ACTIONS(7745), 1, + anon_sym_QMARK, + STATE(4174), 1, sym_comment, - ACTIONS(4330), 8, - anon_sym_LBRACE, + STATE(5112), 1, + sym_type_annotation, + STATE(5859), 1, + sym__initializer, + ACTIONS(7167), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [152645] = 5, + anon_sym_SEMI, + [153287] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7677), 1, - anon_sym_EQ, - STATE(4153), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4175), 1, sym_comment, - ACTIONS(4328), 8, + ACTIONS(5184), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [152668] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + [153314] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7679), 1, + ACTIONS(2712), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, anon_sym_EQ, - STATE(4154), 1, - sym_comment, - ACTIONS(7623), 8, - anon_sym_LBRACE, + ACTIONS(7721), 1, anon_sym_COMMA, + STATE(4176), 1, + sym_comment, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4520), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [153345] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7330), 1, anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [152691] = 5, + ACTIONS(7364), 1, + anon_sym_SLASH_GT, + STATE(4177), 1, + sym_comment, + STATE(4213), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153378] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7681), 1, - anon_sym_EQ, - STATE(4155), 1, + STATE(4178), 1, sym_comment, - ACTIONS(7627), 8, + ACTIONS(4933), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [152714] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153399] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7683), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4156), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4179), 1, sym_comment, - ACTIONS(7659), 8, - anon_sym_LBRACE, + STATE(5009), 1, + sym_type_annotation, + STATE(6161), 1, + sym__initializer, + ACTIONS(7203), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7201), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [152737] = 7, + anon_sym_SEMI, + [153430] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(7539), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(7541), 1, anon_sym_extends, - STATE(4157), 1, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4180), 1, sym_comment, - ACTIONS(5047), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [152764] = 10, + STATE(4405), 1, + sym_type_parameters, + STATE(5302), 1, + sym_class_body, + STATE(5699), 1, + sym_extends_clause, + STATE(6834), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [153467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + STATE(4181), 1, + sym_comment, + ACTIONS(7747), 9, anon_sym_EQ, - ACTIONS(7171), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(7685), 1, - anon_sym_BANG, - ACTIONS(7687), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(4158), 1, + [153488] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4182), 1, sym_comment, - STATE(5218), 1, + STATE(5032), 1, sym_type_annotation, - STATE(5711), 1, + STATE(5770), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7231), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7229), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152797] = 10, + [153519] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7689), 1, + ACTIONS(7749), 1, anon_sym_BANG, - ACTIONS(7691), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(4159), 1, + STATE(4183), 1, sym_comment, - STATE(5236), 1, + STATE(5035), 1, sym_type_annotation, - STATE(5717), 1, + STATE(6185), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152830] = 10, + [153552] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7693), 1, + ACTIONS(7753), 1, anon_sym_BANG, - ACTIONS(7695), 1, + ACTIONS(7755), 1, anon_sym_QMARK, - STATE(4160), 1, + STATE(4184), 1, sym_comment, - STATE(5376), 1, + STATE(5021), 1, sym_type_annotation, - STATE(5731), 1, + STATE(6170), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152863] = 10, + [153585] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7697), 1, + ACTIONS(7757), 1, anon_sym_BANG, - ACTIONS(7699), 1, + ACTIONS(7759), 1, anon_sym_QMARK, - STATE(4161), 1, + STATE(4185), 1, sym_comment, - STATE(5342), 1, + STATE(5010), 1, sym_type_annotation, - STATE(5765), 1, + STATE(6159), 1, sym__initializer, - ACTIONS(7273), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152896] = 7, + [153618] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, - STATE(4162), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7761), 1, + anon_sym_BANG, + ACTIONS(7763), 1, + anon_sym_QMARK, + STATE(4186), 1, sym_comment, - ACTIONS(5051), 6, + STATE(5001), 1, + sym_type_annotation, + STATE(6150), 1, + sym__initializer, + ACTIONS(7215), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [152923] = 12, + [153651] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5434), 1, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6978), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, anon_sym_LT, - ACTIONS(7701), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(3012), 1, - sym_arguments, - STATE(3075), 1, + STATE(2407), 1, sym_template_string, - STATE(4163), 1, + STATE(2670), 1, + sym_arguments, + STATE(4187), 1, sym_comment, - STATE(5479), 1, + STATE(5506), 1, sym_type_arguments, - STATE(6667), 1, + STATE(6453), 1, sym_optional_chain, - [152960] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7703), 1, - anon_sym_BANG, - ACTIONS(7705), 1, - anon_sym_QMARK, - STATE(4164), 1, - sym_comment, - STATE(4860), 1, - sym_type_annotation, - STATE(5914), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152993] = 12, + [153688] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(1456), 1, + STATE(388), 1, sym_class_body, - STATE(4165), 1, + STATE(4188), 1, sym_comment, - STATE(4476), 1, + STATE(4347), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6610), 1, + STATE(6340), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [153030] = 10, + [153725] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7707), 1, + ACTIONS(7569), 1, anon_sym_GT, - ACTIONS(7709), 1, + ACTIONS(7767), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4166), 1, + STATE(4189), 1, sym_comment, - STATE(4832), 1, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153063] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4167), 1, - sym_comment, - STATE(4434), 1, - sym_type_parameters, - STATE(5324), 1, - sym_class_body, - STATE(5785), 1, - sym_extends_clause, - STATE(6867), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [153100] = 10, + [153758] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7711), 1, + ACTIONS(7561), 1, anon_sym_GT, - ACTIONS(7713), 1, + ACTIONS(7769), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4168), 1, + STATE(4190), 1, sym_comment, - STATE(4832), 1, + STATE(4271), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153133] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(3075), 1, - sym_template_string, - STATE(3261), 1, - sym_arguments, - STATE(4031), 1, - sym_type_arguments, - STATE(4169), 1, - sym_comment, - STATE(6667), 1, - sym_optional_chain, - [153170] = 10, + [153791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7715), 1, - anon_sym_BANG, - ACTIONS(7717), 1, - anon_sym_QMARK, - STATE(4170), 1, + STATE(4191), 1, sym_comment, - STATE(4912), 1, - sym_type_annotation, - STATE(5984), 1, - sym__initializer, - ACTIONS(7225), 3, + ACTIONS(5244), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [153203] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153812] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7719), 1, + ACTIONS(7557), 1, anon_sym_GT, - ACTIONS(7721), 1, + ACTIONS(7771), 1, anon_sym_SLASH_GT, - STATE(4084), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4171), 1, + STATE(4192), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153236] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7723), 1, - anon_sym_GT, - ACTIONS(7725), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4172), 1, - sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153269] = 10, + [153845] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7581), 1, + ACTIONS(7585), 1, anon_sym_GT, - ACTIONS(7727), 1, + ACTIONS(7773), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4173), 1, + STATE(4193), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153302] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_GT, - ACTIONS(7729), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4261), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4174), 1, - sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153335] = 12, + [153878] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4175), 1, + STATE(4194), 1, sym_comment, - STATE(4421), 1, - sym_type_parameters, - STATE(5098), 1, - sym_class_body, - STATE(5785), 1, - sym_extends_clause, - STATE(6888), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [153372] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(5314), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_GT, - ACTIONS(7733), 1, - anon_sym_SLASH_GT, - STATE(4083), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4176), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153405] = 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [153905] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7735), 1, + ACTIONS(7775), 1, anon_sym_LBRACE, - STATE(391), 1, - sym_class_body, - STATE(4177), 1, + STATE(4195), 1, sym_comment, - STATE(4420), 1, + STATE(4408), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6900), 1, + STATE(6533), 1, + sym_class_body, + STATE(6718), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [153442] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7737), 1, - anon_sym_GT, - ACTIONS(7739), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4178), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153475] = 12, + [153942] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(5434), 1, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_BQUOTE, - ACTIONS(6978), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, anon_sym_LT, - ACTIONS(7741), 1, - anon_sym_DOT, - STATE(3075), 1, - sym_template_string, - STATE(3286), 1, + STATE(2375), 1, sym_arguments, - STATE(4179), 1, - sym_comment, - STATE(5479), 1, + STATE(2407), 1, + sym_template_string, + STATE(3798), 1, sym_type_arguments, - STATE(6667), 1, - sym_optional_chain, - [153512] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4180), 1, - sym_comment, - ACTIONS(5284), 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, - [153533] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4181), 1, - sym_comment, - STATE(4418), 1, - sym_type_parameters, - STATE(4983), 1, - sym_class_body, - STATE(5785), 1, - sym_extends_clause, - STATE(6917), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [153570] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7707), 1, - anon_sym_GT, - ACTIONS(7743), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4182), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153603] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7711), 1, - anon_sym_GT, - ACTIONS(7745), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4183), 1, + STATE(4196), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153636] = 10, + STATE(6453), 1, + sym_optional_chain, + [153979] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7719), 1, + ACTIONS(7631), 1, anon_sym_GT, - ACTIONS(7747), 1, + ACTIONS(7777), 1, anon_sym_SLASH_GT, - STATE(4173), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4184), 1, + STATE(4197), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153669] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7723), 1, - anon_sym_GT, - ACTIONS(7749), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4185), 1, - sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153702] = 10, + [154012] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7731), 1, + ACTIONS(7627), 1, anon_sym_GT, - ACTIONS(7751), 1, + ACTIONS(7779), 1, anon_sym_SLASH_GT, - STATE(4174), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4186), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153735] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4187), 1, + STATE(4198), 1, sym_comment, - ACTIONS(3540), 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, - [153756] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7737), 1, - anon_sym_GT, - ACTIONS(7753), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4188), 1, - sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [153789] = 10, + [154045] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7755), 1, + ACTIONS(7781), 1, anon_sym_BANG, - ACTIONS(7757), 1, + ACTIONS(7783), 1, anon_sym_QMARK, - STATE(4189), 1, + STATE(4199), 1, sym_comment, - STATE(4917), 1, + STATE(4944), 1, sym_type_annotation, - STATE(5991), 1, + STATE(6102), 1, sym__initializer, - ACTIONS(7225), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153822] = 9, + [154078] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4190), 1, + ACTIONS(7785), 1, + anon_sym_BANG, + ACTIONS(7787), 1, + anon_sym_QMARK, + STATE(4200), 1, sym_comment, - STATE(5234), 1, + STATE(4935), 1, sym_type_annotation, - STATE(5800), 1, + STATE(6096), 1, sym__initializer, - ACTIONS(7761), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7759), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153853] = 10, + [154111] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7763), 1, + ACTIONS(7789), 1, anon_sym_BANG, - ACTIONS(7765), 1, + ACTIONS(7791), 1, anon_sym_QMARK, - STATE(4191), 1, + STATE(4201), 1, sym_comment, - STATE(4855), 1, + STATE(4931), 1, sym_type_annotation, - STATE(5912), 1, + STATE(6095), 1, sym__initializer, - ACTIONS(7225), 3, + ACTIONS(7215), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153886] = 4, + [154144] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4192), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2400), 1, + sym_class_body, + STATE(4202), 1, + sym_comment, + STATE(4413), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6641), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [154181] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4203), 1, sym_comment, - ACTIONS(3570), 9, + ACTIONS(5314), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335960,162 +336223,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153907] = 5, + [154202] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7767), 1, - anon_sym_EQ, - STATE(4193), 1, + STATE(4204), 1, sym_comment, - ACTIONS(7661), 8, + ACTIONS(5272), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [153930] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154223] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7769), 1, - anon_sym_BANG, - ACTIONS(7771), 1, - anon_sym_QMARK, - STATE(4194), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4205), 1, sym_comment, - STATE(4846), 1, - sym_type_annotation, - STATE(5903), 1, - sym__initializer, - ACTIONS(7225), 3, + ACTIONS(5250), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [153963] = 12, + anon_sym_LBRACK, + [154250] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, + ACTIONS(7653), 1, anon_sym_LBRACE, - STATE(4195), 1, + STATE(1254), 1, + sym_class_body, + STATE(4206), 1, sym_comment, - STATE(4415), 1, + STATE(4573), 1, sym_type_parameters, - STATE(4935), 1, - sym_class_body, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6960), 1, + STATE(6886), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [154000] = 12, + [154287] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7445), 1, - sym_identifier, - ACTIONS(7447), 1, - anon_sym_type, - ACTIONS(7453), 1, - anon_sym_typeof, - STATE(4196), 1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7793), 1, + anon_sym_SLASH_GT, + STATE(4207), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6472), 1, - sym_import_specifier, - STATE(6907), 1, - sym__import_identifier, - STATE(7043), 1, - sym__module_export_name, - [154037] = 4, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154320] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4197), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4208), 1, sym_comment, - ACTIONS(7773), 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, - [154058] = 10, + STATE(4415), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(5705), 1, + sym_class_body, + STATE(6616), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [154357] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7775), 1, - anon_sym_BANG, - ACTIONS(7777), 1, - anon_sym_QMARK, - STATE(4198), 1, + STATE(4209), 1, sym_comment, - STATE(4897), 1, + STATE(5221), 1, sym_type_annotation, - STATE(5900), 1, + STATE(6290), 1, sym__initializer, - ACTIONS(7225), 3, + ACTIONS(7272), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154091] = 4, + [154388] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4199), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_class_body, + STATE(4210), 1, sym_comment, - ACTIONS(5092), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4416), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6612), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [154425] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [154112] = 4, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7795), 1, + anon_sym_SLASH_GT, + STATE(4211), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154458] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4200), 1, + STATE(4212), 1, sym_comment, - ACTIONS(5088), 9, + ACTIONS(3568), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336125,166 +336420,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154133] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7779), 1, - anon_sym_BANG, - ACTIONS(7781), 1, - anon_sym_QMARK, - STATE(4201), 1, - sym_comment, - STATE(4927), 1, - sym_type_annotation, - STATE(6003), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154166] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7783), 1, - anon_sym_BANG, - ACTIONS(7785), 1, - anon_sym_QMARK, - STATE(4202), 1, - sym_comment, - STATE(4932), 1, - sym_type_annotation, - STATE(6014), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154199] = 10, + [154479] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7342), 1, + ACTIONS(7565), 1, anon_sym_GT, - ACTIONS(7344), 1, + ACTIONS(7797), 1, anon_sym_SLASH_GT, - STATE(4182), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4203), 1, + STATE(4213), 1, sym_comment, - STATE(4832), 1, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [154232] = 4, + [154512] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7799), 1, + anon_sym_BANG, + ACTIONS(7801), 1, + anon_sym_QMARK, + STATE(4214), 1, + sym_comment, + STATE(4911), 1, + sym_type_annotation, + STATE(6076), 1, + sym__initializer, + ACTIONS(7215), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4204), 1, + STATE(4215), 1, sym_comment, - ACTIONS(4328), 9, + ACTIONS(5264), 9, 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_DOT, - anon_sym_PIPE_RBRACE, - [154253] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154566] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4205), 1, + ACTIONS(7803), 1, + anon_sym_COLON, + STATE(4216), 1, sym_comment, - ACTIONS(5072), 9, + STATE(5024), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7493), 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, - [154274] = 12, + [154591] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_class_body, - STATE(4206), 1, + anon_sym_COLON, + ACTIONS(7805), 1, + anon_sym_BANG, + ACTIONS(7807), 1, + anon_sym_QMARK, + STATE(4217), 1, sym_comment, - STATE(4412), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6952), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [154311] = 11, + STATE(5041), 1, + sym_type_annotation, + STATE(5777), 1, + sym__initializer, + ACTIONS(7167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154624] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5404), 1, anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, + ACTIONS(6984), 1, anon_sym_LT, - STATE(4207), 1, + STATE(4218), 1, sym_comment, - STATE(5544), 1, + STATE(5561), 1, sym_type_arguments, - STATE(6617), 1, + STATE(6656), 1, sym_optional_chain, - STATE(2508), 2, + STATE(3098), 2, sym_template_string, sym_arguments, - [154346] = 4, + [154659] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4208), 1, + STATE(4219), 1, sym_comment, - ACTIONS(5062), 9, + ACTIONS(4979), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336294,466 +336566,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154367] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, - STATE(4209), 1, - sym_comment, - ACTIONS(5062), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [154394] = 10, + [154680] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7787), 1, - anon_sym_BANG, - ACTIONS(7789), 1, - anon_sym_QMARK, - STATE(4210), 1, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, + anon_sym_LT, + STATE(2407), 1, + sym_template_string, + STATE(2728), 1, + sym_arguments, + STATE(3911), 1, + sym_type_arguments, + STATE(4220), 1, sym_comment, - STATE(4939), 1, - sym_type_annotation, - STATE(6029), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154427] = 12, + STATE(6453), 1, + sym_optional_chain, + [154717] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7625), 1, + ACTIONS(7775), 1, anon_sym_LBRACE, - STATE(4211), 1, + STATE(4221), 1, sym_comment, - STATE(4344), 1, + STATE(4422), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6357), 1, + STATE(6576), 1, sym_class_heritage, - STATE(6376), 1, + STATE(6685), 1, sym_class_body, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [154464] = 12, + [154754] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7565), 1, + anon_sym_GT, + ACTIONS(7809), 1, + anon_sym_SLASH_GT, + STATE(4222), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154787] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7811), 1, + anon_sym_SLASH_GT, + STATE(4223), 1, + sym_comment, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154820] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7585), 1, + anon_sym_GT, + ACTIONS(7813), 1, + anon_sym_SLASH_GT, + STATE(4197), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4224), 1, + sym_comment, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154853] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2454), 1, - sym_class_body, - STATE(4212), 1, + STATE(4225), 1, sym_comment, - STATE(4352), 1, + STATE(4407), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5368), 1, + sym_class_body, + STATE(5699), 1, sym_extends_clause, - STATE(6496), 1, + STATE(6799), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [154501] = 9, + [154890] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - STATE(4213), 1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7557), 1, + anon_sym_GT, + ACTIONS(7815), 1, + anon_sym_SLASH_GT, + STATE(4226), 1, sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154532] = 10, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154923] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7707), 1, + ACTIONS(7561), 1, anon_sym_GT, - ACTIONS(7791), 1, + ACTIONS(7817), 1, anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4198), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4214), 1, + STATE(4227), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [154565] = 4, + [154956] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4215), 1, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7569), 1, + anon_sym_GT, + ACTIONS(7819), 1, + anon_sym_SLASH_GT, + STATE(4228), 1, sym_comment, - ACTIONS(7793), 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, - [154586] = 10, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, + sym_jsx_namespace_name, + ACTIONS(7012), 2, + sym_jsx_identifier, + sym_identifier, + STATE(5159), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7795), 1, - anon_sym_BANG, - ACTIONS(7797), 1, - anon_sym_QMARK, - STATE(4216), 1, + STATE(4229), 1, sym_comment, - STATE(5288), 1, - sym_type_annotation, - STATE(6020), 1, - sym__initializer, - ACTIONS(7189), 3, + ACTIONS(4941), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154619] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155010] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7549), 1, + ACTIONS(7721), 1, anon_sym_COMMA, - ACTIONS(7799), 1, + ACTIONS(7821), 1, anon_sym_RBRACE, - STATE(4217), 1, + STATE(4230), 1, sym_comment, - STATE(5869), 1, + STATE(5721), 1, aux_sym_object_pattern_repeat1, - STATE(6261), 1, + STATE(6315), 1, aux_sym_object_repeat1, - ACTIONS(4518), 4, + ACTIONS(4520), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [154650] = 10, + [155041] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2667), 1, + anon_sym_RBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7721), 1, + anon_sym_COMMA, + STATE(4231), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7801), 1, - anon_sym_BANG, - ACTIONS(7803), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4218), 1, - sym_comment, - STATE(4951), 1, - sym_type_annotation, - STATE(6057), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154683] = 10, + [155072] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7805), 1, - anon_sym_BANG, - ACTIONS(7807), 1, - anon_sym_QMARK, - STATE(4219), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2535), 1, + sym_class_body, + STATE(4232), 1, sym_comment, - STATE(5322), 1, - sym_type_annotation, - STATE(6037), 1, - sym__initializer, - ACTIONS(7189), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154716] = 10, + STATE(4433), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6530), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155109] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7809), 1, - anon_sym_BANG, - ACTIONS(7811), 1, - anon_sym_QMARK, - STATE(4220), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4233), 1, sym_comment, - STATE(5348), 1, - sym_type_annotation, - STATE(6055), 1, - sym__initializer, - ACTIONS(7189), 3, + ACTIONS(4941), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154749] = 10, + anon_sym_LBRACK, + [155136] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7813), 1, - anon_sym_BANG, - ACTIONS(7815), 1, - anon_sym_QMARK, - STATE(4221), 1, + STATE(4234), 1, sym_comment, - STATE(5360), 1, - sym_type_annotation, - STATE(6059), 1, - sym__initializer, - ACTIONS(7189), 3, + ACTIONS(3536), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154782] = 10, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155157] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(6984), 1, + anon_sym_LT, + ACTIONS(7825), 1, + anon_sym_DOT, + STATE(4235), 1, + sym_comment, + STATE(5507), 1, + sym_arguments, + STATE(6964), 1, + sym_type_arguments, + ACTIONS(7823), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [155188] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7711), 1, - anon_sym_GT, - ACTIONS(7817), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4222), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(6984), 1, + anon_sym_LT, + ACTIONS(7827), 1, + anon_sym_DOT, + STATE(3098), 1, + sym_template_string, + STATE(3296), 1, + sym_arguments, + STATE(4236), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154815] = 12, + STATE(5561), 1, + sym_type_arguments, + STATE(6656), 1, + sym_optional_chain, + [155225] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2973), 1, - sym_class_body, - STATE(4223), 1, + STATE(4237), 1, sym_comment, - STATE(4372), 1, + STATE(4437), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6545), 1, + STATE(5723), 1, + sym_class_body, + STATE(6526), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [154852] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_BANG, - ACTIONS(7821), 1, - anon_sym_QMARK, - STATE(4224), 1, - sym_comment, - STATE(5375), 1, - sym_type_annotation, - STATE(6191), 1, - sym__initializer, - ACTIONS(7189), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154885] = 10, + [155262] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7823), 1, + ACTIONS(7829), 1, anon_sym_BANG, - ACTIONS(7825), 1, + ACTIONS(7831), 1, anon_sym_QMARK, - STATE(4225), 1, + STATE(4238), 1, sym_comment, - STATE(5352), 1, + STATE(5020), 1, sym_type_annotation, - STATE(6231), 1, + STATE(5756), 1, sym__initializer, - ACTIONS(7189), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154918] = 10, + [155295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7827), 1, - anon_sym_BANG, - ACTIONS(7829), 1, - anon_sym_QMARK, - STATE(4226), 1, + STATE(4239), 1, sym_comment, - STATE(5323), 1, - sym_type_annotation, - STATE(6306), 1, - sym__initializer, - ACTIONS(7189), 3, + ACTIONS(3420), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154951] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155316] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7719), 1, - anon_sym_GT, - ACTIONS(7831), 1, + ACTIONS(7033), 1, anon_sym_SLASH_GT, - STATE(4089), 1, + ACTIONS(7330), 1, + anon_sym_GT, + STATE(4088), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4227), 1, + STATE(4240), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [154984] = 5, + [155349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LBRACK, - STATE(4228), 1, + STATE(4241), 1, sym_comment, - ACTIONS(5122), 8, + ACTIONS(3438), 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, - [155007] = 5, + [155370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7835), 1, - anon_sym_extends, - STATE(4229), 1, + STATE(4242), 1, sym_comment, - ACTIONS(5116), 8, + ACTIONS(5355), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336762,123 +337070,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [155030] = 9, + anon_sym_extends, + [155391] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2667), 1, - anon_sym_RBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - STATE(4230), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7175), 1, anon_sym_LT, - anon_sym_QMARK, - [155061] = 6, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7833), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_class_body, + STATE(4243), 1, + sym_comment, + STATE(4471), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6451), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LBRACK, - STATE(4231), 1, + STATE(4244), 1, sym_comment, - ACTIONS(4883), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5084), 5, + ACTIONS(3448), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155086] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155449] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, + STATE(4245), 1, + sym_comment, + ACTIONS(7835), 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, + [155470] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(7541), 1, anon_sym_extends, - STATE(4232), 1, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7725), 1, + anon_sym_LBRACE, + STATE(400), 1, + sym_class_body, + STATE(4246), 1, sym_comment, - ACTIONS(5076), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4409), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6780), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155507] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7837), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [155113] = 10, + STATE(326), 1, + sym_class_body, + STATE(4247), 1, + sym_comment, + STATE(4469), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6445), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155544] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7837), 1, - anon_sym_BANG, ACTIONS(7839), 1, + anon_sym_BANG, + ACTIONS(7841), 1, anon_sym_QMARK, - STATE(4233), 1, + STATE(4248), 1, sym_comment, - STATE(5235), 1, + STATE(5071), 1, sym_type_annotation, - STATE(6258), 1, + STATE(5828), 1, sym__initializer, - ACTIONS(7189), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155146] = 12, + [155577] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7543), 1, - anon_sym_LBRACE, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - STATE(1404), 1, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1425), 1, sym_class_body, - STATE(4234), 1, + STATE(4249), 1, sym_comment, - STATE(4505), 1, + STATE(4447), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6818), 1, + STATE(6474), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [155183] = 4, + [155614] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4235), 1, + STATE(4250), 1, sym_comment, - ACTIONS(5351), 9, + ACTIONS(5310), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336888,37 +337245,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155204] = 10, + [155635] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7841), 1, - anon_sym_BANG, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, ACTIONS(7843), 1, - anon_sym_QMARK, - STATE(4236), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_class_body, + STATE(4251), 1, sym_comment, - STATE(5228), 1, - sym_type_annotation, - STATE(6250), 1, - sym__initializer, - ACTIONS(7189), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155237] = 4, + STATE(4466), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6431), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4237), 1, + STATE(4252), 1, sym_comment, - ACTIONS(5043), 9, + ACTIONS(4975), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336928,58 +337287,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155258] = 12, + [155693] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7845), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(1368), 1, + STATE(923), 1, sym_class_body, - STATE(4238), 1, + STATE(4253), 1, sym_comment, - STATE(4399), 1, + STATE(4465), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6611), 1, + STATE(6418), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [155295] = 6, + [155730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7847), 1, - anon_sym_COLON, - STATE(4239), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + STATE(4254), 1, sym_comment, - STATE(5194), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7507), 5, + ACTIONS(4991), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155320] = 4, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [155753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4240), 1, + STATE(4255), 1, sym_comment, - ACTIONS(5031), 9, + ACTIONS(5074), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336989,246 +337347,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155341] = 5, + [155774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, + STATE(4256), 1, + sym_comment, + ACTIONS(4995), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - STATE(4241), 1, + anon_sym_PIPE, + anon_sym_extends, + [155795] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4257), 1, sym_comment, - ACTIONS(5027), 8, + ACTIONS(5329), 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, - [155364] = 12, + [155816] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(2508), 1, - sym_template_string, - STATE(2618), 1, - sym_arguments, - STATE(3820), 1, - sym_type_arguments, - STATE(4242), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3030), 1, + sym_class_body, + STATE(4258), 1, sym_comment, - STATE(6617), 1, - sym_optional_chain, - [155401] = 4, + STATE(4428), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6548), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [155853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4243), 1, + STATE(4259), 1, sym_comment, - ACTIONS(5355), 9, + ACTIONS(7679), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [155422] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [155874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4244), 1, + ACTIONS(7599), 1, + anon_sym_LBRACK, + STATE(4260), 1, sym_comment, - ACTIONS(5007), 9, + ACTIONS(5061), 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, anon_sym_extends, - [155443] = 10, + [155897] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7581), 1, + ACTIONS(7631), 1, anon_sym_GT, - ACTIONS(7849), 1, + ACTIONS(7845), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4245), 1, + STATE(4261), 1, sym_comment, - STATE(4832), 1, + STATE(4270), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155476] = 10, + [155930] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(3098), 1, + sym_template_string, + STATE(3223), 1, + sym_arguments, + STATE(4064), 1, + sym_type_arguments, + STATE(4262), 1, + sym_comment, + STATE(6656), 1, + sym_optional_chain, + [155967] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_GT, - ACTIONS(7851), 1, + ACTIONS(7027), 1, anon_sym_SLASH_GT, - STATE(4082), 1, + ACTIONS(7330), 1, + anon_sym_GT, + STATE(4222), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4246), 1, + STATE(4263), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155509] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4247), 1, - sym_comment, - ACTIONS(5003), 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, - [155530] = 12, + [156000] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_class_body, - STATE(4248), 1, + STATE(4264), 1, sym_comment, - STATE(4396), 1, + STATE(4411), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5117), 1, + sym_class_body, + STATE(5699), 1, sym_extends_clause, - STATE(6548), 1, + STATE(6741), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [155567] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4249), 1, - sym_comment, - ACTIONS(4999), 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, - [155588] = 12, + [156037] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7855), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(432), 1, sym_class_body, - STATE(4250), 1, + STATE(4265), 1, sym_comment, - STATE(4394), 1, + STATE(4587), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6534), 1, + STATE(6995), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [155625] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(6978), 1, - anon_sym_LT, - ACTIONS(7857), 1, - anon_sym_DOT, - STATE(2508), 1, - sym_template_string, - STATE(2979), 1, - sym_arguments, - STATE(4251), 1, - sym_comment, - STATE(5544), 1, - sym_type_arguments, - STATE(6617), 1, - sym_optional_chain, - [155662] = 4, + [156074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4252), 1, + STATE(4266), 1, sym_comment, - ACTIONS(5359), 9, + ACTIONS(5061), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337238,230 +337579,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155683] = 4, + [156095] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4253), 1, + ACTIONS(7847), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + anon_sym_DQUOTE, + ACTIONS(7851), 1, + anon_sym_SQUOTE, + ACTIONS(7853), 1, + anon_sym_LT, + STATE(3902), 1, + sym_jsx_opening_element, + STATE(4267), 1, sym_comment, - ACTIONS(5334), 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, - [155704] = 12, + STATE(5101), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [156126] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7845), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(1307), 1, + STATE(3042), 1, sym_class_body, - STATE(4254), 1, + STATE(4268), 1, sym_comment, - STATE(4392), 1, + STATE(4461), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6490), 1, + STATE(6368), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [155741] = 6, + [156163] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(7847), 1, - anon_sym_COLON, - STATE(4255), 1, - sym_comment, - STATE(5039), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7515), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [155766] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4256), 1, + ACTIONS(7849), 1, + anon_sym_DQUOTE, + ACTIONS(7851), 1, + anon_sym_SQUOTE, + ACTIONS(7853), 1, + anon_sym_LT, + STATE(3902), 1, + sym_jsx_opening_element, + STATE(4269), 1, sym_comment, - ACTIONS(5212), 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, - [155787] = 10, + STATE(5107), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [156194] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7858), 1, anon_sym_LBRACE, - ACTIONS(7707), 1, - anon_sym_GT, - ACTIONS(7859), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4257), 1, - sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7855), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [155820] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7711), 1, + ACTIONS(7861), 2, anon_sym_GT, - ACTIONS(7861), 1, anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4258), 1, + STATE(4270), 2, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, + aux_sym__jsx_start_opening_element_repeat1, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155853] = 10, + [156223] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7719), 1, + ACTIONS(7627), 1, anon_sym_GT, ACTIONS(7863), 1, anon_sym_SLASH_GT, - STATE(4245), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4259), 1, + STATE(4271), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155886] = 10, - ACTIONS(3), 1, + [156256] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4817), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(4272), 1, + sym_comment, + STATE(5506), 1, + sym_type_arguments, + STATE(6453), 1, + sym_optional_chain, + STATE(2407), 2, + sym_template_string, + sym_arguments, + [156291] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7723), 1, - anon_sym_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7223), 1, + anon_sym_EQ, + ACTIONS(7721), 1, + anon_sym_COMMA, ACTIONS(7865), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4260), 1, + anon_sym_RBRACE, + STATE(4273), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [155919] = 10, + STATE(5720), 1, + aux_sym_object_repeat1, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156322] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7867), 1, + anon_sym_BANG, + ACTIONS(7869), 1, + anon_sym_QMARK, + STATE(4274), 1, + sym_comment, + STATE(5104), 1, + sym_type_annotation, + STATE(5854), 1, + sym__initializer, + ACTIONS(7167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156355] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7873), 1, + anon_sym_BANG, + ACTIONS(7875), 1, + anon_sym_QMARK, + STATE(4275), 1, + sym_comment, + STATE(4850), 1, + sym_type_annotation, + STATE(6017), 1, + sym__initializer, + ACTIONS(7871), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156388] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7223), 1, + anon_sym_EQ, + ACTIONS(7721), 1, + anon_sym_COMMA, + ACTIONS(7877), 1, + anon_sym_RBRACE, + STATE(4276), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + STATE(6315), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156419] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7731), 1, + ACTIONS(7627), 1, anon_sym_GT, - ACTIONS(7867), 1, + ACTIONS(7879), 1, anon_sym_SLASH_GT, - STATE(4246), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4261), 1, + STATE(4277), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155952] = 10, + [156452] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7881), 1, + anon_sym_BANG, + ACTIONS(7883), 1, + anon_sym_QMARK, + STATE(4278), 1, + sym_comment, + STATE(5051), 1, + sym_type_annotation, + STATE(5929), 1, + sym__initializer, + ACTIONS(7871), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156485] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(7016), 1, anon_sym_LBRACE, - ACTIONS(7737), 1, + ACTIONS(7631), 1, anon_sym_GT, - ACTIONS(7869), 1, + ACTIONS(7885), 1, anon_sym_SLASH_GT, - STATE(4082), 1, + STATE(4270), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4262), 1, + STATE(4279), 1, sym_comment, - STATE(4832), 1, + STATE(4734), 1, sym_jsx_namespace_name, - ACTIONS(7010), 2, + ACTIONS(7012), 2, sym_jsx_identifier, sym_identifier, - STATE(4937), 2, + STATE(5159), 2, sym_jsx_expression, sym_jsx_attribute, - [155985] = 4, + [156518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4263), 1, + STATE(4280), 1, sym_comment, - ACTIONS(5156), 9, + ACTIONS(5078), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337471,59 +337892,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156006] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - STATE(4264), 1, - sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [156037] = 10, + [156539] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7049), 1, - anon_sym_SLASH_GT, - ACTIONS(7342), 1, - anon_sym_GT, - STATE(4166), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4265), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156070] = 4, + ACTIONS(7445), 1, + anon_sym_type, + ACTIONS(7451), 1, + anon_sym_typeof, + STATE(4281), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(6638), 1, + sym_import_specifier, + STATE(6851), 1, + sym__import_identifier, + STATE(7127), 1, + sym__module_export_name, + [156576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4266), 1, + STATE(4282), 1, sym_comment, - ACTIONS(5015), 9, + ACTIONS(5035), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337533,14 +337934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156091] = 4, + [156597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4267), 1, + STATE(4283), 1, sym_comment, - ACTIONS(5011), 9, + ACTIONS(5031), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337550,166 +337951,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156112] = 12, + [156618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_class_body, - STATE(4268), 1, + STATE(4284), 1, sym_comment, - STATE(4390), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6420), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [156149] = 9, + ACTIONS(5027), 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, + [156639] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - ACTIONS(7871), 1, - anon_sym_RBRACE, - STATE(4269), 1, - sym_comment, - STATE(5868), 1, - aux_sym_object_repeat1, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, + ACTIONS(7173), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7887), 1, + anon_sym_BANG, + ACTIONS(7889), 1, anon_sym_QMARK, - [156180] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7025), 1, - anon_sym_SLASH_GT, - ACTIONS(7342), 1, - anon_sym_GT, - STATE(4214), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4270), 1, + STATE(4285), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156213] = 4, + STATE(5282), 1, + sym_type_annotation, + STATE(6217), 1, + sym__initializer, + ACTIONS(7209), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156672] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4271), 1, + ACTIONS(7803), 1, + anon_sym_COLON, + STATE(4286), 1, sym_comment, - ACTIONS(4995), 9, + STATE(5360), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7519), 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, - [156234] = 12, + [156697] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7649), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(331), 1, sym_class_body, - STATE(4272), 1, + STATE(4287), 1, sym_comment, - STATE(4521), 1, + STATE(4464), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6959), 1, + STATE(6398), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [156271] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [156734] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, anon_sym_LBRACE, - ACTIONS(7342), 1, - anon_sym_GT, - ACTIONS(7362), 1, - anon_sym_SLASH_GT, - STATE(4257), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4273), 1, + STATE(3155), 1, + sym_class_body, + STATE(4288), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156304] = 4, + STATE(4448), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6463), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [156771] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4274), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7891), 1, + anon_sym_BANG, + ACTIONS(7893), 1, + anon_sym_QMARK, + STATE(4289), 1, sym_comment, - ACTIONS(5156), 9, + STATE(5097), 1, + sym_type_annotation, + STATE(5836), 1, + sym__initializer, + ACTIONS(7167), 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, + [156804] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5376), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_BQUOTE, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(2689), 1, + sym_arguments, + STATE(3098), 1, + sym_template_string, + STATE(4064), 1, + sym_type_arguments, + STATE(4290), 1, + sym_comment, + STATE(6656), 1, + sym_optional_chain, + [156841] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, anon_sym_extends, - [156325] = 4, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7843), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_class_body, + STATE(4291), 1, + sym_comment, + STATE(4475), 1, + sym_type_parameters, + STATE(5699), 1, + sym_extends_clause, + STATE(6467), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [156878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4275), 1, + STATE(4292), 1, sym_comment, - ACTIONS(5108), 9, + ACTIONS(4853), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337719,74 +338150,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156346] = 12, + [156899] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(4869), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(6984), 1, anon_sym_LT, - ACTIONS(7545), 1, + ACTIONS(7895), 1, + anon_sym_DOT, + STATE(2407), 1, + sym_template_string, + STATE(3167), 1, + sym_arguments, + STATE(4293), 1, + sym_comment, + STATE(5506), 1, + sym_type_arguments, + STATE(6453), 1, + sym_optional_chain, + [156936] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7855), 1, + ACTIONS(7573), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(1502), 1, sym_class_body, - STATE(4276), 1, + STATE(4294), 1, sym_comment, - STATE(4385), 1, + STATE(4467), 1, sym_type_parameters, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6336), 1, + STATE(6441), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [156383] = 5, + [156973] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7529), 1, + sym_identifier, + ACTIONS(7897), 1, + anon_sym_RBRACE, + STATE(4295), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(5715), 1, + sym__module_export_name, + STATE(6683), 1, + sym_export_specifier, + ACTIONS(7531), 2, + anon_sym_type, + anon_sym_typeof, + [157008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LBRACK, - STATE(4277), 1, + STATE(4296), 1, sym_comment, - ACTIONS(4883), 8, + ACTIONS(2207), 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, - [156406] = 4, + [157029] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4278), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7899), 1, + anon_sym_BANG, + ACTIONS(7901), 1, + anon_sym_QMARK, + STATE(4297), 1, sym_comment, - ACTIONS(5108), 9, + STATE(5305), 1, + sym_type_annotation, + STATE(6168), 1, + sym__initializer, + ACTIONS(7209), 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, - [156427] = 4, + [157062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4279), 1, + STATE(4298), 1, sym_comment, - ACTIONS(4883), 9, + ACTIONS(2251), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337796,14 +338281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156448] = 4, + [157083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4280), 1, + STATE(4299), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(5045), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337813,83 +338298,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156469] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7723), 1, - anon_sym_GT, - ACTIONS(7873), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4281), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156502] = 10, + [157104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7875), 1, - anon_sym_BANG, - ACTIONS(7877), 1, - anon_sym_QMARK, - STATE(4282), 1, + STATE(4300), 1, sym_comment, - STATE(4961), 1, - sym_type_annotation, - STATE(6068), 1, - sym__initializer, - ACTIONS(7225), 3, + ACTIONS(4857), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [156535] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157125] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7879), 1, + ACTIONS(7903), 1, anon_sym_BANG, - ACTIONS(7881), 1, + ACTIONS(7905), 1, anon_sym_QMARK, - STATE(4283), 1, + STATE(4301), 1, sym_comment, - STATE(4966), 1, + STATE(5201), 1, sym_type_annotation, - STATE(6102), 1, + STATE(5889), 1, sym__initializer, - ACTIONS(7225), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156568] = 4, + [157158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4284), 1, + STATE(4302), 1, sym_comment, - ACTIONS(4843), 9, + ACTIONS(5051), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -337899,992 +338355,754 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156589] = 10, + [157179] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7885), 1, + ACTIONS(7907), 1, anon_sym_BANG, - ACTIONS(7887), 1, + ACTIONS(7909), 1, anon_sym_QMARK, - STATE(4285), 1, + STATE(4303), 1, sym_comment, - STATE(5238), 1, + STATE(5126), 1, sym_type_annotation, - STATE(6283), 1, + STATE(5866), 1, sym__initializer, - ACTIONS(7883), 3, + ACTIONS(7167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156622] = 4, + [157212] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4286), 1, + ACTIONS(7911), 1, + sym_escape_sequence, + ACTIONS(7913), 1, + anon_sym_BQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7917), 1, + sym__template_chars, + STATE(4304), 1, sym_comment, - ACTIONS(5190), 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, - [156643] = 12, + STATE(4744), 1, + aux_sym_template_string_repeat1, + STATE(4854), 1, + aux_sym_template_literal_type_repeat1, + STATE(5571), 1, + sym_template_substitution, + STATE(6024), 1, + sym_template_type, + [157246] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(4287), 1, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7919), 1, + anon_sym_enum, + STATE(4305), 1, sym_comment, - STATE(4347), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(5969), 1, - sym_class_body, - STATE(6409), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [156680] = 4, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5538), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [157278] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4288), 1, + ACTIONS(7911), 1, + sym_escape_sequence, + ACTIONS(7915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7917), 1, + sym__template_chars, + ACTIONS(7921), 1, + anon_sym_BQUOTE, + STATE(4306), 1, sym_comment, - ACTIONS(7889), 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, - [156701] = 9, + STATE(4744), 1, + aux_sym_template_string_repeat1, + STATE(4984), 1, + aux_sym_template_literal_type_repeat1, + STATE(5571), 1, + sym_template_substitution, + STATE(6024), 1, + sym_template_type, + [157312] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4289), 1, + ACTIONS(7471), 1, + anon_sym_BANG, + STATE(4307), 1, sym_comment, - STATE(5025), 1, + STATE(5361), 1, sym_type_annotation, - STATE(6125), 1, + STATE(5760), 1, sym__initializer, - ACTIONS(7291), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7289), 3, + ACTIONS(7469), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156732] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4899), 1, - anon_sym_QMARK_DOT, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(4290), 1, - sym_comment, - STATE(5479), 1, - sym_type_arguments, - STATE(6667), 1, - sym_optional_chain, - STATE(3075), 2, - sym_template_string, - sym_arguments, - [156767] = 9, + [157342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, + ACTIONS(7923), 1, anon_sym_EQ, - ACTIONS(7549), 1, - anon_sym_COMMA, - ACTIONS(7891), 1, - anon_sym_RBRACE, - STATE(4291), 1, + STATE(4308), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - STATE(6261), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [156798] = 12, + ACTIONS(6271), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157364] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2512), 1, - sym_class_body, - STATE(4292), 1, + anon_sym_COLON, + ACTIONS(7925), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7927), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7929), 1, + anon_sym_QMARK_COLON, + STATE(4309), 1, sym_comment, - STATE(4346), 1, - sym_type_parameters, - STATE(5785), 1, - sym_extends_clause, - STATE(6398), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [156835] = 7, + STATE(4876), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157392] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, - STATE(4293), 1, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(7935), 1, + anon_sym_GT, + ACTIONS(7937), 1, + sym_jsx_identifier, + ACTIONS(7939), 1, + anon_sym_SLASH_GT, + STATE(3916), 1, + sym_nested_identifier, + STATE(4263), 1, + sym_jsx_namespace_name, + STATE(4310), 1, sym_comment, - ACTIONS(5226), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [156862] = 4, + STATE(5711), 1, + sym_type_parameter, + [157426] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4294), 1, + ACTIONS(7089), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + anon_sym_DOT, + STATE(4311), 1, sym_comment, - ACTIONS(5230), 9, + STATE(4713), 1, + sym_arguments, + ACTIONS(7481), 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, - [156883] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7893), 1, - anon_sym_BANG, - ACTIONS(7895), 1, - anon_sym_QMARK, - STATE(4295), 1, - sym_comment, - STATE(4965), 1, - sym_type_annotation, - STATE(6072), 1, - sym__initializer, - ACTIONS(7883), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156916] = 10, + [157452] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7897), 1, - anon_sym_BANG, - ACTIONS(7899), 1, - anon_sym_QMARK, - STATE(4296), 1, + ACTIONS(7925), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7927), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7929), 1, + anon_sym_QMARK_COLON, + STATE(4312), 1, sym_comment, - STATE(4977), 1, + STATE(4877), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(6085), 1, - sym__initializer, - ACTIONS(7225), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156949] = 4, + [157480] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4297), 1, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, + STATE(4313), 1, sym_comment, - ACTIONS(4974), 9, + ACTIONS(7479), 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, - [156970] = 4, + [157506] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4298), 1, + ACTIONS(7911), 1, + sym_escape_sequence, + ACTIONS(7915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7917), 1, + sym__template_chars, + ACTIONS(7943), 1, + anon_sym_BQUOTE, + STATE(4314), 1, sym_comment, - ACTIONS(4857), 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, - [156991] = 10, + STATE(4785), 1, + aux_sym_template_string_repeat1, + STATE(4854), 1, + aux_sym_template_literal_type_repeat1, + STATE(5571), 1, + sym_template_substitution, + STATE(6024), 1, + sym_template_type, + [157540] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, - anon_sym_LBRACE, - ACTIONS(7737), 1, - anon_sym_GT, - ACTIONS(7901), 1, - anon_sym_SLASH_GT, - STATE(4082), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4299), 1, - sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7529), 1, sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [157024] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4315), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(5715), 1, + sym__module_export_name, + STATE(6683), 1, + sym_export_specifier, + ACTIONS(7531), 2, + anon_sym_type, + anon_sym_typeof, + [157572] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7014), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7945), 1, anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_GT, - ACTIONS(7903), 1, - anon_sym_SLASH_GT, - STATE(4087), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4300), 1, + ACTIONS(7947), 1, + anon_sym_DOT, + STATE(4316), 1, sym_comment, - STATE(4832), 1, - sym_jsx_namespace_name, - ACTIONS(7010), 2, - sym_jsx_identifier, - sym_identifier, - STATE(4937), 2, - sym_jsx_expression, - sym_jsx_attribute, - [157057] = 8, + STATE(4893), 1, + sym_statement_block, + ACTIONS(2071), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157598] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4301), 1, + STATE(4317), 1, sym_comment, - STATE(5216), 4, + STATE(4977), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157085] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [157626] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7945), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(7911), 1, - anon_sym_enum, - STATE(4302), 1, + ACTIONS(7949), 1, + anon_sym_DOT, + STATE(4318), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5459), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [157117] = 7, + STATE(4893), 1, + sym_statement_block, + ACTIONS(2071), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157652] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(4303), 1, + STATE(4319), 1, sym_comment, - ACTIONS(7913), 5, + ACTIONS(7951), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [157143] = 7, + [157678] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(4304), 1, + STATE(4320), 1, sym_comment, - ACTIONS(7915), 5, + ACTIONS(7953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [157169] = 7, + [157704] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, ACTIONS(7435), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(7437), 1, + anon_sym_PIPE, + ACTIONS(7439), 1, anon_sym_extends, - STATE(4305), 1, + STATE(4321), 1, sym_comment, - ACTIONS(7917), 5, + ACTIONS(7955), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [157195] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7905), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, - anon_sym_QMARK_COLON, - STATE(4306), 1, - sym_comment, - STATE(5055), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157223] = 8, + [157730] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4307), 1, + STATE(4322), 1, sym_comment, - STATE(5044), 4, + STATE(4989), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157251] = 9, + [157758] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7497), 1, - anon_sym_BANG, - STATE(4308), 1, + ACTIONS(7911), 1, + sym_escape_sequence, + ACTIONS(7915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7917), 1, + sym__template_chars, + ACTIONS(7957), 1, + anon_sym_BQUOTE, + STATE(4323), 1, sym_comment, - STATE(4888), 1, - sym_type_annotation, - STATE(5942), 1, - sym__initializer, - ACTIONS(7495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157281] = 7, + STATE(4744), 1, + aux_sym_template_string_repeat1, + STATE(4854), 1, + aux_sym_template_literal_type_repeat1, + STATE(5571), 1, + sym_template_substitution, + STATE(6024), 1, + sym_template_type, + [157792] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, - STATE(4309), 1, + ACTIONS(7911), 1, + sym_escape_sequence, + ACTIONS(7915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7917), 1, + sym__template_chars, + ACTIONS(7959), 1, + anon_sym_BQUOTE, + STATE(4324), 1, sym_comment, - ACTIONS(7477), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [157307] = 7, + STATE(4744), 1, + aux_sym_template_string_repeat1, + STATE(4854), 1, + aux_sym_template_literal_type_repeat1, + STATE(5571), 1, + sym_template_substitution, + STATE(6024), 1, + sym_template_type, + [157826] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7075), 1, - anon_sym_LPAREN, - ACTIONS(7919), 1, - anon_sym_DOT, - STATE(4310), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + ACTIONS(7925), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7927), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7929), 1, + anon_sym_QMARK_COLON, + STATE(4325), 1, sym_comment, - STATE(4665), 1, - sym_arguments, - ACTIONS(7483), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [157333] = 11, + STATE(5208), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157854] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7921), 1, + ACTIONS(7911), 1, sym_escape_sequence, - ACTIONS(7923), 1, - anon_sym_BQUOTE, - ACTIONS(7925), 1, + ACTIONS(7915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, + ACTIONS(7917), 1, sym__template_chars, - STATE(4311), 1, + ACTIONS(7961), 1, + anon_sym_BQUOTE, + STATE(4326), 1, sym_comment, - STATE(4788), 1, + STATE(4744), 1, aux_sym_template_string_repeat1, - STATE(5108), 1, + STATE(4854), 1, aux_sym_template_literal_type_repeat1, - STATE(5469), 1, + STATE(5571), 1, sym_template_substitution, - STATE(6164), 1, + STATE(6024), 1, sym_template_type, - [157367] = 8, + [157888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7905), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, - anon_sym_QMARK_COLON, - STATE(4312), 1, + ACTIONS(7963), 1, + anon_sym_EQ, + STATE(4327), 1, sym_comment, - STATE(4868), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157395] = 8, + ACTIONS(7965), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157910] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4313), 1, + STATE(4328), 1, sym_comment, - STATE(4866), 4, + STATE(5364), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157423] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [157938] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(7929), 1, - anon_sym_enum, - STATE(4314), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(4329), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5481), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [157455] = 10, + ACTIONS(7967), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157960] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4028), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(7931), 1, + ACTIONS(7971), 1, anon_sym_enum, - STATE(4315), 1, + STATE(4330), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5443), 1, + STATE(5524), 1, sym_variable_declarator, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [157487] = 8, + [157992] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4316), 1, + STATE(4331), 1, sym_comment, - STATE(5186), 4, + STATE(4979), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157515] = 10, + [158020] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4028), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(7933), 1, + ACTIONS(7973), 1, anon_sym_enum, - STATE(4317), 1, + STATE(4332), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5416), 1, + STATE(5487), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [158052] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_enum, + STATE(4333), 1, + sym_comment, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5445), 1, sym_variable_declarator, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [157547] = 8, + [158084] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4318), 1, + STATE(4334), 1, sym_comment, - STATE(5214), 4, + STATE(5140), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157575] = 8, + [158112] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - ACTIONS(7905), 1, + ACTIONS(7925), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, + ACTIONS(7927), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, + ACTIONS(7929), 1, anon_sym_QMARK_COLON, - STATE(4319), 1, + STATE(4335), 1, sym_comment, - STATE(5052), 4, + STATE(5141), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157603] = 11, + [158140] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7935), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(7939), 1, - anon_sym_GT, - ACTIONS(7941), 1, - sym_jsx_identifier, - ACTIONS(7943), 1, - anon_sym_SLASH_GT, - STATE(3939), 1, - sym_nested_identifier, - STATE(4265), 1, - sym_jsx_namespace_name, - STATE(4320), 1, - sym_comment, - STATE(5794), 1, - sym_type_parameter, - [157637] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7921), 1, - sym_escape_sequence, - ACTIONS(7925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, - sym__template_chars, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - STATE(4321), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7977), 1, + anon_sym_enum, + STATE(4336), 1, sym_comment, - STATE(4788), 1, - aux_sym_template_string_repeat1, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(5469), 1, - sym_template_substitution, - STATE(6164), 1, - sym_template_type, - [157671] = 5, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5577), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [158172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7949), 1, - anon_sym_DOT, - STATE(4322), 1, + STATE(4337), 1, sym_comment, - ACTIONS(7947), 7, + ACTIONS(7965), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [157693] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(7951), 1, - anon_sym_enum, - STATE(4323), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5572), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [157725] = 11, + [158192] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, + ACTIONS(7933), 1, anon_sym_const, - ACTIONS(7939), 1, + ACTIONS(7935), 1, anon_sym_GT, - ACTIONS(7953), 1, + ACTIONS(7979), 1, sym_identifier, - ACTIONS(7955), 1, + ACTIONS(7981), 1, sym_jsx_identifier, - ACTIONS(7957), 1, + ACTIONS(7983), 1, anon_sym_SLASH_GT, - STATE(3930), 1, + STATE(3938), 1, sym_nested_identifier, - STATE(4270), 1, + STATE(4240), 1, sym_jsx_namespace_name, - STATE(4324), 1, + STATE(4338), 1, sym_comment, - STATE(5794), 1, + STATE(5711), 1, sym_type_parameter, - [157759] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7457), 1, - sym_identifier, - STATE(4325), 1, - sym_comment, - STATE(5551), 1, - sym_string, - STATE(5832), 1, - sym__module_export_name, - STATE(6537), 1, - sym_export_specifier, - ACTIONS(7459), 2, - anon_sym_type, - anon_sym_typeof, - [157791] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7921), 1, - sym_escape_sequence, - ACTIONS(7925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, - sym__template_chars, - ACTIONS(7959), 1, - anon_sym_BQUOTE, - STATE(4326), 1, - sym_comment, - STATE(4741), 1, - aux_sym_template_string_repeat1, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(5469), 1, - sym_template_substitution, - STATE(6164), 1, - sym_template_type, - [157825] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7921), 1, - sym_escape_sequence, - ACTIONS(7925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, - sym__template_chars, - ACTIONS(7961), 1, - anon_sym_BQUOTE, - STATE(4327), 1, - sym_comment, - STATE(4788), 1, - aux_sym_template_string_repeat1, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(5469), 1, - sym_template_substitution, - STATE(6164), 1, - sym_template_type, - [157859] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7921), 1, - sym_escape_sequence, - ACTIONS(7925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, - sym__template_chars, - ACTIONS(7963), 1, - anon_sym_BQUOTE, - STATE(4328), 1, - sym_comment, - STATE(4788), 1, - aux_sym_template_string_repeat1, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(5469), 1, - sym_template_substitution, - STATE(6164), 1, - sym_template_type, - [157893] = 7, + [158226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - ACTIONS(7967), 1, - anon_sym_DOT, - STATE(4329), 1, - sym_comment, - STATE(4996), 1, - sym_statement_block, - ACTIONS(2061), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157919] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - ACTIONS(7969), 1, - anon_sym_DOT, - STATE(4330), 1, - sym_comment, - STATE(4996), 1, - sym_statement_block, - ACTIONS(2061), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157945] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4331), 1, - sym_comment, - ACTIONS(6224), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [157965] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4332), 1, + STATE(4339), 1, sym_comment, - ACTIONS(7971), 8, + ACTIONS(6271), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338893,8041 +339111,7849 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [157985] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7905), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7907), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7909), 1, - anon_sym_QMARK_COLON, - STATE(4333), 1, - sym_comment, - STATE(5150), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [158013] = 11, + [158246] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7921), 1, + ACTIONS(7911), 1, sym_escape_sequence, - ACTIONS(7925), 1, + ACTIONS(7915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, + ACTIONS(7917), 1, sym__template_chars, - ACTIONS(7973), 1, + ACTIONS(7985), 1, anon_sym_BQUOTE, - STATE(4334), 1, + STATE(4340), 1, sym_comment, - STATE(4741), 1, + STATE(4744), 1, aux_sym_template_string_repeat1, - STATE(5108), 1, + STATE(4854), 1, aux_sym_template_literal_type_repeat1, - STATE(5469), 1, + STATE(5571), 1, sym_template_substitution, - STATE(6164), 1, + STATE(6024), 1, sym_template_type, - [158047] = 11, + [158280] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7921), 1, - sym_escape_sequence, - ACTIONS(7925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, - sym__template_chars, - ACTIONS(7975), 1, - anon_sym_BQUOTE, - STATE(4335), 1, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7987), 1, + anon_sym_enum, + STATE(4341), 1, sym_comment, - STATE(4788), 1, - aux_sym_template_string_repeat1, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(5469), 1, - sym_template_substitution, - STATE(6164), 1, - sym_template_type, - [158081] = 11, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5643), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [158312] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7921), 1, + ACTIONS(7911), 1, sym_escape_sequence, - ACTIONS(7925), 1, + ACTIONS(7915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7927), 1, + ACTIONS(7917), 1, sym__template_chars, - ACTIONS(7977), 1, + ACTIONS(7989), 1, anon_sym_BQUOTE, - STATE(4336), 1, + STATE(4342), 1, sym_comment, - STATE(4788), 1, + STATE(4785), 1, aux_sym_template_string_repeat1, - STATE(5020), 1, + STATE(4854), 1, aux_sym_template_literal_type_repeat1, - STATE(5469), 1, + STATE(5571), 1, sym_template_substitution, - STATE(6164), 1, + STATE(6024), 1, sym_template_type, - [158115] = 5, + [158346] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7979), 1, - anon_sym_EQ, - STATE(4337), 1, - sym_comment, - ACTIONS(7971), 7, + ACTIONS(7991), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [158137] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7981), 1, - anon_sym_EQ, - STATE(4338), 1, + ACTIONS(7993), 1, + anon_sym_LT, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(7997), 1, + anon_sym_LBRACE_PIPE, + STATE(1348), 1, + sym_object_type, + STATE(4343), 1, sym_comment, - ACTIONS(6224), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [158159] = 10, + STATE(4903), 1, + sym_type_parameters, + STATE(5669), 1, + sym_extends_type_clause, + [158377] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(7983), 1, - anon_sym_enum, - STATE(4339), 1, + ACTIONS(7999), 1, + sym_identifier, + STATE(4344), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5575), 1, + STATE(5524), 1, sym_variable_declarator, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [158191] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4340), 1, - sym_comment, - STATE(5365), 1, - sym_type_annotation, - STATE(6063), 1, - sym__initializer, - ACTIONS(7376), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158218] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [158406] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3182), 1, - sym_class_body, - STATE(4341), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6592), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [158249] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4342), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8001), 1, + sym_identifier, + STATE(3650), 1, + sym__type_query_member_expression, + STATE(3671), 1, + sym__type_query_subscript_expression, + STATE(3871), 1, + sym__type_query_call_expression, + STATE(3968), 1, + sym__type_query_instantiation_expression, + STATE(4345), 1, sym_comment, - STATE(4905), 1, - sym_type_annotation, - STATE(5978), 1, - sym__initializer, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158276] = 8, + STATE(5596), 1, + sym_import, + [158437] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4343), 1, + STATE(4346), 1, sym_comment, - STATE(4903), 1, + STATE(5157), 1, sym_type_annotation, - STATE(5977), 1, - sym__initializer, - ACTIONS(7394), 3, + ACTIONS(8003), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [158303] = 10, + anon_sym_PIPE_RBRACE, + [158460] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7625), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(4344), 1, + STATE(373), 1, + sym_class_body, + STATE(4347), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6542), 1, + STATE(6662), 1, sym_class_heritage, - STATE(6733), 1, - sym_class_body, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [158334] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4345), 1, - sym_comment, - STATE(4892), 1, - sym_type_annotation, - STATE(5945), 1, - sym__initializer, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158361] = 10, + [158491] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(7597), 1, anon_sym_LBRACE, - STATE(2451), 1, + STATE(1018), 1, sym_class_body, - STATE(4346), 1, + STATE(4348), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6475), 1, + STATE(6847), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [158392] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [158522] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4347), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6223), 1, - sym_class_body, - STATE(6436), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [158423] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2430), 1, - sym_class_body, - STATE(4348), 1, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + ACTIONS(8005), 1, + sym_identifier, + ACTIONS(8007), 1, + anon_sym_DOT, + STATE(929), 1, + sym_nested_identifier, + STATE(1085), 1, + sym_string, + STATE(1262), 1, + sym__module, + STATE(4349), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6430), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [158454] = 8, + [158553] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4349), 1, + STATE(4350), 1, sym_comment, - STATE(4877), 1, + STATE(5211), 1, sym_type_annotation, - STATE(5927), 1, + STATE(5645), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158481] = 8, + [158580] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4350), 1, + STATE(4351), 1, sym_comment, - STATE(4923), 1, + STATE(5219), 1, sym_type_annotation, - STATE(6001), 1, + STATE(6313), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158508] = 10, + [158607] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(1298), 1, + sym_class_body, + STATE(4352), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6030), 1, - sym_class_body, - STATE(6599), 1, + STATE(6930), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [158539] = 10, + [158638] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(2529), 1, + STATE(405), 1, sym_class_body, - STATE(4352), 1, + STATE(4353), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6642), 1, + STATE(6973), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [158570] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4353), 1, - sym_comment, - STATE(4908), 1, - sym_type_annotation, - STATE(5981), 1, - sym__initializer, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158597] = 8, + [158669] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7597), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_class_body, STATE(4354), 1, sym_comment, - STATE(4910), 1, - sym_type_annotation, - STATE(5982), 1, - sym__initializer, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158624] = 8, + STATE(5699), 1, + sym_extends_clause, + STATE(6953), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [158700] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4355), 1, sym_comment, - STATE(4853), 1, + STATE(5135), 1, sym_type_annotation, - STATE(5911), 1, + STATE(6284), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7431), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158651] = 8, + [158727] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4356), 1, sym_comment, - STATE(4851), 1, + STATE(5239), 1, sym_type_annotation, - STATE(5905), 1, + STATE(6271), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158678] = 8, + [158754] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4357), 1, sym_comment, - STATE(5120), 1, + STATE(5241), 1, sym_type_annotation, - STATE(6168), 1, + STATE(6264), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158705] = 8, + [158781] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4358), 1, sym_comment, - STATE(5125), 1, + STATE(5254), 1, sym_type_annotation, - STATE(5908), 1, + STATE(6237), 1, sym__initializer, - ACTIONS(7985), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158732] = 8, + [158808] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4359), 1, sym_comment, - STATE(5155), 1, + STATE(5261), 1, sym_type_annotation, - STATE(5909), 1, + STATE(6235), 1, sym__initializer, - ACTIONS(7985), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158759] = 8, + [158835] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_class_body, + STATE(4360), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6988), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [158866] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4360), 1, + STATE(4361), 1, sym_comment, - STATE(4925), 1, + STATE(5325), 1, sym_type_annotation, - STATE(6002), 1, + STATE(6154), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158786] = 8, + [158893] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4361), 1, + STATE(4362), 1, sym_comment, - STATE(4911), 1, + STATE(5115), 1, sym_type_annotation, - STATE(5896), 1, + STATE(6280), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158813] = 8, + [158920] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4362), 1, + STATE(4363), 1, sym_comment, - STATE(4936), 1, + STATE(5381), 1, sym_type_annotation, - STATE(5894), 1, + STATE(6037), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158840] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(4363), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6750), 1, - sym_class_heritage, - STATE(6954), 1, - sym_class_body, - STATE(7265), 1, - sym_implements_clause, - [158871] = 8, + [158947] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4364), 1, sym_comment, - STATE(4947), 1, + STATE(5336), 1, sym_type_annotation, - STATE(6048), 1, + STATE(5925), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158898] = 8, + [158974] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4365), 1, sym_comment, - STATE(4949), 1, + STATE(4847), 1, sym_type_annotation, - STATE(6049), 1, + STATE(5923), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158925] = 8, + [159001] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4366), 1, sym_comment, - STATE(4957), 1, + STATE(5326), 1, sym_type_annotation, - STATE(6066), 1, + STATE(5919), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158952] = 5, + [159028] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7987), 1, - sym__automatic_semicolon, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4367), 1, sym_comment, - ACTIONS(2115), 6, + STATE(5314), 1, + sym_type_annotation, + STATE(5915), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [158973] = 8, + [159055] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4368), 1, sym_comment, - STATE(4959), 1, + STATE(5269), 1, sym_type_annotation, - STATE(6067), 1, + STATE(5903), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159000] = 8, + [159082] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4369), 1, sym_comment, - STATE(4973), 1, + STATE(5253), 1, sym_type_annotation, - STATE(6078), 1, + STATE(5901), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159027] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [159109] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(7989), 1, - sym_identifier, - STATE(2476), 1, - sym__type_query_subscript_expression, - STATE(2487), 1, - sym__type_query_member_expression, - STATE(2865), 1, - sym__type_query_instantiation_expression, - STATE(2866), 1, - sym__type_query_call_expression, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4370), 1, sym_comment, - STATE(5463), 1, - sym_import, - [159058] = 8, + STATE(5197), 1, + sym_type_annotation, + STATE(5882), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159136] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4371), 1, sym_comment, - STATE(5010), 1, + STATE(5194), 1, sym_type_annotation, - STATE(5880), 1, + STATE(5878), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159085] = 10, + [159163] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3023), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4372), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6380), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159116] = 8, + STATE(5188), 1, + sym_type_annotation, + STATE(5875), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159190] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4373), 1, sym_comment, - STATE(4975), 1, + STATE(5085), 1, sym_type_annotation, - STATE(6083), 1, + STATE(6229), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159143] = 8, + [159217] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4374), 1, sym_comment, - STATE(4984), 1, + STATE(5079), 1, sym_type_annotation, - STATE(6091), 1, + STATE(6223), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159170] = 8, + [159244] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4375), 1, sym_comment, - STATE(4986), 1, + STATE(5180), 1, sym_type_annotation, - STATE(6092), 1, + STATE(5873), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159197] = 8, + [159271] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4376), 1, sym_comment, - STATE(4992), 1, + STATE(5130), 1, sym_type_annotation, - STATE(6095), 1, + STATE(5868), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159224] = 8, + [159298] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4377), 1, sym_comment, - STATE(5005), 1, + STATE(5064), 1, sym_type_annotation, - STATE(6107), 1, + STATE(6201), 1, sym__initializer, - ACTIONS(7394), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159251] = 8, + [159325] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4378), 1, sym_comment, - STATE(5042), 1, + STATE(5062), 1, sym_type_annotation, - STATE(5992), 1, + STATE(6199), 1, sym__initializer, - ACTIONS(7392), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159278] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [159352] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(7991), 1, - sym_identifier, - ACTIONS(7993), 1, - anon_sym_LPAREN, - STATE(2560), 1, - sym_arguments, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4379), 1, sym_comment, - STATE(6443), 1, - sym_type_arguments, - ACTIONS(7995), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [159307] = 10, + STATE(5059), 1, + sym_type_annotation, + STATE(6197), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159379] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7997), 1, - anon_sym_LT, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8001), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4380), 1, sym_comment, - STATE(5219), 1, - sym_type_parameters, - STATE(6242), 1, - sym_extends_type_clause, - STATE(6838), 1, - sym_object_type, - [159338] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5057), 1, + sym_type_annotation, + STATE(6196), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159406] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8003), 1, - sym_identifier, - ACTIONS(8005), 1, - anon_sym_DOT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4381), 1, sym_comment, - STATE(5073), 1, - sym_nested_identifier, - STATE(5616), 1, - sym_string, - STATE(6527), 1, - sym__module, - [159369] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5129), 1, + sym_type_annotation, + STATE(5867), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159433] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, - anon_sym_DQUOTE, - ACTIONS(4105), 1, - anon_sym_SQUOTE, - ACTIONS(8007), 1, - sym_identifier, - ACTIONS(8009), 1, - anon_sym_DOT, - STATE(930), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1331), 1, - sym__module, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4382), 1, sym_comment, - [159400] = 10, + STATE(5052), 1, + sym_type_annotation, + STATE(6191), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159460] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7997), 1, - anon_sym_LT, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8011), 1, - anon_sym_LBRACE, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(1298), 1, - sym_object_type, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4383), 1, sym_comment, - STATE(4891), 1, - sym_type_parameters, - STATE(5663), 1, - sym_extends_type_clause, - [159431] = 6, + STATE(5048), 1, + sym_type_annotation, + STATE(6133), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159487] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4384), 1, sym_comment, - STATE(5113), 1, + STATE(5033), 1, sym_type_annotation, - ACTIONS(8015), 5, + STATE(6178), 1, + sym__initializer, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159454] = 10, + [159514] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7855), 1, - anon_sym_LBRACE, - STATE(382), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4385), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6473), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159485] = 6, + STATE(5029), 1, + sym_type_annotation, + STATE(6173), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159541] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4386), 1, sym_comment, - STATE(5135), 1, + STATE(5008), 1, sym_type_annotation, - ACTIONS(8017), 5, + STATE(6155), 1, + sym__initializer, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159508] = 6, + [159568] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4387), 1, sym_comment, - STATE(5190), 1, + STATE(5006), 1, sym_type_annotation, - ACTIONS(8019), 5, + STATE(6153), 1, + sym__initializer, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159531] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [159595] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8021), 1, - sym_identifier, - STATE(3648), 1, - sym__type_query_subscript_expression, - STATE(3665), 1, - sym__type_query_member_expression, - STATE(3904), 1, - sym__type_query_call_expression, - STATE(4006), 1, - sym__type_query_instantiation_expression, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4388), 1, sym_comment, - STATE(5603), 1, - sym_import, - [159562] = 4, + STATE(5106), 1, + sym_type_annotation, + STATE(5853), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159622] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4389), 1, sym_comment, - ACTIONS(7889), 7, + STATE(4999), 1, + sym_type_annotation, + STATE(6148), 1, + sym__initializer, + ACTIONS(7388), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [159581] = 10, + [159649] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4390), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6538), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159612] = 8, + STATE(4997), 1, + sym_type_annotation, + STATE(6147), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159676] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4391), 1, sym_comment, - STATE(5149), 1, + STATE(5098), 1, sym_type_annotation, - STATE(6183), 1, + STATE(5837), 1, sym__initializer, - ACTIONS(7376), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159639] = 10, + [159703] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7845), 1, - anon_sym_LBRACE, - STATE(1209), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4392), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6587), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159670] = 8, + STATE(5086), 1, + sym_type_annotation, + STATE(5829), 1, + sym__initializer, + ACTIONS(7396), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159730] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4393), 1, sym_comment, - STATE(5220), 1, + STATE(4986), 1, sym_type_annotation, - STATE(6243), 1, + STATE(6162), 1, sym__initializer, - ACTIONS(7376), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159697] = 10, + [159757] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7855), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_class_body, + ACTIONS(1930), 1, + anon_sym_DQUOTE, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + ACTIONS(8009), 1, + sym_identifier, + ACTIONS(8011), 1, + anon_sym_DOT, + STATE(4316), 1, + sym_nested_identifier, STATE(4394), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6608), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159728] = 10, + STATE(4556), 1, + sym_string, + STATE(5251), 1, + sym__module, + [159788] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2403), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4395), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6524), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159759] = 10, + STATE(4983), 1, + sym_type_annotation, + STATE(6138), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159815] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4396), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6631), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159790] = 4, + STATE(4981), 1, + sym_type_annotation, + STATE(6137), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159842] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1352), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7993), 1, + anon_sym_LT, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, STATE(4397), 1, sym_comment, - ACTIONS(7793), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [159809] = 5, + STATE(5272), 1, + sym_object_type, + STATE(5394), 1, + sym_type_parameters, + STATE(5962), 1, + sym_extends_type_clause, + [159873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8023), 1, + ACTIONS(8015), 1, sym__automatic_semicolon, STATE(4398), 1, sym_comment, - ACTIONS(2115), 6, + ACTIONS(2111), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [159830] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7845), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_class_body, - STATE(4399), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6653), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [159861] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4400), 1, - sym_comment, - STATE(5305), 1, - sym_type_annotation, - STATE(6317), 1, - sym__initializer, - ACTIONS(7376), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159888] = 8, + anon_sym_PIPE_RBRACE, + [159894] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4401), 1, + STATE(4399), 1, sym_comment, - STATE(5302), 1, + STATE(5044), 1, sym_type_annotation, - STATE(6329), 1, + STATE(5779), 1, sym__initializer, - ACTIONS(7376), 3, + ACTIONS(7396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159915] = 8, + [159921] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4402), 1, + STATE(4400), 1, sym_comment, - STATE(5400), 1, + STATE(4988), 1, sym_type_annotation, - STATE(6327), 1, + STATE(6141), 1, sym__initializer, - ACTIONS(7376), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159942] = 7, + [159948] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(8027), 1, - anon_sym_RBRACE, - STATE(4403), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7725), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_class_body, + STATE(4401), 1, sym_comment, - STATE(5670), 1, - aux_sym_object_repeat1, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [159967] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + STATE(5699), 1, + sym_extends_clause, + STATE(6818), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [159979] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4404), 1, - sym_comment, - STATE(5297), 1, - sym_type_annotation, - STATE(6025), 1, - sym__initializer, - ACTIONS(7376), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159994] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4405), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8017), 1, + sym_identifier, + STATE(2206), 1, + sym__type_query_subscript_expression, + STATE(2207), 1, + sym__type_query_member_expression, + STATE(2365), 1, + sym__type_query_call_expression, + STATE(2387), 1, + sym__type_query_instantiation_expression, + STATE(4402), 1, sym_comment, - STATE(5089), 1, - sym_type_annotation, - STATE(5850), 1, - sym__initializer, - ACTIONS(7394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160021] = 8, + STATE(5415), 1, + sym_import, + [160010] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4406), 1, + STATE(4403), 1, sym_comment, - STATE(5231), 1, + STATE(5018), 1, sym_type_annotation, - STATE(5989), 1, + STATE(5751), 1, sym__initializer, - ACTIONS(7376), 3, + ACTIONS(7390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160048] = 8, + [160037] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4407), 1, + STATE(4404), 1, sym_comment, - STATE(5166), 1, + STATE(4974), 1, sym_type_annotation, - STATE(5939), 1, + STATE(6130), 1, sym__initializer, - ACTIONS(7412), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160075] = 4, + [160064] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4408), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4405), 1, sym_comment, - ACTIONS(7773), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [160094] = 10, + STATE(5299), 1, + sym_class_body, + STATE(5699), 1, + sym_extends_clause, + STATE(6773), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160095] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - anon_sym_SQUOTE, - ACTIONS(8029), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOT, - STATE(4330), 1, - sym_nested_identifier, - STATE(4409), 1, + STATE(4406), 1, sym_comment, - STATE(4500), 1, - sym_string, - STATE(5038), 1, - sym__module, - [160125] = 8, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5642), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [160124] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4410), 1, - sym_comment, - STATE(5225), 1, - sym_type_annotation, - STATE(5892), 1, - sym__initializer, - ACTIONS(7378), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160152] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1344), 1, + ACTIONS(7539), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7997), 1, - anon_sym_LT, - ACTIONS(7999), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(8033), 1, - anon_sym_LBRACE_PIPE, - STATE(4411), 1, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4407), 1, sym_comment, - STATE(5195), 1, - sym_type_parameters, - STATE(5285), 1, - sym_object_type, - STATE(5956), 1, - sym_extends_type_clause, - [160183] = 10, + STATE(5204), 1, + sym_class_body, + STATE(5699), 1, + sym_extends_clause, + STATE(6750), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160155] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7735), 1, + ACTIONS(7775), 1, anon_sym_LBRACE, - STATE(368), 1, - sym_class_body, - STATE(4412), 1, + STATE(4408), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6938), 1, + STATE(6407), 1, + sym_class_body, + STATE(6860), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160214] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8035), 1, - sym_identifier, - STATE(2207), 1, - sym__type_query_subscript_expression, - STATE(2209), 1, - sym__type_query_member_expression, - STATE(2250), 1, - sym__type_query_call_expression, - STATE(2252), 1, - sym__type_query_instantiation_expression, - STATE(4413), 1, - sym_comment, - STATE(5472), 1, - sym_import, - [160245] = 8, + [160186] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4414), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7725), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_class_body, + STATE(4409), 1, sym_comment, - STATE(5237), 1, - sym_type_annotation, - STATE(5805), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160272] = 10, + STATE(5699), 1, + sym_extends_clause, + STATE(6742), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160217] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4415), 1, + STATE(4410), 1, sym_comment, - STATE(5092), 1, + STATE(5100), 1, sym_class_body, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6895), 1, + STATE(6736), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160303] = 8, + [160248] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4416), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4411), 1, sym_comment, - STATE(5310), 1, - sym_type_annotation, - STATE(5784), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160330] = 8, + STATE(5031), 1, + sym_class_body, + STATE(5699), 1, + sym_extends_clause, + STATE(6713), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160279] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4417), 1, + STATE(4412), 1, sym_comment, - STATE(5316), 1, + STATE(4960), 1, sym_type_annotation, - STATE(5782), 1, + STATE(6117), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160357] = 10, + [160306] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(4418), 1, - sym_comment, - STATE(5262), 1, + STATE(2422), 1, sym_class_body, - STATE(5785), 1, + STATE(4413), 1, + sym_comment, + STATE(5699), 1, sym_extends_clause, - STATE(6870), 1, + STATE(6803), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160388] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4419), 1, - sym_comment, - ACTIONS(2237), 7, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - sym_identifier, - [160407] = 10, + [160337] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_class_body, - STATE(4420), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4414), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6868), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [160438] = 10, + STATE(4891), 1, + sym_type_annotation, + ACTIONS(8019), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160360] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(4421), 1, + STATE(4415), 1, sym_comment, - STATE(5337), 1, + STATE(5671), 1, sym_class_body, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6865), 1, + STATE(6791), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160469] = 10, + [160391] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(3143), 1, sym_class_body, - STATE(4422), 1, + STATE(4416), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6758), 1, + STATE(6772), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160500] = 8, + [160422] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4423), 1, + STATE(4417), 1, sym_comment, - STATE(5350), 1, + STATE(4953), 1, sym_type_annotation, - STATE(5764), 1, + STATE(6112), 1, sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160527] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4424), 1, - sym_comment, - ACTIONS(2223), 7, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160546] = 8, + [160449] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4425), 1, + STATE(4418), 1, sym_comment, - STATE(5355), 1, + STATE(4951), 1, sym_type_annotation, - STATE(5758), 1, + STATE(6110), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160573] = 4, + [160476] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4426), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4419), 1, sym_comment, - ACTIONS(2115), 7, + STATE(4995), 1, + sym_type_annotation, + ACTIONS(8021), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160592] = 8, + [160499] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4427), 1, + STATE(4420), 1, sym_comment, - STATE(5366), 1, + STATE(4922), 1, sym_type_annotation, - STATE(5749), 1, + STATE(5684), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160619] = 8, + [160526] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(4093), 1, + anon_sym_SQUOTE, + ACTIONS(8023), 1, + sym_identifier, + ACTIONS(8025), 1, + anon_sym_DOT, + STATE(921), 1, + sym_nested_identifier, + STATE(1139), 1, + sym_string, + STATE(1358), 1, + sym__module, + STATE(4421), 1, + sym_comment, + [160557] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4428), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7775), 1, + anon_sym_LBRACE, + STATE(4422), 1, sym_comment, - STATE(5373), 1, - sym_type_annotation, - STATE(5747), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160646] = 8, + STATE(5699), 1, + sym_extends_clause, + STATE(6551), 1, + sym_class_body, + STATE(6744), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160588] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4429), 1, + ACTIONS(7993), 1, + anon_sym_LT, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(8029), 1, + anon_sym_LBRACE_PIPE, + STATE(1241), 1, + sym_object_type, + STATE(4423), 1, sym_comment, - STATE(5312), 1, - sym_type_annotation, - STATE(6036), 1, - sym__initializer, - ACTIONS(7985), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160673] = 8, + STATE(5279), 1, + sym_type_parameters, + STATE(6215), 1, + sym_extends_type_clause, + [160619] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4430), 1, + STATE(4424), 1, sym_comment, - STATE(5328), 1, + STATE(5011), 1, sym_type_annotation, - STATE(6038), 1, + STATE(5745), 1, sym__initializer, - ACTIONS(7985), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160700] = 5, + [160646] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8037), 1, - sym__automatic_semicolon, - STATE(4431), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4425), 1, sym_comment, - ACTIONS(2095), 6, + STATE(4942), 1, + sym_type_annotation, + STATE(6100), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160721] = 8, + [160673] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4432), 1, + STATE(4426), 1, sym_comment, - STATE(5393), 1, + STATE(4940), 1, sym_type_annotation, - STATE(5742), 1, + STATE(6098), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160748] = 8, + [160700] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4433), 1, + STATE(4427), 1, sym_comment, - STATE(5407), 1, + STATE(4929), 1, sym_type_annotation, - STATE(5741), 1, + STATE(6094), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160775] = 10, + [160727] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7617), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(4434), 1, - sym_comment, - STATE(5278), 1, + STATE(3021), 1, sym_class_body, - STATE(5785), 1, + STATE(4428), 1, + sym_comment, + STATE(5699), 1, sym_extends_clause, - STATE(6827), 1, + STATE(6501), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [160806] = 8, + [160758] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4435), 1, + STATE(4429), 1, sym_comment, - STATE(5367), 1, + STATE(4927), 1, sym_type_annotation, - STATE(5729), 1, + STATE(6093), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160833] = 8, + [160785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4430), 1, sym_comment, - STATE(5356), 1, + STATE(5077), 1, sym_type_annotation, - STATE(5728), 1, + STATE(5824), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160860] = 4, + [160812] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4437), 1, - sym_comment, - ACTIONS(2233), 7, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8031), 1, sym_identifier, - [160879] = 4, + STATE(3689), 1, + sym__type_query_subscript_expression, + STATE(3690), 1, + sym__type_query_member_expression, + STATE(4005), 1, + sym__type_query_call_expression, + STATE(4074), 1, + sym__type_query_instantiation_expression, + STATE(4431), 1, + sym_comment, + STATE(5464), 1, + sym_import, + [160843] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4438), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4432), 1, sym_comment, - ACTIONS(7643), 7, + STATE(5081), 1, + sym_type_annotation, + STATE(5826), 1, + sym__initializer, + ACTIONS(7374), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [160898] = 8, + [160870] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_class_body, + STATE(4433), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6624), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [160901] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4439), 1, + STATE(4434), 1, sym_comment, - STATE(5211), 1, + STATE(5102), 1, sym_type_annotation, - STATE(5709), 1, + STATE(5843), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160925] = 8, + [160928] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4440), 1, + STATE(4435), 1, sym_comment, - STATE(5168), 1, + STATE(4920), 1, sym_type_annotation, - STATE(5707), 1, + STATE(6082), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160952] = 4, + [160955] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4441), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4436), 1, sym_comment, - ACTIONS(7641), 7, + STATE(4918), 1, + sym_type_annotation, + STATE(6140), 1, + sym__initializer, + ACTIONS(7388), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [160971] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [160982] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4111), 1, - anon_sym_DQUOTE, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - ACTIONS(8039), 1, - sym_identifier, - ACTIONS(8041), 1, - anon_sym_DOT, - STATE(947), 1, - sym_nested_identifier, - STATE(1041), 1, - sym_string, - STATE(1375), 1, - sym__module, - STATE(4442), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + STATE(4437), 1, sym_comment, - [161002] = 8, + STATE(5699), 1, + sym_extends_clause, + STATE(5707), 1, + sym_class_body, + STATE(6614), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161013] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4443), 1, + STATE(4438), 1, sym_comment, - STATE(5059), 1, + STATE(5103), 1, sym_type_annotation, - STATE(5690), 1, + STATE(5850), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161029] = 8, + [161040] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2397), 1, + sym_class_body, + STATE(4439), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6613), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161071] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4444), 1, + STATE(4440), 1, sym_comment, - STATE(5153), 1, + STATE(5199), 1, sym_type_annotation, - STATE(5688), 1, + STATE(5884), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161056] = 10, + [161098] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7997), 1, - anon_sym_LT, - ACTIONS(7999), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(8043), 1, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7623), 1, anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_LBRACE_PIPE, - STATE(1334), 1, - sym_object_type, - STATE(4445), 1, + STATE(999), 1, + sym_class_body, + STATE(4441), 1, sym_comment, - STATE(5369), 1, - sym_type_parameters, - STATE(6209), 1, - sym_extends_type_clause, - [161087] = 8, + STATE(5699), 1, + sym_extends_clause, + STATE(6462), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161129] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4446), 1, + STATE(4442), 1, sym_comment, - STATE(5129), 1, + STATE(5281), 1, sym_type_annotation, - STATE(5682), 1, + STATE(5909), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161114] = 8, + [161156] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4447), 1, + STATE(4443), 1, sym_comment, - STATE(5110), 1, + STATE(4909), 1, sym_type_annotation, - STATE(5681), 1, + STATE(6075), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161141] = 10, + [161183] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2991), 1, - sym_class_body, - STATE(4448), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4444), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6497), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [161172] = 8, + STATE(4907), 1, + sym_type_annotation, + STATE(6074), 1, + sym__initializer, + ACTIONS(7388), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161210] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4449), 1, + STATE(4445), 1, sym_comment, - STATE(5091), 1, + STATE(4904), 1, sym_type_annotation, - STATE(5673), 1, + STATE(6071), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161199] = 8, + [161237] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4450), 1, + STATE(4446), 1, sym_comment, - STATE(5048), 1, + STATE(4902), 1, sym_type_annotation, - STATE(5662), 1, + STATE(6069), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161226] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [161264] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8047), 1, - sym_identifier, - STATE(3686), 1, - sym__type_query_subscript_expression, - STATE(3687), 1, - sym__type_query_member_expression, - STATE(3981), 1, - sym__type_query_call_expression, - STATE(4249), 1, - sym__type_query_instantiation_expression, - STATE(4451), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1289), 1, + sym_class_body, + STATE(4447), 1, sym_comment, - STATE(5445), 1, - sym_import, - [161257] = 10, + STATE(5699), 1, + sym_extends_clause, + STATE(6424), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161295] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7645), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(1156), 1, + STATE(3050), 1, sym_class_body, - STATE(4452), 1, + STATE(4448), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6434), 1, + STATE(6423), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161288] = 8, + [161326] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4453), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7623), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_class_body, + STATE(4449), 1, sym_comment, - STATE(4901), 1, - sym_type_annotation, - STATE(5649), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161315] = 4, + STATE(5699), 1, + sym_extends_clause, + STATE(6410), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4454), 1, + STATE(4450), 1, sym_comment, - ACTIONS(7559), 7, + ACTIONS(7733), 7, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - [161334] = 6, + anon_sym_DOT, + [161376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4455), 1, + STATE(4451), 1, sym_comment, - STATE(6799), 1, - sym_statement_block, - ACTIONS(8051), 5, + ACTIONS(7719), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161357] = 10, + anon_sym_DOT, + [161395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_class_body, - STATE(4456), 1, + STATE(4452), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6401), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [161388] = 6, + ACTIONS(7689), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [161414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4457), 1, + STATE(4453), 1, sym_comment, - STATE(4870), 1, - sym_type_annotation, - ACTIONS(8053), 5, + ACTIONS(7679), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161411] = 10, + anon_sym_DOT, + [161433] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2999), 1, - sym_class_body, - STATE(4458), 1, + STATE(4454), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6387), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [161442] = 10, + ACTIONS(4333), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [161452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_class_body, - STATE(4459), 1, + STATE(4455), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6369), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [161473] = 8, + ACTIONS(4337), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [161471] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4460), 1, + STATE(4456), 1, sym_comment, - STATE(5054), 1, + STATE(4897), 1, sym_type_annotation, - STATE(5772), 1, + STATE(6064), 1, sym__initializer, - ACTIONS(7414), 3, + ACTIONS(7388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161500] = 10, + [161498] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7639), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(1305), 1, + STATE(1251), 1, sym_class_body, - STATE(4461), 1, + STATE(4457), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6345), 1, + STATE(6353), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161531] = 8, + [161529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4462), 1, + STATE(4458), 1, sym_comment, - STATE(5103), 1, - sym_type_annotation, - STATE(5860), 1, - sym__initializer, - ACTIONS(7416), 3, + ACTIONS(8033), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [161558] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [161548] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4463), 1, + STATE(4459), 1, sym_comment, - STATE(5164), 1, + STATE(5409), 1, sym_type_annotation, - STATE(5644), 1, + STATE(5973), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161585] = 10, + [161575] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4097), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8035), 1, + sym_identifier, + STATE(2516), 1, + sym__type_query_subscript_expression, + STATE(2518), 1, + sym__type_query_member_expression, + STATE(2905), 1, + sym__type_query_instantiation_expression, + STATE(2906), 1, + sym__type_query_call_expression, + STATE(4460), 1, + sym_comment, + STATE(5458), 1, + sym_import, + [161606] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3025), 1, + sym_class_body, + STATE(4461), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6716), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [161637] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4117), 1, anon_sym_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(4119), 1, anon_sym_SQUOTE, - ACTIONS(8055), 1, + ACTIONS(8037), 1, sym_identifier, - ACTIONS(8057), 1, + ACTIONS(8039), 1, anon_sym_DOT, - STATE(891), 1, + STATE(901), 1, sym_nested_identifier, - STATE(912), 1, + STATE(919), 1, sym_string, - STATE(1083), 1, + STATE(1047), 1, sym__module, - STATE(4464), 1, - sym_comment, - [161616] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4465), 1, + STATE(4462), 1, sym_comment, - STATE(5021), 1, - sym_type_annotation, - STATE(5713), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161643] = 10, + [161668] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7997), 1, + ACTIONS(7993), 1, anon_sym_LT, - ACTIONS(7999), 1, + ACTIONS(7995), 1, anon_sym_extends, - ACTIONS(8059), 1, + ACTIONS(8041), 1, anon_sym_LBRACE, - ACTIONS(8061), 1, + ACTIONS(8043), 1, anon_sym_LBRACE_PIPE, - STATE(1029), 1, + STATE(1013), 1, sym_object_type, - STATE(4466), 1, + STATE(4463), 1, sym_comment, - STATE(5271), 1, + STATE(5168), 1, sym_type_parameters, - STATE(6301), 1, + STATE(6322), 1, sym_extends_type_clause, - [161674] = 10, + [161699] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7611), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(332), 1, + STATE(321), 1, sym_class_body, - STATE(4467), 1, + STATE(4464), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6419), 1, + STATE(6425), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161705] = 10, + [161730] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(3277), 1, + STATE(939), 1, sym_class_body, - STATE(4468), 1, + STATE(4465), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6852), 1, + STATE(6448), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161736] = 10, + [161761] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7609), 1, + ACTIONS(7843), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(1063), 1, sym_class_body, - STATE(4469), 1, + STATE(4466), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6442), 1, + STATE(6458), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161767] = 10, + [161792] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7607), 1, + ACTIONS(7573), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(1486), 1, sym_class_body, - STATE(4470), 1, + STATE(4467), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6452), 1, + STATE(6761), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161798] = 10, + [161823] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(8045), 1, + sym_identifier, + ACTIONS(8047), 1, + anon_sym_LPAREN, + STATE(2403), 1, + sym_arguments, + STATE(4468), 1, + sym_comment, + STATE(6492), 1, + sym_type_arguments, + ACTIONS(8049), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [161852] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7611), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(320), 1, + STATE(306), 1, sym_class_body, - STATE(4471), 1, + STATE(4469), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6460), 1, + STATE(6466), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161829] = 10, + [161883] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + STATE(4470), 1, + sym_comment, + ACTIONS(8051), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [161902] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7609), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(918), 1, sym_class_body, - STATE(4472), 1, + STATE(4471), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6464), 1, + STATE(6470), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161860] = 8, + [161933] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(210), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7993), 1, + anon_sym_LT, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8053), 1, + anon_sym_LBRACE_PIPE, + STATE(4472), 1, + sym_comment, + STATE(5224), 1, + sym_type_parameters, + STATE(6311), 1, + sym_extends_type_clause, + STATE(6814), 1, + sym_object_type, + [161964] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + ACTIONS(8057), 1, + anon_sym_DOT, STATE(4473), 1, sym_comment, - STATE(5223), 1, - sym_type_annotation, - STATE(5712), 1, - sym__initializer, - ACTIONS(7386), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161887] = 8, + STATE(4947), 1, + sym_nested_identifier, + STATE(5633), 1, + sym_string, + STATE(6895), 1, + sym__module, + [161995] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, STATE(4474), 1, sym_comment, - STATE(5332), 1, + STATE(4846), 1, sym_type_annotation, - STATE(5795), 1, + STATE(6051), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(8059), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161914] = 10, + [162022] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7607), 1, + ACTIONS(7843), 1, anon_sym_LBRACE, - STATE(1114), 1, + STATE(1112), 1, sym_class_body, STATE(4475), 1, sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6470), 1, + STATE(6476), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [161945] = 10, + [162053] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7547), 1, + ACTIONS(7543), 1, anon_sym_implements, - ACTIONS(7605), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(1451), 1, + STATE(2524), 1, sym_class_body, STATE(4476), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6770), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [161976] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3057), 1, - sym_class_body, - STATE(4477), 1, - sym_comment, - STATE(5785), 1, + STATE(5699), 1, sym_extends_clause, - STATE(6976), 1, + STATE(6359), 1, sym_class_heritage, - STATE(7265), 1, + STATE(7283), 1, sym_implements_clause, - [162007] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4478), 1, - sym_comment, - ACTIONS(6523), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [162026] = 8, + [162084] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4479), 1, + STATE(4477), 1, sym_comment, - STATE(5362), 1, + STATE(4868), 1, sym_type_annotation, - STATE(5736), 1, + STATE(6041), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162053] = 8, + [162111] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4480), 1, + STATE(4478), 1, sym_comment, - STATE(5361), 1, + STATE(4866), 1, sym_type_annotation, - STATE(5751), 1, + STATE(5951), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162080] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7543), 1, - anon_sym_LBRACE, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - STATE(1374), 1, - sym_class_body, - STATE(4481), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6915), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162111] = 10, + [162138] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_class_body, - STATE(4482), 1, - sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6869), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162142] = 8, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4479), 1, + sym_comment, + STATE(5329), 1, + sym_type_annotation, + ACTIONS(8061), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162161] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4483), 1, + STATE(4480), 1, sym_comment, - STATE(5287), 1, + STATE(4858), 1, sym_type_annotation, - STATE(5766), 1, + STATE(6031), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162169] = 10, + [162188] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8063), 1, - anon_sym_LBRACE, - ACTIONS(8065), 1, - anon_sym_COMMA, - ACTIONS(8067), 1, - anon_sym_DOT, - ACTIONS(8069), 1, - anon_sym_LT, - ACTIONS(8071), 1, - anon_sym_LBRACE_PIPE, - STATE(4484), 1, - sym_comment, - STATE(5422), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6167), 1, - sym_type_arguments, - [162200] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4485), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4481), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5459), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [162229] = 6, + STATE(4857), 1, + sym_type_annotation, + STATE(6029), 1, + sym__initializer, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162215] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4486), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4482), 1, sym_comment, - STATE(6514), 1, - sym_statement_block, - ACTIONS(8075), 5, + STATE(5309), 1, + sym_type_annotation, + STATE(6183), 1, + sym__initializer, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162252] = 6, + [162242] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_comment, - STATE(6903), 1, - sym_statement_block, - ACTIONS(8075), 5, + ACTIONS(6069), 1, sym__automatic_semicolon, + STATE(4483), 1, + sym_comment, + ACTIONS(2113), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162275] = 6, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [162263] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4488), 1, + STATE(4484), 1, sym_comment, - STATE(6503), 1, - sym_statement_block, - ACTIONS(8077), 5, + 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, - [162298] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4489), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5576), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [162327] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4490), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5575), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [162356] = 8, + [162282] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4491), 1, + STATE(4485), 1, sym_comment, - STATE(5282), 1, + STATE(4849), 1, sym_type_annotation, - STATE(5791), 1, + STATE(6015), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162383] = 10, + [162309] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8079), 1, + ACTIONS(8065), 1, sym_identifier, - ACTIONS(8081), 1, + ACTIONS(8067), 1, anon_sym_STAR, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - STATE(4492), 1, + STATE(4486), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6657), 1, + STATE(6984), 1, sym__call_signature, - [162414] = 8, + [162340] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4493), 1, + STATE(4487), 1, sym_comment, - STATE(5180), 1, + STATE(5333), 1, sym_type_annotation, - STATE(5814), 1, + STATE(6014), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162441] = 8, + [162367] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4494), 1, + STATE(4488), 1, sym_comment, - STATE(5174), 1, + STATE(4885), 1, sym_type_annotation, - STATE(6005), 1, + STATE(6012), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162468] = 8, + [162394] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4495), 1, + STATE(4489), 1, sym_comment, - STATE(5126), 1, + STATE(4890), 1, sym_type_annotation, - STATE(5825), 1, + STATE(6011), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162495] = 8, + [162421] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4496), 1, + STATE(4490), 1, sym_comment, - STATE(5118), 1, - sym_type_annotation, - STATE(5834), 1, - sym__initializer, - ACTIONS(7386), 3, + ACTIONS(8071), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162522] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [162440] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4497), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4491), 1, sym_comment, - STATE(5040), 1, - sym_type_annotation, - STATE(5872), 1, - sym__initializer, - ACTIONS(7386), 3, + STATE(6975), 1, + sym_statement_block, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162549] = 8, + anon_sym_PIPE_RBRACE, + [162463] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4498), 1, + STATE(4492), 1, sym_comment, - STATE(5319), 1, + STATE(4908), 1, sym_type_annotation, - STATE(6330), 1, + STATE(6007), 1, sym__initializer, - ACTIONS(7428), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162576] = 10, + [162490] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7553), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3280), 1, - sym_class_body, - STATE(4499), 1, + STATE(4493), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6391), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162607] = 6, + STATE(6753), 1, + sym_statement_block, + ACTIONS(8077), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162513] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(4500), 1, + STATE(4494), 1, sym_comment, - STATE(4996), 1, + STATE(6751), 1, sym_statement_block, - ACTIONS(2061), 5, + ACTIONS(8079), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162630] = 10, + [162536] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8085), 1, + ACTIONS(8081), 1, sym_identifier, - ACTIONS(8087), 1, + ACTIONS(8083), 1, anon_sym_STAR, - STATE(4501), 1, + STATE(4495), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6523), 1, + STATE(6618), 1, sym__call_signature, - [162661] = 4, + [162567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4502), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4496), 1, sym_comment, - ACTIONS(5809), 7, + STATE(6362), 1, + sym_statement_block, + ACTIONS(8085), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162590] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, anon_sym_COLON, - [162680] = 10, + STATE(4497), 1, + sym_comment, + STATE(4933), 1, + sym_type_annotation, + STATE(6005), 1, + sym__initializer, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162617] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3043), 1, - sym_class_body, - STATE(4503), 1, + STATE(4498), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6502), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162711] = 10, + STATE(6434), 1, + sym_statement_block, + ACTIONS(8087), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162640] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8089), 1, - anon_sym_COLON, - ACTIONS(8091), 1, - anon_sym_QMARK, - STATE(4504), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4499), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6975), 1, - sym__call_signature, - [162742] = 10, + STATE(6559), 1, + sym_statement_block, + ACTIONS(8085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162663] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - STATE(1168), 1, - sym_class_body, - STATE(4505), 1, + STATE(4500), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6528), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162773] = 10, + STATE(6364), 1, + sym_statement_block, + ACTIONS(8089), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162686] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3035), 1, - sym_class_body, - STATE(4506), 1, + STATE(4501), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6546), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [162804] = 6, + STATE(6406), 1, + sym_statement_block, + ACTIONS(8091), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8093), 1, - anon_sym_EQ, - ACTIONS(8095), 1, - anon_sym_DOT, - STATE(4507), 1, - sym_comment, - ACTIONS(7947), 5, + ACTIONS(8073), 1, anon_sym_LBRACE, + STATE(4502), 1, + sym_comment, + STATE(6369), 1, + sym_statement_block, + ACTIONS(8093), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [162827] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162732] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4508), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4503), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5571), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [162856] = 6, + STATE(5222), 1, + sym_type_annotation, + STATE(6312), 1, + sym__initializer, + ACTIONS(7414), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162759] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(4509), 1, + STATE(4504), 1, sym_comment, - STATE(6929), 1, + STATE(6661), 1, sym_statement_block, - ACTIONS(8097), 5, + ACTIONS(8089), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162879] = 4, + [162782] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4510), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4505), 1, sym_comment, - ACTIONS(2127), 7, + STATE(6592), 1, + sym_statement_block, + ACTIONS(8093), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162898] = 8, + [162805] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4511), 1, + STATE(4506), 1, sym_comment, - STATE(5100), 1, + STATE(4954), 1, sym_type_annotation, - STATE(5674), 1, + STATE(5997), 1, sym__initializer, - ACTIONS(7386), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162925] = 4, + [162832] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4512), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4507), 1, sym_comment, - ACTIONS(2235), 7, + STATE(4966), 1, + sym_type_annotation, + STATE(5983), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [162944] = 4, + [162859] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4513), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(3306), 1, + sym_class_body, + STATE(4508), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6372), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [162890] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4509), 1, sym_comment, - ACTIONS(2239), 7, + ACTIONS(2107), 7, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [162963] = 6, + [162909] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + sym_identifier, + ACTIONS(8097), 1, + anon_sym_STAR, + STATE(4510), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6984), 1, + sym__call_signature, + [162940] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + sym_identifier, + ACTIONS(8101), 1, + anon_sym_STAR, + STATE(4511), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6618), 1, + sym__call_signature, + [162971] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(8105), 1, + anon_sym_RBRACE, + STATE(4512), 1, + sym_comment, + STATE(5660), 1, + aux_sym_object_repeat1, + ACTIONS(4520), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [162996] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(4514), 1, + STATE(4513), 1, sym_comment, - STATE(6966), 1, + STATE(6485), 1, sym_statement_block, - ACTIONS(8099), 5, + ACTIONS(8107), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162986] = 6, + [163019] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8109), 1, + sym_identifier, + ACTIONS(8111), 1, + anon_sym_STAR, + STATE(4514), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6618), 1, + sym__call_signature, + [163050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, STATE(4515), 1, sym_comment, - STATE(6920), 1, - sym_statement_block, - ACTIONS(8099), 5, + ACTIONS(2111), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163009] = 6, + [163069] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, STATE(4516), 1, sym_comment, - STATE(6906), 1, + STATE(6371), 1, sym_statement_block, - ACTIONS(8097), 5, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163032] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163092] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(8103), 1, - anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, STATE(4517), 1, sym_comment, - ACTIONS(8101), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [163055] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6783), 1, + sym_statement_block, + ACTIONS(8107), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163115] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(8073), 1, - sym_identifier, + anon_sym_LBRACE, STATE(4518), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5572), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163084] = 8, + STATE(6764), 1, + sym_statement_block, + ACTIONS(8113), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163138] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8105), 1, - anon_sym_EQ, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2927), 1, + sym_class_body, STATE(4519), 1, sym_comment, - STATE(5553), 1, - sym_constraint, - STATE(6636), 1, - sym_default_type, - ACTIONS(8107), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(8109), 2, - anon_sym_COLON, - anon_sym_extends, - [163111] = 10, + STATE(5699), 1, + sym_extends_clause, + STATE(6388), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [163169] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8111), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, sym_identifier, - STATE(3599), 1, - sym__type_query_member_expression, - STATE(3600), 1, - sym__type_query_subscript_expression, - STATE(3656), 1, - sym__type_query_call_expression, - STATE(3722), 1, - sym__type_query_instantiation_expression, STATE(4520), 1, sym_comment, - STATE(5558), 1, - sym_import, - [163142] = 10, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5539), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [163198] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_class_body, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4521), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6688), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [163173] = 8, + STATE(5195), 1, + sym_type_annotation, + STATE(5952), 1, + sym__initializer, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8105), 1, - anon_sym_EQ, + ACTIONS(8115), 1, + sym__automatic_semicolon, STATE(4522), 1, sym_comment, - STATE(5617), 1, - sym_constraint, - STATE(6886), 1, - sym_default_type, - ACTIONS(8109), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(8113), 2, + ACTIONS(2113), 6, anon_sym_COMMA, - anon_sym_GT, - [163200] = 9, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163246] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8115), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8117), 1, sym_identifier, - STATE(4072), 1, - sym__destructuring_pattern, + ACTIONS(8119), 1, + anon_sym_STAR, STATE(4523), 1, sym_comment, - STATE(5540), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163229] = 9, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6984), 1, + sym__call_signature, + [163277] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(8117), 1, + ACTIONS(7999), 1, sym_identifier, - STATE(4071), 1, - sym__destructuring_pattern, STATE(4524), 1, sym_comment, - STATE(5541), 1, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(5538), 1, sym_variable_declarator, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [163258] = 9, + [163306] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8121), 1, sym_identifier, + ACTIONS(8123), 1, + anon_sym_STAR, STATE(4525), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(6135), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163287] = 4, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6618), 1, + sym__call_signature, + [163337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4526), 1, sym_comment, - ACTIONS(5904), 7, - sym__automatic_semicolon, + ACTIONS(6452), 7, anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, - [163306] = 4, + anon_sym_LT, + anon_sym_QMARK, + [163356] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7653), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_class_body, STATE(4527), 1, sym_comment, - ACTIONS(5807), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [163325] = 9, + STATE(5699), 1, + sym_extends_clause, + STATE(6414), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [163387] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8125), 1, sym_identifier, + ACTIONS(8127), 1, + anon_sym_STAR, STATE(4528), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5415), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163354] = 6, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6482), 1, + sym__call_signature, + [163418] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4529), 1, sym_comment, - STATE(6763), 1, - sym_statement_block, - ACTIONS(8119), 5, + STATE(5037), 1, + sym_type_annotation, + STATE(5937), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163377] = 6, + [163445] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4530), 1, sym_comment, - STATE(6768), 1, - sym_statement_block, - ACTIONS(8121), 5, + STATE(5040), 1, + sym_type_annotation, + STATE(5936), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163400] = 4, + [163472] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_class_body, STATE(4531), 1, sym_comment, - ACTIONS(2147), 7, + STATE(5699), 1, + sym_extends_clause, + STATE(6443), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [163503] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4532), 1, + sym_comment, + STATE(5058), 1, + sym_type_annotation, + STATE(5928), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163419] = 6, + [163530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4532), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4533), 1, sym_comment, - STATE(6716), 1, - sym_statement_block, - ACTIONS(8119), 5, + STATE(5061), 1, + sym_type_annotation, + STATE(5926), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163442] = 9, + [163557] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8129), 1, sym_identifier, - STATE(4533), 1, + ACTIONS(8131), 1, + anon_sym_STAR, + STATE(4534), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5416), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163471] = 6, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6984), 1, + sym__call_signature, + [163588] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4535), 1, + sym_comment, + STATE(5066), 1, + sym_type_annotation, + STATE(5917), 1, + sym__initializer, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(4534), 1, + STATE(4536), 1, sym_comment, - STATE(6697), 1, + STATE(6392), 1, sym_statement_block, - ACTIONS(8121), 5, + ACTIONS(8133), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163494] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163638] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7445), 1, - sym_identifier, - ACTIONS(7519), 1, - anon_sym_type, - STATE(4535), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4537), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6778), 1, - sym__import_identifier, - STATE(7126), 1, - sym__module_export_name, - [163525] = 10, + STATE(6394), 1, + sym_statement_block, + ACTIONS(8091), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163661] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8123), 1, + ACTIONS(8135), 1, sym_identifier, - ACTIONS(8125), 1, + ACTIONS(8137), 1, anon_sym_STAR, - STATE(4536), 1, + STATE(4538), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6925), 1, + STATE(6618), 1, sym__call_signature, - [163556] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163692] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4537), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5458), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163585] = 9, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, ACTIONS(8073), 1, - sym_identifier, - STATE(4538), 1, + anon_sym_LBRACE, + STATE(4539), 1, sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5442), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163614] = 6, + STATE(6413), 1, + sym_statement_block, + ACTIONS(8133), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163715] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7219), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4539), 1, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4540), 1, sym_comment, - ACTIONS(8127), 2, + STATE(5073), 1, + sym_type_annotation, + STATE(5913), 1, + sym__initializer, + ACTIONS(7424), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [163637] = 9, + anon_sym_SEMI, + [163742] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(8073), 1, + ACTIONS(7999), 1, sym_identifier, - STATE(4540), 1, + STATE(4541), 1, sym_comment, - STATE(4574), 1, + STATE(4555), 1, sym__destructuring_pattern, - STATE(5478), 1, + STATE(5643), 1, sym_variable_declarator, - STATE(4389), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [163666] = 8, + [163771] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4541), 1, + STATE(4542), 1, sym_comment, - STATE(5333), 1, + STATE(5091), 1, sym_type_annotation, - STATE(6298), 1, + STATE(5900), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163693] = 8, + [163798] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4542), 1, + STATE(4543), 1, sym_comment, - STATE(5325), 1, + STATE(5108), 1, sym_type_annotation, - STATE(6320), 1, + STATE(5897), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163720] = 6, + [163825] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8139), 1, anon_sym_LBRACE, - STATE(4543), 1, - sym_comment, - STATE(6714), 1, - sym_statement_block, - ACTIONS(8130), 5, - sym__automatic_semicolon, + ACTIONS(8141), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163743] = 6, + ACTIONS(8143), 1, + anon_sym_DOT, + ACTIONS(8145), 1, + anon_sym_LT, + ACTIONS(8147), 1, + anon_sym_LBRACE_PIPE, + STATE(4544), 1, + sym_comment, + STATE(5514), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5647), 1, + sym_type_arguments, + [163856] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4544), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4545), 1, sym_comment, - STATE(6724), 1, - sym_statement_block, - ACTIONS(8132), 5, + STATE(5121), 1, + sym_type_annotation, + STATE(5886), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163766] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4545), 1, - sym_comment, - STATE(4574), 1, - sym__destructuring_pattern, - STATE(5481), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [163795] = 6, + [163883] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4546), 1, sym_comment, - STATE(6681), 1, - sym_statement_block, - ACTIONS(8130), 5, + STATE(5124), 1, + sym_type_annotation, + STATE(5885), 1, + sym__initializer, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163818] = 8, + [163910] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8149), 1, anon_sym_COLON, + ACTIONS(8151), 1, + anon_sym_QMARK, STATE(4547), 1, sym_comment, - STATE(4881), 1, - sym_type_annotation, - STATE(5973), 1, - sym__initializer, - ACTIONS(8134), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163845] = 6, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6798), 1, + sym__call_signature, + [163941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, STATE(4548), 1, sym_comment, - STATE(6680), 1, - sym_statement_block, - ACTIONS(8132), 5, - sym__automatic_semicolon, + ACTIONS(6344), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163868] = 10, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [163960] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7573), 1, + anon_sym_LBRACE, + STATE(1465), 1, + sym_class_body, + STATE(4549), 1, + sym_comment, + STATE(5699), 1, + sym_extends_clause, + STATE(6478), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [163991] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8136), 1, + ACTIONS(8153), 1, sym_identifier, - ACTIONS(8138), 1, + ACTIONS(8155), 1, anon_sym_STAR, - STATE(4549), 1, + STATE(4550), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6643), 1, + STATE(6618), 1, + sym__call_signature, + [164022] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + sym_identifier, + ACTIONS(8159), 1, + anon_sym_STAR, + STATE(4551), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6358), 1, sym__call_signature, - [163899] = 6, + STATE(6459), 1, + sym_type_parameters, + [164053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4550), 1, + STATE(4552), 1, sym_comment, - STATE(6675), 1, - sym_statement_block, - ACTIONS(8140), 5, + ACTIONS(8161), 7, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_LT, + anon_sym_AT, + anon_sym_abstract, + [164072] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(4553), 1, + sym_comment, + STATE(5166), 1, + sym_type_annotation, + STATE(5838), 1, + sym__initializer, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163922] = 8, + [164099] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4551), 1, + STATE(4554), 1, sym_comment, - STATE(4920), 1, + STATE(5176), 1, sym_type_annotation, - STATE(5995), 1, + STATE(5833), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(8163), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163949] = 8, + [164126] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4552), 1, + STATE(4555), 1, sym_comment, - STATE(4929), 1, + STATE(5361), 1, sym_type_annotation, - STATE(5997), 1, + STATE(5762), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7469), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163976] = 6, + [164153] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(7945), 1, anon_sym_LBRACE, - STATE(4553), 1, + STATE(4556), 1, sym_comment, - STATE(6677), 1, + STATE(4893), 1, sym_statement_block, - ACTIONS(8142), 5, + ACTIONS(2071), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163999] = 5, + [164176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8144), 1, + ACTIONS(8165), 1, anon_sym_EQ, - STATE(4554), 1, + STATE(4557), 1, sym_comment, - ACTIONS(4287), 6, + ACTIONS(4257), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [164020] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4555), 1, - sym_comment, - STATE(5284), 1, - sym_type_annotation, - STATE(6303), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164047] = 8, + [164197] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7173), 1, anon_sym_COLON, - STATE(4556), 1, + STATE(4558), 1, sym_comment, - STATE(5273), 1, + STATE(5022), 1, sym_type_annotation, - STATE(6296), 1, + STATE(6169), 1, sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164074] = 6, + [164224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4557), 1, + STATE(4559), 1, sym_comment, - STATE(6861), 1, - sym_statement_block, - ACTIONS(8147), 5, - sym__automatic_semicolon, + ACTIONS(4257), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164097] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164243] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(4558), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(8172), 1, + anon_sym_QMARK, + STATE(4560), 1, sym_comment, - STATE(6701), 1, - sym_statement_block, - ACTIONS(8149), 5, - sym__automatic_semicolon, + STATE(5468), 1, + sym_type_annotation, + STATE(6958), 1, + sym__initializer, + ACTIONS(8170), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164120] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8151), 1, - sym_identifier, - ACTIONS(8153), 1, - anon_sym_STAR, - STATE(4559), 1, - sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6925), 1, - sym__call_signature, - [164151] = 6, + anon_sym_RPAREN, + [164272] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(3273), 1, + sym_class_body, + STATE(4561), 1, sym_comment, - STATE(6748), 1, - sym_statement_block, - ACTIONS(8155), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164174] = 4, + STATE(5699), 1, + sym_extends_clause, + STATE(6619), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164303] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4561), 1, + STATE(4562), 1, sym_comment, - ACTIONS(8157), 7, + ACTIONS(5862), 7, sym__automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [164193] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4157), 1, - anon_sym_LT, - ACTIONS(7991), 1, - sym_identifier, - ACTIONS(8159), 1, - anon_sym_LPAREN, - STATE(3140), 1, - sym_arguments, - STATE(4562), 1, - sym_comment, - STATE(6854), 1, - sym_type_arguments, - ACTIONS(7995), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [164222] = 5, + [164322] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8161), 1, - anon_sym_EQ, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2980), 1, + sym_class_body, STATE(4563), 1, sym_comment, - ACTIONS(4253), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164243] = 10, + STATE(5699), 1, + sym_extends_clause, + STATE(6651), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164353] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7997), 1, - anon_sym_LT, - ACTIONS(7999), 1, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(8163), 1, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, anon_sym_LBRACE, - ACTIONS(8165), 1, - anon_sym_LBRACE_PIPE, - STATE(1569), 1, - sym_object_type, + STATE(3026), 1, + sym_class_body, STATE(4564), 1, sym_comment, - STATE(4950), 1, - sym_type_parameters, - STATE(6050), 1, - sym_extends_type_clause, - [164274] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4014), 1, - anon_sym_DQUOTE, - ACTIONS(4016), 1, - anon_sym_SQUOTE, - ACTIONS(8167), 1, - sym_identifier, - ACTIONS(8169), 1, - anon_sym_DOT, - STATE(962), 1, - sym_nested_identifier, - STATE(1161), 1, - sym_string, - STATE(1517), 1, - sym__module, - STATE(4565), 1, - sym_comment, - [164305] = 7, + STATE(5699), 1, + sym_extends_clause, + STATE(6987), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(8173), 1, - anon_sym_DOT, - STATE(4566), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4565), 1, sym_comment, - STATE(5612), 1, - sym_arguments, - ACTIONS(8171), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [164330] = 4, + STATE(6653), 1, + sym_statement_block, + ACTIONS(8174), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164407] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4567), 1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4566), 1, sym_comment, - ACTIONS(8175), 7, + STATE(6693), 1, + sym_statement_block, + ACTIONS(8176), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [164349] = 6, + [164430] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(4568), 1, + STATE(4567), 1, sym_comment, - STATE(6682), 1, + STATE(6659), 1, sym_statement_block, - ACTIONS(8142), 5, + ACTIONS(8176), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [164372] = 10, + [164453] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8177), 1, + ACTIONS(8178), 1, sym_identifier, - ACTIONS(8179), 1, + ACTIONS(8180), 1, anon_sym_STAR, + STATE(4568), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6984), 1, + sym__call_signature, + [164484] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8151), 1, + anon_sym_QMARK, + ACTIONS(8182), 1, + anon_sym_COLON, STATE(4569), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6925), 1, + STATE(6798), 1, sym__call_signature, - [164403] = 10, + [164515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7545), 1, - anon_sym_extends, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3007), 1, - sym_class_body, STATE(4570), 1, sym_comment, - STATE(5785), 1, - sym_extends_clause, - STATE(6943), 1, - sym_class_heritage, - STATE(7265), 1, - sym_implements_clause, - [164434] = 9, + ACTIONS(2185), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(8181), 1, - anon_sym_EQ, - ACTIONS(8185), 1, - anon_sym_QMARK, STATE(4571), 1, sym_comment, - STATE(5627), 1, - sym_type_annotation, - STATE(6979), 1, - sym__initializer, - ACTIONS(8183), 2, + ACTIONS(2247), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [164463] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [164553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4572), 1, sym_comment, - ACTIONS(4287), 7, - anon_sym_EQ, + ACTIONS(2087), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164482] = 5, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [164572] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8187), 1, - anon_sym_EQ, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7653), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_class_body, STATE(4573), 1, sym_comment, - ACTIONS(4287), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164503] = 8, + STATE(5699), 1, + sym_extends_clause, + STATE(6678), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, STATE(4574), 1, sym_comment, - STATE(4888), 1, - sym_type_annotation, - STATE(5944), 1, - sym__initializer, - ACTIONS(7495), 3, + ACTIONS(2195), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [164530] = 8, + anon_sym_PIPE_RBRACE, + [164622] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, + sym_identifier, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4575), 1, sym_comment, - STATE(4942), 1, - sym_type_annotation, - STATE(6034), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164557] = 8, + STATE(5576), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [164651] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(4020), 1, + anon_sym_DQUOTE, + ACTIONS(4022), 1, + anon_sym_SQUOTE, + ACTIONS(8184), 1, + sym_identifier, + ACTIONS(8186), 1, + anon_sym_DOT, + STATE(1071), 1, + sym_nested_identifier, + STATE(1382), 1, + sym_string, + STATE(1569), 1, + sym__module, STATE(4576), 1, sym_comment, - STATE(4953), 1, - sym_type_annotation, - STATE(6039), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164584] = 8, + [164682] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7993), 1, + anon_sym_LT, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8188), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + anon_sym_LBRACE_PIPE, + STATE(1570), 1, + sym_object_type, STATE(4577), 1, sym_comment, - STATE(5257), 1, - sym_type_annotation, - STATE(6328), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164611] = 8, + STATE(5127), 1, + sym_type_parameters, + STATE(5871), 1, + sym_extends_type_clause, + [164713] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_class_body, STATE(4578), 1, sym_comment, - STATE(5255), 1, - sym_type_annotation, - STATE(6200), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164638] = 10, + STATE(5699), 1, + sym_extends_clause, + STATE(6598), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164744] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8190), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, sym_identifier, - ACTIONS(8192), 1, - anon_sym_STAR, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4579), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6643), 1, - sym__call_signature, - [164669] = 4, + STATE(5577), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [164773] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(4181), 1, + anon_sym_LT, + ACTIONS(8045), 1, + sym_identifier, + ACTIONS(8192), 1, + anon_sym_LPAREN, + STATE(3074), 1, + sym_arguments, STATE(4580), 1, sym_comment, - ACTIONS(8194), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [164688] = 5, + STATE(6942), 1, + sym_type_arguments, + ACTIONS(8049), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [164802] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6033), 1, - sym__automatic_semicolon, + ACTIONS(8194), 1, + anon_sym_EQ, + ACTIONS(8196), 1, + anon_sym_DOT, STATE(4581), 1, sym_comment, - ACTIONS(2095), 6, + ACTIONS(7967), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [164709] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [164825] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + ACTIONS(7173), 1, + anon_sym_COLON, STATE(4582), 1, sym_comment, - ACTIONS(6416), 7, - anon_sym_EQ, + STATE(5210), 1, + sym_type_annotation, + STATE(5804), 1, + sym__initializer, + ACTIONS(8163), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [164728] = 10, + anon_sym_SEMI, + [164852] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8091), 1, - anon_sym_QMARK, - ACTIONS(8196), 1, anon_sym_COLON, STATE(4583), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6975), 1, - sym__call_signature, - [164759] = 9, + STATE(5216), 1, + sym_type_annotation, + STATE(5802), 1, + sym__initializer, + ACTIONS(8163), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164879] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4030), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, - sym_identifier, - STATE(4574), 1, - sym__destructuring_pattern, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(8200), 1, + anon_sym_EQ, STATE(4584), 1, sym_comment, - STATE(5443), 1, - sym_variable_declarator, - STATE(4389), 2, - sym_object_pattern, - sym_array_pattern, - [164788] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8198), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [164902] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8198), 1, - sym_identifier, - ACTIONS(8200), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8202), 1, + anon_sym_EQ, STATE(4585), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6643), 1, - sym__call_signature, - [164819] = 10, + STATE(5639), 1, + sym_constraint, + STATE(6765), 1, + sym_default_type, + ACTIONS(8204), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(8206), 2, + anon_sym_COLON, + anon_sym_extends, + [164929] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8202), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8208), 1, sym_identifier, - ACTIONS(8204), 1, - anon_sym_STAR, + STATE(3601), 1, + sym__type_query_subscript_expression, + STATE(3602), 1, + sym__type_query_member_expression, + STATE(3659), 1, + sym__type_query_call_expression, + STATE(3785), 1, + sym__type_query_instantiation_expression, STATE(4586), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6925), 1, - sym__call_signature, - [164850] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5636), 1, + sym_import, + [164960] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8206), 1, - sym_identifier, - ACTIONS(8208), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7541), 1, + anon_sym_extends, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(453), 1, + sym_class_body, STATE(4587), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6643), 1, - sym__call_signature, - [164881] = 4, + STATE(5699), 1, + sym_extends_clause, + STATE(6807), 1, + sym_class_heritage, + STATE(7283), 1, + sym_implements_clause, + [164991] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8202), 1, + anon_sym_EQ, STATE(4588), 1, sym_comment, - ACTIONS(8210), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + STATE(5505), 1, + sym_constraint, + STATE(6974), 1, + sym_default_type, + ACTIONS(8206), 2, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [164900] = 10, + anon_sym_extends, + ACTIONS(8210), 2, + anon_sym_COMMA, + anon_sym_GT, + [165018] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8212), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, sym_identifier, - ACTIONS(8214), 1, - anon_sym_STAR, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4589), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6925), 1, - sym__call_signature, - [164931] = 10, + STATE(5443), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165047] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8216), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, sym_identifier, - ACTIONS(8218), 1, - anon_sym_STAR, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4590), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6643), 1, - sym__call_signature, - [164962] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8220), 1, - sym_identifier, - ACTIONS(8222), 1, - anon_sym_STAR, - STATE(4591), 1, - sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6643), 1, - sym__call_signature, - [164993] = 8, + STATE(5445), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4592), 1, + STATE(4591), 1, sym_comment, - STATE(4969), 1, - sym_type_annotation, - STATE(6075), 1, - sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7835), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165020] = 8, + anon_sym_COLON, + [165095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(8212), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4593), 1, + STATE(4592), 1, sym_comment, - STATE(4845), 1, - sym_type_annotation, - STATE(6269), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, + ACTIONS(4268), 6, anon_sym_COMMA, - anon_sym_SEMI, - [165047] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [165116] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + sym_identifier, + STATE(4159), 1, + sym__destructuring_pattern, + STATE(4593), 1, + sym_comment, + STATE(5482), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165145] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(8216), 1, + sym_identifier, + STATE(4158), 1, + sym__destructuring_pattern, STATE(4594), 1, sym_comment, - STATE(5240), 1, - sym_type_annotation, - STATE(6268), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165074] = 4, + STATE(5484), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165174] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, + sym_identifier, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4595), 1, sym_comment, - ACTIONS(4330), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [165093] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + STATE(5982), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165203] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, + sym_identifier, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4596), 1, sym_comment, - STATE(4971), 1, - sym_type_annotation, - STATE(6076), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165120] = 8, + STATE(5485), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, STATE(4597), 1, sym_comment, - STATE(4997), 1, - sym_type_annotation, - STATE(6087), 1, - sym__initializer, - ACTIONS(7426), 3, + ACTIONS(5882), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165147] = 8, + anon_sym_COLON, + [165251] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, STATE(4598), 1, sym_comment, - STATE(5018), 1, - sym_type_annotation, - STATE(6099), 1, - sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7747), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165174] = 4, + anon_sym_COLON, + [165270] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, STATE(4599), 1, sym_comment, - ACTIONS(4328), 7, + STATE(6870), 1, + sym_statement_block, + ACTIONS(8218), 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_DOT, - [165193] = 4, + anon_sym_PIPE_RBRACE, + [165293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4600), 1, sym_comment, - ACTIONS(7623), 7, + ACTIONS(7735), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - [165212] = 4, + anon_sym_COLON, + [165312] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8220), 1, + sym__automatic_semicolon, STATE(4601), 1, sym_comment, - ACTIONS(7627), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(2111), 6, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [165231] = 8, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [165333] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8222), 1, + sym_identifier, + ACTIONS(8224), 1, + anon_sym_STAR, STATE(4602), 1, sym_comment, - STATE(5031), 1, - sym_type_annotation, - STATE(6130), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165258] = 8, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6984), 1, + sym__call_signature, + [165364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(8226), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, STATE(4603), 1, sym_comment, - STATE(5036), 1, - sym_type_annotation, - STATE(6132), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, + ACTIONS(4257), 6, anon_sym_COMMA, - anon_sym_SEMI, - [165285] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [165385] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, + sym_identifier, + STATE(4555), 1, + sym__destructuring_pattern, STATE(4604), 1, sym_comment, - STATE(5230), 1, - sym_type_annotation, - STATE(6238), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165312] = 8, + STATE(5487), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, STATE(4605), 1, sym_comment, - STATE(5210), 1, - sym_type_annotation, - STATE(6228), 1, - sym__initializer, - ACTIONS(7426), 3, + ACTIONS(5880), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165339] = 4, + anon_sym_COLON, + [165433] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4606), 1, sym_comment, - ACTIONS(7659), 7, + ACTIONS(7685), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - [165358] = 4, + anon_sym_COLON, + [165452] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7501), 1, + anon_sym_type, STATE(4607), 1, sym_comment, - ACTIONS(7661), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [165377] = 10, + STATE(5427), 1, + sym_string, + STATE(6848), 1, + sym__import_identifier, + STATE(7119), 1, + sym__module_export_name, + [165483] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8224), 1, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8226), 1, + ACTIONS(8231), 1, anon_sym_STAR, STATE(4608), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6925), 1, + STATE(6618), 1, sym__call_signature, - [165408] = 10, + [165514] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_LBRACK, + ACTIONS(7999), 1, + sym_identifier, + STATE(4555), 1, + sym__destructuring_pattern, + STATE(4609), 1, + sym_comment, + STATE(5519), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165543] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8228), 1, + ACTIONS(8233), 1, sym_identifier, - ACTIONS(8230), 1, + ACTIONS(8235), 1, anon_sym_STAR, - STATE(4609), 1, + STATE(4610), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6643), 1, + STATE(6984), 1, sym__call_signature, - [165439] = 8, + [165574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7223), 1, anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4610), 1, + STATE(4611), 1, sym_comment, - STATE(5165), 1, - sym_type_annotation, - STATE(6186), 1, - sym__initializer, - ACTIONS(7426), 3, - sym__automatic_semicolon, + ACTIONS(8237), 2, anon_sym_COMMA, - anon_sym_SEMI, - [165466] = 8, + anon_sym_RBRACE, + ACTIONS(4520), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [165597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4611), 1, + STATE(4612), 1, sym_comment, - STATE(5104), 1, - sym_type_annotation, - STATE(6150), 1, - sym__initializer, - ACTIONS(7426), 3, + ACTIONS(7671), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165493] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8232), 1, - sym_identifier, - ACTIONS(8234), 1, - anon_sym_STAR, - STATE(4612), 1, - sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6925), 1, - sym__call_signature, - [165524] = 6, + anon_sym_COLON, + [165616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4613), 1, sym_comment, - STATE(4628), 1, - aux_sym_object_type_repeat1, - ACTIONS(8238), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8236), 3, + ACTIONS(7659), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [165546] = 6, + anon_sym_COLON, + [165635] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3391), 1, - sym_statement_block, STATE(4614), 1, sym_comment, - ACTIONS(8147), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165568] = 5, + ACTIONS(2245), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + sym_identifier, + [165654] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8242), 1, - sym_identifier, STATE(4615), 1, sym_comment, - ACTIONS(7002), 5, - anon_sym_LPAREN, + ACTIONS(2085), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SLASH_GT, anon_sym_LT, - anon_sym_BQUOTE, - [165588] = 8, + sym_identifier, + [165673] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8246), 1, - anon_sym_RBRACE, - ACTIONS(8248), 1, - anon_sym_case, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3393), 1, + sym_statement_block, STATE(4616), 1, sym_comment, - STATE(4629), 1, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [165614] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8176), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165695] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8250), 1, - sym_identifier, - STATE(4617), 1, - sym_comment, - ACTIONS(7002), 5, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(7175), 1, anon_sym_LT, - anon_sym_BQUOTE, - [165634] = 9, + ACTIONS(8242), 1, + anon_sym_QMARK, + STATE(4617), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6794), 1, + sym__call_signature, + [165723] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8252), 1, + ACTIONS(8244), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, STATE(4618), 1, sym_comment, - STATE(5136), 1, + STATE(5156), 1, sym__call_signature, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - [165662] = 6, + [165751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4619), 1, sym_comment, - STATE(4628), 1, - aux_sym_object_type_repeat1, - ACTIONS(8256), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8254), 3, - sym__automatic_semicolon, + ACTIONS(2107), 6, anon_sym_COMMA, - anon_sym_SEMI, - [165684] = 5, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [165769] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8258), 1, + ACTIONS(8246), 1, sym_identifier, STATE(4620), 1, sym_comment, - ACTIONS(7002), 5, + ACTIONS(7004), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [165704] = 9, + [165789] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8250), 1, + anon_sym_RBRACE, + ACTIONS(8252), 1, + anon_sym_case, + STATE(4621), 1, + sym_comment, + STATE(4624), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [165815] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - ACTIONS(7673), 1, + ACTIONS(7619), 1, anon_sym_DOT, - ACTIONS(8260), 1, + ACTIONS(8254), 1, anon_sym_COMMA, - ACTIONS(8262), 1, + ACTIONS(8256), 1, anon_sym_GT, - STATE(4337), 1, + STATE(4327), 1, sym_arguments, - STATE(4621), 1, + STATE(4622), 1, sym_comment, - STATE(5727), 1, + STATE(5733), 1, aux_sym_type_arguments_repeat1, - [165732] = 9, + [165843] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(8264), 1, + ACTIONS(8258), 1, anon_sym_COMMA, - ACTIONS(8266), 1, + ACTIONS(8260), 1, anon_sym_GT, - STATE(4622), 1, - sym_comment, - STATE(5732), 1, - aux_sym_type_arguments_repeat1, - [165760] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8268), 1, - sym_identifier, STATE(4623), 1, sym_comment, - ACTIONS(7002), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [165780] = 8, + STATE(5738), 1, + aux_sym_type_arguments_repeat1, + [165871] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8270), 1, - anon_sym_catch, - ACTIONS(8272), 1, - anon_sym_finally, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8262), 1, + anon_sym_RBRACE, STATE(4624), 1, sym_comment, - STATE(5562), 1, - sym_catch_clause, - STATE(6744), 1, - sym_finally_clause, - ACTIONS(3028), 2, - anon_sym_else, - anon_sym_while, - [165806] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4803), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [165897] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8274), 1, - sym_identifier, - STATE(4625), 1, - sym_comment, - ACTIONS(7002), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [165826] = 9, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(8276), 1, - sym_identifier, - STATE(4626), 1, - sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, - sym__call_signature, - [165854] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - sym_identifier, - STATE(4627), 1, + ACTIONS(8264), 1, + anon_sym_QMARK, + STATE(4625), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6921), 1, + STATE(6439), 1, sym__call_signature, - [165882] = 5, + STATE(6459), 1, + sym_type_parameters, + [165925] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8283), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4628), 2, + STATE(4626), 1, sym_comment, + STATE(4632), 1, aux_sym_object_type_repeat1, - ACTIONS(8280), 3, + ACTIONS(8268), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8266), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165902] = 8, + [165947] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8285), 1, - anon_sym_RBRACE, - STATE(4629), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3406), 1, + sym_statement_block, + STATE(4627), 1, sym_comment, - STATE(4744), 1, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [165928] = 6, + ACTIONS(8093), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165969] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4630), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3403), 1, + sym_statement_block, + STATE(4628), 1, sym_comment, - STATE(4633), 1, - aux_sym_object_type_repeat1, - ACTIONS(8289), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8287), 3, + ACTIONS(8089), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165950] = 6, + [165991] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4891), 1, - anon_sym_COMMA, - STATE(4631), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(8270), 1, + anon_sym_QMARK, + STATE(4286), 1, + sym_formal_parameters, + STATE(4629), 1, sym_comment, - STATE(4686), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8291), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [165972] = 6, + STATE(4737), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [166019] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4632), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3394), 1, + sym_statement_block, + STATE(4630), 1, sym_comment, - STATE(4636), 1, - aux_sym_object_type_repeat1, - ACTIONS(8295), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8293), 3, + ACTIONS(8093), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165994] = 6, + [166041] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, - STATE(4633), 1, + STATE(4631), 1, sym_comment, - ACTIONS(8295), 2, + STATE(4638), 1, + aux_sym_object_type_repeat1, + ACTIONS(8274), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8293), 3, + ACTIONS(8272), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166016] = 4, + [166063] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4634), 1, - sym_comment, - ACTIONS(2115), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [166034] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8297), 1, - sym_identifier, - ACTIONS(8299), 1, - anon_sym_LBRACK, - STATE(4635), 1, + STATE(4632), 1, sym_comment, - STATE(5874), 1, - sym__destructuring_pattern, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - [166060] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, + STATE(4673), 1, aux_sym_object_type_repeat1, - STATE(4636), 1, - sym_comment, - ACTIONS(8303), 2, + ACTIONS(8274), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8301), 3, + ACTIONS(8272), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166082] = 9, + [166085] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8305), 1, + ACTIONS(8276), 1, sym_identifier, - STATE(4637), 1, + STATE(4633), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6639), 1, + STATE(6982), 1, sym__call_signature, - [166110] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4638), 1, - sym_comment, - ACTIONS(8175), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [166128] = 9, + [166113] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(8278), 1, sym_identifier, - STATE(4639), 1, + STATE(4634), 1, sym_comment, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6921), 1, - sym__call_signature, - [166156] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4640), 1, - sym_comment, - ACTIONS(5363), 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, - [166174] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4641), 1, - sym_comment, - STATE(5963), 1, + STATE(6982), 1, sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [166202] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8067), 1, - anon_sym_DOT, - ACTIONS(8069), 1, - anon_sym_LT, - ACTIONS(8311), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_comment, - STATE(6167), 1, - sym_type_arguments, - ACTIONS(8313), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [166228] = 6, + [166141] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3406), 1, + STATE(3386), 1, sym_statement_block, - STATE(4643), 1, + STATE(4635), 1, sym_comment, - ACTIONS(8097), 4, + ACTIONS(8089), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166250] = 9, + [166163] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(4097), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(4099), 1, anon_sym_SQUOTE, - ACTIONS(8029), 1, + ACTIONS(8005), 1, sym_identifier, - STATE(4330), 1, + STATE(929), 1, sym_nested_identifier, - STATE(4500), 1, + STATE(1085), 1, sym_string, - STATE(4644), 1, - sym_comment, - STATE(5024), 1, + STATE(1262), 1, sym__module, - [166278] = 4, + STATE(4636), 1, + sym_comment, + [166191] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4645), 1, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + ACTIONS(8005), 1, + sym_identifier, + STATE(929), 1, + sym_nested_identifier, + STATE(1085), 1, + sym_string, + STATE(1276), 1, + sym__module, + STATE(4637), 1, sym_comment, - ACTIONS(5676), 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, - [166296] = 4, + [166219] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4646), 1, + STATE(4638), 1, sym_comment, - ACTIONS(8157), 6, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8282), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8280), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [166314] = 9, + [166241] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1920), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(1922), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(8029), 1, + ACTIONS(8009), 1, sym_identifier, - STATE(4330), 1, + STATE(4316), 1, sym_nested_identifier, - STATE(4500), 1, + STATE(4556), 1, sym_string, - STATE(4647), 1, + STATE(4639), 1, sym_comment, - STATE(5038), 1, + STATE(4934), 1, sym__module, - [166342] = 6, + [166269] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3404), 1, - sym_statement_block, - STATE(4648), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8284), 1, + anon_sym_QMARK, + STATE(4640), 1, sym_comment, - ACTIONS(8099), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166364] = 9, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6878), 1, + sym__call_signature, + [166297] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, + ACTIONS(1930), 1, anon_sym_DQUOTE, - ACTIONS(4105), 1, + ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(8007), 1, + ACTIONS(8009), 1, sym_identifier, - STATE(930), 1, + STATE(4316), 1, sym_nested_identifier, - STATE(1068), 1, + STATE(4556), 1, sym_string, - STATE(1331), 1, - sym__module, - STATE(4649), 1, + STATE(4641), 1, sym_comment, - [166392] = 9, + STATE(5251), 1, + sym__module, + [166325] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, - anon_sym_DQUOTE, - ACTIONS(4105), 1, - anon_sym_SQUOTE, - ACTIONS(8007), 1, + ACTIONS(8286), 1, sym_identifier, - STATE(930), 1, - sym_nested_identifier, - STATE(1068), 1, - sym_string, - STATE(1357), 1, - sym__module, - STATE(4650), 1, + STATE(4642), 1, sym_comment, - [166420] = 9, + ACTIONS(7004), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [166345] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + STATE(4643), 1, + sym_comment, + ACTIONS(4520), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(8315), 1, anon_sym_QMARK, - STATE(4255), 1, + [166363] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8288), 1, + anon_sym_QMARK, + STATE(4061), 1, sym_formal_parameters, - STATE(4651), 1, + STATE(4644), 1, sym_comment, - STATE(4658), 1, + STATE(5778), 1, sym__call_signature, - STATE(6732), 1, + STATE(6986), 1, + sym_type_parameters, + [166391] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8290), 1, + anon_sym_QMARK, + STATE(4061), 1, + sym_formal_parameters, + STATE(4493), 1, + sym__call_signature, + STATE(4645), 1, + sym_comment, + STATE(6986), 1, + sym_type_parameters, + [166419] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8292), 1, + anon_sym_QMARK, + STATE(4061), 1, + sym_formal_parameters, + STATE(4498), 1, + sym__call_signature, + STATE(4646), 1, + sym_comment, + STATE(6986), 1, sym_type_parameters, - [166448] = 6, + [166447] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8294), 1, + anon_sym_RBRACE, + STATE(4647), 1, + sym_comment, + STATE(4657), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [166473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3386), 1, + STATE(3363), 1, sym_statement_block, - STATE(4652), 1, + STATE(4648), 1, sym_comment, - ACTIONS(8099), 4, + ACTIONS(8107), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166470] = 9, + [166495] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8317), 1, + ACTIONS(8296), 1, anon_sym_QMARK, - STATE(4653), 1, - sym_comment, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6728), 1, + STATE(4504), 1, sym__call_signature, - [166498] = 6, + STATE(4649), 1, + sym_comment, + STATE(6986), 1, + sym_type_parameters, + [166523] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3387), 1, - sym_statement_block, - STATE(4654), 1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8298), 1, + anon_sym_COMMA, + ACTIONS(8300), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, + STATE(4650), 1, + sym_comment, + STATE(6021), 1, + aux_sym_type_arguments_repeat1, + [166551] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8302), 1, + anon_sym_COMMA, + ACTIONS(8304), 1, + anon_sym_GT, + STATE(4651), 1, + sym_comment, + STATE(6025), 1, + aux_sym_type_arguments_repeat1, + [166579] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4652), 1, sym_comment, - ACTIONS(8097), 4, + ACTIONS(8063), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [166520] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COLON, + [166597] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - ACTIONS(8299), 1, - anon_sym_LBRACK, - ACTIONS(8319), 1, - sym_identifier, - STATE(4655), 1, + STATE(3360), 1, + sym_statement_block, + STATE(4653), 1, sym_comment, - STATE(5913), 1, - sym__destructuring_pattern, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - [166546] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8113), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166619] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - ACTIONS(8321), 1, - sym_identifier, - STATE(4656), 1, - sym_comment, - STATE(4683), 1, + ACTIONS(8306), 1, + anon_sym_QMARK, + STATE(4286), 1, sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, + STATE(4628), 1, sym__call_signature, - [166574] = 6, + STATE(4654), 1, + sym_comment, + STATE(6561), 1, + sym_type_parameters, + [166647] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3394), 1, + STATE(3368), 1, sym_statement_block, - STATE(4657), 1, + STATE(4655), 1, sym_comment, - ACTIONS(8119), 4, + ACTIONS(8107), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166596] = 6, + [166669] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3397), 1, + STATE(3369), 1, sym_statement_block, - STATE(4658), 1, + STATE(4656), 1, sym_comment, - ACTIONS(8121), 4, + ACTIONS(8113), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166618] = 8, + [166691] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8323), 1, - anon_sym_BQUOTE, - ACTIONS(8325), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4659), 1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8308), 1, + anon_sym_RBRACE, + STATE(4657), 1, sym_comment, - STATE(4741), 1, - aux_sym_template_string_repeat1, - STATE(5469), 1, - sym_template_substitution, - ACTIONS(7921), 2, - sym__template_chars, - sym_escape_sequence, - [166644] = 9, - ACTIONS(3), 1, + STATE(4803), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [166717] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4658), 1, + sym_comment, + STATE(4663), 1, + aux_sym_object_type_repeat1, + ACTIONS(8312), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166739] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4659), 1, + sym_comment, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8316), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8314), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166761] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8327), 1, - sym_identifier, - STATE(4660), 1, - sym_comment, - STATE(4683), 1, + ACTIONS(8318), 1, + anon_sym_QMARK, + STATE(4061), 1, sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6921), 1, + STATE(4517), 1, sym__call_signature, - [166672] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4661), 1, + STATE(4660), 1, sym_comment, - ACTIONS(5545), 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, - [166690] = 9, + STATE(6986), 1, + sym_type_parameters, + [166789] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8329), 1, + ACTIONS(8320), 1, anon_sym_QMARK, - STATE(4255), 1, - sym_formal_parameters, - STATE(4662), 1, + STATE(4661), 1, sym_comment, - STATE(4805), 1, - sym__call_signature, - STATE(6732), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - [166718] = 8, + STATE(6933), 1, + sym__call_signature, + [166817] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8331), 1, + STATE(4662), 1, + sym_comment, + STATE(4666), 1, + aux_sym_object_type_repeat1, + ACTIONS(8324), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166839] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(4663), 1, sym_comment, - STATE(4678), 1, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [166744] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8324), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166861] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8143), 1, + anon_sym_DOT, + ACTIONS(8145), 1, + anon_sym_LT, + ACTIONS(8326), 1, + anon_sym_LBRACE, STATE(4664), 1, sym_comment, - ACTIONS(5541), 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, - [166762] = 4, + STATE(5647), 1, + sym_type_arguments, + ACTIONS(8328), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [166887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4665), 1, sym_comment, - ACTIONS(7971), 6, + ACTIONS(8051), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [166780] = 4, + anon_sym_COLON, + [166905] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4666), 1, sym_comment, - ACTIONS(6224), 6, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8332), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8330), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [166798] = 6, + [166927] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3399), 1, - sym_statement_block, STATE(4667), 1, sym_comment, - ACTIONS(8119), 4, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8336), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8334), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166820] = 4, + [166949] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4668), 1, sym_comment, - ACTIONS(5552), 6, + ACTIONS(8338), 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, - [166838] = 6, + [166967] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3373), 1, - sym_statement_block, STATE(4669), 1, sym_comment, - ACTIONS(8121), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2111), 6, anon_sym_COMMA, - anon_sym_SEMI, - [166860] = 9, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [166985] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8333), 1, - anon_sym_COMMA, - ACTIONS(8335), 1, - anon_sym_GT, - STATE(4337), 1, - sym_arguments, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8340), 1, + anon_sym_export, + ACTIONS(8342), 1, + anon_sym_class, + ACTIONS(8344), 1, + anon_sym_abstract, STATE(4670), 1, sym_comment, - STATE(6015), 1, - aux_sym_type_arguments_repeat1, - [166888] = 9, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, + [167013] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8337), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_GT, + STATE(4659), 1, + aux_sym_object_type_repeat1, STATE(4671), 1, sym_comment, - STATE(6019), 1, - aux_sym_type_arguments_repeat1, - [166916] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8299), 1, - anon_sym_LBRACK, - ACTIONS(8341), 1, - sym_identifier, - STATE(4672), 1, - sym_comment, - STATE(5985), 1, - sym__destructuring_pattern, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - [166942] = 9, + ACTIONS(8336), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8334), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167035] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8343), 1, + ACTIONS(8346), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4673), 1, - sym_comment, - STATE(6108), 1, + STATE(4501), 1, sym__call_signature, - STATE(6769), 1, + STATE(4672), 1, + sym_comment, + STATE(6986), 1, sym_type_parameters, - [166970] = 9, + [167063] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8351), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4673), 2, + sym_comment, + aux_sym_object_type_repeat1, + ACTIONS(8348), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167083] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8345), 1, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(4093), 1, + anon_sym_SQUOTE, + ACTIONS(8023), 1, sym_identifier, + STATE(921), 1, + sym_nested_identifier, + STATE(1139), 1, + sym_string, + STATE(1311), 1, + sym__module, STATE(4674), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, - sym__call_signature, - [166998] = 9, + [167111] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8347), 1, - anon_sym_QMARK, + ACTIONS(5001), 1, + anon_sym_COMMA, STATE(4675), 1, sym_comment, - STATE(4683), 1, - sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6814), 1, - sym__call_signature, - [167026] = 9, + STATE(4687), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8353), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [167133] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8349), 1, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(4093), 1, + anon_sym_SQUOTE, + ACTIONS(8023), 1, sym_identifier, + STATE(921), 1, + sym_nested_identifier, + STATE(1139), 1, + sym_string, + STATE(1358), 1, + sym__module, STATE(4676), 1, sym_comment, - STATE(4683), 1, + [167161] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8355), 1, + anon_sym_QMARK, + STATE(4061), 1, sym_formal_parameters, - STATE(6493), 1, - sym_type_parameters, - STATE(6921), 1, + STATE(4677), 1, + sym_comment, + STATE(4899), 1, sym__call_signature, - [167054] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6986), 1, + sym_type_parameters, + [167189] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4677), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, + STATE(4678), 1, sym_comment, - ACTIONS(5556), 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, - [167072] = 8, + ACTIONS(8359), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167211] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, anon_sym_case, - ACTIONS(8351), 1, + ACTIONS(8361), 1, anon_sym_RBRACE, - STATE(4678), 1, + STATE(4679), 1, sym_comment, - STATE(4744), 1, + STATE(4692), 1, aux_sym_switch_body_repeat1, - STATE(6137), 2, + STATE(5984), 2, sym_switch_case, sym_switch_default, - [167098] = 6, + [167237] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4679), 1, - sym_comment, - STATE(4681), 1, - aux_sym_object_type_repeat1, - ACTIONS(8355), 2, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8363), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167120] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4680), 1, sym_comment, - STATE(4688), 1, - aux_sym_object_type_repeat1, - ACTIONS(8359), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8357), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167142] = 6, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [167263] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, + ACTIONS(8365), 1, + sym_identifier, STATE(4681), 1, sym_comment, - ACTIONS(8359), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8357), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167164] = 6, + ACTIONS(7004), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [167283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3362), 1, + STATE(3364), 1, sym_statement_block, STATE(4682), 1, sym_comment, - ACTIONS(8155), 4, + ACTIONS(8091), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167186] = 6, + [167305] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, + ACTIONS(8367), 1, + anon_sym_catch, + ACTIONS(8369), 1, + anon_sym_finally, STATE(4683), 1, sym_comment, - ACTIONS(7515), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6678), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [167208] = 9, + STATE(5419), 1, + sym_catch_clause, + STATE(6842), 1, + sym_finally_clause, + ACTIONS(3036), 2, + anon_sym_else, + anon_sym_while, + [167331] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8363), 1, - anon_sym_export, - ACTIONS(8365), 1, - anon_sym_class, - ACTIONS(8367), 1, - anon_sym_abstract, STATE(4684), 1, sym_comment, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - [167236] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8071), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [167349] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4014), 1, - anon_sym_DQUOTE, - ACTIONS(4016), 1, - anon_sym_SQUOTE, - ACTIONS(8167), 1, - sym_identifier, - STATE(962), 1, - sym_nested_identifier, - STATE(1161), 1, - sym_string, - STATE(1450), 1, - sym__module, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4667), 1, + aux_sym_object_type_repeat1, STATE(4685), 1, sym_comment, - [167264] = 5, + ACTIONS(8373), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167371] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8369), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8375), 1, + anon_sym_QMARK, + STATE(4061), 1, + sym_formal_parameters, + STATE(4567), 1, + sym__call_signature, + STATE(4686), 1, + sym_comment, + STATE(6986), 1, + sym_type_parameters, + [167399] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8377), 1, anon_sym_COMMA, - STATE(4686), 2, + STATE(4687), 2, sym_comment, aux_sym_sequence_expression_repeat1, - ACTIONS(5214), 4, + ACTIONS(5136), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [167284] = 4, - ACTIONS(3), 1, + [167419] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8380), 1, + anon_sym_RBRACE, + STATE(4688), 1, + sym_comment, + STATE(4803), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [167445] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4687), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8382), 1, + anon_sym_COMMA, + ACTIONS(8384), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, + STATE(4689), 1, sym_comment, - ACTIONS(5552), 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, - [167302] = 6, + STATE(6268), 1, + aux_sym_type_arguments_repeat1, + [167473] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, - STATE(4688), 1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(8168), 1, + anon_sym_EQ, + STATE(4690), 1, sym_comment, - ACTIONS(8374), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8372), 3, - sym__automatic_semicolon, + STATE(5604), 1, + sym_type_annotation, + STATE(6824), 1, + sym__initializer, + ACTIONS(8386), 2, anon_sym_COMMA, - anon_sym_SEMI, - [167324] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RPAREN, + [167499] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4689), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8388), 1, + anon_sym_COMMA, + ACTIONS(8390), 1, + anon_sym_GT, + STATE(4691), 1, sym_comment, - ACTIONS(5588), 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, - [167342] = 9, + STATE(6272), 1, + aux_sym_type_arguments_repeat1, + [167527] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8376), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4558), 1, - sym__call_signature, - STATE(4690), 1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8392), 1, + anon_sym_RBRACE, + STATE(4692), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [167370] = 4, + STATE(4803), 1, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [167553] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4691), 1, + STATE(4693), 1, sym_comment, - ACTIONS(2223), 6, - anon_sym_COMMA, + STATE(4701), 1, + aux_sym_object_type_repeat1, + ACTIONS(8396), 2, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [167388] = 9, + anon_sym_PIPE_RBRACE, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167575] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8378), 1, + ACTIONS(8398), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4550), 1, - sym__call_signature, - STATE(4692), 1, + STATE(4694), 1, sym_comment, - STATE(6769), 1, + STATE(5924), 1, + sym__call_signature, + STATE(6986), 1, sym_type_parameters, - [167416] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4014), 1, - anon_sym_DQUOTE, - ACTIONS(4016), 1, - anon_sym_SQUOTE, - ACTIONS(8167), 1, - sym_identifier, - STATE(962), 1, - sym_nested_identifier, - STATE(1161), 1, - sym_string, - STATE(1517), 1, - sym__module, - STATE(4693), 1, - sym_comment, - [167444] = 4, + [167603] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4694), 1, + STATE(4695), 1, sym_comment, - ACTIONS(8380), 6, + ACTIONS(5583), 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, - [167462] = 4, + [167621] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4695), 1, + STATE(4696), 1, sym_comment, - ACTIONS(8382), 6, + ACTIONS(5468), 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, - [167480] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8384), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4544), 1, - sym__call_signature, - STATE(4696), 1, - sym_comment, - STATE(6769), 1, - sym_type_parameters, - [167508] = 9, + [167639] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4111), 1, - anon_sym_DQUOTE, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - ACTIONS(8039), 1, - sym_identifier, - STATE(947), 1, - sym_nested_identifier, - STATE(1041), 1, - sym_string, - STATE(1220), 1, - sym__module, STATE(4697), 1, sym_comment, - [167536] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4698), 1, - sym_comment, - ACTIONS(5552), 6, + ACTIONS(5464), 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, - [167554] = 9, - ACTIONS(3), 1, + [167657] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8400), 1, + anon_sym_COMMA, + ACTIONS(8402), 1, + anon_sym_GT, + STATE(4698), 1, + sym_comment, + STATE(6152), 1, + aux_sym_type_arguments_repeat1, + [167685] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4111), 1, - anon_sym_DQUOTE, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - ACTIONS(8039), 1, - sym_identifier, - STATE(947), 1, - sym_nested_identifier, - STATE(1041), 1, - sym_string, - STATE(1375), 1, - sym__module, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8404), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, STATE(4699), 1, sym_comment, - [167582] = 6, + STATE(6158), 1, + aux_sym_type_arguments_repeat1, + [167713] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, STATE(4700), 1, sym_comment, - ACTIONS(8388), 2, + STATE(4704), 1, + aux_sym_object_type_repeat1, + ACTIONS(8410), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8386), 3, + ACTIONS(8408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167604] = 9, + [167735] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8390), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4530), 1, - sym__call_signature, + STATE(4673), 1, + aux_sym_object_type_repeat1, STATE(4701), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [167632] = 9, + ACTIONS(8410), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167757] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8392), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3416), 1, + sym_statement_block, STATE(4702), 1, sym_comment, - STATE(4852), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [167660] = 8, + ACTIONS(8133), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167779] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8394), 1, - anon_sym_RBRACE, STATE(4703), 1, sym_comment, - STATE(4716), 1, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [167686] = 4, + ACTIONS(5431), 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, + [167797] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, STATE(4704), 1, sym_comment, - ACTIONS(8396), 6, + ACTIONS(8414), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8412), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167704] = 4, + [167819] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4705), 1, sym_comment, - ACTIONS(8398), 6, - sym__automatic_semicolon, + ACTIONS(5427), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167722] = 6, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [167837] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_statement_block, - STATE(4706), 1, + ACTIONS(8418), 1, + anon_sym_AT, + STATE(5608), 1, + sym_decorator, + STATE(4706), 2, sym_comment, - ACTIONS(8077), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167744] = 9, + aux_sym_export_statement_repeat1, + ACTIONS(8416), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [167859] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8400), 1, - anon_sym_COMMA, - ACTIONS(8402), 1, - anon_sym_GT, - STATE(4337), 1, - sym_arguments, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8421), 1, + anon_sym_export, + ACTIONS(8423), 1, + anon_sym_class, + ACTIONS(8425), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(4707), 1, sym_comment, - STATE(6262), 1, - aux_sym_type_arguments_repeat1, - [167772] = 9, + STATE(5608), 1, + sym_decorator, + [167887] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(8406), 1, - anon_sym_GT, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(8427), 1, + anon_sym_QMARK, + STATE(4286), 1, + sym_formal_parameters, + STATE(4655), 1, + sym__call_signature, STATE(4708), 1, sym_comment, - STATE(6266), 1, - aux_sym_type_arguments_repeat1, - [167800] = 6, + STATE(6561), 1, + sym_type_parameters, + [167915] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3371), 1, + sym_statement_block, STATE(4709), 1, sym_comment, - ACTIONS(8410), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8408), 3, + ACTIONS(8091), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167822] = 4, + [167937] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(4117), 1, + anon_sym_DQUOTE, + ACTIONS(4119), 1, + anon_sym_SQUOTE, + ACTIONS(8037), 1, + sym_identifier, + STATE(901), 1, + sym_nested_identifier, + STATE(919), 1, + sym_string, + STATE(1131), 1, + sym__module, STATE(4710), 1, sym_comment, - ACTIONS(8194), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [167840] = 4, + [167965] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3372), 1, + sym_statement_block, STATE(4711), 1, sym_comment, - ACTIONS(8412), 6, + ACTIONS(8133), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167858] = 6, + [167987] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8429), 1, + sym_identifier, STATE(4712), 1, sym_comment, - ACTIONS(8416), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8414), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167880] = 6, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6774), 1, + sym__call_signature, + [168015] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4700), 1, - aux_sym_object_type_repeat1, STATE(4713), 1, sym_comment, - ACTIONS(8416), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8414), 3, + ACTIONS(7965), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167902] = 5, + anon_sym_DOT, + [168033] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4117), 1, + anon_sym_DQUOTE, + ACTIONS(4119), 1, + anon_sym_SQUOTE, + ACTIONS(8037), 1, + sym_identifier, + STATE(901), 1, + sym_nested_identifier, + STATE(919), 1, + sym_string, + STATE(1047), 1, + sym__module, + STATE(4714), 1, + sym_comment, + [168061] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, - anon_sym_DOT, - STATE(4714), 1, + ACTIONS(8431), 1, + anon_sym_COLON, + STATE(4715), 1, + sym_comment, + ACTIONS(7493), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6908), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [168083] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4716), 1, sym_comment, - ACTIONS(7947), 5, + ACTIONS(6271), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167922] = 9, + anon_sym_DOT, + [168101] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4717), 1, + sym_comment, + ACTIONS(5583), 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, + [168119] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4718), 1, + sym_comment, + ACTIONS(5587), 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(7197), 1, - anon_sym_LPAREN, - ACTIONS(8420), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4514), 1, - sym__call_signature, - STATE(4715), 1, + [168137] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8433), 1, + sym_identifier, + ACTIONS(8435), 1, + anon_sym_LBRACK, + STATE(4719), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [167950] = 8, + STATE(6032), 1, + sym__destructuring_pattern, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + [168163] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, anon_sym_case, - ACTIONS(8422), 1, + ACTIONS(8437), 1, anon_sym_RBRACE, - STATE(4716), 1, - sym_comment, - STATE(4744), 1, + STATE(4688), 1, aux_sym_switch_body_repeat1, - STATE(6137), 2, + STATE(4720), 1, + sym_comment, + STATE(5984), 2, sym_switch_case, sym_switch_default, - [167976] = 4, + [168189] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4717), 1, + STATE(4721), 1, sym_comment, - ACTIONS(5740), 6, + ACTIONS(5601), 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, - [167994] = 6, + [168207] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4718), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8439), 1, + anon_sym_LBRACE, + ACTIONS(8441), 1, + anon_sym_COMMA, + STATE(4722), 1, + sym_comment, + STATE(6030), 1, + aux_sym_implements_clause_repeat1, + [168235] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8443), 1, + sym_identifier, + STATE(4723), 1, sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6774), 1, + sym__call_signature, + [168263] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8445), 1, + anon_sym_QMARK, STATE(4724), 1, - aux_sym_object_type_repeat1, - ACTIONS(8426), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168016] = 6, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6790), 1, + sym__call_signature, + [168291] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4619), 1, - aux_sym_object_type_repeat1, - STATE(4719), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8447), 1, + anon_sym_QMARK, + STATE(4061), 1, + sym_formal_parameters, + STATE(4725), 1, sym_comment, - ACTIONS(8410), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8408), 3, - sym__automatic_semicolon, + STATE(4886), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [168319] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8449), 1, anon_sym_COMMA, - anon_sym_SEMI, - [168038] = 9, + ACTIONS(8451), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, + STATE(4726), 1, + sym_comment, + STATE(6296), 1, + aux_sym_type_arguments_repeat1, + [168347] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8428), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4720), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8453), 1, + anon_sym_COMMA, + ACTIONS(8455), 1, + anon_sym_GT, + STATE(4727), 1, sym_comment, - STATE(4906), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [168066] = 4, + STATE(6292), 1, + aux_sym_type_arguments_repeat1, + [168375] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4721), 1, + STATE(4728), 1, sym_comment, - ACTIONS(5747), 6, + ACTIONS(5583), 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, - [168084] = 6, + [168393] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4722), 1, + ACTIONS(7935), 1, + anon_sym_GT, + ACTIONS(8457), 1, + sym_identifier, + ACTIONS(8459), 1, + sym_jsx_identifier, + ACTIONS(8461), 1, + anon_sym_SLASH_GT, + STATE(3946), 1, + sym_nested_identifier, + STATE(4122), 1, + sym_jsx_namespace_name, + STATE(4729), 1, sym_comment, - STATE(4725), 1, - aux_sym_object_type_repeat1, - ACTIONS(8432), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8430), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168106] = 4, + [168421] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4723), 1, + STATE(4730), 1, sym_comment, - ACTIONS(5510), 6, + ACTIONS(8463), 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, - [168124] = 6, + [168439] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, - STATE(4724), 1, + STATE(4731), 1, sym_comment, - ACTIONS(8432), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8430), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168146] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, + STATE(4745), 1, aux_sym_object_type_repeat1, - STATE(4725), 1, - sym_comment, - ACTIONS(8436), 2, + ACTIONS(8467), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8434), 3, + ACTIONS(8465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168168] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8438), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4726), 1, - sym_comment, - STATE(5844), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [168196] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4099), 1, - anon_sym_SQUOTE, - ACTIONS(8055), 1, - sym_identifier, - STATE(891), 1, - sym_nested_identifier, - STATE(912), 1, - sym_string, - STATE(1155), 1, - sym__module, - STATE(4727), 1, - sym_comment, - [168224] = 4, + [168461] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4728), 1, + STATE(4732), 1, sym_comment, - ACTIONS(5490), 6, + ACTIONS(5613), 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, - [168242] = 6, + [168479] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3408), 1, + STATE(3362), 1, sym_statement_block, - STATE(4729), 1, + STATE(4733), 1, sym_comment, ACTIONS(8075), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168264] = 9, + [168501] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4097), 1, - anon_sym_DQUOTE, - ACTIONS(4099), 1, - anon_sym_SQUOTE, - ACTIONS(8055), 1, - sym_identifier, - STATE(891), 1, - sym_nested_identifier, - STATE(912), 1, - sym_string, - STATE(1083), 1, - sym__module, - STATE(4730), 1, - sym_comment, - [168292] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(8440), 1, - anon_sym_QMARK, - STATE(4255), 1, - sym_formal_parameters, - STATE(4652), 1, - sym__call_signature, - STATE(4731), 1, + ACTIONS(8471), 1, + anon_sym_EQ, + STATE(4734), 1, sym_comment, - STATE(6732), 1, - sym_type_parameters, - [168320] = 9, + ACTIONS(8469), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [168521] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8442), 1, + ACTIONS(8473), 1, sym_identifier, - STATE(4683), 1, - sym_formal_parameters, - STATE(4732), 1, + STATE(4735), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6921), 1, - sym__call_signature, - [168348] = 6, + ACTIONS(7004), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [168541] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3359), 1, + STATE(3379), 1, sym_statement_block, - STATE(4733), 1, + STATE(4736), 1, sym_comment, - ACTIONS(8075), 4, + ACTIONS(8085), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168370] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4734), 1, - sym_comment, - ACTIONS(8444), 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, - [168388] = 6, + [168563] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4712), 1, - aux_sym_object_type_repeat1, - STATE(4735), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3378), 1, + sym_statement_block, + STATE(4737), 1, sym_comment, - ACTIONS(8448), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8446), 3, + ACTIONS(8087), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168410] = 9, + [168585] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8450), 1, + ACTIONS(8475), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4486), 1, - sym__call_signature, - STATE(4736), 1, + STATE(4738), 1, sym_comment, - STATE(6769), 1, + STATE(5237), 1, + sym__call_signature, + STATE(6986), 1, sym_type_parameters, - [168438] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [168613] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8452), 1, - anon_sym_RBRACE, - STATE(4737), 1, - sym_comment, - STATE(4744), 1, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [168464] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8454), 1, - anon_sym_COMMA, - ACTIONS(8456), 1, + ACTIONS(7935), 1, anon_sym_GT, - STATE(4337), 1, - sym_arguments, - STATE(4738), 1, + ACTIONS(8477), 1, + sym_identifier, + ACTIONS(8479), 1, + sym_jsx_identifier, + ACTIONS(8481), 1, + anon_sym_SLASH_GT, + STATE(3936), 1, + sym_nested_identifier, + STATE(4177), 1, + sym_jsx_namespace_name, + STATE(4739), 1, sym_comment, - STATE(6277), 1, - aux_sym_type_arguments_repeat1, - [168492] = 9, + [168641] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8458), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_GT, - STATE(4739), 1, + ACTIONS(8483), 1, + sym_identifier, + STATE(4740), 1, sym_comment, - STATE(6273), 1, - aux_sym_type_arguments_repeat1, - [168520] = 6, + ACTIONS(7004), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [168661] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4740), 1, + STATE(4741), 1, sym_comment, - STATE(4743), 1, + STATE(4751), 1, aux_sym_object_type_repeat1, - ACTIONS(8464), 2, + ACTIONS(8487), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8462), 3, + ACTIONS(8485), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168542] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [168683] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8325), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8466), 1, - anon_sym_BQUOTE, - STATE(4741), 1, - sym_comment, - STATE(4827), 1, - aux_sym_template_string_repeat1, - STATE(5469), 1, - sym_template_substitution, - ACTIONS(7921), 2, - sym__template_chars, - sym_escape_sequence, - [168568] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4742), 1, sym_comment, - STATE(4745), 1, - aux_sym_object_type_repeat1, - ACTIONS(8470), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168590] = 6, + ACTIONS(8489), 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, + [168701] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8491), 1, + sym_identifier, STATE(4743), 1, sym_comment, - ACTIONS(8470), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168612] = 7, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6774), 1, + sym__call_signature, + [168729] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8472), 1, - anon_sym_default, - ACTIONS(8475), 1, - anon_sym_RBRACE, - ACTIONS(8477), 1, - anon_sym_case, - STATE(4744), 2, + ACTIONS(8493), 1, + anon_sym_BQUOTE, + ACTIONS(8495), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4744), 1, sym_comment, - aux_sym_switch_body_repeat1, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [168636] = 6, + STATE(4790), 1, + aux_sym_template_string_repeat1, + STATE(5571), 1, + sym_template_substitution, + ACTIONS(7911), 2, + sym__template_chars, + sym_escape_sequence, + [168755] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, + STATE(4673), 1, aux_sym_object_type_repeat1, STATE(4745), 1, sym_comment, - ACTIONS(8482), 2, + ACTIONS(8487), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8480), 3, + ACTIONS(8485), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168658] = 8, + [168777] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3880), 1, - anon_sym_LBRACE, - ACTIONS(8299), 1, - anon_sym_LBRACK, - ACTIONS(8484), 1, + ACTIONS(8497), 1, sym_identifier, STATE(4746), 1, sym_comment, - STATE(6119), 1, - sym__destructuring_pattern, - STATE(4288), 2, - sym_object_pattern, - sym_array_pattern, - [168684] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(7004), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [168797] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - ACTIONS(8486), 1, - sym_identifier, - STATE(4683), 1, + ACTIONS(8499), 1, + anon_sym_QMARK, + STATE(4286), 1, sym_formal_parameters, STATE(4747), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, + STATE(4840), 1, sym__call_signature, - [168712] = 6, + STATE(6561), 1, + sym_type_parameters, + [168825] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3407), 1, - sym_statement_block, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8501), 1, + anon_sym_COMMA, + ACTIONS(8503), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, STATE(4748), 1, sym_comment, - ACTIONS(8142), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168734] = 9, + STATE(6090), 1, + aux_sym_type_arguments_repeat1, + [168853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(8488), 1, - anon_sym_QMARK, - STATE(4255), 1, - sym_formal_parameters, STATE(4749), 1, sym_comment, - STATE(4839), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [168762] = 9, + ACTIONS(8505), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [168871] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8490), 1, - anon_sym_COMMA, - ACTIONS(8492), 1, - anon_sym_GT, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_statement_block, STATE(4750), 1, sym_comment, - STATE(6315), 1, - aux_sym_type_arguments_repeat1, - [168790] = 4, + ACTIONS(8085), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168893] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, STATE(4751), 1, sym_comment, - ACTIONS(8494), 6, + ACTIONS(8509), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8507), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [168808] = 9, + [168915] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8496), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8511), 1, anon_sym_COMMA, - ACTIONS(8498), 1, + ACTIONS(8513), 1, anon_sym_GT, - STATE(4337), 1, - sym_arguments, STATE(4752), 1, sym_comment, - STATE(6332), 1, + STATE(6092), 1, aux_sym_type_arguments_repeat1, - [168836] = 4, + [168943] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4753), 1, sym_comment, - ACTIONS(5693), 6, + ACTIONS(8515), 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, - [168854] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8500), 1, - anon_sym_COMMA, - ACTIONS(8502), 1, - anon_sym_GT, - STATE(4337), 1, - sym_arguments, - STATE(4754), 1, - sym_comment, - STATE(6230), 1, - aux_sym_type_arguments_repeat1, - [168882] = 4, + [168961] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4755), 1, + STATE(4754), 1, sym_comment, - ACTIONS(5560), 6, + ACTIONS(8517), 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, - [168900] = 9, + [168979] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + STATE(4755), 1, + sym_comment, + ACTIONS(8519), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [168997] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(7619), 1, + anon_sym_DOT, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(8523), 1, + anon_sym_GT, + STATE(4327), 1, + sym_arguments, + STATE(4756), 1, + sym_comment, + STATE(6231), 1, + aux_sym_type_arguments_repeat1, + [169025] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(8504), 1, + ACTIONS(8525), 1, anon_sym_COMMA, - ACTIONS(8506), 1, + ACTIONS(8527), 1, anon_sym_GT, - STATE(4756), 1, + STATE(4757), 1, sym_comment, STATE(6227), 1, aux_sym_type_arguments_repeat1, - [168928] = 6, + [169053] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4757), 1, + STATE(4758), 1, sym_comment, - STATE(4764), 1, + STATE(4760), 1, aux_sym_object_type_repeat1, - ACTIONS(8510), 2, + ACTIONS(8531), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8508), 3, + ACTIONS(8529), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168950] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8512), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, - STATE(4758), 1, - sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6971), 1, - sym__call_signature, - [168978] = 6, + [169075] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3369), 1, - sym_statement_block, STATE(4759), 1, sym_comment, - ACTIONS(8140), 4, + STATE(4761), 1, + aux_sym_object_type_repeat1, + ACTIONS(8535), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8533), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169000] = 6, + [169097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, STATE(4760), 1, sym_comment, - STATE(4765), 1, - aux_sym_object_type_repeat1, - ACTIONS(8516), 2, + ACTIONS(8535), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8514), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169022] = 6, + [169119] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_statement_block, + STATE(4673), 1, + aux_sym_object_type_repeat1, STATE(4761), 1, sym_comment, - ACTIONS(8142), 4, + ACTIONS(8539), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8537), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169044] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169141] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8541), 1, + anon_sym_DOT, STATE(4762), 1, sym_comment, - ACTIONS(8518), 6, + ACTIONS(7967), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169062] = 4, + anon_sym_COMMA, + anon_sym_SEMI, + [169161] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4763), 1, sym_comment, - ACTIONS(8520), 6, + ACTIONS(5545), 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, - [169080] = 6, + [169179] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, STATE(4764), 1, sym_comment, - ACTIONS(8516), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169102] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, + STATE(4766), 1, aux_sym_object_type_repeat1, - STATE(4765), 1, - sym_comment, - ACTIONS(8524), 2, + ACTIONS(8545), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8522), 3, + ACTIONS(8543), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169124] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7939), 1, - anon_sym_GT, - ACTIONS(8526), 1, - sym_identifier, - ACTIONS(8528), 1, - sym_jsx_identifier, - ACTIONS(8530), 1, - anon_sym_SLASH_GT, - STATE(3915), 1, - sym_nested_identifier, - STATE(4273), 1, - sym_jsx_namespace_name, - STATE(4766), 1, - sym_comment, - [169152] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, - anon_sym_LPAREN, - ACTIONS(8532), 1, - sym_identifier, - STATE(4683), 1, - sym_formal_parameters, - STATE(4767), 1, - sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6921), 1, - sym__call_signature, - [169180] = 6, + [169201] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - STATE(4768), 1, + STATE(4765), 1, sym_comment, - ACTIONS(7507), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6833), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [169202] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(4769), 1, - sym_comment, - STATE(4772), 1, aux_sym_object_type_repeat1, - ACTIONS(8536), 2, + ACTIONS(8549), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8534), 3, + ACTIONS(8547), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169224] = 6, + [169223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4770), 1, - sym_comment, - STATE(4773), 1, + STATE(4673), 1, aux_sym_object_type_repeat1, - ACTIONS(8540), 2, + STATE(4766), 1, + sym_comment, + ACTIONS(8549), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8538), 3, + ACTIONS(8547), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169246] = 6, + [169245] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8544), 1, - anon_sym_AT, - STATE(5410), 1, - sym_decorator, - STATE(4771), 2, + STATE(4767), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(8542), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [169268] = 6, + ACTIONS(8551), 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, + [169263] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, + STATE(4673), 1, aux_sym_object_type_repeat1, - STATE(4772), 1, + STATE(4768), 1, sym_comment, - ACTIONS(8540), 2, + ACTIONS(8555), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8538), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169290] = 6, + [169285] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4628), 1, + STATE(4673), 1, aux_sym_object_type_repeat1, - STATE(4773), 1, + STATE(4769), 1, sym_comment, - ACTIONS(8549), 2, + ACTIONS(8559), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8547), 3, + ACTIONS(8557), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169312] = 4, + [169307] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4774), 1, + STATE(4770), 1, sym_comment, - ACTIONS(8551), 6, + ACTIONS(5687), 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, - [169330] = 6, + [169325] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4775), 1, - sym_comment, - STATE(4778), 1, + STATE(4678), 1, aux_sym_object_type_repeat1, + STATE(4771), 1, + sym_comment, ACTIONS(8555), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, @@ -346935,20830 +346961,20894 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169352] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [169347] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8557), 1, - anon_sym_RBRACE, - STATE(4737), 1, - aux_sym_switch_body_repeat1, - STATE(4776), 1, - sym_comment, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [169378] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4613), 1, - aux_sym_object_type_repeat1, - STATE(4777), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + STATE(4772), 1, sym_comment, - ACTIONS(8561), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169400] = 6, + STATE(4947), 1, + sym_nested_identifier, + STATE(5633), 1, + sym_string, + STATE(6895), 1, + sym__module, + [169375] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4628), 1, - aux_sym_object_type_repeat1, - STATE(4778), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + STATE(4773), 1, sym_comment, - ACTIONS(8561), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169422] = 9, + STATE(4947), 1, + sym_nested_identifier, + STATE(5633), 1, + sym_string, + STATE(6702), 1, + sym__module, + [169403] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8563), 1, + ACTIONS(8561), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(4779), 1, + STATE(4774), 1, sym_comment, - STATE(4849), 1, + STATE(5323), 1, sym__call_signature, - STATE(6769), 1, + STATE(6986), 1, sym_type_parameters, - [169450] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8565), 1, - sym_identifier, - STATE(4780), 1, - sym_comment, - ACTIONS(7002), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [169470] = 9, + [169431] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8065), 1, - anon_sym_COMMA, - ACTIONS(8069), 1, - anon_sym_LT, - ACTIONS(8567), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, - anon_sym_LBRACE_PIPE, - STATE(4781), 1, + STATE(4775), 1, sym_comment, - STATE(5423), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6159), 1, - sym_type_arguments, - [169498] = 9, + STATE(4782), 1, + aux_sym_object_type_repeat1, + ACTIONS(8565), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169453] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7939), 1, - anon_sym_GT, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8573), 1, - sym_jsx_identifier, - ACTIONS(8575), 1, - anon_sym_SLASH_GT, - STATE(3947), 1, - sym_nested_identifier, - STATE(4203), 1, - sym_jsx_namespace_name, - STATE(4782), 1, + STATE(4776), 1, sym_comment, - [169526] = 4, + ACTIONS(8567), 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, + [169471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4783), 1, + STATE(4777), 1, sym_comment, - ACTIONS(8577), 6, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [169544] = 9, + STATE(4783), 1, + aux_sym_object_type_repeat1, + ACTIONS(8571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169493] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - ACTIONS(8579), 1, - anon_sym_QMARK, - STATE(4055), 1, - sym_formal_parameters, - STATE(4784), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8573), 1, + anon_sym_export, + ACTIONS(8575), 1, + anon_sym_class, + ACTIONS(8577), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4778), 1, sym_comment, - STATE(5147), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [169572] = 4, + STATE(5608), 1, + sym_decorator, + [169521] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4785), 1, + STATE(4779), 1, sym_comment, - ACTIONS(8581), 6, + ACTIONS(5697), 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, - [169590] = 4, + [169539] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4786), 1, + STATE(4780), 1, sym_comment, - ACTIONS(8583), 6, + ACTIONS(5703), 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, - [169608] = 4, + [169557] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4787), 1, - sym_comment, - ACTIONS(8585), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(1902), 1, anon_sym_LT, - [169626] = 8, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8579), 1, + sym_identifier, + STATE(4781), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6982), 1, + sym__call_signature, + [169585] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, + STATE(4782), 1, + sym_comment, + ACTIONS(8571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169607] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4673), 1, + aux_sym_object_type_repeat1, + STATE(4783), 1, + sym_comment, + ACTIONS(8583), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8581), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169629] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8325), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8585), 1, anon_sym_BQUOTE, - STATE(4788), 1, - sym_comment, - STATE(4827), 1, + STATE(4744), 1, aux_sym_template_string_repeat1, - STATE(5469), 1, + STATE(4784), 1, + sym_comment, + STATE(5571), 1, sym_template_substitution, - ACTIONS(7921), 2, + ACTIONS(7911), 2, sym__template_chars, sym_escape_sequence, - [169652] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169655] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(4789), 1, - sym_comment, - ACTIONS(8581), 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, - [169670] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4790), 1, + ACTIONS(8495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_BQUOTE, + STATE(4785), 1, sym_comment, - ACTIONS(8589), 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, - [169688] = 7, + STATE(4790), 1, + aux_sym_template_string_repeat1, + STATE(5571), 1, + sym_template_substitution, + ACTIONS(7911), 2, + sym__template_chars, + sym_escape_sequence, + [169681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - STATE(4791), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3375), 1, + sym_statement_block, + STATE(4786), 1, sym_comment, - ACTIONS(8591), 3, - anon_sym_EQ, + ACTIONS(8174), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [169712] = 4, + anon_sym_SEMI, + [169703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4792), 1, + STATE(4787), 1, sym_comment, - ACTIONS(8210), 6, + ACTIONS(8589), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [169730] = 4, + anon_sym_PIPE_RBRACE, + [169721] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4793), 1, + STATE(4788), 1, sym_comment, - ACTIONS(8581), 6, + ACTIONS(5617), 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, - [169748] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169739] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4794), 1, - sym_comment, - ACTIONS(7297), 6, - anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [169766] = 9, + STATE(3392), 1, + sym_statement_block, + STATE(4789), 1, + sym_comment, + ACTIONS(8176), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169761] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8593), 1, - anon_sym_export, - ACTIONS(8595), 1, - anon_sym_class, - ACTIONS(8597), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(4795), 1, + ACTIONS(8594), 1, + anon_sym_BQUOTE, + ACTIONS(8596), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5571), 1, + sym_template_substitution, + ACTIONS(8591), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4790), 2, sym_comment, - STATE(5410), 1, - sym_decorator, - [169794] = 8, + aux_sym_template_string_repeat1, + [169785] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8601), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + ACTIONS(8599), 1, anon_sym_QMARK, - STATE(4796), 1, + STATE(4061), 1, + sym_formal_parameters, + STATE(4791), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [169820] = 6, + STATE(6279), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [169813] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4709), 1, - aux_sym_object_type_repeat1, - STATE(4797), 1, + STATE(4792), 1, sym_comment, - ACTIONS(8605), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8603), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169842] = 6, + ACTIONS(8601), 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, + [169831] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3361), 1, - sym_statement_block, - STATE(4798), 1, + STATE(4793), 1, sym_comment, - ACTIONS(8051), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169864] = 9, + ACTIONS(5627), 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, + [169849] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8607), 1, + ACTIONS(8603), 1, anon_sym_QMARK, - STATE(4255), 1, - sym_formal_parameters, - STATE(4733), 1, - sym__call_signature, - STATE(4799), 1, + STATE(4794), 1, sym_comment, - STATE(6732), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - [169892] = 8, + STATE(6657), 1, + sym__call_signature, + [169877] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(8299), 1, + ACTIONS(8435), 1, anon_sym_LBRACK, - ACTIONS(8609), 1, + ACTIONS(8605), 1, sym_identifier, - STATE(4800), 1, + STATE(4795), 1, sym_comment, - STATE(6310), 1, + STATE(5741), 1, sym__destructuring_pattern, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - [169918] = 9, + [169903] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + STATE(4796), 1, + sym_comment, + ACTIONS(8607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4520), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7193), 1, + anon_sym_QMARK, + [169923] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4797), 1, + sym_comment, + ACTIONS(8609), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [169941] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, anon_sym_LPAREN, ACTIONS(8611), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, - STATE(4801), 1, + sym_identifier, + STATE(4798), 1, sym_comment, - STATE(6404), 1, - sym__call_signature, - STATE(6493), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - [169946] = 9, + STATE(6982), 1, + sym__call_signature, + [169969] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4799), 1, + sym_comment, + ACTIONS(8033), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [169987] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, ACTIONS(8613), 1, sym_identifier, - STATE(4683), 1, - sym_formal_parameters, - STATE(4802), 1, + STATE(4800), 1, sym_comment, - STATE(6493), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - STATE(6520), 1, + STATE(6774), 1, sym__call_signature, - [169974] = 9, + [170015] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, ACTIONS(8615), 1, anon_sym_QMARK, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(4803), 1, + STATE(4709), 1, + sym__call_signature, + STATE(4801), 1, sym_comment, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - STATE(6672), 1, + [170043] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8617), 1, + sym_identifier, + STATE(4802), 1, + sym_comment, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, + sym_type_parameters, + STATE(6982), 1, sym__call_signature, - [170002] = 6, + [170071] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3402), 1, - sym_statement_block, - STATE(4804), 1, + ACTIONS(8619), 1, + anon_sym_default, + ACTIONS(8622), 1, + anon_sym_RBRACE, + ACTIONS(8624), 1, + anon_sym_case, + STATE(4803), 2, sym_comment, - ACTIONS(8130), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170024] = 6, + aux_sym_switch_body_repeat1, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [170095] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3398), 1, - sym_statement_block, - STATE(4805), 1, + ACTIONS(8495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8627), 1, + anon_sym_BQUOTE, + STATE(4785), 1, + aux_sym_template_string_repeat1, + STATE(4804), 1, sym_comment, - ACTIONS(8132), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170046] = 8, + STATE(5571), 1, + sym_template_substitution, + ACTIONS(7911), 2, + sym__template_chars, + sym_escape_sequence, + [170121] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(8299), 1, + ACTIONS(8435), 1, anon_sym_LBRACK, - ACTIONS(8617), 1, + ACTIONS(8629), 1, sym_identifier, - STATE(4806), 1, + STATE(4805), 1, sym_comment, - STATE(6431), 1, + STATE(5769), 1, sym__destructuring_pattern, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - [170072] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [170147] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4807), 1, - sym_comment, - ACTIONS(4518), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [170090] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8619), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, - STATE(4808), 1, + ACTIONS(8631), 1, + sym_identifier, + STATE(4806), 1, sym_comment, - STATE(6493), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - STATE(6908), 1, + STATE(6774), 1, sym__call_signature, - [170118] = 4, + [170175] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4809), 1, - sym_comment, - ACTIONS(5732), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(1902), 1, anon_sym_LT, - [170136] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(8621), 1, - anon_sym_QMARK, - STATE(4255), 1, - sym_formal_parameters, - STATE(4759), 1, - sym__call_signature, - STATE(4810), 1, + ACTIONS(8633), 1, + sym_identifier, + STATE(4807), 1, sym_comment, - STATE(6732), 1, + STATE(4813), 1, + sym_formal_parameters, + STATE(6459), 1, sym_type_parameters, - [170164] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6982), 1, + sym__call_signature, + [170203] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8003), 1, - sym_identifier, - STATE(4811), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8248), 1, + anon_sym_default, + ACTIONS(8252), 1, + anon_sym_case, + ACTIONS(8635), 1, + anon_sym_RBRACE, + STATE(4803), 1, + aux_sym_switch_body_repeat1, + STATE(4808), 1, sym_comment, - STATE(5073), 1, - sym_nested_identifier, - STATE(5616), 1, - sym_string, - STATE(6527), 1, - sym__module, - [170192] = 9, + STATE(5984), 2, + sym_switch_case, + sym_switch_default, + [170229] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8003), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8435), 1, + anon_sym_LBRACK, + ACTIONS(8637), 1, sym_identifier, - STATE(4812), 1, + STATE(4809), 1, sym_comment, - STATE(5073), 1, - sym_nested_identifier, - STATE(5616), 1, - sym_string, - STATE(6481), 1, - sym__module, - [170220] = 8, + STATE(5600), 1, + sym__destructuring_pattern, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + [170255] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(8299), 1, + ACTIONS(8435), 1, anon_sym_LBRACK, - ACTIONS(8623), 1, + ACTIONS(8639), 1, sym_identifier, - STATE(4813), 1, + STATE(4810), 1, sym_comment, - STATE(5473), 1, + STATE(6625), 1, sym__destructuring_pattern, - STATE(4288), 2, + STATE(4245), 2, sym_object_pattern, sym_array_pattern, - [170246] = 8, + [170281] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8625), 1, - anon_sym_RBRACE, - STATE(4744), 1, - aux_sym_switch_body_repeat1, - STATE(4814), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8641), 1, + anon_sym_QMARK, + STATE(4811), 1, sym_comment, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [170272] = 6, + STATE(4813), 1, + sym_formal_parameters, + STATE(6402), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [170309] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8643), 1, + anon_sym_export, + ACTIONS(8645), 1, + anon_sym_class, + ACTIONS(8647), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4812), 1, + sym_comment, + STATE(5608), 1, + sym_decorator, + [170337] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8431), 1, + anon_sym_COLON, + STATE(4813), 1, + sym_comment, + ACTIONS(7519), 2, anon_sym_LBRACE, - STATE(3410), 1, - sym_statement_block, + anon_sym_EQ_GT, + STATE(6677), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [170359] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8649), 1, + anon_sym_export, + ACTIONS(8651), 1, + anon_sym_class, + ACTIONS(8653), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4814), 1, + sym_comment, + STATE(5608), 1, + sym_decorator, + [170387] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8435), 1, + anon_sym_LBRACK, + ACTIONS(8655), 1, + sym_identifier, STATE(4815), 1, sym_comment, - ACTIONS(8130), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170294] = 9, + STATE(5896), 1, + sym__destructuring_pattern, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + [170413] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(8141), 1, + anon_sym_COMMA, + ACTIONS(8145), 1, anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8627), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(8657), 1, + anon_sym_LBRACE, + ACTIONS(8659), 1, + anon_sym_LBRACE_PIPE, STATE(4816), 1, sym_comment, - STATE(6466), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [170322] = 9, + STATE(5513), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5648), 1, + sym_type_arguments, + [170441] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8629), 1, + ACTIONS(8661), 1, sym_identifier, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, STATE(4817), 1, sym_comment, - STATE(6364), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - [170350] = 8, + STATE(6774), 1, + sym__call_signature, + [170469] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8325), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8631), 1, - anon_sym_BQUOTE, - STATE(4788), 1, - aux_sym_template_string_repeat1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8435), 1, + anon_sym_LBRACK, + ACTIONS(8663), 1, + sym_identifier, STATE(4818), 1, sym_comment, - STATE(5469), 1, - sym_template_substitution, - ACTIONS(7921), 2, - sym__template_chars, - sym_escape_sequence, - [170376] = 6, + STATE(6144), 1, + sym__destructuring_pattern, + STATE(4245), 2, + sym_object_pattern, + sym_array_pattern, + [170495] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8665), 1, + sym_identifier, + STATE(4813), 1, + sym_formal_parameters, + STATE(4819), 1, + sym_comment, + STATE(6459), 1, + sym_type_parameters, + STATE(6982), 1, + sym__call_signature, + [170523] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3413), 1, + STATE(3385), 1, sym_statement_block, - STATE(4819), 1, + STATE(4820), 1, sym_comment, - ACTIONS(8132), 4, + ACTIONS(8218), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170398] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [170545] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8633), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, - STATE(4820), 1, - sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6621), 1, - sym__call_signature, - [170426] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8635), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, STATE(4821), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6754), 1, - sym__call_signature, - [170454] = 9, + ACTIONS(8667), 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, + [170563] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(8637), 1, - anon_sym_QMARK, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(4020), 1, + anon_sym_DQUOTE, + ACTIONS(4022), 1, + anon_sym_SQUOTE, + ACTIONS(8184), 1, + sym_identifier, + STATE(1071), 1, + sym_nested_identifier, + STATE(1382), 1, + sym_string, + STATE(1546), 1, + sym__module, STATE(4822), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6804), 1, - sym__call_signature, - [170482] = 9, + [170591] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4020), 1, + anon_sym_DQUOTE, + ACTIONS(4022), 1, + anon_sym_SQUOTE, + ACTIONS(8184), 1, + sym_identifier, + STATE(1071), 1, + sym_nested_identifier, + STATE(1382), 1, + sym_string, + STATE(1569), 1, + sym__module, + STATE(4823), 1, + sym_comment, + [170619] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8669), 1, anon_sym_QMARK, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4823), 1, + STATE(4824), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6830), 1, + STATE(6528), 1, sym__call_signature, - [170510] = 9, + [170647] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8641), 1, + ACTIONS(8671), 1, sym_identifier, - STATE(4683), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4824), 1, + STATE(4825), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, + STATE(6357), 1, sym__call_signature, - [170538] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + STATE(6459), 1, + sym_type_parameters, + [170675] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4825), 1, - sym_comment, - ACTIONS(8643), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4518), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [170558] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(8069), 1, anon_sym_LPAREN, - ACTIONS(8645), 1, - anon_sym_QMARK, - STATE(4683), 1, + ACTIONS(8673), 1, + sym_identifier, + STATE(4813), 1, sym_formal_parameters, STATE(4826), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6509), 1, + STATE(6774), 1, sym__call_signature, - [170586] = 7, + [170703] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8650), 1, - anon_sym_BQUOTE, - ACTIONS(8652), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5469), 1, - sym_template_substitution, - ACTIONS(8647), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4827), 2, + STATE(4768), 1, + aux_sym_object_type_repeat1, + STATE(4827), 1, sym_comment, - aux_sym_template_string_repeat1, - [170610] = 4, + ACTIONS(8677), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8675), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170725] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(4828), 1, sym_comment, - ACTIONS(8655), 6, + ACTIONS(8679), 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, - [170628] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [170743] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8657), 1, - anon_sym_COMMA, - ACTIONS(8659), 1, - anon_sym_GT, - STATE(4829), 1, - sym_comment, - STATE(6198), 1, - aux_sym_type_arguments_repeat1, - [170656] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_GT, - STATE(4337), 1, - sym_arguments, - STATE(4830), 1, + STATE(4829), 1, sym_comment, - STATE(6193), 1, - aux_sym_type_arguments_repeat1, - [170684] = 4, + ACTIONS(8681), 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, + [170761] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4831), 1, + STATE(4830), 1, sym_comment, - ACTIONS(8665), 6, + ACTIONS(8683), 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, - [170702] = 5, + [170779] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8669), 1, - anon_sym_EQ, - STATE(4832), 1, + STATE(4831), 1, sym_comment, - ACTIONS(8667), 5, + ACTIONS(8679), 6, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [170722] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8671), 1, - anon_sym_export, - ACTIONS(8673), 1, - anon_sym_class, - ACTIONS(8675), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(4833), 1, - sym_comment, - STATE(5410), 1, - sym_decorator, - [170750] = 4, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170797] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4834), 1, + STATE(4832), 1, sym_comment, - ACTIONS(8677), 6, + ACTIONS(8685), 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, - [170768] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170815] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(8679), 1, - sym_identifier, - STATE(4683), 1, + ACTIONS(8687), 1, + anon_sym_QMARK, + STATE(4061), 1, sym_formal_parameters, - STATE(4835), 1, + STATE(4833), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6639), 1, + STATE(5147), 1, sym__call_signature, - [170796] = 9, + STATE(6986), 1, + sym_type_parameters, + [170843] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(8681), 1, - anon_sym_LBRACE, - ACTIONS(8683), 1, - anon_sym_COMMA, - STATE(4836), 1, + STATE(4834), 1, sym_comment, - STATE(6166), 1, - aux_sym_implements_clause_repeat1, - [170824] = 8, + ACTIONS(8689), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [170867] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(8181), 1, - anon_sym_EQ, - STATE(4837), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym_statement_block, + STATE(4835), 1, sym_comment, - STATE(5582), 1, - sym_type_annotation, - STATE(6721), 1, - sym__initializer, - ACTIONS(8685), 2, + ACTIONS(8079), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [170850] = 9, + anon_sym_SEMI, + [170889] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8687), 1, - anon_sym_export, - ACTIONS(8689), 1, - anon_sym_class, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(8691), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + anon_sym_QMARK, + STATE(4813), 1, + sym_formal_parameters, + STATE(4836), 1, + sym_comment, + STATE(6459), 1, + sym_type_parameters, + STATE(6922), 1, + sym__call_signature, + [170917] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4837), 1, + sym_comment, + ACTIONS(8679), 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, + [170935] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(8693), 1, + anon_sym_QMARK, + STATE(4813), 1, + sym_formal_parameters, STATE(4838), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [170878] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6866), 1, + sym__call_signature, + [170963] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3388), 1, - sym_statement_block, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8697), 1, + anon_sym_QMARK, STATE(4839), 1, sym_comment, - ACTIONS(8149), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8695), 2, anon_sym_COMMA, - anon_sym_SEMI, - [170900] = 8, + anon_sym_RBRACK, + [170989] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_default, - ACTIONS(8248), 1, - anon_sym_case, - ACTIONS(8693), 1, - anon_sym_RBRACE, - STATE(4814), 1, - aux_sym_switch_body_repeat1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_statement_block, STATE(4840), 1, sym_comment, - STATE(6137), 2, - sym_switch_case, - sym_switch_default, - [170926] = 9, + ACTIONS(8077), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171011] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8695), 1, - anon_sym_export, - ACTIONS(8697), 1, - anon_sym_class, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(8699), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + anon_sym_QMARK, + STATE(4813), 1, + sym_formal_parameters, STATE(4841), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [170954] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6459), 1, + sym_type_parameters, + STATE(6907), 1, + sym__call_signature, + [171039] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(8083), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, ACTIONS(8701), 1, - sym_identifier, - STATE(4683), 1, + anon_sym_QMARK, + STATE(4813), 1, sym_formal_parameters, STATE(4842), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6921), 1, + STATE(6623), 1, sym__call_signature, - [170982] = 9, + [171067] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, ACTIONS(8703), 1, anon_sym_QMARK, - STATE(4055), 1, + STATE(4286), 1, sym_formal_parameters, + STATE(4616), 1, + sym__call_signature, STATE(4843), 1, sym_comment, - STATE(5378), 1, - sym__call_signature, - STATE(6769), 1, + STATE(6561), 1, sym_type_parameters, - [171010] = 8, + [171095] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(1902), 1, anon_sym_LT, - STATE(4255), 1, + ACTIONS(8069), 1, + anon_sym_LPAREN, + ACTIONS(8705), 1, + sym_identifier, + STATE(4813), 1, sym_formal_parameters, STATE(4844), 1, sym_comment, - STATE(5267), 1, - sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [171035] = 6, + STATE(6568), 1, + sym__call_signature, + [171123] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4845), 1, sym_comment, - STATE(5750), 1, - sym__initializer, - ACTIONS(8705), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171056] = 6, + ACTIONS(7253), 6, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [171141] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4846), 1, sym_comment, - STATE(5700), 1, + STATE(5848), 1, sym__initializer, ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171077] = 4, + [171162] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4847), 1, sym_comment, - ACTIONS(3522), 5, + STATE(6132), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171094] = 8, + [171183] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4055), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, STATE(4848), 1, sym_comment, - STATE(5374), 1, - sym__call_signature, - STATE(6769), 1, + STATE(6459), 1, sym_type_parameters, - [171119] = 4, + STATE(6918), 1, + sym__call_signature, + [171208] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4849), 1, sym_comment, - ACTIONS(8132), 5, + STATE(5819), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171136] = 8, + [171229] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4850), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6792), 1, - sym__call_signature, - [171161] = 6, + STATE(5831), 1, + sym__initializer, + ACTIONS(8713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171250] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4851), 1, sym_comment, - STATE(5808), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171182] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6906), 1, + sym__call_signature, + [171275] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8651), 1, + anon_sym_class, + ACTIONS(8653), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(4852), 1, sym_comment, - ACTIONS(8149), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171199] = 6, + STATE(5608), 1, + sym_decorator, + [171300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4853), 1, sym_comment, - STATE(5807), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8091), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171220] = 8, + anon_sym_PIPE_RBRACE, + [171317] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(8715), 1, + anon_sym_BQUOTE, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, STATE(4854), 1, sym_comment, - STATE(4890), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [171245] = 6, + STATE(5087), 1, + aux_sym_template_literal_type_repeat1, + STATE(6024), 1, + sym_template_type, + [171342] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4855), 1, sym_comment, - STATE(5801), 1, - sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8721), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171266] = 8, + anon_sym_PIPE_RBRACE, + [171359] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4683), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, STATE(4856), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6866), 1, + STATE(6864), 1, sym__call_signature, - [171291] = 4, + [171384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4857), 1, sym_comment, - ACTIONS(8130), 5, + STATE(5840), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171308] = 4, + [171405] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(4858), 1, + sym_comment, + STATE(5844), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171426] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(4859), 1, + sym_comment, + STATE(6459), 1, + sym_type_parameters, + STATE(6797), 1, + sym__call_signature, + [171451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4858), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(4860), 1, sym_comment, - ACTIONS(8711), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171325] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6792), 1, + sym__call_signature, + [171476] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4859), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(4861), 1, sym_comment, - ACTIONS(8132), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171342] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6787), 1, + sym__call_signature, + [171501] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(4860), 1, - sym_comment, - STATE(5752), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8723), 1, + anon_sym_LBRACE, + ACTIONS(8725), 1, anon_sym_SEMI, - [171363] = 8, + ACTIONS(8727), 1, + sym__automatic_semicolon, + ACTIONS(8729), 1, + sym__function_signature_automatic_semicolon, + STATE(436), 1, + sym_statement_block, + STATE(4862), 1, + sym_comment, + [171526] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4683), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, - STATE(4861), 1, + STATE(4863), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6873), 1, + STATE(6743), 1, sym__call_signature, - [171388] = 4, + [171551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4862), 1, + STATE(4864), 1, sym_comment, - ACTIONS(8713), 5, + ACTIONS(8133), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171405] = 4, + [171568] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4863), 1, + STATE(4865), 1, sym_comment, - ACTIONS(8147), 5, + ACTIONS(8731), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171422] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(4864), 1, - sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6893), 1, - sym__call_signature, - [171447] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4865), 1, - sym_comment, - STATE(5306), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [171472] = 4, + [171585] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4866), 1, sym_comment, - ACTIONS(8715), 5, + STATE(5851), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171489] = 6, + [171606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4867), 1, sym_comment, - STATE(5718), 1, + STATE(5895), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171510] = 4, + [171627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4868), 1, sym_comment, - ACTIONS(8717), 5, + STATE(5845), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171527] = 8, + [171648] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, STATE(4869), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6924), 1, - sym__call_signature, - [171552] = 4, + ACTIONS(8735), 2, + anon_sym_COMMA, + anon_sym_GT, + [171671] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4870), 1, sym_comment, - ACTIONS(8719), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171569] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6637), 1, + sym__call_signature, + [171696] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8721), 1, - anon_sym_BQUOTE, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4871), 1, sym_comment, - STATE(5020), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [171594] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6632), 1, + sym__call_signature, + [171721] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2235), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, - anon_sym_LBRACE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4733), 1, + sym__call_signature, STATE(4872), 1, sym_comment, - ACTIONS(5256), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [171615] = 8, + STATE(6561), 1, + sym_type_parameters, + [171746] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, STATE(4873), 1, sym_comment, - STATE(5226), 1, + STATE(6457), 1, sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [171640] = 6, + [171771] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4874), 1, sym_comment, - STATE(5689), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171661] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6620), 1, + sym__call_signature, + [171796] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8727), 1, - anon_sym_class, - ACTIONS(8729), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(8737), 1, + anon_sym_LBRACE, + ACTIONS(8739), 1, + anon_sym_SEMI, + ACTIONS(8741), 1, + sym__automatic_semicolon, + ACTIONS(8743), 1, + sym__function_signature_automatic_semicolon, + STATE(387), 1, + sym_statement_block, STATE(4875), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [171686] = 8, + [171821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, STATE(4876), 1, sym_comment, - STATE(5181), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [171711] = 6, + ACTIONS(8745), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4877), 1, sym_comment, - STATE(5699), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8747), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171732] = 4, + anon_sym_PIPE_RBRACE, + [171855] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(8749), 1, + anon_sym_BQUOTE, STATE(4878), 1, sym_comment, - ACTIONS(2351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171749] = 6, + STATE(4984), 1, + aux_sym_template_literal_type_repeat1, + STATE(6024), 1, + sym_template_type, + [171880] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4879), 1, sym_comment, - STATE(5697), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171770] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6615), 1, + sym__call_signature, + [171905] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(4880), 1, sym_comment, - ACTIONS(3468), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171787] = 6, + STATE(5344), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [171930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4881), 1, sym_comment, - STATE(6312), 1, - sym__initializer, - ACTIONS(8731), 3, + ACTIONS(8751), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171808] = 6, + anon_sym_PIPE_RBRACE, + [171947] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2239), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5254), 1, - anon_sym_LBRACE, STATE(4882), 1, sym_comment, - ACTIONS(5256), 3, + ACTIONS(8089), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [171829] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4883), 1, sym_comment, - STATE(5645), 1, - sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8753), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171850] = 6, + anon_sym_PIPE_RBRACE, + [171981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4884), 1, sym_comment, - STATE(5878), 1, - sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8093), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171871] = 8, + anon_sym_PIPE_RBRACE, + [171998] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8733), 1, - anon_sym_LBRACE, - ACTIONS(8735), 1, - anon_sym_SEMI, - ACTIONS(8737), 1, - sym__automatic_semicolon, - ACTIONS(8739), 1, - sym__function_signature_automatic_semicolon, - STATE(383), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4885), 1, sym_comment, - [171896] = 8, + STATE(5815), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4518), 1, - anon_sym_COLON, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(8743), 1, - anon_sym_RBRACE, STATE(4886), 1, sym_comment, - STATE(6192), 1, - aux_sym_object_pattern_repeat1, - [171921] = 8, + ACTIONS(8089), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172036] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, sym_formal_parameters, - STATE(4682), 1, - sym__call_signature, STATE(4887), 1, sym_comment, - STATE(6732), 1, + STATE(5137), 1, + sym__call_signature, + STATE(6986), 1, sym_type_parameters, - [171946] = 6, + [172061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4888), 1, sym_comment, - STATE(6127), 1, - sym__initializer, - ACTIONS(8745), 3, + ACTIONS(8093), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171967] = 6, + anon_sym_PIPE_RBRACE, + [172078] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4889), 1, sym_comment, - STATE(5653), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171988] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6923), 1, + sym__call_signature, + [172103] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4890), 1, sym_comment, - ACTIONS(8155), 5, + STATE(5814), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172005] = 8, + [172124] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8011), 1, - anon_sym_LBRACE, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(1255), 1, - sym_object_type, STATE(4891), 1, sym_comment, - STATE(5720), 1, - sym_extends_type_clause, - [172030] = 6, + ACTIONS(8755), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172141] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8073), 1, + anon_sym_LBRACE, + ACTIONS(8757), 1, + anon_sym_DOT, STATE(4892), 1, sym_comment, - STATE(5658), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172051] = 4, + STATE(6349), 1, + sym_statement_block, + ACTIONS(2071), 2, + anon_sym_else, + anon_sym_while, + [172164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4893), 1, sym_comment, - ACTIONS(3522), 5, + ACTIONS(2229), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172068] = 6, + [172181] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4894), 1, sym_comment, - STATE(5659), 1, + STATE(5969), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172089] = 4, + [172202] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4895), 1, sym_comment, - ACTIONS(3522), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172106] = 4, + ACTIONS(8761), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [172219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4896), 1, sym_comment, - ACTIONS(6055), 5, + ACTIONS(5862), 5, anon_sym_EQ, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - [172123] = 6, + [172236] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4897), 1, sym_comment, - STATE(5838), 1, + STATE(5852), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172144] = 6, + [172257] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4898), 1, sym_comment, - STATE(6215), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172165] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6574), 1, + sym__call_signature, + [172282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4899), 1, sym_comment, - ACTIONS(6324), 5, - anon_sym_EQ, + ACTIONS(8091), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [172182] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172299] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(4900), 1, sym_comment, - ACTIONS(5732), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [172199] = 6, + STATE(5306), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [172324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4901), 1, sym_comment, - STATE(6212), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8763), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172220] = 6, + anon_sym_PIPE_RBRACE, + [172341] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4902), 1, sym_comment, - STATE(6211), 1, + STATE(5856), 1, sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172241] = 6, + [172362] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(7997), 1, + anon_sym_LBRACE_PIPE, + STATE(1399), 1, + sym_object_type, STATE(4903), 1, sym_comment, - STATE(5817), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172262] = 4, + STATE(5726), 1, + sym_extends_type_clause, + [172387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4904), 1, sym_comment, - ACTIONS(3522), 5, + STATE(5862), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172279] = 6, + [172408] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, STATE(4905), 1, sym_comment, - STATE(5664), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172300] = 4, + STATE(5185), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [172433] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4906), 1, sym_comment, - ACTIONS(8075), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172317] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6531), 1, + sym__call_signature, + [172458] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4907), 1, sym_comment, - STATE(5140), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [172342] = 6, + STATE(5864), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172479] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4908), 1, sym_comment, - STATE(5665), 1, + STATE(5813), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172363] = 8, + [172500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8751), 1, - anon_sym_BQUOTE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4909), 1, sym_comment, - STATE(5108), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [172388] = 6, + STATE(5865), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4910), 1, sym_comment, - STATE(5671), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8133), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172409] = 6, + anon_sym_PIPE_RBRACE, + [172538] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4911), 1, sym_comment, - STATE(5855), 1, + STATE(5879), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172430] = 6, + [172559] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4912), 1, sym_comment, - STATE(5672), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172451] = 8, + STATE(6450), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [172584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(4913), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6613), 1, - sym__call_signature, - [172476] = 8, + ACTIONS(8765), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [172601] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(5396), 1, + anon_sym_in, STATE(4914), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6586), 1, - sym__call_signature, - [172501] = 4, + ACTIONS(6344), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [172620] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4915), 1, sym_comment, - ACTIONS(8075), 5, + STATE(6327), 1, + sym__initializer, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172518] = 4, + [172641] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8342), 1, + anon_sym_class, + ACTIONS(8344), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(4916), 1, sym_comment, - ACTIONS(3522), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172535] = 6, + STATE(5608), 1, + sym_decorator, + [172666] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4917), 1, sym_comment, - STATE(5679), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172556] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6500), 1, + sym__call_signature, + [172691] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4918), 1, sym_comment, - STATE(5111), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [172581] = 8, + STATE(5888), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172712] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, STATE(4919), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6540), 1, + STATE(5271), 1, sym__call_signature, - [172606] = 6, + STATE(6561), 1, + sym_type_parameters, + [172737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4920), 1, sym_comment, - STATE(6056), 1, + STATE(5890), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172627] = 8, + [172758] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8645), 1, + anon_sym_class, + ACTIONS(8647), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(4921), 1, sym_comment, - STATE(5043), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [172652] = 8, + STATE(5608), 1, + sym_decorator, + [172783] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4922), 1, sym_comment, - STATE(6482), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [172677] = 6, + STATE(6330), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172804] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(8168), 1, anon_sym_EQ, + ACTIONS(8769), 1, + anon_sym_COMMA, + ACTIONS(8771), 1, + anon_sym_RBRACE, STATE(4923), 1, sym_comment, - STATE(5685), 1, + STATE(6274), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172698] = 8, + [172829] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8653), 1, + anon_sym_abstract, + ACTIONS(8773), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(4924), 1, sym_comment, - STATE(5035), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [172723] = 6, + STATE(5608), 1, + sym_decorator, + [172854] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8775), 1, + sym_identifier, + ACTIONS(8777), 1, + anon_sym_GT, + ACTIONS(8779), 1, + sym_jsx_identifier, STATE(4925), 1, sym_comment, - STATE(5686), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172744] = 4, + STATE(6536), 1, + sym_nested_identifier, + STATE(7322), 1, + sym_jsx_namespace_name, + [172879] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, STATE(4926), 1, sym_comment, - ACTIONS(8753), 5, - sym__automatic_semicolon, + STATE(6525), 1, + sym_type_annotation, + ACTIONS(4257), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172761] = 6, + anon_sym_RBRACK, + [172900] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4927), 1, sym_comment, - STATE(5687), 1, + STATE(5905), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172782] = 8, + [172921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(8781), 1, + anon_sym_EQ_GT, STATE(4928), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6637), 1, - sym__call_signature, - [172807] = 6, + STATE(6677), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [172942] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4929), 1, sym_comment, - STATE(6054), 1, + STATE(5907), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172828] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [172963] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4930), 1, - sym_comment, - STATE(4960), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [172853] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8673), 1, - anon_sym_class, - ACTIONS(8675), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(4931), 1, + STATE(4930), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [172878] = 6, + ACTIONS(8784), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172980] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4932), 1, + STATE(4931), 1, sym_comment, - STATE(5705), 1, + STATE(5911), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172899] = 8, + [173001] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8755), 1, - anon_sym_LBRACE, - ACTIONS(8757), 1, - anon_sym_SEMI, - ACTIONS(8759), 1, - sym__automatic_semicolon, - ACTIONS(8761), 1, - sym__function_signature_automatic_semicolon, - STATE(428), 1, - sym_statement_block, - STATE(4933), 1, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(8786), 1, + anon_sym_EQ_GT, + STATE(4932), 1, sym_comment, - [172924] = 8, + STATE(6908), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [173022] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4885), 1, - sym__call_signature, - STATE(4934), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(4933), 1, sym_comment, - STATE(6732), 1, - sym_type_parameters, - [172949] = 4, + STATE(5812), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173043] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4935), 1, + STATE(4934), 1, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2225), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172966] = 6, + [173060] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4936), 1, + STATE(4935), 1, sym_comment, - STATE(5856), 1, + STATE(5918), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172987] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173081] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(4937), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4936), 1, sym_comment, - ACTIONS(8763), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173004] = 8, + ACTIONS(6079), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173098] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4938), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8577), 1, + anon_sym_abstract, + ACTIONS(8789), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4937), 1, sym_comment, - STATE(5370), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [173029] = 6, + STATE(5608), 1, + sym_decorator, + [173123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4939), 1, + STATE(4938), 1, sym_comment, - STATE(5721), 1, + STATE(6182), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8791), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173050] = 6, + [173144] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4939), 1, + sym_comment, + STATE(5207), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [173169] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4940), 1, sym_comment, - STATE(6181), 1, + STATE(5931), 1, sym__initializer, - ACTIONS(8765), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173071] = 8, + [173190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4941), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6800), 1, - sym__call_signature, - [173096] = 6, + STATE(6331), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173211] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4942), 1, sym_comment, - STATE(6052), 1, + STATE(5932), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173117] = 4, + [173232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4943), 1, sym_comment, - ACTIONS(8283), 5, - sym__automatic_semicolon, + ACTIONS(6516), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173134] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4944), 1, - sym_comment, - ACTIONS(8767), 5, + ACTIONS(7165), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [173151] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4945), 1, + STATE(4944), 1, sym_comment, - ACTIONS(3492), 5, + STATE(5933), 1, + sym__initializer, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173168] = 4, + [173270] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8795), 1, + sym_identifier, + STATE(4945), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(6437), 1, + sym__module_export_name, + [173295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4946), 1, sym_comment, - ACTIONS(8077), 5, - sym__automatic_semicolon, + ACTIONS(6516), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173185] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173312] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8073), 1, + anon_sym_LBRACE, + ACTIONS(8797), 1, + anon_sym_DOT, STATE(4947), 1, sym_comment, - STATE(5734), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173206] = 4, + STATE(6349), 1, + sym_statement_block, + ACTIONS(2071), 2, + anon_sym_else, + anon_sym_while, + [173335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4948), 1, sym_comment, - ACTIONS(8769), 5, + ACTIONS(3486), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173223] = 6, + [173352] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4949), 1, sym_comment, - STATE(5735), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173244] = 8, + STATE(6415), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [173377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8163), 1, - anon_sym_LBRACE, - ACTIONS(8165), 1, - anon_sym_LBRACE_PIPE, - STATE(1492), 1, - sym_object_type, STATE(4950), 1, sym_comment, - STATE(6184), 1, - sym_extends_type_clause, - [173269] = 6, + ACTIONS(6516), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173394] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4951), 1, sym_comment, - STATE(5738), 1, + STATE(5938), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173290] = 4, + [173415] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8725), 1, + anon_sym_SEMI, + ACTIONS(8727), 1, + sym__automatic_semicolon, + ACTIONS(8729), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8799), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_statement_block, STATE(4952), 1, sym_comment, - ACTIONS(3530), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173307] = 6, + [173440] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4953), 1, sym_comment, - STATE(6047), 1, + STATE(5945), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173328] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173461] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8771), 1, - sym_identifier, - ACTIONS(8773), 1, - anon_sym_GT, - ACTIONS(8775), 1, - sym_jsx_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4954), 1, sym_comment, - STATE(6397), 1, - sym_nested_identifier, - STATE(7407), 1, - sym_jsx_namespace_name, - [173353] = 8, + STATE(5752), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173482] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8697), 1, - anon_sym_class, - ACTIONS(8699), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(4955), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [173378] = 4, + ACTIONS(8801), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [173505] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4956), 1, sym_comment, - ACTIONS(3504), 5, + STATE(5947), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173395] = 6, + [173526] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8739), 1, + anon_sym_SEMI, + ACTIONS(8741), 1, + sym__automatic_semicolon, + ACTIONS(8743), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8805), 1, + anon_sym_LBRACE, + STATE(1020), 1, + sym_statement_block, STATE(4957), 1, sym_comment, - STATE(5744), 1, - sym__initializer, - ACTIONS(8709), 3, + [173551] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, + STATE(4958), 1, + sym_comment, + ACTIONS(8807), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [173416] = 6, + [173574] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(8777), 1, - anon_sym_EQ_GT, - STATE(4958), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8809), 1, + anon_sym_class, + ACTIONS(8811), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4959), 1, sym_comment, - STATE(6678), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [173437] = 6, + STATE(5608), 1, + sym_decorator, + [173599] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(4960), 1, sym_comment, - STATE(5745), 1, + STATE(5948), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173458] = 8, + [173620] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8735), 1, - anon_sym_SEMI, - ACTIONS(8737), 1, - sym__automatic_semicolon, - ACTIONS(8739), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8780), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_statement_block, - STATE(4960), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4961), 1, sym_comment, - [173483] = 6, + STATE(5139), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [173645] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4961), 1, + STATE(4962), 1, sym_comment, - STATE(5746), 1, + STATE(5949), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173504] = 8, + [173666] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4962), 1, + STATE(4963), 1, sym_comment, - STATE(5357), 1, + STATE(6412), 1, sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [173529] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4963), 1, - sym_comment, - ACTIONS(3504), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173546] = 4, + [173691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4964), 1, sym_comment, - ACTIONS(3504), 5, + ACTIONS(3418), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173563] = 6, + [173708] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4965), 1, sym_comment, - STATE(6032), 1, - sym__initializer, - ACTIONS(8782), 3, - sym__automatic_semicolon, + ACTIONS(6524), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [173584] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173725] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4966), 1, sym_comment, - STATE(5756), 1, + STATE(5811), 1, sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173605] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173746] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4967), 1, sym_comment, - ACTIONS(5552), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173622] = 4, + STATE(6397), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [173771] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(4968), 1, sym_comment, - ACTIONS(3534), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173639] = 6, + STATE(6432), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [173796] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4969), 1, sym_comment, - STATE(6018), 1, + STATE(6336), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173660] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4970), 1, - sym_comment, - ACTIONS(5588), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173677] = 6, + [173817] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4971), 1, + STATE(4970), 1, sym_comment, - STATE(6011), 1, + STATE(5953), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173698] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173838] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(4972), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(4971), 1, sym_comment, - ACTIONS(5560), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173715] = 6, + STATE(6430), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [173863] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(4973), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, + STATE(4972), 1, sym_comment, - STATE(5767), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8813), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [173736] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173886] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(4974), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8425), 1, + anon_sym_abstract, + ACTIONS(8815), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(4973), 1, sym_comment, - ACTIONS(5556), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173753] = 6, + STATE(5608), 1, + sym_decorator, + [173911] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(4975), 1, + STATE(4974), 1, sym_comment, - STATE(5775), 1, + STATE(5954), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173774] = 8, - ACTIONS(3), 1, + [173932] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8819), 1, + anon_sym_in, + ACTIONS(8821), 1, + anon_sym_of, + STATE(4975), 1, + sym_comment, + ACTIONS(8817), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173953] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8784), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8823), 1, + anon_sym_in, + ACTIONS(8825), 1, + anon_sym_of, STATE(4976), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6531), 1, - sym__module_export_name, - [173799] = 6, + ACTIONS(8817), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4977), 1, sym_comment, - STATE(5779), 1, - sym__initializer, - ACTIONS(8707), 3, + ACTIONS(8827), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173820] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [173991] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(4978), 1, sym_comment, - ACTIONS(5552), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173837] = 8, + ACTIONS(6307), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [174008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, STATE(4979), 1, sym_comment, - STATE(5198), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [173862] = 8, + ACTIONS(8829), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(4980), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6522), 1, - sym__call_signature, - [173887] = 8, + ACTIONS(6299), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [174042] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, - anon_sym_SEMI, - ACTIONS(8759), 1, - sym__automatic_semicolon, - ACTIONS(8761), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8786), 1, - anon_sym_LBRACE, - STATE(1171), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4981), 1, sym_comment, - [173912] = 7, + STATE(5955), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174063] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(4982), 1, sym_comment, - ACTIONS(8788), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [173935] = 4, + STATE(5154), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [174088] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4983), 1, sym_comment, - ACTIONS(3474), 5, + STATE(5968), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173952] = 6, + [174109] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(8831), 1, + anon_sym_BQUOTE, STATE(4984), 1, sym_comment, - STATE(5786), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173973] = 8, + STATE(5087), 1, + aux_sym_template_literal_type_repeat1, + STATE(6024), 1, + sym_template_type, + [174134] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(4985), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6516), 1, - sym__call_signature, - [173998] = 6, + ACTIONS(6299), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [174151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4986), 1, sym_comment, - STATE(5787), 1, + STATE(6039), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174019] = 5, + [174172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8792), 1, - anon_sym_EQ, STATE(4987), 1, sym_comment, - ACTIONS(4253), 4, + ACTIONS(6299), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [174038] = 7, + anon_sym_QMARK, + [174189] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4988), 1, sym_comment, - ACTIONS(8794), 2, + STATE(5978), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [174061] = 6, + [174210] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(4989), 1, sym_comment, - STATE(5788), 1, - sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8833), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174082] = 4, + anon_sym_PIPE_RBRACE, + [174227] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4990), 1, sym_comment, - ACTIONS(3456), 5, + STATE(5979), 1, + sym__initializer, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174099] = 8, + [174248] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8691), 1, - anon_sym_abstract, - ACTIONS(8796), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(8737), 1, + anon_sym_LBRACE, + ACTIONS(8835), 1, + anon_sym_SEMI, + ACTIONS(8837), 1, + sym__automatic_semicolon, + ACTIONS(8839), 1, + sym__function_signature_automatic_semicolon, + STATE(409), 1, + sym_statement_block, STATE(4991), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [174124] = 6, + [174273] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(4992), 1, sym_comment, - STATE(5789), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174145] = 4, + STATE(5162), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [174298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4993), 1, sym_comment, - ACTIONS(3442), 5, + ACTIONS(3414), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174162] = 6, + [174315] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4711), 1, + sym__call_signature, STATE(4994), 1, sym_comment, - STATE(5790), 1, - sym__initializer, - ACTIONS(8707), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174183] = 4, + STATE(6561), 1, + sym_type_parameters, + [174340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4995), 1, sym_comment, - ACTIONS(3438), 5, + ACTIONS(8841), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174200] = 4, + [174357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(4996), 1, sym_comment, - ACTIONS(2177), 5, + ACTIONS(3410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174217] = 6, + [174374] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(4997), 1, sym_comment, - STATE(6004), 1, + STATE(5998), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174238] = 8, + [174395] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, + STATE(4736), 1, + sym__call_signature, STATE(4998), 1, sym_comment, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - STATE(6495), 1, - sym__call_signature, - [174263] = 8, + [174420] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(4999), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6987), 1, - sym__call_signature, - [174288] = 8, + STATE(6001), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174441] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4683), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, STATE(5000), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6494), 1, + STATE(6648), 1, sym__call_signature, - [174313] = 6, + [174466] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5001), 1, sym_comment, - STATE(5902), 1, + STATE(6003), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174334] = 6, + [174487] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5002), 1, sym_comment, - STATE(5796), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174355] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6649), 1, + sym__call_signature, + [174512] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, STATE(5003), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6807), 1, + STATE(5164), 1, sym__call_signature, - [174380] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6561), 1, + sym_type_parameters, + [174537] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(8845), 1, + anon_sym_RBRACE, STATE(5004), 1, sym_comment, - ACTIONS(5278), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [174397] = 6, + STATE(5774), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, + sym__initializer, + [174562] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5005), 1, sym_comment, - STATE(5797), 1, + STATE(6285), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174418] = 8, + [174583] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5006), 1, sym_comment, - STATE(5345), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [174443] = 8, + STATE(6008), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174604] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4683), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, STATE(5007), 1, sym_comment, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - STATE(6803), 1, + STATE(6871), 1, sym__call_signature, - [174468] = 6, + [174629] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5008), 1, sym_comment, - STATE(6131), 1, + STATE(6009), 1, sym__initializer, - ACTIONS(8765), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174489] = 8, + [174650] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5009), 1, sym_comment, - STATE(5798), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [174514] = 6, + STATE(6300), 1, + sym__initializer, + ACTIONS(8847), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5010), 1, sym_comment, - STATE(5882), 1, + STATE(6010), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174535] = 8, + [174692] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5011), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6751), 1, - sym__call_signature, - [174560] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6281), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174713] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5012), 1, sym_comment, - ACTIONS(5282), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [174577] = 8, + ACTIONS(3408), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174730] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8344), 1, + anon_sym_abstract, + ACTIONS(8849), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(5013), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6628), 1, - sym__call_signature, - [174602] = 8, + STATE(5608), 1, + sym_decorator, + [174755] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(8805), 1, + anon_sym_LBRACE, + ACTIONS(8835), 1, + anon_sym_SEMI, + ACTIONS(8837), 1, + sym__automatic_semicolon, + ACTIONS(8839), 1, + sym__function_signature_automatic_semicolon, + STATE(1101), 1, + sym_statement_block, STATE(5014), 1, sym_comment, - STATE(6469), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [174627] = 8, + [174780] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, STATE(5015), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6602), 1, + STATE(5175), 1, sym__call_signature, - [174652] = 8, + STATE(6561), 1, + sym_type_parameters, + [174805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(5016), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6835), 1, - sym__call_signature, - [174677] = 8, + ACTIONS(3404), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174822] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, STATE(5017), 1, sym_comment, - STATE(5336), 1, - sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [174702] = 6, + STATE(6666), 1, + sym__call_signature, + [174847] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5018), 1, sym_comment, - STATE(5998), 1, + STATE(6288), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8851), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174723] = 6, + [174868] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5019), 1, sym_comment, - STATE(6180), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8853), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174744] = 8, + [174891] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8798), 1, - anon_sym_BQUOTE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5020), 1, sym_comment, - STATE(5394), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [174769] = 6, + STATE(6278), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5021), 1, sym_comment, - STATE(6226), 1, + STATE(6013), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174790] = 8, + [174933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5022), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6541), 1, - sym__call_signature, - [174815] = 6, + STATE(6269), 1, + sym__initializer, + ACTIONS(8855), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174954] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5023), 1, sym_comment, - STATE(6216), 1, - sym__initializer, - ACTIONS(8765), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174836] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6469), 1, + sym__call_signature, + [174979] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5024), 1, sym_comment, - ACTIONS(2165), 5, + ACTIONS(8609), 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, - [174853] = 6, + [174996] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5025), 1, sym_comment, - STATE(5803), 1, + STATE(5808), 1, sym__initializer, - ACTIONS(8800), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174874] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [175017] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8799), 1, + anon_sym_LBRACE, + ACTIONS(8857), 1, + anon_sym_SEMI, + ACTIONS(8859), 1, + sym__automatic_semicolon, + ACTIONS(8861), 1, + sym__function_signature_automatic_semicolon, + STATE(1173), 1, + sym_statement_block, STATE(5026), 1, sym_comment, - ACTIONS(5290), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [174891] = 8, + [175042] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4683), 1, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, sym_formal_parameters, STATE(5027), 1, sym_comment, - STATE(6492), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6459), 1, sym_type_parameters, - [174916] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5028), 1, - sym_comment, - STATE(6485), 1, + STATE(6674), 1, sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [174941] = 8, + [175067] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5029), 1, - sym_comment, - STATE(6433), 1, + STATE(4952), 1, sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [174966] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5030), 1, - sym_comment, - STATE(6185), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174987] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5031), 1, - sym_comment, - STATE(5980), 1, - sym__initializer, - ACTIONS(8705), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175008] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5032), 1, + STATE(5028), 1, sym_comment, - STATE(6456), 1, - sym__call_signature, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - [175033] = 8, + [175092] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5033), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5029), 1, sym_comment, - STATE(6441), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [175058] = 8, + STATE(6020), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(5034), 1, + STATE(5030), 1, sym_comment, - STATE(5339), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [175083] = 8, + ACTIONS(2283), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8733), 1, - anon_sym_LBRACE, - ACTIONS(8802), 1, - anon_sym_SEMI, - ACTIONS(8804), 1, - sym__automatic_semicolon, - ACTIONS(8806), 1, - sym__function_signature_automatic_semicolon, - STATE(406), 1, - sym_statement_block, - STATE(5035), 1, + STATE(5031), 1, sym_comment, - [175108] = 6, + ACTIONS(3394), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175147] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5036), 1, + STATE(5032), 1, sym_comment, - STATE(5967), 1, + STATE(6283), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8863), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175129] = 8, + [175168] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(8808), 1, - anon_sym_COMMA, - ACTIONS(8810), 1, - anon_sym_RBRACE, - STATE(5037), 1, + STATE(5033), 1, sym_comment, - STATE(5768), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, + STATE(6026), 1, sym__initializer, - [175154] = 4, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175189] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8795), 1, + sym_identifier, + STATE(5034), 1, + sym_comment, + STATE(5427), 1, + sym_string, + STATE(6680), 1, + sym__module_export_name, + [175214] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5038), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5035), 1, sym_comment, - ACTIONS(3490), 5, + STATE(6028), 1, + sym__initializer, + ACTIONS(8733), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175171] = 4, + [175235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5039), 1, + STATE(5036), 1, sym_comment, - ACTIONS(8494), 5, + ACTIONS(8505), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [175188] = 6, + [175252] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5040), 1, + STATE(5037), 1, sym_comment, - STATE(6210), 1, + STATE(5807), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175209] = 8, + [175273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + STATE(5038), 1, + sym_comment, + ACTIONS(3392), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175290] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7205), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4061), 1, sym_formal_parameters, - STATE(5041), 1, + STATE(5039), 1, sym_comment, - STATE(6362), 1, + STATE(6261), 1, sym__call_signature, - STATE(6493), 1, + STATE(6986), 1, sym_type_parameters, - [175234] = 6, + [175315] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5042), 1, + STATE(5040), 1, sym_comment, STATE(5806), 1, sym__initializer, - ACTIONS(8812), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175255] = 8, + [175336] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, - anon_sym_LBRACE, - ACTIONS(8802), 1, - anon_sym_SEMI, - ACTIONS(8804), 1, - sym__automatic_semicolon, - ACTIONS(8806), 1, - sym__function_signature_automatic_semicolon, - STATE(1120), 1, - sym_statement_block, - STATE(5043), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5041), 1, sym_comment, - [175280] = 4, + STATE(6253), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175357] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5044), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5042), 1, sym_comment, - ACTIONS(8814), 5, + STATE(6177), 1, + sym__initializer, + ACTIONS(8865), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175297] = 8, + [175378] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5045), 1, + STATE(5043), 1, sym_comment, - STATE(6402), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [175322] = 7, + ACTIONS(4985), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, - STATE(5046), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5044), 1, sym_comment, - ACTIONS(8816), 2, + STATE(6260), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [175345] = 8, + [175416] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(5045), 1, + sym_comment, + ACTIONS(5349), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175433] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5047), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5046), 1, sym_comment, - STATE(6371), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [175370] = 6, + ACTIONS(5327), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175450] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5048), 1, + STATE(5047), 1, sym_comment, - STATE(6179), 1, + STATE(6258), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175391] = 4, + [175471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5049), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5048), 1, sym_comment, - ACTIONS(3522), 5, + STATE(6033), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175408] = 8, + [175492] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, sym_formal_parameters, - STATE(4761), 1, + STATE(4875), 1, sym__call_signature, - STATE(5050), 1, + STATE(5049), 1, sym_comment, - STATE(6732), 1, + STATE(6561), 1, sym_type_parameters, - [175433] = 4, + [175517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5051), 1, + STATE(5050), 1, sym_comment, - ACTIONS(3580), 5, + ACTIONS(8519), 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, - [175450] = 4, + [175534] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5052), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5051), 1, sym_comment, - ACTIONS(8818), 5, + STATE(5796), 1, + sym__initializer, + ACTIONS(8713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175467] = 6, + [175555] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5053), 1, + STATE(5052), 1, sym_comment, - STATE(6313), 1, + STATE(6034), 1, sym__initializer, - ACTIONS(8820), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175488] = 6, + [175576] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8575), 1, + anon_sym_class, + ACTIONS(8577), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(5053), 1, + sym_comment, + STATE(5608), 1, + sym_decorator, + [175601] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5054), 1, sym_comment, - STATE(6202), 1, + STATE(6181), 1, sym__initializer, - ACTIONS(8820), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175509] = 4, + [175622] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5055), 1, + sym_comment, + ACTIONS(8551), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5055), 1, + ACTIONS(8867), 1, + anon_sym_EQ, + STATE(5056), 1, sym_comment, - ACTIONS(8822), 5, - sym__automatic_semicolon, + ACTIONS(4268), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175526] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + [175658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(5057), 1, sym_comment, - STATE(6316), 1, + STATE(6035), 1, sym__initializer, - ACTIONS(8765), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175547] = 8, + [175679] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(5057), 1, - sym_comment, - STATE(5301), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [175572] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5058), 1, sym_comment, - ACTIONS(5740), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175589] = 6, + STATE(5793), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175700] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5059), 1, sym_comment, - STATE(6174), 1, + STATE(6036), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175610] = 8, + [175721] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, + STATE(4957), 1, + sym__call_signature, STATE(5060), 1, sym_comment, - STATE(6493), 1, + STATE(6561), 1, sym_type_parameters, - STATE(6679), 1, - sym__call_signature, - [175635] = 4, + [175746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5061), 1, sym_comment, - ACTIONS(6352), 5, - anon_sym_EQ, + STATE(5791), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [175652] = 8, + anon_sym_SEMI, + [175767] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5062), 1, sym_comment, - STATE(6396), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [175677] = 8, + STATE(6038), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, STATE(5063), 1, sym_comment, - STATE(5274), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [175702] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8218), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175805] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5064), 1, sym_comment, - ACTIONS(5541), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175719] = 7, + STATE(6080), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175826] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(7435), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7439), 1, anon_sym_extends, - ACTIONS(8790), 1, + ACTIONS(8803), 1, anon_sym_PIPE, STATE(5065), 1, sym_comment, - ACTIONS(8824), 2, + ACTIONS(8869), 2, sym__automatic_semicolon, anon_sym_SEMI, - [175742] = 6, + [175849] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5066), 1, sym_comment, - STATE(5883), 1, + STATE(5790), 1, sym__initializer, - ACTIONS(8709), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175763] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [175870] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5067), 1, sym_comment, - ACTIONS(5545), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175780] = 8, + ACTIONS(8871), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175887] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5068), 1, sym_comment, - STATE(5266), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [175805] = 8, + STATE(6040), 1, + sym__initializer, + ACTIONS(8733), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8595), 1, - anon_sym_class, - ACTIONS(8597), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, STATE(5069), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [175830] = 4, + ACTIONS(3374), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175925] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5070), 1, sym_comment, - ACTIONS(3396), 5, + STATE(6058), 1, + sym__initializer, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175847] = 4, + [175946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5071), 1, sym_comment, - ACTIONS(5807), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [175864] = 4, + STATE(6184), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175967] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4991), 1, + sym__call_signature, STATE(5072), 1, sym_comment, - ACTIONS(5904), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [175881] = 7, + STATE(6561), 1, + sym_type_parameters, + [175992] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - ACTIONS(8826), 1, - anon_sym_DOT, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5073), 1, sym_comment, - STATE(6339), 1, - sym_statement_block, - ACTIONS(2061), 2, - anon_sym_else, - anon_sym_while, - [175904] = 7, + STATE(5789), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176013] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - ACTIONS(8828), 1, - anon_sym_DOT, STATE(5074), 1, sym_comment, - STATE(6339), 1, - sym_statement_block, - ACTIONS(2061), 2, - anon_sym_else, - anon_sym_while, - [175927] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3376), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176030] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, STATE(5075), 1, sym_comment, - ACTIONS(8830), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175944] = 4, + ACTIONS(8873), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5076), 1, sym_comment, - ACTIONS(3566), 5, + ACTIONS(3378), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175961] = 6, + [176070] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5077), 1, sym_comment, - STATE(6031), 1, + STATE(5971), 1, sym__initializer, - ACTIONS(8765), 3, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175982] = 6, + [176091] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5078), 1, sym_comment, - STATE(5994), 1, - sym__initializer, - ACTIONS(8765), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176003] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6459), 1, + sym_type_parameters, + STATE(6720), 1, + sym__call_signature, + [176116] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5079), 1, sym_comment, - ACTIONS(5552), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [176020] = 4, + STATE(6043), 1, + sym__initializer, + ACTIONS(8759), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176137] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5080), 1, sym_comment, - ACTIONS(6330), 5, - anon_sym_EQ, + STATE(6247), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [176037] = 4, + anon_sym_SEMI, + [176158] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5081), 1, sym_comment, - ACTIONS(6330), 5, - anon_sym_EQ, + STATE(5960), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [176054] = 4, + anon_sym_SEMI, + [176179] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5014), 1, + sym__call_signature, STATE(5082), 1, sym_comment, - ACTIONS(6330), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [176071] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5083), 1, - sym_comment, - ACTIONS(5747), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [176088] = 4, + STATE(6561), 1, + sym_type_parameters, + [176204] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5084), 1, - sym_comment, - ACTIONS(3394), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7113), 1, + anon_sym_LBRACK, + ACTIONS(8877), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176105] = 8, + STATE(5083), 1, + sym_comment, + ACTIONS(5061), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [176225] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(5085), 1, + STATE(5084), 1, sym_comment, - STATE(5261), 1, - sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [176130] = 4, + STATE(6854), 1, + sym__call_signature, + [176250] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5086), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5085), 1, sym_comment, - ACTIONS(3394), 5, + STATE(6045), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176147] = 4, + [176271] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5087), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5086), 1, sym_comment, - ACTIONS(3392), 5, + STATE(6246), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176164] = 4, + [176292] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8879), 1, + anon_sym_BQUOTE, + ACTIONS(8881), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8884), 1, + sym__template_chars, + STATE(6024), 1, + sym_template_type, + STATE(5087), 2, + sym_comment, + aux_sym_template_literal_type_repeat1, + [176315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5088), 1, sym_comment, - ACTIONS(2387), 5, + ACTIONS(3380), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176181] = 6, + [176332] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, STATE(5089), 1, sym_comment, - STATE(5887), 1, - sym__initializer, - ACTIONS(8709), 3, - sym__automatic_semicolon, + ACTIONS(8887), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [176202] = 6, + [176355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5090), 1, sym_comment, - STATE(6307), 1, - sym__initializer, - ACTIONS(8832), 3, + ACTIONS(3386), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176223] = 6, + anon_sym_PIPE_RBRACE, + [176372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5091), 1, sym_comment, - STATE(6176), 1, + STATE(5788), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176244] = 4, + [176393] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5092), 1, sym_comment, - ACTIONS(2325), 5, + STATE(5920), 1, + sym__initializer, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176261] = 8, + [176414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, STATE(5093), 1, sym_comment, - STATE(5203), 1, - sym__call_signature, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [176286] = 8, + STATE(6920), 1, + sym__call_signature, + [176439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4981), 1, - sym__call_signature, STATE(5094), 1, sym_comment, - STATE(6732), 1, - sym_type_parameters, - [176311] = 4, + ACTIONS(3388), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176456] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5095), 1, sym_comment, - ACTIONS(8834), 5, + STATE(6238), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176328] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [176477] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5096), 1, sym_comment, - ACTIONS(8836), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [176345] = 8, + ACTIONS(3390), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5097), 1, sym_comment, - STATE(5962), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [176370] = 4, + STATE(5908), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176515] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5098), 1, sym_comment, - ACTIONS(2275), 5, + STATE(6236), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176387] = 7, + [176536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5099), 1, sym_comment, - ACTIONS(8838), 2, + ACTIONS(3406), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176410] = 6, + anon_sym_PIPE_RBRACE, + [176553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5100), 1, sym_comment, - STATE(6190), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(2365), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176431] = 7, + anon_sym_PIPE_RBRACE, + [176570] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8069), 1, - anon_sym_LT, - ACTIONS(8840), 1, - anon_sym_LBRACE, STATE(5101), 1, sym_comment, - STATE(6159), 1, - sym_type_arguments, - ACTIONS(8842), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [176454] = 8, + ACTIONS(8889), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176587] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8699), 1, - anon_sym_abstract, - ACTIONS(8844), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5102), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [176479] = 6, + STATE(5892), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176608] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5103), 1, sym_comment, - STATE(5932), 1, + STATE(5891), 1, sym__initializer, - ACTIONS(8846), 3, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176500] = 6, + [176629] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5104), 1, sym_comment, - STATE(5957), 1, + STATE(5887), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176521] = 4, + [176650] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5105), 1, sym_comment, - ACTIONS(3536), 5, + STATE(6046), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176538] = 8, + [176671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5106), 1, sym_comment, - STATE(5254), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [176563] = 8, + STATE(6233), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176692] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(5107), 1, sym_comment, - STATE(6424), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [176588] = 8, + ACTIONS(8891), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8848), 1, - anon_sym_BQUOTE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5108), 1, sym_comment, - STATE(5394), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [176613] = 4, + STATE(5784), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176730] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5109), 1, sym_comment, - ACTIONS(3388), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176630] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6950), 1, + sym__call_signature, + [176755] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5110), 1, sym_comment, - STATE(6172), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(2277), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176651] = 8, + anon_sym_PIPE_RBRACE, + [176772] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8755), 1, - anon_sym_LBRACE, - ACTIONS(8850), 1, - anon_sym_SEMI, - ACTIONS(8852), 1, - sym__automatic_semicolon, - ACTIONS(8854), 1, - sym__function_signature_automatic_semicolon, - STATE(451), 1, - sym_statement_block, STATE(5111), 1, sym_comment, - [176676] = 6, + ACTIONS(2379), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5112), 1, sym_comment, - STATE(5941), 1, + STATE(5876), 1, sym__initializer, - ACTIONS(8856), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176697] = 4, + [176810] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5113), 1, sym_comment, - ACTIONS(8858), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176714] = 8, + ACTIONS(8893), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [176827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, STATE(5114), 1, sym_comment, - STATE(5247), 1, - sym__call_signature, - STATE(6732), 1, - sym_type_parameters, - [176739] = 4, + ACTIONS(3564), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176844] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5115), 1, sym_comment, - ACTIONS(8860), 5, + STATE(6047), 1, + sym__initializer, + ACTIONS(8759), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176756] = 4, + [176865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5116), 1, sym_comment, - ACTIONS(8097), 5, + ACTIONS(3572), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176773] = 4, + [176882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5117), 1, sym_comment, - ACTIONS(8862), 5, + ACTIONS(3426), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176790] = 6, + [176899] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5118), 1, sym_comment, - STATE(6220), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8895), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [176811] = 8, + [176922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(8897), 1, + anon_sym_EQ_GT, STATE(5119), 1, sym_comment, - STATE(6444), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [176836] = 6, + STATE(6677), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [176943] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5120), 1, sym_comment, - STATE(5949), 1, - sym__initializer, - ACTIONS(8705), 3, + ACTIONS(3482), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176857] = 4, + anon_sym_PIPE_RBRACE, + [176960] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5121), 1, sym_comment, - ACTIONS(8099), 5, + STATE(5783), 1, + sym__initializer, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176874] = 7, + [176981] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5122), 1, sym_comment, - ACTIONS(8864), 2, + STATE(6222), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [176897] = 8, + anon_sym_SEMI, + [177002] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7619), 1, + anon_sym_DOT, + STATE(4327), 1, + sym_arguments, STATE(5123), 1, sym_comment, - STATE(6451), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [176922] = 8, + ACTIONS(8900), 2, + anon_sym_COMMA, + anon_sym_GT, + [177025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5124), 1, sym_comment, - STATE(6463), 1, - sym__call_signature, - STATE(6493), 1, - sym_type_parameters, - [176947] = 6, + STATE(5782), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177046] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5125), 1, sym_comment, - STATE(5657), 1, + STATE(6048), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176968] = 6, + [177067] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5126), 1, sym_comment, - STATE(6241), 1, + STATE(5869), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176989] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [177088] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8188), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + anon_sym_LBRACE_PIPE, + STATE(1445), 1, + sym_object_type, STATE(5127), 1, sym_comment, - ACTIONS(5693), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177006] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6086), 1, + sym_extends_type_clause, + [177113] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8784), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5128), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6081), 1, - sym__module_export_name, - [177031] = 6, + ACTIONS(3480), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177130] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5129), 1, sym_comment, - STATE(6170), 1, + STATE(6221), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177052] = 4, + [177151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5130), 1, sym_comment, - ACTIONS(8868), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [177069] = 8, + STATE(6218), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8365), 1, - anon_sym_class, - ACTIONS(8367), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, STATE(5131), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [177094] = 4, + ACTIONS(8904), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [177189] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, STATE(5132), 1, sym_comment, - ACTIONS(3452), 5, - sym__automatic_semicolon, + ACTIONS(8906), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177111] = 6, + anon_sym_GT, + [177212] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5133), 1, sym_comment, - STATE(6169), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177132] = 4, + ACTIONS(5617), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [177229] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5134), 1, sym_comment, - ACTIONS(3444), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177149] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6771), 1, + sym__call_signature, + [177254] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5135), 1, sym_comment, - ACTIONS(8870), 5, + STATE(6052), 1, + sym__initializer, + ACTIONS(8908), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177166] = 4, + [177275] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5136), 1, sym_comment, - ACTIONS(8099), 5, + ACTIONS(8910), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177183] = 8, + [177298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, STATE(5137), 1, sym_comment, - STATE(5138), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [177208] = 4, + ACTIONS(8085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5138), 1, sym_comment, - ACTIONS(8119), 5, + ACTIONS(3440), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177225] = 8, + [177332] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(8912), 1, + anon_sym_LBRACE, + ACTIONS(8914), 1, + anon_sym_SEMI, + ACTIONS(8916), 1, + sym__automatic_semicolon, + ACTIONS(8918), 1, + sym__function_signature_automatic_semicolon, + STATE(932), 1, + sym_statement_block, STATE(5139), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6717), 1, - sym__call_signature, - [177250] = 4, + [177357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5140), 1, sym_comment, - ACTIONS(8097), 5, + ACTIONS(8920), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177267] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [177374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8872), 1, - sym_identifier, - ACTIONS(8874), 1, - anon_sym_GT, - ACTIONS(8876), 1, - sym_jsx_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5141), 1, sym_comment, - STATE(6428), 1, - sym_nested_identifier, - STATE(7393), 1, - sym_jsx_namespace_name, - [177292] = 8, + ACTIONS(8922), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177391] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2247), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(5190), 1, + anon_sym_LBRACE, STATE(5142), 1, sym_comment, - STATE(5243), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [177317] = 4, + ACTIONS(5192), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [177412] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2087), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5190), 1, + anon_sym_LBRACE, STATE(5143), 1, sym_comment, - ACTIONS(2239), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [177334] = 4, + ACTIONS(5192), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [177433] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(8924), 1, + anon_sym_EQ_GT, STATE(5144), 1, sym_comment, - ACTIONS(2235), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [177351] = 6, + STATE(6908), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177454] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8927), 1, + sym_identifier, + ACTIONS(8929), 1, + anon_sym_GT, + ACTIONS(8931), 1, + sym_jsx_identifier, STATE(5145), 1, sym_comment, - STATE(5821), 1, - sym__initializer, - ACTIONS(8878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177372] = 4, + STATE(6502), 1, + sym_nested_identifier, + STATE(7343), 1, + sym_jsx_namespace_name, + [177479] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, STATE(5146), 1, sym_comment, - ACTIONS(3418), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177389] = 4, + STATE(5234), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [177504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5147), 1, sym_comment, - ACTIONS(8121), 5, + ACTIONS(8087), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177406] = 8, + [177521] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, sym_formal_parameters, - STATE(4657), 1, + STATE(4835), 1, sym__call_signature, STATE(5148), 1, sym_comment, - STATE(6732), 1, + STATE(6561), 1, sym_type_parameters, - [177431] = 6, + [177546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5149), 1, sym_comment, - STATE(5823), 1, - sym__initializer, - ACTIONS(8878), 3, + ACTIONS(8085), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177452] = 4, + anon_sym_PIPE_RBRACE, + [177563] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5150), 1, sym_comment, - ACTIONS(8880), 5, + ACTIONS(8933), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177469] = 8, + [177580] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(8882), 1, - anon_sym_as, - ACTIONS(8884), 1, - anon_sym_RBRACK, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(8935), 1, + anon_sym_COMMA, + ACTIONS(8937), 1, + anon_sym_RBRACE, STATE(5151), 1, sym_comment, - [177494] = 6, + STATE(6282), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, + sym__initializer, + [177605] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5152), 1, sym_comment, - STATE(5812), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177515] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6752), 1, + sym__call_signature, + [177630] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5153), 1, sym_comment, - STATE(5948), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177536] = 8, + ACTIONS(4935), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [177647] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, - ACTIONS(8888), 1, - anon_sym_COMMA, - ACTIONS(8890), 1, - anon_sym_RBRACE, + ACTIONS(8914), 1, + anon_sym_SEMI, + ACTIONS(8916), 1, + sym__automatic_semicolon, + ACTIONS(8918), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8939), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_statement_block, STATE(5154), 1, sym_comment, - STATE(6101), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, - sym__initializer, - [177561] = 6, + [177672] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5155), 1, + sym_comment, + ACTIONS(4949), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [177689] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5155), 1, + STATE(5156), 1, sym_comment, - STATE(5656), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8107), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177582] = 4, + anon_sym_PIPE_RBRACE, + [177706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5156), 1, + STATE(5157), 1, sym_comment, - ACTIONS(6430), 5, - anon_sym_EQ, + ACTIONS(8941), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [177599] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177723] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8892), 1, - sym_identifier, - ACTIONS(8894), 1, - anon_sym_GT, - ACTIONS(8896), 1, - sym_jsx_identifier, - STATE(5157), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5158), 1, sym_comment, - STATE(6967), 1, - sym_nested_identifier, - STATE(6998), 1, - sym_jsx_namespace_name, - [177624] = 4, + ACTIONS(8943), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177740] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5158), 1, + STATE(5159), 1, sym_comment, - ACTIONS(8655), 5, + ACTIONS(8945), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [177641] = 4, + [177757] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5159), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, + STATE(5160), 1, sym_comment, - ACTIONS(3548), 5, + ACTIONS(8947), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177658] = 4, + [177780] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5160), 1, + STATE(5161), 1, sym_comment, - ACTIONS(3564), 5, + ACTIONS(8107), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177675] = 8, + [177797] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, - STATE(5161), 1, - sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6837), 1, - sym__call_signature, - [177700] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4804), 1, - sym__call_signature, + ACTIONS(8912), 1, + anon_sym_LBRACE, + ACTIONS(8949), 1, + anon_sym_SEMI, + ACTIONS(8951), 1, + sym__automatic_semicolon, + ACTIONS(8953), 1, + sym__function_signature_automatic_semicolon, + STATE(941), 1, + sym_statement_block, STATE(5162), 1, sym_comment, - STATE(6732), 1, - sym_type_parameters, - [177725] = 6, + [177822] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8955), 1, + sym_identifier, + ACTIONS(8957), 1, + anon_sym_GT, + ACTIONS(8959), 1, + sym_jsx_identifier, STATE(5163), 1, sym_comment, - STATE(5988), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177746] = 6, + STATE(6921), 1, + sym_nested_identifier, + STATE(7066), 1, + sym_jsx_namespace_name, + [177847] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8723), 1, + anon_sym_LBRACE, + ACTIONS(8857), 1, + anon_sym_SEMI, + ACTIONS(8859), 1, + sym__automatic_semicolon, + ACTIONS(8861), 1, + sym__function_signature_automatic_semicolon, + STATE(434), 1, + sym_statement_block, STATE(5164), 1, sym_comment, - STATE(6225), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177767] = 6, + [177872] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5165), 1, sym_comment, - STATE(5708), 1, + STATE(6198), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177788] = 6, + [177893] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5166), 1, sym_comment, - STATE(6138), 1, + STATE(5781), 1, sym__initializer, - ACTIONS(8898), 3, + ACTIONS(8961), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177809] = 6, + [177914] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5167), 1, sym_comment, - STATE(6658), 1, - sym_type_annotation, - ACTIONS(4287), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [177830] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6775), 1, + sym__call_signature, + [177939] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8041), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, + anon_sym_LBRACE_PIPE, + STATE(1005), 1, + sym_object_type, STATE(5168), 1, sym_comment, - STATE(6129), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177851] = 4, + STATE(6303), 1, + sym_extends_type_clause, + [177964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5169), 1, sym_comment, - ACTIONS(3544), 5, + ACTIONS(8963), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177868] = 4, + [177981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5170), 1, sym_comment, - ACTIONS(3568), 5, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177885] = 4, + [177998] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5171), 1, sym_comment, - ACTIONS(2351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177902] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6766), 1, + sym__call_signature, + [178023] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(8900), 1, - anon_sym_EQ_GT, STATE(5172), 1, sym_comment, - STATE(6678), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177923] = 8, + ACTIONS(4949), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178040] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4518), 1, - anon_sym_COLON, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(8903), 1, - anon_sym_RBRACE, STATE(5173), 1, sym_comment, - STATE(5869), 1, - aux_sym_object_pattern_repeat1, - [177948] = 6, + ACTIONS(4969), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178057] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5174), 1, sym_comment, - STATE(6265), 1, + STATE(6195), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177969] = 4, + [178078] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8939), 1, + anon_sym_LBRACE, + ACTIONS(8949), 1, + anon_sym_SEMI, + ACTIONS(8951), 1, + sym__automatic_semicolon, + ACTIONS(8953), 1, + sym__function_signature_automatic_semicolon, + STATE(312), 1, + sym_statement_block, STATE(5175), 1, sym_comment, - ACTIONS(3574), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177986] = 8, + [178103] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8905), 1, - anon_sym_BQUOTE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5176), 1, sym_comment, - STATE(5256), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [178011] = 4, + STATE(5780), 1, + sym__initializer, + ACTIONS(8961), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178124] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5177), 1, - sym_comment, - ACTIONS(8119), 5, - sym__automatic_semicolon, + ACTIONS(4520), 1, + anon_sym_COLON, + ACTIONS(7223), 1, + anon_sym_EQ, + ACTIONS(8965), 1, anon_sym_COMMA, + ACTIONS(8967), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178028] = 6, + STATE(5177), 1, + sym_comment, + STATE(5721), 1, + aux_sym_object_pattern_repeat1, + [178149] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4862), 1, + sym__call_signature, STATE(5178), 1, sym_comment, - STATE(5851), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178049] = 4, + STATE(6561), 1, + sym_type_parameters, + [178174] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5179), 1, sym_comment, - ACTIONS(8907), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178066] = 6, + ACTIONS(4969), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5180), 1, sym_comment, - STATE(6275), 1, + STATE(6193), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178087] = 8, + [178212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(8911), 1, - anon_sym_SEMI, - ACTIONS(8913), 1, + ACTIONS(6487), 1, sym__automatic_semicolon, - ACTIONS(8915), 1, - sym__function_signature_automatic_semicolon, - STATE(344), 1, - sym_statement_block, STATE(5181), 1, sym_comment, - [178112] = 6, + ACTIONS(2343), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178231] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(8917), 1, - anon_sym_EQ_GT, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4888), 1, + sym__call_signature, STATE(5182), 1, sym_comment, - STATE(6833), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [178133] = 4, + STATE(6986), 1, + sym_type_parameters, + [178256] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(8969), 1, + anon_sym_BQUOTE, + STATE(4854), 1, + aux_sym_template_literal_type_repeat1, STATE(5183), 1, sym_comment, - ACTIONS(8121), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178150] = 4, + STATE(6024), 1, + sym_template_type, + [178281] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5184), 1, sym_comment, - ACTIONS(8412), 5, + STATE(5861), 1, + sym__initializer, + ACTIONS(8767), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [178167] = 6, + [178302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5185), 1, sym_comment, - STATE(6134), 1, - sym__initializer, - ACTIONS(8920), 3, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178188] = 4, + anon_sym_PIPE_RBRACE, + [178319] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6287), 1, + sym__automatic_semicolon, STATE(5186), 1, sym_comment, - ACTIONS(8922), 5, - sym__automatic_semicolon, + ACTIONS(2387), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178205] = 4, + [178338] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6269), 1, + sym__automatic_semicolon, STATE(5187), 1, sym_comment, - ACTIONS(8398), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(2375), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178222] = 4, + anon_sym_PIPE_RBRACE, + [178357] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5188), 1, sym_comment, - ACTIONS(8924), 5, + STATE(6192), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178239] = 6, + [178378] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(6417), 1, + sym__automatic_semicolon, STATE(5189), 1, sym_comment, - STATE(5815), 1, - sym__initializer, - ACTIONS(8705), 3, - sym__automatic_semicolon, + ACTIONS(2335), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178260] = 4, + anon_sym_PIPE_RBRACE, + [178397] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5190), 1, sym_comment, - ACTIONS(8926), 5, + ACTIONS(3458), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178277] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [178414] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8784), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5191), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(6885), 1, - sym__module_export_name, - [178302] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6259), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178431] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8784), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5192), 1, sym_comment, - STATE(5551), 1, - sym_string, - STATE(7090), 1, - sym__module_export_name, - [178327] = 6, + ACTIONS(3460), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178448] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5193), 1, sym_comment, - STATE(6279), 1, + STATE(6190), 1, sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178348] = 4, + [178469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5194), 1, sym_comment, - ACTIONS(8396), 5, + STATE(6187), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [178365] = 8, + [178490] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1344), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8033), 1, - anon_sym_LBRACE_PIPE, - STATE(4993), 1, - sym_object_type, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5195), 1, sym_comment, - STATE(6010), 1, - sym_extends_type_clause, - [178390] = 8, + STATE(5810), 1, + sym__initializer, + ACTIONS(8711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178511] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8928), 1, - anon_sym_BQUOTE, STATE(5196), 1, sym_comment, - STATE(5293), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [178415] = 8, + ACTIONS(8667), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178528] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5197), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6912), 1, - sym__call_signature, - [178440] = 8, + STATE(6186), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178549] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8786), 1, - anon_sym_LBRACE, - ACTIONS(8850), 1, - anon_sym_SEMI, - ACTIONS(8852), 1, - sym__automatic_semicolon, - ACTIONS(8854), 1, - sym__function_signature_automatic_semicolon, - STATE(1386), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5198), 1, sym_comment, - [178465] = 8, + STATE(6054), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178570] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5199), 1, sym_comment, - STATE(6122), 1, - sym__call_signature, - STATE(6769), 1, - sym_type_parameters, - [178490] = 5, + STATE(5860), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178591] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6380), 1, - sym__automatic_semicolon, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(8971), 1, + anon_sym_BQUOTE, STATE(5200), 1, sym_comment, - ACTIONS(2287), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178509] = 8, + STATE(5298), 1, + aux_sym_template_literal_type_repeat1, + STATE(6024), 1, + sym_template_type, + [178616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8597), 1, - anon_sym_abstract, - ACTIONS(8930), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5201), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [178534] = 7, + STATE(5858), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5202), 1, sym_comment, - ACTIONS(8932), 2, + ACTIONS(3462), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178557] = 8, + anon_sym_PIPE_RBRACE, + [178654] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(8934), 1, - anon_sym_SEMI, - ACTIONS(8936), 1, - sym__automatic_semicolon, - ACTIONS(8938), 1, - sym__function_signature_automatic_semicolon, - STATE(3063), 1, - sym_statement_block, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(8973), 1, + anon_sym_as, + ACTIONS(8975), 1, + anon_sym_RBRACK, STATE(5203), 1, sym_comment, - [178582] = 8, + [178679] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(5204), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6862), 1, - sym__call_signature, - [178607] = 4, + ACTIONS(3464), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178696] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5205), 1, sym_comment, - ACTIONS(3466), 5, + STATE(6171), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178624] = 4, + [178717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5206), 1, sym_comment, - ACTIONS(3460), 5, + ACTIONS(3466), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178641] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [178734] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8940), 1, - sym_identifier, - ACTIONS(8942), 1, - anon_sym_GT, - ACTIONS(8944), 1, - sym_jsx_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + ACTIONS(8977), 1, + anon_sym_SEMI, + ACTIONS(8979), 1, + sym__automatic_semicolon, + ACTIONS(8981), 1, + sym__function_signature_automatic_semicolon, + STATE(3065), 1, + sym_statement_block, STATE(5207), 1, sym_comment, - STATE(6842), 1, - sym_nested_identifier, - STATE(7077), 1, - sym_jsx_namespace_name, - [178666] = 8, + [178759] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, STATE(5208), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6939), 1, - sym__call_signature, - [178691] = 8, + ACTIONS(8983), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178776] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, sym_formal_parameters, - STATE(4614), 1, + STATE(4656), 1, sym__call_signature, STATE(5209), 1, sym_comment, - STATE(6732), 1, + STATE(6561), 1, sym_type_parameters, - [178716] = 6, + [178801] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5210), 1, sym_comment, - STATE(5926), 1, + STATE(5773), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8961), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178737] = 6, + [178822] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5211), 1, sym_comment, - STATE(6124), 1, + STATE(6055), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178758] = 5, + [178843] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6266), 1, - sym__automatic_semicolon, STATE(5212), 1, sym_comment, - ACTIONS(2357), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178777] = 6, + ACTIONS(5468), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178860] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5213), 1, + sym_comment, + ACTIONS(5464), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [178877] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5213), 1, + STATE(5214), 1, sym_comment, - STATE(5888), 1, + STATE(6056), 1, sym__initializer, - ACTIONS(8878), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178798] = 4, + [178898] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5214), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5215), 1, sym_comment, - ACTIONS(8946), 5, + STATE(6151), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178815] = 5, + [178919] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6226), 1, - sym__automatic_semicolon, - STATE(5215), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5216), 1, sym_comment, - ACTIONS(2365), 4, + STATE(5772), 1, + sym__initializer, + ACTIONS(8961), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178834] = 4, + [178940] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5216), 1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, + STATE(5217), 1, sym_comment, - ACTIONS(8948), 5, + ACTIONS(8985), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178851] = 8, + [178963] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7193), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4683), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(5217), 1, + STATE(5218), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6974), 1, + STATE(5369), 1, sym__call_signature, - [178876] = 6, + STATE(6561), 1, + sym_type_parameters, + [178988] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5218), 1, + STATE(5219), 1, sym_comment, - STATE(6123), 1, + STATE(6060), 1, sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178897] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8001), 1, - anon_sym_LBRACE_PIPE, - STATE(5219), 1, - sym_comment, - STATE(6322), 1, - sym_extends_type_clause, - STATE(6361), 1, - sym_object_type, - [178922] = 6, + [179009] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(4520), 1, + anon_sym_COLON, + ACTIONS(7223), 1, anon_sym_EQ, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(8987), 1, + anon_sym_RBRACE, STATE(5220), 1, sym_comment, - STATE(5889), 1, - sym__initializer, - ACTIONS(8878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178943] = 5, + STATE(6316), 1, + aux_sym_object_pattern_repeat1, + [179034] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6264), 1, - sym__automatic_semicolon, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5221), 1, sym_comment, - ACTIONS(2329), 4, + STATE(5964), 1, + sym__initializer, + ACTIONS(8989), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178962] = 6, + [179055] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5222), 1, sym_comment, - STATE(6251), 1, + STATE(5961), 1, sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8991), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178983] = 6, + [179076] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8811), 1, + anon_sym_abstract, + ACTIONS(8993), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(5223), 1, sym_comment, - STATE(6252), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179004] = 8, + STATE(5608), 1, + sym_decorator, + [179101] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(210), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4683), 1, - sym_formal_parameters, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8053), 1, + anon_sym_LBRACE_PIPE, STATE(5224), 1, sym_comment, - STATE(6493), 1, - sym_type_parameters, - STATE(6767), 1, - sym__call_signature, - [179029] = 6, + STATE(6174), 1, + sym_extends_type_clause, + STATE(6681), 1, + sym_object_type, + [179126] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5225), 1, sym_comment, - STATE(5917), 1, + STATE(6062), 1, sym__initializer, - ACTIONS(8950), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179050] = 8, + [179147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - ACTIONS(8952), 1, - anon_sym_SEMI, - ACTIONS(8954), 1, - sym__automatic_semicolon, - ACTIONS(8956), 1, - sym__function_signature_automatic_semicolon, - STATE(5221), 1, - sym_statement_block, STATE(5226), 1, sym_comment, - [179075] = 7, + ACTIONS(3470), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179164] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(5227), 1, sym_comment, - ACTIONS(8958), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [179098] = 6, + STATE(5403), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [179189] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5228), 1, sym_comment, - STATE(5891), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, + ACTIONS(6317), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [179119] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [179206] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, STATE(5229), 1, sym_comment, - STATE(6104), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179140] = 6, + STATE(5943), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [179231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5230), 1, sym_comment, - STATE(5910), 1, - sym__initializer, - ACTIONS(8705), 3, + ACTIONS(3486), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179161] = 6, + anon_sym_PIPE_RBRACE, + [179248] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5231), 1, sym_comment, - STATE(6103), 1, - sym__initializer, - ACTIONS(8878), 3, + ACTIONS(3486), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179182] = 8, + anon_sym_PIPE_RBRACE, + [179265] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8675), 1, - anon_sym_abstract, - ACTIONS(8960), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5232), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [179207] = 7, + STATE(6146), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179286] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(7435), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7439), 1, anon_sym_extends, - ACTIONS(8790), 1, + ACTIONS(8803), 1, anon_sym_PIPE, STATE(5233), 1, sym_comment, - ACTIONS(8962), 2, + ACTIONS(8995), 2, sym__automatic_semicolon, anon_sym_SEMI, - [179230] = 6, + [179309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5234), 1, sym_comment, - STATE(5933), 1, - sym__initializer, - ACTIONS(8964), 3, + ACTIONS(8079), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179251] = 6, + anon_sym_PIPE_RBRACE, + [179326] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, STATE(5235), 1, sym_comment, - STATE(5904), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179272] = 6, + STATE(5276), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [179351] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8997), 1, + anon_sym_LBRACE, + ACTIONS(8999), 1, + anon_sym_SEMI, + ACTIONS(9001), 1, + sym__automatic_semicolon, + ACTIONS(9003), 1, + sym__function_signature_automatic_semicolon, + STATE(1078), 1, + sym_statement_block, STATE(5236), 1, sym_comment, - STATE(6086), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179293] = 6, + [179376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5237), 1, sym_comment, - STATE(5954), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(8077), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179314] = 6, + anon_sym_PIPE_RBRACE, + [179393] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, STATE(5238), 1, sym_comment, - STATE(5861), 1, - sym__initializer, - ACTIONS(8782), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179335] = 6, + STATE(5392), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [179418] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8968), 1, - anon_sym_in, - ACTIONS(8970), 1, - anon_sym_of, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5239), 1, sym_comment, - ACTIONS(8966), 3, + STATE(6065), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179356] = 6, + [179439] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(8168), 1, anon_sym_EQ, + ACTIONS(9005), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, + anon_sym_RBRACE, STATE(5240), 1, sym_comment, - STATE(5771), 1, + STATE(6308), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, sym__initializer, - ACTIONS(8705), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179377] = 4, + [179464] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5241), 1, sym_comment, - ACTIONS(3472), 5, + STATE(6067), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179394] = 6, + [179485] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5242), 1, sym_comment, - STATE(5920), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(3424), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179415] = 4, + anon_sym_PIPE_RBRACE, + [179502] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5243), 1, sym_comment, - ACTIONS(8130), 5, + STATE(6068), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179432] = 7, + [179523] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(4847), 1, + anon_sym_LBRACE, + ACTIONS(9009), 1, + anon_sym_SEMI, + ACTIONS(9011), 1, + sym__automatic_semicolon, + ACTIONS(9013), 1, + sym__function_signature_automatic_semicolon, + STATE(2940), 1, + sym_statement_block, STATE(5244), 1, sym_comment, - ACTIONS(8972), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [179455] = 6, + [179548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(8974), 1, - anon_sym_EQ_GT, STATE(5245), 1, sym_comment, - STATE(6678), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [179476] = 4, + ACTIONS(2299), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5246), 1, sym_comment, - ACTIONS(3458), 5, + ACTIONS(2299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179493] = 8, + [179582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8977), 1, - anon_sym_LBRACE, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - sym__automatic_semicolon, - ACTIONS(8983), 1, - sym__function_signature_automatic_semicolon, - STATE(952), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5247), 1, sym_comment, - [179518] = 4, + STATE(6072), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179603] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(9015), 1, + anon_sym_BQUOTE, + STATE(5087), 1, + aux_sym_template_literal_type_repeat1, STATE(5248), 1, sym_comment, - ACTIONS(3458), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179535] = 4, + STATE(6024), 1, + sym_template_type, + [179628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5249), 1, sym_comment, - ACTIONS(3470), 5, + ACTIONS(3442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179552] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [179645] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(9017), 1, + anon_sym_EQ_GT, STATE(5250), 1, sym_comment, - ACTIONS(5676), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179569] = 6, + STATE(6677), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5251), 1, sym_comment, - STATE(6148), 1, - sym__initializer, - ACTIONS(8878), 3, + ACTIONS(3444), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179590] = 8, + anon_sym_PIPE_RBRACE, + [179683] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, + ACTIONS(7165), 1, anon_sym_EQ, - ACTIONS(8985), 1, - anon_sym_COMMA, - ACTIONS(8987), 1, - anon_sym_RBRACE, STATE(5252), 1, sym_comment, - STATE(6267), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, + STATE(5835), 1, sym__initializer, - [179615] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5253), 1, - sym_comment, - ACTIONS(5363), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179632] = 8, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179704] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - sym__automatic_semicolon, - ACTIONS(8983), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8989), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym_statement_block, - STATE(5254), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5253), 1, sym_comment, - [179657] = 6, + STATE(6145), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179725] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5255), 1, + STATE(5254), 1, sym_comment, - STATE(5704), 1, + STATE(6077), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179678] = 8, + [179746] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(8991), 1, - anon_sym_BQUOTE, - STATE(5256), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(5255), 1, sym_comment, - STATE(5394), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [179703] = 6, + STATE(6459), 1, + sym_type_parameters, + STATE(6802), 1, + sym__call_signature, + [179771] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5257), 1, + STATE(5256), 1, sym_comment, - STATE(5703), 1, - sym__initializer, - ACTIONS(8705), 3, + ACTIONS(3548), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179724] = 6, + anon_sym_PIPE_RBRACE, + [179788] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5257), 1, + sym_comment, + STATE(5382), 1, + sym__call_signature, + STATE(6561), 1, + sym_type_parameters, + [179813] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5258), 1, sym_comment, - STATE(5937), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(3546), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179745] = 7, + anon_sym_PIPE_RBRACE, + [179830] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(7435), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7439), 1, anon_sym_extends, - ACTIONS(8790), 1, + ACTIONS(8803), 1, anon_sym_PIPE, STATE(5259), 1, sym_comment, - ACTIONS(8993), 2, + ACTIONS(9020), 2, sym__automatic_semicolon, anon_sym_SEMI, - [179768] = 4, + [179853] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8997), 1, + anon_sym_LBRACE, + ACTIONS(9022), 1, + anon_sym_SEMI, + ACTIONS(9024), 1, + sym__automatic_semicolon, + ACTIONS(9026), 1, + sym__function_signature_automatic_semicolon, + STATE(1045), 1, + sym_statement_block, STATE(5260), 1, sym_comment, - ACTIONS(3476), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179785] = 8, + [179878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8977), 1, - anon_sym_LBRACE, - ACTIONS(8995), 1, - anon_sym_SEMI, - ACTIONS(8997), 1, - sym__automatic_semicolon, - ACTIONS(8999), 1, - sym__function_signature_automatic_semicolon, - STATE(926), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5261), 1, sym_comment, - [179810] = 4, + STATE(6078), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179899] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5262), 1, sym_comment, - ACTIONS(3408), 5, + ACTIONS(3450), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179827] = 4, + [179916] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5263), 1, sym_comment, - ACTIONS(3480), 5, + STATE(6079), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179844] = 4, + [179937] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5264), 1, sym_comment, - ACTIONS(3482), 5, + STATE(5902), 1, + sym__initializer, + ACTIONS(9028), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179861] = 4, + [179958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5265), 1, sym_comment, - ACTIONS(6498), 5, - anon_sym_EQ, + ACTIONS(3454), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179878] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179975] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - ACTIONS(8934), 1, - anon_sym_SEMI, - ACTIONS(8936), 1, - sym__automatic_semicolon, - ACTIONS(8938), 1, - sym__function_signature_automatic_semicolon, STATE(5266), 1, sym_comment, - STATE(6222), 1, - sym_statement_block, - [179903] = 8, + ACTIONS(5703), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [179992] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(9001), 1, - anon_sym_SEMI, - ACTIONS(9003), 1, - sym__automatic_semicolon, - ACTIONS(9005), 1, - sym__function_signature_automatic_semicolon, - STATE(375), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5267), 1, sym_comment, - [179928] = 7, + STATE(5872), 1, + sym__initializer, + ACTIONS(9028), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180013] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5268), 1, sym_comment, - ACTIONS(9007), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [179951] = 4, + ACTIONS(5697), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180030] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5269), 1, sym_comment, - ACTIONS(2313), 5, + STATE(6143), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179968] = 6, + [180051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5270), 1, sym_comment, - STATE(5955), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3524), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179989] = 8, + anon_sym_PIPE_RBRACE, + [180068] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8059), 1, + ACTIONS(7945), 1, anon_sym_LBRACE, - ACTIONS(8061), 1, - anon_sym_LBRACE_PIPE, - STATE(992), 1, - sym_object_type, + ACTIONS(8977), 1, + anon_sym_SEMI, + ACTIONS(8979), 1, + sym__automatic_semicolon, + ACTIONS(8981), 1, + sym__function_signature_automatic_semicolon, STATE(5271), 1, sym_comment, - STATE(6282), 1, - sym_extends_type_clause, - [180014] = 4, + STATE(5706), 1, + sym_statement_block, + [180093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5272), 1, sym_comment, - ACTIONS(3484), 5, + ACTIONS(3526), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180031] = 6, + [180110] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5273), 1, sym_comment, - STATE(5702), 1, - sym__initializer, - ACTIONS(8705), 3, + ACTIONS(9030), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [180052] = 8, + [180133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8989), 1, - anon_sym_LBRACE, - ACTIONS(8995), 1, - anon_sym_SEMI, - ACTIONS(8997), 1, - sym__automatic_semicolon, - ACTIONS(8999), 1, - sym__function_signature_automatic_semicolon, - STATE(337), 1, - sym_statement_block, STATE(5274), 1, sym_comment, - [180077] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3530), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180150] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5275), 1, sym_comment, - ACTIONS(8551), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180094] = 6, + STATE(5818), 1, + sym__initializer, + ACTIONS(8767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5276), 1, sym_comment, - STATE(6093), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180115] = 4, + anon_sym_PIPE_RBRACE, + [180188] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(5277), 1, sym_comment, - ACTIONS(5106), 5, + ACTIONS(5687), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [180132] = 4, + [180205] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5278), 1, sym_comment, - ACTIONS(3578), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180149] = 8, + ACTIONS(5545), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180222] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, - ACTIONS(9009), 1, - anon_sym_COMMA, - ACTIONS(9011), 1, - anon_sym_RBRACE, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(8029), 1, + anon_sym_LBRACE_PIPE, + STATE(1397), 1, + sym_object_type, STATE(5279), 1, sym_comment, - STATE(6051), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, - sym__initializer, - [180174] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6263), 1, + sym_extends_type_clause, + [180247] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5280), 1, sym_comment, - ACTIONS(5106), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180191] = 4, + STATE(6087), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5281), 1, sym_comment, - ACTIONS(3582), 5, + STATE(5800), 1, + sym__initializer, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180208] = 6, + [180289] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5282), 1, sym_comment, - STATE(6319), 1, + STATE(5839), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(9028), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180229] = 4, + [180310] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + ACTIONS(9032), 1, + anon_sym_SEMI, + ACTIONS(9034), 1, + sym__automatic_semicolon, + ACTIONS(9036), 1, + sym__function_signature_automatic_semicolon, + STATE(3082), 1, + sym_statement_block, STATE(5283), 1, sym_comment, - ACTIONS(6504), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180246] = 6, + [180335] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(9038), 1, + anon_sym_BQUOTE, + STATE(5248), 1, + aux_sym_template_literal_type_repeat1, STATE(5284), 1, sym_comment, - STATE(5698), 1, - sym__initializer, - ACTIONS(8705), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180267] = 4, + STATE(6024), 1, + sym_template_type, + [180360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5285), 1, sym_comment, - ACTIONS(3464), 5, + ACTIONS(3538), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180284] = 4, + [180377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5286), 1, sym_comment, - ACTIONS(6504), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180301] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5287), 1, - sym_comment, - STATE(6318), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180322] = 6, + anon_sym_PIPE_RBRACE, + [180394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5288), 1, + STATE(5287), 1, sym_comment, - STATE(6090), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(3508), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180343] = 4, + anon_sym_PIPE_RBRACE, + [180411] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5289), 1, + STATE(5288), 1, sym_comment, - ACTIONS(5349), 5, + ACTIONS(5627), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [180360] = 4, + [180428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5290), 1, + STATE(5289), 1, sym_comment, - ACTIONS(6504), 5, - anon_sym_EQ, + ACTIONS(3542), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180377] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180445] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - STATE(4255), 1, + STATE(4813), 1, sym_formal_parameters, - STATE(4654), 1, - sym__call_signature, - STATE(5291), 1, + STATE(5290), 1, sym_comment, - STATE(6732), 1, + STATE(6459), 1, sym_type_parameters, - [180402] = 4, - ACTIONS(3), 1, + STATE(6754), 1, + sym__call_signature, + [180470] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(5291), 1, + sym_comment, + ACTIONS(3544), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180487] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5292), 1, sym_comment, - ACTIONS(5154), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180419] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6737), 1, + sym__call_signature, + [180512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(9013), 1, - anon_sym_BQUOTE, STATE(5293), 1, sym_comment, - STATE(5394), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [180444] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3518), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180529] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5294), 1, sym_comment, - ACTIONS(5154), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180461] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6139), 1, + sym__initializer, + ACTIONS(8875), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180550] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5295), 1, sym_comment, - ACTIONS(5210), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180478] = 4, + ACTIONS(6008), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [180567] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8795), 1, + sym_identifier, STATE(5296), 1, sym_comment, - ACTIONS(3462), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180495] = 6, + STATE(5427), 1, + sym_string, + STATE(7080), 1, + sym__module_export_name, + [180592] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5297), 1, sym_comment, - STATE(6089), 1, - sym__initializer, - ACTIONS(8878), 3, + ACTIONS(2301), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180516] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [180609] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(9040), 1, + anon_sym_BQUOTE, + STATE(5087), 1, + aux_sym_template_literal_type_repeat1, STATE(5298), 1, sym_comment, - ACTIONS(5353), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180533] = 8, + STATE(6024), 1, + sym_template_type, + [180634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, - anon_sym_LPAREN, - ACTIONS(7173), 1, - anon_sym_LT, - STATE(4255), 1, - sym_formal_parameters, - STATE(4933), 1, - sym__call_signature, STATE(5299), 1, sym_comment, - STATE(6732), 1, - sym_type_parameters, - [180558] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2313), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180651] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5300), 1, sym_comment, - ACTIONS(5357), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180575] = 8, + ACTIONS(2295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180668] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(9015), 1, - anon_sym_SEMI, - ACTIONS(9017), 1, - sym__automatic_semicolon, - ACTIONS(9019), 1, - sym__function_signature_automatic_semicolon, - STATE(3170), 1, - sym_statement_block, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8647), 1, + anon_sym_abstract, + ACTIONS(9042), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(5301), 1, sym_comment, - [180600] = 6, + STATE(5608), 1, + sym_decorator, + [180693] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5302), 1, sym_comment, - STATE(6073), 1, - sym__initializer, - ACTIONS(8878), 3, + ACTIONS(2339), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180621] = 6, + anon_sym_PIPE_RBRACE, + [180710] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5303), 1, sym_comment, - STATE(6088), 1, + STATE(6136), 1, sym__initializer, - ACTIONS(8878), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180642] = 4, + [180731] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5304), 1, sym_comment, - ACTIONS(3510), 5, + STATE(6097), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180659] = 6, + [180752] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5305), 1, sym_comment, - STATE(5958), 1, + STATE(5822), 1, sym__initializer, - ACTIONS(8878), 3, + ACTIONS(9028), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180680] = 8, + [180773] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, + ACTIONS(4847), 1, anon_sym_LBRACE, - ACTIONS(9021), 1, + ACTIONS(9044), 1, anon_sym_SEMI, - ACTIONS(9023), 1, + ACTIONS(9046), 1, sym__automatic_semicolon, - ACTIONS(9025), 1, + ACTIONS(9048), 1, sym__function_signature_automatic_semicolon, - STATE(5215), 1, + STATE(3182), 1, sym_statement_block, STATE(5306), 1, sym_comment, - [180705] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [180798] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5307), 1, sym_comment, - ACTIONS(5510), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180722] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5787), 1, + sym__initializer, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180819] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5308), 1, sym_comment, - ACTIONS(5490), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180739] = 4, + ACTIONS(3540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180836] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5309), 1, sym_comment, - ACTIONS(3558), 5, + STATE(5821), 1, + sym__initializer, + ACTIONS(9050), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180756] = 6, + [180857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5310), 1, sym_comment, - STATE(5915), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180777] = 6, + anon_sym_PIPE_RBRACE, + [180874] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9027), 1, - anon_sym_in, - ACTIONS(9029), 1, - anon_sym_of, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5311), 1, sym_comment, - ACTIONS(8966), 3, + STATE(5820), 1, + sym__initializer, + ACTIONS(9050), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180798] = 6, + [180895] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5312), 1, sym_comment, - STATE(5655), 1, + STATE(6105), 1, sym__initializer, - ACTIONS(8866), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180819] = 8, + [180916] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, - ACTIONS(9031), 1, - anon_sym_COMMA, - ACTIONS(9033), 1, - anon_sym_RBRACE, STATE(5313), 1, sym_comment, - STATE(6207), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, - sym__initializer, - [180844] = 7, + ACTIONS(3540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5314), 1, sym_comment, - ACTIONS(9035), 2, + STATE(6135), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [180867] = 4, + [180954] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5315), 1, sym_comment, - ACTIONS(3510), 5, + ACTIONS(3540), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180884] = 6, + [180971] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5316), 1, sym_comment, - STATE(5990), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3574), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180905] = 4, + anon_sym_PIPE_RBRACE, + [180988] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5317), 1, sym_comment, - ACTIONS(3458), 5, + ACTIONS(3566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180922] = 4, + [181005] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5318), 1, - sym_comment, - ACTIONS(3538), 5, - sym__automatic_semicolon, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(9052), 1, anon_sym_COMMA, + ACTIONS(9054), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180939] = 6, + STATE(5318), 1, + sym_comment, + STATE(6053), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, + sym__initializer, + [181030] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5319), 1, sym_comment, - STATE(5833), 1, + STATE(5731), 1, sym__initializer, - ACTIONS(9037), 3, + ACTIONS(9028), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180960] = 7, + [181051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5320), 1, sym_comment, - ACTIONS(9039), 2, + ACTIONS(3566), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180983] = 6, + anon_sym_PIPE_RBRACE, + [181068] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5321), 1, sym_comment, - STATE(5852), 1, + STATE(5679), 1, sym__initializer, - ACTIONS(9041), 3, + ACTIONS(9028), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181004] = 6, + [181089] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4910), 1, + sym__call_signature, STATE(5322), 1, sym_comment, - STATE(6077), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181025] = 6, + STATE(6986), 1, + sym_type_parameters, + [181114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5323), 1, sym_comment, - STATE(5975), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(8176), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181046] = 4, + anon_sym_PIPE_RBRACE, + [181131] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9056), 1, + sym_identifier, + ACTIONS(9058), 1, + anon_sym_GT, + ACTIONS(9060), 1, + sym_jsx_identifier, STATE(5324), 1, sym_comment, - ACTIONS(3516), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181063] = 6, + STATE(6844), 1, + sym_nested_identifier, + STATE(7125), 1, + sym_jsx_namespace_name, + [181156] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5325), 1, sym_comment, - STATE(5684), 1, + STATE(6108), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181084] = 4, + [181177] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5326), 1, sym_comment, - ACTIONS(2343), 5, + STATE(6083), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181101] = 6, + [181198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(9043), 1, - anon_sym_EQ_GT, STATE(5327), 1, sym_comment, - STATE(6678), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181122] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5328), 1, - sym_comment, - STATE(5647), 1, - sym__initializer, - ACTIONS(8866), 3, + ACTIONS(3528), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181143] = 6, + anon_sym_PIPE_RBRACE, + [181215] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(9046), 1, - anon_sym_EQ_GT, - STATE(5329), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, + STATE(5328), 1, sym_comment, - STATE(6833), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181164] = 4, + STATE(6411), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [181240] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5330), 1, + STATE(5329), 1, sym_comment, - ACTIONS(3556), 5, + ACTIONS(9062), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181181] = 6, + [181257] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5331), 1, + STATE(5330), 1, sym_comment, - STATE(5760), 1, + STATE(6109), 1, sym__initializer, - ACTIONS(9049), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181202] = 6, + [181278] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5332), 1, + STATE(5331), 1, sym_comment, - STATE(6256), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3566), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181223] = 6, + anon_sym_PIPE_RBRACE, + [181295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(9064), 1, + anon_sym_EQ_GT, + STATE(5332), 1, + sym_comment, + STATE(6677), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181316] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5333), 1, sym_comment, - STATE(5675), 1, + STATE(5816), 1, sym__initializer, - ACTIONS(8705), 3, + ACTIONS(8711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181244] = 7, + [181337] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(9067), 1, + anon_sym_EQ_GT, STATE(5334), 1, sym_comment, - ACTIONS(9051), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [181267] = 4, + STATE(6908), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181358] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5335), 1, sym_comment, - ACTIONS(2381), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181284] = 8, + ACTIONS(5583), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181375] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9001), 1, - anon_sym_SEMI, - ACTIONS(9003), 1, - sym__automatic_semicolon, - ACTIONS(9005), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9053), 1, - anon_sym_LBRACE, - STATE(1023), 1, - sym_statement_block, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5336), 1, sym_comment, - [181309] = 4, + STATE(6131), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181396] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5337), 1, sym_comment, - ACTIONS(2373), 5, + ACTIONS(3532), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181326] = 4, + [181413] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5338), 1, sym_comment, - ACTIONS(3524), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181343] = 8, + ACTIONS(5613), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181430] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - ACTIONS(9015), 1, - anon_sym_SEMI, - ACTIONS(9017), 1, - sym__automatic_semicolon, - ACTIONS(9019), 1, - sym__function_signature_automatic_semicolon, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4491), 1, + sym__call_signature, STATE(5339), 1, sym_comment, - STATE(6040), 1, - sym_statement_block, - [181368] = 6, + STATE(6986), 1, + sym_type_parameters, + [181455] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8361), 1, - anon_sym_COLON, - ACTIONS(9055), 1, - anon_sym_EQ_GT, STATE(5340), 1, sym_comment, - STATE(6833), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181389] = 6, + ACTIONS(5583), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181472] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5341), 1, sym_comment, - STATE(6272), 1, - sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8176), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181410] = 6, + anon_sym_PIPE_RBRACE, + [181489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5342), 1, sym_comment, - STATE(6149), 1, + STATE(6113), 1, sym__initializer, - ACTIONS(8749), 3, + ACTIONS(8875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181431] = 7, + [181510] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5343), 1, sym_comment, - ACTIONS(9058), 2, + ACTIONS(9070), 5, sym__automatic_semicolon, - anon_sym_SEMI, - [181454] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, - ACTIONS(9060), 1, anon_sym_COMMA, - ACTIONS(9062), 1, anon_sym_RBRACE, - STATE(5344), 1, - sym_comment, - STATE(6302), 1, - aux_sym_enum_body_repeat1, - STATE(6795), 1, - sym__initializer, - [181479] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181527] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, + ACTIONS(7945), 1, anon_sym_LBRACE, - ACTIONS(9021), 1, + ACTIONS(9044), 1, anon_sym_SEMI, - ACTIONS(9023), 1, + ACTIONS(9046), 1, sym__automatic_semicolon, - ACTIONS(9025), 1, + ACTIONS(9048), 1, sym__function_signature_automatic_semicolon, - STATE(2929), 1, + STATE(5344), 1, + sym_comment, + STATE(5678), 1, sym_statement_block, + [181552] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, STATE(5345), 1, sym_comment, - [181504] = 8, + STATE(5910), 1, + sym__call_signature, + STATE(6986), 1, + sym_type_parameters, + [181577] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(9064), 1, - anon_sym_BQUOTE, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5346), 1, sym_comment, - STATE(5394), 1, - aux_sym_template_literal_type_repeat1, - STATE(6164), 1, - sym_template_type, - [181529] = 4, + STATE(6433), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [181602] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5347), 1, sym_comment, - ACTIONS(3554), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181546] = 6, + ACTIONS(5601), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181619] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5348), 1, sym_comment, - STATE(6065), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(9072), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [181567] = 4, + [181642] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5349), 1, sym_comment, - ACTIONS(6165), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [181584] = 6, + ACTIONS(5587), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181659] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8795), 1, + sym_identifier, STATE(5350), 1, sym_comment, - STATE(6007), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181605] = 4, + STATE(5427), 1, + sym_string, + STATE(5940), 1, + sym__module_export_name, + [181684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5351), 1, sym_comment, - ACTIONS(3552), 5, + ACTIONS(8351), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181622] = 6, + [181701] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4494), 1, + sym__call_signature, STATE(5352), 1, sym_comment, - STATE(5979), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181643] = 7, + STATE(6986), 1, + sym_type_parameters, + [181726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, STATE(5353), 1, sym_comment, - ACTIONS(9066), 2, + ACTIONS(8174), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181666] = 8, + anon_sym_PIPE_RBRACE, + [181743] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4509), 1, - sym__call_signature, STATE(5354), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [181691] = 6, + ACTIONS(9074), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181760] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5355), 1, sym_comment, - STATE(6008), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181712] = 6, + ACTIONS(5583), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181777] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4499), 1, + sym__call_signature, STATE(5356), 1, sym_comment, - STATE(6070), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181733] = 8, + STATE(6986), 1, + sym_type_parameters, + [181802] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8911), 1, - anon_sym_SEMI, - ACTIONS(8913), 1, - sym__automatic_semicolon, - ACTIONS(8915), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9053), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_statement_block, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5357), 1, sym_comment, - [181758] = 4, + STATE(6449), 1, + sym__call_signature, + STATE(6459), 1, + sym_type_parameters, + [181827] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5358), 1, sym_comment, - ACTIONS(3422), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181775] = 4, + ACTIONS(9076), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [181844] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4539), 1, + sym__call_signature, STATE(5359), 1, sym_comment, - ACTIONS(3550), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181792] = 6, + STATE(6986), 1, + sym_type_parameters, + [181869] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5360), 1, sym_comment, - STATE(6046), 1, - sym__initializer, - ACTIONS(8886), 3, + ACTIONS(8589), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181813] = 6, + [181886] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, STATE(5361), 1, sym_comment, - STATE(6290), 1, + STATE(5981), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(9078), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181834] = 6, + [181907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, STATE(5362), 1, sym_comment, - STATE(6288), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(3532), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181855] = 4, + anon_sym_PIPE_RBRACE, + [181924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5363), 1, sym_comment, - ACTIONS(8051), 5, + ACTIONS(3534), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181872] = 4, + [181941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5364), 1, sym_comment, - ACTIONS(3546), 5, + ACTIONS(9080), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181889] = 6, + [181958] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(9082), 1, + anon_sym_BQUOTE, STATE(5365), 1, sym_comment, - STATE(6043), 1, - sym__initializer, - ACTIONS(8878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181910] = 6, + STATE(5393), 1, + aux_sym_template_literal_type_repeat1, + STATE(6024), 1, + sym_template_type, + [181983] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5366), 1, sym_comment, - STATE(6016), 1, - sym__initializer, - ACTIONS(8747), 3, + ACTIONS(9084), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [181931] = 6, + [182006] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5026), 1, + sym__call_signature, STATE(5367), 1, sym_comment, - STATE(6064), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181952] = 4, + STATE(6561), 1, + sym_type_parameters, + [182031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5368), 1, sym_comment, - ACTIONS(9068), 5, + ACTIONS(3554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181969] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_extends, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_LBRACE_PIPE, - STATE(1211), 1, - sym_object_type, - STATE(5369), 1, - sym_comment, - STATE(6257), 1, - sym_extends_type_clause, - [181994] = 8, + [182048] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(8952), 1, + ACTIONS(9022), 1, anon_sym_SEMI, - ACTIONS(8954), 1, + ACTIONS(9024), 1, sym__automatic_semicolon, - ACTIONS(8956), 1, + ACTIONS(9026), 1, sym__function_signature_automatic_semicolon, - STATE(2936), 1, + ACTIONS(9086), 1, + anon_sym_LBRACE, + STATE(401), 1, sym_statement_block, - STATE(5370), 1, + STATE(5369), 1, sym_comment, - [182019] = 8, + [182073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8725), 1, - sym__template_chars, - ACTIONS(9070), 1, - anon_sym_BQUOTE, - STATE(5346), 1, - aux_sym_template_literal_type_repeat1, - STATE(5371), 1, + STATE(5370), 1, sym_comment, - STATE(6164), 1, - sym_template_type, - [182044] = 8, + ACTIONS(3552), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182090] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(8145), 1, anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4560), 1, - sym__call_signature, - STATE(5372), 1, + ACTIONS(9088), 1, + anon_sym_LBRACE, + STATE(5371), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [182069] = 6, + STATE(5648), 1, + sym_type_arguments, + ACTIONS(9090), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [182113] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5373), 1, + STATE(5372), 1, sym_comment, - STATE(6021), 1, + STATE(5766), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(9092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182090] = 4, + [182134] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5374), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5236), 1, + sym__call_signature, + STATE(5373), 1, sym_comment, - ACTIONS(8142), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182107] = 6, + STATE(6561), 1, + sym_type_parameters, + [182159] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5375), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_formal_parameters, + STATE(4505), 1, + sym__call_signature, + STATE(5374), 1, sym_comment, - STATE(5999), 1, - sym__initializer, - ACTIONS(8886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182128] = 6, + STATE(6986), 1, + sym_type_parameters, + [182184] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, - STATE(5376), 1, + STATE(5375), 1, sym_comment, - STATE(6062), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182149] = 8, + ACTIONS(5431), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182201] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, + ACTIONS(7175), 1, anon_sym_LT, - ACTIONS(7197), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - STATE(4055), 1, + STATE(4286), 1, sym_formal_parameters, - STATE(4863), 1, + STATE(5283), 1, sym__call_signature, - STATE(5377), 1, + STATE(5376), 1, sym_comment, - STATE(6769), 1, + STATE(6561), 1, sym_type_parameters, - [182174] = 4, + [182226] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5378), 1, + ACTIONS(7165), 1, + anon_sym_EQ, + STATE(5377), 1, sym_comment, - ACTIONS(8140), 5, + STATE(6122), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182191] = 6, + [182247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8361), 1, + STATE(5378), 1, + sym_comment, + ACTIONS(5880), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(9072), 1, - anon_sym_EQ_GT, + [182264] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5379), 1, sym_comment, - STATE(6833), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [182212] = 8, + ACTIONS(9094), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_abstract, - STATE(4771), 1, - aux_sym_export_statement_repeat1, STATE(5380), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [182237] = 8, + ACTIONS(3440), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182304] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4557), 1, - sym__call_signature, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5381), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [182262] = 8, + STATE(6123), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182325] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8729), 1, - anon_sym_abstract, - ACTIONS(9075), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7945), 1, + anon_sym_LBRACE, + ACTIONS(9009), 1, + anon_sym_SEMI, + ACTIONS(9011), 1, + sym__automatic_semicolon, + ACTIONS(9013), 1, + sym__function_signature_automatic_semicolon, + STATE(5187), 1, + sym_statement_block, STATE(5382), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [182287] = 7, + [182350] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(7165), 1, + anon_sym_EQ, STATE(5383), 1, sym_comment, - ACTIONS(9077), 2, + STATE(6124), 1, + sym__initializer, + ACTIONS(8875), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182310] = 6, + [182371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8431), 1, + anon_sym_COLON, + ACTIONS(9096), 1, + anon_sym_EQ_GT, STATE(5384), 1, sym_comment, - STATE(6270), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182331] = 8, + STATE(6908), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182392] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4568), 1, - sym__call_signature, STATE(5385), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [182356] = 7, + ACTIONS(3540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182409] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5386), 1, sym_comment, - ACTIONS(9079), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [182379] = 4, + STATE(6459), 1, + sym_type_parameters, + STATE(6595), 1, + sym__call_signature, + [182434] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5387), 1, sym_comment, - ACTIONS(5809), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [182396] = 6, + ACTIONS(5033), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7067), 1, - anon_sym_LBRACK, - ACTIONS(9081), 1, - anon_sym_RBRACE, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5388), 1, sym_comment, - ACTIONS(4883), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [182417] = 7, + STATE(6459), 1, + sym_type_parameters, + STATE(6863), 1, + sym__call_signature, + [182476] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7435), 1, anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7439), 1, anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5389), 1, sym_comment, - ACTIONS(9083), 2, - anon_sym_COMMA, - anon_sym_GT, - [182440] = 8, + ACTIONS(9099), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182499] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4529), 1, - sym__call_signature, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(9101), 1, + anon_sym_COMMA, + ACTIONS(9103), 1, + anon_sym_RBRACE, STATE(5390), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [182465] = 4, + STATE(6057), 1, + aux_sym_enum_body_repeat1, + STATE(6465), 1, + sym__initializer, + [182524] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5391), 1, sym_comment, - ACTIONS(9085), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [182482] = 4, + ACTIONS(5029), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182541] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8999), 1, + anon_sym_SEMI, + ACTIONS(9001), 1, + sym__automatic_semicolon, + ACTIONS(9003), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9086), 1, + anon_sym_LBRACE, + STATE(399), 1, + sym_statement_block, STATE(5392), 1, sym_comment, - ACTIONS(8142), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182499] = 6, + [182566] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(8717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8719), 1, + sym__template_chars, + ACTIONS(9105), 1, + anon_sym_BQUOTE, + STATE(5087), 1, + aux_sym_template_literal_type_repeat1, STATE(5393), 1, sym_comment, - STATE(6026), 1, - sym__initializer, - ACTIONS(8747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182520] = 7, + STATE(6024), 1, + sym_template_type, + [182591] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1352), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9087), 1, - anon_sym_BQUOTE, - ACTIONS(9089), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9092), 1, - sym__template_chars, - STATE(6164), 1, - sym_template_type, - STATE(5394), 2, + ACTIONS(7995), 1, + anon_sym_extends, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, + STATE(5256), 1, + sym_object_type, + STATE(5394), 1, sym_comment, - aux_sym_template_literal_type_repeat1, - [182543] = 7, + STATE(6016), 1, + sym_extends_type_clause, + [182616] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DOT, - STATE(4337), 1, - sym_arguments, + STATE(4061), 1, + sym_formal_parameters, + STATE(4518), 1, + sym__call_signature, STATE(5395), 1, sym_comment, - ACTIONS(9095), 2, - anon_sym_COMMA, - anon_sym_GT, - [182566] = 4, + STATE(6986), 1, + sym_type_parameters, + [182641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5396), 1, sym_comment, - ACTIONS(9097), 5, + ACTIONS(5882), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [182583] = 7, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [182658] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(4813), 1, + sym_formal_parameters, STATE(5397), 1, sym_comment, - ACTIONS(9099), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [182606] = 8, + STATE(6459), 1, + sym_type_parameters, + STATE(6475), 1, + sym__call_signature, + [182683] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8367), 1, - anon_sym_abstract, - ACTIONS(9101), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5244), 1, + sym__call_signature, STATE(5398), 1, sym_comment, - STATE(5410), 1, - sym_decorator, - [182631] = 6, + STATE(6561), 1, + sym_type_parameters, + [182708] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8423), 1, + anon_sym_class, + ACTIONS(8425), 1, + anon_sym_abstract, + STATE(4706), 1, + aux_sym_export_statement_repeat1, STATE(5399), 1, sym_comment, - STATE(6284), 1, - sym__initializer, - ACTIONS(8749), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182652] = 6, + STATE(5608), 1, + sym_decorator, + [182733] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, - anon_sym_EQ, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(5260), 1, + sym__call_signature, STATE(5400), 1, sym_comment, - STATE(6042), 1, - sym__initializer, - ACTIONS(8878), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182673] = 5, + STATE(6561), 1, + sym_type_parameters, + [182758] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5480), 1, - anon_sym_in, STATE(5401), 1, sym_comment, - ACTIONS(6416), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [182692] = 8, + ACTIONS(5427), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182775] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4055), 1, - sym_formal_parameters, - STATE(4543), 1, - sym__call_signature, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5402), 1, sym_comment, - STATE(6769), 1, - sym_type_parameters, - [182717] = 4, + ACTIONS(9107), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182798] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7945), 1, + anon_sym_LBRACE, + ACTIONS(9032), 1, + anon_sym_SEMI, + ACTIONS(9034), 1, + sym__automatic_semicolon, + ACTIONS(9036), 1, + sym__function_signature_automatic_semicolon, + STATE(5189), 1, + sym_statement_block, + STATE(5403), 1, + sym_comment, + [182823] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5403), 1, + STATE(5404), 1, sym_comment, - ACTIONS(9103), 5, + ACTIONS(5025), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [182734] = 4, + [182840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5404), 1, + STATE(5405), 1, sym_comment, - ACTIONS(9105), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182751] = 4, - ACTIONS(3), 1, + ACTIONS(2247), 5, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_GT, + anon_sym_DOT, + [182857] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_formal_parameters, + STATE(4627), 1, + sym__call_signature, + STATE(5406), 1, + sym_comment, + STATE(6561), 1, + sym_type_parameters, + [182882] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(5405), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5407), 1, sym_comment, - ACTIONS(9107), 5, + ACTIONS(2087), 5, anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182768] = 7, + anon_sym_DOT, + [182899] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, + ACTIONS(7435), 1, anon_sym_AMP, - ACTIONS(7437), 1, + ACTIONS(7439), 1, anon_sym_extends, - ACTIONS(8790), 1, + ACTIONS(8803), 1, anon_sym_PIPE, - STATE(5406), 1, + STATE(5408), 1, sym_comment, ACTIONS(9109), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182791] = 6, + [182922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7163), 1, + ACTIONS(7165), 1, anon_sym_EQ, - STATE(5407), 1, + STATE(5409), 1, sym_comment, - STATE(6027), 1, + STATE(5750), 1, sym__initializer, - ACTIONS(8747), 3, + ACTIONS(9111), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182812] = 6, + [182943] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9111), 1, - anon_sym_DQUOTE, - STATE(5408), 1, - sym_comment, - STATE(5586), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [182832] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9113), 1, + sym_html_character_reference, ACTIONS(9115), 1, - anon_sym_with, - STATE(5409), 1, - sym_comment, - STATE(6438), 1, - sym_import_attribute, - ACTIONS(9117), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182852] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + anon_sym_SQUOTE, + ACTIONS(9117), 1, + sym_unescaped_single_jsx_string_fragment, STATE(5410), 1, sym_comment, - ACTIONS(9119), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [182868] = 6, + STATE(5425), 1, + aux_sym__jsx_string_repeat2, + [182965] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, + ACTIONS(9119), 1, + anon_sym_DQUOTE, STATE(5411), 1, sym_comment, - STATE(6609), 1, - sym__from_clause, - ACTIONS(9123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182888] = 7, + STATE(5479), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [182985] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, + ACTIONS(9123), 1, + anon_sym_with, ACTIONS(9125), 1, - anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(9127), 1, + sym__automatic_semicolon, STATE(5412), 1, sym_comment, - [182910] = 6, + STATE(6767), 1, + sym_import_attribute, + [183007] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(9129), 1, + anon_sym_STAR, + ACTIONS(9131), 1, + anon_sym_LBRACE, STATE(5413), 1, sym_comment, - STATE(6598), 1, - sym_import_attribute, - ACTIONS(9127), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182930] = 6, + STATE(7126), 2, + sym_namespace_import, + sym_named_imports, + [183027] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9133), 1, + anon_sym_COMMA, + ACTIONS(9135), 1, + anon_sym_GT, STATE(5414), 1, sym_comment, - STATE(6597), 1, - sym_import_attribute, - ACTIONS(9129), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182950] = 6, + STATE(6023), 1, + aux_sym_type_arguments_repeat1, + [183049] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(9137), 1, + anon_sym_LT, + STATE(2243), 1, + sym_type_arguments, + STATE(2244), 1, + sym_arguments, STATE(5415), 1, sym_comment, - STATE(5434), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9133), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182970] = 6, + [183071] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9139), 1, + anon_sym_RPAREN, STATE(5416), 1, sym_comment, - STATE(5435), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9135), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182990] = 7, + [183093] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9137), 1, - anon_sym_QMARK, + ACTIONS(9141), 1, + anon_sym_RBRACK, STATE(5417), 1, sym_comment, - [183012] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183115] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9139), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8168), 1, + anon_sym_EQ, STATE(5418), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183032] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6465), 1, + sym__initializer, + ACTIONS(9143), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [183135] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9141), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8369), 1, + anon_sym_finally, STATE(5419), 1, sym_comment, - STATE(5425), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183052] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6697), 1, + sym_finally_clause, + ACTIONS(3116), 2, + anon_sym_else, + anon_sym_while, + [183155] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9141), 1, - anon_sym_DQUOTE, - STATE(5418), 1, - aux_sym_string_repeat1, - STATE(5420), 1, - sym_comment, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183072] = 7, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9145), 1, + anon_sym_LBRACE, + ACTIONS(9147), 1, + anon_sym_COMMA, + ACTIONS(9150), 1, + anon_sym_LBRACE_PIPE, + STATE(5420), 2, + sym_comment, + aux_sym_extends_type_clause_repeat1, + [183175] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9145), 1, - sym_identifier, - STATE(5101), 1, - sym_nested_type_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9152), 1, + anon_sym_RBRACK, STATE(5421), 1, sym_comment, - STATE(5857), 1, - sym_generic_type, - STATE(7112), 1, - sym_nested_identifier, - [183094] = 7, + [183197] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8065), 1, - anon_sym_COMMA, - ACTIONS(9147), 1, - anon_sym_LBRACE, - ACTIONS(9149), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9154), 1, + anon_sym_RBRACK, STATE(5422), 1, sym_comment, - STATE(5534), 1, - aux_sym_extends_type_clause_repeat1, - [183116] = 7, + [183219] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8065), 1, - anon_sym_COMMA, - ACTIONS(9151), 1, - anon_sym_LBRACE, - ACTIONS(9153), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9156), 1, + anon_sym_RBRACK, STATE(5423), 1, sym_comment, - STATE(5534), 1, - aux_sym_extends_type_clause_repeat1, - [183138] = 7, + [183241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8065), 1, - anon_sym_COMMA, - ACTIONS(9151), 1, - anon_sym_LBRACE, - ACTIONS(9153), 1, - anon_sym_LBRACE_PIPE, STATE(5424), 1, sym_comment, - STATE(5534), 1, - aux_sym_extends_type_clause_repeat1, - [183160] = 6, + ACTIONS(3138), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(9158), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183259] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9139), 1, + ACTIONS(9113), 1, + sym_html_character_reference, + ACTIONS(9117), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(9160), 1, anon_sym_SQUOTE, STATE(5425), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183180] = 7, + STATE(5609), 1, + aux_sym__jsx_string_repeat2, + [183281] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9155), 1, - anon_sym_COLON, + ACTIONS(9160), 1, + anon_sym_DQUOTE, + ACTIONS(9162), 1, + sym_html_character_reference, + ACTIONS(9164), 1, + sym_unescaped_double_jsx_string_fragment, STATE(5426), 1, sym_comment, - [183202] = 5, + STATE(5612), 1, + aux_sym__jsx_string_repeat1, + [183303] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9081), 1, - anon_sym_RBRACE, STATE(5427), 1, sym_comment, - ACTIONS(4883), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [183220] = 7, + ACTIONS(9166), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [183319] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9157), 1, + ACTIONS(9168), 1, anon_sym_COLON, STATE(5428), 1, sym_comment, - [183242] = 6, + [183341] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, + ACTIONS(9170), 1, + anon_sym_DQUOTE, STATE(5429), 1, sym_comment, - STATE(6515), 1, - sym__from_clause, - ACTIONS(5878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183262] = 6, + STATE(5448), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183361] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5430), 1, sym_comment, - STATE(6747), 1, - sym__from_clause, - ACTIONS(9159), 2, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9174), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183282] = 6, + [183381] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9176), 1, + anon_sym_COLON, STATE(5431), 1, sym_comment, - STATE(6506), 1, - sym_import_attribute, - ACTIONS(9161), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183302] = 6, + [183403] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5432), 1, sym_comment, - STATE(6505), 1, - sym_import_attribute, - ACTIONS(9163), 2, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9178), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183322] = 7, + [183423] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - ACTIONS(9165), 1, + ACTIONS(9180), 1, anon_sym_SEMI, - ACTIONS(9167), 1, + ACTIONS(9182), 1, sym__automatic_semicolon, STATE(5433), 1, sym_comment, - STATE(6504), 1, + STATE(6823), 1, sym_import_attribute, - [183344] = 6, + [183445] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(9170), 1, + anon_sym_SQUOTE, STATE(5434), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9169), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183364] = 6, + STATE(5449), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183465] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, STATE(5435), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9171), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183384] = 6, + STATE(6829), 1, + sym_type_parameters, + STATE(7380), 1, + sym_formal_parameters, + [183487] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, STATE(5436), 1, sym_comment, - STATE(6931), 1, + STATE(6825), 1, sym_import_attribute, - ACTIONS(9173), 2, + ACTIONS(9186), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183404] = 7, + [183507] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9175), 1, - anon_sym_RBRACK, + ACTIONS(9123), 1, + anon_sym_with, STATE(5437), 1, sym_comment, - [183426] = 7, + STATE(6826), 1, + sym_import_attribute, + ACTIONS(9188), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183527] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9177), 1, - anon_sym_COMMA, - ACTIONS(9179), 1, - anon_sym_GT, + ACTIONS(9190), 1, + sym__glimmer_template_content, + ACTIONS(9192), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2555), 1, + sym_glimmer_closing_tag, STATE(5438), 1, sym_comment, - STATE(6264), 1, - aux_sym_type_arguments_repeat1, - [183448] = 6, + STATE(5906), 1, + aux_sym_glimmer_template_repeat1, + [183549] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(9194), 1, + anon_sym_from, STATE(5439), 1, sym_comment, - STATE(6945), 1, - sym_import_attribute, - ACTIONS(9181), 2, + STATE(6893), 1, + sym__from_clause, + ACTIONS(5566), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183468] = 5, + [183569] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, STATE(5440), 1, sym_comment, - ACTIONS(3242), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(9183), 2, + STATE(6572), 1, + sym__from_clause, + ACTIONS(9196), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183486] = 7, + [183589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4384), 1, - sym_formal_parameters, + ACTIONS(9123), 1, + anon_sym_with, STATE(5441), 1, sym_comment, - STATE(6341), 1, - sym_type_parameters, - [183508] = 6, + STATE(6558), 1, + sym_import_attribute, + ACTIONS(9198), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183609] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(9123), 1, + anon_sym_with, STATE(5442), 1, sym_comment, - STATE(5632), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9185), 2, + STATE(6556), 1, + sym_import_attribute, + ACTIONS(9200), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183528] = 6, + [183629] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, STATE(5443), 1, sym_comment, - STATE(5631), 1, + STATE(5455), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9187), 2, + ACTIONS(9202), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183548] = 7, + [183649] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9189), 1, - anon_sym_SEMI, - ACTIONS(9191), 1, - sym__automatic_semicolon, + ACTIONS(9194), 1, + anon_sym_from, STATE(5444), 1, sym_comment, - STATE(6429), 1, - sym_import_attribute, - [183570] = 7, + STATE(6836), 1, + sym__from_clause, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183669] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7075), 1, - anon_sym_LPAREN, - ACTIONS(7081), 1, - anon_sym_LT, - STATE(4009), 1, - sym_arguments, - STATE(4133), 1, - sym_type_arguments, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5445), 1, sym_comment, - [183592] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9193), 1, - anon_sym_RPAREN, - STATE(5446), 1, - sym_comment, - [183614] = 5, + STATE(5456), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9204), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183689] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9197), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - ACTIONS(9195), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(5447), 2, - sym_comment, - aux_sym_extends_clause_repeat1, - [183632] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9200), 1, - anon_sym_RBRACK, - STATE(5448), 1, + STATE(5446), 1, sym_comment, - [183654] = 7, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9206), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9202), 1, - anon_sym_EQ, - ACTIONS(9204), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - ACTIONS(9206), 1, - anon_sym_RBRACK, - STATE(5449), 1, + STATE(5447), 1, sym_comment, - STATE(5972), 1, - aux_sym_array_pattern_repeat1, - [183676] = 6, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9208), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183729] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9208), 1, - anon_sym_DQUOTE, - STATE(5450), 1, - sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183696] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, ACTIONS(9210), 1, - anon_sym_RBRACK, - STATE(5451), 1, - sym_comment, - [183718] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9208), 1, - anon_sym_SQUOTE, - STATE(5452), 1, - sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183738] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9212), 1, - anon_sym_COLON, - STATE(5453), 1, - sym_comment, - [183760] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9214), 1, anon_sym_DQUOTE, - STATE(5454), 1, + STATE(5448), 1, sym_comment, - STATE(5460), 1, + STATE(5479), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183780] = 6, + [183749] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9214), 1, + ACTIONS(9210), 1, anon_sym_SQUOTE, - STATE(5455), 1, + STATE(5449), 1, sym_comment, - STATE(5461), 1, + STATE(5480), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183800] = 7, + [183769] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, + ACTIONS(7933), 1, anon_sym_const, - ACTIONS(9216), 1, + ACTIONS(9212), 1, sym_identifier, - ACTIONS(9218), 1, + ACTIONS(9214), 1, anon_sym_GT, - STATE(5456), 1, + STATE(5450), 1, sym_comment, - STATE(6618), 1, + STATE(6739), 1, sym_type_parameter, - [183822] = 6, + [183791] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, + ACTIONS(9194), 1, anon_sym_from, - STATE(5457), 1, + STATE(5451), 1, sym_comment, - STATE(6384), 1, + STATE(6515), 1, sym__from_clause, - ACTIONS(9220), 2, + ACTIONS(5945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183842] = 6, + [183811] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5458), 1, + ACTIONS(9123), 1, + anon_sym_with, + STATE(5452), 1, sym_comment, - STATE(5465), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9222), 2, + STATE(6505), 1, + sym_import_attribute, + ACTIONS(9216), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183862] = 6, + [183831] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5459), 1, + ACTIONS(9123), 1, + anon_sym_with, + STATE(5453), 1, sym_comment, - STATE(5466), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9224), 2, + STATE(6504), 1, + sym_import_attribute, + ACTIONS(9218), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183882] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183851] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9226), 1, - anon_sym_DQUOTE, - STATE(5460), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, + ACTIONS(9220), 1, + anon_sym_SEMI, + ACTIONS(9222), 1, + sym__automatic_semicolon, + STATE(5454), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183902] = 6, - ACTIONS(3), 1, + STATE(6503), 1, + sym_import_attribute, + [183873] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5455), 1, + sym_comment, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9224), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183893] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9226), 1, - anon_sym_SQUOTE, - STATE(5461), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5456), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183922] = 7, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9226), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183913] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, ACTIONS(9228), 1, anon_sym_RPAREN, - STATE(5462), 1, + STATE(5457), 1, sym_comment, - [183944] = 7, + [183935] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, ACTIONS(9230), 1, anon_sym_LT, - STATE(2737), 1, + STATE(2817), 1, sym_type_arguments, - STATE(2738), 1, + STATE(2818), 1, sym_arguments, - STATE(5463), 1, + STATE(5458), 1, sym_comment, - [183966] = 6, + [183957] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5464), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5459), 1, sym_comment, - STATE(6410), 1, - sym__from_clause, - ACTIONS(5923), 2, - sym__automatic_semicolon, + STATE(6919), 1, + sym_type_parameters, + STATE(7174), 1, + sym_formal_parameters, + [183979] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, + ACTIONS(9232), 1, anon_sym_SEMI, - [183986] = 6, + ACTIONS(9234), 1, + sym__automatic_semicolon, + STATE(5460), 1, + sym_comment, + STATE(6644), 1, + sym_import_attribute, + [184001] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9236), 1, anon_sym_COMMA, - STATE(5465), 1, + ACTIONS(9238), 1, + anon_sym_GT, + STATE(5461), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9232), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184006] = 6, + STATE(6270), 1, + aux_sym_type_arguments_repeat1, + [184023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5466), 1, + STATE(5462), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9234), 2, + ACTIONS(3114), 4, sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [184026] = 7, + [184039] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - ACTIONS(9236), 1, + ACTIONS(9240), 1, anon_sym_SEMI, - ACTIONS(9238), 1, + ACTIONS(9242), 1, sym__automatic_semicolon, - STATE(5467), 1, + STATE(5463), 1, sym_comment, - STATE(6499), 1, + STATE(6452), 1, sym_import_attribute, - [184048] = 7, + [184061] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(9242), 1, - anon_sym_GT, - STATE(5468), 1, + ACTIONS(7089), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + anon_sym_LT, + STATE(3994), 1, + sym_arguments, + STATE(4219), 1, + sym_type_arguments, + STATE(5464), 1, sym_comment, - STATE(6274), 1, - aux_sym_type_arguments_repeat1, - [184070] = 4, + [184083] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5469), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9244), 1, + anon_sym_RPAREN, + STATE(5465), 1, sym_comment, - ACTIONS(9244), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [184086] = 7, + [184105] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5466), 1, + sym_comment, + STATE(6929), 1, + sym_type_parameters, + STATE(7147), 1, + sym_formal_parameters, + [184127] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8196), 1, + anon_sym_DOT, ACTIONS(9246), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5470), 1, + anon_sym_COMMA, + ACTIONS(9248), 1, + anon_sym_GT, + STATE(5467), 1, + sym_comment, + STATE(6156), 1, + aux_sym_type_arguments_repeat1, + [184149] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8168), 1, + anon_sym_EQ, + STATE(5468), 1, sym_comment, - [184108] = 7, + STATE(6822), 1, + sym__initializer, + ACTIONS(9250), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [184169] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9248), 1, - anon_sym_RPAREN, - STATE(5471), 1, + ACTIONS(9252), 1, + anon_sym_RBRACK, + STATE(5469), 1, + sym_comment, + [184191] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, + ACTIONS(9254), 1, + anon_sym_GT, + STATE(5470), 1, sym_comment, - [184130] = 7, + STATE(6739), 1, + sym_type_parameter, + [184213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(9250), 1, - anon_sym_LT, - STATE(2324), 1, - sym_arguments, - STATE(2325), 1, - sym_type_arguments, - STATE(5472), 1, + ACTIONS(9256), 1, + anon_sym_COMMA, + ACTIONS(5906), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(5471), 2, sym_comment, - [184152] = 6, + aux_sym_array_repeat1, + [184231] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9252), 1, - anon_sym_EQ, - STATE(5473), 1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(5472), 1, sym_comment, - STATE(6858), 1, - sym__initializer, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - [184172] = 7, + [184253] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9254), 1, - anon_sym_QMARK, - STATE(5474), 1, + ACTIONS(9261), 1, + anon_sym_RBRACK, + STATE(5473), 1, sym_comment, - [184194] = 6, + [184275] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9256), 1, + ACTIONS(9263), 1, anon_sym_DQUOTE, - STATE(5475), 1, + STATE(5474), 1, sym_comment, - STATE(5482), 1, + STATE(5488), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184214] = 6, + [184295] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9256), 1, + ACTIONS(9265), 1, + anon_sym_SQUOTE, + STATE(5475), 1, + sym_comment, + STATE(5480), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184315] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9263), 1, anon_sym_SQUOTE, STATE(5476), 1, sym_comment, - STATE(5483), 1, + STATE(5489), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184234] = 7, + [184335] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9258), 1, - anon_sym_SEMI, - ACTIONS(9260), 1, - sym__automatic_semicolon, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9267), 1, + anon_sym_RBRACK, STATE(5477), 1, sym_comment, - STATE(6887), 1, - sym_import_attribute, - [184256] = 6, + [184357] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(9265), 1, + anon_sym_DQUOTE, STATE(5478), 1, sym_comment, - STATE(5484), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184276] = 6, + STATE(5479), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184377] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - ACTIONS(5434), 1, - anon_sym_BQUOTE, - STATE(5479), 1, + ACTIONS(9269), 1, + anon_sym_DQUOTE, + ACTIONS(9271), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(5479), 2, sym_comment, - STATE(3118), 2, - sym_template_string, - sym_arguments, - [184296] = 7, + aux_sym_string_repeat1, + [184395] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9264), 1, - anon_sym_COMMA, - ACTIONS(9266), 1, - anon_sym_GT, - STATE(5480), 1, + ACTIONS(9274), 1, + anon_sym_SQUOTE, + ACTIONS(9276), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(5480), 2, sym_comment, - STATE(6326), 1, - aux_sym_type_arguments_repeat1, - [184318] = 6, + aux_sym_string_repeat2, + [184413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, STATE(5481), 1, sym_comment, - STATE(5485), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9268), 2, + ACTIONS(6769), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [184338] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [184429] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9270), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5430), 1, + aux_sym_variable_declaration_repeat1, STATE(5482), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184358] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9279), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184449] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9270), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, STATE(5483), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184378] = 6, + STATE(6390), 1, + sym__from_clause, + ACTIONS(9281), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, + STATE(5432), 1, + aux_sym_variable_declaration_repeat1, STATE(5484), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9272), 2, + ACTIONS(9283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184398] = 6, + [184489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, STATE(5485), 1, sym_comment, - STATE(5598), 1, + STATE(5494), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9274), 2, + ACTIONS(9285), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184418] = 7, + [184509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9276), 1, - anon_sym_COMMA, - ACTIONS(9278), 1, - anon_sym_GT, + ACTIONS(9123), 1, + anon_sym_with, STATE(5486), 1, sym_comment, - STATE(6017), 1, - aux_sym_type_arguments_repeat1, - [184440] = 7, + STATE(6909), 1, + sym_import_attribute, + ACTIONS(9287), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184529] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9280), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - ACTIONS(9282), 1, - anon_sym_GT, STATE(5487), 1, sym_comment, - STATE(6229), 1, - aux_sym_type_arguments_repeat1, - [184462] = 7, + STATE(5495), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184549] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9284), 1, - sym__glimmer_template_content, - ACTIONS(9286), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3143), 1, - sym_glimmer_closing_tag, + ACTIONS(9291), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5488), 1, sym_comment, - STATE(6069), 1, - aux_sym_glimmer_template_repeat1, - [184484] = 7, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184569] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(9288), 1, - anon_sym_GT, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5489), 1, sym_comment, - STATE(6618), 1, - sym_type_parameter, - [184506] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184589] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9290), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, STATE(5490), 1, sym_comment, - STATE(5492), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184526] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6915), 1, + sym_import_attribute, + ACTIONS(9293), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184609] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9290), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9297), 1, + anon_sym_COMMA, STATE(5491), 1, sym_comment, - STATE(5493), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184546] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5618), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(9295), 2, + anon_sym_LBRACE, + anon_sym_implements, + [184629] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9292), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, STATE(5492), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184566] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6788), 1, + sym_type_parameters, + STATE(7162), 1, + sym_formal_parameters, + [184651] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9292), 1, - anon_sym_SQUOTE, - STATE(5493), 1, - sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184586] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5493), 1, + sym_comment, + STATE(6416), 1, + sym__from_clause, + ACTIONS(5937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184671] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9294), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5494), 1, sym_comment, - STATE(5498), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184606] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9299), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184691] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9294), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5495), 1, sym_comment, - STATE(5499), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184626] = 7, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184711] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9296), 1, - anon_sym_RBRACK, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5496), 1, sym_comment, - [184648] = 7, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9303), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184731] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9298), 1, - anon_sym_RBRACK, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5497), 1, sym_comment, - [184670] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9305), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184751] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9300), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + sym__automatic_semicolon, STATE(5498), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184690] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6546), 1, + sym_import_attribute, + [184773] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9300), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, STATE(5499), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184710] = 7, + STATE(6931), 1, + sym__from_clause, + ACTIONS(9311), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184793] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9302), 1, - anon_sym_QMARK, + ACTIONS(9123), 1, + anon_sym_with, STATE(5500), 1, sym_comment, - [184732] = 5, + STATE(6535), 1, + sym_import_attribute, + ACTIONS(9313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184813] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9244), 1, - sym_escape_sequence, + ACTIONS(9123), 1, + anon_sym_with, STATE(5501), 1, sym_comment, - ACTIONS(9304), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [184750] = 6, + STATE(6534), 1, + sym_import_attribute, + ACTIONS(9315), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184833] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9317), 1, anon_sym_COMMA, + ACTIONS(9319), 1, + anon_sym_GT, STATE(5502), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184770] = 6, + STATE(6294), 1, + aux_sym_type_arguments_repeat1, + [184855] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, + ACTIONS(9123), 1, + anon_sym_with, STATE(5503), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9309), 2, + STATE(6858), 1, + sym_import_attribute, + ACTIONS(9321), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184790] = 7, + [184875] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9311), 1, - anon_sym_SEMI, - ACTIONS(9313), 1, - sym__automatic_semicolon, + ACTIONS(9194), 1, + anon_sym_from, STATE(5504), 1, sym_comment, - STATE(6382), 1, - sym_import_attribute, - [184812] = 6, + STATE(6518), 1, + sym__from_clause, + ACTIONS(5902), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184895] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(8202), 1, + anon_sym_EQ, STATE(5505), 1, sym_comment, - STATE(6393), 1, - sym_import_attribute, - ACTIONS(9315), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184832] = 6, + STATE(6745), 1, + sym_default_type, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_GT, + [184915] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4869), 1, + anon_sym_BQUOTE, STATE(5506), 1, sym_comment, - STATE(6394), 1, - sym_import_attribute, - ACTIONS(9317), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184852] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2441), 2, + sym_template_string, + sym_arguments, + [184935] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9319), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5507), 1, sym_comment, - STATE(5510), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184872] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9325), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [184951] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9284), 1, - sym__glimmer_template_content, - ACTIONS(9286), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3067), 1, - sym_glimmer_closing_tag, - STATE(5488), 1, - aux_sym_glimmer_template_repeat1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, STATE(5508), 1, sym_comment, - [184894] = 6, + STATE(6859), 1, + sym_import_attribute, + ACTIONS(9327), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184971] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9319), 1, - anon_sym_SQUOTE, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, + ACTIONS(9329), 1, + anon_sym_GT, STATE(5509), 1, sym_comment, - STATE(5511), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184914] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6739), 1, + sym_type_parameter, + [184993] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9321), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9331), 1, + anon_sym_RBRACK, STATE(5510), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184934] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185015] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9321), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9333), 1, + anon_sym_COMMA, + ACTIONS(9335), 1, + anon_sym_GT, STATE(5511), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184954] = 6, + STATE(6091), 1, + aux_sym_type_arguments_repeat1, + [185037] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(8141), 1, anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_LBRACE, + ACTIONS(9339), 1, + anon_sym_LBRACE_PIPE, + STATE(5420), 1, + aux_sym_extends_type_clause_repeat1, STATE(5512), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9323), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184974] = 6, + [185059] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(8141), 1, anon_sym_COMMA, + ACTIONS(9337), 1, + anon_sym_LBRACE, + ACTIONS(9339), 1, + anon_sym_LBRACE_PIPE, + STATE(5420), 1, + aux_sym_extends_type_clause_repeat1, STATE(5513), 1, sym_comment, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9325), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184994] = 4, + [185081] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8141), 1, + anon_sym_COMMA, + ACTIONS(9341), 1, + anon_sym_LBRACE, + ACTIONS(9343), 1, + anon_sym_LBRACE_PIPE, + STATE(5420), 1, + aux_sym_extends_type_clause_repeat1, STATE(5514), 1, sym_comment, - ACTIONS(3118), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [185010] = 7, + [185103] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9327), 1, - anon_sym_SEMI, - ACTIONS(9329), 1, - sym__automatic_semicolon, + ACTIONS(9345), 1, + sym_identifier, + STATE(5371), 1, + sym_nested_type_identifier, STATE(5515), 1, sym_comment, - STATE(6940), 1, - sym_import_attribute, - [185032] = 6, + STATE(6061), 1, + sym_generic_type, + STATE(7118), 1, + sym_nested_identifier, + [185125] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - STATE(5516), 1, - sym_comment, - STATE(6941), 1, - sym_import_attribute, - ACTIONS(9331), 2, + ACTIONS(9347), 1, + anon_sym_COMMA, + ACTIONS(5136), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185052] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - STATE(5517), 1, + STATE(5516), 2, sym_comment, - STATE(6947), 1, - sym_import_attribute, - ACTIONS(9333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185072] = 6, + aux_sym_sequence_expression_repeat1, + [185143] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9335), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - STATE(5518), 1, + STATE(5517), 1, sym_comment, - STATE(5521), 1, + STATE(5568), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185092] = 6, + [185163] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9335), 1, + ACTIONS(9350), 1, anon_sym_SQUOTE, - STATE(5519), 1, + STATE(5518), 1, sym_comment, - STATE(5522), 1, + STATE(5547), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185112] = 6, + [185183] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5520), 1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5519), 1, sym_comment, - STATE(6962), 1, - sym__from_clause, - ACTIONS(5616), 2, + STATE(5532), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9352), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185132] = 6, + [185203] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9337), 1, - anon_sym_DQUOTE, - STATE(5521), 1, + ACTIONS(9354), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, + STATE(5520), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [185152] = 6, + [185223] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9337), 1, + ACTIONS(9356), 1, anon_sym_SQUOTE, - STATE(5522), 1, - sym_comment, - STATE(5614), 1, + STATE(5475), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + STATE(5521), 1, + sym_comment, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185172] = 6, + [185243] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9339), 1, + ACTIONS(9356), 1, anon_sym_DQUOTE, - STATE(5523), 1, - sym_comment, - STATE(5527), 1, + STATE(5478), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + STATE(5522), 1, + sym_comment, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185192] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9341), 1, - sym_html_character_reference, - ACTIONS(9343), 1, - anon_sym_SQUOTE, - ACTIONS(9345), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5524), 1, - sym_comment, - STATE(5561), 1, - aux_sym__jsx_string_repeat2, - [185214] = 7, + [185263] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9343), 1, + ACTIONS(9354), 1, anon_sym_DQUOTE, - ACTIONS(9347), 1, - sym_html_character_reference, - ACTIONS(9349), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5525), 1, + STATE(5479), 1, + aux_sym_string_repeat1, + STATE(5523), 1, sym_comment, - STATE(5564), 1, - aux_sym__jsx_string_repeat1, - [185236] = 6, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - STATE(5526), 1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5524), 1, sym_comment, - STATE(6363), 1, - sym_import_attribute, - ACTIONS(9351), 2, + STATE(5533), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9358), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185256] = 6, + [185303] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9360), 1, + anon_sym_EQ, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9364), 1, + anon_sym_RBRACK, + STATE(5525), 1, + sym_comment, + STATE(6329), 1, + aux_sym_array_pattern_repeat1, + [185325] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9353), 1, + ACTIONS(9366), 1, anon_sym_DQUOTE, - STATE(5527), 1, - sym_comment, - STATE(5625), 1, + STATE(5479), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + STATE(5526), 1, + sym_comment, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185276] = 7, + [185345] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9355), 1, - anon_sym_RBRACK, - STATE(5528), 1, + ACTIONS(9123), 1, + anon_sym_with, + ACTIONS(9368), 1, + anon_sym_SEMI, + ACTIONS(9370), 1, + sym__automatic_semicolon, + STATE(5527), 1, sym_comment, - [185298] = 6, + STATE(6841), 1, + sym_import_attribute, + [185367] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5529), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5528), 1, sym_comment, - STATE(6414), 1, - sym__from_clause, - ACTIONS(5898), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185318] = 7, + STATE(6943), 1, + sym_type_parameters, + STATE(7103), 1, + sym_formal_parameters, + [185389] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9357), 1, - anon_sym_RBRACK, - STATE(5530), 1, + ACTIONS(9372), 1, + anon_sym_DQUOTE, + STATE(5529), 1, sym_comment, - [185340] = 6, + STATE(5591), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185409] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9353), 1, + ACTIONS(9372), 1, anon_sym_SQUOTE, - STATE(5531), 1, + STATE(5530), 1, sym_comment, - STATE(5614), 1, + STATE(5592), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185360] = 7, + [185429] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9115), 1, + anon_sym_DQUOTE, + ACTIONS(9162), 1, + sym_html_character_reference, + ACTIONS(9164), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5426), 1, + aux_sym__jsx_string_repeat1, + STATE(5531), 1, + sym_comment, + [185451] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8065), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - ACTIONS(8567), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, - anon_sym_LBRACE_PIPE, - STATE(5424), 1, - aux_sym_extends_type_clause_repeat1, STATE(5532), 1, sym_comment, - [185382] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185471] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9359), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, STATE(5533), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185402] = 6, + STATE(5603), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9376), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185491] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9361), 1, - anon_sym_LBRACE, - ACTIONS(9363), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9378), 1, anon_sym_COMMA, - ACTIONS(9366), 1, - anon_sym_LBRACE_PIPE, - STATE(5534), 2, - sym_comment, - aux_sym_extends_type_clause_repeat1, - [185422] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9359), 1, - anon_sym_DQUOTE, - STATE(5535), 1, + ACTIONS(9380), 1, + anon_sym_GT, + STATE(5534), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185442] = 7, + STATE(6228), 1, + aux_sym_type_arguments_repeat1, + [185513] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9368), 1, + ACTIONS(9382), 1, anon_sym_QMARK, - STATE(5536), 1, + STATE(5535), 1, sym_comment, - [185464] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185535] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9370), 1, - anon_sym_DQUOTE, - STATE(5537), 1, - sym_comment, - STATE(5539), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185484] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9370), 1, - anon_sym_SQUOTE, - STATE(5538), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5536), 1, sym_comment, - STATE(5543), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185504] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6948), 1, + sym_type_parameters, + STATE(7068), 1, + sym_formal_parameters, + [185557] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9372), 1, - anon_sym_DQUOTE, - STATE(5539), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8877), 1, + anon_sym_RBRACE, + STATE(5537), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185524] = 6, + ACTIONS(5061), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185575] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - STATE(5512), 1, + STATE(5496), 1, aux_sym_variable_declaration_repeat1, - STATE(5540), 1, + STATE(5538), 1, sym_comment, - ACTIONS(9374), 2, + ACTIONS(9384), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185544] = 6, + [185595] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - STATE(5513), 1, + STATE(5497), 1, aux_sym_variable_declaration_repeat1, - STATE(5541), 1, + STATE(5539), 1, sym_comment, - ACTIONS(9376), 2, + ACTIONS(9386), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185564] = 6, + [185615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - STATE(5542), 1, + STATE(5540), 1, sym_comment, - STATE(6913), 1, + STATE(6401), 1, + sym_import_attribute, + ACTIONS(9388), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9123), 1, + anon_sym_with, + STATE(5541), 1, + sym_comment, + STATE(6404), 1, sym_import_attribute, - ACTIONS(9378), 2, + ACTIONS(9390), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185584] = 6, + [185655] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9372), 1, + ACTIONS(9392), 1, + anon_sym_DQUOTE, + STATE(5542), 1, + sym_comment, + STATE(5545), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185675] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9392), 1, anon_sym_SQUOTE, STATE(5543), 1, sym_comment, - STATE(5614), 1, + STATE(5546), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185604] = 6, + [185695] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - ACTIONS(4865), 1, - anon_sym_BQUOTE, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9394), 1, + anon_sym_COLON, STATE(5544), 1, sym_comment, - STATE(2458), 2, - sym_template_string, - sym_arguments, - [185624] = 6, + [185717] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(9396), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5545), 1, sym_comment, - STATE(6911), 1, - sym_import_attribute, - ACTIONS(9380), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185644] = 4, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185737] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9396), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5546), 1, sym_comment, - ACTIONS(9382), 4, - sym__template_chars, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [185660] = 6, + [185757] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9398), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, + STATE(5547), 1, + sym_comment, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185777] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5547), 1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4414), 1, + sym_formal_parameters, + STATE(5548), 1, sym_comment, - STATE(6373), 1, - sym__from_clause, - ACTIONS(9384), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185680] = 7, + STATE(6626), 1, + sym_type_parameters, + [185799] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(9386), 1, - anon_sym_GT, - STATE(5548), 1, + ACTIONS(9400), 1, + anon_sym_DQUOTE, + STATE(5549), 1, sym_comment, - STATE(6618), 1, - sym_type_parameter, - [185702] = 6, + STATE(5554), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185819] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5549), 1, + ACTIONS(9400), 1, + anon_sym_SQUOTE, + STATE(5550), 1, sym_comment, - STATE(6897), 1, - sym__from_clause, - ACTIONS(9388), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185722] = 6, + STATE(5555), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185839] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, + ACTIONS(9194), 1, anon_sym_from, - STATE(5550), 1, + STATE(5551), 1, sym_comment, - STATE(6826), 1, + STATE(6426), 1, sym__from_clause, - ACTIONS(5666), 2, + ACTIONS(9402), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185742] = 4, + [185859] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5551), 1, - sym_comment, - ACTIONS(9390), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9194), 1, anon_sym_from, - [185758] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(5552), 1, sym_comment, - ACTIONS(8171), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [185774] = 6, + STATE(6348), 1, + sym__from_clause, + ACTIONS(9404), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185879] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8105), 1, - anon_sym_EQ, + ACTIONS(9123), 1, + anon_sym_with, STATE(5553), 1, sym_comment, - STATE(6749), 1, - sym_default_type, - ACTIONS(9392), 2, - anon_sym_COMMA, - anon_sym_GT, - [185794] = 7, + STATE(6872), 1, + sym_import_attribute, + ACTIONS(9406), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185899] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5554), 1, sym_comment, - STATE(6712), 1, - sym_type_parameters, - STATE(7192), 1, - sym_formal_parameters, - [185816] = 6, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185919] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, + ACTIONS(9408), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5555), 1, sym_comment, - STATE(6795), 1, - sym__initializer, - ACTIONS(9394), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [185836] = 7, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185939] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9396), 1, - anon_sym_RPAREN, + ACTIONS(9410), 1, + anon_sym_QMARK, STATE(5556), 1, sym_comment, - [185858] = 7, + [185961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9398), 1, - anon_sym_class, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, - STATE(5557), 1, + ACTIONS(9414), 1, + anon_sym_COMMA, + ACTIONS(9412), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(5557), 2, sym_comment, - [185880] = 7, + aux_sym_extends_clause_repeat1, + [185979] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_LT, - STATE(3666), 1, - sym_arguments, - STATE(3713), 1, - sym_type_arguments, + ACTIONS(9190), 1, + sym__glimmer_template_content, + ACTIONS(9417), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3075), 1, + sym_glimmer_closing_tag, STATE(5558), 1, sym_comment, - [185902] = 6, + STATE(5906), 1, + aux_sym_glimmer_template_repeat1, + [186001] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9400), 1, - anon_sym_SQUOTE, + ACTIONS(9190), 1, + sym__glimmer_template_content, + ACTIONS(9192), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2456), 1, + sym_glimmer_closing_tag, + STATE(5438), 1, + aux_sym_glimmer_template_repeat1, STATE(5559), 1, sym_comment, - STATE(5614), 1, - aux_sym_string_repeat2, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185922] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186023] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9400), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5408), 1, + anon_sym_COMMA, + STATE(5516), 1, + aux_sym_sequence_expression_repeat1, STATE(5560), 1, sym_comment, - STATE(5625), 1, - aux_sym_string_repeat1, - ACTIONS(9113), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185942] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186043] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9341), 1, - sym_html_character_reference, - ACTIONS(9345), 1, - sym_unescaped_single_jsx_string_fragment, - ACTIONS(9402), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5370), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_BQUOTE, STATE(5561), 1, sym_comment, - STATE(5581), 1, - aux_sym__jsx_string_repeat2, - [185964] = 6, + STATE(3058), 2, + sym_template_string, + sym_arguments, + [186063] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_finally, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9419), 1, + anon_sym_RBRACK, STATE(5562), 1, sym_comment, - STATE(6508), 1, - sym_finally_clause, - ACTIONS(3120), 2, - anon_sym_else, - anon_sym_while, - [185984] = 7, + [186085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9404), 1, - anon_sym_export, - STATE(4771), 1, - aux_sym_export_statement_repeat1, - STATE(5410), 1, - sym_decorator, STATE(5563), 1, sym_comment, - [186006] = 7, + ACTIONS(7823), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [186101] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9347), 1, - sym_html_character_reference, - ACTIONS(9349), 1, - sym_unescaped_double_jsx_string_fragment, - ACTIONS(9402), 1, + ACTIONS(9421), 1, anon_sym_DQUOTE, + STATE(5411), 1, + aux_sym_string_repeat1, STATE(5564), 1, sym_comment, - STATE(5577), 1, - aux_sym__jsx_string_repeat1, - [186028] = 6, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186121] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9406), 1, + ACTIONS(9421), 1, anon_sym_SQUOTE, - STATE(5533), 1, - aux_sym_string_repeat2, STATE(5565), 1, sym_comment, - ACTIONS(9143), 2, + STATE(5570), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186048] = 7, + [186141] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9202), 1, - anon_sym_EQ, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(9408), 1, - anon_sym_RBRACK, + ACTIONS(9423), 1, + anon_sym_SQUOTE, + STATE(5520), 1, + aux_sym_string_repeat2, STATE(5566), 1, sym_comment, - STATE(6208), 1, - aux_sym_array_pattern_repeat1, - [186070] = 6, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186161] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9406), 1, + ACTIONS(9423), 1, anon_sym_DQUOTE, - STATE(5535), 1, + STATE(5523), 1, aux_sym_string_repeat1, STATE(5567), 1, sym_comment, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186090] = 6, + [186181] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9410), 1, - anon_sym_SQUOTE, - STATE(5452), 1, - aux_sym_string_repeat2, + ACTIONS(9398), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5568), 1, sym_comment, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [186110] = 6, + [186201] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, STATE(5569), 1, sym_comment, - STATE(6365), 1, - sym_import_attribute, - ACTIONS(9412), 2, + ACTIONS(3104), 4, sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [186130] = 6, + [186217] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9339), 1, + ACTIONS(9119), 1, anon_sym_SQUOTE, - STATE(5531), 1, + STATE(5480), 1, aux_sym_string_repeat2, STATE(5570), 1, sym_comment, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186150] = 6, + [186237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, STATE(5571), 1, sym_comment, - STATE(5633), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9414), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186170] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5572), 1, - sym_comment, - STATE(5634), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9416), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186190] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9420), 1, - anon_sym_COMMA, - STATE(5447), 1, - aux_sym_extends_clause_repeat1, - STATE(5573), 1, - sym_comment, - ACTIONS(9418), 2, - anon_sym_LBRACE, - anon_sym_implements, - [186210] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9422), 1, - anon_sym_COLON, - STATE(5574), 1, - sym_comment, - [186232] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9425), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [186253] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5502), 1, - aux_sym_variable_declaration_repeat1, - STATE(5575), 1, - sym_comment, - ACTIONS(9424), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186252] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5503), 1, - aux_sym_variable_declaration_repeat1, - STATE(5576), 1, + ACTIONS(9427), 1, + anon_sym_DQUOTE, + STATE(5526), 1, + aux_sym_string_repeat1, + STATE(5572), 1, sym_comment, - ACTIONS(9426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186272] = 6, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186273] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9428), 1, - sym_html_character_reference, - ACTIONS(9431), 1, - anon_sym_DQUOTE, - ACTIONS(9433), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5577), 2, + ACTIONS(9429), 1, + sym_identifier, + STATE(4816), 1, + sym_nested_type_identifier, + STATE(5573), 1, sym_comment, - aux_sym__jsx_string_repeat1, - [186292] = 6, + STATE(5617), 1, + sym_generic_type, + STATE(7118), 1, + sym_nested_identifier, + [186295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - STATE(5578), 1, + STATE(5574), 1, sym_comment, - STATE(6568), 1, + STATE(6363), 1, sym_import_attribute, - ACTIONS(9436), 2, + ACTIONS(9431), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186312] = 6, + [186315] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - STATE(5579), 1, + STATE(5575), 1, sym_comment, - STATE(6569), 1, + STATE(6391), 1, sym_import_attribute, - ACTIONS(9438), 2, + ACTIONS(9433), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186332] = 7, + [186335] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9440), 1, - anon_sym_COLON, - STATE(5580), 1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5576), 1, + sym_comment, + STATE(5630), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186355] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5577), 1, sym_comment, - [186354] = 6, + STATE(5631), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9437), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186375] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9442), 1, - sym_html_character_reference, - ACTIONS(9445), 1, + ACTIONS(9427), 1, anon_sym_SQUOTE, - ACTIONS(9447), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5581), 2, + STATE(5578), 1, sym_comment, - aux_sym__jsx_string_repeat2, - [186374] = 6, + STATE(5580), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186395] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, - STATE(5582), 1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5579), 1, sym_comment, - STATE(6400), 1, - sym__initializer, - ACTIONS(9450), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [186394] = 6, + STATE(6838), 1, + sym_type_parameters, + STATE(7354), 1, + sym_formal_parameters, + [186417] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9410), 1, + ACTIONS(9366), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, + STATE(5580), 1, + sym_comment, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186437] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9439), 1, anon_sym_DQUOTE, - STATE(5450), 1, - aux_sym_string_repeat1, - STATE(5583), 1, + STATE(5581), 1, sym_comment, - ACTIONS(9113), 2, + STATE(5584), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186414] = 7, + [186457] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(5584), 1, + ACTIONS(9439), 1, + anon_sym_SQUOTE, + STATE(5582), 1, sym_comment, - STATE(6756), 1, - sym_type_parameters, - STATE(7416), 1, - sym_formal_parameters, - [186436] = 7, + STATE(5585), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186477] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9452), 1, - anon_sym_RBRACK, + ACTIONS(9441), 1, + anon_sym_QMARK, + STATE(5583), 1, + sym_comment, + [186499] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9443), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, + STATE(5584), 1, + sym_comment, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186519] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9443), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5585), 1, sym_comment, - [186458] = 6, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186539] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9454), 1, + ACTIONS(9445), 1, anon_sym_DQUOTE, STATE(5586), 1, sym_comment, - STATE(5625), 1, + STATE(5605), 1, aux_sym_string_repeat1, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186478] = 6, + [186559] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9454), 1, + ACTIONS(9445), 1, anon_sym_SQUOTE, STATE(5587), 1, sym_comment, - STATE(5614), 1, + STATE(5601), 1, aux_sym_string_repeat2, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186498] = 7, + [186579] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9456), 1, - anon_sym_RBRACK, + ACTIONS(9447), 1, + anon_sym_DQUOTE, STATE(5588), 1, sym_comment, - [186520] = 7, + STATE(5590), 1, + aux_sym_string_repeat1, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186599] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9458), 1, - anon_sym_RBRACK, + ACTIONS(9447), 1, + anon_sym_SQUOTE, STATE(5589), 1, sym_comment, - [186542] = 7, + STATE(5597), 1, + aux_sym_string_repeat2, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186619] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9460), 1, - anon_sym_RBRACK, + ACTIONS(9449), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5590), 1, sym_comment, - [186564] = 6, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186639] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5498), 1, - anon_sym_COMMA, + ACTIONS(9451), 1, + anon_sym_DQUOTE, + STATE(5479), 1, + aux_sym_string_repeat1, STATE(5591), 1, sym_comment, - STATE(5609), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8291), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186584] = 7, + ACTIONS(9121), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186659] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, - ACTIONS(9462), 1, - anon_sym_QMARK, + ACTIONS(9451), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5592), 1, sym_comment, - [186606] = 6, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186679] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9453), 1, + anon_sym_RBRACK, STATE(5593), 1, sym_comment, - STATE(6594), 1, - sym__from_clause, - ACTIONS(9464), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186626] = 7, + [186701] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9455), 1, + anon_sym_RBRACK, STATE(5594), 1, sym_comment, - STATE(6776), 1, - sym_type_parameters, - STATE(7408), 1, - sym_formal_parameters, - [186648] = 5, + [186723] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9466), 1, - anon_sym_EQ_GT, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9457), 1, + anon_sym_RPAREN, STATE(5595), 1, sym_comment, - ACTIONS(4518), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [186666] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186745] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9284), 1, - sym__glimmer_template_content, - ACTIONS(9468), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2558), 1, - sym_glimmer_closing_tag, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(7057), 1, + anon_sym_LT, + STATE(3867), 1, + sym_arguments, + STATE(4003), 1, + sym_type_arguments, STATE(5596), 1, sym_comment, - STATE(6069), 1, - aux_sym_glimmer_template_repeat1, - [186688] = 5, + [186767] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9470), 1, - anon_sym_EQ_GT, + ACTIONS(9449), 1, + anon_sym_SQUOTE, + STATE(5480), 1, + aux_sym_string_repeat2, STATE(5597), 1, sym_comment, - ACTIONS(4518), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [186706] = 5, + ACTIONS(9184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186787] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9472), 1, - anon_sym_COMMA, - ACTIONS(9475), 2, - sym__automatic_semicolon, + ACTIONS(9123), 1, + anon_sym_with, + ACTIONS(9459), 1, anon_sym_SEMI, - STATE(5598), 2, + ACTIONS(9461), 1, + sym__automatic_semicolon, + STATE(5598), 1, sym_comment, - aux_sym_variable_declaration_repeat1, - [186724] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6645), 1, + sym_import_attribute, + [186809] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9284), 1, - sym__glimmer_template_content, - ACTIONS(9468), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2497), 1, - sym_glimmer_closing_tag, - STATE(5596), 1, - aux_sym_glimmer_template_repeat1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9463), 1, + anon_sym_RBRACK, STATE(5599), 1, sym_comment, - [186746] = 7, + [186831] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9465), 1, + anon_sym_EQ, STATE(5600), 1, sym_comment, - STATE(6772), 1, - sym_type_parameters, - STATE(7316), 1, - sym_formal_parameters, - [186768] = 6, + STATE(6375), 1, + sym__initializer, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + [186851] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9477), 1, + ACTIONS(9467), 1, anon_sym_SQUOTE, - STATE(5559), 1, + STATE(5480), 1, aux_sym_string_repeat2, STATE(5601), 1, sym_comment, - ACTIONS(9143), 2, + ACTIONS(9184), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186788] = 7, + [186871] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7069), 1, + ACTIONS(7081), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7109), 1, anon_sym_PIPE, - ACTIONS(7073), 1, + ACTIONS(7111), 1, anon_sym_extends, - ACTIONS(9479), 1, - anon_sym_RPAREN, + ACTIONS(9469), 1, + anon_sym_QMARK, STATE(5602), 1, sym_comment, - [186810] = 7, + [186893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(7055), 1, - anon_sym_LT, - STATE(3879), 1, - sym_arguments, - STATE(4025), 1, - sym_type_arguments, - STATE(5603), 1, + ACTIONS(9471), 1, + anon_sym_COMMA, + ACTIONS(9474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(5603), 2, + sym_comment, + aux_sym_variable_declaration_repeat1, + [186911] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8168), 1, + anon_sym_EQ, + STATE(5604), 1, sym_comment, - [186832] = 6, + STATE(6622), 1, + sym__initializer, + ACTIONS(9476), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [186931] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9477), 1, + ACTIONS(9467), 1, anon_sym_DQUOTE, - STATE(5560), 1, + STATE(5479), 1, aux_sym_string_repeat1, - STATE(5604), 1, + STATE(5605), 1, sym_comment, - ACTIONS(9113), 2, + ACTIONS(9121), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186852] = 7, + [186951] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - ACTIONS(9481), 1, + ACTIONS(9478), 1, anon_sym_SEMI, - ACTIONS(9483), 1, + ACTIONS(9480), 1, sym__automatic_semicolon, - STATE(5605), 1, + STATE(5606), 1, sym_comment, - STATE(6484), 1, + STATE(6937), 1, sym_import_attribute, - [186874] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [186973] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(5606), 1, - sym_comment, - STATE(6781), 1, - sym_type_parameters, - STATE(7350), 1, - sym_formal_parameters, - [186896] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9485), 1, - anon_sym_SEMI, - ACTIONS(9487), 1, - sym__automatic_semicolon, + ACTIONS(9190), 1, + sym__glimmer_template_content, + ACTIONS(9417), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3064), 1, + sym_glimmer_closing_tag, + STATE(5558), 1, + aux_sym_glimmer_template_repeat1, STATE(5607), 1, sym_comment, - STATE(6556), 1, - sym_import_attribute, - [186918] = 6, + [186995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4518), 1, - anon_sym_COLON, - ACTIONS(7219), 1, - anon_sym_EQ, STATE(5608), 1, sym_comment, - ACTIONS(9489), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [186938] = 5, + ACTIONS(9482), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [187011] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9491), 1, - anon_sym_COMMA, - ACTIONS(5214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(9484), 1, + sym_html_character_reference, + ACTIONS(9487), 1, + anon_sym_SQUOTE, + ACTIONS(9489), 1, + sym_unescaped_single_jsx_string_fragment, STATE(5609), 2, sym_comment, - aux_sym_sequence_expression_repeat1, - [186956] = 7, + aux_sym__jsx_string_repeat2, + [187031] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9494), 1, - anon_sym_COMMA, - ACTIONS(9496), 1, - anon_sym_GT, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9492), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, STATE(5610), 1, sym_comment, - STATE(6197), 1, - aux_sym_type_arguments_repeat1, - [186978] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [187053] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9498), 1, - sym_identifier, - STATE(4781), 1, - sym_nested_type_identifier, - STATE(5532), 1, - sym_generic_type, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9494), 1, + anon_sym_QMARK, STATE(5611), 1, sym_comment, - STATE(7112), 1, - sym_nested_identifier, - [187000] = 4, + [187075] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5612), 1, + ACTIONS(9496), 1, + sym_html_character_reference, + ACTIONS(9499), 1, + anon_sym_DQUOTE, + ACTIONS(9501), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5612), 2, sym_comment, - ACTIONS(9500), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [187016] = 4, + aux_sym__jsx_string_repeat1, + [187095] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9360), 1, + anon_sym_EQ, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9504), 1, + anon_sym_RBRACK, STATE(5613), 1, sym_comment, - ACTIONS(3084), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [187032] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5803), 1, + aux_sym_array_pattern_repeat1, + [187117] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9502), 1, - anon_sym_SQUOTE, - ACTIONS(9504), 2, - sym_unescaped_single_string_fragment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9425), 1, sym_escape_sequence, - STATE(5614), 2, + STATE(5614), 1, sym_comment, - aux_sym_string_repeat2, - [187050] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9506), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [187135] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(9507), 1, - anon_sym_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, STATE(5615), 1, sym_comment, - STATE(6618), 1, - sym_type_parameter, - [187072] = 6, + STATE(6717), 1, + sym__from_clause, + ACTIONS(9509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187155] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9511), 1, + anon_sym_COLON, STATE(5616), 1, sym_comment, - STATE(6339), 1, - sym_statement_block, - ACTIONS(2061), 2, - anon_sym_else, - anon_sym_while, - [187092] = 6, + [187177] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8105), 1, - anon_sym_EQ, + ACTIONS(8141), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_LBRACE, + ACTIONS(8659), 1, + anon_sym_LBRACE_PIPE, + STATE(5512), 1, + aux_sym_extends_type_clause_repeat1, STATE(5617), 1, sym_comment, - STATE(6625), 1, - sym_default_type, - ACTIONS(9509), 2, - anon_sym_COMMA, - anon_sym_GT, - [187112] = 7, + [187199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9297), 1, + anon_sym_COMMA, + STATE(5557), 1, + aux_sym_extends_clause_repeat1, STATE(5618), 1, sym_comment, - STATE(6937), 1, - sym_type_parameters, - STATE(7371), 1, - sym_formal_parameters, - [187134] = 6, + ACTIONS(9513), 2, + anon_sym_LBRACE, + anon_sym_implements, + [187219] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9515), 1, + anon_sym_class, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, STATE(5619), 1, sym_comment, - STATE(6406), 1, - sym__from_clause, - ACTIONS(5851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187154] = 7, + [187241] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(9517), 1, + anon_sym_COMMA, + ACTIONS(9519), 1, + anon_sym_GT, STATE(5620), 1, sym_comment, - STATE(6942), 1, - sym_type_parameters, - STATE(7290), 1, - sym_formal_parameters, - [187176] = 7, + STATE(5736), 1, + aux_sym_type_arguments_repeat1, + [187263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9521), 1, + anon_sym_EQ_GT, STATE(5621), 1, sym_comment, - STATE(6660), 1, - sym_type_parameters, - STATE(6991), 1, - sym_formal_parameters, - [187198] = 6, + ACTIONS(4520), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187281] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9420), 1, - anon_sym_COMMA, - STATE(5573), 1, - aux_sym_extends_clause_repeat1, + ACTIONS(9123), 1, + anon_sym_with, STATE(5622), 1, sym_comment, - ACTIONS(9511), 2, - anon_sym_LBRACE, - anon_sym_implements, - [187218] = 4, + STATE(6865), 1, + sym_import_attribute, + ACTIONS(9523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187301] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5623), 1, sym_comment, - ACTIONS(6748), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187234] = 7, + ACTIONS(9525), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [187317] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, - ACTIONS(9513), 1, - anon_sym_COMMA, - ACTIONS(9515), 1, - anon_sym_GT, + ACTIONS(9194), 1, + anon_sym_from, STATE(5624), 1, sym_comment, - STATE(5730), 1, - aux_sym_type_arguments_repeat1, - [187256] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6562), 1, + sym__from_clause, + ACTIONS(5878), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187337] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9517), 1, - anon_sym_DQUOTE, - ACTIONS(9519), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(5625), 2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, + STATE(5625), 1, sym_comment, - aux_sym_string_repeat1, - [187274] = 5, + STATE(6762), 1, + sym_type_parameters, + STATE(7312), 1, + sym_formal_parameters, + [187359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9522), 1, - anon_sym_COMMA, - ACTIONS(5906), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(5626), 2, + STATE(5626), 1, sym_comment, - aux_sym_array_repeat1, - [187292] = 6, + ACTIONS(9527), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [187375] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8181), 1, - anon_sym_EQ, + ACTIONS(9123), 1, + anon_sym_with, STATE(5627), 1, sym_comment, - STATE(6713), 1, - sym__initializer, - ACTIONS(9525), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [187312] = 6, + STATE(6597), 1, + sym_import_attribute, + ACTIONS(9529), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, STATE(5628), 1, sym_comment, - STATE(6435), 1, + STATE(6606), 1, sym_import_attribute, - ACTIONS(9527), 2, + ACTIONS(9531), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187332] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9111), 1, - anon_sym_SQUOTE, - STATE(5587), 1, - aux_sym_string_repeat2, - STATE(5629), 1, - sym_comment, - ACTIONS(9143), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187352] = 7, + [187415] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, + ACTIONS(9123), 1, anon_sym_with, - ACTIONS(9529), 1, + ACTIONS(9533), 1, anon_sym_SEMI, - ACTIONS(9531), 1, + ACTIONS(9535), 1, sym__automatic_semicolon, - STATE(5630), 1, + STATE(5629), 1, sym_comment, - STATE(6440), 1, + STATE(6628), 1, sym_import_attribute, - [187374] = 6, + [187437] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - STATE(5598), 1, + STATE(5603), 1, aux_sym_variable_declaration_repeat1, - STATE(5631), 1, + STATE(5630), 1, sym_comment, - ACTIONS(9533), 2, + ACTIONS(9537), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187394] = 6, + [187457] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - STATE(5598), 1, + STATE(5603), 1, aux_sym_variable_declaration_repeat1, - STATE(5632), 1, + STATE(5631), 1, sym_comment, - ACTIONS(9535), 2, + ACTIONS(9539), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187414] = 6, + [187477] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, - STATE(5633), 1, + ACTIONS(9541), 1, + anon_sym_EQ_GT, + STATE(5632), 1, sym_comment, - ACTIONS(9537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187434] = 6, + ACTIONS(4520), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187495] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9131), 1, - anon_sym_COMMA, - STATE(5598), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(5633), 1, + sym_comment, + STATE(6349), 1, + sym_statement_block, + ACTIONS(2071), 2, + anon_sym_else, + anon_sym_while, + [187515] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, + ACTIONS(9543), 1, + anon_sym_GT, STATE(5634), 1, sym_comment, - ACTIONS(9539), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187454] = 6, + STATE(6739), 1, + sym_type_parameter, + [187537] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9541), 1, - anon_sym_STAR, - ACTIONS(9543), 1, - anon_sym_LBRACE, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9545), 1, + anon_sym_export, + STATE(4706), 1, + aux_sym_export_statement_repeat1, + STATE(5608), 1, + sym_decorator, STATE(5635), 1, sym_comment, - STATE(7149), 2, - sym_namespace_import, - sym_named_imports, - [187474] = 7, + [187559] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, - ACTIONS(9545), 1, - anon_sym_SEMI, - ACTIONS(9547), 1, - sym__automatic_semicolon, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(6984), 1, + anon_sym_LT, + STATE(3660), 1, + sym_arguments, + STATE(3731), 1, + sym_type_arguments, STATE(5636), 1, sym_comment, - STATE(6760), 1, - sym_import_attribute, - [187496] = 7, + [187581] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_COLON, + ACTIONS(7223), 1, + anon_sym_EQ, STATE(5637), 1, sym_comment, - STATE(6863), 1, - sym_type_parameters, - STATE(7020), 1, - sym_formal_parameters, - [187518] = 7, + ACTIONS(9547), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187601] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, + ACTIONS(9549), 1, + anon_sym_RPAREN, STATE(5638), 1, sym_comment, - STATE(6857), 1, - sym_type_parameters, - STATE(7053), 1, - sym_formal_parameters, - [187540] = 6, + [187623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(8202), 1, + anon_sym_EQ, STATE(5639), 1, sym_comment, - STATE(6782), 1, - sym_import_attribute, - ACTIONS(9549), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187560] = 6, + STATE(6494), 1, + sym_default_type, + ACTIONS(9551), 2, + anon_sym_COMMA, + anon_sym_GT, + [187643] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_with, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, STATE(5640), 1, sym_comment, - STATE(6783), 1, - sym_import_attribute, - ACTIONS(9551), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187580] = 5, + STATE(6778), 1, + sym_type_parameters, + STATE(7090), 1, + sym_formal_parameters, + [187665] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, + ACTIONS(7171), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, + anon_sym_LT, STATE(5641), 1, sym_comment, - ACTIONS(9553), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187597] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6510), 1, + sym_type_parameters, + STATE(7338), 1, + sym_formal_parameters, + [187687] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9555), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_LBRACE, - STATE(5520), 1, - sym_export_clause, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9172), 1, + anon_sym_COMMA, + STATE(5446), 1, + aux_sym_variable_declaration_repeat1, STATE(5642), 1, sym_comment, - [187616] = 6, + ACTIONS(9553), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187707] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9559), 1, + ACTIONS(9172), 1, anon_sym_COMMA, - ACTIONS(9561), 1, - anon_sym_RPAREN, + STATE(5447), 1, + aux_sym_variable_declaration_repeat1, STATE(5643), 1, sym_comment, - STATE(6142), 1, - aux_sym_formal_parameters_repeat1, - [187635] = 4, + ACTIONS(9555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9557), 1, + anon_sym_COMMA, + ACTIONS(9559), 1, + anon_sym_GT, STATE(5644), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187650] = 4, + STATE(6335), 1, + aux_sym_type_parameters_repeat1, + [187746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5645), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [187665] = 4, + [187761] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9563), 1, + anon_sym_LBRACE, + ACTIONS(9565), 1, + anon_sym_LPAREN, + STATE(975), 1, + sym_statement_block, STATE(5646), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187680] = 4, + [187780] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5353), 1, + anon_sym_LBRACE, STATE(5647), 1, sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, + ACTIONS(5355), 2, anon_sym_COMMA, - anon_sym_SEMI, - [187695] = 6, + anon_sym_LBRACE_PIPE, + [187797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9569), 1, + ACTIONS(5308), 1, anon_sym_LBRACE, - ACTIONS(9571), 1, - anon_sym_LPAREN, - STATE(1045), 1, - sym_statement_block, STATE(5648), 1, sym_comment, - [187714] = 4, + ACTIONS(5310), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [187814] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9567), 1, + anon_sym_LPAREN, + ACTIONS(9569), 1, + anon_sym_await, + STATE(110), 1, + sym__for_header, STATE(5649), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187729] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [187833] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5650), 1, - sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187744] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9571), 1, + sym_identifier, + ACTIONS(9573), 1, + anon_sym_SEMI, ACTIONS(9575), 1, - anon_sym_LPAREN, - ACTIONS(9577), 1, - anon_sym_await, - STATE(78), 1, - sym__for_header, - STATE(5651), 1, + sym__automatic_semicolon, + STATE(5650), 1, sym_comment, - [187763] = 6, + [187852] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9579), 1, + ACTIONS(9577), 1, sym_identifier, - ACTIONS(9581), 1, + ACTIONS(9579), 1, anon_sym_SEMI, - ACTIONS(9583), 1, + ACTIONS(9581), 1, sym__automatic_semicolon, + STATE(5651), 1, + sym_comment, + [187871] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9583), 1, + anon_sym_EQ, STATE(5652), 1, sym_comment, - [187782] = 4, + STATE(7453), 1, + sym_type_parameters, + [187890] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5653), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187797] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3322), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [187905] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9587), 1, - sym_identifier, - ACTIONS(9589), 1, - anon_sym_SEMI, - ACTIONS(9591), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9585), 1, + anon_sym_EQ, STATE(5654), 1, sym_comment, - [187816] = 4, + ACTIONS(9587), 2, + anon_sym_COMMA, + anon_sym_from, + [187922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9589), 1, + anon_sym_EQ, STATE(5655), 1, sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187831] = 4, + STATE(7431), 1, + sym_type_parameters, + [187941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5656), 1, sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187846] = 4, + ACTIONS(3352), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [187956] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9591), 1, + sym_identifier, + STATE(4235), 1, + sym_decorator_member_expression, + STATE(5563), 1, + sym_decorator_call_expression, STATE(5657), 1, sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187861] = 4, + [187975] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6425), 1, + sym__automatic_semicolon, STATE(5658), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187876] = 4, + ACTIONS(2283), 2, + anon_sym_else, + anon_sym_while, + [187992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6432), 1, + sym__automatic_semicolon, STATE(5659), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187891] = 6, + ACTIONS(2343), 2, + anon_sym_else, + anon_sym_while, + [188009] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, + ACTIONS(8103), 1, + anon_sym_COMMA, ACTIONS(9593), 1, - anon_sym_EQ, + anon_sym_RBRACE, STATE(5660), 1, sym_comment, - STATE(7447), 1, - sym_type_parameters, - [187910] = 4, + STATE(5725), 1, + aux_sym_object_repeat1, + [188028] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9595), 1, + anon_sym_EQ, STATE(5661), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(9587), 2, anon_sym_COMMA, - anon_sym_SEMI, - [187925] = 4, + anon_sym_from, + [188045] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9597), 1, + anon_sym_RBRACE, STATE(5662), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187940] = 6, + STATE(5725), 1, + aux_sym_object_repeat1, + [188064] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8011), 1, - anon_sym_LBRACE, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(1277), 1, - sym_object_type, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9599), 1, + anon_sym_EQ, STATE(5663), 1, sym_comment, - [187959] = 4, + STATE(7403), 1, + sym_type_parameters, + [188083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, STATE(5664), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187974] = 4, + STATE(6689), 1, + sym__from_clause, + [188102] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9603), 1, + anon_sym_COMMA, + ACTIONS(9605), 1, + anon_sym_RPAREN, STATE(5665), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187989] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9595), 1, - anon_sym_RBRACE, + STATE(5989), 1, + aux_sym_formal_parameters_repeat1, + [188121] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9607), 1, + sym_identifier, + ACTIONS(9609), 1, + anon_sym_LBRACE, + STATE(5439), 1, + sym_export_clause, STATE(5666), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [188008] = 6, + [188140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_RPAREN, + ACTIONS(9611), 1, + anon_sym_EQ, STATE(5667), 1, sym_comment, - STATE(5723), 1, - aux_sym_array_repeat1, - [188027] = 6, + ACTIONS(4257), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [188157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(9614), 1, + anon_sym_EQ, STATE(5668), 1, sym_comment, - [188046] = 6, + ACTIONS(9587), 2, + anon_sym_COMMA, + anon_sym_from, + [188174] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7075), 1, - anon_sym_LPAREN, - ACTIONS(9597), 1, - anon_sym_DOT, - STATE(4666), 1, - sym_arguments, + ACTIONS(7991), 1, + anon_sym_LBRACE, + ACTIONS(7997), 1, + anon_sym_LBRACE_PIPE, + STATE(1402), 1, + sym_object_type, STATE(5669), 1, sym_comment, - [188065] = 6, + [188193] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9599), 1, - anon_sym_RBRACE, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9616), 1, + anon_sym_EQ, STATE(5670), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [188084] = 4, + STATE(7369), 1, + sym_type_parameters, + [188212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6500), 1, + sym__automatic_semicolon, STATE(5671), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188099] = 4, + ACTIONS(2365), 2, + anon_sym_else, + anon_sym_while, + [188229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6508), 1, + sym__automatic_semicolon, STATE(5672), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188114] = 4, + ACTIONS(2277), 2, + anon_sym_else, + anon_sym_while, + [188246] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, STATE(5673), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188129] = 4, + STATE(5729), 1, + aux_sym_array_repeat1, + [188265] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5674), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188144] = 4, + [188284] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7089), 1, + anon_sym_LPAREN, + ACTIONS(9618), 1, + anon_sym_DOT, + STATE(4716), 1, + sym_arguments, STATE(5675), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188159] = 4, + [188303] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9620), 1, + anon_sym_EQ, STATE(5676), 1, sym_comment, - ACTIONS(9603), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188174] = 5, + STATE(7192), 1, + sym_type_parameters, + [188322] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9605), 1, - anon_sym_EQ, + ACTIONS(6530), 1, + sym__automatic_semicolon, STATE(5677), 1, sym_comment, - ACTIONS(9607), 2, - anon_sym_COMMA, - anon_sym_from, - [188191] = 6, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + [188339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(9609), 1, - anon_sym_EQ, + ACTIONS(6528), 1, + sym__automatic_semicolon, STATE(5678), 1, sym_comment, - STATE(7425), 1, - sym_type_parameters, - [188210] = 4, + ACTIONS(2375), 2, + anon_sym_else, + anon_sym_while, + [188356] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5679), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188225] = 6, + [188371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8828), 1, - anon_sym_DOT, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(9613), 1, - anon_sym_GT, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(9624), 1, + anon_sym_RBRACE, STATE(5680), 1, sym_comment, - [188244] = 4, + STATE(5722), 1, + aux_sym_object_pattern_repeat1, + [188390] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5681), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188259] = 4, + [188405] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9628), 1, + anon_sym_RBRACE, STATE(5682), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188274] = 4, + STATE(5724), 1, + aux_sym_object_repeat1, + [188424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6510), 1, + sym__automatic_semicolon, STATE(5683), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188289] = 4, + ACTIONS(2379), 2, + anon_sym_else, + anon_sym_while, + [188441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5684), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188304] = 4, + [188456] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(9624), 1, + anon_sym_RBRACE, STATE(5685), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188319] = 4, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, + [188475] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9632), 1, + anon_sym_GT, STATE(5686), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188334] = 4, + [188494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9634), 1, + anon_sym_LBRACE, STATE(5687), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188349] = 4, + ACTIONS(8761), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [188511] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9636), 1, + anon_sym_EQ, STATE(5688), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(9587), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188364] = 4, + anon_sym_from, + [188528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5689), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188379] = 4, + ACTIONS(8071), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [188543] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9638), 1, + anon_sym_COMMA, + ACTIONS(9640), 1, + anon_sym_RPAREN, STATE(5690), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188394] = 4, + STATE(5771), 1, + aux_sym_formal_parameters_repeat1, + [188562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9642), 1, + anon_sym_LBRACE, STATE(5691), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188409] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8893), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [188579] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9615), 1, - sym_identifier, - STATE(4566), 1, - sym_decorator_member_expression, - STATE(5552), 1, - sym_decorator_call_expression, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9504), 1, + anon_sym_RBRACK, STATE(5692), 1, sym_comment, - [188428] = 5, + STATE(5803), 1, + aux_sym_array_pattern_repeat1, + [188598] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9617), 1, - anon_sym_EQ, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5797), 1, + anon_sym_RBRACK, STATE(5693), 1, sym_comment, - ACTIONS(9607), 2, - anon_sym_COMMA, - anon_sym_from, - [188445] = 6, + STATE(5797), 1, + aux_sym_array_repeat1, + [188617] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(9619), 1, - anon_sym_EQ, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5797), 1, + anon_sym_RBRACK, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5694), 1, sym_comment, - STATE(7397), 1, - sym_type_parameters, - [188464] = 5, + [188636] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7967), 1, - anon_sym_DOT, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9504), 1, + anon_sym_RBRACK, STATE(5695), 1, sym_comment, - ACTIONS(9621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188481] = 5, + STATE(5805), 1, + aux_sym_array_pattern_repeat1, + [188655] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, + ACTIONS(9644), 1, + anon_sym_DQUOTE, STATE(5696), 1, sym_comment, - ACTIONS(9621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188498] = 4, + ACTIONS(9646), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [188672] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9648), 1, + anon_sym_SQUOTE, STATE(5697), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188513] = 4, + ACTIONS(9650), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [188689] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, STATE(5698), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188528] = 4, + STATE(5711), 1, + sym_type_parameter, + [188708] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7543), 1, + anon_sym_implements, + ACTIONS(9652), 1, + anon_sym_LBRACE, STATE(5699), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188543] = 4, + STATE(7024), 1, + sym_implements_clause, + [188727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9628), 1, + anon_sym_RBRACE, STATE(5700), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188558] = 4, + STATE(5725), 1, + aux_sym_object_repeat1, + [188746] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(5701), 1, sym_comment, - ACTIONS(9573), 3, + ACTIONS(9654), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188573] = 4, + [188763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7947), 1, + anon_sym_DOT, STATE(5702), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9654), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188588] = 4, + [188780] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(8045), 1, + sym_identifier, STATE(5703), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188603] = 4, + ACTIONS(8049), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [188797] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9656), 1, + sym_identifier, + ACTIONS(9658), 1, + anon_sym_LBRACK, + ACTIONS(9660), 1, + sym_private_property_identifier, STATE(5704), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188618] = 4, + [188816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6447), 1, + sym__automatic_semicolon, STATE(5705), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188633] = 6, + ACTIONS(2301), 2, + anon_sym_else, + anon_sym_while, + [188833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9623), 1, - anon_sym_COMMA, - ACTIONS(9625), 1, - anon_sym_RBRACK, + ACTIONS(6409), 1, + sym__automatic_semicolon, STATE(5706), 1, sym_comment, - STATE(5761), 1, - aux_sym_tuple_type_repeat1, - [188652] = 4, + ACTIONS(2335), 2, + anon_sym_else, + anon_sym_while, + [188850] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6339), 1, + sym__automatic_semicolon, STATE(5707), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188667] = 4, + ACTIONS(2313), 2, + anon_sym_else, + anon_sym_while, + [188867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5708), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188682] = 4, + [188882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6337), 1, + sym__automatic_semicolon, STATE(5709), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188697] = 6, + ACTIONS(2295), 2, + anon_sym_else, + anon_sym_while, + [188899] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - anon_sym_extends, - ACTIONS(8790), 1, - anon_sym_PIPE, + ACTIONS(9664), 1, + anon_sym_DQUOTE, + ACTIONS(9666), 1, + anon_sym_SQUOTE, STATE(5710), 1, sym_comment, - [188716] = 4, + STATE(5939), 1, + sym_string, + [188918] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9668), 1, + anon_sym_COMMA, + ACTIONS(9670), 1, + anon_sym_GT, STATE(5711), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188731] = 4, + STATE(5857), 1, + aux_sym_type_parameters_repeat1, + [188937] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9672), 1, + anon_sym_COMMA, + ACTIONS(9674), 1, + anon_sym_RBRACK, STATE(5712), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188746] = 4, + STATE(5767), 1, + aux_sym_tuple_type_repeat1, + [188956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5713), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9676), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [188761] = 5, + [188971] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9627), 1, - anon_sym_EQ, + ACTIONS(9678), 1, + anon_sym_COMMA, + ACTIONS(9680), 1, + anon_sym_RBRACE, STATE(5714), 1, sym_comment, - ACTIONS(4287), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [188778] = 5, + STATE(5944), 1, + aux_sym_export_clause_repeat1, + [188990] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_EQ, + ACTIONS(9682), 1, + anon_sym_as, STATE(5715), 1, sym_comment, - ACTIONS(9607), 2, + ACTIONS(9684), 2, anon_sym_COMMA, - anon_sym_from, - [188795] = 6, + anon_sym_RBRACE, + [189007] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(9632), 1, - anon_sym_EQ, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_extends, + ACTIONS(8803), 1, + anon_sym_PIPE, STATE(5716), 1, sym_comment, - STATE(7363), 1, - sym_type_parameters, - [188814] = 4, + [189026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9686), 1, + anon_sym_EQ, STATE(5717), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, + ACTIONS(9587), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188829] = 4, + anon_sym_from, + [189043] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5718), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188844] = 4, + [189058] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7175), 1, + anon_sym_LT, + ACTIONS(9688), 1, + anon_sym_EQ, STATE(5719), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188859] = 6, + STATE(7229), 1, + sym_type_parameters, + [189077] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8011), 1, - anon_sym_LBRACE, - ACTIONS(8013), 1, - anon_sym_LBRACE_PIPE, - STATE(1314), 1, - sym_object_type, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9690), 1, + anon_sym_RBRACE, STATE(5720), 1, sym_comment, - [188878] = 4, + STATE(5725), 1, + aux_sym_object_repeat1, + [189096] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(9692), 1, + anon_sym_RBRACE, STATE(5721), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188893] = 6, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, + [189115] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9634), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - ACTIONS(9636), 1, + ACTIONS(9694), 1, anon_sym_RBRACE, STATE(5722), 1, sym_comment, - STATE(5770), 1, - aux_sym_enum_body_repeat1, - [188912] = 6, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, + [189134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(9638), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(6393), 1, + sym__automatic_semicolon, STATE(5723), 1, sym_comment, - [188931] = 6, + ACTIONS(2339), 2, + anon_sym_else, + anon_sym_while, + [189151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9696), 1, + anon_sym_RBRACE, STATE(5724), 1, sym_comment, - STATE(6694), 1, - sym__from_clause, - [188950] = 4, + STATE(5725), 1, + aux_sym_object_repeat1, + [189170] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5725), 1, - sym_comment, - ACTIONS(9603), 3, - sym__automatic_semicolon, + ACTIONS(9698), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188965] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9701), 1, + anon_sym_RBRACE, + STATE(5725), 2, + sym_comment, + aux_sym_object_repeat1, + [189187] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9557), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7991), 1, anon_sym_LBRACE, - ACTIONS(9642), 1, - sym_identifier, - STATE(5550), 1, - sym_export_clause, + ACTIONS(7997), 1, + anon_sym_LBRACE_PIPE, + STATE(1297), 1, + sym_object_type, STATE(5726), 1, sym_comment, - [188984] = 6, + [189206] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9644), 1, + ACTIONS(9703), 1, anon_sym_COMMA, - ACTIONS(9646), 1, - anon_sym_GT, - STATE(5727), 1, + ACTIONS(9706), 1, + anon_sym_RBRACE, + STATE(5727), 2, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [189003] = 4, + aux_sym_object_pattern_repeat1, + [189223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9708), 1, + anon_sym_COMMA, + ACTIONS(9710), 1, + anon_sym_RBRACE, STATE(5728), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189018] = 4, + STATE(5776), 1, + aux_sym_enum_body_repeat1, + [189242] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(9712), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5729), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189033] = 6, + [189261] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9648), 1, - anon_sym_COMMA, - ACTIONS(9650), 1, - anon_sym_GT, + ACTIONS(9609), 1, + anon_sym_LBRACE, + ACTIONS(9714), 1, + sym_identifier, + STATE(5493), 1, + sym_export_clause, STATE(5730), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [189052] = 4, + [189280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5731), 1, sym_comment, - ACTIONS(9573), 3, + ACTIONS(9622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189067] = 6, + [189295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9652), 1, - anon_sym_COMMA, - ACTIONS(9654), 1, - anon_sym_GT, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, STATE(5732), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [189086] = 4, + STATE(6383), 1, + sym__from_clause, + [189314] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9716), 1, + anon_sym_COMMA, + ACTIONS(9718), 1, + anon_sym_GT, STATE(5733), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189101] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [189333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5734), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, + ACTIONS(9720), 3, anon_sym_COMMA, - anon_sym_SEMI, - [189116] = 4, + anon_sym_RBRACE, + anon_sym_from, + [189348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9722), 1, + anon_sym_EQ, STATE(5735), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, + ACTIONS(9587), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189131] = 4, + anon_sym_from, + [189365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9724), 1, + anon_sym_COMMA, + ACTIONS(9726), 1, + anon_sym_GT, STATE(5736), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189146] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [189384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(9656), 1, - anon_sym_EQ, STATE(5737), 1, sym_comment, - STATE(7142), 1, - sym_type_parameters, - [189165] = 4, + ACTIONS(9626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189399] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9728), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_GT, STATE(5738), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189180] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [189418] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(9658), 1, - anon_sym_RBRACE, + ACTIONS(9732), 1, + anon_sym_LBRACE, STATE(5739), 1, sym_comment, - STATE(5885), 1, - aux_sym_object_pattern_repeat1, - [189199] = 6, + ACTIONS(8904), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [189435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9660), 1, - anon_sym_RBRACE, + ACTIONS(9166), 1, + anon_sym_as, STATE(5740), 1, sym_comment, - STATE(5890), 1, - aux_sym_object_repeat1, - [189218] = 4, + ACTIONS(9587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [189452] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(9734), 1, + anon_sym_RPAREN, STATE(5741), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189233] = 4, + STATE(7135), 1, + sym_type_annotation, + [189471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9736), 1, + anon_sym_COMMA, + ACTIONS(9738), 1, + anon_sym_RPAREN, + STATE(5665), 1, + aux_sym_formal_parameters_repeat1, STATE(5742), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189248] = 6, + [189490] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, + ACTIONS(9740), 1, anon_sym_COMMA, - ACTIONS(9658), 1, + ACTIONS(9742), 1, anon_sym_RBRACE, STATE(5743), 1, sym_comment, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, - [189267] = 4, + STATE(5975), 1, + aux_sym_named_imports_repeat1, + [189509] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8212), 1, + anon_sym_EQ, STATE(5744), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189282] = 4, + ACTIONS(4344), 2, + anon_sym_in, + anon_sym_of, + [189526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5745), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189297] = 4, + [189541] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9744), 1, + sym_identifier, + ACTIONS(9746), 1, + anon_sym_require, STATE(5746), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189312] = 4, + STATE(5999), 1, + sym_nested_identifier, + [189560] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9746), 1, + anon_sym_require, + ACTIONS(9748), 1, + sym_identifier, STATE(5747), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189327] = 5, + STATE(6305), 1, + sym_nested_identifier, + [189579] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9662), 1, - anon_sym_EQ, + ACTIONS(3188), 1, + anon_sym_while, + ACTIONS(9750), 1, + anon_sym_else, STATE(5748), 1, sym_comment, - ACTIONS(9607), 2, - anon_sym_COMMA, - anon_sym_from, - [189344] = 4, + STATE(6719), 1, + sym_else_clause, + [189598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5749), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189359] = 4, + ACTIONS(3144), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [189613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5750), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9752), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189374] = 4, + [189628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5751), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9754), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189389] = 4, + [189643] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5752), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189404] = 6, + [189658] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(9758), 1, + anon_sym_RBRACE, + STATE(5725), 1, + aux_sym_object_repeat1, + STATE(5753), 1, + sym_comment, + [189677] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9664), 1, + ACTIONS(9609), 1, + anon_sym_LBRACE, + ACTIONS(9760), 1, sym_identifier, - ACTIONS(9666), 1, - anon_sym_LBRACK, - ACTIONS(9668), 1, - sym_private_property_identifier, - STATE(5753), 1, + STATE(5451), 1, + sym_export_clause, + STATE(5754), 1, sym_comment, - [189423] = 4, + [189696] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5754), 1, - sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, + ACTIONS(8103), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189438] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9670), 1, - sym_identifier, - ACTIONS(9672), 1, - anon_sym_LBRACK, - ACTIONS(9674), 1, - sym_private_property_identifier, + ACTIONS(9758), 1, + anon_sym_RBRACE, + STATE(5662), 1, + aux_sym_object_repeat1, STATE(5755), 1, sym_comment, - [189457] = 4, + [189715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5756), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189472] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189730] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9676), 1, - sym_identifier, - ACTIONS(9678), 1, - anon_sym_LBRACK, - ACTIONS(9680), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5757), 1, sym_comment, - [189491] = 4, + ACTIONS(9754), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189745] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, STATE(5758), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189506] = 6, + STATE(6575), 1, + sym__from_clause, + [189764] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9682), 1, + ACTIONS(9762), 1, sym_identifier, - ACTIONS(9684), 1, + ACTIONS(9764), 1, anon_sym_LBRACK, - ACTIONS(9686), 1, + ACTIONS(9766), 1, sym_private_property_identifier, STATE(5759), 1, sym_comment, - [189525] = 4, + [189783] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5760), 1, sym_comment, - ACTIONS(9688), 3, + ACTIONS(8817), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189540] = 6, + [189798] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9690), 1, - anon_sym_COMMA, - ACTIONS(9692), 1, - anon_sym_RBRACK, + ACTIONS(9768), 1, + sym_identifier, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9772), 1, + sym_private_property_identifier, STATE(5761), 1, sym_comment, - STATE(5819), 1, - aux_sym_tuple_type_repeat1, - [189559] = 4, + [189817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5762), 1, sym_comment, - ACTIONS(8157), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [189574] = 6, + ACTIONS(8817), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189832] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9694), 1, - anon_sym_COMMA, - ACTIONS(9696), 1, - anon_sym_RPAREN, + ACTIONS(9774), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_LBRACK, + ACTIONS(9778), 1, + sym_private_property_identifier, STATE(5763), 1, sym_comment, - STATE(5953), 1, - aux_sym_formal_parameters_repeat1, - [189593] = 4, + [189851] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9780), 1, + anon_sym_EQ, STATE(5764), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189608] = 4, + ACTIONS(4344), 2, + anon_sym_in, + anon_sym_of, + [189868] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9782), 1, + sym_identifier, + ACTIONS(9784), 1, + anon_sym_LBRACK, + ACTIONS(9786), 1, + sym_private_property_identifier, STATE(5765), 1, sym_comment, - ACTIONS(9573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189623] = 4, + [189887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5766), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189638] = 4, + [189902] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9790), 1, + anon_sym_COMMA, + ACTIONS(9792), 1, + anon_sym_RBRACK, STATE(5767), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189653] = 6, + STATE(6104), 1, + aux_sym_tuple_type_repeat1, + [189921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9698), 1, - anon_sym_COMMA, - ACTIONS(9700), 1, - anon_sym_RBRACE, STATE(5768), 1, sym_comment, - STATE(5863), 1, - aux_sym_enum_body_repeat1, - [189672] = 4, + ACTIONS(8063), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [189936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(9794), 1, + anon_sym_RPAREN, STATE(5769), 1, sym_comment, - ACTIONS(9702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189687] = 6, + STATE(7069), 1, + sym_type_annotation, + [189955] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9704), 1, - anon_sym_COMMA, - ACTIONS(9706), 1, - anon_sym_RBRACE, STATE(5770), 1, sym_comment, - STATE(5863), 1, - aux_sym_enum_body_repeat1, - [189706] = 4, + ACTIONS(9796), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189970] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9798), 1, + anon_sym_COMMA, + ACTIONS(9800), 1, + anon_sym_RPAREN, STATE(5771), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189721] = 4, + STATE(5989), 1, + aux_sym_formal_parameters_repeat1, + [189989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5772), 1, sym_comment, - ACTIONS(9702), 3, + ACTIONS(9802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189736] = 6, + [190004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(9206), 1, - anon_sym_RBRACK, STATE(5773), 1, sym_comment, - STATE(5972), 1, - aux_sym_array_pattern_repeat1, - [189755] = 6, + ACTIONS(9802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190019] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(9804), 1, anon_sym_COMMA, - ACTIONS(5939), 1, - anon_sym_RBRACK, + ACTIONS(9806), 1, + anon_sym_RBRACE, STATE(5774), 1, sym_comment, - STATE(5970), 1, - aux_sym_array_repeat1, - [189774] = 4, + STATE(6049), 1, + aux_sym_enum_body_repeat1, + [190038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5775), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189789] = 6, + [190053] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(9808), 1, anon_sym_COMMA, - ACTIONS(5939), 1, - anon_sym_RBRACK, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(9810), 1, + anon_sym_RBRACE, STATE(5776), 1, sym_comment, - [189808] = 6, + STATE(6049), 1, + aux_sym_enum_body_repeat1, + [190072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(9206), 1, - anon_sym_RBRACK, STATE(5777), 1, sym_comment, - STATE(5974), 1, - aux_sym_array_pattern_repeat1, - [189827] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9662), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190087] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9708), 1, - anon_sym_DQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5778), 1, sym_comment, - ACTIONS(9710), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [189844] = 4, + ACTIONS(9812), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5779), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189859] = 4, + [190117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5780), 1, sym_comment, - ACTIONS(9603), 3, + ACTIONS(9802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189874] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190132] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9712), 1, - anon_sym_SQUOTE, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5781), 1, sym_comment, - ACTIONS(9714), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [189891] = 4, + ACTIONS(9802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5782), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189906] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190162] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5783), 1, sym_comment, - STATE(5794), 1, - sym_type_parameter, - [189925] = 4, + ACTIONS(9756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5784), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189940] = 6, + [190192] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7547), 1, - anon_sym_implements, - ACTIONS(9716), 1, - anon_sym_LBRACE, + ACTIONS(9746), 1, + anon_sym_require, + ACTIONS(9814), 1, + sym_identifier, STATE(5785), 1, sym_comment, - STATE(7013), 1, - sym_implements_clause, - [189959] = 4, + STATE(6242), 1, + sym_nested_identifier, + [190211] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5786), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189974] = 4, + [190226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5787), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189989] = 4, + [190241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5788), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190004] = 4, + [190256] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5789), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190019] = 4, + [190271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5790), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190034] = 4, + [190286] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5791), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190049] = 6, + [190301] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9660), 1, - anon_sym_RBRACE, + ACTIONS(9818), 1, + anon_sym_LBRACE, + ACTIONS(9820), 1, + anon_sym_LPAREN, + STATE(1367), 1, + sym_statement_block, STATE(5792), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [190068] = 4, + [190320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5793), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190083] = 6, + [190335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9718), 1, - anon_sym_COMMA, - ACTIONS(9720), 1, - anon_sym_GT, STATE(5794), 1, sym_comment, - STATE(6045), 1, - aux_sym_type_parameters_repeat1, - [190102] = 4, + ACTIONS(5906), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [190350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9360), 1, + anon_sym_EQ, STATE(5795), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(9822), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190117] = 4, + anon_sym_RBRACK, + [190367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5796), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9824), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190132] = 4, + [190382] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(9826), 1, + anon_sym_RBRACK, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5797), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190147] = 4, + [190401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5798), 1, sym_comment, - ACTIONS(9722), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190162] = 4, + [190416] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9609), 1, + anon_sym_LBRACE, + ACTIONS(9828), 1, + sym_identifier, + STATE(5444), 1, + sym_export_clause, STATE(5799), 1, sym_comment, - ACTIONS(9724), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190177] = 4, + [190435] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5800), 1, sym_comment, - ACTIONS(9726), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190192] = 4, + [190450] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, STATE(5801), 1, sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190207] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7991), 1, - sym_identifier, - STATE(5802), 1, - sym_comment, - ACTIONS(7995), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [190224] = 4, + STATE(6935), 1, + sym__from_clause, + [190469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5803), 1, + STATE(5802), 1, sym_comment, - ACTIONS(9728), 3, + ACTIONS(9832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190239] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190484] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9730), 1, - sym_identifier, - ACTIONS(9732), 1, - anon_sym_LBRACK, - ACTIONS(9734), 1, - sym_private_property_identifier, - STATE(5804), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9834), 1, + anon_sym_RBRACK, + STATE(5803), 1, sym_comment, - [190258] = 4, + STATE(5805), 1, + aux_sym_array_pattern_repeat1, + [190503] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5805), 1, + STATE(5804), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190273] = 4, + [190518] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9822), 1, + anon_sym_RBRACK, + ACTIONS(9836), 1, + anon_sym_COMMA, + STATE(5805), 2, + sym_comment, + aux_sym_array_pattern_repeat1, + [190535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5806), 1, sym_comment, - ACTIONS(9736), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190288] = 4, + [190550] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5807), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190303] = 4, + [190565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5808), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190318] = 4, + [190580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5809), 1, sym_comment, - ACTIONS(9573), 3, + ACTIONS(6769), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190333] = 5, + [190595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9738), 1, - anon_sym_EQ, STATE(5810), 1, sym_comment, - ACTIONS(9607), 2, + ACTIONS(9756), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [190350] = 6, + anon_sym_SEMI, + [190610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7173), 1, - anon_sym_LT, - ACTIONS(9740), 1, - anon_sym_EQ, STATE(5811), 1, sym_comment, - STATE(7223), 1, - sym_type_parameters, - [190369] = 4, + ACTIONS(9756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5812), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190384] = 4, + [190640] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5813), 1, sym_comment, - ACTIONS(9603), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190399] = 4, + [190655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5814), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190414] = 4, + [190670] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5815), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190429] = 6, + [190685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9744), 1, - anon_sym_COMMA, - ACTIONS(9746), 1, - anon_sym_RPAREN, - STATE(5643), 1, - aux_sym_formal_parameters_repeat1, STATE(5816), 1, sym_comment, - [190448] = 4, + ACTIONS(9756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5817), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190463] = 6, + [190715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9748), 1, - anon_sym_DQUOTE, - ACTIONS(9750), 1, - anon_sym_SQUOTE, STATE(5818), 1, sym_comment, - STATE(6080), 1, - sym_string, - [190482] = 5, + ACTIONS(9830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9752), 1, - anon_sym_COMMA, - ACTIONS(9755), 1, - anon_sym_RBRACK, - STATE(5819), 2, + STATE(5819), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [190499] = 4, + ACTIONS(9756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5820), 1, sym_comment, - ACTIONS(9603), 3, + ACTIONS(9839), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190514] = 4, + [190760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5821), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9839), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190529] = 6, + [190775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(9759), 1, - anon_sym_else, STATE(5822), 1, sym_comment, - STATE(6570), 1, - sym_else_clause, - [190548] = 4, + ACTIONS(9622), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5823), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190563] = 5, + [190805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8161), 1, - anon_sym_EQ, STATE(5824), 1, sym_comment, - ACTIONS(4354), 2, - anon_sym_in, - anon_sym_of, - [190580] = 4, + ACTIONS(9626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5825), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190595] = 4, + [190835] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5826), 1, sym_comment, - ACTIONS(9603), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190610] = 4, + [190850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5827), 1, sym_comment, - ACTIONS(9761), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [190625] = 4, + [190865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5828), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190640] = 6, + [190880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9765), 1, - anon_sym_COMMA, - ACTIONS(9767), 1, - anon_sym_RBRACE, STATE(5829), 1, sym_comment, - STATE(6084), 1, - aux_sym_export_clause_repeat1, - [190659] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190895] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9845), 1, + sym_identifier, + STATE(3407), 1, + sym_decorator_member_expression, + STATE(3578), 1, + sym_decorator_call_expression, STATE(5830), 1, sym_comment, - ACTIONS(9769), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190674] = 4, + [190914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5831), 1, sym_comment, - ACTIONS(9771), 3, + ACTIONS(9824), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190689] = 5, + [190929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9773), 1, - anon_sym_as, STATE(5832), 1, sym_comment, - ACTIONS(9775), 2, + ACTIONS(9662), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [190706] = 4, + anon_sym_SEMI, + [190944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5833), 1, sym_comment, - ACTIONS(9777), 3, + ACTIONS(9832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190721] = 4, + [190959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5834), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190736] = 4, + [190974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5835), 1, sym_comment, - ACTIONS(9779), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [190751] = 6, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9781), 1, - anon_sym_LPAREN, - ACTIONS(9783), 1, - anon_sym_await, - STATE(107), 1, - sym__for_header, STATE(5836), 1, sym_comment, - [190770] = 4, + ACTIONS(9662), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5837), 1, sym_comment, - ACTIONS(9785), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190785] = 4, + [191019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5838), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190800] = 5, + [191034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, - anon_sym_LBRACE, STATE(5839), 1, sym_comment, - ACTIONS(5280), 2, + ACTIONS(9622), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [190817] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [191049] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9787), 1, - sym_identifier, - ACTIONS(9789), 1, - anon_sym_SEMI, - ACTIONS(9791), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5840), 1, sym_comment, - [190836] = 6, + ACTIONS(9756), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191064] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9793), 1, + ACTIONS(9847), 1, sym_identifier, - ACTIONS(9795), 1, + ACTIONS(9849), 1, anon_sym_SEMI, - ACTIONS(9797), 1, + ACTIONS(9851), 1, sym__automatic_semicolon, STATE(5841), 1, sym_comment, - [190855] = 5, + [191083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, - anon_sym_LBRACE, + ACTIONS(9853), 1, + anon_sym_LPAREN, + ACTIONS(9855), 1, + anon_sym_await, + STATE(119), 1, + sym__for_header, STATE(5842), 1, sym_comment, - ACTIONS(5284), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [190872] = 4, + [191102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5843), 1, sym_comment, - ACTIONS(9799), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190887] = 4, + [191117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5844), 1, sym_comment, - ACTIONS(9771), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190902] = 5, + [191132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, - anon_sym_LBRACE, STATE(5845), 1, sym_comment, - ACTIONS(5292), 2, + ACTIONS(9756), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [190919] = 5, + anon_sym_SEMI, + [191147] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9803), 1, - sym_unescaped_double_jsx_string_fragment, + ACTIONS(9857), 1, + sym_identifier, + ACTIONS(9859), 1, + anon_sym_SEMI, + ACTIONS(9861), 1, + sym__automatic_semicolon, STATE(5846), 1, sym_comment, - ACTIONS(9801), 2, - sym_html_character_reference, - anon_sym_DQUOTE, - [190936] = 6, + [191166] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9805), 1, - anon_sym_RBRACE, + ACTIONS(9863), 1, + sym_identifier, + ACTIONS(9865), 1, + anon_sym_SEMI, + ACTIONS(9867), 1, + sym__automatic_semicolon, STATE(5847), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [190955] = 6, + [191185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9805), 1, - anon_sym_RBRACE, - STATE(5666), 1, - aux_sym_object_repeat1, STATE(5848), 1, sym_comment, - [190974] = 4, + ACTIONS(9869), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191200] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9871), 1, + sym_identifier, + ACTIONS(9873), 1, + anon_sym_SEMI, + ACTIONS(9875), 1, + sym__automatic_semicolon, STATE(5849), 1, sym_comment, - ACTIONS(9769), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190989] = 4, + [191219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5850), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191004] = 4, + [191234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5851), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191019] = 4, + [191249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5852), 1, sym_comment, - ACTIONS(9807), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191034] = 4, + [191264] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5853), 1, sym_comment, - ACTIONS(9785), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191049] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191279] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9811), 1, - sym_unescaped_single_jsx_string_fragment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5854), 1, sym_comment, - ACTIONS(9809), 2, - sym_html_character_reference, - anon_sym_SQUOTE, - [191066] = 4, + ACTIONS(9662), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191294] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9879), 1, + anon_sym_LPAREN, + ACTIONS(9881), 1, + anon_sym_await, + STATE(87), 1, + sym__for_header, STATE(5855), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191081] = 4, + [191313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5856), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191096] = 5, + [191328] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8840), 1, - anon_sym_LBRACE, + ACTIONS(9883), 1, + anon_sym_COMMA, + ACTIONS(9885), 1, + anon_sym_GT, STATE(5857), 1, sym_comment, - ACTIONS(8842), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191113] = 5, + STATE(6066), 1, + aux_sym_type_parameters_repeat1, + [191347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, - anon_sym_LBRACE, STATE(5858), 1, sym_comment, - ACTIONS(5108), 2, + ACTIONS(9816), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191130] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [191362] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9557), 1, - anon_sym_LBRACE, - ACTIONS(9813), 1, - sym_identifier, - STATE(5464), 1, - sym_export_clause, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5859), 1, sym_comment, - [191149] = 4, + ACTIONS(9662), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5860), 1, sym_comment, - ACTIONS(9785), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191164] = 4, + [191392] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5861), 1, sym_comment, - ACTIONS(9815), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191179] = 6, + [191407] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, STATE(5862), 1, sym_comment, - STATE(6377), 1, - sym__from_clause, - [191198] = 5, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191422] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9817), 1, - anon_sym_COMMA, - ACTIONS(9820), 1, - anon_sym_RBRACE, - STATE(5863), 2, + STATE(5863), 1, sym_comment, - aux_sym_enum_body_repeat1, - [191215] = 4, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5864), 1, sym_comment, - ACTIONS(3200), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [191230] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5865), 1, sym_comment, - ACTIONS(9769), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191245] = 5, + [191467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5106), 1, - anon_sym_LBRACE, STATE(5866), 1, sym_comment, - ACTIONS(5108), 2, + ACTIONS(9662), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191262] = 5, + anon_sym_SEMI, + [191482] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, - anon_sym_LBRACE, STATE(5867), 1, sym_comment, - ACTIONS(5156), 2, + ACTIONS(9561), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191279] = 6, + anon_sym_SEMI, + [191497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9822), 1, - anon_sym_RBRACE, STATE(5868), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [191298] = 6, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(9824), 1, - anon_sym_RBRACE, STATE(5869), 1, sym_comment, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, - [191317] = 5, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5154), 1, - anon_sym_LBRACE, STATE(5870), 1, sym_comment, - ACTIONS(5156), 2, + ACTIONS(9841), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191334] = 5, + anon_sym_SEMI, + [191542] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5210), 1, + ACTIONS(8188), 1, anon_sym_LBRACE, + ACTIONS(8190), 1, + anon_sym_LBRACE_PIPE, + STATE(1562), 1, + sym_object_type, STATE(5871), 1, sym_comment, - ACTIONS(5212), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191351] = 4, + [191561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5872), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191366] = 5, + [191576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5357), 1, - anon_sym_LBRACE, STATE(5873), 1, sym_comment, - ACTIONS(5359), 2, + ACTIONS(9561), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191383] = 6, + anon_sym_SEMI, + [191591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(9826), 1, - anon_sym_RPAREN, STATE(5874), 1, sym_comment, - STATE(7129), 1, - sym_type_annotation, - [191402] = 5, + ACTIONS(9626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5353), 1, - anon_sym_LBRACE, STATE(5875), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(9561), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191419] = 5, + anon_sym_SEMI, + [191621] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, - anon_sym_LBRACE, STATE(5876), 1, sym_comment, - ACTIONS(5351), 2, + ACTIONS(9816), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [191436] = 4, + anon_sym_SEMI, + [191636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5877), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191451] = 4, + [191651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5878), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191466] = 4, + [191666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5879), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191481] = 4, + [191681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5868), 1, + anon_sym_RPAREN, STATE(5880), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191496] = 4, + STATE(6089), 1, + aux_sym_array_repeat1, + [191700] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5868), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5881), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191511] = 4, + [191719] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5882), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191526] = 4, + [191734] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4175), 1, + anon_sym_LPAREN, + ACTIONS(9889), 1, + anon_sym_DOT, + STATE(4308), 1, + sym_arguments, STATE(5883), 1, sym_comment, - ACTIONS(9585), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191541] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191753] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9830), 1, - sym_identifier, - ACTIONS(9832), 1, - anon_sym_require, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5884), 1, sym_comment, - STATE(6285), 1, - sym_nested_identifier, - [191560] = 6, + ACTIONS(9626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(9834), 1, - anon_sym_RBRACE, STATE(5885), 1, sym_comment, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, - [191579] = 4, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191783] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5886), 1, sym_comment, - ACTIONS(9836), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [191594] = 4, + [191798] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5887), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191609] = 4, + [191813] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5888), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191624] = 4, + [191828] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5889), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191639] = 6, + [191843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(9838), 1, - anon_sym_RBRACE, STATE(5890), 1, sym_comment, - STATE(5895), 1, - aux_sym_object_repeat1, - [191658] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5891), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191673] = 4, + [191873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5892), 1, sym_comment, - ACTIONS(9724), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191688] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191888] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9840), 1, - sym_identifier, - STATE(3444), 1, - sym_decorator_member_expression, - STATE(3595), 1, - sym_decorator_call_expression, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5893), 1, sym_comment, - [191707] = 4, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191903] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5894), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191722] = 5, + [191918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9842), 1, - anon_sym_COMMA, - ACTIONS(9845), 1, - anon_sym_RBRACE, - STATE(5895), 2, + STATE(5895), 1, sym_comment, - aux_sym_object_repeat1, - [191739] = 4, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(9893), 1, + anon_sym_RPAREN, STATE(5896), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191754] = 5, + STATE(7054), 1, + sym_type_annotation, + [191952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9847), 1, - anon_sym_COMMA, - ACTIONS(9850), 1, - anon_sym_RBRACE, - STATE(5897), 2, + STATE(5897), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [191771] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191967] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9557), 1, - anon_sym_LBRACE, - ACTIONS(9852), 1, - sym_identifier, - STATE(5429), 1, - sym_export_clause, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5898), 1, sym_comment, - [191790] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, STATE(5899), 1, sym_comment, - STATE(6627), 1, - sym__from_clause, - [191809] = 4, + ACTIONS(9662), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5900), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191824] = 5, + [192012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9854), 1, - anon_sym_LBRACE, STATE(5901), 1, sym_comment, - ACTIONS(8767), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [191841] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5902), 1, sym_comment, - ACTIONS(9585), 3, + ACTIONS(9622), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191856] = 4, + [192042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5903), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191871] = 4, + [192057] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5904), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191886] = 4, + [192072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5905), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191901] = 4, + [192087] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5906), 1, + ACTIONS(9895), 1, + sym__glimmer_template_content, + ACTIONS(9898), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(5906), 2, sym_comment, - ACTIONS(9856), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [191916] = 5, + aux_sym_glimmer_template_repeat1, + [192104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9858), 1, - anon_sym_EQ, STATE(5907), 1, sym_comment, - ACTIONS(9607), 2, + ACTIONS(9877), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [191933] = 4, + anon_sym_SEMI, + [192119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5908), 1, sym_comment, - ACTIONS(9860), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191948] = 4, + [192134] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5909), 1, sym_comment, - ACTIONS(9860), 3, + ACTIONS(9626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191963] = 4, + [192149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5910), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191978] = 4, + [192164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5911), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191993] = 4, + [192179] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5912), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192008] = 6, + [192194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(9862), 1, - anon_sym_RPAREN, STATE(5913), 1, sym_comment, - STATE(7063), 1, - sym_type_annotation, - [192027] = 4, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5914), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192042] = 4, + [192224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5915), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192057] = 4, + [192239] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5916), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192072] = 4, + [192254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5917), 1, sym_comment, - ACTIONS(9866), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192087] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [192269] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9868), 1, - sym_identifier, - ACTIONS(9870), 1, - anon_sym_SEMI, - ACTIONS(9872), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5918), 1, sym_comment, - [192106] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192284] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, - anon_sym_SEMI, - ACTIONS(9878), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5919), 1, sym_comment, - [192125] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5920), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192140] = 5, + [192314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9390), 1, - anon_sym_as, STATE(5921), 1, sym_comment, - ACTIONS(9607), 2, + ACTIONS(9902), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [192157] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [192329] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9832), 1, - anon_sym_require, - ACTIONS(9880), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5922), 1, sym_comment, - STATE(6236), 1, - sym_nested_identifier, - [192176] = 6, + ACTIONS(9904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192344] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9882), 1, - anon_sym_COMMA, - ACTIONS(9884), 1, - anon_sym_RBRACE, STATE(5923), 1, sym_comment, - STATE(6116), 1, - aux_sym_named_imports_repeat1, - [192195] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5924), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9906), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192210] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [192374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9832), 1, - anon_sym_require, - ACTIONS(9886), 1, - sym_identifier, - STATE(5641), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(5925), 1, sym_comment, - [192229] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5926), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192244] = 4, + [192404] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9746), 1, + anon_sym_require, + ACTIONS(9908), 1, + sym_identifier, + STATE(5702), 1, + sym_nested_identifier, STATE(5927), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192259] = 4, + [192423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5928), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192274] = 6, + [192438] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9888), 1, - anon_sym_LPAREN, - ACTIONS(9890), 1, - anon_sym_await, - STATE(112), 1, - sym__for_header, STATE(5929), 1, sym_comment, - [192293] = 4, + ACTIONS(9910), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192453] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9912), 1, + anon_sym_GT, STATE(5930), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192308] = 6, + [192472] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, STATE(5931), 1, sym_comment, - STATE(6853), 1, - sym__from_clause, - [192327] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5932), 1, sym_comment, - ACTIONS(9892), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192342] = 4, + [192502] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5933), 1, sym_comment, - ACTIONS(9894), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192357] = 4, + [192517] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9609), 1, + anon_sym_LBRACE, + ACTIONS(9914), 1, + sym_identifier, + STATE(5624), 1, + sym_export_clause, STATE(5934), 1, sym_comment, - ACTIONS(3186), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [192372] = 6, + [192536] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9896), 1, - anon_sym_LBRACE, - ACTIONS(9898), 1, - anon_sym_LPAREN, - STATE(1142), 1, - sym_statement_block, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, STATE(5935), 1, sym_comment, - [192391] = 5, + STATE(6513), 1, + sym__from_clause, + [192555] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6426), 1, - sym__automatic_semicolon, STATE(5936), 1, sym_comment, - ACTIONS(2313), 2, - anon_sym_else, - anon_sym_while, - [192408] = 4, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5937), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192423] = 5, + [192585] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6435), 1, - sym__automatic_semicolon, STATE(5938), 1, sym_comment, - ACTIONS(2287), 2, - anon_sym_else, - anon_sym_while, - [192440] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192600] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5939), 1, sym_comment, - ACTIONS(9900), 3, + ACTIONS(9916), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [192455] = 4, + [192615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9918), 1, + anon_sym_as, STATE(5940), 1, sym_comment, - ACTIONS(9900), 3, - sym__automatic_semicolon, + ACTIONS(9920), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192470] = 4, + anon_sym_RBRACE, + [192632] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9922), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, + anon_sym_LPAREN, + STATE(1079), 1, + sym_statement_block, STATE(5941), 1, sym_comment, - ACTIONS(9902), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192485] = 4, + [192651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5942), 1, sym_comment, - ACTIONS(8966), 3, + ACTIONS(9926), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [192500] = 4, + [192666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5943), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192515] = 4, + [192681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9928), 1, + anon_sym_COMMA, + ACTIONS(9930), 1, + anon_sym_RBRACE, STATE(5944), 1, sym_comment, - ACTIONS(8966), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192530] = 4, + STATE(6107), 1, + aux_sym_export_clause_repeat1, + [192700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5945), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192545] = 4, + [192715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5946), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9932), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [192560] = 5, + [192730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9904), 1, - anon_sym_EQ, STATE(5947), 1, sym_comment, - ACTIONS(4354), 2, - anon_sym_in, - anon_sym_of, - [192577] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5948), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192592] = 4, + [192760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5949), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192607] = 4, + [192775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5950), 1, sym_comment, - ACTIONS(9906), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192622] = 4, + [192790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5951), 1, sym_comment, - ACTIONS(9906), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192637] = 4, + [192805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5952), 1, sym_comment, - ACTIONS(8175), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [192652] = 6, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9908), 1, - anon_sym_COMMA, - ACTIONS(9910), 1, - anon_sym_RPAREN, STATE(5953), 1, sym_comment, - STATE(6142), 1, - aux_sym_formal_parameters_repeat1, - [192671] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192835] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5954), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192686] = 4, + [192850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5955), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192701] = 6, + [192865] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1344), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8033), 1, - anon_sym_LBRACE_PIPE, - STATE(4990), 1, - sym_object_type, + ACTIONS(9360), 1, + anon_sym_EQ, STATE(5956), 1, sym_comment, - [192720] = 4, + ACTIONS(9934), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_LBRACE, STATE(5957), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, + ACTIONS(5035), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192735] = 4, + anon_sym_LBRACE_PIPE, + [192899] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5958), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9843), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192750] = 6, + [192914] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9912), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - ACTIONS(9914), 1, - anon_sym_LPAREN, - STATE(1205), 1, - sym_statement_block, STATE(5959), 1, sym_comment, - [192769] = 6, + ACTIONS(5031), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [192931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RPAREN, STATE(5960), 1, sym_comment, - STATE(6013), 1, - aux_sym_array_repeat1, - [192788] = 6, + ACTIONS(9830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(5961), 1, sym_comment, - [192807] = 4, + ACTIONS(9936), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192961] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1352), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, + STATE(5370), 1, + sym_object_type, STATE(5962), 1, sym_comment, - ACTIONS(9916), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192822] = 4, + [192980] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5025), 1, + anon_sym_LBRACE, STATE(5963), 1, sym_comment, - ACTIONS(9918), 3, - sym__automatic_semicolon, + ACTIONS(5027), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192837] = 4, + anon_sym_LBRACE_PIPE, + [192997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5964), 1, sym_comment, - ACTIONS(9916), 3, + ACTIONS(9938), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192852] = 4, + [193012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5965), 1, sym_comment, - ACTIONS(9900), 3, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192867] = 4, + [193027] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5966), 1, - sym_comment, - ACTIONS(5906), 3, + ACTIONS(5795), 1, anon_sym_COMMA, + ACTIONS(5941), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [192882] = 4, + STATE(5966), 1, + sym_comment, + STATE(6019), 1, + aux_sym_array_repeat1, + [193046] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(5967), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192897] = 5, + [193065] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9202), 1, - anon_sym_EQ, STATE(5968), 1, sym_comment, - ACTIONS(9920), 2, + ACTIONS(9877), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [192914] = 5, + anon_sym_SEMI, + [193080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6342), 1, - sym__automatic_semicolon, STATE(5969), 1, sym_comment, - ACTIONS(2271), 2, - anon_sym_else, - anon_sym_while, - [192931] = 6, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(9922), 1, - anon_sym_RBRACK, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(9940), 1, + anon_sym_as, STATE(5970), 1, sym_comment, - [192950] = 6, + ACTIONS(9720), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [193112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8828), 1, - anon_sym_DOT, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(9924), 1, - anon_sym_GT, STATE(5971), 1, sym_comment, - [192969] = 6, + ACTIONS(9830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193127] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(9926), 1, - anon_sym_RBRACK, + ACTIONS(7187), 1, + anon_sym_type, + ACTIONS(9942), 1, + sym_identifier, STATE(5972), 1, sym_comment, - STATE(5974), 1, - aux_sym_array_pattern_repeat1, - [192988] = 4, + STATE(6642), 1, + sym__import_identifier, + [193146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5973), 1, sym_comment, - ACTIONS(9928), 3, + ACTIONS(9902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193003] = 5, + [193161] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9920), 1, - anon_sym_RBRACK, - ACTIONS(9930), 1, - anon_sym_COMMA, - STATE(5974), 2, + ACTIONS(7187), 1, + anon_sym_type, + ACTIONS(9942), 1, + sym_identifier, + STATE(5974), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [193020] = 4, + STATE(6640), 1, + sym__import_identifier, + [193180] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9944), 1, + anon_sym_COMMA, + ACTIONS(9946), 1, + anon_sym_RBRACE, STATE(5975), 1, sym_comment, - ACTIONS(9742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193035] = 4, + STATE(6128), 1, + aux_sym_named_imports_repeat1, + [193199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(5976), 1, sym_comment, - ACTIONS(6748), 3, + ACTIONS(9948), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [193050] = 4, + [193216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9950), 1, + anon_sym_GT, STATE(5977), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193065] = 4, + [193235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5978), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193080] = 4, + [193250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5979), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193095] = 4, + [193265] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5980), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9952), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193110] = 4, + [193280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5981), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9954), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193125] = 4, + [193295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5982), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193140] = 4, + [193310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5983), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193155] = 4, + [193325] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5984), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193170] = 6, + ACTIONS(9956), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [193340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(9935), 1, - anon_sym_RPAREN, + ACTIONS(4969), 1, + anon_sym_LBRACE, STATE(5985), 1, sym_comment, - STATE(7018), 1, - sym_type_annotation, - [193189] = 5, + ACTIONS(4971), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [193357] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7967), 1, - anon_sym_DOT, + ACTIONS(4969), 1, + anon_sym_LBRACE, STATE(5986), 1, sym_comment, - ACTIONS(9937), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [193206] = 5, + ACTIONS(4971), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [193374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, + ACTIONS(4949), 1, + anon_sym_LBRACE, STATE(5987), 1, sym_comment, - ACTIONS(9937), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [193223] = 4, + ACTIONS(4951), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [193391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5988), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193238] = 4, + ACTIONS(8051), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [193406] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5989), 1, - sym_comment, - ACTIONS(9941), 3, - sym__automatic_semicolon, + ACTIONS(9958), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193253] = 4, + ACTIONS(9961), 1, + anon_sym_RPAREN, + STATE(5989), 2, + sym_comment, + aux_sym_formal_parameters_repeat1, + [193423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4949), 1, + anon_sym_LBRACE, STATE(5990), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, + ACTIONS(4951), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193268] = 4, + anon_sym_LBRACE_PIPE, + [193440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4935), 1, + anon_sym_LBRACE, STATE(5991), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, + ACTIONS(4937), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193283] = 4, + anon_sym_LBRACE_PIPE, + [193457] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(5992), 1, sym_comment, - ACTIONS(9943), 3, + ACTIONS(9963), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [193298] = 4, + [193474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7947), 1, + anon_sym_DOT, STATE(5993), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(9963), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [193313] = 4, + [193491] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5327), 1, + anon_sym_LBRACE, STATE(5994), 1, sym_comment, - ACTIONS(9945), 3, - sym__automatic_semicolon, + ACTIONS(5329), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193328] = 4, + anon_sym_LBRACE_PIPE, + [193508] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5349), 1, + anon_sym_LBRACE, STATE(5995), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, + ACTIONS(5351), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193343] = 6, + anon_sym_LBRACE_PIPE, + [193525] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9949), 1, - anon_sym_COMMA, - ACTIONS(9951), 1, - anon_sym_RBRACK, + ACTIONS(4985), 1, + anon_sym_LBRACE, STATE(5996), 1, sym_comment, - STATE(6044), 1, - aux_sym_tuple_type_repeat1, - [193362] = 4, + ACTIONS(4987), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [193542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5997), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193377] = 4, + [193557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(5998), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193392] = 4, + [193572] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7947), 1, + anon_sym_DOT, STATE(5999), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9948), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [193407] = 6, + [193589] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4958), 1, - anon_sym_extends, - ACTIONS(9953), 1, - anon_sym_AMP, - ACTIONS(9955), 1, - anon_sym_PIPE, STATE(6000), 1, sym_comment, - [193426] = 4, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6001), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193441] = 4, + [193619] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9965), 1, + anon_sym_COMMA, + ACTIONS(9967), 1, + anon_sym_RBRACK, STATE(6002), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193456] = 4, + STATE(6050), 1, + aux_sym_tuple_type_repeat1, + [193638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6003), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193471] = 4, + [193653] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6004), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193486] = 4, + [193668] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6005), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193501] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [193683] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9832), 1, - anon_sym_require, - ACTIONS(9957), 1, - sym_identifier, - STATE(5696), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4947), 1, + anon_sym_extends, + ACTIONS(9971), 1, + anon_sym_AMP, + ACTIONS(9973), 1, + anon_sym_PIPE, STATE(6006), 1, sym_comment, - [193520] = 4, + [193702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6007), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193535] = 4, + [193717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6008), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193550] = 4, + [193732] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6009), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193565] = 6, + [193747] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1344), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8033), 1, - anon_sym_LBRACE_PIPE, - STATE(5263), 1, - sym_object_type, STATE(6010), 1, sym_comment, - [193584] = 4, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6011), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193599] = 6, + [193777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9959), 1, - anon_sym_COMMA, - ACTIONS(9961), 1, - anon_sym_RBRACE, STATE(6012), 1, sym_comment, - STATE(6053), 1, - aux_sym_enum_body_repeat1, - [193618] = 6, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193792] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(9963), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6013), 1, sym_comment, - [193637] = 4, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6014), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193652] = 6, + [193822] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9965), 1, - anon_sym_COMMA, - ACTIONS(9967), 1, - anon_sym_GT, STATE(6015), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [193671] = 4, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193837] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1352), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, + STATE(5202), 1, + sym_object_type, STATE(6016), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193686] = 6, + [193856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9969), 1, - anon_sym_COMMA, - ACTIONS(9971), 1, - anon_sym_GT, STATE(6017), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [193705] = 4, + ACTIONS(9910), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193871] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9975), 1, + anon_sym_COMMA, + ACTIONS(9977), 1, + anon_sym_RBRACE, STATE(6018), 1, sym_comment, - ACTIONS(9601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193720] = 6, + STATE(6059), 1, + aux_sym_enum_body_repeat1, + [193890] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9973), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(9975), 1, - anon_sym_GT, + ACTIONS(9979), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6019), 1, sym_comment, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - [193739] = 4, + [193909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6020), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193754] = 4, + [193924] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9981), 1, + anon_sym_COMMA, + ACTIONS(9983), 1, + anon_sym_GT, STATE(6021), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193769] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [193943] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9557), 1, - anon_sym_LBRACE, - ACTIONS(9977), 1, - sym_identifier, - STATE(5619), 1, - sym_export_clause, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9985), 1, + anon_sym_COMMA, + ACTIONS(9987), 1, + anon_sym_RBRACK, STATE(6022), 1, sym_comment, - [193788] = 4, + STATE(6224), 1, + aux_sym_tuple_type_repeat1, + [193962] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9989), 1, + anon_sym_COMMA, + ACTIONS(9991), 1, + anon_sym_GT, STATE(6023), 1, sym_comment, - ACTIONS(9979), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [193803] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [193981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, STATE(6024), 1, sym_comment, - STATE(6422), 1, - sym__from_clause, - [193822] = 4, + ACTIONS(9993), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [193996] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9995), 1, + anon_sym_COMMA, + ACTIONS(9997), 1, + anon_sym_GT, STATE(6025), 1, sym_comment, - ACTIONS(9941), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193837] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [194015] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6026), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193852] = 4, + [194030] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7081), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_PIPE, + ACTIONS(7111), 1, + anon_sym_extends, STATE(6027), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193867] = 4, + [194049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6028), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(9887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193882] = 4, + [194064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6029), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193897] = 5, + [194079] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6538), 1, - sym__automatic_semicolon, + ACTIONS(8441), 1, + anon_sym_COMMA, + ACTIONS(9999), 1, + anon_sym_LBRACE, STATE(6030), 1, sym_comment, - ACTIONS(2373), 2, - anon_sym_else, - anon_sym_while, - [193914] = 4, + STATE(6243), 1, + aux_sym_implements_clause_repeat1, + [194098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6031), 1, sym_comment, - ACTIONS(9945), 3, + ACTIONS(9891), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193929] = 4, + [194113] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(10001), 1, + anon_sym_RPAREN, STATE(6032), 1, sym_comment, - ACTIONS(9815), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193944] = 5, + STATE(7168), 1, + sym_type_annotation, + [194132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6536), 1, - sym__automatic_semicolon, STATE(6033), 1, sym_comment, - ACTIONS(2381), 2, - anon_sym_else, - anon_sym_while, - [193961] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6034), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193976] = 5, + [194162] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6518), 1, - sym__automatic_semicolon, STATE(6035), 1, sym_comment, - ACTIONS(2357), 2, - anon_sym_else, - anon_sym_while, - [193993] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6036), 1, sym_comment, - ACTIONS(9860), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194008] = 4, + [194192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6037), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194023] = 4, + [194207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6038), 1, sym_comment, - ACTIONS(9860), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194038] = 4, + [194222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6039), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194053] = 5, + [194237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6516), 1, - sym__automatic_semicolon, STATE(6040), 1, sym_comment, - ACTIONS(2365), 2, - anon_sym_else, - anon_sym_while, - [194070] = 5, + ACTIONS(9887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194252] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6506), 1, - sym__automatic_semicolon, STATE(6041), 1, sym_comment, - ACTIONS(2343), 2, - anon_sym_else, - anon_sym_while, - [194087] = 4, + ACTIONS(9891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6042), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194102] = 4, + [194282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6043), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194117] = 6, + [194297] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9981), 1, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_RBRACK, - STATE(5819), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(10005), 1, + anon_sym_RBRACE, STATE(6044), 1, sym_comment, - [194136] = 6, + STATE(6049), 1, + aux_sym_enum_body_repeat1, + [194316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9985), 1, - anon_sym_COMMA, - ACTIONS(9987), 1, - anon_sym_GT, STATE(6045), 1, sym_comment, - STATE(6177), 1, - aux_sym_type_parameters_repeat1, - [194155] = 4, + ACTIONS(9877), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194331] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6046), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194170] = 4, + [194346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6047), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194185] = 4, + [194361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6048), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10007), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194200] = 4, + [194376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6049), 1, - sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, + ACTIONS(10009), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194215] = 6, + ACTIONS(10012), 1, + anon_sym_RBRACE, + STATE(6049), 2, + sym_comment, + aux_sym_enum_body_repeat1, + [194393] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8163), 1, - anon_sym_LBRACE, - ACTIONS(8165), 1, - anon_sym_LBRACE_PIPE, - STATE(1487), 1, - sym_object_type, + ACTIONS(10014), 1, + anon_sym_COMMA, + ACTIONS(10016), 1, + anon_sym_RBRACK, STATE(6050), 1, sym_comment, - [194234] = 6, + STATE(6104), 1, + aux_sym_tuple_type_repeat1, + [194412] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9989), 1, - anon_sym_COMMA, - ACTIONS(9991), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, STATE(6051), 1, sym_comment, - [194253] = 4, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6052), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(10020), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194268] = 6, + [194442] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9993), 1, + ACTIONS(10022), 1, anon_sym_COMMA, - ACTIONS(9995), 1, + ACTIONS(10024), 1, anon_sym_RBRACE, - STATE(5863), 1, + STATE(6049), 1, aux_sym_enum_body_repeat1, STATE(6053), 1, sym_comment, - [194287] = 4, + [194461] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6054), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194302] = 4, + [194476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6055), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194317] = 4, + [194491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6056), 1, sym_comment, - ACTIONS(9601), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194332] = 4, + [194506] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10028), 1, + anon_sym_COMMA, + ACTIONS(10030), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6057), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194347] = 6, + [194525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5910), 1, - anon_sym_RPAREN, STATE(6058), 1, sym_comment, - STATE(6189), 1, - aux_sym_array_repeat1, - [194366] = 4, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194540] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10032), 1, + anon_sym_COMMA, + ACTIONS(10034), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6059), 1, sym_comment, - ACTIONS(9933), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194381] = 6, + [194559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5910), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6060), 1, sym_comment, - [194400] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194574] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4145), 1, - anon_sym_LPAREN, - ACTIONS(9997), 1, - anon_sym_DOT, - STATE(4338), 1, - sym_arguments, + ACTIONS(9088), 1, + anon_sym_LBRACE, STATE(6061), 1, sym_comment, - [194419] = 4, + ACTIONS(9090), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [194591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6062), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194434] = 4, + [194606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6063), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194449] = 4, + [194621] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6064), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194464] = 4, + [194636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6065), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194479] = 4, + [194651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6066), 1, - sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, + ACTIONS(10040), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194494] = 4, + ACTIONS(10043), 1, + anon_sym_GT, + STATE(6066), 2, + sym_comment, + aux_sym_type_parameters_repeat1, + [194668] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6067), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194509] = 4, + [194683] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6068), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194524] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9999), 1, - sym__glimmer_template_content, - ACTIONS(10002), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(6069), 2, - sym_comment, - aux_sym_glimmer_template_repeat1, - [194541] = 4, + [194698] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6070), 1, + STATE(6069), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194556] = 6, + [194713] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8828), 1, - anon_sym_DOT, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(10004), 1, - anon_sym_GT, - STATE(6071), 1, + ACTIONS(10045), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_RBRACK, + STATE(6070), 1, sym_comment, - [194575] = 4, + STATE(6104), 1, + aux_sym_tuple_type_repeat1, + [194732] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6072), 1, + STATE(6071), 1, sym_comment, - ACTIONS(10006), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194590] = 4, + [194747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6073), 1, + STATE(6072), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194605] = 5, + [194762] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9746), 1, + anon_sym_require, + ACTIONS(10049), 1, + sym_identifier, + STATE(6073), 1, + sym_comment, + STATE(6209), 1, + sym_nested_identifier, + [194781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10008), 1, - anon_sym_LBRACE, STATE(6074), 1, sym_comment, - ACTIONS(8868), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [194622] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194796] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6075), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194637] = 4, + [194811] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6076), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194652] = 4, + [194826] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6077), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194667] = 4, + [194841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6078), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194682] = 5, + [194856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9083), 1, - anon_sym_GT, - ACTIONS(10010), 1, - anon_sym_COMMA, - STATE(6079), 2, + STATE(6079), 1, sym_comment, - aux_sym_type_arguments_repeat1, - [194699] = 4, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6080), 1, sym_comment, - ACTIONS(10013), 3, + ACTIONS(9877), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [194714] = 5, + [194886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10015), 1, - anon_sym_as, STATE(6081), 1, sym_comment, - ACTIONS(10017), 2, + ACTIONS(10053), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [194731] = 4, + anon_sym_SEMI, + [194901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6082), 1, sym_comment, - ACTIONS(10019), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [194746] = 4, + [194916] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6083), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194761] = 6, + [194931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10021), 1, - anon_sym_COMMA, - ACTIONS(10023), 1, - anon_sym_RBRACE, STATE(6084), 1, sym_comment, - STATE(6221), 1, - aux_sym_export_clause_repeat1, - [194780] = 4, + ACTIONS(10051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194946] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10057), 1, + sym_unescaped_single_jsx_string_fragment, STATE(6085), 1, sym_comment, - ACTIONS(9828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194795] = 4, + ACTIONS(10055), 2, + sym_html_character_reference, + anon_sym_SQUOTE, + [194963] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8188), 1, + anon_sym_LBRACE, + ACTIONS(8190), 1, + anon_sym_LBRACE_PIPE, + STATE(1456), 1, + sym_object_type, STATE(6086), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194810] = 4, + [194982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6087), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194825] = 4, + [194997] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10059), 1, + anon_sym_COMMA, + ACTIONS(10061), 1, + anon_sym_RBRACE, STATE(6088), 1, sym_comment, - ACTIONS(9757), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194840] = 4, + STATE(6275), 1, + aux_sym_enum_body_repeat1, + [195016] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(10063), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6089), 1, sym_comment, - ACTIONS(9757), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194855] = 4, + [195035] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10065), 1, + anon_sym_COMMA, + ACTIONS(10067), 1, + anon_sym_GT, STATE(6090), 1, sym_comment, - ACTIONS(9742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194870] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [195054] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10069), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_GT, STATE(6091), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194885] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [195073] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10073), 1, + anon_sym_COMMA, + ACTIONS(10075), 1, + anon_sym_GT, STATE(6092), 1, sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194900] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [195092] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6093), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194915] = 4, + [195107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6094), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194930] = 4, + [195122] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6095), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194945] = 5, + [195137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_DOT, STATE(6096), 1, sym_comment, - ACTIONS(10025), 2, + ACTIONS(10051), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [194962] = 4, + anon_sym_SEMI, + [195152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6097), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194977] = 5, + [195167] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9202), 1, - anon_sym_EQ, STATE(6098), 1, sym_comment, - ACTIONS(10027), 2, + ACTIONS(10038), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [194994] = 4, + anon_sym_SEMI, + [195182] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, + STATE(5644), 1, + sym_type_parameter, STATE(6099), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195009] = 6, + [195201] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10029), 1, - anon_sym_COMMA, - ACTIONS(10031), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, STATE(6100), 1, sym_comment, - [195028] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195216] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10033), 1, - anon_sym_COMMA, - ACTIONS(10035), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, + ACTIONS(10079), 1, + sym_unescaped_double_jsx_string_fragment, STATE(6101), 1, sym_comment, - [195047] = 4, + ACTIONS(10077), 2, + sym_html_character_reference, + anon_sym_DQUOTE, + [195233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6102), 1, sym_comment, - ACTIONS(9828), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195062] = 4, + [195248] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6103), 1, sym_comment, - ACTIONS(9757), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195077] = 4, + ACTIONS(10081), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [195263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6104), 1, - sym_comment, - ACTIONS(9742), 3, - sym__automatic_semicolon, + ACTIONS(10083), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195092] = 6, + ACTIONS(10086), 1, + anon_sym_RBRACK, + STATE(6104), 2, + sym_comment, + aux_sym_tuple_type_repeat1, + [195280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10037), 1, - anon_sym_LPAREN, - ACTIONS(10039), 1, - anon_sym_await, - STATE(79), 1, - sym__for_header, STATE(6105), 1, sym_comment, - [195111] = 4, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6106), 1, sym_comment, - ACTIONS(9763), 3, + ACTIONS(10088), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [195126] = 4, + [195310] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6107), 1, - sym_comment, - ACTIONS(9763), 3, - sym__automatic_semicolon, + ACTIONS(10090), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195141] = 4, + ACTIONS(10093), 1, + anon_sym_RBRACE, + STATE(6107), 2, + sym_comment, + aux_sym_export_clause_repeat1, + [195327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6108), 1, sym_comment, - ACTIONS(10041), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195156] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195342] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10043), 1, - sym_identifier, - ACTIONS(10045), 1, - anon_sym_SEMI, - ACTIONS(10047), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6109), 1, sym_comment, - [195175] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195357] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10049), 1, - sym_identifier, - ACTIONS(10051), 1, - anon_sym_SEMI, - ACTIONS(10053), 1, - sym__automatic_semicolon, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6110), 1, sym_comment, - [195194] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10055), 1, + ACTIONS(10095), 1, anon_sym_LPAREN, - ACTIONS(10057), 1, + ACTIONS(10097), 1, anon_sym_await, - STATE(86), 1, + STATE(96), 1, sym__for_header, STATE(6111), 1, sym_comment, - [195213] = 5, + [195391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10059), 1, - anon_sym_as, STATE(6112), 1, sym_comment, - ACTIONS(9856), 2, + ACTIONS(10038), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [195230] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [195406] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7179), 1, - anon_sym_type, - ACTIONS(10061), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6113), 1, sym_comment, - STATE(6478), 1, - sym__import_identifier, - [195249] = 4, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195421] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6114), 1, sym_comment, - ACTIONS(10063), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195264] = 6, + [195436] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7179), 1, - anon_sym_type, - ACTIONS(10061), 1, + ACTIONS(10099), 1, sym_identifier, + ACTIONS(10101), 1, + anon_sym_SEMI, + ACTIONS(10103), 1, + sym__automatic_semicolon, STATE(6115), 1, sym_comment, - STATE(6474), 1, - sym__import_identifier, - [195283] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10065), 1, - anon_sym_COMMA, - ACTIONS(10067), 1, - anon_sym_RBRACE, - STATE(6116), 1, - sym_comment, - STATE(6254), 1, - aux_sym_named_imports_repeat1, - [195302] = 6, + [195455] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, + ACTIONS(10105), 1, sym_identifier, - STATE(6117), 1, + ACTIONS(10107), 1, + anon_sym_SEMI, + ACTIONS(10109), 1, + sym__automatic_semicolon, + STATE(6116), 1, sym_comment, - STATE(6618), 1, - sym_type_parameter, - [195321] = 5, + [195474] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7967), 1, - anon_sym_DOT, - STATE(6118), 1, + STATE(6117), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(10038), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [195338] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_RPAREN, - STATE(6119), 1, - sym_comment, - STATE(7128), 1, - sym_type_annotation, - [195357] = 6, + [195489] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10071), 1, + ACTIONS(9609), 1, + anon_sym_LBRACE, + ACTIONS(10111), 1, sym_identifier, - ACTIONS(10073), 1, - anon_sym_SEMI, - ACTIONS(10075), 1, - sym__automatic_semicolon, - STATE(6120), 1, + STATE(5504), 1, + sym_export_clause, + STATE(6118), 1, sym_comment, - [195376] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195508] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10077), 1, - sym_identifier, - ACTIONS(10079), 1, - anon_sym_SEMI, - ACTIONS(10081), 1, - sym__automatic_semicolon, - STATE(6121), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + ACTIONS(9601), 1, + anon_sym_as, + STATE(6119), 1, sym_comment, - [195395] = 4, + STATE(6444), 1, + sym__from_clause, + [195527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6122), 1, + STATE(6120), 1, sym_comment, - ACTIONS(10083), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195410] = 4, + [195542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6123), 1, + STATE(6121), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195425] = 4, + [195557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6124), 1, + STATE(6122), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195440] = 4, + [195572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6125), 1, + STATE(6123), 1, sym_comment, - ACTIONS(10063), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195455] = 4, + [195587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6126), 1, + STATE(6124), 1, sym_comment, - ACTIONS(10085), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195470] = 4, + [195602] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6127), 1, + STATE(6125), 1, sym_comment, - ACTIONS(10087), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195485] = 6, + [195617] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10089), 1, + ACTIONS(7187), 1, + anon_sym_type, + ACTIONS(9942), 1, sym_identifier, - STATE(1907), 1, - sym_decorator_member_expression, - STATE(1978), 1, - sym_decorator_call_expression, - STATE(6128), 1, + STATE(6126), 1, + sym_comment, + STATE(6386), 1, + sym__import_identifier, + [195636] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7187), 1, + anon_sym_type, + ACTIONS(9942), 1, + sym_identifier, + STATE(6127), 1, + sym_comment, + STATE(6385), 1, + sym__import_identifier, + [195655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10113), 1, + anon_sym_COMMA, + ACTIONS(10116), 1, + anon_sym_RBRACE, + STATE(6128), 2, sym_comment, - [195504] = 4, + aux_sym_named_imports_repeat1, + [195672] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7071), 1, + anon_sym_DQUOTE, + ACTIONS(7073), 1, + anon_sym_SQUOTE, STATE(6129), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195519] = 4, + STATE(7422), 1, + sym_string, + [195691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6130), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195534] = 4, + [195706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6131), 1, sym_comment, - ACTIONS(9945), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195549] = 4, + [195721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6132), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195564] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195736] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10091), 1, - sym_identifier, - ACTIONS(10093), 1, - anon_sym_LBRACK, - ACTIONS(10095), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6133), 1, sym_comment, - [195583] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6134), 1, sym_comment, - ACTIONS(10097), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195598] = 4, + ACTIONS(8033), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [195766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6135), 1, sym_comment, - ACTIONS(9475), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195613] = 4, + [195781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6136), 1, sym_comment, - ACTIONS(9943), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195628] = 4, + [195796] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6137), 1, sym_comment, - ACTIONS(10099), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [195643] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195811] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6138), 1, sym_comment, - ACTIONS(10101), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195658] = 4, + [195826] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6139), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195673] = 4, + [195841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6140), 1, sym_comment, - ACTIONS(8194), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [195688] = 5, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9099), 1, - anon_sym_LBRACE, - ACTIONS(10103), 1, - anon_sym_COMMA, - STATE(6141), 2, + STATE(6141), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [195705] = 5, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10106), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_RPAREN, - STATE(6142), 2, + STATE(6142), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [195722] = 6, + ACTIONS(10051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(10111), 1, - anon_sym_RBRACE, STATE(6143), 1, sym_comment, - STATE(6195), 1, - aux_sym_object_pattern_repeat1, - [195741] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195901] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9832), 1, - anon_sym_require, - ACTIONS(10113), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(10118), 1, + anon_sym_RPAREN, STATE(6144), 1, sym_comment, - STATE(6308), 1, - sym_nested_identifier, - [195760] = 6, + STATE(7442), 1, + sym_type_annotation, + [195920] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_RBRACE, STATE(6145), 1, sym_comment, - STATE(6199), 1, - aux_sym_object_repeat1, - [195779] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_RBRACE, - STATE(5895), 1, - aux_sym_object_repeat1, STATE(6146), 1, sym_comment, - [195798] = 6, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(10111), 1, - anon_sym_RBRACE, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, STATE(6147), 1, sym_comment, - [195817] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195965] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6148), 1, sym_comment, - ACTIONS(9757), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195832] = 4, + [195980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6149), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195847] = 4, + [195995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6150), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195862] = 6, + [196010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10117), 1, - anon_sym_COMMA, - ACTIONS(10119), 1, - anon_sym_RPAREN, STATE(6151), 1, sym_comment, - STATE(6204), 1, - aux_sym_formal_parameters_repeat1, - [195881] = 4, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10120), 1, + anon_sym_COMMA, + ACTIONS(10122), 1, + anon_sym_GT, STATE(6152), 1, sym_comment, - ACTIONS(10121), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195896] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [196044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(9408), 1, - anon_sym_RBRACK, STATE(6153), 1, sym_comment, - STATE(6208), 1, - aux_sym_array_pattern_repeat1, - [195915] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196059] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7937), 1, - anon_sym_const, - ACTIONS(9216), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6154), 1, sym_comment, - STATE(6171), 1, - sym_type_parameter, - [195934] = 6, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RBRACK, STATE(6155), 1, sym_comment, - STATE(6206), 1, - aux_sym_array_repeat1, - [195953] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196089] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(10124), 1, anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RBRACK, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(10126), 1, + anon_sym_GT, STATE(6156), 1, sym_comment, - [195972] = 5, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [196108] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10123), 1, - anon_sym_LBRACE, STATE(6157), 1, sym_comment, - ACTIONS(9097), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [195989] = 6, + ACTIONS(10128), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9204), 1, + ACTIONS(10130), 1, anon_sym_COMMA, - ACTIONS(9408), 1, - anon_sym_RBRACK, - STATE(5974), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(10132), 1, + anon_sym_GT, STATE(6158), 1, sym_comment, - [196008] = 5, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [196142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5150), 1, - anon_sym_LBRACE, STATE(6159), 1, sym_comment, - ACTIONS(5152), 2, + ACTIONS(10051), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196025] = 6, + anon_sym_SEMI, + [196157] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10125), 1, - anon_sym_COMMA, - ACTIONS(10127), 1, - anon_sym_RBRACK, + ACTIONS(10134), 1, + anon_sym_LPAREN, + ACTIONS(10136), 1, + anon_sym_await, + STATE(77), 1, + sym__for_header, STATE(6160), 1, sym_comment, - STATE(6161), 1, - aux_sym_tuple_type_repeat1, - [196044] = 6, + [196176] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10129), 1, - anon_sym_COMMA, - ACTIONS(10131), 1, - anon_sym_RBRACK, - STATE(5819), 1, - aux_sym_tuple_type_repeat1, STATE(6161), 1, sym_comment, - [196063] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10128), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196191] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9557), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, - sym_identifier, - STATE(5529), 1, - sym_export_clause, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6162), 1, sym_comment, - [196082] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196206] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - ACTIONS(9640), 1, - anon_sym_as, + ACTIONS(10138), 1, + sym_identifier, + ACTIONS(10140), 1, + anon_sym_SEMI, + ACTIONS(10142), 1, + sym__automatic_semicolon, STATE(6163), 1, sym_comment, - STATE(6605), 1, - sym__from_clause, - [196101] = 4, + [196225] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6164), 1, sym_comment, - ACTIONS(10135), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [196116] = 6, + ACTIONS(10053), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196240] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7069), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_PIPE, - ACTIONS(7073), 1, - anon_sym_extends, + ACTIONS(10144), 1, + sym_identifier, + ACTIONS(10146), 1, + anon_sym_SEMI, + ACTIONS(10148), 1, + sym__automatic_semicolon, STATE(6165), 1, sym_comment, - [196135] = 6, + [196259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8683), 1, - anon_sym_COMMA, - ACTIONS(10137), 1, - anon_sym_LBRACE, - STATE(6141), 1, - aux_sym_implements_clause_repeat1, STATE(6166), 1, sym_comment, - [196154] = 5, + ACTIONS(10128), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196274] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5066), 1, - anon_sym_LBRACE, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(10150), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6167), 1, sym_comment, - ACTIONS(5068), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196171] = 4, + [196293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6168), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10053), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196186] = 4, + [196308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6169), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(10152), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196201] = 4, + [196323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6170), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196216] = 6, + [196338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10139), 1, - anon_sym_COMMA, - ACTIONS(10141), 1, - anon_sym_GT, STATE(6171), 1, sym_comment, - STATE(6232), 1, - aux_sym_type_parameters_repeat1, - [196235] = 4, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196353] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10154), 1, + anon_sym_COMMA, + ACTIONS(10156), 1, + anon_sym_RBRACE, + STATE(6044), 1, + aux_sym_enum_body_repeat1, STATE(6172), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196250] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196372] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10143), 1, - sym_identifier, - ACTIONS(10145), 1, - anon_sym_LBRACK, - ACTIONS(10147), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6173), 1, sym_comment, - [196269] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196387] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(210), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8053), 1, + anon_sym_LBRACE_PIPE, STATE(6174), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196284] = 6, + STATE(6547), 1, + sym_object_type, + [196406] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10149), 1, + ACTIONS(10158), 1, sym_identifier, - ACTIONS(10151), 1, - anon_sym_LBRACK, - ACTIONS(10153), 1, - sym_private_property_identifier, + STATE(1895), 1, + sym_decorator_member_expression, + STATE(1968), 1, + sym_decorator_call_expression, STATE(6175), 1, sym_comment, - [196303] = 4, + [196425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6176), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10152), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196318] = 5, + [196440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10155), 1, - anon_sym_COMMA, - ACTIONS(10158), 1, - anon_sym_GT, - STATE(6177), 2, + STATE(6177), 1, sym_comment, - aux_sym_type_parameters_repeat1, - [196335] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10160), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196455] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10160), 1, - sym_identifier, - ACTIONS(10162), 1, - anon_sym_LBRACK, - ACTIONS(10164), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6178), 1, sym_comment, - [196354] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6179), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196369] = 4, + [196485] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6180), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10162), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196384] = 4, + [196500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6181), 1, sym_comment, - ACTIONS(9945), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196399] = 4, + [196515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6182), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(10164), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196414] = 4, + [196530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6183), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(10162), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196429] = 6, + [196545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8163), 1, - anon_sym_LBRACE, - ACTIONS(8165), 1, - anon_sym_LBRACE_PIPE, - STATE(1449), 1, - sym_object_type, STATE(6184), 1, sym_comment, - [196448] = 4, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6185), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196463] = 4, + [196575] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6186), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196478] = 4, + [196590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6187), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196493] = 6, + [196605] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10166), 1, - anon_sym_COMMA, - ACTIONS(10168), 1, - anon_sym_RBRACE, - STATE(6100), 1, - aux_sym_enum_body_repeat1, STATE(6188), 1, sym_comment, - [196512] = 6, + ACTIONS(10166), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(10170), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6189), 1, sym_comment, - [196531] = 4, + ACTIONS(10168), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [196635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6190), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10036), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196546] = 4, + [196650] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6191), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196561] = 6, + [196665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RBRACE, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, STATE(6192), 1, sym_comment, - [196580] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10174), 1, - anon_sym_COMMA, - ACTIONS(10176), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6193), 1, sym_comment, - [196599] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10178), 1, - anon_sym_LBRACE, - ACTIONS(10180), 1, - anon_sym_LPAREN, - STATE(940), 1, - sym_statement_block, + ACTIONS(6050), 1, + anon_sym_extends, + ACTIONS(10170), 1, + anon_sym_AMP, + ACTIONS(10172), 1, + anon_sym_PIPE, STATE(6194), 1, sym_comment, - [196618] = 6, + [196714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8741), 1, - anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_RBRACE, - STATE(5897), 1, - aux_sym_object_pattern_repeat1, STATE(6195), 1, sym_comment, - [196637] = 6, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10184), 1, - anon_sym_COMMA, - ACTIONS(10186), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, STATE(6196), 1, sym_comment, - [196656] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10188), 1, - anon_sym_COMMA, - ACTIONS(10190), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6197), 1, sym_comment, - [196675] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196759] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_COMMA, - ACTIONS(10194), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6198), 1, sym_comment, - [196694] = 6, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(10196), 1, - anon_sym_RBRACE, - STATE(5895), 1, - aux_sym_object_repeat1, STATE(6199), 1, sym_comment, - [196713] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10174), 1, + anon_sym_LBRACE, + ACTIONS(10176), 1, + anon_sym_LPAREN, + STATE(927), 1, + sym_statement_block, STATE(6200), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196728] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196808] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10198), 1, - sym_identifier, - ACTIONS(10200), 1, - anon_sym_LBRACK, - ACTIONS(10202), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6201), 1, sym_comment, - [196747] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196823] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10178), 1, + anon_sym_COMMA, + ACTIONS(10180), 1, + anon_sym_RBRACK, + STATE(6070), 1, + aux_sym_tuple_type_repeat1, STATE(6202), 1, sym_comment, - ACTIONS(10204), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196762] = 4, + [196842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(10182), 1, + anon_sym_RBRACE, STATE(6203), 1, sym_comment, - ACTIONS(9933), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196777] = 6, + STATE(6317), 1, + aux_sym_object_pattern_repeat1, + [196861] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10206), 1, + ACTIONS(8103), 1, anon_sym_COMMA, - ACTIONS(10208), 1, - anon_sym_RPAREN, - STATE(6142), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(10184), 1, + anon_sym_RBRACE, STATE(6204), 1, sym_comment, - [196796] = 6, + STATE(6318), 1, + aux_sym_object_repeat1, + [196880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - ACTIONS(10210), 1, - anon_sym_LPAREN, STATE(6205), 1, sym_comment, - STATE(6224), 1, - sym_statement_block, - [196815] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(10212), 1, - anon_sym_RBRACK, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6206), 1, sym_comment, - [196834] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196910] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10214), 1, + ACTIONS(8103), 1, anon_sym_COMMA, - ACTIONS(10216), 1, + ACTIONS(10184), 1, anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, + STATE(5725), 1, + aux_sym_object_repeat1, STATE(6207), 1, sym_comment, - [196853] = 6, + [196929] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9204), 1, - anon_sym_COMMA, - ACTIONS(10218), 1, - anon_sym_RBRACK, - STATE(5974), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(10186), 1, + sym_identifier, + ACTIONS(10188), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + sym_private_property_identifier, STATE(6208), 1, sym_comment, - [196872] = 6, + [196948] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_LBRACE_PIPE, - STATE(1235), 1, - sym_object_type, + ACTIONS(7947), 1, + anon_sym_DOT, STATE(6209), 1, sym_comment, - [196891] = 4, + ACTIONS(10192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [196965] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10194), 1, + sym_identifier, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10198), 1, + sym_private_property_identifier, STATE(6210), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196906] = 4, + [196984] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(10182), 1, + anon_sym_RBRACE, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, STATE(6211), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196921] = 4, + [197003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6212), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196936] = 6, + [197018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5927), 1, - anon_sym_RPAREN, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(6213), 1, sym_comment, - STATE(6260), 1, - aux_sym_array_repeat1, - [196955] = 6, + ACTIONS(10192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [197035] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5927), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + sym_private_property_identifier, STATE(6214), 1, sym_comment, - [196974] = 4, + [197054] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(8029), 1, + anon_sym_LBRACE_PIPE, + STATE(1440), 1, + sym_object_type, STATE(6215), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196989] = 4, + [197073] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10206), 1, + sym_identifier, + ACTIONS(10208), 1, + anon_sym_LBRACK, + ACTIONS(10210), 1, + sym_private_property_identifier, STATE(6216), 1, sym_comment, - ACTIONS(9945), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197004] = 4, + [197092] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6217), 1, sym_comment, - ACTIONS(10220), 3, + ACTIONS(10053), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [197019] = 6, + [197107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10222), 1, - anon_sym_COMMA, - ACTIONS(10224), 1, - anon_sym_RBRACK, - STATE(5819), 1, - aux_sym_tuple_type_repeat1, STATE(6218), 1, sym_comment, - [197038] = 5, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197122] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6472), 1, - sym__automatic_semicolon, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5872), 1, + anon_sym_RPAREN, STATE(6219), 1, sym_comment, - ACTIONS(2275), 2, - anon_sym_else, - anon_sym_while, - [197055] = 4, + STATE(6266), 1, + aux_sym_array_repeat1, + [197141] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5872), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6220), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197070] = 5, + [197160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10226), 1, - anon_sym_COMMA, - ACTIONS(10229), 1, - anon_sym_RBRACE, - STATE(6221), 2, + STATE(6221), 1, sym_comment, - aux_sym_export_clause_repeat1, - [197087] = 5, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197175] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6437), 1, - sym__automatic_semicolon, STATE(6222), 1, sym_comment, - ACTIONS(2329), 2, - anon_sym_else, - anon_sym_while, - [197104] = 5, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6407), 1, - sym__automatic_semicolon, STATE(6223), 1, sym_comment, - ACTIONS(2325), 2, - anon_sym_else, - anon_sym_while, - [197121] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197205] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10212), 1, + anon_sym_COMMA, + ACTIONS(10214), 1, + anon_sym_RBRACK, + STATE(6104), 1, + aux_sym_tuple_type_repeat1, STATE(6224), 1, sym_comment, - ACTIONS(3248), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [197136] = 4, + [197224] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10216), 1, + anon_sym_COMMA, + ACTIONS(10218), 1, + anon_sym_RPAREN, STATE(6225), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197151] = 4, + STATE(6324), 1, + aux_sym_formal_parameters_repeat1, + [197243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6226), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10053), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197166] = 6, + [197258] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10231), 1, + ACTIONS(10220), 1, anon_sym_COMMA, - ACTIONS(10233), 1, + ACTIONS(10222), 1, anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6227), 1, sym_comment, - [197185] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [197277] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10224), 1, + anon_sym_COMMA, + ACTIONS(10226), 1, + anon_sym_GT, STATE(6228), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197200] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [197296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10235), 1, - anon_sym_COMMA, - ACTIONS(10237), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6229), 1, sym_comment, - [197219] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10239), 1, + ACTIONS(10038), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10241), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, - STATE(6230), 1, - sym_comment, - [197238] = 4, + anon_sym_SEMI, + [197311] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6231), 1, + STATE(6230), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10053), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197253] = 6, + [197326] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10243), 1, + ACTIONS(10228), 1, anon_sym_COMMA, - ACTIONS(10245), 1, + ACTIONS(10230), 1, anon_sym_GT, - STATE(6177), 1, - aux_sym_type_parameters_repeat1, - STATE(6232), 1, + STATE(6231), 1, sym_comment, - [197272] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [197345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(10247), 1, + ACTIONS(10232), 1, anon_sym_RPAREN, - STATE(5626), 1, + STATE(5471), 1, aux_sym_array_repeat1, + STATE(6232), 1, + sym_comment, + [197364] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6233), 1, sym_comment, - [197291] = 4, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6234), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(9841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197306] = 5, + [197394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7967), 1, - anon_sym_DOT, STATE(6235), 1, sym_comment, - ACTIONS(10249), 2, + ACTIONS(9561), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197323] = 5, + [197409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, STATE(6236), 1, sym_comment, - ACTIONS(10249), 2, + ACTIONS(10026), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197340] = 5, + [197424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6405), 1, - sym__automatic_semicolon, STATE(6237), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_else, - anon_sym_while, - [197357] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6238), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197372] = 6, + [197454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(5912), 1, + ACTIONS(5860), 1, anon_sym_RPAREN, - STATE(5626), 1, + STATE(5471), 1, aux_sym_array_repeat1, STATE(6239), 1, sym_comment, - [197391] = 6, + [197473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(5912), 1, + ACTIONS(5860), 1, anon_sym_RPAREN, - STATE(6233), 1, + STATE(6232), 1, aux_sym_array_repeat1, STATE(6240), 1, sym_comment, - [197410] = 4, + [197492] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(6241), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10234), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [197425] = 6, + [197509] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8001), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(7947), 1, + anon_sym_DOT, STATE(6242), 1, sym_comment, - STATE(6576), 1, - sym_object_type, - [197444] = 4, + ACTIONS(10234), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [197526] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6243), 1, - sym_comment, - ACTIONS(9941), 3, - sym__automatic_semicolon, + ACTIONS(8887), 1, + anon_sym_LBRACE, + ACTIONS(10236), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197459] = 6, + STATE(6243), 2, + sym_comment, + aux_sym_implements_clause_repeat1, + [197543] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5896), 1, - anon_sym_RPAREN, STATE(6244), 1, sym_comment, - STATE(6324), 1, - aux_sym_array_repeat1, - [197478] = 6, + ACTIONS(10239), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197558] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10251), 1, - anon_sym_COMMA, - ACTIONS(10253), 1, - anon_sym_RBRACK, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(10241), 1, + anon_sym_GT, STATE(6245), 1, sym_comment, - STATE(6295), 1, - aux_sym_tuple_type_repeat1, - [197497] = 6, + [197577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5896), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6246), 1, sym_comment, - [197516] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197592] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4159), 1, - anon_sym_LPAREN, - ACTIONS(10255), 1, - anon_sym_DOT, - STATE(4331), 1, - sym_arguments, STATE(6247), 1, sym_comment, - [197535] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10036), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197607] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7179), 1, - anon_sym_type, - ACTIONS(10061), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9364), 1, + anon_sym_RBRACK, STATE(6248), 1, sym_comment, - STATE(6661), 1, - sym__import_identifier, - [197554] = 6, + STATE(6329), 1, + aux_sym_array_pattern_repeat1, + [197626] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7537), 1, - anon_sym_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7541), 1, - anon_sym_extends, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5943), 1, + anon_sym_RBRACK, STATE(6249), 1, sym_comment, - [197573] = 4, + STATE(6328), 1, + aux_sym_array_repeat1, + [197645] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5943), 1, + anon_sym_RBRACK, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6250), 1, sym_comment, - ACTIONS(9933), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197588] = 4, + [197664] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10243), 1, + anon_sym_COMMA, + ACTIONS(10245), 1, + anon_sym_RBRACK, STATE(6251), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197603] = 4, + STATE(6301), 1, + aux_sym_tuple_type_repeat1, + [197683] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(9364), 1, + anon_sym_RBRACK, + STATE(5805), 1, + aux_sym_array_pattern_repeat1, STATE(6252), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197618] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197702] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7179), 1, - anon_sym_type, - ACTIONS(10061), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6253), 1, sym_comment, - STATE(6859), 1, - sym__import_identifier, - [197637] = 5, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10257), 1, - anon_sym_COMMA, - ACTIONS(10260), 1, - anon_sym_RBRACE, - STATE(6254), 2, + STATE(6254), 1, sym_comment, - aux_sym_named_imports_repeat1, - [197654] = 6, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197732] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - anon_sym_SQUOTE, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(7553), 1, + anon_sym_extends, STATE(6255), 1, sym_comment, - STATE(7052), 1, - sym_string, - [197673] = 4, + [197751] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(7933), 1, + anon_sym_const, + ACTIONS(9212), 1, + sym_identifier, STATE(6256), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197688] = 6, + STATE(6739), 1, + sym_type_parameter, + [197770] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8043), 1, - anon_sym_LBRACE, - ACTIONS(8045), 1, - anon_sym_LBRACE_PIPE, - STATE(1246), 1, - sym_object_type, STATE(6257), 1, sym_comment, - [197707] = 4, + ACTIONS(10247), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197785] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6258), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10026), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197722] = 6, + [197800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10262), 1, - anon_sym_COMMA, - ACTIONS(10264), 1, - anon_sym_RBRACE, STATE(6259), 1, sym_comment, - STATE(6304), 1, - aux_sym_enum_body_repeat1, - [197741] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197815] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(10266), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6260), 1, sym_comment, - [197760] = 6, + ACTIONS(10026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8025), 1, - anon_sym_COMMA, - ACTIONS(10268), 1, - anon_sym_RBRACE, - STATE(5895), 1, - aux_sym_object_repeat1, STATE(6261), 1, sym_comment, - [197779] = 6, + ACTIONS(10249), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197845] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10270), 1, - anon_sym_COMMA, - ACTIONS(10272), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6262), 1, sym_comment, - [197798] = 6, + ACTIONS(10251), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197860] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10274), 1, - anon_sym_COMMA, - ACTIONS(10276), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(8029), 1, + anon_sym_LBRACE_PIPE, + STATE(1273), 1, + sym_object_type, STATE(6263), 1, sym_comment, - [197817] = 6, + [197879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10278), 1, - anon_sym_COMMA, - ACTIONS(10280), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6264), 1, sym_comment, - [197836] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197894] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10253), 1, + anon_sym_COMMA, + ACTIONS(10255), 1, + anon_sym_RBRACE, STATE(6265), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197851] = 6, + STATE(6310), 1, + aux_sym_enum_body_repeat1, + [197913] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(10284), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(10257), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6266), 1, sym_comment, - [197870] = 6, + [197932] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10286), 1, - anon_sym_COMMA, - ACTIONS(10288), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, STATE(6267), 1, sym_comment, - [197889] = 4, + ACTIONS(10259), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197947] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10261), 1, + anon_sym_COMMA, + ACTIONS(10263), 1, + anon_sym_GT, STATE(6268), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197904] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [197966] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6269), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10265), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197919] = 4, + [197981] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10267), 1, + anon_sym_COMMA, + ACTIONS(10269), 1, + anon_sym_GT, STATE(6270), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197934] = 4, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [198000] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6271), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197949] = 4, + [198015] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10271), 1, + anon_sym_COMMA, + ACTIONS(10273), 1, + anon_sym_GT, STATE(6272), 1, sym_comment, - ACTIONS(9939), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197964] = 6, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, + [198034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10290), 1, - anon_sym_COMMA, - ACTIONS(10292), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6273), 1, sym_comment, - [197983] = 6, + ACTIONS(10275), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198049] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10294), 1, + ACTIONS(10277), 1, anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(10279), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6274), 1, sym_comment, - [198002] = 4, + [198068] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10281), 1, + anon_sym_COMMA, + ACTIONS(10283), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6275), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198017] = 6, + [198087] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8828), 1, - anon_sym_DOT, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(10298), 1, - anon_sym_GT, STATE(6276), 1, sym_comment, - [198036] = 6, + ACTIONS(10285), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198102] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10300), 1, + ACTIONS(10287), 1, anon_sym_COMMA, - ACTIONS(10302), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(10289), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6277), 1, sym_comment, - [198055] = 6, + [198121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(10304), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, STATE(6278), 1, sym_comment, - [198074] = 4, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198136] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6279), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(10259), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198089] = 6, + [198151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10306), 1, - anon_sym_COMMA, - ACTIONS(10308), 1, - anon_sym_RBRACE, - STATE(6263), 1, - aux_sym_enum_body_repeat1, STATE(6280), 1, sym_comment, - [198108] = 4, + ACTIONS(10038), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198166] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6281), 1, sym_comment, - ACTIONS(10310), 3, - anon_sym_LBRACE, + ACTIONS(9830), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [198123] = 6, + anon_sym_SEMI, + [198181] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8059), 1, - anon_sym_LBRACE, - ACTIONS(8061), 1, - anon_sym_LBRACE_PIPE, - STATE(1050), 1, - sym_object_type, + ACTIONS(10291), 1, + anon_sym_COMMA, + ACTIONS(10293), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6282), 1, sym_comment, - [198142] = 4, + [198200] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6283), 1, sym_comment, - ACTIONS(10006), 3, + ACTIONS(10295), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198157] = 4, + [198215] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6284), 1, sym_comment, - ACTIONS(9939), 3, + ACTIONS(10251), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198172] = 5, + [198230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, STATE(6285), 1, sym_comment, - ACTIONS(10312), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [198189] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7967), 1, - anon_sym_DOT, - STATE(6286), 1, - sym_comment, - ACTIONS(10312), 2, + ACTIONS(9830), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [198206] = 6, + [198245] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10314), 1, + ACTIONS(10297), 1, sym_identifier, - ACTIONS(10316), 1, + ACTIONS(10299), 1, anon_sym_LBRACK, - ACTIONS(10318), 1, + ACTIONS(10301), 1, sym_private_property_identifier, - STATE(6287), 1, + STATE(6286), 1, + sym_comment, + [198264] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8906), 1, + anon_sym_GT, + ACTIONS(10303), 1, + anon_sym_COMMA, + STATE(6287), 2, sym_comment, - [198225] = 4, + aux_sym_type_arguments_repeat1, + [198281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6288), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198240] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198296] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10320), 1, - sym_identifier, - ACTIONS(10322), 1, - anon_sym_LBRACK, - ACTIONS(10324), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(10308), 1, + anon_sym_DOT, + STATE(4339), 1, + sym_arguments, STATE(6289), 1, sym_comment, - [198259] = 4, + [198315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6290), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(10247), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198274] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198330] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10326), 1, - sym_identifier, - ACTIONS(10328), 1, - anon_sym_LBRACK, - ACTIONS(10330), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6291), 1, sym_comment, - [198293] = 4, + [198349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10310), 1, + anon_sym_COMMA, + ACTIONS(10312), 1, + anon_sym_GT, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, STATE(6292), 1, sym_comment, - ACTIONS(8210), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [198308] = 6, + [198368] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10332), 1, + ACTIONS(10314), 1, sym_identifier, - ACTIONS(10334), 1, + ACTIONS(10316), 1, anon_sym_LBRACK, - ACTIONS(10336), 1, + ACTIONS(10318), 1, sym_private_property_identifier, STATE(6293), 1, sym_comment, - [198327] = 4, + [198387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10320), 1, + anon_sym_COMMA, + ACTIONS(10322), 1, + anon_sym_GT, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, STATE(6294), 1, sym_comment, - ACTIONS(10338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198342] = 6, + [198406] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10340), 1, - anon_sym_COMMA, - ACTIONS(10342), 1, - anon_sym_RBRACK, - STATE(5819), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(10324), 1, + sym_identifier, + ACTIONS(10326), 1, + anon_sym_LBRACK, + ACTIONS(10328), 1, + sym_private_property_identifier, STATE(6295), 1, sym_comment, - [198361] = 4, + [198425] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10330), 1, + anon_sym_COMMA, + ACTIONS(10332), 1, + anon_sym_GT, + STATE(6287), 1, + aux_sym_type_arguments_repeat1, STATE(6296), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198376] = 4, + [198444] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10334), 1, + sym_identifier, + ACTIONS(10336), 1, + anon_sym_LBRACK, + ACTIONS(10338), 1, + sym_private_property_identifier, STATE(6297), 1, sym_comment, - ACTIONS(9933), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198391] = 4, + [198463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(10340), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6298), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198406] = 6, + [198482] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5945), 1, - anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, + ACTIONS(10342), 1, + sym_identifier, + ACTIONS(10344), 1, + anon_sym_LBRACK, + ACTIONS(10346), 1, + sym_private_property_identifier, STATE(6299), 1, sym_comment, - [198425] = 6, + [198501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5945), 1, - anon_sym_RPAREN, - STATE(6278), 1, - aux_sym_array_repeat1, STATE(6300), 1, sym_comment, - [198444] = 6, + ACTIONS(10348), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8059), 1, - anon_sym_LBRACE, - ACTIONS(8061), 1, - anon_sym_LBRACE_PIPE, - STATE(993), 1, - sym_object_type, + ACTIONS(10350), 1, + anon_sym_COMMA, + ACTIONS(10352), 1, + anon_sym_RBRACK, + STATE(6104), 1, + aux_sym_tuple_type_repeat1, STATE(6301), 1, sym_comment, - [198463] = 6, + [198535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10344), 1, + ACTIONS(10354), 1, anon_sym_COMMA, - ACTIONS(10346), 1, + ACTIONS(10356), 1, anon_sym_RBRACE, - STATE(5863), 1, + STATE(6277), 1, aux_sym_enum_body_repeat1, STATE(6302), 1, sym_comment, - [198482] = 4, + [198554] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8041), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, + anon_sym_LBRACE_PIPE, + STATE(1073), 1, + sym_object_type, STATE(6303), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198497] = 6, + [198573] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10348), 1, + ACTIONS(5795), 1, anon_sym_COMMA, - ACTIONS(10350), 1, - anon_sym_RBRACE, - STATE(5863), 1, - aux_sym_enum_body_repeat1, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(6167), 1, + aux_sym_array_repeat1, STATE(6304), 1, sym_comment, - [198516] = 5, + [198592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7967), 1, + ACTIONS(7947), 1, anon_sym_DOT, STATE(6305), 1, sym_comment, - ACTIONS(10352), 2, + ACTIONS(10358), 2, sym__automatic_semicolon, anon_sym_SEMI, - [198533] = 4, + [198609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, STATE(6306), 1, sym_comment, - ACTIONS(9933), 3, + ACTIONS(10358), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198548] = 4, + [198626] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6307), 1, sym_comment, - ACTIONS(10354), 3, + ACTIONS(10275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198563] = 5, + [198641] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7969), 1, - anon_sym_DOT, + ACTIONS(10360), 1, + anon_sym_COMMA, + ACTIONS(10362), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6308), 1, sym_comment, - ACTIONS(10352), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [198580] = 6, + [198660] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10356), 1, - anon_sym_COMMA, - ACTIONS(10358), 1, - anon_sym_RBRACK, - STATE(6218), 1, - aux_sym_tuple_type_repeat1, STATE(6309), 1, sym_comment, - [198599] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198675] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - ACTIONS(10360), 1, - anon_sym_RPAREN, + ACTIONS(10364), 1, + anon_sym_COMMA, + ACTIONS(10366), 1, + anon_sym_RBRACE, + STATE(6049), 1, + aux_sym_enum_body_repeat1, STATE(6310), 1, sym_comment, - STATE(7087), 1, - sym_type_annotation, - [198618] = 6, + [198694] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(210), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_extends, - ACTIONS(10362), 1, - anon_sym_AMP, - ACTIONS(10364), 1, - anon_sym_PIPE, + ACTIONS(8053), 1, + anon_sym_LBRACE_PIPE, STATE(6311), 1, sym_comment, - [198637] = 4, + STATE(6684), 1, + sym_object_type, + [198713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6312), 1, sym_comment, - ACTIONS(10366), 3, + ACTIONS(10275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198652] = 4, + [198728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6313), 1, sym_comment, - ACTIONS(10204), 3, + ACTIONS(9561), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198667] = 4, + [198743] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -367767,7435 +367857,7460 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(10368), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [198682] = 6, + [198758] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10370), 1, + ACTIONS(8103), 1, anon_sym_COMMA, - ACTIONS(10372), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(10370), 1, + anon_sym_RBRACE, + STATE(5725), 1, + aux_sym_object_repeat1, STATE(6315), 1, sym_comment, - [198701] = 4, + [198777] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(10372), 1, + anon_sym_RBRACE, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, STATE(6316), 1, sym_comment, - ACTIONS(9945), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198716] = 4, + [198796] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + ACTIONS(10374), 1, + anon_sym_RBRACE, + STATE(5727), 1, + aux_sym_object_pattern_repeat1, STATE(6317), 1, sym_comment, - ACTIONS(9941), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198731] = 4, + [198815] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8103), 1, + anon_sym_COMMA, + ACTIONS(10376), 1, + anon_sym_RBRACE, + STATE(5725), 1, + aux_sym_object_repeat1, STATE(6318), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198746] = 4, + [198834] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5805), 1, + anon_sym_RPAREN, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6319), 1, sym_comment, - ACTIONS(9864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198761] = 4, + [198853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6320), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(10247), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198776] = 4, + [198868] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(5805), 1, + anon_sym_RPAREN, + STATE(6298), 1, + aux_sym_array_repeat1, STATE(6321), 1, sym_comment, - ACTIONS(10374), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198791] = 6, + [198887] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8001), 1, + ACTIONS(8041), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, anon_sym_LBRACE_PIPE, + STATE(1006), 1, + sym_object_type, STATE(6322), 1, sym_comment, - STATE(6734), 1, - sym_object_type, - [198810] = 6, + [198906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10376), 1, - anon_sym_COMMA, - ACTIONS(10378), 1, - anon_sym_RBRACE, - STATE(6196), 1, - aux_sym_enum_body_repeat1, STATE(6323), 1, sym_comment, - [198829] = 6, + ACTIONS(9841), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(10378), 1, anon_sym_COMMA, ACTIONS(10380), 1, anon_sym_RPAREN, - STATE(5626), 1, - aux_sym_array_repeat1, + STATE(5989), 1, + aux_sym_formal_parameters_repeat1, STATE(6324), 1, sym_comment, - [198848] = 4, + [198940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8196), 1, + anon_sym_DOT, STATE(6325), 1, sym_comment, - ACTIONS(10374), 3, - sym__automatic_semicolon, + ACTIONS(10382), 2, anon_sym_COMMA, - anon_sym_SEMI, - [198863] = 6, + anon_sym_GT, + [198957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10382), 1, - anon_sym_COMMA, + ACTIONS(8073), 1, + anon_sym_LBRACE, ACTIONS(10384), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, + anon_sym_LPAREN, + STATE(5749), 1, + sym_statement_block, STATE(6326), 1, sym_comment, - [198882] = 4, + [198976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6327), 1, sym_comment, - ACTIONS(9941), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198897] = 4, + [198991] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5795), 1, + anon_sym_COMMA, + ACTIONS(10386), 1, + anon_sym_RBRACK, + STATE(5471), 1, + aux_sym_array_repeat1, STATE(6328), 1, sym_comment, - ACTIONS(9947), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198912] = 4, + [199010] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9362), 1, + anon_sym_COMMA, + ACTIONS(10388), 1, + anon_sym_RBRACK, + STATE(5805), 1, + aux_sym_array_pattern_repeat1, STATE(6329), 1, sym_comment, - ACTIONS(9941), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198927] = 4, + [199029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6330), 1, sym_comment, - ACTIONS(10368), 3, + ACTIONS(9830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198942] = 4, + [199044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6331), 1, sym_comment, - ACTIONS(10386), 3, + ACTIONS(9816), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198957] = 6, + [199059] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10388), 1, - anon_sym_COMMA, - ACTIONS(10390), 1, - anon_sym_GT, - STATE(6079), 1, - aux_sym_type_arguments_repeat1, STATE(6332), 1, sym_comment, - [198976] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6333), 1, sym_comment, - ACTIONS(10374), 3, + ACTIONS(10390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198991] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199089] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10392), 1, - sym_identifier, - ACTIONS(10394), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6334), 1, sym_comment, - [199007] = 4, + ACTIONS(9561), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199104] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10392), 1, + anon_sym_COMMA, + ACTIONS(10394), 1, + anon_sym_GT, + STATE(6066), 1, + aux_sym_type_parameters_repeat1, STATE(6335), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_else, - anon_sym_while, - [199021] = 5, + [199123] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_class_body, STATE(6336), 1, sym_comment, - [199037] = 5, + ACTIONS(9816), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199138] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(90), 1, - sym_parenthesized_expression, STATE(6337), 1, sym_comment, - [199053] = 5, + ACTIONS(10086), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [199152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10398), 1, - anon_sym_LPAREN, - STATE(1044), 1, - sym_parenthesized_expression, STATE(6338), 1, sym_comment, - [199069] = 4, + ACTIONS(8505), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [199166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_parenthesized_expression, STATE(6339), 1, sym_comment, - ACTIONS(2177), 2, - anon_sym_else, - anon_sym_while, - [199083] = 5, + [199182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(3383), 1, - sym_statement_block, + STATE(363), 1, + sym_class_body, STATE(6340), 1, sym_comment, - [199099] = 5, + [199198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7197), 1, + ACTIONS(10396), 1, anon_sym_LPAREN, - STATE(4387), 1, - sym_formal_parameters, + STATE(112), 1, + sym_parenthesized_expression, STATE(6341), 1, sym_comment, - [199115] = 5, + [199214] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym_parenthesized_expression, STATE(6342), 1, sym_comment, - [199131] = 5, + ACTIONS(5744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, + ACTIONS(10398), 1, anon_sym_LPAREN, STATE(6343), 1, sym_comment, - STATE(6578), 1, + STATE(6554), 1, sym_parenthesized_expression, - [199147] = 5, + [199244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10178), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + ACTIONS(10400), 1, + anon_sym_SEMI, + ACTIONS(10402), 1, + sym__automatic_semicolon, STATE(6344), 1, sym_comment, - [199163] = 5, + [199260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym_class_body, STATE(6345), 1, sym_comment, - [199179] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5730), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199274] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10402), 1, - sym_identifier, - ACTIONS(10404), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_parenthesized_expression, STATE(6346), 1, sym_comment, - [199195] = 5, + [199290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(10404), 1, anon_sym_LBRACE, - STATE(3413), 1, + STATE(893), 1, sym_statement_block, STATE(6347), 1, sym_comment, - [199211] = 5, + [199306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, - STATE(6348), 1, - sym_comment, - [199227] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(10406), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(10408), 1, - sym_private_property_identifier, - STATE(6349), 1, + sym__automatic_semicolon, + STATE(6348), 1, sym_comment, - [199243] = 5, + [199322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10410), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_statement_block, - STATE(6350), 1, + STATE(6349), 1, sym_comment, - [199259] = 5, + ACTIONS(2229), 2, + anon_sym_else, + anon_sym_while, + [199336] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10412), 1, + ACTIONS(10410), 1, sym_identifier, - ACTIONS(10414), 1, + ACTIONS(10412), 1, anon_sym_STAR, - STATE(6351), 1, + STATE(6350), 1, sym_comment, - [199275] = 5, + [199352] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10414), 1, + anon_sym_in, ACTIONS(10416), 1, - anon_sym_LBRACE, - STATE(1302), 1, - sym_enum_body, + anon_sym_COLON, + STATE(6351), 1, + sym_comment, + [199368] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6352), 1, sym_comment, - [199291] = 4, + ACTIONS(10418), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199382] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1299), 1, + sym_class_body, STATE(6353), 1, sym_comment, - ACTIONS(3572), 2, - anon_sym_else, - anon_sym_while, - [199305] = 4, + [199398] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3374), 1, + sym_statement_block, STATE(6354), 1, sym_comment, - ACTIONS(5711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199319] = 4, + [199414] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3377), 1, + sym_statement_block, STATE(6355), 1, sym_comment, - ACTIONS(3586), 2, - anon_sym_else, - anon_sym_while, - [199333] = 5, + [199430] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - sym_identifier, - ACTIONS(10420), 1, - anon_sym_STAR, STATE(6356), 1, sym_comment, - [199349] = 5, + ACTIONS(10420), 2, + sym_jsx_identifier, + sym_identifier, + [199444] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, + STATE(2478), 1, + sym_statement_block, STATE(6357), 1, sym_comment, - STATE(6584), 1, - sym_class_body, - [199365] = 5, + [199460] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, - STATE(3370), 1, + STATE(2488), 1, sym_statement_block, STATE(6358), 1, sym_comment, - [199381] = 4, + [199476] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2493), 1, + sym_class_body, STATE(6359), 1, sym_comment, - ACTIONS(10422), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199395] = 4, + [199492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6360), 1, sym_comment, - ACTIONS(2351), 2, - anon_sym_else, - anon_sym_while, - [199409] = 4, + ACTIONS(5755), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6361), 1, sym_comment, - ACTIONS(3442), 2, - anon_sym_else, - anon_sym_while, - [199423] = 5, + ACTIONS(5672), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(3171), 1, - sym_statement_block, STATE(6362), 1, sym_comment, - [199439] = 4, + ACTIONS(6743), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6363), 1, sym_comment, - ACTIONS(9117), 2, + ACTIONS(10422), 2, sym__automatic_semicolon, anon_sym_SEMI, - [199453] = 5, + [199548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_statement_block, STATE(6364), 1, sym_comment, - [199469] = 4, + ACTIONS(6758), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199562] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6365), 1, sym_comment, - ACTIONS(10424), 2, + ACTIONS(5639), 2, sym__automatic_semicolon, anon_sym_SEMI, - [199483] = 4, + [199576] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10424), 1, + sym_identifier, + ACTIONS(10426), 1, + anon_sym_STAR, STATE(6366), 1, sym_comment, - ACTIONS(3438), 2, - anon_sym_else, - anon_sym_while, - [199497] = 5, + [199592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10178), 1, + ACTIONS(9818), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(1180), 1, sym_statement_block, STATE(6367), 1, sym_comment, - [199513] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199608] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10426), 1, - sym_identifier, - ACTIONS(10428), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3023), 1, + sym_class_body, STATE(6368), 1, sym_comment, - [199529] = 5, + [199624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_class_body, STATE(6369), 1, sym_comment, - [199545] = 4, + ACTIONS(6707), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199638] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(6370), 1, sym_comment, - ACTIONS(10430), 2, + ACTIONS(10428), 2, sym__glimmer_template_content, anon_sym_LT_SLASHtemplate_GT, - [199559] = 5, + [199652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_statement_block, STATE(6371), 1, sym_comment, - [199575] = 5, + ACTIONS(6703), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10432), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(1030), 1, - sym_statement_block, + STATE(3304), 1, + sym_class_body, STATE(6372), 1, sym_comment, - [199591] = 5, + [199682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10434), 1, - anon_sym_SEMI, - ACTIONS(10436), 1, - sym__automatic_semicolon, STATE(6373), 1, sym_comment, - [199607] = 5, + ACTIONS(3418), 2, + anon_sym_else, + anon_sym_while, + [199696] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10438), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_enum_body, + ACTIONS(10430), 1, + sym_identifier, + ACTIONS(10432), 1, + anon_sym_STAR, STATE(6374), 1, sym_comment, - [199623] = 5, + [199712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10440), 1, - anon_sym_SEMI, - ACTIONS(10442), 1, - sym__automatic_semicolon, + ACTIONS(8819), 1, + anon_sym_in, + ACTIONS(8821), 1, + anon_sym_of, STATE(6375), 1, sym_comment, - [199639] = 4, + [199728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6376), 1, sym_comment, - ACTIONS(3474), 2, + ACTIONS(3416), 2, anon_sym_else, anon_sym_while, - [199653] = 5, + [199742] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10444), 1, - anon_sym_SEMI, - ACTIONS(10446), 1, - sym__automatic_semicolon, + ACTIONS(8073), 1, + anon_sym_LBRACE, STATE(6377), 1, sym_comment, - [199669] = 5, + STATE(6699), 1, + sym_statement_block, + [199758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, + ACTIONS(10434), 1, anon_sym_LBRACE, - STATE(1300), 1, - sym_class_body, + STATE(1012), 1, + sym_statement_block, STATE(6378), 1, sym_comment, - [199685] = 4, + [199774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6379), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3414), 2, anon_sym_else, anon_sym_while, - [199699] = 5, + [199788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(10436), 1, anon_sym_LBRACE, - STATE(3149), 1, - sym_class_body, + STATE(1019), 1, + sym_enum_body, STATE(6380), 1, sym_comment, - [199715] = 5, + [199804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym_statement_block, STATE(6381), 1, sym_comment, - [199731] = 5, + ACTIONS(3410), 2, + anon_sym_else, + anon_sym_while, + [199818] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10448), 1, - anon_sym_SEMI, - ACTIONS(10450), 1, - sym__automatic_semicolon, STATE(6382), 1, sym_comment, - [199747] = 5, + ACTIONS(3408), 2, + anon_sym_else, + anon_sym_while, + [199832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10452), 1, + ACTIONS(10438), 1, anon_sym_SEMI, - ACTIONS(10454), 1, + ACTIONS(10440), 1, sym__automatic_semicolon, STATE(6383), 1, sym_comment, - [199763] = 5, + [199848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10456), 1, - anon_sym_SEMI, - ACTIONS(10458), 1, - sym__automatic_semicolon, STATE(6384), 1, sym_comment, - [199779] = 4, + ACTIONS(3404), 2, + anon_sym_else, + anon_sym_while, + [199862] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6385), 1, sym_comment, - ACTIONS(2351), 2, - anon_sym_else, - anon_sym_while, - [199793] = 5, + ACTIONS(10442), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(9613), 1, - anon_sym_GT, STATE(6386), 1, sym_comment, - [199809] = 5, + ACTIONS(10444), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3001), 1, - sym_class_body, + ACTIONS(10446), 1, + anon_sym_LPAREN, + STATE(5424), 1, + sym_parenthesized_expression, STATE(6387), 1, sym_comment, - [199825] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199906] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10460), 1, - sym_identifier, - ACTIONS(10462), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3040), 1, + sym_class_body, STATE(6388), 1, sym_comment, - [199841] = 5, + [199922] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10438), 1, - anon_sym_LBRACE, - STATE(1008), 1, - sym_enum_body, + ACTIONS(10448), 1, + anon_sym_SEMI, + ACTIONS(10450), 1, + sym__automatic_semicolon, STATE(6389), 1, sym_comment, - [199857] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199938] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10464), 1, - sym_identifier, - ACTIONS(10466), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10452), 1, + anon_sym_SEMI, + ACTIONS(10454), 1, + sym__automatic_semicolon, STATE(6390), 1, sym_comment, - [199873] = 5, + [199954] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(3288), 1, - sym_class_body, STATE(6391), 1, sym_comment, - [199889] = 5, + ACTIONS(9531), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_class_body, STATE(6392), 1, sym_comment, - [199905] = 4, + ACTIONS(6731), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [199982] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10456), 1, + sym_identifier, + ACTIONS(10458), 1, + anon_sym_STAR, STATE(6393), 1, sym_comment, - ACTIONS(10468), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199919] = 4, + [199998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6394), 1, sym_comment, - ACTIONS(10470), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199933] = 4, + ACTIONS(6719), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10436), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_enum_body, STATE(6395), 1, sym_comment, - ACTIONS(3468), 2, - anon_sym_else, - anon_sym_while, - [199947] = 5, + [200028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2452), 1, - sym_statement_block, STATE(6396), 1, sym_comment, - [199963] = 5, + ACTIONS(3398), 2, + anon_sym_else, + anon_sym_while, + [200042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_DOT, - ACTIONS(10472), 1, - anon_sym_GT, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(3039), 1, + sym_statement_block, STATE(6397), 1, sym_comment, - [199979] = 5, + [200058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(2450), 1, + STATE(336), 1, sym_class_body, STATE(6398), 1, sym_comment, - [199995] = 5, + [200074] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(10460), 1, anon_sym_LBRACE, - STATE(3270), 1, - sym_class_body, STATE(6399), 1, sym_comment, - [200011] = 4, + STATE(6723), 1, + sym_enum_body, + [200090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10462), 1, + anon_sym_LBRACE, + STATE(1423), 1, + sym_enum_body, STATE(6400), 1, sym_comment, - ACTIONS(10474), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [200025] = 5, + [200106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1287), 1, - sym_class_body, STATE(6401), 1, sym_comment, - [200041] = 5, + ACTIONS(9313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200120] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3000), 1, - sym_statement_block, STATE(6402), 1, sym_comment, - [200057] = 5, + STATE(6783), 1, + sym_statement_block, + [200136] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_statement_block, + ACTIONS(10464), 1, + sym_identifier, + ACTIONS(10466), 1, + anon_sym_STAR, STATE(6403), 1, sym_comment, - [200073] = 5, + [200152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3359), 1, - sym_statement_block, STATE(6404), 1, sym_comment, - [200089] = 5, + ACTIONS(10468), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3366), 1, + STATE(3385), 1, sym_statement_block, STATE(6405), 1, sym_comment, - [200105] = 5, + [200182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10476), 1, - anon_sym_SEMI, - ACTIONS(10478), 1, - sym__automatic_semicolon, STATE(6406), 1, sym_comment, - [200121] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6719), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200196] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10480), 1, - sym_identifier, - ACTIONS(10482), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6407), 1, sym_comment, - [200137] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3394), 2, + anon_sym_else, + anon_sym_while, + [200210] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10484), 1, - sym_identifier, - ACTIONS(10486), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6408), 1, sym_comment, - [200153] = 5, + ACTIONS(3392), 2, + anon_sym_else, + anon_sym_while, + [200224] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(10174), 1, anon_sym_LBRACE, - STATE(6237), 1, - sym_class_body, + STATE(937), 1, + sym_statement_block, STATE(6409), 1, sym_comment, - [200169] = 5, + [200240] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10488), 1, - anon_sym_SEMI, - ACTIONS(10490), 1, - sym__automatic_semicolon, + ACTIONS(7623), 1, + anon_sym_LBRACE, + STATE(1036), 1, + sym_class_body, STATE(6410), 1, sym_comment, - [200185] = 4, + [200256] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8997), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_statement_block, STATE(6411), 1, sym_comment, - ACTIONS(10492), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200199] = 5, + [200272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7609), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(955), 1, - sym_class_body, STATE(6412), 1, sym_comment, - [200215] = 4, + STATE(6764), 1, + sym_statement_block, + [200288] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6413), 1, sym_comment, - ACTIONS(10494), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200229] = 5, + ACTIONS(6731), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10496), 1, - anon_sym_SEMI, - ACTIONS(10498), 1, - sym__automatic_semicolon, + ACTIONS(7653), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_class_body, STATE(6414), 1, sym_comment, - [200245] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200318] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10500), 1, - sym_identifier, - ACTIONS(10502), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8799), 1, + anon_sym_LBRACE, + STATE(1203), 1, + sym_statement_block, STATE(6415), 1, sym_comment, - [200261] = 5, + [200334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2427), 1, - sym_class_body, + ACTIONS(10470), 1, + anon_sym_SEMI, + ACTIONS(10472), 1, + sym__automatic_semicolon, STATE(6416), 1, sym_comment, - [200277] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200350] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10314), 1, - sym_identifier, - ACTIONS(10318), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6417), 1, sym_comment, - [200293] = 4, + ACTIONS(10474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_class_body, STATE(6418), 1, sym_comment, - ACTIONS(10504), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200307] = 5, + [200380] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_class_body, + ACTIONS(10476), 1, + anon_sym_LPAREN, + STATE(1971), 1, + sym_arguments, STATE(6419), 1, sym_comment, - [200323] = 5, + [200396] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7853), 1, + STATE(6420), 1, + sym_comment, + ACTIONS(3384), 2, + anon_sym_else, + anon_sym_while, + [200410] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1244), 1, sym_class_body, - STATE(6420), 1, + STATE(6421), 1, sym_comment, - [200339] = 5, + [200426] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10506), 1, + ACTIONS(10478), 1, sym_identifier, - ACTIONS(10508), 1, + ACTIONS(10480), 1, anon_sym_STAR, - STATE(6421), 1, - sym_comment, - [200355] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10510), 1, - anon_sym_SEMI, - ACTIONS(10512), 1, - sym__automatic_semicolon, STATE(6422), 1, sym_comment, - [200371] = 5, + [200442] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(3181), 1, + STATE(3180), 1, sym_class_body, STATE(6423), 1, sym_comment, - [200387] = 5, + [200458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8989), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(340), 1, - sym_statement_block, + STATE(1224), 1, + sym_class_body, STATE(6424), 1, sym_comment, - [200403] = 5, + [200474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7607), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(964), 1, + STATE(295), 1, sym_class_body, STATE(6425), 1, sym_comment, - [200419] = 4, + [200490] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10482), 1, + anon_sym_SEMI, + ACTIONS(10484), 1, + sym__automatic_semicolon, STATE(6426), 1, sym_comment, - ACTIONS(3500), 2, - anon_sym_else, - anon_sym_while, - [200433] = 5, + [200506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10416), 1, - anon_sym_LBRACE, - STATE(1306), 1, - sym_enum_body, STATE(6427), 1, sym_comment, - [200449] = 5, + ACTIONS(3372), 2, + anon_sym_else, + anon_sym_while, + [200520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_DOT, - ACTIONS(10514), 1, - anon_sym_GT, STATE(6428), 1, sym_comment, - [200465] = 5, + ACTIONS(3374), 2, + anon_sym_else, + anon_sym_while, + [200534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10516), 1, + ACTIONS(10486), 1, anon_sym_SEMI, - ACTIONS(10518), 1, + ACTIONS(10488), 1, sym__automatic_semicolon, STATE(6429), 1, sym_comment, - [200481] = 5, + [200550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(8939), 1, anon_sym_LBRACE, - STATE(2449), 1, - sym_class_body, + STATE(297), 1, + sym_statement_block, STATE(6430), 1, sym_comment, - [200497] = 4, + [200566] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7843), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_class_body, STATE(6431), 1, sym_comment, - ACTIONS(7499), 2, - anon_sym_in, - anon_sym_of, - [200511] = 5, + [200582] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(1125), 1, - sym_class_body, STATE(6432), 1, sym_comment, - [200527] = 5, + STATE(6751), 1, + sym_statement_block, + [200598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, + ACTIONS(4847), 1, anon_sym_LBRACE, - STATE(1020), 1, + STATE(3136), 1, sym_statement_block, STATE(6433), 1, sym_comment, - [200543] = 5, + [200614] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_class_body, STATE(6434), 1, sym_comment, - [200559] = 4, + ACTIONS(6739), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6435), 1, sym_comment, - ACTIONS(10520), 2, + ACTIONS(5581), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200573] = 5, + [200642] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(6041), 1, - sym_class_body, STATE(6436), 1, sym_comment, - [200589] = 5, + ACTIONS(3376), 2, + anon_sym_else, + anon_sym_while, + [200656] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(10298), 1, - anon_sym_GT, STATE(6437), 1, sym_comment, - [200605] = 4, + ACTIONS(10490), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200670] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10492), 1, + sym_identifier, + ACTIONS(10494), 1, + sym_private_property_identifier, STATE(6438), 1, sym_comment, - ACTIONS(10522), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200619] = 5, + [200686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(329), 1, - sym_class_body, STATE(6439), 1, sym_comment, - [200635] = 5, + STATE(6753), 1, + sym_statement_block, + [200702] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10524), 1, - anon_sym_SEMI, - ACTIONS(10526), 1, - sym__automatic_semicolon, + ACTIONS(10496), 1, + sym_identifier, + ACTIONS(10498), 1, + sym_private_property_identifier, STATE(6440), 1, sym_comment, - [200651] = 5, + [200718] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, + ACTIONS(7573), 1, anon_sym_LBRACE, - STATE(6035), 1, - sym_statement_block, + STATE(1487), 1, + sym_class_body, STATE(6441), 1, sym_comment, - [200667] = 5, + [200734] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7609), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_class_body, + ACTIONS(10500), 1, + sym_identifier, + ACTIONS(10502), 1, + sym_private_property_identifier, STATE(6442), 1, sym_comment, - [200683] = 5, + [200750] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LPAREN, - STATE(2414), 1, - sym_arguments, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_class_body, STATE(6443), 1, sym_comment, - [200699] = 5, + [200766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8977), 1, - anon_sym_LBRACE, - STATE(949), 1, - sym_statement_block, + ACTIONS(10504), 1, + anon_sym_SEMI, + ACTIONS(10506), 1, + sym__automatic_semicolon, STATE(6444), 1, sym_comment, - [200715] = 5, + [200782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7609), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(320), 1, sym_class_body, STATE(6445), 1, sym_comment, - [200731] = 5, + [200798] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3412), 1, - sym_statement_block, + ACTIONS(10314), 1, + sym_identifier, + ACTIONS(10318), 1, + sym_private_property_identifier, STATE(6446), 1, sym_comment, - [200747] = 5, + [200814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2996), 1, - sym_class_body, STATE(6447), 1, sym_comment, - [200763] = 5, + ACTIONS(3378), 2, + anon_sym_else, + anon_sym_while, + [200828] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(6033), 1, + STATE(915), 1, sym_class_body, STATE(6448), 1, sym_comment, - [200779] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200844] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10528), 1, - sym_identifier, - ACTIONS(10530), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8997), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_statement_block, STATE(6449), 1, sym_comment, - [200795] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200860] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(10534), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8912), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym_statement_block, STATE(6450), 1, sym_comment, - [200811] = 5, + [200876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8989), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(312), 1, - sym_statement_block, + STATE(917), 1, + sym_class_body, STATE(6451), 1, sym_comment, - [200827] = 5, + [200892] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7607), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_class_body, + ACTIONS(10508), 1, + anon_sym_SEMI, + ACTIONS(10510), 1, + sym__automatic_semicolon, STATE(6452), 1, sym_comment, - [200843] = 4, + [200908] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10297), 1, + sym_identifier, + ACTIONS(10301), 1, + sym_private_property_identifier, STATE(6453), 1, sym_comment, - ACTIONS(3394), 2, - anon_sym_else, - anon_sym_while, - [200857] = 4, + [200924] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10512), 1, + sym_identifier, + ACTIONS(10514), 1, + sym_private_property_identifier, STATE(6454), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [200871] = 4, + [200940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10460), 1, + anon_sym_LBRACE, STATE(6455), 1, sym_comment, - ACTIONS(3498), 2, - anon_sym_else, - anon_sym_while, - [200885] = 5, + STATE(6813), 1, + sym_enum_body, + [200956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3387), 1, - sym_statement_block, STATE(6456), 1, sym_comment, - [200901] = 4, + STATE(6819), 1, + sym_statement_block, + [200972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8939), 1, + anon_sym_LBRACE, + STATE(343), 1, + sym_statement_block, STATE(6457), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [200915] = 5, + [200988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10536), 1, + ACTIONS(7843), 1, anon_sym_LBRACE, - STATE(1294), 1, - sym_statement_block, + STATE(1135), 1, + sym_class_body, STATE(6458), 1, sym_comment, - [200931] = 4, + [201004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(4715), 1, + sym_formal_parameters, STATE(6459), 1, sym_comment, - ACTIONS(2075), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200945] = 5, + [201020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7611), 1, + ACTIONS(7623), 1, anon_sym_LBRACE, - STATE(311), 1, + STATE(962), 1, sym_class_body, STATE(6460), 1, sym_comment, - [200961] = 5, + [201036] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7607), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1025), 1, - sym_class_body, + STATE(3402), 1, + sym_statement_block, STATE(6461), 1, sym_comment, - [200977] = 4, + [201052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7623), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_class_body, STATE(6462), 1, sym_comment, - ACTIONS(3396), 2, - anon_sym_else, - anon_sym_while, - [200991] = 5, + [201068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8977), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + STATE(3043), 1, + sym_class_body, STATE(6463), 1, sym_comment, - [201007] = 5, + [201084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7609), 1, - anon_sym_LBRACE, - STATE(914), 1, - sym_class_body, STATE(6464), 1, sym_comment, - [201023] = 4, + ACTIONS(3380), 2, + anon_sym_else, + anon_sym_while, + [201098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6465), 1, sym_comment, - ACTIONS(3394), 2, - anon_sym_else, - anon_sym_while, - [201037] = 5, + ACTIONS(10516), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7837), 1, anon_sym_LBRACE, - STATE(3386), 1, - sym_statement_block, + STATE(318), 1, + sym_class_body, STATE(6466), 1, sym_comment, - [201053] = 4, + [201128] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7843), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_class_body, STATE(6467), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [201067] = 5, + [201144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_class_body, STATE(6468), 1, sym_comment, - [201083] = 5, + ACTIONS(3386), 2, + anon_sym_else, + anon_sym_while, + [201158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, + ACTIONS(8912), 1, anon_sym_LBRACE, - STATE(2937), 1, + STATE(936), 1, sym_statement_block, STATE(6469), 1, sym_comment, - [201099] = 5, + [201174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7607), 1, + ACTIONS(7833), 1, anon_sym_LBRACE, - STATE(1073), 1, + STATE(925), 1, sym_class_body, STATE(6470), 1, sym_comment, - [201115] = 4, + [201190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6471), 1, sym_comment, - ACTIONS(3386), 2, + ACTIONS(3388), 2, anon_sym_else, anon_sym_while, - [201129] = 4, + [201204] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10518), 1, + sym_identifier, + ACTIONS(10520), 1, + sym_private_property_identifier, STATE(6472), 1, sym_comment, - ACTIONS(10260), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201143] = 5, + [201220] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(393), 1, - sym_class_body, + STATE(3367), 1, + sym_statement_block, STATE(6473), 1, sym_comment, - [201159] = 4, + [201236] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1316), 1, + sym_class_body, STATE(6474), 1, sym_comment, - ACTIONS(10538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201173] = 5, + [201252] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(4847), 1, anon_sym_LBRACE, - STATE(2515), 1, - sym_class_body, + STATE(2957), 1, + sym_statement_block, STATE(6475), 1, sym_comment, - [201189] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201268] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10540), 1, - sym_identifier, - ACTIONS(10542), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7843), 1, + anon_sym_LBRACE, + STATE(1088), 1, + sym_class_body, STATE(6476), 1, sym_comment, - [201205] = 5, + [201284] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7197), 1, + ACTIONS(10396), 1, anon_sym_LPAREN, - STATE(4386), 1, - sym_formal_parameters, + STATE(83), 1, + sym_parenthesized_expression, STATE(6477), 1, sym_comment, - [201221] = 4, + [201300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7573), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_class_body, STATE(6478), 1, sym_comment, - ACTIONS(10544), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201235] = 4, + [201316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6479), 1, sym_comment, - ACTIONS(9607), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201249] = 4, + ACTIONS(3390), 2, + anon_sym_else, + anon_sym_while, + [201330] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3394), 1, + sym_statement_block, STATE(6480), 1, sym_comment, - ACTIONS(5670), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201263] = 4, + [201346] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10522), 1, + sym_identifier, + ACTIONS(10524), 1, + anon_sym_STAR, STATE(6481), 1, sym_comment, - ACTIONS(2165), 2, - anon_sym_else, - anon_sym_while, - [201277] = 5, + [201362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8733), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, - STATE(401), 1, + STATE(2511), 1, sym_statement_block, STATE(6482), 1, sym_comment, - [201293] = 4, + [201378] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10526), 1, + anon_sym_LPAREN, + STATE(3537), 1, + sym_arguments, STATE(6483), 1, sym_comment, - ACTIONS(3496), 2, - anon_sym_else, - anon_sym_while, - [201307] = 5, + [201394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10546), 1, - anon_sym_SEMI, - ACTIONS(10548), 1, - sym__automatic_semicolon, STATE(6484), 1, sym_comment, - [201323] = 5, + ACTIONS(3396), 2, + anon_sym_else, + anon_sym_while, + [201408] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2521), 1, - sym_statement_block, STATE(6485), 1, sym_comment, - [201339] = 4, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2528), 1, + sym_class_body, STATE(6486), 1, sym_comment, - ACTIONS(3494), 2, - anon_sym_else, - anon_sym_while, - [201353] = 4, + [201438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10462), 1, + anon_sym_LBRACE, + STATE(1350), 1, + sym_enum_body, STATE(6487), 1, sym_comment, - ACTIONS(3392), 2, - anon_sym_else, - anon_sym_while, - [201367] = 5, + [201454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(10528), 1, anon_sym_LBRACE, - STATE(3058), 1, - sym_class_body, + STATE(1437), 1, + sym_statement_block, STATE(6488), 1, sym_comment, - [201383] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201470] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10550), 1, - sym_identifier, - ACTIONS(10552), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6489), 1, sym_comment, - [201399] = 5, + ACTIONS(3440), 2, + anon_sym_else, + anon_sym_while, + [201484] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7845), 1, - anon_sym_LBRACE, - STATE(1309), 1, - sym_class_body, + ACTIONS(10530), 1, + sym_identifier, + ACTIONS(10532), 1, + anon_sym_STAR, STATE(6490), 1, sym_comment, - [201415] = 4, + [201500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6491), 1, sym_comment, - ACTIONS(3492), 2, + ACTIONS(3400), 2, anon_sym_else, anon_sym_while, - [201429] = 5, + [201514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2522), 1, - sym_statement_block, + ACTIONS(4793), 1, + anon_sym_LPAREN, + STATE(2429), 1, + sym_arguments, STATE(6492), 1, sym_comment, - [201445] = 5, + [201530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(4768), 1, - sym_formal_parameters, STATE(6493), 1, sym_comment, - [201461] = 5, + ACTIONS(3402), 2, + anon_sym_else, + anon_sym_while, + [201544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(3059), 1, - sym_statement_block, STATE(6494), 1, sym_comment, - [201477] = 5, + ACTIONS(10534), 2, + anon_sym_COMMA, + anon_sym_GT, + [201558] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(3060), 1, - sym_statement_block, STATE(6495), 1, sym_comment, - [201493] = 5, + ACTIONS(3402), 2, + anon_sym_else, + anon_sym_while, + [201572] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2526), 1, - sym_class_body, + ACTIONS(10536), 1, + sym_identifier, + ACTIONS(10538), 1, + anon_sym_STAR, STATE(6496), 1, sym_comment, - [201509] = 5, + [201588] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2928), 1, - sym_class_body, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(10241), 1, + anon_sym_GT, STATE(6497), 1, sym_comment, - [201525] = 4, + [201604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6498), 1, sym_comment, - ACTIONS(3372), 2, - anon_sym_else, - anon_sym_while, - [201539] = 5, + ACTIONS(5751), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10554), 1, - anon_sym_SEMI, - ACTIONS(10556), 1, - sym__automatic_semicolon, STATE(6499), 1, sym_comment, - [201555] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3406), 2, + anon_sym_else, + anon_sym_while, + [201632] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10558), 1, - sym_identifier, - ACTIONS(10560), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8723), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_statement_block, STATE(6500), 1, sym_comment, - [201571] = 5, + [201648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(3382), 1, - sym_statement_block, + STATE(2964), 1, + sym_class_body, STATE(6501), 1, sym_comment, - [201587] = 5, + [201664] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3062), 1, - sym_class_body, + ACTIONS(8797), 1, + anon_sym_DOT, + ACTIONS(10540), 1, + anon_sym_GT, STATE(6502), 1, sym_comment, - [201603] = 4, + [201680] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10542), 1, + anon_sym_SEMI, + ACTIONS(10544), 1, + sym__automatic_semicolon, STATE(6503), 1, sym_comment, - ACTIONS(6733), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201617] = 5, + [201696] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10562), 1, - anon_sym_SEMI, - ACTIONS(10564), 1, - sym__automatic_semicolon, STATE(6504), 1, sym_comment, - [201633] = 4, + ACTIONS(10546), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6505), 1, sym_comment, - ACTIONS(10566), 2, + ACTIONS(10548), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201647] = 4, + [201724] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6506), 1, sym_comment, - ACTIONS(10568), 2, + ACTIONS(5412), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201661] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201738] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10570), 1, - sym_identifier, - ACTIONS(10572), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, STATE(6507), 1, sym_comment, - [201677] = 4, + STATE(6715), 1, + sym__from_clause, + [201754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6508), 1, sym_comment, - ACTIONS(3514), 2, - anon_sym_else, - anon_sym_while, - [201691] = 5, + ACTIONS(10550), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, STATE(6509), 1, sym_comment, - STATE(6966), 1, - sym_statement_block, - [201707] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10552), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201782] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10574), 1, - sym_identifier, - ACTIONS(10576), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6510), 1, sym_comment, - [201723] = 4, + STATE(7232), 1, + sym_formal_parameters, + [201798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym_statement_block, STATE(6511), 1, sym_comment, - ACTIONS(3502), 2, - anon_sym_else, - anon_sym_while, - [201737] = 5, + [201814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, + ACTIONS(7623), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(996), 1, sym_class_body, STATE(6512), 1, sym_comment, - [201753] = 4, + [201830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10554), 1, + anon_sym_SEMI, + ACTIONS(10556), 1, + sym__automatic_semicolon, STATE(6513), 1, sym_comment, - ACTIONS(10578), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201767] = 4, + [201846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6514), 1, sym_comment, - ACTIONS(6701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201781] = 5, + ACTIONS(10558), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10580), 1, + ACTIONS(10560), 1, anon_sym_SEMI, - ACTIONS(10582), 1, + ACTIONS(10562), 1, sym__automatic_semicolon, STATE(6515), 1, sym_comment, - [201797] = 5, + [201876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, + STATE(2396), 1, + sym_class_body, STATE(6516), 1, sym_comment, - STATE(6929), 1, - sym_statement_block, - [201813] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201892] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10584), 1, - sym_identifier, - ACTIONS(10586), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3376), 1, + sym_statement_block, STATE(6517), 1, sym_comment, - [201829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201908] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(6518), 1, - sym_comment, - ACTIONS(10588), 2, - sym_jsx_identifier, - sym_identifier, - [201843] = 5, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10564), 1, + anon_sym_SEMI, + ACTIONS(10566), 1, + sym__automatic_semicolon, + STATE(6518), 1, + sym_comment, + [201924] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10590), 1, - sym_identifier, - ACTIONS(10592), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3412), 1, + sym_statement_block, STATE(6519), 1, sym_comment, - [201859] = 5, + [201940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2445), 1, - sym_statement_block, + ACTIONS(10568), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__for_header, STATE(6520), 1, sym_comment, - [201875] = 5, + [201956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, + ACTIONS(10570), 1, anon_sym_LBRACE, - STATE(1376), 1, - sym_class_body, STATE(6521), 1, sym_comment, - [201891] = 5, + STATE(6850), 1, + sym_switch_body, + [201972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8786), 1, - anon_sym_LBRACE, - STATE(1380), 1, - sym_statement_block, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9632), 1, + anon_sym_GT, STATE(6522), 1, sym_comment, - [201907] = 5, + [201988] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2457), 1, - sym_statement_block, STATE(6523), 1, sym_comment, - [201923] = 5, + ACTIONS(10572), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202002] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2462), 1, - sym_class_body, STATE(6524), 1, sym_comment, - [201939] = 5, + ACTIONS(10574), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [202016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3365), 1, - sym_statement_block, STATE(6525), 1, sym_comment, - [201955] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10576), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [202030] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10594), 1, - sym_identifier, - ACTIONS(10596), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5709), 1, + sym_class_body, STATE(6526), 1, sym_comment, - [201971] = 4, + [202046] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, STATE(6527), 1, sym_comment, - ACTIONS(3490), 2, - anon_sym_else, - anon_sym_while, - [201985] = 5, + STATE(6686), 1, + sym_type_annotation, + [202062] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1387), 1, - sym_class_body, + STATE(3393), 1, + sym_statement_block, STATE(6528), 1, sym_comment, - [202001] = 4, + [202078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3375), 1, + sym_statement_block, STATE(6529), 1, sym_comment, - ACTIONS(3488), 2, - anon_sym_else, - anon_sym_while, - [202015] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202094] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10598), 1, - sym_identifier, - ACTIONS(10600), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2480), 1, + sym_class_body, STATE(6530), 1, sym_comment, - [202031] = 4, + [202110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + STATE(2399), 1, + sym_statement_block, STATE(6531), 1, sym_comment, - ACTIONS(10602), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202045] = 5, + [202126] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10604), 1, + ACTIONS(10578), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10580), 1, sym_private_property_identifier, STATE(6532), 1, sym_comment, - [202061] = 5, + [202142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, STATE(6533), 1, sym_comment, - STATE(6746), 1, - sym__from_clause, - [202077] = 5, + ACTIONS(3426), 2, + anon_sym_else, + anon_sym_while, + [202156] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_LBRACE, - STATE(415), 1, - sym_class_body, STATE(6534), 1, sym_comment, - [202093] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10582), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202170] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10608), 1, - sym_identifier, - ACTIONS(10610), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6535), 1, sym_comment, - [202109] = 4, + ACTIONS(10584), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202184] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8797), 1, + anon_sym_DOT, + ACTIONS(10586), 1, + anon_sym_GT, STATE(6536), 1, sym_comment, - ACTIONS(3486), 2, - anon_sym_else, - anon_sym_while, - [202123] = 4, + [202200] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + sym_private_property_identifier, STATE(6537), 1, sym_comment, - ACTIONS(10229), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202137] = 5, + [202216] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_class_body, STATE(6538), 1, sym_comment, - [202153] = 4, + ACTIONS(3428), 2, + anon_sym_else, + anon_sym_while, + [202230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6539), 1, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3440), 2, anon_sym_else, anon_sym_while, - [202167] = 5, + [202244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_statement_block, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5527), 1, + sym__from_clause, STATE(6540), 1, sym_comment, - [202183] = 5, + [202260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(3054), 1, - sym_statement_block, STATE(6541), 1, sym_comment, - [202199] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(6542), 1, - sym_comment, - STATE(6956), 1, - sym_class_body, - [202215] = 5, + ACTIONS(3458), 2, + anon_sym_else, + anon_sym_while, + [202274] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10198), 1, + ACTIONS(10592), 1, sym_identifier, - ACTIONS(10202), 1, + ACTIONS(10594), 1, sym_private_property_identifier, + STATE(6542), 1, + sym_comment, + [202290] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10596), 1, + anon_sym_COMMA, + ACTIONS(10598), 1, + anon_sym_from, STATE(6543), 1, sym_comment, - [202231] = 5, + [202306] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10612), 1, + ACTIONS(10186), 1, sym_identifier, - ACTIONS(10614), 1, + ACTIONS(10190), 1, sym_private_property_identifier, STATE(6544), 1, sym_comment, - [202247] = 5, + [202322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3021), 1, - sym_class_body, STATE(6545), 1, sym_comment, - [202263] = 5, + ACTIONS(3460), 2, + anon_sym_else, + anon_sym_while, + [202336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3072), 1, - sym_class_body, + ACTIONS(10600), 1, + anon_sym_SEMI, + ACTIONS(10602), 1, + sym__automatic_semicolon, STATE(6546), 1, sym_comment, - [202279] = 4, + [202352] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6547), 1, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3462), 2, anon_sym_else, anon_sym_while, - [202293] = 5, + [202366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7853), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(1095), 1, + STATE(3019), 1, sym_class_body, STATE(6548), 1, sym_comment, - [202309] = 4, + [202382] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10434), 1, + anon_sym_LBRACE, + STATE(1095), 1, + sym_statement_block, STATE(6549), 1, sym_comment, - ACTIONS(3374), 2, - anon_sym_else, - anon_sym_while, - [202323] = 5, + [202398] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_class_body, + ACTIONS(10604), 1, + anon_sym_LPAREN, + STATE(926), 1, + sym_parenthesized_expression, STATE(6550), 1, sym_comment, - [202339] = 4, + [202414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6551), 1, sym_comment, - ACTIONS(3452), 2, + ACTIONS(3464), 2, anon_sym_else, anon_sym_while, - [202353] = 4, + [202428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6552), 1, sym_comment, - ACTIONS(5715), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202367] = 5, + ACTIONS(3466), 2, + anon_sym_else, + anon_sym_while, + [202442] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(10606), 1, anon_sym_LBRACE, - STATE(3390), 1, - sym_statement_block, + STATE(1433), 1, + sym_enum_body, STATE(6553), 1, sym_comment, - [202383] = 5, + [202458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(10608), 1, anon_sym_LBRACE, - STATE(6511), 1, - sym_statement_block, + STATE(1452), 1, + sym_switch_body, STATE(6554), 1, sym_comment, - [202399] = 4, + [202474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4419), 1, + sym_formal_parameters, STATE(6555), 1, sym_comment, - ACTIONS(5719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202413] = 5, + [202490] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10616), 1, - anon_sym_SEMI, - ACTIONS(10618), 1, - sym__automatic_semicolon, STATE(6556), 1, sym_comment, - [202429] = 4, + ACTIONS(9218), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10568), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym__for_header, STATE(6557), 1, sym_comment, - ACTIONS(3448), 2, - anon_sym_else, - anon_sym_while, - [202443] = 5, + [202520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5636), 1, - sym__from_clause, STATE(6558), 1, sym_comment, - [202459] = 5, + ACTIONS(10610), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10620), 1, - anon_sym_COMMA, - ACTIONS(10622), 1, - anon_sym_from, STATE(6559), 1, sym_comment, - [202475] = 5, + ACTIONS(6743), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202548] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10624), 1, - anon_sym_LPAREN, - STATE(5440), 1, - sym_parenthesized_expression, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3414), 1, + sym_statement_block, STATE(6560), 1, sym_comment, - [202491] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202564] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10626), 1, - sym_identifier, - ACTIONS(10628), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(4216), 1, + sym_formal_parameters, STATE(6561), 1, sym_comment, - [202507] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202580] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9664), 1, - sym_identifier, - ACTIONS(9668), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10612), 1, + anon_sym_SEMI, + ACTIONS(10614), 1, + sym__automatic_semicolon, STATE(6562), 1, sym_comment, - [202523] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202596] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10630), 1, - sym_identifier, - ACTIONS(10632), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6563), 1, sym_comment, - [202539] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10616), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202610] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10634), 1, - sym_identifier, - ACTIONS(10636), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6564), 1, sym_comment, - [202555] = 5, + ACTIONS(3470), 2, + anon_sym_else, + anon_sym_while, + [202624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(5340), 1, - sym_formal_parameters, STATE(6565), 1, sym_comment, - [202571] = 5, + ACTIONS(5460), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10638), 1, - anon_sym_LBRACE, - STATE(6395), 1, - sym_enum_body, STATE(6566), 1, sym_comment, - [202587] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3486), 2, + anon_sym_else, + anon_sym_while, + [202652] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10640), 1, - sym_identifier, - ACTIONS(10642), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6567), 1, sym_comment, - [202603] = 4, + ACTIONS(10618), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [202666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + STATE(2404), 1, + sym_statement_block, STATE(6568), 1, sym_comment, - ACTIONS(9315), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202617] = 4, + [202682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6569), 1, sym_comment, - ACTIONS(10644), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202631] = 4, + ACTIONS(3486), 2, + anon_sym_else, + anon_sym_while, + [202696] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6570), 1, sym_comment, - ACTIONS(3478), 2, - anon_sym_else, - anon_sym_while, - [202645] = 5, + ACTIONS(10620), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3407), 1, - sym_statement_block, STATE(6571), 1, sym_comment, - [202661] = 4, + ACTIONS(10622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10624), 1, + anon_sym_SEMI, + ACTIONS(10626), 1, + sym__automatic_semicolon, STATE(6572), 1, sym_comment, - ACTIONS(3374), 2, - anon_sym_else, - anon_sym_while, - [202675] = 4, + [202740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10628), 1, + anon_sym_SEMI, + ACTIONS(10630), 1, + sym__automatic_semicolon, STATE(6573), 1, sym_comment, - ACTIONS(3376), 2, - anon_sym_else, - anon_sym_while, - [202689] = 5, + [202756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(4847), 1, anon_sym_LBRACE, - STATE(3361), 1, + STATE(3183), 1, sym_statement_block, STATE(6574), 1, sym_comment, - [202705] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202772] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10646), 1, - sym_identifier, - ACTIONS(10648), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10632), 1, + anon_sym_SEMI, + ACTIONS(10634), 1, + sym__automatic_semicolon, STATE(6575), 1, sym_comment, - [202721] = 4, + [202788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7775), 1, + anon_sym_LBRACE, + STATE(6552), 1, + sym_class_body, STATE(6576), 1, sym_comment, - ACTIONS(3456), 2, - anon_sym_else, - anon_sym_while, - [202735] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202804] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10650), 1, - sym_identifier, - ACTIONS(10652), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10606), 1, + anon_sym_LBRACE, + STATE(1240), 1, + sym_enum_body, STATE(6577), 1, sym_comment, - [202751] = 5, + [202820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10654), 1, - anon_sym_LBRACE, - STATE(1446), 1, - sym_switch_body, STATE(6578), 1, sym_comment, - [202767] = 5, + ACTIONS(5782), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202834] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(10636), 1, anon_sym_LBRACE, - STATE(2994), 1, - sym_class_body, + STATE(1250), 1, + sym_statement_block, STATE(6579), 1, sym_comment, - [202783] = 5, + [202850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10432), 1, - anon_sym_LBRACE, - STATE(1117), 1, - sym_statement_block, STATE(6580), 1, sym_comment, - [202799] = 5, + ACTIONS(5784), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10656), 1, - anon_sym_LPAREN, - STATE(919), 1, - sym_parenthesized_expression, STATE(6581), 1, sym_comment, - [202815] = 5, + ACTIONS(10638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym__for_header, + ACTIONS(7597), 1, + anon_sym_LBRACE, + STATE(1007), 1, + sym_class_body, STATE(6582), 1, sym_comment, - [202831] = 5, + [202894] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10660), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1369), 1, - sym_enum_body, + STATE(3363), 1, + sym_statement_block, STATE(6583), 1, sym_comment, - [202847] = 4, + [202910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6584), 1, sym_comment, - ACTIONS(3476), 2, + ACTIONS(3486), 2, anon_sym_else, anon_sym_while, - [202861] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10662), 1, - sym_identifier, - ACTIONS(10664), 1, - sym_private_property_identifier, - STATE(6585), 1, - sym_comment, - [202877] = 5, + [202924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8733), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(360), 1, + STATE(3391), 1, sym_statement_block, + STATE(6585), 1, + sym_comment, + [202940] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10640), 1, + sym_identifier, + ACTIONS(10642), 1, + sym_private_property_identifier, STATE(6586), 1, sym_comment, - [202893] = 5, + [202956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7845), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1412), 1, - sym_class_body, + STATE(3388), 1, + sym_statement_block, STATE(6587), 1, sym_comment, - [202909] = 4, + [202972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(4683), 1, + sym_statement_block, STATE(6588), 1, sym_comment, - ACTIONS(3388), 2, - anon_sym_else, - anon_sym_while, - [202923] = 4, + [202988] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10644), 1, + sym_identifier, + ACTIONS(10646), 1, + sym_private_property_identifier, STATE(6589), 1, sym_comment, - ACTIONS(10666), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [202937] = 4, + [203004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10528), 1, + anon_sym_LBRACE, + STATE(1347), 1, + sym_statement_block, STATE(6590), 1, sym_comment, - ACTIONS(10668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202951] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203020] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10670), 1, - sym_identifier, - ACTIONS(10672), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3380), 1, + sym_statement_block, STATE(6591), 1, sym_comment, - [202967] = 5, + [203036] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(3047), 1, - sym_class_body, STATE(6592), 1, sym_comment, - [202983] = 5, + ACTIONS(6707), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203050] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3360), 1, - sym_statement_block, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, STATE(6593), 1, sym_comment, - [202999] = 5, + [203066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10674), 1, - anon_sym_SEMI, - ACTIONS(10676), 1, - sym__automatic_semicolon, STATE(6594), 1, sym_comment, - [203015] = 5, + ACTIONS(3490), 2, + anon_sym_else, + anon_sym_while, + [203080] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, + STATE(6559), 1, + sym_statement_block, STATE(6595), 1, sym_comment, - STATE(6989), 1, - sym_class_body, - [203031] = 5, + [203096] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10678), 1, - anon_sym_SEMI, - ACTIONS(10680), 1, - sym__automatic_semicolon, STATE(6596), 1, sym_comment, - [203047] = 4, + ACTIONS(3494), 2, + anon_sym_else, + anon_sym_while, + [203110] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6597), 1, sym_comment, - ACTIONS(9163), 2, + ACTIONS(10648), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203061] = 4, + [203124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_class_body, STATE(6598), 1, sym_comment, - ACTIONS(10682), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203075] = 5, + [203140] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5936), 1, - sym_class_body, + ACTIONS(10650), 1, + sym_identifier, + ACTIONS(10652), 1, + sym_private_property_identifier, STATE(6599), 1, sym_comment, - [203091] = 4, + [203156] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6600), 1, sym_comment, - ACTIONS(10684), 2, + ACTIONS(5676), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203105] = 4, + [203170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6601), 1, sym_comment, - ACTIONS(5535), 2, + ACTIONS(5674), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203119] = 5, + [203184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3394), 1, - sym_statement_block, STATE(6602), 1, sym_comment, - [203135] = 5, + ACTIONS(10654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3384), 1, - sym_statement_block, STATE(6603), 1, sym_comment, - [203151] = 4, + ACTIONS(10656), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3022), 1, + sym_class_body, STATE(6604), 1, sym_comment, - ACTIONS(5517), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203165] = 5, + [203228] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10686), 1, - anon_sym_SEMI, - ACTIONS(10688), 1, - sym__automatic_semicolon, + ACTIONS(10658), 1, + sym_identifier, + ACTIONS(10660), 1, + sym_private_property_identifier, STATE(6605), 1, sym_comment, - [203181] = 4, + [203244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6606), 1, sym_comment, - ACTIONS(3400), 2, - anon_sym_else, - anon_sym_while, - [203195] = 4, + ACTIONS(10662), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6607), 1, sym_comment, - ACTIONS(3400), 2, + ACTIONS(3496), 2, anon_sym_else, anon_sym_while, - [203209] = 5, + [203272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_class_body, + ACTIONS(10568), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__for_header, STATE(6608), 1, sym_comment, - [203225] = 5, + [203288] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10690), 1, - anon_sym_SEMI, - ACTIONS(10692), 1, - sym__automatic_semicolon, + ACTIONS(10664), 1, + anon_sym_LBRACE, + STATE(986), 1, + sym_switch_body, STATE(6609), 1, sym_comment, - [203241] = 5, + [203304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1453), 1, - sym_class_body, STATE(6610), 1, sym_comment, - [203257] = 5, + ACTIONS(3500), 2, + anon_sym_else, + anon_sym_while, + [203318] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7845), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_class_body, STATE(6611), 1, sym_comment, - [203273] = 4, + ACTIONS(3502), 2, + anon_sym_else, + anon_sym_while, + [203332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3147), 1, + sym_class_body, STATE(6612), 1, sym_comment, - ACTIONS(5785), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203287] = 5, + [203348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(995), 1, - sym_statement_block, + STATE(2413), 1, + sym_class_body, STATE(6613), 1, sym_comment, - [203303] = 5, + [203364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10694), 1, - anon_sym_SEMI, - ACTIONS(10696), 1, - sym__automatic_semicolon, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5683), 1, + sym_class_body, STATE(6614), 1, sym_comment, - [203319] = 4, + [203380] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7945), 1, + anon_sym_LBRACE, + STATE(5677), 1, + sym_statement_block, STATE(6615), 1, sym_comment, - ACTIONS(3466), 2, - anon_sym_else, - anon_sym_while, - [203333] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203396] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10698), 1, - sym_identifier, - ACTIONS(10700), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5672), 1, + sym_class_body, STATE(6616), 1, sym_comment, - [203349] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203412] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10160), 1, - sym_identifier, - ACTIONS(10164), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6617), 1, sym_comment, - [203365] = 4, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [203426] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(3027), 1, + sym_statement_block, STATE(6618), 1, sym_comment, - ACTIONS(10158), 2, - anon_sym_COMMA, - anon_sym_GT, - [203379] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203442] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10702), 1, - sym_identifier, - ACTIONS(10704), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(3305), 1, + sym_class_body, STATE(6619), 1, sym_comment, - [203395] = 5, + [203458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10638), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, + STATE(3372), 1, + sym_statement_block, STATE(6620), 1, sym_comment, - STATE(6845), 1, - sym_enum_body, - [203411] = 5, + [203474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(3397), 1, - sym_statement_block, + STATE(3281), 1, + sym_class_body, STATE(6621), 1, sym_comment, - [203427] = 4, + [203490] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6622), 1, sym_comment, - ACTIONS(3414), 2, - anon_sym_else, - anon_sym_while, - [203441] = 5, + ACTIONS(10666), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [203504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, + STATE(3371), 1, + sym_statement_block, STATE(6623), 1, sym_comment, - STATE(6836), 1, - sym_statement_block, - [203457] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203520] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10706), 1, - sym_identifier, - ACTIONS(10708), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(2417), 1, + sym_class_body, STATE(6624), 1, sym_comment, - [203473] = 4, + [203536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6625), 1, sym_comment, - ACTIONS(10710), 2, - anon_sym_COMMA, - anon_sym_GT, - [203487] = 4, + ACTIONS(7473), 2, + anon_sym_in, + anon_sym_of, + [203550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4346), 1, + sym_formal_parameters, STATE(6626), 1, sym_comment, - ACTIONS(3420), 2, - anon_sym_else, - anon_sym_while, - [203501] = 5, + [203566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10712), 1, - anon_sym_SEMI, - ACTIONS(10714), 1, - sym__automatic_semicolon, STATE(6627), 1, sym_comment, - [203517] = 5, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [203580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(2565), 1, - sym_statement_block, + ACTIONS(10668), 1, + anon_sym_SEMI, + ACTIONS(10670), 1, + sym__automatic_semicolon, STATE(6628), 1, sym_comment, - [203533] = 5, + [203596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, STATE(6629), 1, sym_comment, - STATE(6656), 1, - sym_type_annotation, - [203549] = 5, + ACTIONS(5658), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10660), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_enum_body, STATE(6630), 1, sym_comment, - [203565] = 5, + ACTIONS(3508), 2, + anon_sym_else, + anon_sym_while, + [203624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7853), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_class_body, STATE(6631), 1, sym_comment, - [203581] = 4, + ACTIONS(3512), 2, + anon_sym_else, + anon_sym_while, + [203638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5105), 1, + anon_sym_LBRACE, + STATE(2419), 1, + sym_statement_block, STATE(6632), 1, sym_comment, - ACTIONS(3426), 2, - anon_sym_else, - anon_sym_while, - [203595] = 4, + [203654] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6633), 1, sym_comment, - ACTIONS(3430), 2, + ACTIONS(3514), 2, anon_sym_else, anon_sym_while, - [203609] = 5, + [203668] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9569), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_statement_block, STATE(6634), 1, sym_comment, - [203625] = 4, + ACTIONS(2065), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3390), 1, + sym_statement_block, STATE(6635), 1, sym_comment, - ACTIONS(3460), 2, - anon_sym_else, - anon_sym_while, - [203639] = 4, + [203698] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6636), 1, sym_comment, - ACTIONS(10716), 2, - anon_sym_COMMA, - anon_sym_GT, - [203653] = 5, + ACTIONS(3516), 2, + anon_sym_else, + anon_sym_while, + [203712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8755), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, - STATE(449), 1, + STATE(2420), 1, sym_statement_block, STATE(6637), 1, sym_comment, - [203669] = 5, + [203728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10718), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_statement_block, STATE(6638), 1, sym_comment, - [203685] = 5, + ACTIONS(10116), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203742] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, + ACTIONS(10672), 1, anon_sym_LBRACE, - STATE(3105), 1, + STATE(1556), 1, sym_statement_block, STATE(6639), 1, sym_comment, - [203701] = 4, + [203758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6640), 1, sym_comment, - ACTIONS(3436), 2, - anon_sym_else, - anon_sym_while, - [203715] = 5, + ACTIONS(10674), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203772] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(2998), 1, + STATE(2421), 1, sym_class_body, STATE(6641), 1, sym_comment, - [203731] = 5, + [203788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(2566), 1, - sym_class_body, STATE(6642), 1, sym_comment, - [203747] = 5, + ACTIONS(10676), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(3008), 1, - sym_statement_block, STATE(6643), 1, sym_comment, - [203763] = 4, + ACTIONS(9587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10678), 1, + anon_sym_SEMI, + ACTIONS(10680), 1, + sym__automatic_semicolon, STATE(6644), 1, sym_comment, - ACTIONS(3432), 2, - anon_sym_else, - anon_sym_while, - [203777] = 4, + [203832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10682), 1, + anon_sym_SEMI, + ACTIONS(10684), 1, + sym__automatic_semicolon, STATE(6645), 1, sym_comment, - ACTIONS(5500), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203791] = 5, + [203848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3410), 1, - sym_statement_block, STATE(6646), 1, sym_comment, - [203807] = 4, + ACTIONS(3516), 2, + anon_sym_else, + anon_sym_while, + [203862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2926), 1, + sym_class_body, STATE(6647), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_else, - anon_sym_while, - [203821] = 5, + [203878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(115), 1, - sym_parenthesized_expression, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(2925), 1, + sym_statement_block, STATE(6648), 1, sym_comment, - [203837] = 5, + [203894] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, - anon_sym_LPAREN, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_statement_block, STATE(6649), 1, sym_comment, - STATE(6707), 1, - sym_parenthesized_expression, - [203853] = 4, + [203910] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10686), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym_enum_body, STATE(6650), 1, sym_comment, - ACTIONS(3428), 2, - anon_sym_else, - anon_sym_while, - [203867] = 4, + [203926] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(2936), 1, + sym_class_body, STATE(6651), 1, sym_comment, - ACTIONS(3424), 2, - anon_sym_else, - anon_sym_while, - [203881] = 4, + [203942] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10688), 1, + sym_identifier, + ACTIONS(10690), 1, + sym_private_property_identifier, STATE(6652), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_else, - anon_sym_while, - [203895] = 5, + [203958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7845), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_class_body, STATE(6653), 1, sym_comment, - [203911] = 5, + ACTIONS(6735), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9569), 1, - anon_sym_LBRACE, - STATE(1013), 1, - sym_statement_block, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym_parenthesized_expression, STATE(6654), 1, sym_comment, - [203927] = 5, + [203988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10720), 1, - anon_sym_LBRACE, - STATE(1572), 1, - sym_statement_block, + ACTIONS(10398), 1, + anon_sym_LPAREN, + STATE(6521), 1, + sym_parenthesized_expression, STATE(6655), 1, sym_comment, - [203943] = 4, + [204004] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(9656), 1, + sym_identifier, + ACTIONS(9660), 1, + sym_private_property_identifier, STATE(6656), 1, sym_comment, - ACTIONS(10722), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [203957] = 5, + [204020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5250), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(2397), 1, + STATE(6406), 1, sym_statement_block, STATE(6657), 1, sym_comment, - [203973] = 4, + [204036] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3386), 1, + sym_statement_block, STATE(6658), 1, sym_comment, - ACTIONS(10724), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [203987] = 4, + [204052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6659), 1, sym_comment, - ACTIONS(10726), 2, + ACTIONS(6762), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [204001] = 5, + anon_sym_RBRACE, + [204066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(6660), 1, sym_comment, - STATE(7233), 1, - sym_formal_parameters, - [204017] = 4, + ACTIONS(3518), 2, + anon_sym_else, + anon_sym_while, + [204080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6661), 1, sym_comment, - ACTIONS(10728), 2, + ACTIONS(6758), 2, anon_sym_COMMA, anon_sym_RBRACE, - [204031] = 4, + [204094] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7611), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_class_body, STATE(6662), 1, sym_comment, - ACTIONS(5662), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204045] = 5, + [204110] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym_enum_body, STATE(6663), 1, sym_comment, - [204061] = 5, + ACTIONS(10692), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [204124] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(6596), 1, - sym__from_clause, STATE(6664), 1, sym_comment, - [204077] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3528), 2, + anon_sym_else, + anon_sym_while, + [204138] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10732), 1, - sym_identifier, - ACTIONS(10734), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6665), 1, sym_comment, - [204093] = 4, + ACTIONS(3532), 2, + anon_sym_else, + anon_sym_while, + [204152] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(6413), 1, + sym_statement_block, STATE(6666), 1, sym_comment, - ACTIONS(8599), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204107] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204168] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9730), 1, - sym_identifier, - ACTIONS(9734), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6667), 1, sym_comment, - [204123] = 5, + ACTIONS(3532), 2, + anon_sym_else, + anon_sym_while, + [204182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_COLON, - STATE(6658), 1, - sym_type_annotation, STATE(6668), 1, sym_comment, - [204139] = 4, + ACTIONS(3534), 2, + anon_sym_else, + anon_sym_while, + [204196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3361), 1, + sym_statement_block, STATE(6669), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [204153] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204212] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10738), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(6429), 1, + sym__from_clause, STATE(6670), 1, sym_comment, - [204169] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204228] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6671), 1, sym_comment, - ACTIONS(10740), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [204183] = 5, + ACTIONS(10694), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204242] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(10696), 1, anon_sym_LBRACE, + STATE(876), 1, + sym_statement_block, STATE(6672), 1, sym_comment, - STATE(6701), 1, - sym_statement_block, - [204199] = 5, + [204258] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(7653), 1, anon_sym_LBRACE, - STATE(2404), 1, + STATE(1385), 1, sym_class_body, STATE(6673), 1, sym_comment, - [204215] = 5, + [204274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(8799), 1, anon_sym_LBRACE, - STATE(5934), 1, + STATE(1386), 1, sym_statement_block, STATE(6674), 1, sym_comment, - [204231] = 4, + [204290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(97), 1, + sym_parenthesized_expression, STATE(6675), 1, sym_comment, - ACTIONS(6729), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204245] = 5, + [204306] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5504), 1, - sym__from_clause, STATE(6676), 1, sym_comment, - [204261] = 4, + ACTIONS(3546), 2, + anon_sym_else, + anon_sym_while, + [204320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6677), 1, sym_comment, - ACTIONS(6725), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204275] = 4, + ACTIONS(8589), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [204334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7653), 1, + anon_sym_LBRACE, + STATE(1388), 1, + sym_class_body, STATE(6678), 1, sym_comment, - ACTIONS(8494), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [204289] = 5, + [204350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym_parenthesized_expression, STATE(6679), 1, sym_comment, - STATE(6861), 1, - sym_statement_block, - [204305] = 4, + [204366] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6680), 1, sym_comment, - ACTIONS(6770), 2, + ACTIONS(10698), 2, anon_sym_COMMA, anon_sym_RBRACE, - [204319] = 4, + [204380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6681), 1, sym_comment, - ACTIONS(6721), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204333] = 4, + ACTIONS(3548), 2, + anon_sym_else, + anon_sym_while, + [204394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5498), 1, + sym__from_clause, STATE(6682), 1, sym_comment, - ACTIONS(6725), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204347] = 4, + [204410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6683), 1, sym_comment, - ACTIONS(10742), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204361] = 4, + ACTIONS(10093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6684), 1, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3552), 2, anon_sym_else, anon_sym_while, - [204375] = 4, + [204438] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6685), 1, sym_comment, - ACTIONS(3384), 2, + ACTIONS(3554), 2, anon_sym_else, anon_sym_while, - [204389] = 4, + [204452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6686), 1, sym_comment, - ACTIONS(10744), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204403] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10700), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204466] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10746), 1, - sym_identifier, - ACTIONS(10748), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6687), 1, sym_comment, - [204419] = 5, + ACTIONS(3566), 2, + anon_sym_else, + anon_sym_while, + [204480] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_class_body, + ACTIONS(10702), 1, + anon_sym_LPAREN, + STATE(974), 1, + sym_parenthesized_expression, STATE(6688), 1, sym_comment, - [204435] = 4, + [204496] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10704), 1, + anon_sym_SEMI, + ACTIONS(10706), 1, + sym__automatic_semicolon, STATE(6689), 1, sym_comment, - ACTIONS(5789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204449] = 4, + [204512] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3400), 1, + sym_statement_block, STATE(6690), 1, sym_comment, - ACTIONS(9755), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204463] = 4, + [204528] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10708), 1, + sym_identifier, + ACTIONS(10710), 1, + sym_private_property_identifier, STATE(6691), 1, sym_comment, - ACTIONS(3422), 2, - anon_sym_else, - anon_sym_while, - [204477] = 4, + [204544] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_class_body, STATE(6692), 1, sym_comment, - ACTIONS(3418), 2, - anon_sym_else, - anon_sym_while, - [204491] = 4, + [204560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6693), 1, sym_comment, - ACTIONS(5787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204505] = 5, + ACTIONS(6762), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204574] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10750), 1, - anon_sym_SEMI, - ACTIONS(10752), 1, - sym__automatic_semicolon, + ACTIONS(10712), 1, + sym_identifier, + ACTIONS(10714), 1, + anon_sym_STAR, STATE(6694), 1, sym_comment, - [204521] = 4, + [204590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6695), 1, sym_comment, - ACTIONS(10754), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204535] = 5, + ACTIONS(3566), 2, + anon_sym_else, + anon_sym_while, + [204604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10756), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym_statement_block, STATE(6696), 1, sym_comment, - [204551] = 4, + ACTIONS(3586), 2, + anon_sym_else, + anon_sym_while, + [204618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6697), 1, sym_comment, - ACTIONS(6737), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204565] = 5, + ACTIONS(3584), 2, + anon_sym_else, + anon_sym_while, + [204632] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3396), 1, - sym_statement_block, + ACTIONS(10716), 1, + sym_identifier, + ACTIONS(10718), 1, + sym_private_property_identifier, STATE(6698), 1, sym_comment, - [204581] = 4, + [204648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6699), 1, sym_comment, - ACTIONS(10758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204595] = 4, + ACTIONS(3582), 2, + anon_sym_else, + anon_sym_while, + [204662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(5144), 1, + sym_formal_parameters, STATE(6700), 1, sym_comment, - ACTIONS(3416), 2, - anon_sym_else, - anon_sym_while, - [204609] = 4, + [204678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6701), 1, sym_comment, - ACTIONS(6752), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204623] = 5, + ACTIONS(3566), 2, + anon_sym_else, + anon_sym_while, + [204692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_parenthesized_expression, STATE(6702), 1, sym_comment, - [204639] = 5, + ACTIONS(2225), 2, + anon_sym_else, + anon_sym_while, + [204706] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_LPAREN, - STATE(102), 1, - sym__for_header, + ACTIONS(10720), 1, + sym_identifier, + ACTIONS(10722), 1, + anon_sym_STAR, STATE(6703), 1, sym_comment, - [204655] = 5, + [204722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3408), 1, - sym_statement_block, STATE(6704), 1, sym_comment, - [204671] = 5, + ACTIONS(3580), 2, + anon_sym_else, + anon_sym_while, + [204736] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym__for_header, + ACTIONS(10724), 1, + sym_identifier, + ACTIONS(10726), 1, + sym_private_property_identifier, STATE(6705), 1, sym_comment, - [204687] = 5, + [204752] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, - anon_sym_LBRACE, - STATE(3283), 1, - sym_class_body, STATE(6706), 1, sym_comment, - [204703] = 5, + ACTIONS(5701), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204766] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10760), 1, - anon_sym_LBRACE, - STATE(6700), 1, - sym_switch_body, + ACTIONS(10728), 1, + sym_identifier, + ACTIONS(10730), 1, + sym_private_property_identifier, STATE(6707), 1, sym_comment, - [204719] = 4, + [204782] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10732), 1, + sym_identifier, + ACTIONS(10734), 1, + sym_private_property_identifier, STATE(6708), 1, sym_comment, - ACTIONS(3410), 2, - anon_sym_else, - anon_sym_while, - [204733] = 5, + [204798] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10762), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_switch_body, STATE(6709), 1, sym_comment, - [204749] = 4, + ACTIONS(3578), 2, + anon_sym_else, + anon_sym_while, + [204812] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10736), 1, + sym_identifier, + ACTIONS(10738), 1, + anon_sym_STAR, STATE(6710), 1, sym_comment, - ACTIONS(5570), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204763] = 4, + [204828] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10740), 1, + sym_identifier, + ACTIONS(10742), 1, + sym_private_property_identifier, STATE(6711), 1, sym_comment, - ACTIONS(3402), 2, - anon_sym_else, - anon_sym_while, - [204777] = 5, + [204844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9922), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym_statement_block, STATE(6712), 1, sym_comment, - STATE(7162), 1, - sym_formal_parameters, - [204793] = 4, + [204860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(4964), 1, + sym_class_body, STATE(6713), 1, sym_comment, - ACTIONS(10764), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [204807] = 4, + [204876] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10744), 1, + sym_identifier, + ACTIONS(10746), 1, + sym_private_property_identifier, STATE(6714), 1, sym_comment, - ACTIONS(6721), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204821] = 4, + [204892] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10748), 1, + anon_sym_SEMI, + ACTIONS(10750), 1, + sym__automatic_semicolon, STATE(6715), 1, sym_comment, - ACTIONS(5568), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204835] = 4, + [204908] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_class_body, STATE(6716), 1, sym_comment, - ACTIONS(6717), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204849] = 5, + [204924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6682), 1, - sym_statement_block, + ACTIONS(10752), 1, + anon_sym_SEMI, + ACTIONS(10754), 1, + sym__automatic_semicolon, STATE(6717), 1, sym_comment, - [204865] = 4, + [204940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7775), 1, + anon_sym_LBRACE, + STATE(6408), 1, + sym_class_body, STATE(6718), 1, sym_comment, - ACTIONS(10766), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204879] = 5, + [204956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5467), 1, - sym__from_clause, STATE(6719), 1, sym_comment, - [204895] = 4, + ACTIONS(3576), 2, + anon_sym_else, + anon_sym_while, + [204970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8737), 1, + anon_sym_LBRACE, + STATE(416), 1, + sym_statement_block, STATE(6720), 1, sym_comment, - ACTIONS(10768), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204909] = 4, + [204986] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, STATE(6721), 1, sym_comment, - ACTIONS(10770), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [204923] = 5, + [205002] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3363), 1, + STATE(3411), 1, sym_statement_block, STATE(6722), 1, sym_comment, - [204939] = 5, + [205018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(105), 1, - sym_parenthesized_expression, STATE(6723), 1, sym_comment, - [204955] = 4, + ACTIONS(3574), 2, + anon_sym_else, + anon_sym_while, + [205032] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6724), 1, sym_comment, - ACTIONS(6770), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204969] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3572), 2, + anon_sym_else, + anon_sym_while, + [205046] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10772), 1, - sym_identifier, - ACTIONS(10774), 1, - anon_sym_STAR, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5460), 1, + sym__from_clause, STATE(6725), 1, sym_comment, - [204985] = 5, + [205062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(6726), 1, sym_comment, - STATE(7427), 1, - sym_formal_parameters, - [205001] = 4, + ACTIONS(3564), 2, + anon_sym_else, + anon_sym_while, + [205076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7573), 1, + anon_sym_LBRACE, + STATE(1469), 1, + sym_class_body, STATE(6727), 1, sym_comment, - ACTIONS(10109), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [205015] = 5, + [205092] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6675), 1, - sym_statement_block, STATE(6728), 1, sym_comment, - [205031] = 5, + ACTIONS(3560), 2, + anon_sym_else, + anon_sym_while, + [205106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym__for_header, STATE(6729), 1, sym_comment, - [205047] = 5, + ACTIONS(9701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205120] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10776), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_switch_body, STATE(6730), 1, sym_comment, - [205063] = 4, + ACTIONS(3558), 2, + anon_sym_else, + anon_sym_while, + [205134] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6731), 1, sym_comment, - ACTIONS(3532), 2, + ACTIONS(3558), 2, anon_sym_else, anon_sym_while, - [205077] = 5, + [205148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7169), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4239), 1, - sym_formal_parameters, STATE(6732), 1, sym_comment, - [205093] = 4, + STATE(7303), 1, + sym_formal_parameters, + [205164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6733), 1, sym_comment, - ACTIONS(3408), 2, + ACTIONS(3556), 2, anon_sym_else, anon_sym_while, - [205107] = 4, + [205178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6734), 1, sym_comment, - ACTIONS(3480), 2, + ACTIONS(3550), 2, anon_sym_else, anon_sym_while, - [205121] = 4, + [205192] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9922), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_statement_block, STATE(6735), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_else, - anon_sym_while, - [205135] = 4, + [205208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5030), 1, + sym_class_body, STATE(6736), 1, sym_comment, - ACTIONS(3484), 2, - anon_sym_else, - anon_sym_while, - [205149] = 4, + [205224] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7945), 1, + anon_sym_LBRACE, + STATE(5181), 1, + sym_statement_block, STATE(6737), 1, sym_comment, - ACTIONS(5736), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205163] = 5, + [205240] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(119), 1, - sym_parenthesized_expression, + ACTIONS(10756), 1, + sym_identifier, + ACTIONS(10758), 1, + sym_private_property_identifier, STATE(6738), 1, sym_comment, - [205179] = 5, + [205256] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10778), 1, - anon_sym_LBRACE, - STATE(881), 1, - sym_statement_block, STATE(6739), 1, sym_comment, - [205195] = 5, + ACTIONS(10043), 2, + anon_sym_COMMA, + anon_sym_GT, + [205270] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(5329), 1, - sym_formal_parameters, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3382), 1, + sym_statement_block, STATE(6740), 1, sym_comment, - [205211] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205286] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10780), 1, - sym_identifier, - STATE(6285), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5038), 1, + sym_class_body, STATE(6741), 1, sym_comment, - [205227] = 4, + [205302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7725), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_class_body, STATE(6742), 1, sym_comment, - ACTIONS(10782), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205241] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205318] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10784), 1, - sym_identifier, - STATE(6308), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(3104), 1, + sym_statement_block, STATE(6743), 1, sym_comment, - [205257] = 4, + [205334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7775), 1, + anon_sym_LBRACE, + STATE(6468), 1, + sym_class_body, STATE(6744), 1, sym_comment, - ACTIONS(3398), 2, - anon_sym_else, - anon_sym_while, - [205271] = 4, + [205350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6745), 1, sym_comment, - ACTIONS(3390), 2, - anon_sym_else, - anon_sym_while, - [205285] = 5, + ACTIONS(10760), 2, + anon_sym_COMMA, + anon_sym_GT, + [205364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10786), 1, - anon_sym_SEMI, - ACTIONS(10788), 1, - sym__automatic_semicolon, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(5334), 1, + sym_formal_parameters, STATE(6746), 1, sym_comment, - [205301] = 5, + [205380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10790), 1, - anon_sym_SEMI, - ACTIONS(10792), 1, - sym__automatic_semicolon, STATE(6747), 1, sym_comment, - [205317] = 4, + ACTIONS(10762), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6748), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205331] = 4, + ACTIONS(3540), 2, + anon_sym_else, + anon_sym_while, + [205408] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10764), 1, + sym_identifier, + STATE(6209), 1, + sym_nested_identifier, STATE(6749), 1, sym_comment, - ACTIONS(10794), 2, - anon_sym_COMMA, - anon_sym_GT, - [205345] = 5, + [205424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7625), 1, + ACTIONS(7539), 1, anon_sym_LBRACE, + STATE(5090), 1, + sym_class_body, STATE(6750), 1, sym_comment, - STATE(6841), 1, - sym_class_body, - [205361] = 5, + [205440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3402), 1, - sym_statement_block, STATE(6751), 1, sym_comment, - [205377] = 4, + ACTIONS(6727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, STATE(6752), 1, sym_comment, - ACTIONS(5533), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205391] = 5, + STATE(6975), 1, + sym_statement_block, + [205470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(6383), 1, - sym__from_clause, STATE(6753), 1, sym_comment, - [205407] = 5, + ACTIONS(6723), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(9086), 1, anon_sym_LBRACE, - STATE(3398), 1, + STATE(381), 1, sym_statement_block, STATE(6754), 1, sym_comment, - [205423] = 4, + [205500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6755), 1, sym_comment, - ACTIONS(5668), 2, + ACTIONS(5770), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205437] = 5, + [205514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(6756), 1, sym_comment, - STATE(7325), 1, - sym_formal_parameters, - [205453] = 4, + ACTIONS(3540), 2, + anon_sym_else, + anon_sym_while, + [205528] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10766), 1, + sym_identifier, + ACTIONS(10768), 1, + sym_private_property_identifier, STATE(6757), 1, sym_comment, - ACTIONS(10796), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205467] = 5, + [205544] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7605), 1, - anon_sym_LBRACE, - STATE(1455), 1, - sym_class_body, + ACTIONS(10770), 1, + sym_identifier, + ACTIONS(10772), 1, + sym_private_property_identifier, STATE(6758), 1, sym_comment, - [205483] = 4, + [205560] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10774), 1, + sym_identifier, + ACTIONS(10776), 1, + sym_private_property_identifier, STATE(6759), 1, sym_comment, - ACTIONS(10798), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205497] = 5, + [205576] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10800), 1, - anon_sym_SEMI, - ACTIONS(10802), 1, - sym__automatic_semicolon, + ACTIONS(10778), 1, + sym_identifier, + ACTIONS(10780), 1, + sym_private_property_identifier, STATE(6760), 1, sym_comment, - [205513] = 5, + [205592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(7573), 1, anon_sym_LBRACE, - STATE(5864), 1, - sym_statement_block, + STATE(1516), 1, + sym_class_body, STATE(6761), 1, sym_comment, - [205529] = 5, + [205608] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(5379), 1, - sym_formal_parameters, STATE(6762), 1, sym_comment, - [205545] = 4, + STATE(7176), 1, + sym_formal_parameters, + [205624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6763), 1, sym_comment, - ACTIONS(6717), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205559] = 4, + ACTIONS(3540), 2, + anon_sym_else, + anon_sym_while, + [205638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6764), 1, sym_comment, - ACTIONS(10804), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205573] = 4, + ACTIONS(6703), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6765), 1, sym_comment, - ACTIONS(3382), 2, - anon_sym_else, - anon_sym_while, - [205587] = 4, + ACTIONS(10782), 2, + anon_sym_COMMA, + anon_sym_GT, + [205666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8723), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_statement_block, STATE(6766), 1, sym_comment, - ACTIONS(3380), 2, - anon_sym_else, - anon_sym_while, - [205601] = 5, + [205682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6714), 1, - sym_statement_block, + ACTIONS(10784), 1, + anon_sym_SEMI, + ACTIONS(10786), 1, + sym__automatic_semicolon, STATE(6767), 1, sym_comment, - [205617] = 4, + [205698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(5384), 1, + sym_formal_parameters, STATE(6768), 1, sym_comment, - ACTIONS(6737), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205631] = 5, + [205714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7197), 1, - anon_sym_LPAREN, - STATE(4051), 1, - sym_formal_parameters, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3395), 1, + sym_statement_block, STATE(6769), 1, sym_comment, - [205647] = 5, + [205730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, + ACTIONS(7539), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(5110), 1, sym_class_body, STATE(6770), 1, sym_comment, - [205663] = 5, + [205746] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(7945), 1, anon_sym_LBRACE, - STATE(4624), 1, + STATE(5186), 1, sym_statement_block, STATE(6771), 1, sym_comment, - [205679] = 5, + [205762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(7711), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym_class_body, STATE(6772), 1, sym_comment, - STATE(7155), 1, - sym_formal_parameters, - [205695] = 4, + [205778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5111), 1, + sym_class_body, STATE(6773), 1, sym_comment, - ACTIONS(5606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205709] = 5, + [205794] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym_parenthesized_expression, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(2942), 1, + sym_statement_block, STATE(6774), 1, sym_comment, - [205725] = 4, + [205810] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(6592), 1, + sym_statement_block, STATE(6775), 1, sym_comment, - ACTIONS(9845), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205739] = 5, + [205826] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(10788), 1, + sym_identifier, + STATE(6305), 1, + sym_nested_identifier, STATE(6776), 1, sym_comment, - STATE(7459), 1, - sym_formal_parameters, - [205755] = 5, + [205842] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10806), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_switch_body, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9950), 1, + anon_sym_GT, STATE(6777), 1, sym_comment, - [205771] = 4, + [205858] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6778), 1, sym_comment, - ACTIONS(10808), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205785] = 5, + STATE(7114), 1, + sym_formal_parameters, + [205874] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym__for_header, STATE(6779), 1, sym_comment, - [205801] = 5, + ACTIONS(3540), 2, + anon_sym_else, + anon_sym_while, + [205888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7725), 1, anon_sym_LBRACE, - STATE(3364), 1, - sym_statement_block, + STATE(383), 1, + sym_class_body, STATE(6780), 1, sym_comment, - [205817] = 5, + [205904] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(6781), 1, sym_comment, - STATE(7406), 1, - sym_formal_parameters, - [205833] = 4, + ACTIONS(2185), 2, + anon_sym_else, + anon_sym_while, + [205918] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1300), 1, + sym_class_body, STATE(6782), 1, sym_comment, - ACTIONS(10810), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205847] = 4, + [205934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6783), 1, sym_comment, - ACTIONS(10812), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205861] = 4, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6784), 1, sym_comment, - ACTIONS(10814), 2, + ACTIONS(10790), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205875] = 5, + [205962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(84), 1, - sym_parenthesized_expression, STATE(6785), 1, sym_comment, - [205891] = 5, + ACTIONS(3544), 2, + anon_sym_else, + anon_sym_while, + [205976] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10816), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym_statement_block, + ACTIONS(10792), 1, + sym_identifier, + ACTIONS(10794), 1, + sym_private_property_identifier, STATE(6786), 1, sym_comment, - [205907] = 5, + [205992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10818), 1, - anon_sym_in, - ACTIONS(10820), 1, - anon_sym_COLON, + ACTIONS(7945), 1, + anon_sym_LBRACE, + STATE(5659), 1, + sym_statement_block, STATE(6787), 1, sym_comment, - [205923] = 4, + [206008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6788), 1, sym_comment, - ACTIONS(10822), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205937] = 5, + STATE(7333), 1, + sym_formal_parameters, + [206024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(75), 1, - sym_parenthesized_expression, STATE(6789), 1, sym_comment, - [205953] = 5, + ACTIONS(3542), 2, + anon_sym_else, + anon_sym_while, + [206038] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3399), 1, + STATE(6661), 1, sym_statement_block, STATE(6790), 1, sym_comment, - [205969] = 5, + [206054] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7539), 1, anon_sym_LBRACE, - STATE(3415), 1, - sym_statement_block, + STATE(5658), 1, + sym_class_body, STATE(6791), 1, sym_comment, - [205985] = 5, + [206070] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3044), 1, + STATE(3369), 1, sym_statement_block, STATE(6792), 1, sym_comment, - [206001] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206086] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10824), 1, - sym_identifier, - STATE(6236), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6793), 1, sym_comment, - [206017] = 5, + ACTIONS(8695), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [206100] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym_parenthesized_expression, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3368), 1, + sym_statement_block, STATE(6794), 1, sym_comment, - [206033] = 4, + [206116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4230), 1, + anon_sym_COLON, + STATE(6525), 1, + sym_type_annotation, STATE(6795), 1, sym_comment, - ACTIONS(10826), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206047] = 4, + [206132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6796), 1, sym_comment, - ACTIONS(3440), 2, + ACTIONS(2195), 2, anon_sym_else, anon_sym_while, - [206061] = 5, + [206146] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(5105), 1, anon_sym_LBRACE, - STATE(3373), 1, + STATE(2423), 1, sym_statement_block, STATE(6797), 1, sym_comment, - [206077] = 5, + [206162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(3042), 1, - sym_class_body, STATE(6798), 1, sym_comment, - [206093] = 4, + STATE(6870), 1, + sym_statement_block, + [206178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5206), 1, + sym_class_body, STATE(6799), 1, sym_comment, - ACTIONS(6709), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206107] = 5, + [206194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6503), 1, - sym_statement_block, STATE(6800), 1, sym_comment, - [206123] = 4, + ACTIONS(10796), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206208] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6801), 1, sym_comment, - ACTIONS(3440), 2, + ACTIONS(3540), 2, anon_sym_else, anon_sym_while, - [206137] = 4, + [206222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9086), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_statement_block, STATE(6802), 1, sym_comment, - ACTIONS(10027), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206151] = 5, + [206238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7727), 1, anon_sym_LBRACE, - STATE(3368), 1, - sym_statement_block, + STATE(2424), 1, + sym_class_body, STATE(6803), 1, sym_comment, - [206167] = 5, + [206254] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3369), 1, - sym_statement_block, + ACTIONS(10798), 1, + sym_identifier, + ACTIONS(10800), 1, + sym_private_property_identifier, STATE(6804), 1, sym_comment, - [206183] = 5, + [206270] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3367), 1, - sym_statement_block, + ACTIONS(9194), 1, + anon_sym_from, + STATE(6389), 1, + sym__from_clause, STATE(6805), 1, sym_comment, - [206199] = 4, + [206286] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6806), 1, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3540), 2, anon_sym_else, anon_sym_while, - [206213] = 5, + [206300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(3391), 1, - sym_statement_block, + STATE(441), 1, + sym_class_body, STATE(6807), 1, sym_comment, - [206229] = 5, + [206316] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5630), 1, - sym__from_clause, + ACTIONS(10802), 1, + sym_identifier, + ACTIONS(10804), 1, + sym_private_property_identifier, STATE(6808), 1, sym_comment, - [206245] = 4, + [206332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6809), 1, sym_comment, - ACTIONS(10828), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206259] = 5, + ACTIONS(3538), 2, + anon_sym_else, + anon_sym_while, + [206346] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(5656), 1, + sym_statement_block, STATE(6810), 1, sym_comment, - STATE(7373), 1, - sym_formal_parameters, - [206275] = 5, + [206362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3385), 1, - sym_statement_block, STATE(6811), 1, sym_comment, - [206291] = 4, + ACTIONS(3468), 2, + anon_sym_else, + anon_sym_while, + [206376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10806), 1, + anon_sym_LBRACE, + STATE(3424), 1, + sym_statement_block, STATE(6812), 1, sym_comment, - ACTIONS(8412), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206305] = 4, + [206392] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6813), 1, sym_comment, - ACTIONS(5638), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206319] = 5, + ACTIONS(3530), 2, + anon_sym_else, + anon_sym_while, + [206406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6724), 1, - sym_statement_block, STATE(6814), 1, sym_comment, - [206335] = 4, + ACTIONS(3526), 2, + anon_sym_else, + anon_sym_while, + [206420] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10808), 1, + sym_identifier, + ACTIONS(10810), 1, + sym_private_property_identifier, STATE(6815), 1, sym_comment, - ACTIONS(5636), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206349] = 5, + [206436] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5444), 1, - sym__from_clause, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3410), 1, + sym_statement_block, STATE(6816), 1, sym_comment, - [206365] = 4, + [206452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5598), 1, + sym__from_clause, STATE(6817), 1, sym_comment, - ACTIONS(3378), 2, - anon_sym_else, - anon_sym_while, - [206379] = 5, + [206468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, + ACTIONS(7725), 1, anon_sym_LBRACE, - STATE(1166), 1, + STATE(356), 1, sym_class_body, STATE(6818), 1, sym_comment, - [206395] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206484] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10830), 1, - sym_identifier, - STATE(5641), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6819), 1, sym_comment, - [206411] = 4, + ACTIONS(3524), 2, + anon_sym_else, + anon_sym_while, + [206498] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10812), 1, + sym_identifier, + ACTIONS(10814), 1, + sym_private_property_identifier, STATE(6820), 1, sym_comment, - ACTIONS(9850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206425] = 5, + [206514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5433), 1, - sym__from_clause, + ACTIONS(7727), 1, + anon_sym_LBRACE, + STATE(3274), 1, + sym_class_body, STATE(6821), 1, sym_comment, - [206441] = 5, + [206530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(6614), 1, - sym__from_clause, STATE(6822), 1, sym_comment, - [206457] = 4, + ACTIONS(10816), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206544] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10818), 1, + anon_sym_SEMI, + ACTIONS(10820), 1, + sym__automatic_semicolon, STATE(6823), 1, sym_comment, - ACTIONS(3450), 2, - anon_sym_else, - anon_sym_while, - [206471] = 5, + [206560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9896), 1, - anon_sym_LBRACE, - STATE(1084), 1, - sym_statement_block, STATE(6824), 1, sym_comment, - [206487] = 4, + ACTIONS(10822), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206574] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6825), 1, sym_comment, - ACTIONS(10832), 2, + ACTIONS(10824), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206501] = 5, + [206588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10834), 1, - anon_sym_SEMI, - ACTIONS(10836), 1, - sym__automatic_semicolon, STATE(6826), 1, sym_comment, - [206517] = 5, + ACTIONS(10826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206602] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5159), 1, - sym_class_body, STATE(6827), 1, sym_comment, - [206533] = 5, + ACTIONS(9961), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9912), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_statement_block, STATE(6828), 1, sym_comment, - [206549] = 5, + ACTIONS(3522), 2, + anon_sym_else, + anon_sym_while, + [206630] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9912), 1, - anon_sym_LBRACE, - STATE(1177), 1, - sym_statement_block, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6829), 1, sym_comment, - [206565] = 5, + STATE(7451), 1, + sym_formal_parameters, + [206646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(9818), 1, anon_sym_LBRACE, - STATE(3388), 1, + STATE(1368), 1, sym_statement_block, STATE(6830), 1, sym_comment, - [206581] = 5, + [206662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(3028), 1, + STATE(355), 1, sym_class_body, STATE(6831), 1, sym_comment, - [206597] = 4, + [206678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6832), 1, sym_comment, - ACTIONS(3554), 2, + ACTIONS(3520), 2, anon_sym_else, anon_sym_while, - [206611] = 4, + [206692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6833), 1, sym_comment, - ACTIONS(8396), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206625] = 4, + ACTIONS(3510), 2, + anon_sym_else, + anon_sym_while, + [206706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7539), 1, + anon_sym_LBRACE, + STATE(5300), 1, + sym_class_body, STATE(6834), 1, sym_comment, - ACTIONS(8398), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206639] = 5, + [206722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - STATE(5938), 1, - sym_statement_block, STATE(6835), 1, sym_comment, - [206655] = 4, + ACTIONS(10828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10830), 1, + anon_sym_SEMI, + ACTIONS(10832), 1, + sym__automatic_semicolon, STATE(6836), 1, sym_comment, - ACTIONS(3462), 2, - anon_sym_else, - anon_sym_while, - [206669] = 5, + [206752] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8755), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_statement_block, STATE(6837), 1, sym_comment, - [206685] = 4, + ACTIONS(3506), 2, + anon_sym_else, + anon_sym_while, + [206766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6838), 1, sym_comment, - ACTIONS(3464), 2, - anon_sym_else, - anon_sym_while, - [206699] = 4, + STATE(7379), 1, + sym_formal_parameters, + [206782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10568), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym__for_header, STATE(6839), 1, sym_comment, - ACTIONS(2127), 2, - anon_sym_else, - anon_sym_while, - [206713] = 5, + [206798] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, - anon_sym_LPAREN, - STATE(6730), 1, - sym_parenthesized_expression, STATE(6840), 1, sym_comment, - [206729] = 4, + ACTIONS(10834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206812] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10836), 1, + anon_sym_SEMI, + ACTIONS(10838), 1, + sym__automatic_semicolon, STATE(6841), 1, sym_comment, - ACTIONS(3548), 2, - anon_sym_else, - anon_sym_while, - [206743] = 5, + [206828] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_DOT, - ACTIONS(10838), 1, - anon_sym_GT, STATE(6842), 1, sym_comment, - [206759] = 4, + ACTIONS(3498), 2, + anon_sym_else, + anon_sym_while, + [206842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6843), 1, sym_comment, - ACTIONS(3562), 2, + ACTIONS(3492), 2, anon_sym_else, anon_sym_while, - [206773] = 4, + [206856] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8797), 1, + anon_sym_DOT, + ACTIONS(10840), 1, + anon_sym_GT, STATE(6844), 1, sym_comment, - ACTIONS(3564), 2, - anon_sym_else, - anon_sym_while, - [206787] = 4, + [206872] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10842), 1, + sym_identifier, + STATE(6242), 1, + sym_nested_identifier, STATE(6845), 1, sym_comment, - ACTIONS(3472), 2, - anon_sym_else, - anon_sym_while, - [206801] = 5, + [206888] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(10004), 1, - anon_sym_GT, STATE(6846), 1, sym_comment, - [206817] = 5, + ACTIONS(3488), 2, + anon_sym_else, + anon_sym_while, + [206902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, + ACTIONS(7597), 1, anon_sym_LBRACE, - STATE(5296), 1, - sym_statement_block, + STATE(1100), 1, + sym_class_body, STATE(6847), 1, sym_comment, - [206833] = 4, + [206918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6848), 1, sym_comment, - ACTIONS(3566), 2, - anon_sym_else, - anon_sym_while, - [206847] = 4, + ACTIONS(10844), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206932] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6849), 1, sym_comment, - ACTIONS(3444), 2, - anon_sym_else, - anon_sym_while, - [206861] = 5, + STATE(7371), 1, + sym_formal_parameters, + [206948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10840), 1, - anon_sym_LBRACE, - STATE(5241), 1, - sym_enum_body, STATE(6850), 1, sym_comment, - [206877] = 5, + ACTIONS(3484), 2, + anon_sym_else, + anon_sym_while, + [206962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5605), 1, - sym__from_clause, STATE(6851), 1, sym_comment, - [206893] = 5, + ACTIONS(10846), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7553), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3300), 1, - sym_class_body, + STATE(3383), 1, + sym_statement_block, STATE(6852), 1, sym_comment, - [206909] = 5, + [206992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10842), 1, - anon_sym_SEMI, - ACTIONS(10844), 1, - sym__automatic_semicolon, + ACTIONS(10848), 1, + anon_sym_LBRACE, + STATE(1310), 1, + sym_switch_body, STATE(6853), 1, sym_comment, - [206925] = 5, + [207008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5394), 1, - anon_sym_LPAREN, - STATE(3036), 1, - sym_arguments, + ACTIONS(8805), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_statement_block, STATE(6854), 1, sym_comment, - [206941] = 4, + [207024] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5463), 1, + sym__from_clause, STATE(6855), 1, sym_comment, - ACTIONS(3568), 2, - anon_sym_else, - anon_sym_while, - [206955] = 5, + [207040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, - STATE(5182), 1, - sym_formal_parameters, + ACTIONS(7597), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_class_body, STATE(6856), 1, sym_comment, - [206971] = 5, + [207056] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, STATE(6857), 1, sym_comment, - STATE(7086), 1, - sym_formal_parameters, - [206987] = 5, + ACTIONS(3482), 2, + anon_sym_else, + anon_sym_while, + [207070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9027), 1, - anon_sym_in, - ACTIONS(9029), 1, - anon_sym_of, STATE(6858), 1, sym_comment, - [207003] = 4, + ACTIONS(10850), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6859), 1, sym_comment, - ACTIONS(10846), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207017] = 4, + ACTIONS(10852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207098] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7775), 1, + anon_sym_LBRACE, + STATE(6373), 1, + sym_class_body, STATE(6860), 1, sym_comment, - ACTIONS(3510), 2, - anon_sym_else, - anon_sym_while, - [207031] = 4, + [207114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6861), 1, sym_comment, - ACTIONS(6764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207045] = 5, + ACTIONS(3480), 2, + anon_sym_else, + anon_sym_while, + [207128] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(10854), 1, anon_sym_LBRACE, - STATE(6748), 1, - sym_statement_block, + STATE(6840), 1, + sym_object, STATE(6862), 1, sym_comment, - [207061] = 5, + [207144] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(2979), 1, + sym_statement_block, STATE(6863), 1, sym_comment, - STATE(7049), 1, - sym_formal_parameters, - [207077] = 5, + [207160] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9896), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(3406), 1, sym_statement_block, STATE(6864), 1, sym_comment, - [207093] = 5, + [207176] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5269), 1, - sym_class_body, STATE(6865), 1, sym_comment, - [207109] = 5, + ACTIONS(10856), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207190] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(5200), 1, + STATE(3403), 1, sym_statement_block, STATE(6866), 1, sym_comment, - [207125] = 5, + [207206] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(5281), 1, - sym_class_body, + STATE(5653), 1, + sym_statement_block, STATE(6867), 1, sym_comment, - [207141] = 5, + [207222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_class_body, STATE(6868), 1, sym_comment, - [207157] = 5, + ACTIONS(3474), 2, + anon_sym_else, + anon_sym_while, + [207236] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7649), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(2983), 1, sym_class_body, STATE(6869), 1, sym_comment, - [207173] = 5, + [207252] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5359), 1, - sym_class_body, STATE(6870), 1, sym_comment, - [207189] = 4, + ACTIONS(6754), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8073), 1, + anon_sym_LBRACE, + STATE(6653), 1, + sym_statement_block, STATE(6871), 1, sym_comment, - ACTIONS(3512), 2, - anon_sym_else, - anon_sym_while, - [207203] = 4, + [207282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6872), 1, sym_comment, - ACTIONS(3574), 2, - anon_sym_else, - anon_sym_while, - [207217] = 5, + ACTIONS(9321), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8909), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_statement_block, STATE(6873), 1, sym_comment, - [207233] = 4, + ACTIONS(9934), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207310] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5454), 1, + sym__from_clause, STATE(6874), 1, sym_comment, - ACTIONS(5634), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207247] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207326] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10848), 1, - sym_identifier, - STATE(5987), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6875), 1, sym_comment, - [207263] = 4, + ACTIONS(9706), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6876), 1, sym_comment, - ACTIONS(10850), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207277] = 4, + ACTIONS(3454), 2, + anon_sym_else, + anon_sym_while, + [207354] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(6573), 1, + sym__from_clause, STATE(6877), 1, sym_comment, - ACTIONS(2147), 2, - anon_sym_else, - anon_sym_while, - [207291] = 5, + [207370] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7605), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(1498), 1, - sym_class_body, + STATE(6659), 1, + sym_statement_block, STATE(6878), 1, sym_comment, - [207307] = 5, + [207386] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10852), 1, + ACTIONS(9762), 1, sym_identifier, - ACTIONS(10854), 1, + ACTIONS(9766), 1, sym_private_property_identifier, STATE(6879), 1, sym_comment, - [207323] = 4, + [207402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_statement_block, STATE(6880), 1, sym_comment, - ACTIONS(3516), 2, - anon_sym_else, - anon_sym_while, - [207337] = 5, + [207418] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10856), 1, - sym_identifier, ACTIONS(10858), 1, + sym_identifier, + ACTIONS(10860), 1, sym_private_property_identifier, STATE(6881), 1, sym_comment, - [207353] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207434] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10860), 1, - sym_identifier, - ACTIONS(10862), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6882), 1, sym_comment, - [207369] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3452), 2, + anon_sym_else, + anon_sym_while, + [207448] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10864), 1, - sym_identifier, - ACTIONS(10866), 1, - sym_private_property_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6883), 1, sym_comment, - [207385] = 5, + ACTIONS(3450), 2, + anon_sym_else, + anon_sym_while, + [207462] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_COLON, + STATE(5980), 1, + sym_type_annotation, STATE(6884), 1, sym_comment, - STATE(7026), 1, - sym_formal_parameters, - [207401] = 4, + [207478] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10862), 1, + sym_identifier, + ACTIONS(10864), 1, + sym_private_property_identifier, STATE(6885), 1, sym_comment, - ACTIONS(10868), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207415] = 4, + [207494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7653), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_class_body, STATE(6886), 1, sym_comment, - ACTIONS(10870), 2, - anon_sym_COMMA, - anon_sym_GT, - [207429] = 5, + [207510] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10872), 1, - anon_sym_SEMI, - ACTIONS(10874), 1, - sym__automatic_semicolon, + ACTIONS(10866), 1, + sym_identifier, + STATE(5999), 1, + sym_nested_identifier, STATE(6887), 1, sym_comment, - [207445] = 5, + [207526] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5335), 1, - sym_class_body, + ACTIONS(10398), 1, + anon_sym_LPAREN, + STATE(6609), 1, + sym_parenthesized_expression, STATE(6888), 1, sym_comment, - [207461] = 4, + [207542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6889), 1, sym_comment, - ACTIONS(3524), 2, + ACTIONS(3446), 2, anon_sym_else, anon_sym_while, - [207475] = 4, + [207556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7725), 1, + anon_sym_LBRACE, + STATE(371), 1, + sym_class_body, STATE(6890), 1, sym_comment, - ACTIONS(3526), 2, - anon_sym_else, - anon_sym_while, - [207489] = 5, + [207572] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(99), 1, - sym_parenthesized_expression, + ACTIONS(10636), 1, + anon_sym_LBRACE, + STATE(1187), 1, + sym_statement_block, STATE(6891), 1, sym_comment, - [207505] = 5, + [207588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, - anon_sym_LPAREN, - STATE(6709), 1, - sym_parenthesized_expression, STATE(6892), 1, sym_comment, - [207521] = 5, + ACTIONS(10868), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207602] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7965), 1, - anon_sym_LBRACE, - STATE(5212), 1, - sym_statement_block, + ACTIONS(10870), 1, + anon_sym_SEMI, + ACTIONS(10872), 1, + sym__automatic_semicolon, STATE(6893), 1, sym_comment, - [207537] = 4, + [207618] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10874), 1, + anon_sym_LPAREN, + STATE(1080), 1, + sym_parenthesized_expression, STATE(6894), 1, sym_comment, - ACTIONS(3526), 2, - anon_sym_else, - anon_sym_while, - [207551] = 5, + [207634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5326), 1, - sym_class_body, STATE(6895), 1, sym_comment, - [207567] = 5, + ACTIONS(3444), 2, + anon_sym_else, + anon_sym_while, + [207648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10876), 1, - anon_sym_SEMI, - ACTIONS(10878), 1, - sym__automatic_semicolon, STATE(6896), 1, sym_comment, - [207583] = 5, + ACTIONS(3442), 2, + anon_sym_else, + anon_sym_while, + [207662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10880), 1, - anon_sym_SEMI, - ACTIONS(10882), 1, - sym__automatic_semicolon, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym_parenthesized_expression, STATE(6897), 1, sym_comment, - [207599] = 5, + [207678] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5477), 1, - sym__from_clause, + ACTIONS(10398), 1, + anon_sym_LPAREN, + STATE(6853), 1, + sym_parenthesized_expression, STATE(6898), 1, sym_comment, - [207615] = 5, + [207694] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3375), 1, - sym_statement_block, STATE(6899), 1, sym_comment, - [207631] = 5, + ACTIONS(3436), 2, + anon_sym_else, + anon_sym_while, + [207708] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_class_body, + ACTIONS(10876), 1, + sym_identifier, + ACTIONS(10878), 1, + sym_private_property_identifier, STATE(6900), 1, sym_comment, - [207647] = 5, + [207724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10884), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(883), 1, - sym_statement_block, + STATE(2996), 1, + sym_class_body, STATE(6901), 1, sym_comment, - [207663] = 4, + [207740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6902), 1, sym_comment, - ACTIONS(3528), 2, + ACTIONS(3434), 2, anon_sym_else, anon_sym_while, - [207677] = 4, + [207754] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10686), 1, + anon_sym_LBRACE, + STATE(1506), 1, + sym_enum_body, STATE(6903), 1, sym_comment, - ACTIONS(6701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207691] = 5, + [207770] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3377), 1, - sym_statement_block, STATE(6904), 1, sym_comment, - [207707] = 5, + ACTIONS(3432), 2, + anon_sym_else, + anon_sym_while, + [207784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(6375), 1, - sym__from_clause, + ACTIONS(10880), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_enum_body, STATE(6905), 1, sym_comment, - [207723] = 4, + [207800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3379), 1, + sym_statement_block, STATE(6906), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207737] = 4, + [207816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3378), 1, + sym_statement_block, STATE(6907), 1, sym_comment, - ACTIONS(10886), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207751] = 5, + [207832] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6514), 1, - sym_statement_block, STATE(6908), 1, sym_comment, - [207767] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8609), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [207846] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, STATE(6909), 1, sym_comment, - ACTIONS(4038), 2, - sym_jsx_identifier, - sym_identifier, - [207781] = 5, + ACTIONS(9186), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207860] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(92), 1, - sym_parenthesized_expression, STATE(6910), 1, sym_comment, - [207797] = 4, + ACTIONS(3430), 2, + anon_sym_else, + anon_sym_while, + [207874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(6344), 1, + sym__from_clause, STATE(6911), 1, sym_comment, - ACTIONS(10888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207811] = 5, + [207890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8786), 1, + ACTIONS(10174), 1, anon_sym_LBRACE, - STATE(1186), 1, + STATE(946), 1, sym_statement_block, STATE(6912), 1, sym_comment, - [207827] = 4, + [207906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6913), 1, sym_comment, - ACTIONS(9331), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207841] = 4, + ACTIONS(8519), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [207920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5629), 1, + sym__from_clause, STATE(6914), 1, sym_comment, - ACTIONS(3544), 2, - anon_sym_else, - anon_sym_while, - [207855] = 5, + [207936] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7543), 1, - anon_sym_LBRACE, - STATE(1185), 1, - sym_class_body, STATE(6915), 1, sym_comment, - [207871] = 4, + ACTIONS(10882), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6916), 1, sym_comment, - ACTIONS(3546), 2, + ACTIONS(2299), 2, anon_sym_else, anon_sym_while, - [207885] = 5, + [207964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_LBRACE, - STATE(5260), 1, - sym_class_body, STATE(6917), 1, sym_comment, - [207901] = 5, + ACTIONS(3424), 2, + anon_sym_else, + anon_sym_while, + [207978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5515), 1, - sym__from_clause, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym_statement_block, STATE(6918), 1, sym_comment, - [207917] = 4, + [207994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6919), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [207931] = 4, + STATE(7286), 1, + sym_formal_parameters, + [208010] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8737), 1, + anon_sym_LBRACE, + STATE(392), 1, + sym_statement_block, STATE(6920), 1, sym_comment, - ACTIONS(6705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207945] = 5, + [208026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(2972), 1, - sym_statement_block, + ACTIONS(8797), 1, + anon_sym_DOT, + ACTIONS(10884), 1, + anon_sym_GT, STATE(6921), 1, sym_comment, - [207961] = 5, + [208042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(5607), 1, - sym__from_clause, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_statement_block, STATE(6922), 1, sym_comment, - [207977] = 5, + [208058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3374), 1, + STATE(3362), 1, sym_statement_block, STATE(6923), 1, sym_comment, - [207993] = 5, + [208074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8909), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_statement_block, STATE(6924), 1, sym_comment, - [208009] = 5, + ACTIONS(2299), 2, + anon_sym_else, + anon_sym_while, + [208088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(2968), 1, - sym_statement_block, STATE(6925), 1, sym_comment, - [208025] = 5, + ACTIONS(3422), 2, + anon_sym_else, + anon_sym_while, + [208102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10890), 1, - anon_sym_LBRACE, - STATE(6759), 1, - sym_object, STATE(6926), 1, sym_comment, - [208041] = 5, + ACTIONS(3412), 2, + anon_sym_else, + anon_sym_while, + [208116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9121), 1, - anon_sym_from, - STATE(6896), 1, - sym__from_clause, + ACTIONS(9630), 1, + anon_sym_COLON, + ACTIONS(9912), 1, + anon_sym_GT, STATE(6927), 1, sym_comment, - [208057] = 5, + [208132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5606), 1, + sym__from_clause, STATE(6928), 1, sym_comment, - STATE(7353), 1, - sym_formal_parameters, - [208073] = 4, + [208148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6929), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208087] = 5, + STATE(7173), 1, + sym_formal_parameters, + [208164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_parenthesized_expression, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1181), 1, + sym_class_body, STATE(6930), 1, sym_comment, - [208103] = 4, + [208180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10886), 1, + anon_sym_SEMI, + ACTIONS(10888), 1, + sym__automatic_semicolon, STATE(6931), 1, sym_comment, - ACTIONS(10892), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208117] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208196] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10894), 1, - sym_identifier, - STATE(5696), 1, - sym_nested_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10890), 1, + anon_sym_SEMI, + ACTIONS(10892), 1, + sym__automatic_semicolon, STATE(6932), 1, sym_comment, - [208133] = 5, + [208212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10536), 1, + ACTIONS(8073), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(6434), 1, sym_statement_block, STATE(6933), 1, sym_comment, - [208149] = 5, + [208228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10840), 1, - anon_sym_LBRACE, - STATE(4880), 1, - sym_enum_body, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6934), 1, sym_comment, - [208165] = 5, + STATE(7206), 1, + sym_formal_parameters, + [208244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3381), 1, - sym_statement_block, + ACTIONS(10894), 1, + anon_sym_SEMI, + ACTIONS(10896), 1, + sym__automatic_semicolon, STATE(6935), 1, sym_comment, - [208181] = 5, + [208260] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3406), 1, + STATE(3364), 1, sym_statement_block, STATE(6936), 1, sym_comment, - [208197] = 5, + [208276] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(10898), 1, + anon_sym_SEMI, + ACTIONS(10900), 1, + sym__automatic_semicolon, STATE(6937), 1, sym_comment, - STATE(7291), 1, - sym_formal_parameters, - [208213] = 5, + [208292] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_class_body, + ACTIONS(10902), 1, + sym_identifier, + STATE(5702), 1, + sym_nested_identifier, STATE(6938), 1, sym_comment, - [208229] = 5, + [208308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, + ACTIONS(10880), 1, anon_sym_LBRACE, - STATE(6763), 1, - sym_statement_block, + STATE(5274), 1, + sym_enum_body, STATE(6939), 1, sym_comment, - [208245] = 5, + [208324] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10896), 1, - anon_sym_SEMI, - ACTIONS(10898), 1, - sym__automatic_semicolon, + ACTIONS(7945), 1, + anon_sym_LBRACE, + STATE(5270), 1, + sym_statement_block, STATE(6940), 1, sym_comment, - [208261] = 4, + [208340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3416), 1, + sym_statement_block, STATE(6941), 1, sym_comment, - ACTIONS(10900), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208275] = 5, + [208356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, + ACTIONS(5370), 1, anon_sym_LPAREN, + STATE(3005), 1, + sym_arguments, STATE(6942), 1, sym_comment, - STATE(7248), 1, - sym_formal_parameters, - [208291] = 5, + [208372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_class_body, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6943), 1, sym_comment, - [208307] = 5, + STATE(7072), 1, + sym_formal_parameters, + [208388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10902), 1, - anon_sym_LPAREN, - STATE(1143), 1, - sym_parenthesized_expression, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_class_body, STATE(6944), 1, sym_comment, - [208323] = 4, + [208404] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(85), 1, + sym_parenthesized_expression, STATE(6945), 1, sym_comment, - ACTIONS(9549), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208337] = 5, + [208420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7193), 1, - anon_sym_LPAREN, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym_statement_block, STATE(6946), 1, sym_comment, - STATE(7272), 1, - sym_formal_parameters, - [208353] = 4, + [208436] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, + ACTIONS(10904), 1, + sym_identifier, + STATE(5993), 1, + sym_nested_identifier, STATE(6947), 1, sym_comment, - ACTIONS(10904), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208367] = 5, + [208452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10400), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(6777), 1, - sym_parenthesized_expression, STATE(6948), 1, sym_comment, - [208383] = 5, + STATE(7027), 1, + sym_formal_parameters, + [208468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10396), 1, - anon_sym_LPAREN, - STATE(108), 1, - sym_parenthesized_expression, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3360), 1, + sym_statement_block, STATE(6949), 1, sym_comment, - [208399] = 4, + [208484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8805), 1, + anon_sym_LBRACE, + STATE(1145), 1, + sym_statement_block, STATE(6950), 1, sym_comment, - ACTIONS(3576), 2, - anon_sym_else, - anon_sym_while, - [208413] = 5, + [208500] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10718), 1, - anon_sym_LBRACE, - STATE(1221), 1, - sym_statement_block, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(4932), 1, + sym_formal_parameters, STATE(6951), 1, sym_comment, - [208429] = 5, + [208516] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7735), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_class_body, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6952), 1, sym_comment, - [208445] = 5, + STATE(7156), 1, + sym_formal_parameters, + [208532] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7597), 1, anon_sym_LBRACE, - STATE(3404), 1, - sym_statement_block, + STATE(1143), 1, + sym_class_body, STATE(6953), 1, sym_comment, - [208461] = 4, + [208548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6954), 1, sym_comment, - ACTIONS(3578), 2, - anon_sym_else, - anon_sym_while, - [208475] = 4, + ACTIONS(5474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208562] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6955), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [208489] = 4, + ACTIONS(5472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6956), 1, sym_comment, - ACTIONS(3550), 2, - anon_sym_else, - anon_sym_while, - [208503] = 4, + ACTIONS(10906), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6957), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [208517] = 4, + ACTIONS(10908), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6958), 1, sym_comment, - ACTIONS(3552), 2, - anon_sym_else, - anon_sym_while, - [208531] = 5, + ACTIONS(10910), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [208618] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_class_body, + ACTIONS(10568), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym__for_header, STATE(6959), 1, sym_comment, - [208547] = 5, + [208634] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(5088), 1, - sym_class_body, + STATE(1426), 1, + sym_switch_body, STATE(6960), 1, sym_comment, - [208563] = 4, + [208650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_statement_block, STATE(6961), 1, sym_comment, - ACTIONS(10906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208577] = 5, + [208666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10908), 1, - anon_sym_SEMI, - ACTIONS(10910), 1, - sym__automatic_semicolon, + ACTIONS(9563), 1, + anon_sym_LBRACE, + STATE(1140), 1, + sym_statement_block, STATE(6962), 1, sym_comment, - [208593] = 5, + [208682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(6126), 1, - sym_type_annotation, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5412), 1, + sym__from_clause, STATE(6963), 1, sym_comment, - [208609] = 5, + [208698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10912), 1, + ACTIONS(4175), 1, anon_sym_LPAREN, - STATE(1204), 1, - sym_parenthesized_expression, + STATE(5623), 1, + sym_arguments, STATE(6964), 1, sym_comment, - [208625] = 4, + [208714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6965), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [208639] = 4, + ACTIONS(5462), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10672), 1, + anon_sym_LBRACE, + STATE(1483), 1, + sym_statement_block, STATE(6966), 1, sym_comment, - ACTIONS(6705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208653] = 5, + [208744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_DOT, - ACTIONS(10914), 1, - anon_sym_GT, STATE(6967), 1, sym_comment, - [208669] = 4, + ACTIONS(9822), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9194), 1, + anon_sym_from, + STATE(5433), 1, + sym__from_clause, STATE(6968), 1, sym_comment, - ACTIONS(3556), 2, - anon_sym_else, - anon_sym_while, - [208683] = 5, + [208774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, - anon_sym_COLON, - ACTIONS(9924), 1, - anon_sym_GT, + ACTIONS(9194), 1, + anon_sym_from, + STATE(6932), 1, + sym__from_clause, STATE(6969), 1, sym_comment, - [208699] = 4, + [208790] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10914), 1, + anon_sym_LPAREN, + STATE(1307), 1, + sym_parenthesized_expression, STATE(6970), 1, sym_comment, - ACTIONS(3530), 2, - anon_sym_else, - anon_sym_while, - [208713] = 5, + [208806] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6768), 1, - sym_statement_block, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym_parenthesized_expression, STATE(6971), 1, sym_comment, - [208729] = 4, + [208822] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3409), 1, + sym_statement_block, STATE(6972), 1, sym_comment, - ACTIONS(9920), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208743] = 5, + [208838] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10720), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(1548), 1, - sym_statement_block, + STATE(358), 1, + sym_class_body, STATE(6973), 1, sym_comment, - [208759] = 5, + [208854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4849), 1, - anon_sym_LBRACE, - STATE(2933), 1, - sym_statement_block, STATE(6974), 1, sym_comment, - [208775] = 5, + ACTIONS(10916), 2, + anon_sym_COMMA, + anon_sym_GT, + [208868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8049), 1, - anon_sym_LBRACE, - STATE(6799), 1, - sym_statement_block, STATE(6975), 1, sym_comment, - [208791] = 5, + ACTIONS(6711), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7589), 1, + ACTIONS(10918), 1, anon_sym_LBRACE, - STATE(2932), 1, - sym_class_body, + STATE(888), 1, + sym_statement_block, STATE(6976), 1, sym_comment, - [208807] = 4, + [208898] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6977), 1, sym_comment, - ACTIONS(3558), 2, - anon_sym_else, - anon_sym_while, - [208821] = 4, + ACTIONS(10920), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6978), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(3472), 2, anon_sym_else, anon_sym_while, - [208835] = 4, + [208926] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, STATE(6979), 1, sym_comment, - ACTIONS(10916), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [208849] = 4, + ACTIONS(4040), 2, + sym_jsx_identifier, + sym_identifier, + [208940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10922), 1, + anon_sym_LBRACE, + STATE(884), 1, + sym_statement_block, STATE(6980), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [208863] = 4, + [208956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_parenthesized_expression, STATE(6981), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_else, - anon_sym_while, - [208877] = 4, + [208972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(3052), 1, + sym_statement_block, STATE(6982), 1, sym_comment, - ACTIONS(3580), 2, - anon_sym_else, - anon_sym_while, - [208891] = 5, + [208988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, - anon_sym_LBRACE, - STATE(3414), 1, - sym_statement_block, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(118), 1, + sym_parenthesized_expression, STATE(6983), 1, sym_comment, - [208907] = 4, + [209004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4847), 1, + anon_sym_LBRACE, + STATE(3057), 1, + sym_statement_block, STATE(6984), 1, sym_comment, - ACTIONS(3560), 2, - anon_sym_else, - anon_sym_while, - [208921] = 4, + [209020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, STATE(6985), 1, sym_comment, - ACTIONS(3584), 2, - anon_sym_else, - anon_sym_while, - [208935] = 5, + ACTIONS(10924), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209034] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1464), 1, - sym_enum_body, + ACTIONS(7205), 1, + anon_sym_LPAREN, + STATE(4044), 1, + sym_formal_parameters, STATE(6986), 1, sym_comment, - [208951] = 5, + [209050] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7711), 1, anon_sym_LBRACE, - STATE(3362), 1, - sym_statement_block, + STATE(3061), 1, + sym_class_body, STATE(6987), 1, sym_comment, - [208967] = 5, + [209066] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8240), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(3405), 1, - sym_statement_block, + STATE(1211), 1, + sym_class_body, STATE(6988), 1, sym_comment, - [208983] = 4, + [209082] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_LPAREN, STATE(6989), 1, sym_comment, - ACTIONS(3582), 2, - anon_sym_else, - anon_sym_while, - [208997] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7171), 1, + sym_formal_parameters, + [209098] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10918), 1, - sym_regex_pattern, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3373), 1, + sym_statement_block, STATE(6990), 1, sym_comment, - [209010] = 4, + [209114] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10920), 1, - anon_sym_EQ_GT, + ACTIONS(9563), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_statement_block, STATE(6991), 1, sym_comment, - [209023] = 4, + [209130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10922), 1, - anon_sym_EQ_GT, STATE(6992), 1, sym_comment, - [209036] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209144] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10924), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10398), 1, + anon_sym_LPAREN, + STATE(6960), 1, + sym_parenthesized_expression, STATE(6993), 1, sym_comment, - [209049] = 4, + [209160] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10926), 1, - anon_sym_EQ_GT, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym_parenthesized_expression, STATE(6994), 1, sym_comment, - [209062] = 4, + [209176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10928), 1, - anon_sym_EQ_GT, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_class_body, STATE(6995), 1, sym_comment, - [209075] = 4, + [209192] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10930), 1, - anon_sym_EQ_GT, + ACTIONS(10926), 1, + sym_identifier, STATE(6996), 1, sym_comment, - [209088] = 4, + [209205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10932), 1, - anon_sym_RPAREN, + ACTIONS(10928), 1, + anon_sym_EQ_GT, STATE(6997), 1, sym_comment, - [209101] = 4, + [209218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9924), 1, - anon_sym_GT, + ACTIONS(10930), 1, + anon_sym_EQ_GT, STATE(6998), 1, sym_comment, - [209114] = 4, + [209231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10934), 1, - anon_sym_symbol, + ACTIONS(10932), 1, + sym_number, STATE(6999), 1, sym_comment, - [209127] = 4, + [209244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10936), 1, - sym_number, + ACTIONS(10934), 1, + anon_sym_EQ_GT, STATE(7000), 1, sym_comment, - [209140] = 4, + [209257] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10938), 1, + ACTIONS(10936), 1, anon_sym_EQ_GT, STATE(7001), 1, sym_comment, - [209153] = 4, + [209270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5929), 1, - anon_sym_RBRACE, + ACTIONS(10938), 1, + anon_sym_EQ_GT, STATE(7002), 1, sym_comment, - [209166] = 4, + [209283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10940), 1, - anon_sym_readonly, + anon_sym_EQ, STATE(7003), 1, sym_comment, - [209179] = 4, + [209296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10942), 1, - anon_sym_EQ, + anon_sym_RBRACK, STATE(7004), 1, sym_comment, - [209192] = 4, + [209309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10944), 1, - anon_sym_COLON, + anon_sym_RBRACK, STATE(7005), 1, sym_comment, - [209205] = 4, + [209322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10946), 1, - sym_number, + anon_sym_RBRACK, STATE(7006), 1, sym_comment, - [209218] = 4, + [209335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10948), 1, - anon_sym_from, + anon_sym_new, STATE(7007), 1, sym_comment, - [209231] = 4, + [209348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10950), 1, - anon_sym_new, + anon_sym_RBRACK, STATE(7008), 1, sym_comment, - [209244] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209361] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(10952), 1, - sym_identifier, + anon_sym_RBRACK, STATE(7009), 1, sym_comment, - [209257] = 4, + [209374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10954), 1, - anon_sym_symbol, + anon_sym_EQ, STATE(7010), 1, sym_comment, - [209270] = 4, + [209387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10956), 1, - anon_sym_DOT, + anon_sym_RBRACK, STATE(7011), 1, sym_comment, - [209283] = 4, + [209400] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10958), 1, - anon_sym_EQ_GT, + anon_sym_readonly, STATE(7012), 1, sym_comment, - [209296] = 4, + [209413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10960), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, STATE(7013), 1, sym_comment, - [209309] = 4, + [209426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10962), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(7014), 1, sym_comment, - [209322] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209439] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(10964), 1, - sym_regex_pattern, + anon_sym_RBRACK, STATE(7015), 1, sym_comment, - [209335] = 4, + [209452] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -375204,934 +375319,934 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(7016), 1, sym_comment, - [209348] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209465] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(10968), 1, - sym_identifier, + anon_sym_symbol, STATE(7017), 1, sym_comment, - [209361] = 4, + [209478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(10970), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(7018), 1, sym_comment, - [209374] = 4, + [209491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9951), 1, - anon_sym_RBRACK, + ACTIONS(10972), 1, + anon_sym_DOT, STATE(7019), 1, sym_comment, - [209387] = 4, + [209504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10972), 1, + ACTIONS(10974), 1, anon_sym_EQ_GT, STATE(7020), 1, sym_comment, - [209400] = 4, + [209517] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10974), 1, - sym_identifier, + ACTIONS(10976), 1, + sym_regex_pattern, STATE(7021), 1, sym_comment, - [209413] = 4, + [209530] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10976), 1, + ACTIONS(10978), 1, sym_identifier, STATE(7022), 1, sym_comment, - [209426] = 4, + [209543] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10978), 1, + ACTIONS(10980), 1, sym_identifier, STATE(7023), 1, sym_comment, - [209439] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209556] = 4, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10980), 1, - sym_identifier, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10982), 1, + anon_sym_LBRACE, STATE(7024), 1, sym_comment, - [209452] = 4, + [209569] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10982), 1, - anon_sym_DOT, + ACTIONS(5835), 1, + anon_sym_in, STATE(7025), 1, sym_comment, - [209465] = 4, + [209582] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10984), 1, - anon_sym_EQ_GT, + ACTIONS(5512), 1, + anon_sym_in, STATE(7026), 1, sym_comment, - [209478] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209595] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10986), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10984), 1, + anon_sym_EQ_GT, STATE(7027), 1, sym_comment, - [209491] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209608] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10988), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10986), 1, + anon_sym_RBRACK, STATE(7028), 1, sym_comment, - [209504] = 4, + [209621] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10990), 1, + ACTIONS(10988), 1, sym_identifier, STATE(7029), 1, sym_comment, - [209517] = 4, + [209634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10992), 1, - anon_sym_while, + ACTIONS(10990), 1, + anon_sym_EQ_GT, STATE(7030), 1, sym_comment, - [209530] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209647] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10994), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10992), 1, + anon_sym_RBRACK, STATE(7031), 1, sym_comment, - [209543] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209660] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10996), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10994), 1, + anon_sym_RBRACK, STATE(7032), 1, sym_comment, - [209556] = 4, + [209673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10998), 1, - anon_sym_while, + ACTIONS(5914), 1, + anon_sym_RBRACE, STATE(7033), 1, sym_comment, - [209569] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209686] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11000), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10996), 1, + anon_sym_EQ, STATE(7034), 1, sym_comment, - [209582] = 4, + [209699] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11002), 1, - anon_sym_RBRACK, + ACTIONS(10998), 1, + sym_identifier, STATE(7035), 1, sym_comment, - [209595] = 4, + [209712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11004), 1, - anon_sym_RBRACK, + ACTIONS(11000), 1, + anon_sym_while, STATE(7036), 1, sym_comment, - [209608] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209725] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11006), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11002), 1, + anon_sym_RBRACK, STATE(7037), 1, sym_comment, - [209621] = 4, + [209738] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11008), 1, + ACTIONS(11004), 1, sym_identifier, STATE(7038), 1, sym_comment, - [209634] = 4, + [209751] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11010), 1, + ACTIONS(11006), 1, sym_identifier, STATE(7039), 1, sym_comment, - [209647] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11012), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11008), 1, + anon_sym_RBRACK, STATE(7040), 1, sym_comment, - [209660] = 4, + [209777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7418), 1, - anon_sym_is, + ACTIONS(11010), 1, + anon_sym_RBRACK, STATE(7041), 1, sym_comment, - [209673] = 4, + [209790] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11012), 1, + anon_sym_RBRACK, + STATE(7042), 1, + sym_comment, + [209803] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11014), 1, sym_identifier, - STATE(7042), 1, + STATE(7043), 1, sym_comment, - [209686] = 4, + [209816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11016), 1, - anon_sym_as, - STATE(7043), 1, - sym_comment, - [209699] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11018), 1, - sym_identifier, + anon_sym_RBRACK, STATE(7044), 1, sym_comment, - [209712] = 4, + [209829] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11020), 1, + ACTIONS(11018), 1, sym_identifier, STATE(7045), 1, sym_comment, - [209725] = 4, + [209842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11022), 1, - anon_sym_DOT, + ACTIONS(11020), 1, + anon_sym_RBRACK, STATE(7046), 1, sym_comment, - [209738] = 4, + [209855] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11024), 1, - anon_sym_RBRACK, + ACTIONS(11022), 1, + sym_identifier, STATE(7047), 1, sym_comment, - [209751] = 4, + [209868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5888), 1, - anon_sym_RPAREN, + ACTIONS(11024), 1, + anon_sym_RBRACK, STATE(7048), 1, sym_comment, - [209764] = 4, + [209881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11026), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, STATE(7049), 1, sym_comment, - [209777] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209894] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11028), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5306), 1, + anon_sym_RPAREN, STATE(7050), 1, sym_comment, - [209790] = 4, + [209907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5892), 1, - anon_sym_RBRACE, + ACTIONS(5864), 1, + anon_sym_RBRACK, STATE(7051), 1, sym_comment, - [209803] = 4, + [209920] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11030), 1, - anon_sym_RPAREN, + ACTIONS(11028), 1, + anon_sym_DOT, STATE(7052), 1, sym_comment, - [209816] = 4, + [209933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11032), 1, + ACTIONS(11030), 1, anon_sym_EQ_GT, STATE(7053), 1, sym_comment, - [209829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209946] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11034), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11032), 1, + anon_sym_RPAREN, STATE(7054), 1, sym_comment, - [209842] = 4, + [209959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11036), 1, - anon_sym_from, + ACTIONS(11034), 1, + anon_sym_EQ_GT, STATE(7055), 1, sym_comment, - [209855] = 4, + [209972] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11038), 1, + ACTIONS(11036), 1, sym_identifier, STATE(7056), 1, sym_comment, - [209868] = 4, + [209985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11040), 1, - anon_sym_RPAREN, + ACTIONS(11038), 1, + anon_sym_EQ_GT, STATE(7057), 1, sym_comment, - [209881] = 4, + [209998] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11042), 1, - anon_sym_RBRACK, + ACTIONS(11040), 1, + anon_sym_SLASH2, STATE(7058), 1, sym_comment, - [209894] = 4, + [210011] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5914), 1, - anon_sym_RBRACK, + ACTIONS(11042), 1, + sym_identifier, STATE(7059), 1, sym_comment, - [209907] = 4, + [210024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11044), 1, - anon_sym_EQ, + anon_sym_DOT, STATE(7060), 1, sym_comment, - [209920] = 4, + [210037] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11046), 1, - anon_sym_RBRACK, + ACTIONS(5851), 1, + anon_sym_RBRACE, STATE(7061), 1, sym_comment, - [209933] = 4, + [210050] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9884), 1, - anon_sym_RBRACE, + ACTIONS(11046), 1, + sym_identifier, STATE(7062), 1, sym_comment, - [209946] = 4, + [210063] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11048), 1, - anon_sym_RPAREN, + sym_identifier, STATE(7063), 1, sym_comment, - [209959] = 4, + [210076] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11050), 1, - anon_sym_RBRACK, + sym_identifier, STATE(7064), 1, sym_comment, - [209972] = 4, + [210089] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11052), 1, - anon_sym_RBRACK, + sym_identifier, STATE(7065), 1, sym_comment, - [209985] = 4, + [210102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11054), 1, - anon_sym_RBRACK, + ACTIONS(9912), 1, + anon_sym_GT, STATE(7066), 1, sym_comment, - [209998] = 4, + [210115] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11056), 1, - anon_sym_RBRACK, + ACTIONS(11054), 1, + sym_identifier, STATE(7067), 1, sym_comment, - [210011] = 4, + [210128] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11058), 1, + ACTIONS(11056), 1, anon_sym_EQ_GT, STATE(7068), 1, sym_comment, - [210024] = 4, + [210141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11060), 1, - anon_sym_EQ_GT, + ACTIONS(11058), 1, + anon_sym_RPAREN, STATE(7069), 1, sym_comment, - [210037] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210154] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11062), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11060), 1, + anon_sym_RPAREN, STATE(7070), 1, sym_comment, - [210050] = 4, + [210167] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11064), 1, - anon_sym_EQ_GT, + ACTIONS(11062), 1, + anon_sym_while, STATE(7071), 1, sym_comment, - [210063] = 4, + [210180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11066), 1, - anon_sym_RBRACK, + ACTIONS(11064), 1, + anon_sym_EQ_GT, STATE(7072), 1, sym_comment, - [210076] = 4, + [210193] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8792), 1, - anon_sym_EQ, + ACTIONS(11066), 1, + sym_identifier, STATE(7073), 1, sym_comment, - [210089] = 4, + [210206] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11068), 1, - anon_sym_EQ_GT, + sym_identifier, STATE(7074), 1, sym_comment, - [210102] = 4, + [210219] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6574), 1, - anon_sym_in, + ACTIONS(11070), 1, + sym_identifier, STATE(7075), 1, sym_comment, - [210115] = 4, + [210232] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11070), 1, - anon_sym_RBRACK, + ACTIONS(11072), 1, + sym_identifier, STATE(7076), 1, sym_comment, - [210128] = 4, + [210245] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10004), 1, - anon_sym_GT, + ACTIONS(11074), 1, + sym_regex_pattern, STATE(7077), 1, sym_comment, - [210141] = 4, + [210258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11072), 1, + ACTIONS(11076), 1, anon_sym_RBRACK, STATE(7078), 1, sym_comment, - [210154] = 4, + [210271] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11074), 1, - anon_sym_RBRACK, + ACTIONS(11078), 1, + sym_identifier, STATE(7079), 1, sym_comment, - [210167] = 4, + [210284] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11076), 1, - anon_sym_RBRACK, + ACTIONS(11080), 1, + anon_sym_from, STATE(7080), 1, sym_comment, - [210180] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210297] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11078), 1, - sym_regex_pattern, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11082), 1, + anon_sym_RPAREN, STATE(7081), 1, sym_comment, - [210193] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210310] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11080), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11084), 1, + anon_sym_RBRACK, STATE(7082), 1, sym_comment, - [210206] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210323] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11082), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11086), 1, + anon_sym_RBRACK, STATE(7083), 1, sym_comment, - [210219] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210336] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11084), 1, - anon_sym_SLASH2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11088), 1, + anon_sym_RBRACK, STATE(7084), 1, sym_comment, - [210232] = 4, + [210349] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11086), 1, - anon_sym_EQ, + ACTIONS(11090), 1, + sym_identifier, STATE(7085), 1, sym_comment, - [210245] = 4, + [210362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11088), 1, - anon_sym_EQ_GT, + ACTIONS(11092), 1, + sym_number, STATE(7086), 1, sym_comment, - [210258] = 4, + [210375] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11090), 1, - anon_sym_RPAREN, + ACTIONS(11094), 1, + sym_regex_pattern, STATE(7087), 1, sym_comment, - [210271] = 4, + [210388] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11092), 1, + ACTIONS(11096), 1, sym_identifier, STATE(7088), 1, sym_comment, - [210284] = 4, + [210401] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11094), 1, + ACTIONS(11098), 1, sym_identifier, STATE(7089), 1, sym_comment, - [210297] = 4, + [210414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11096), 1, - anon_sym_from, + ACTIONS(11100), 1, + anon_sym_EQ_GT, STATE(7090), 1, sym_comment, - [210310] = 4, + [210427] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5837), 1, - anon_sym_in, + ACTIONS(11102), 1, + sym_identifier, STATE(7091), 1, sym_comment, - [210323] = 4, + [210440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11098), 1, - anon_sym_RPAREN, + ACTIONS(11104), 1, + anon_sym_symbol, STATE(7092), 1, sym_comment, - [210336] = 4, + [210453] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11100), 1, - anon_sym_RBRACK, + ACTIONS(11106), 1, + anon_sym_COLON, STATE(7093), 1, sym_comment, - [210349] = 4, + [210466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11102), 1, - anon_sym_RBRACK, + ACTIONS(5920), 1, + anon_sym_RPAREN, STATE(7094), 1, sym_comment, - [210362] = 4, + [210479] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11104), 1, + ACTIONS(11108), 1, sym_identifier, STATE(7095), 1, sym_comment, - [210375] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11106), 1, - anon_sym_while, - STATE(7096), 1, - sym_comment, - [210388] = 4, + [210492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11108), 1, - anon_sym_RPAREN, - STATE(7097), 1, - sym_comment, - [210401] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(11110), 1, - sym_identifier, - STATE(7098), 1, + anon_sym_EQ_GT, + STATE(7096), 1, sym_comment, - [210414] = 4, + [210505] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11112), 1, - anon_sym_EQ_GT, - STATE(7099), 1, + anon_sym_RBRACK, + STATE(7097), 1, sym_comment, - [210427] = 4, + [210518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11114), 1, - anon_sym_EQ_GT, - STATE(7100), 1, + anon_sym_RBRACK, + STATE(7098), 1, sym_comment, - [210440] = 4, + [210531] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11116), 1, - anon_sym_EQ_GT, - STATE(7101), 1, + anon_sym_RBRACK, + STATE(7099), 1, sym_comment, - [210453] = 4, + [210544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11118), 1, anon_sym_RBRACK, - STATE(7102), 1, + STATE(7100), 1, sym_comment, - [210466] = 4, + [210557] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11120), 1, sym_identifier, - STATE(7103), 1, + STATE(7101), 1, sym_comment, - [210479] = 4, + [210570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11122), 1, - anon_sym_RPAREN, - STATE(7104), 1, + anon_sym_while, + STATE(7102), 1, sym_comment, - [210492] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210583] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11124), 1, - sym_identifier, - STATE(7105), 1, + anon_sym_EQ_GT, + STATE(7103), 1, sym_comment, - [210505] = 4, + [210596] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11126), 1, - anon_sym_EQ_GT, - STATE(7106), 1, + sym_identifier, + STATE(7104), 1, sym_comment, - [210518] = 4, + [210609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(7107), 1, + STATE(7105), 1, sym_comment, - [210531] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210622] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11130), 1, - sym_identifier, - STATE(7108), 1, + anon_sym_EQ, + STATE(7106), 1, sym_comment, - [210544] = 4, + [210635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11132), 1, - anon_sym_RBRACK, - STATE(7109), 1, + anon_sym_from, + STATE(7107), 1, sym_comment, - [210557] = 4, + [210648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11134), 1, - anon_sym_RBRACK, - STATE(7110), 1, + anon_sym_require, + STATE(7108), 1, sym_comment, - [210570] = 4, + [210661] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11136), 1, + sym_identifier, + STATE(7109), 1, + sym_comment, + [210674] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11136), 1, - anon_sym_RBRACK, + ACTIONS(11138), 1, + anon_sym_EQ_GT, + STATE(7110), 1, + sym_comment, + [210687] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11140), 1, + sym_identifier, STATE(7111), 1, sym_comment, - [210583] = 4, + [210700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11138), 1, - anon_sym_DOT, + ACTIONS(11142), 1, + anon_sym_EQ_GT, STATE(7112), 1, sym_comment, - [210596] = 4, + [210713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11140), 1, - anon_sym_RBRACK, + ACTIONS(11144), 1, + anon_sym_EQ_GT, STATE(7113), 1, sym_comment, - [210609] = 4, + [210726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11142), 1, - anon_sym_COLON, + ACTIONS(11146), 1, + anon_sym_EQ_GT, STATE(7114), 1, sym_comment, - [210622] = 4, + [210739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11144), 1, - anon_sym_RBRACK, + ACTIONS(8867), 1, + anon_sym_EQ, STATE(7115), 1, sym_comment, - [210635] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210752] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11146), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11148), 1, + anon_sym_EQ_GT, STATE(7116), 1, sym_comment, - [210648] = 4, + [210765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11148), 1, - anon_sym_RBRACK, + ACTIONS(6566), 1, + anon_sym_in, STATE(7117), 1, sym_comment, - [210661] = 4, + [210778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11150), 1, - anon_sym_RBRACK, + anon_sym_DOT, STATE(7118), 1, sym_comment, - [210674] = 4, + [210791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11152), 1, - anon_sym_RBRACK, + anon_sym_as, STATE(7119), 1, sym_comment, - [210687] = 4, + [210804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -376140,106 +376255,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, STATE(7120), 1, sym_comment, - [210700] = 4, + [210817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5196), 1, - anon_sym_RPAREN, + ACTIONS(11156), 1, + anon_sym_RBRACK, STATE(7121), 1, sym_comment, - [210713] = 4, + [210830] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11156), 1, - anon_sym_require, + ACTIONS(11158), 1, + sym_identifier, STATE(7122), 1, sym_comment, - [210726] = 4, + [210843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11158), 1, - anon_sym_RBRACK, + ACTIONS(11160), 1, + anon_sym_EQ, STATE(7123), 1, sym_comment, - [210739] = 4, + [210856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11160), 1, - anon_sym_RBRACK, + ACTIONS(11162), 1, + anon_sym_LPAREN, STATE(7124), 1, sym_comment, - [210752] = 4, + [210869] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11162), 1, - anon_sym_RBRACK, + ACTIONS(9950), 1, + anon_sym_GT, STATE(7125), 1, sym_comment, - [210765] = 4, + [210882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11164), 1, - anon_sym_as, + anon_sym_from, STATE(7126), 1, sym_comment, - [210778] = 4, + [210895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11166), 1, - anon_sym_from, + anon_sym_as, STATE(7127), 1, sym_comment, - [210791] = 4, + [210908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11168), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(7128), 1, sym_comment, - [210804] = 4, + [210921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11170), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(7129), 1, sym_comment, - [210817] = 4, + [210934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11172), 1, - anon_sym_EQ, + anon_sym_COLON, STATE(7130), 1, sym_comment, - [210830] = 4, + [210947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11174), 1, - anon_sym_EQ, + anon_sym_RBRACK, STATE(7131), 1, sym_comment, - [210843] = 4, + [210960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -376248,7 +376363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7132), 1, sym_comment, - [210856] = 4, + [210973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -376257,412 +376372,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7133), 1, sym_comment, - [210869] = 4, + [210986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11180), 1, - anon_sym_RBRACK, + ACTIONS(5807), 1, + anon_sym_is, STATE(7134), 1, sym_comment, - [210882] = 4, + [210999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11182), 1, - anon_sym_LPAREN, + ACTIONS(11180), 1, + anon_sym_RPAREN, STATE(7135), 1, sym_comment, - [210895] = 4, + [211012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6254), 1, - anon_sym_in, + ACTIONS(11182), 1, + anon_sym_RBRACK, STATE(7136), 1, sym_comment, - [210908] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211025] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11184), 1, - sym_identifier, + anon_sym_from, STATE(7137), 1, sym_comment, - [210921] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211038] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11186), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9742), 1, + anon_sym_RBRACE, STATE(7138), 1, sym_comment, - [210934] = 4, + [211051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11188), 1, + ACTIONS(11186), 1, anon_sym_RBRACK, STATE(7139), 1, sym_comment, - [210947] = 4, + [211064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11190), 1, - anon_sym_RBRACK, + ACTIONS(11188), 1, + anon_sym_RPAREN, STATE(7140), 1, sym_comment, - [210960] = 4, + [211077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11192), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, STATE(7141), 1, sym_comment, - [210973] = 4, + [211090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11194), 1, - anon_sym_EQ, + ACTIONS(11192), 1, + anon_sym_RBRACK, STATE(7142), 1, sym_comment, - [210986] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211103] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11196), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9967), 1, + anon_sym_RBRACK, STATE(7143), 1, sym_comment, - [210999] = 4, + [211116] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11198), 1, + ACTIONS(11194), 1, sym_identifier, STATE(7144), 1, sym_comment, - [211012] = 4, + [211129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11200), 1, - anon_sym_EQ_GT, + ACTIONS(11196), 1, + anon_sym_RBRACK, STATE(7145), 1, sym_comment, - [211025] = 4, + [211142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4923), 1, - anon_sym_in, + ACTIONS(11198), 1, + anon_sym_LBRACK, STATE(7146), 1, sym_comment, - [211038] = 4, + [211155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11202), 1, - anon_sym_EQ, + ACTIONS(11200), 1, + anon_sym_EQ_GT, STATE(7147), 1, sym_comment, - [211051] = 4, + [211168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11204), 1, + ACTIONS(11202), 1, sym_identifier, STATE(7148), 1, sym_comment, - [211064] = 4, + [211181] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11206), 1, - anon_sym_from, + ACTIONS(11204), 1, + sym_identifier, STATE(7149), 1, sym_comment, - [211077] = 4, + [211194] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11208), 1, + ACTIONS(11206), 1, sym_identifier, STATE(7150), 1, sym_comment, - [211090] = 4, + [211207] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11208), 1, + anon_sym_RBRACK, + STATE(7151), 1, + sym_comment, + [211220] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11210), 1, sym_identifier, - STATE(7151), 1, + STATE(7152), 1, sym_comment, - [211103] = 4, + [211233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11212), 1, - anon_sym_EQ_GT, - STATE(7152), 1, + anon_sym_RPAREN, + STATE(7153), 1, sym_comment, - [211116] = 4, + [211246] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11214), 1, sym_identifier, - STATE(7153), 1, + STATE(7154), 1, sym_comment, - [211129] = 4, + [211259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11216), 1, - anon_sym_EQ, - STATE(7154), 1, + anon_sym_new, + STATE(7155), 1, sym_comment, - [211142] = 4, + [211272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11218), 1, anon_sym_EQ_GT, - STATE(7155), 1, - sym_comment, - [211155] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11220), 1, - anon_sym_RBRACK, STATE(7156), 1, sym_comment, - [211168] = 4, + [211285] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11222), 1, + ACTIONS(11220), 1, sym_identifier, STATE(7157), 1, sym_comment, - [211181] = 4, + [211298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11224), 1, - anon_sym_RBRACK, + ACTIONS(11222), 1, + anon_sym_RPAREN, STATE(7158), 1, sym_comment, - [211194] = 4, + [211311] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11226), 1, + ACTIONS(11224), 1, sym_identifier, STATE(7159), 1, sym_comment, - [211207] = 4, + [211324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_in, + ACTIONS(11226), 1, + anon_sym_RPAREN, STATE(7160), 1, sym_comment, - [211220] = 4, + [211337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11228), 1, - anon_sym_DOT, + ACTIONS(9987), 1, + anon_sym_RBRACK, STATE(7161), 1, sym_comment, - [211233] = 4, + [211350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11230), 1, + ACTIONS(11228), 1, anon_sym_EQ_GT, STATE(7162), 1, sym_comment, - [211246] = 4, + [211363] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11232), 1, - anon_sym_EQ_GT, + ACTIONS(11230), 1, + sym_identifier, STATE(7163), 1, sym_comment, - [211259] = 4, + [211376] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11234), 1, + ACTIONS(11232), 1, sym_identifier, STATE(7164), 1, sym_comment, - [211272] = 4, + [211389] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11236), 1, + ACTIONS(11234), 1, sym_identifier, STATE(7165), 1, sym_comment, - [211285] = 4, + [211402] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8161), 1, - anon_sym_EQ, + ACTIONS(7433), 1, + anon_sym_is, STATE(7166), 1, sym_comment, - [211298] = 4, + [211415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11238), 1, - anon_sym_COLON, + ACTIONS(11236), 1, + anon_sym_DOT, STATE(7167), 1, sym_comment, - [211311] = 4, + [211428] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11238), 1, + anon_sym_RPAREN, + STATE(7168), 1, + sym_comment, + [211441] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11240), 1, sym_identifier, - STATE(7168), 1, + STATE(7169), 1, sym_comment, - [211324] = 4, + [211454] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11242), 1, - anon_sym_RBRACK, - STATE(7169), 1, + sym_identifier, + STATE(7170), 1, sym_comment, - [211337] = 4, + [211467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11244), 1, - anon_sym_DOT, - STATE(7170), 1, + anon_sym_EQ_GT, + STATE(7171), 1, sym_comment, - [211350] = 4, + [211480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, + ACTIONS(5910), 1, anon_sym_RPAREN, - STATE(7171), 1, + STATE(7172), 1, sym_comment, - [211363] = 4, + [211493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11246), 1, anon_sym_EQ_GT, - STATE(7172), 1, - sym_comment, - [211376] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11248), 1, - anon_sym_EQ, STATE(7173), 1, sym_comment, - [211389] = 4, + [211506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11250), 1, - anon_sym_RBRACK, + ACTIONS(11248), 1, + anon_sym_EQ_GT, STATE(7174), 1, sym_comment, - [211402] = 4, + [211519] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11252), 1, + ACTIONS(11250), 1, sym_identifier, STATE(7175), 1, sym_comment, - [211415] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211532] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11254), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11252), 1, + anon_sym_EQ_GT, STATE(7176), 1, sym_comment, - [211428] = 4, + [211545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11256), 1, + ACTIONS(11254), 1, anon_sym_RBRACK, STATE(7177), 1, sym_comment, - [211441] = 4, + [211558] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9767), 1, - anon_sym_RBRACE, + ACTIONS(11256), 1, + anon_sym_DOT, STATE(7178), 1, sym_comment, - [211454] = 4, + [211571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -376671,610 +376786,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7179), 1, sym_comment, - [211467] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211584] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11260), 1, - sym_identifier, + anon_sym_RBRACK, STATE(7180), 1, sym_comment, - [211480] = 4, + [211597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11262), 1, - anon_sym_RBRACK, + anon_sym_EQ, STATE(7181), 1, sym_comment, - [211493] = 4, + [211610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4948), 1, - anon_sym_RPAREN, + ACTIONS(11264), 1, + anon_sym_COLON, STATE(7182), 1, sym_comment, - [211506] = 4, + [211623] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11264), 1, + ACTIONS(11266), 1, anon_sym_RBRACK, STATE(7183), 1, sym_comment, - [211519] = 4, + [211636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11266), 1, + ACTIONS(11268), 1, anon_sym_RBRACK, STATE(7184), 1, sym_comment, - [211532] = 4, + [211649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11268), 1, + ACTIONS(11270), 1, anon_sym_RBRACK, STATE(7185), 1, sym_comment, - [211545] = 4, + [211662] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11270), 1, - anon_sym_LBRACK, + ACTIONS(11272), 1, + anon_sym_RBRACK, STATE(7186), 1, sym_comment, - [211558] = 4, + [211675] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5975), 1, - anon_sym_in, + ACTIONS(11274), 1, + anon_sym_RBRACK, STATE(7187), 1, sym_comment, - [211571] = 4, + [211688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11272), 1, + ACTIONS(11276), 1, anon_sym_RBRACK, STATE(7188), 1, sym_comment, - [211584] = 4, + [211701] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11274), 1, - anon_sym_class, + ACTIONS(11278), 1, + sym_identifier, STATE(7189), 1, sym_comment, - [211597] = 4, + [211714] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11276), 1, - anon_sym_RBRACK, + ACTIONS(11280), 1, + sym_identifier, STATE(7190), 1, sym_comment, - [211610] = 4, + [211727] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11278), 1, - anon_sym_EQ_GT, + ACTIONS(11282), 1, + anon_sym_RBRACK, STATE(7191), 1, sym_comment, - [211623] = 4, + [211740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11280), 1, - anon_sym_EQ_GT, + ACTIONS(11284), 1, + anon_sym_EQ, STATE(7192), 1, sym_comment, - [211636] = 4, + [211753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11282), 1, - anon_sym_EQ, + ACTIONS(5975), 1, + anon_sym_in, STATE(7193), 1, sym_comment, - [211649] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11284), 1, - anon_sym_namespace, - STATE(7194), 1, - sym_comment, - [211662] = 4, + [211766] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11286), 1, sym_identifier, - STATE(7195), 1, + STATE(7194), 1, sym_comment, - [211675] = 4, + [211779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5876), 1, - anon_sym_RPAREN, + ACTIONS(11288), 1, + anon_sym_class, + STATE(7195), 1, + sym_comment, + [211792] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11290), 1, + sym_identifier, STATE(7196), 1, sym_comment, - [211688] = 4, + [211805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11288), 1, - anon_sym_RBRACK, + ACTIONS(11292), 1, + anon_sym_EQ_GT, STATE(7197), 1, sym_comment, - [211701] = 4, + [211818] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11290), 1, - anon_sym_class, + ACTIONS(11294), 1, + sym_identifier, STATE(7198), 1, sym_comment, - [211714] = 4, + [211831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11292), 1, - anon_sym_RBRACK, + ACTIONS(11296), 1, + anon_sym_EQ, STATE(7199), 1, sym_comment, - [211727] = 4, + [211844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11294), 1, - anon_sym_EQ_GT, + ACTIONS(11298), 1, + anon_sym_namespace, STATE(7200), 1, sym_comment, - [211740] = 4, + [211857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11296), 1, - anon_sym_new, + ACTIONS(11300), 1, + anon_sym_RBRACK, STATE(7201), 1, sym_comment, - [211753] = 4, + [211870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11298), 1, - anon_sym_EQ_GT, + ACTIONS(11302), 1, + anon_sym_RBRACK, STATE(7202), 1, sym_comment, - [211766] = 4, + [211883] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11300), 1, - anon_sym_EQ_GT, + ACTIONS(11304), 1, + anon_sym_RBRACK, STATE(7203), 1, sym_comment, - [211779] = 4, + [211896] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11302), 1, - anon_sym_while, + ACTIONS(11306), 1, + anon_sym_RBRACK, STATE(7204), 1, sym_comment, - [211792] = 4, + [211909] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11304), 1, - anon_sym_EQ_GT, + ACTIONS(11308), 1, + sym_identifier, STATE(7205), 1, sym_comment, - [211805] = 4, + [211922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11306), 1, + ACTIONS(11310), 1, anon_sym_EQ_GT, STATE(7206), 1, sym_comment, - [211818] = 4, + [211935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11308), 1, - anon_sym_EQ_GT, + ACTIONS(11312), 1, + anon_sym_RBRACK, STATE(7207), 1, sym_comment, - [211831] = 4, + [211948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11310), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, STATE(7208), 1, sym_comment, - [211844] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211961] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11312), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11316), 1, + anon_sym_EQ_GT, STATE(7209), 1, sym_comment, - [211857] = 4, + [211974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11314), 1, + ACTIONS(11318), 1, anon_sym_RBRACK, STATE(7210), 1, sym_comment, - [211870] = 4, + [211987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11316), 1, - anon_sym_RBRACK, + ACTIONS(11320), 1, + anon_sym_EQ_GT, STATE(7211), 1, sym_comment, - [211883] = 4, + [212000] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11318), 1, - anon_sym_RBRACK, + ACTIONS(11322), 1, + anon_sym_EQ_GT, STATE(7212), 1, sym_comment, - [211896] = 4, + [212013] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11320), 1, + ACTIONS(11324), 1, anon_sym_RBRACK, STATE(7213), 1, sym_comment, - [211909] = 4, + [212026] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11322), 1, - anon_sym_RBRACK, + ACTIONS(11326), 1, + anon_sym_EQ, STATE(7214), 1, sym_comment, - [211922] = 4, + [212039] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11324), 1, - anon_sym_EQ, + ACTIONS(11328), 1, + sym_identifier, STATE(7215), 1, sym_comment, - [211935] = 4, + [212052] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10133), 1, + ACTIONS(11330), 1, sym_identifier, STATE(7216), 1, sym_comment, - [211948] = 4, + [212065] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11326), 1, - anon_sym_class, + ACTIONS(11332), 1, + anon_sym_RBRACK, STATE(7217), 1, sym_comment, - [211961] = 4, + [212078] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11328), 1, + ACTIONS(11334), 1, anon_sym_EQ_GT, STATE(7218), 1, sym_comment, - [211974] = 4, + [212091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11330), 1, - anon_sym_RBRACK, + ACTIONS(9680), 1, + anon_sym_RBRACE, STATE(7219), 1, sym_comment, - [211987] = 4, + [212104] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11332), 1, - anon_sym_EQ, + ACTIONS(11336), 1, + sym_identifier, STATE(7220), 1, sym_comment, - [212000] = 4, + [212117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10127), 1, - anon_sym_RBRACK, + ACTIONS(11338), 1, + anon_sym_EQ, STATE(7221), 1, sym_comment, - [212013] = 4, + [212130] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11334), 1, + ACTIONS(10111), 1, sym_identifier, STATE(7222), 1, sym_comment, - [212026] = 4, + [212143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11336), 1, - anon_sym_EQ, + ACTIONS(11340), 1, + anon_sym_class, STATE(7223), 1, sym_comment, - [212039] = 4, + [212156] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11338), 1, - anon_sym_RBRACK, + ACTIONS(11342), 1, + sym_identifier, STATE(7224), 1, sym_comment, - [212052] = 4, + [212169] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11340), 1, + ACTIONS(5947), 1, anon_sym_RBRACK, STATE(7225), 1, sym_comment, - [212065] = 4, + [212182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(7226), 1, - sym_comment, - [212078] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(11344), 1, - sym_identifier, - STATE(7227), 1, + anon_sym_EQ, + STATE(7226), 1, sym_comment, - [212091] = 4, + [212195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11346), 1, anon_sym_RBRACK, + STATE(7227), 1, + sym_comment, + [212208] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11348), 1, + sym_identifier, STATE(7228), 1, sym_comment, - [212104] = 4, + [212221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11348), 1, - anon_sym_RBRACK, + ACTIONS(11350), 1, + anon_sym_EQ, STATE(7229), 1, sym_comment, - [212117] = 4, + [212234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11350), 1, - anon_sym_EQ_GT, + ACTIONS(11352), 1, + anon_sym_RBRACK, STATE(7230), 1, sym_comment, - [212130] = 4, + [212247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11352), 1, - anon_sym_new, + ACTIONS(7067), 1, + anon_sym_is, STATE(7231), 1, sym_comment, - [212143] = 4, + [212260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11354), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, STATE(7232), 1, sym_comment, - [212156] = 4, + [212273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11356), 1, - anon_sym_EQ_GT, + ACTIONS(9674), 1, + anon_sym_RBRACK, STATE(7233), 1, sym_comment, - [212169] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212286] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11358), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11356), 1, + anon_sym_while, STATE(7234), 1, sym_comment, - [212182] = 4, + [212299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6005), 1, - anon_sym_in, + ACTIONS(11358), 1, + anon_sym_GT, STATE(7235), 1, sym_comment, - [212195] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212312] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11360), 1, - sym_identifier, + anon_sym_RBRACK, STATE(7236), 1, sym_comment, - [212208] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212325] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11362), 1, - sym_identifier, + anon_sym_new, STATE(7237), 1, sym_comment, - [212221] = 4, + [212338] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11364), 1, - anon_sym_COLON, + sym_identifier, STATE(7238), 1, sym_comment, - [212234] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212351] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11366), 1, - sym_identifier, + anon_sym_class, STATE(7239), 1, sym_comment, - [212247] = 4, + [212364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3084), 1, - anon_sym_LBRACE, + ACTIONS(11368), 1, + anon_sym_RBRACK, STATE(7240), 1, sym_comment, - [212260] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212377] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9642), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6154), 1, + anon_sym_in, STATE(7241), 1, sym_comment, - [212273] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212390] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11368), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5047), 1, + anon_sym_RPAREN, STATE(7242), 1, sym_comment, - [212286] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212403] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11370), 1, - sym_regex_pattern, + anon_sym_RBRACK, STATE(7243), 1, sym_comment, - [212299] = 4, + [212416] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11372), 1, - anon_sym_EQ, + anon_sym_COLON, STATE(7244), 1, sym_comment, - [212312] = 4, + [212429] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11374), 1, - anon_sym_target, + sym_identifier, STATE(7245), 1, sym_comment, - [212325] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212442] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11376), 1, - sym_identifier, + anon_sym_RBRACK, STATE(7246), 1, sym_comment, - [212338] = 4, + [212455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -377283,1717 +377398,1717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7247), 1, sym_comment, - [212351] = 4, + [212468] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11380), 1, - anon_sym_EQ_GT, + ACTIONS(5900), 1, + anon_sym_RPAREN, STATE(7248), 1, sym_comment, - [212364] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212481] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11382), 1, - anon_sym_SLASH2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11380), 1, + anon_sym_EQ_GT, STATE(7249), 1, sym_comment, - [212377] = 4, + [212494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11384), 1, - anon_sym_RBRACK, + ACTIONS(11382), 1, + anon_sym_EQ_GT, STATE(7250), 1, sym_comment, - [212390] = 4, + [212507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11386), 1, + ACTIONS(11384), 1, anon_sym_RBRACK, STATE(7251), 1, sym_comment, - [212403] = 4, + [212520] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11388), 1, + ACTIONS(11386), 1, sym_identifier, STATE(7252), 1, sym_comment, - [212416] = 4, + [212533] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11390), 1, - anon_sym_SLASH2, + ACTIONS(11388), 1, + sym_identifier, STATE(7253), 1, sym_comment, - [212429] = 4, + [212546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11392), 1, + ACTIONS(11390), 1, anon_sym_EQ, STATE(7254), 1, sym_comment, - [212442] = 4, + [212559] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11394), 1, - anon_sym_EQ, + ACTIONS(11392), 1, + sym_regex_pattern, STATE(7255), 1, sym_comment, - [212455] = 4, + [212572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11396), 1, - anon_sym_target, + ACTIONS(11394), 1, + anon_sym_RBRACK, STATE(7256), 1, sym_comment, - [212468] = 4, + [212585] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11398), 1, - anon_sym_RBRACK, + ACTIONS(11396), 1, + anon_sym_SLASH2, STATE(7257), 1, sym_comment, - [212481] = 4, + [212598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, + ACTIONS(11398), 1, anon_sym_RBRACK, STATE(7258), 1, sym_comment, - [212494] = 4, + [212611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11402), 1, - anon_sym_RBRACK, + ACTIONS(6244), 1, + anon_sym_in, STATE(7259), 1, sym_comment, - [212507] = 4, + [212624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11404), 1, - anon_sym_EQ_GT, + ACTIONS(11400), 1, + anon_sym_RBRACK, STATE(7260), 1, sym_comment, - [212520] = 4, + [212637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9470), 1, - anon_sym_EQ_GT, + ACTIONS(11402), 1, + anon_sym_EQ, STATE(7261), 1, sym_comment, - [212533] = 4, + [212650] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11406), 1, - anon_sym_RBRACK, + ACTIONS(11404), 1, + sym_identifier, STATE(7262), 1, sym_comment, - [212546] = 4, + [212663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9466), 1, - anon_sym_EQ_GT, + ACTIONS(11406), 1, + anon_sym_from, STATE(7263), 1, sym_comment, - [212559] = 4, + [212676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11408), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, STATE(7264), 1, sym_comment, - [212572] = 4, + [212689] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9716), 1, - anon_sym_LBRACE, + ACTIONS(9607), 1, + sym_identifier, STATE(7265), 1, sym_comment, - [212585] = 4, + [212702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11410), 1, - anon_sym_RBRACK, + ACTIONS(5793), 1, + anon_sym_COLON, STATE(7266), 1, sym_comment, - [212598] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212715] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11412), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_RPAREN, STATE(7267), 1, sym_comment, - [212611] = 4, + [212728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11414), 1, - anon_sym_RBRACK, + ACTIONS(11410), 1, + anon_sym_EQ, STATE(7268), 1, sym_comment, - [212624] = 4, + [212741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11416), 1, - anon_sym_RBRACK, + ACTIONS(5933), 1, + anon_sym_RPAREN, STATE(7269), 1, sym_comment, - [212637] = 4, + [212754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11418), 1, - anon_sym_RBRACK, + ACTIONS(5928), 1, + anon_sym_RPAREN, STATE(7270), 1, sym_comment, - [212650] = 4, + [212767] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11420), 1, - anon_sym_RBRACK, + ACTIONS(11412), 1, + sym_identifier, STATE(7271), 1, sym_comment, - [212663] = 4, + [212780] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11422), 1, - anon_sym_EQ_GT, + ACTIONS(11414), 1, + anon_sym_SLASH2, STATE(7272), 1, sym_comment, - [212676] = 4, + [212793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11424), 1, + ACTIONS(11416), 1, anon_sym_EQ, STATE(7273), 1, sym_comment, - [212689] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212806] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11426), 1, - anon_sym_SLASH2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11418), 1, + anon_sym_target, STATE(7274), 1, sym_comment, - [212702] = 4, + [212819] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11428), 1, - anon_sym_COLON, + ACTIONS(11420), 1, + sym_identifier, STATE(7275), 1, sym_comment, - [212715] = 4, + [212832] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11430), 1, + ACTIONS(11422), 1, sym_identifier, STATE(7276), 1, sym_comment, - [212728] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212845] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11432), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7507), 1, + anon_sym_is, STATE(7277), 1, sym_comment, - [212741] = 4, + [212858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11434), 1, - anon_sym_RBRACK, + ACTIONS(11424), 1, + anon_sym_EQ_GT, STATE(7278), 1, sym_comment, - [212754] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212871] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11436), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9521), 1, + anon_sym_EQ_GT, STATE(7279), 1, sym_comment, - [212767] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11438), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5898), 1, + anon_sym_RBRACK, STATE(7280), 1, sym_comment, - [212780] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212897] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11440), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9541), 1, + anon_sym_EQ_GT, STATE(7281), 1, sym_comment, - [212793] = 4, + [212910] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4962), 1, - anon_sym_RPAREN, + ACTIONS(11426), 1, + sym_identifier, STATE(7282), 1, sym_comment, - [212806] = 4, + [212923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11442), 1, - anon_sym_while, + ACTIONS(9652), 1, + anon_sym_LBRACE, STATE(7283), 1, sym_comment, - [212819] = 4, + [212936] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11444), 1, - anon_sym_EQ_GT, + ACTIONS(11428), 1, + sym_identifier, STATE(7284), 1, sym_comment, - [212832] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212949] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11446), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5117), 1, + anon_sym_RPAREN, STATE(7285), 1, sym_comment, - [212845] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212962] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11448), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11430), 1, + anon_sym_EQ_GT, STATE(7286), 1, sym_comment, - [212858] = 4, + [212975] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11450), 1, + ACTIONS(11432), 1, sym_identifier, STATE(7287), 1, sym_comment, - [212871] = 4, + [212988] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5302), 1, - anon_sym_RPAREN, + ACTIONS(11434), 1, + sym_identifier, STATE(7288), 1, sym_comment, - [212884] = 4, + [213001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11452), 1, + ACTIONS(11436), 1, anon_sym_EQ_GT, STATE(7289), 1, sym_comment, - [212897] = 4, + [213014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11454), 1, + ACTIONS(11438), 1, anon_sym_EQ_GT, STATE(7290), 1, sym_comment, - [212910] = 4, + [213027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11456), 1, - anon_sym_EQ_GT, + ACTIONS(11440), 1, + anon_sym_RBRACK, STATE(7291), 1, sym_comment, - [212923] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213040] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11458), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11442), 1, + anon_sym_EQ_GT, STATE(7292), 1, sym_comment, - [212936] = 4, + [213053] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11460), 1, - anon_sym_RPAREN, + ACTIONS(11444), 1, + sym_identifier, STATE(7293), 1, sym_comment, - [212949] = 4, + [213066] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11462), 1, + ACTIONS(11446), 1, sym_identifier, STATE(7294), 1, sym_comment, - [212962] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213079] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11464), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11448), 1, + anon_sym_EQ, STATE(7295), 1, sym_comment, - [212975] = 4, + [213092] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11466), 1, - sym_identifier, + ACTIONS(11450), 1, + anon_sym_SLASH2, STATE(7296), 1, sym_comment, - [212988] = 4, + [213105] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11468), 1, - sym_number, + ACTIONS(4913), 1, + anon_sym_in, STATE(7297), 1, sym_comment, - [213001] = 4, + [213118] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11470), 1, - anon_sym_RPAREN, + ACTIONS(11452), 1, + sym_identifier, STATE(7298), 1, sym_comment, - [213014] = 4, + [213131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11472), 1, + ACTIONS(11454), 1, anon_sym_EQ_GT, STATE(7299), 1, sym_comment, - [213027] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213144] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11474), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11456), 1, + anon_sym_while, STATE(7300), 1, sym_comment, - [213040] = 4, + [213157] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_RBRACK, + ACTIONS(11458), 1, + sym_identifier, STATE(7301), 1, sym_comment, - [213053] = 4, + [213170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10622), 1, - anon_sym_from, + ACTIONS(8212), 1, + anon_sym_EQ, STATE(7302), 1, sym_comment, - [213066] = 4, + [213183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5880), 1, - anon_sym_RBRACK, + ACTIONS(11460), 1, + anon_sym_EQ_GT, STATE(7303), 1, sym_comment, - [213079] = 4, + [213196] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5865), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, STATE(7304), 1, sym_comment, - [213092] = 4, + [213209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11478), 1, + ACTIONS(5037), 1, anon_sym_RPAREN, STATE(7305), 1, sym_comment, - [213105] = 4, + [213222] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11480), 1, + ACTIONS(11464), 1, sym_identifier, STATE(7306), 1, sym_comment, - [213118] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [213235] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11482), 1, - anon_sym_as, - STATE(7307), 1, - sym_comment, - [213131] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11484), 1, - anon_sym_RBRACK, - STATE(7308), 1, + ACTIONS(11466), 1, + sym_identifier, + STATE(7307), 1, sym_comment, - [213144] = 4, + [213248] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11486), 1, + ACTIONS(11468), 1, sym_identifier, - STATE(7309), 1, + STATE(7308), 1, sym_comment, - [213157] = 4, + [213261] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11488), 1, - anon_sym_symbol, - STATE(7310), 1, + ACTIONS(5003), 1, + anon_sym_RPAREN, + STATE(7309), 1, sym_comment, - [213170] = 4, + [213274] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(11470), 1, + sym_identifier, + STATE(7310), 1, + sym_comment, + [213287] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7065), 1, - anon_sym_is, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11472), 1, + sym_identifier, STATE(7311), 1, sym_comment, - [213183] = 4, + [213300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4970), 1, - anon_sym_RPAREN, + ACTIONS(11474), 1, + anon_sym_EQ_GT, STATE(7312), 1, sym_comment, - [213196] = 4, + [213313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11490), 1, - anon_sym_EQ_GT, + ACTIONS(11476), 1, + anon_sym_RPAREN, STATE(7313), 1, sym_comment, - [213209] = 4, + [213326] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3118), 1, - anon_sym_LBRACE, + ACTIONS(10180), 1, + anon_sym_RBRACK, STATE(7314), 1, sym_comment, - [213222] = 4, + [213339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11492), 1, - anon_sym_RBRACK, + ACTIONS(11478), 1, + sym_number, STATE(7315), 1, sym_comment, - [213235] = 4, + [213352] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11494), 1, - anon_sym_EQ_GT, + ACTIONS(11480), 1, + sym_identifier, STATE(7316), 1, sym_comment, - [213248] = 4, + [213365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11496), 1, - anon_sym_EQ, + ACTIONS(11482), 1, + anon_sym_symbol, STATE(7317), 1, sym_comment, - [213261] = 4, + [213378] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6312), 1, - anon_sym_in, + ACTIONS(10598), 1, + anon_sym_from, STATE(7318), 1, sym_comment, - [213274] = 4, + [213391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11498), 1, - anon_sym_EQ_GT, + ACTIONS(11484), 1, + anon_sym_RPAREN, STATE(7319), 1, sym_comment, - [213287] = 4, + [213404] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11500), 1, + ACTIONS(11486), 1, anon_sym_RBRACK, STATE(7320), 1, sym_comment, - [213300] = 4, + [213417] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11502), 1, - anon_sym_EQ_GT, + ACTIONS(11488), 1, + anon_sym_as, STATE(7321), 1, sym_comment, - [213313] = 4, + [213430] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11504), 1, - anon_sym_EQ_GT, + ACTIONS(9632), 1, + anon_sym_GT, STATE(7322), 1, sym_comment, - [213326] = 4, + [213443] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11506), 1, - anon_sym_EQ_GT, + ACTIONS(11490), 1, + sym_identifier, STATE(7323), 1, sym_comment, - [213339] = 4, + [213456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11508), 1, - anon_sym_RBRACK, + ACTIONS(6383), 1, + anon_sym_in, STATE(7324), 1, sym_comment, - [213352] = 4, + [213469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11510), 1, + ACTIONS(11492), 1, anon_sym_EQ_GT, STATE(7325), 1, sym_comment, - [213365] = 4, + [213482] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11512), 1, - anon_sym_RBRACK, + ACTIONS(11494), 1, + sym_identifier, STATE(7326), 1, sym_comment, - [213378] = 4, + [213495] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5935), 1, - anon_sym_is, + ACTIONS(11496), 1, + anon_sym_EQ_GT, STATE(7327), 1, sym_comment, - [213391] = 4, + [213508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11514), 1, - anon_sym_RPAREN, + aux_sym_comment_token1, + ACTIONS(11498), 1, + anon_sym_EQ_GT, STATE(7328), 1, sym_comment, - [213404] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213521] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11516), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11500), 1, + anon_sym_EQ_GT, STATE(7329), 1, sym_comment, - [213417] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213534] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11518), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11502), 1, + anon_sym_EQ_GT, STATE(7330), 1, sym_comment, - [213430] = 4, + [213547] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11520), 1, - anon_sym_EQ, + ACTIONS(11504), 1, + anon_sym_namespace, STATE(7331), 1, sym_comment, - [213443] = 4, + [213560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11522), 1, - anon_sym_function, + ACTIONS(5005), 1, + anon_sym_RPAREN, STATE(7332), 1, sym_comment, - [213456] = 4, + [213573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11524), 1, - sym_number, + ACTIONS(11506), 1, + anon_sym_EQ_GT, STATE(7333), 1, sym_comment, - [213469] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213586] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11526), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11508), 1, + anon_sym_RBRACK, STATE(7334), 1, sym_comment, - [213482] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213599] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11528), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11510), 1, + anon_sym_EQ, STATE(7335), 1, sym_comment, - [213495] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213612] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8565), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5260), 1, + anon_sym_RPAREN, STATE(7336), 1, sym_comment, - [213508] = 4, + [213625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4895), 1, - anon_sym_RPAREN, + ACTIONS(11512), 1, + anon_sym_EQ, STATE(7337), 1, sym_comment, - [213521] = 4, + [213638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11530), 1, - anon_sym_symbol, + ACTIONS(11514), 1, + anon_sym_EQ_GT, STATE(7338), 1, sym_comment, - [213534] = 4, + [213651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11532), 1, - anon_sym_namespace, + ACTIONS(11516), 1, + anon_sym_RBRACK, STATE(7339), 1, sym_comment, - [213547] = 4, + [213664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11534), 1, - anon_sym_EQ_GT, + ACTIONS(11518), 1, + anon_sym_RBRACK, STATE(7340), 1, sym_comment, - [213560] = 4, + [213677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5884), 1, - anon_sym_RPAREN, + ACTIONS(11520), 1, + anon_sym_RBRACK, STATE(7341), 1, sym_comment, - [213573] = 4, + [213690] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11536), 1, + ACTIONS(11522), 1, anon_sym_RBRACK, STATE(7342), 1, sym_comment, - [213586] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213703] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11538), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10241), 1, + anon_sym_GT, STATE(7343), 1, sym_comment, - [213599] = 4, + [213716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11540), 1, + ACTIONS(11524), 1, anon_sym_RPAREN, STATE(7344), 1, sym_comment, - [213612] = 4, + [213729] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10253), 1, - anon_sym_RBRACK, + ACTIONS(11526), 1, + sym_identifier, STATE(7345), 1, sym_comment, - [213625] = 4, + [213742] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11542), 1, - anon_sym_class, + ACTIONS(11528), 1, + anon_sym_function, STATE(7346), 1, sym_comment, - [213638] = 4, + [213755] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11544), 1, - anon_sym_namespace, + ACTIONS(11530), 1, + sym_identifier, STATE(7347), 1, sym_comment, - [213651] = 4, + [213768] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11546), 1, + ACTIONS(11532), 1, sym_identifier, STATE(7348), 1, sym_comment, - [213664] = 4, + [213781] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11548), 1, + ACTIONS(8365), 1, sym_identifier, STATE(7349), 1, sym_comment, - [213677] = 4, + [213794] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11550), 1, - anon_sym_EQ_GT, + ACTIONS(5858), 1, + anon_sym_RBRACE, STATE(7350), 1, sym_comment, - [213690] = 4, + [213807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11552), 1, - anon_sym_from, + ACTIONS(10245), 1, + anon_sym_RBRACK, STATE(7351), 1, sym_comment, - [213703] = 4, + [213820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11554), 1, - anon_sym_EQ, + ACTIONS(11534), 1, + anon_sym_class, STATE(7352), 1, sym_comment, - [213716] = 4, + [213833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11556), 1, - anon_sym_EQ_GT, + ACTIONS(11536), 1, + anon_sym_namespace, STATE(7353), 1, sym_comment, - [213729] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213846] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11558), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11538), 1, + anon_sym_EQ_GT, STATE(7354), 1, sym_comment, - [213742] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213859] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9977), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5039), 1, + anon_sym_RPAREN, STATE(7355), 1, sym_comment, - [213755] = 4, + [213872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11560), 1, - anon_sym_class, + ACTIONS(11540), 1, + anon_sym_RBRACK, STATE(7356), 1, sym_comment, - [213768] = 4, + [213885] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11562), 1, + ACTIONS(11542), 1, sym_identifier, STATE(7357), 1, sym_comment, - [213781] = 4, + [213898] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11564), 1, + ACTIONS(11544), 1, sym_identifier, STATE(7358), 1, sym_comment, - [213794] = 4, + [213911] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9904), 1, - anon_sym_EQ, + ACTIONS(11546), 1, + sym_identifier, STATE(7359), 1, sym_comment, - [213807] = 4, + [213924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11566), 1, - anon_sym_EQ, + ACTIONS(11548), 1, + anon_sym_EQ_GT, STATE(7360), 1, sym_comment, - [213820] = 4, + [213937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5894), 1, - anon_sym_RBRACK, + ACTIONS(11550), 1, + anon_sym_EQ_GT, STATE(7361), 1, sym_comment, - [213833] = 4, + [213950] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11568), 1, + ACTIONS(9914), 1, sym_identifier, STATE(7362), 1, sym_comment, - [213846] = 4, + [213963] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11570), 1, - anon_sym_EQ, + ACTIONS(11552), 1, + anon_sym_class, STATE(7363), 1, sym_comment, - [213859] = 4, + [213976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11572), 1, - anon_sym_new, + ACTIONS(11554), 1, + anon_sym_EQ_GT, STATE(7364), 1, sym_comment, - [213872] = 4, + [213989] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11574), 1, - anon_sym_SLASH2, + ACTIONS(11556), 1, + sym_identifier, STATE(7365), 1, sym_comment, - [213885] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11576), 1, - sym_identifier, - STATE(7366), 1, - sym_comment, - [213898] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11578), 1, - sym_identifier, - STATE(7367), 1, + ACTIONS(11558), 1, + anon_sym_EQ, + STATE(7366), 1, sym_comment, - [213911] = 4, + [214015] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11580), 1, - anon_sym_COLON, - STATE(7368), 1, + ACTIONS(11560), 1, + anon_sym_target, + STATE(7367), 1, sym_comment, - [213924] = 4, + [214028] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11582), 1, + ACTIONS(11562), 1, sym_identifier, + STATE(7368), 1, + sym_comment, + [214041] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11564), 1, + anon_sym_EQ, STATE(7369), 1, sym_comment, - [213937] = 4, + [214054] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11584), 1, - anon_sym_EQ_GT, + ACTIONS(11566), 1, + anon_sym_new, STATE(7370), 1, sym_comment, - [213950] = 4, + [214067] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11586), 1, + ACTIONS(11568), 1, anon_sym_EQ_GT, STATE(7371), 1, sym_comment, - [213963] = 4, + [214080] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9625), 1, - anon_sym_RBRACK, + ACTIONS(11570), 1, + sym_identifier, STATE(7372), 1, sym_comment, - [213976] = 4, + [214093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11588), 1, - anon_sym_EQ_GT, + ACTIONS(11572), 1, + anon_sym_EQ, STATE(7373), 1, sym_comment, - [213989] = 4, + [214106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11590), 1, - anon_sym_RBRACK, + ACTIONS(11574), 1, + anon_sym_COLON, STATE(7374), 1, sym_comment, - [214002] = 4, + [214119] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11592), 1, - ts_builtin_sym_end, + ACTIONS(11576), 1, + anon_sym_SLASH2, STATE(7375), 1, sym_comment, - [214015] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214132] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11594), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4859), 1, + anon_sym_is, STATE(7376), 1, sym_comment, - [214028] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214145] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11596), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5847), 1, + anon_sym_RBRACK, STATE(7377), 1, sym_comment, - [214041] = 4, + [214158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11598), 1, - anon_sym_EQ, + ACTIONS(5866), 1, + anon_sym_RPAREN, STATE(7378), 1, sym_comment, - [214054] = 4, + [214171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11600), 1, - anon_sym_class, + ACTIONS(11578), 1, + anon_sym_EQ_GT, STATE(7379), 1, sym_comment, - [214067] = 4, + [214184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5916), 1, - anon_sym_COLON, + ACTIONS(11580), 1, + anon_sym_EQ_GT, STATE(7380), 1, sym_comment, - [214080] = 4, + [214197] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11602), 1, - anon_sym_class, + ACTIONS(9780), 1, + anon_sym_EQ, STATE(7381), 1, sym_comment, - [214093] = 4, + [214210] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11604), 1, - anon_sym_namespace, + ACTIONS(11582), 1, + anon_sym_EQ_GT, STATE(7382), 1, sym_comment, - [214106] = 4, + [214223] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5921), 1, - anon_sym_RPAREN, + ACTIONS(11584), 1, + sym_identifier, STATE(7383), 1, sym_comment, - [214119] = 4, + [214236] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_is, + ACTIONS(11586), 1, + anon_sym_EQ, STATE(7384), 1, sym_comment, - [214132] = 4, + [214249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5890), 1, - anon_sym_RBRACE, + ACTIONS(11588), 1, + ts_builtin_sym_end, STATE(7385), 1, sym_comment, - [214145] = 4, + [214262] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5941), 1, - anon_sym_RPAREN, + ACTIONS(11590), 1, + sym_identifier, STATE(7386), 1, sym_comment, - [214158] = 4, + [214275] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5943), 1, - anon_sym_RPAREN, + ACTIONS(11592), 1, + anon_sym_class, STATE(7387), 1, sym_comment, - [214171] = 4, + [214288] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11606), 1, - anon_sym_RBRACK, + ACTIONS(11594), 1, + anon_sym_namespace, STATE(7388), 1, sym_comment, - [214184] = 4, + [214301] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5937), 1, - anon_sym_RPAREN, + ACTIONS(11596), 1, + sym_identifier, STATE(7389), 1, sym_comment, - [214197] = 4, + [214314] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9555), 1, + ACTIONS(11598), 1, sym_identifier, STATE(7390), 1, sym_comment, - [214210] = 4, + [214327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11608), 1, - anon_sym_class, + ACTIONS(11600), 1, + anon_sym_RBRACK, STATE(7391), 1, sym_comment, - [214223] = 4, + [214340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5480), 1, - anon_sym_in, + ACTIONS(11602), 1, + anon_sym_RPAREN, STATE(7392), 1, sym_comment, - [214236] = 4, + [214353] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10298), 1, - anon_sym_GT, + ACTIONS(11604), 1, + sym_identifier, STATE(7393), 1, sym_comment, - [214249] = 4, + [214366] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11610), 1, - anon_sym_EQ, + ACTIONS(11606), 1, + sym_identifier, STATE(7394), 1, sym_comment, - [214262] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214379] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11612), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11608), 1, + anon_sym_RBRACK, STATE(7395), 1, sym_comment, - [214275] = 4, + [214392] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11614), 1, + ACTIONS(9828), 1, sym_identifier, STATE(7396), 1, sym_comment, - [214288] = 4, + [214405] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11616), 1, - anon_sym_EQ, + ACTIONS(11610), 1, + anon_sym_class, STATE(7397), 1, sym_comment, - [214301] = 4, + [214418] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11618), 1, - anon_sym_new, + ACTIONS(11612), 1, + sym_identifier, STATE(7398), 1, sym_comment, - [214314] = 4, + [214431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5192), 1, - anon_sym_RPAREN, + ACTIONS(11614), 1, + anon_sym_class, STATE(7399), 1, sym_comment, - [214327] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11620), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11616), 1, + anon_sym_EQ, STATE(7400), 1, sym_comment, - [214340] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214457] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11622), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11618), 1, + anon_sym_RBRACK, STATE(7401), 1, sym_comment, - [214353] = 4, + [214470] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11624), 1, - anon_sym_COLON, + ACTIONS(11620), 1, + sym_identifier, STATE(7402), 1, sym_comment, - [214366] = 4, + [214483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7473), 1, - anon_sym_is, + ACTIONS(11622), 1, + anon_sym_EQ, STATE(7403), 1, sym_comment, - [214379] = 4, + [214496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5791), 1, - anon_sym_RBRACK, + ACTIONS(11624), 1, + anon_sym_new, STATE(7404), 1, sym_comment, - [214392] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214509] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11626), 1, - sym_regex_pattern, + anon_sym_RBRACK, STATE(7405), 1, sym_comment, - [214405] = 4, + [214522] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11628), 1, - anon_sym_EQ_GT, + sym_identifier, STATE(7406), 1, sym_comment, - [214418] = 4, + [214535] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9613), 1, - anon_sym_GT, + ACTIONS(11630), 1, + sym_identifier, STATE(7407), 1, sym_comment, - [214431] = 4, + [214548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11630), 1, - anon_sym_EQ_GT, + ACTIONS(11632), 1, + anon_sym_COLON, STATE(7408), 1, sym_comment, - [214444] = 4, + [214561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11632), 1, - anon_sym_class, + ACTIONS(11634), 1, + anon_sym_RPAREN, STATE(7409), 1, sym_comment, - [214457] = 4, + [214574] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11634), 1, - anon_sym_namespace, + ACTIONS(11636), 1, + anon_sym_RBRACK, STATE(7410), 1, sym_comment, - [214470] = 4, + [214587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11636), 1, - anon_sym_GT, + ACTIONS(5396), 1, + anon_sym_in, STATE(7411), 1, sym_comment, - [214483] = 4, + [214600] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11638), 1, - anon_sym_RPAREN, + anon_sym_symbol, STATE(7412), 1, sym_comment, - [214496] = 4, + [214613] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11640), 1, - sym_identifier, + sym_regex_pattern, STATE(7413), 1, sym_comment, - [214509] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214626] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11642), 1, - sym_identifier, + anon_sym_RPAREN, STATE(7414), 1, sym_comment, - [214522] = 4, + [214639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10358), 1, - anon_sym_RBRACK, + ACTIONS(11644), 1, + anon_sym_class, STATE(7415), 1, sym_comment, - [214535] = 4, + [214652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11644), 1, - anon_sym_EQ_GT, + ACTIONS(11646), 1, + anon_sym_namespace, STATE(7416), 1, sym_comment, - [214548] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214665] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11646), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11648), 1, + anon_sym_RBRACK, STATE(7417), 1, sym_comment, - [214561] = 4, + [214678] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9852), 1, + ACTIONS(11650), 1, sym_identifier, STATE(7418), 1, sym_comment, - [214574] = 4, + [214691] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11648), 1, - anon_sym_class, + ACTIONS(11652), 1, + sym_identifier, STATE(7419), 1, sym_comment, - [214587] = 4, + [214704] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11650), 1, + ACTIONS(11654), 1, sym_identifier, STATE(7420), 1, sym_comment, - [214600] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214717] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11652), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11656), 1, + anon_sym_from, STATE(7421), 1, sym_comment, - [214613] = 4, + [214730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11654), 1, - anon_sym_EQ, + ACTIONS(11658), 1, + anon_sym_RPAREN, STATE(7422), 1, sym_comment, - [214626] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214743] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11656), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11660), 1, + anon_sym_EQ_GT, STATE(7423), 1, sym_comment, - [214639] = 4, + [214756] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11658), 1, + ACTIONS(9760), 1, sym_identifier, STATE(7424), 1, sym_comment, - [214652] = 4, + [214769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11660), 1, - anon_sym_EQ, + ACTIONS(11662), 1, + anon_sym_class, STATE(7425), 1, sym_comment, - [214665] = 4, + [214782] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11662), 1, - anon_sym_new, + ACTIONS(11664), 1, + anon_sym_RBRACK, STATE(7426), 1, sym_comment, - [214678] = 4, + [214795] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11664), 1, - anon_sym_EQ_GT, + ACTIONS(5845), 1, + anon_sym_RPAREN, STATE(7427), 1, sym_comment, - [214691] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214808] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11666), 1, - sym_identifier, + anon_sym_EQ, STATE(7428), 1, sym_comment, - [214704] = 4, + [214821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_RPAREN, + ACTIONS(11668), 1, + anon_sym_RBRACK, STATE(7429), 1, sym_comment, - [214717] = 4, + [214834] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11668), 1, - anon_sym_COLON, + ACTIONS(11670), 1, + sym_identifier, STATE(7430), 1, sym_comment, - [214730] = 4, + [214847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11670), 1, - anon_sym_RBRACK, + ACTIONS(11672), 1, + anon_sym_EQ, STATE(7431), 1, sym_comment, - [214743] = 4, + [214860] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11672), 1, - anon_sym_RBRACK, + ACTIONS(11674), 1, + anon_sym_new, STATE(7432), 1, sym_comment, - [214756] = 4, + [214873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11674), 1, + ACTIONS(11676), 1, anon_sym_RBRACK, STATE(7433), 1, sym_comment, - [214769] = 4, + [214886] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11676), 1, - anon_sym_class, + ACTIONS(11678), 1, + sym_identifier, STATE(7434), 1, sym_comment, - [214782] = 4, + [214899] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11678), 1, - anon_sym_namespace, + ACTIONS(11680), 1, + sym_number, STATE(7435), 1, sym_comment, - [214795] = 4, + [214912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11680), 1, - anon_sym_RBRACK, + ACTIONS(11682), 1, + anon_sym_COLON, STATE(7436), 1, sym_comment, - [214808] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214925] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11682), 1, - sym_identifier, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_RPAREN, STATE(7437), 1, sym_comment, - [214821] = 4, + [214938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -379002,7 +379117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7438), 1, sym_comment, - [214834] = 4, + [214951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, @@ -379011,11710 +379126,11774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(7439), 1, sym_comment, - [214847] = 4, + [214964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11688), 1, - anon_sym_RBRACK, + anon_sym_class, STATE(7440), 1, sym_comment, - [214860] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9813), 1, - sym_identifier, - STATE(7441), 1, - sym_comment, - [214873] = 4, + [214977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11690), 1, - anon_sym_class, - STATE(7442), 1, + anon_sym_namespace, + STATE(7441), 1, sym_comment, - [214886] = 4, + [214990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11692), 1, anon_sym_RPAREN, - STATE(7443), 1, + STATE(7442), 1, sym_comment, - [214899] = 4, + [215003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11694), 1, - anon_sym_EQ, - STATE(7444), 1, + sym_number, + STATE(7443), 1, sym_comment, - [214912] = 4, + [215016] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11696), 1, - anon_sym_RBRACK, - STATE(7445), 1, + sym_identifier, + STATE(7444), 1, sym_comment, - [214925] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215029] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11698), 1, - sym_identifier, - STATE(7446), 1, + anon_sym_symbol, + STATE(7445), 1, sym_comment, - [214938] = 4, + [215042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11700), 1, - anon_sym_EQ, + anon_sym_EQ_GT, + STATE(7446), 1, + sym_comment, + [215055] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9714), 1, + sym_identifier, STATE(7447), 1, sym_comment, - [214951] = 4, + [215068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11702), 1, - anon_sym_EQ_GT, + anon_sym_class, STATE(7448), 1, sym_comment, - [214964] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215081] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, ACTIONS(11704), 1, - sym_identifier, + anon_sym_COLON, STATE(7449), 1, sym_comment, - [214977] = 4, + [215094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11706), 1, - anon_sym_COLON, + anon_sym_EQ, STATE(7450), 1, sym_comment, - [214990] = 4, + [215107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11708), 1, - anon_sym_symbol, + anon_sym_EQ_GT, STATE(7451), 1, sym_comment, - [215003] = 4, + [215120] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, ACTIONS(11710), 1, - anon_sym_RBRACK, + sym_identifier, STATE(7452), 1, sym_comment, - [215016] = 4, + [215133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11712), 1, - anon_sym_RBRACK, + anon_sym_EQ, STATE(7453), 1, sym_comment, - [215029] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8274), 1, - sym_identifier, - STATE(7454), 1, - sym_comment, - [215042] = 4, + [215146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11714), 1, - anon_sym_function, - STATE(7455), 1, + anon_sym_RBRACK, + STATE(7454), 1, sym_comment, - [215055] = 4, + [215159] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11716), 1, sym_identifier, - STATE(7456), 1, + STATE(7455), 1, sym_comment, - [215068] = 4, + [215172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11718), 1, - anon_sym_RBRACK, - STATE(7457), 1, + anon_sym_COLON, + STATE(7456), 1, sym_comment, - [215081] = 4, + [215185] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11720), 1, sym_identifier, - STATE(7458), 1, + STATE(7457), 1, sym_comment, - [215094] = 4, + [215198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11722), 1, - anon_sym_EQ_GT, - STATE(7459), 1, + anon_sym_RBRACK, + STATE(7458), 1, sym_comment, - [215107] = 4, + [215211] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11724), 1, anon_sym_RBRACK, - STATE(7460), 1, + STATE(7459), 1, sym_comment, - [215120] = 4, + [215224] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8268), 1, + ACTIONS(8497), 1, sym_identifier, - STATE(7461), 1, + STATE(7460), 1, sym_comment, - [215133] = 4, + [215237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11726), 1, anon_sym_function, - STATE(7462), 1, + STATE(7461), 1, sym_comment, - [215146] = 4, + [215250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11728), 1, anon_sym_RBRACK, + STATE(7462), 1, + sym_comment, + [215263] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11730), 1, + anon_sym_RBRACK, STATE(7463), 1, sym_comment, - [215159] = 4, + [215276] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11730), 1, + ACTIONS(11732), 1, sym_identifier, STATE(7464), 1, sym_comment, - [215172] = 4, + [215289] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11732), 1, - sym_number, + ACTIONS(11734), 1, + anon_sym_RBRACK, STATE(7465), 1, sym_comment, - [215185] = 4, + [215302] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11736), 1, + anon_sym_RBRACK, + STATE(7466), 1, + sym_comment, + [215315] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8258), 1, + ACTIONS(8483), 1, sym_identifier, - STATE(7466), 1, + STATE(7467), 1, sym_comment, - [215198] = 4, + [215328] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11734), 1, + ACTIONS(11738), 1, anon_sym_function, - STATE(7467), 1, + STATE(7468), 1, sym_comment, - [215211] = 4, + [215341] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11736), 1, + ACTIONS(11740), 1, anon_sym_RBRACK, - STATE(7468), 1, + STATE(7469), 1, sym_comment, - [215224] = 4, + [215354] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11738), 1, + ACTIONS(11742), 1, sym_identifier, - STATE(7469), 1, + STATE(7470), 1, sym_comment, - [215237] = 4, + [215367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, + ACTIONS(11744), 1, anon_sym_RBRACK, - STATE(7470), 1, + STATE(7471), 1, sym_comment, - [215250] = 4, + [215380] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8250), 1, + ACTIONS(8473), 1, sym_identifier, - STATE(7471), 1, + STATE(7472), 1, sym_comment, - [215263] = 4, + [215393] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11742), 1, + ACTIONS(11746), 1, anon_sym_function, - STATE(7472), 1, + STATE(7473), 1, sym_comment, - [215276] = 4, + [215406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11744), 1, - anon_sym_RBRACK, - STATE(7473), 1, + ACTIONS(3114), 1, + anon_sym_LBRACE, + STATE(7474), 1, sym_comment, - [215289] = 4, + [215419] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11746), 1, + ACTIONS(11748), 1, sym_identifier, - STATE(7474), 1, + STATE(7475), 1, sym_comment, - [215302] = 4, + [215432] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11748), 1, - anon_sym_RBRACK, - STATE(7475), 1, + ACTIONS(3104), 1, + anon_sym_LBRACE, + STATE(7476), 1, sym_comment, - [215315] = 4, + [215445] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8242), 1, + ACTIONS(8286), 1, sym_identifier, - STATE(7476), 1, + STATE(7477), 1, sym_comment, - [215328] = 4, + [215458] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11750), 1, anon_sym_function, - STATE(7477), 1, + STATE(7478), 1, sym_comment, - [215341] = 4, + [215471] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(11752), 1, anon_sym_RBRACK, - STATE(7478), 1, + STATE(7479), 1, sym_comment, - [215354] = 1, + [215484] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(11754), 1, + sym_identifier, + STATE(7480), 1, + sym_comment, + [215497] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11756), 1, + anon_sym_RBRACK, + STATE(7481), 1, + sym_comment, + [215510] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8246), 1, + sym_identifier, + STATE(7482), 1, + sym_comment, + [215523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11758), 1, + anon_sym_function, + STATE(7483), 1, + sym_comment, + [215536] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11760), 1, + anon_sym_RBRACK, + STATE(7484), 1, + sym_comment, + [215549] = 1, + ACTIONS(11762), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1852)] = 0, - [SMALL_STATE(1853)] = 93, + [SMALL_STATE(1853)] = 75, [SMALL_STATE(1854)] = 168, - [SMALL_STATE(1855)] = 243, - [SMALL_STATE(1856)] = 336, - [SMALL_STATE(1857)] = 431, - [SMALL_STATE(1858)] = 506, - [SMALL_STATE(1859)] = 601, - [SMALL_STATE(1860)] = 694, - [SMALL_STATE(1861)] = 791, - [SMALL_STATE(1862)] = 884, - [SMALL_STATE(1863)] = 977, - [SMALL_STATE(1864)] = 1070, - [SMALL_STATE(1865)] = 1167, - [SMALL_STATE(1866)] = 1260, - [SMALL_STATE(1867)] = 1357, - [SMALL_STATE(1868)] = 1450, - [SMALL_STATE(1869)] = 1545, - [SMALL_STATE(1870)] = 1638, - [SMALL_STATE(1871)] = 1731, - [SMALL_STATE(1872)] = 1824, - [SMALL_STATE(1873)] = 1917, - [SMALL_STATE(1874)] = 2012, - [SMALL_STATE(1875)] = 2087, - [SMALL_STATE(1876)] = 2180, - [SMALL_STATE(1877)] = 2255, - [SMALL_STATE(1878)] = 2330, - [SMALL_STATE(1879)] = 2423, - [SMALL_STATE(1880)] = 2498, - [SMALL_STATE(1881)] = 2591, - [SMALL_STATE(1882)] = 2686, - [SMALL_STATE(1883)] = 2779, + [SMALL_STATE(1855)] = 261, + [SMALL_STATE(1856)] = 354, + [SMALL_STATE(1857)] = 447, + [SMALL_STATE(1858)] = 522, + [SMALL_STATE(1859)] = 615, + [SMALL_STATE(1860)] = 710, + [SMALL_STATE(1861)] = 785, + [SMALL_STATE(1862)] = 882, + [SMALL_STATE(1863)] = 957, + [SMALL_STATE(1864)] = 1052, + [SMALL_STATE(1865)] = 1149, + [SMALL_STATE(1866)] = 1224, + [SMALL_STATE(1867)] = 1299, + [SMALL_STATE(1868)] = 1392, + [SMALL_STATE(1869)] = 1489, + [SMALL_STATE(1870)] = 1584, + [SMALL_STATE(1871)] = 1677, + [SMALL_STATE(1872)] = 1752, + [SMALL_STATE(1873)] = 1845, + [SMALL_STATE(1874)] = 1938, + [SMALL_STATE(1875)] = 2033, + [SMALL_STATE(1876)] = 2126, + [SMALL_STATE(1877)] = 2221, + [SMALL_STATE(1878)] = 2314, + [SMALL_STATE(1879)] = 2407, + [SMALL_STATE(1880)] = 2500, + [SMALL_STATE(1881)] = 2595, + [SMALL_STATE(1882)] = 2688, + [SMALL_STATE(1883)] = 2781, [SMALL_STATE(1884)] = 2874, - [SMALL_STATE(1885)] = 2969, - [SMALL_STATE(1886)] = 3062, - [SMALL_STATE(1887)] = 3155, + [SMALL_STATE(1885)] = 2967, + [SMALL_STATE(1886)] = 3060, + [SMALL_STATE(1887)] = 3153, [SMALL_STATE(1888)] = 3248, - [SMALL_STATE(1889)] = 3341, + [SMALL_STATE(1889)] = 3343, [SMALL_STATE(1890)] = 3436, - [SMALL_STATE(1891)] = 3530, - [SMALL_STATE(1892)] = 3626, - [SMALL_STATE(1893)] = 3718, - [SMALL_STATE(1894)] = 3814, - [SMALL_STATE(1895)] = 3914, - [SMALL_STATE(1896)] = 4010, - [SMALL_STATE(1897)] = 4102, - [SMALL_STATE(1898)] = 4196, - [SMALL_STATE(1899)] = 4288, - [SMALL_STATE(1900)] = 4362, - [SMALL_STATE(1901)] = 4440, - [SMALL_STATE(1902)] = 4532, - [SMALL_STATE(1903)] = 4628, - [SMALL_STATE(1904)] = 4720, - [SMALL_STATE(1905)] = 4794, - [SMALL_STATE(1906)] = 4889, - [SMALL_STATE(1907)] = 4968, - [SMALL_STATE(1908)] = 5045, - [SMALL_STATE(1909)] = 5140, - [SMALL_STATE(1910)] = 5231, - [SMALL_STATE(1911)] = 5314, - [SMALL_STATE(1912)] = 5407, - [SMALL_STATE(1913)] = 5504, - [SMALL_STATE(1914)] = 5595, - [SMALL_STATE(1915)] = 5680, - [SMALL_STATE(1916)] = 5763, - [SMALL_STATE(1917)] = 5846, - [SMALL_STATE(1918)] = 5937, - [SMALL_STATE(1919)] = 6028, - [SMALL_STATE(1920)] = 6111, - [SMALL_STATE(1921)] = 6202, - [SMALL_STATE(1922)] = 6299, - [SMALL_STATE(1923)] = 6382, - [SMALL_STATE(1924)] = 6473, - [SMALL_STATE(1925)] = 6564, - [SMALL_STATE(1926)] = 6647, - [SMALL_STATE(1927)] = 6738, - [SMALL_STATE(1928)] = 6829, - [SMALL_STATE(1929)] = 6924, - [SMALL_STATE(1930)] = 7019, - [SMALL_STATE(1931)] = 7092, - [SMALL_STATE(1932)] = 7177, - [SMALL_STATE(1933)] = 7268, - [SMALL_STATE(1934)] = 7341, - [SMALL_STATE(1935)] = 7432, - [SMALL_STATE(1936)] = 7507, - [SMALL_STATE(1937)] = 7598, - [SMALL_STATE(1938)] = 7692, - [SMALL_STATE(1939)] = 7772, - [SMALL_STATE(1940)] = 7850, - [SMALL_STATE(1941)] = 7930, - [SMALL_STATE(1942)] = 8012, - [SMALL_STATE(1943)] = 8100, - [SMALL_STATE(1944)] = 8190, - [SMALL_STATE(1945)] = 8284, - [SMALL_STATE(1946)] = 8366, - [SMALL_STATE(1947)] = 8436, - [SMALL_STATE(1948)] = 8514, - [SMALL_STATE(1949)] = 8596, - [SMALL_STATE(1950)] = 8680, - [SMALL_STATE(1951)] = 8770, - [SMALL_STATE(1952)] = 8852, - [SMALL_STATE(1953)] = 8936, - [SMALL_STATE(1954)] = 9030, - [SMALL_STATE(1955)] = 9108, - [SMALL_STATE(1956)] = 9178, - [SMALL_STATE(1957)] = 9248, - [SMALL_STATE(1958)] = 9338, - [SMALL_STATE(1959)] = 9432, - [SMALL_STATE(1960)] = 9512, - [SMALL_STATE(1961)] = 9600, - [SMALL_STATE(1962)] = 9692, - [SMALL_STATE(1963)] = 9770, - [SMALL_STATE(1964)] = 9852, - [SMALL_STATE(1965)] = 9931, - [SMALL_STATE(1966)] = 10020, - [SMALL_STATE(1967)] = 10089, - [SMALL_STATE(1968)] = 10178, - [SMALL_STATE(1969)] = 10257, - [SMALL_STATE(1970)] = 10330, - [SMALL_STATE(1971)] = 10403, - [SMALL_STATE(1972)] = 10472, - [SMALL_STATE(1973)] = 10555, - [SMALL_STATE(1974)] = 10632, - [SMALL_STATE(1975)] = 10709, - [SMALL_STATE(1976)] = 10794, - [SMALL_STATE(1977)] = 10871, - [SMALL_STATE(1978)] = 10948, - [SMALL_STATE(1979)] = 11017, - [SMALL_STATE(1980)] = 11096, - [SMALL_STATE(1981)] = 11165, - [SMALL_STATE(1982)] = 11258, - [SMALL_STATE(1983)] = 11329, - [SMALL_STATE(1984)] = 11398, - [SMALL_STATE(1985)] = 11477, - [SMALL_STATE(1986)] = 11556, - [SMALL_STATE(1987)] = 11641, - [SMALL_STATE(1988)] = 11720, - [SMALL_STATE(1989)] = 11789, - [SMALL_STATE(1990)] = 11866, - [SMALL_STATE(1991)] = 11945, - [SMALL_STATE(1992)] = 12026, - [SMALL_STATE(1993)] = 12105, - [SMALL_STATE(1994)] = 12176, - [SMALL_STATE(1995)] = 12253, - [SMALL_STATE(1996)] = 12324, - [SMALL_STATE(1997)] = 12399, - [SMALL_STATE(1998)] = 12470, - [SMALL_STATE(1999)] = 12551, - [SMALL_STATE(2000)] = 12622, - [SMALL_STATE(2001)] = 12693, - [SMALL_STATE(2002)] = 12766, - [SMALL_STATE(2003)] = 12853, - [SMALL_STATE(2004)] = 12924, - [SMALL_STATE(2005)] = 12997, - [SMALL_STATE(2006)] = 13074, - [SMALL_STATE(2007)] = 13153, - [SMALL_STATE(2008)] = 13222, - [SMALL_STATE(2009)] = 13293, - [SMALL_STATE(2010)] = 13372, - [SMALL_STATE(2011)] = 13461, - [SMALL_STATE(2012)] = 13532, - [SMALL_STATE(2013)] = 13601, - [SMALL_STATE(2014)] = 13676, - [SMALL_STATE(2015)] = 13745, - [SMALL_STATE(2016)] = 13814, - [SMALL_STATE(2017)] = 13885, - [SMALL_STATE(2018)] = 13956, - [SMALL_STATE(2019)] = 14033, - [SMALL_STATE(2020)] = 14116, - [SMALL_STATE(2021)] = 14197, - [SMALL_STATE(2022)] = 14280, - [SMALL_STATE(2023)] = 14373, - [SMALL_STATE(2024)] = 14449, - [SMALL_STATE(2025)] = 14531, - [SMALL_STATE(2026)] = 14609, - [SMALL_STATE(2027)] = 14683, - [SMALL_STATE(2028)] = 14765, - [SMALL_STATE(2029)] = 14843, - [SMALL_STATE(2030)] = 14925, - [SMALL_STATE(2031)] = 15003, - [SMALL_STATE(2032)] = 15081, - [SMALL_STATE(2033)] = 15159, - [SMALL_STATE(2034)] = 15243, - [SMALL_STATE(2035)] = 15331, - [SMALL_STATE(2036)] = 15409, - [SMALL_STATE(2037)] = 15485, - [SMALL_STATE(2038)] = 15563, - [SMALL_STATE(2039)] = 15637, - [SMALL_STATE(2040)] = 15713, - [SMALL_STATE(2041)] = 15789, - [SMALL_STATE(2042)] = 15867, - [SMALL_STATE(2043)] = 15945, - [SMALL_STATE(2044)] = 16027, - [SMALL_STATE(2045)] = 16106, - [SMALL_STATE(2046)] = 16179, - [SMALL_STATE(2047)] = 16254, - [SMALL_STATE(2048)] = 16329, - [SMALL_STATE(2049)] = 16456, - [SMALL_STATE(2050)] = 16583, - [SMALL_STATE(2051)] = 16710, - [SMALL_STATE(2052)] = 16781, - [SMALL_STATE(2053)] = 16908, - [SMALL_STATE(2054)] = 17035, - [SMALL_STATE(2055)] = 17162, - [SMALL_STATE(2056)] = 17243, - [SMALL_STATE(2057)] = 17318, - [SMALL_STATE(2058)] = 17445, - [SMALL_STATE(2059)] = 17520, - [SMALL_STATE(2060)] = 17595, - [SMALL_STATE(2061)] = 17674, - [SMALL_STATE(2062)] = 17749, - [SMALL_STATE(2063)] = 17820, - [SMALL_STATE(2064)] = 17897, - [SMALL_STATE(2065)] = 17972, - [SMALL_STATE(2066)] = 18047, - [SMALL_STATE(2067)] = 18124, - [SMALL_STATE(2068)] = 18203, - [SMALL_STATE(2069)] = 18330, - [SMALL_STATE(2070)] = 18457, - [SMALL_STATE(2071)] = 18536, + [SMALL_STATE(1891)] = 3528, + [SMALL_STATE(1892)] = 3620, + [SMALL_STATE(1893)] = 3714, + [SMALL_STATE(1894)] = 3810, + [SMALL_STATE(1895)] = 3902, + [SMALL_STATE(1896)] = 3984, + [SMALL_STATE(1897)] = 4080, + [SMALL_STATE(1898)] = 4158, + [SMALL_STATE(1899)] = 4232, + [SMALL_STATE(1900)] = 4332, + [SMALL_STATE(1901)] = 4424, + [SMALL_STATE(1902)] = 4498, + [SMALL_STATE(1903)] = 4592, + [SMALL_STATE(1904)] = 4688, + [SMALL_STATE(1905)] = 4780, + [SMALL_STATE(1906)] = 4876, + [SMALL_STATE(1907)] = 4973, + [SMALL_STATE(1908)] = 5046, + [SMALL_STATE(1909)] = 5131, + [SMALL_STATE(1910)] = 5228, + [SMALL_STATE(1911)] = 5323, + [SMALL_STATE(1912)] = 5406, + [SMALL_STATE(1913)] = 5485, + [SMALL_STATE(1914)] = 5576, + [SMALL_STATE(1915)] = 5671, + [SMALL_STATE(1916)] = 5762, + [SMALL_STATE(1917)] = 5835, + [SMALL_STATE(1918)] = 5920, + [SMALL_STATE(1919)] = 6003, + [SMALL_STATE(1920)] = 6096, + [SMALL_STATE(1921)] = 6187, + [SMALL_STATE(1922)] = 6278, + [SMALL_STATE(1923)] = 6373, + [SMALL_STATE(1924)] = 6464, + [SMALL_STATE(1925)] = 6547, + [SMALL_STATE(1926)] = 6638, + [SMALL_STATE(1927)] = 6729, + [SMALL_STATE(1928)] = 6812, + [SMALL_STATE(1929)] = 6903, + [SMALL_STATE(1930)] = 6978, + [SMALL_STATE(1931)] = 7061, + [SMALL_STATE(1932)] = 7144, + [SMALL_STATE(1933)] = 7235, + [SMALL_STATE(1934)] = 7326, + [SMALL_STATE(1935)] = 7417, + [SMALL_STATE(1936)] = 7508, + [SMALL_STATE(1937)] = 7603, + [SMALL_STATE(1938)] = 7673, + [SMALL_STATE(1939)] = 7753, + [SMALL_STATE(1940)] = 7837, + [SMALL_STATE(1941)] = 7917, + [SMALL_STATE(1942)] = 7987, + [SMALL_STATE(1943)] = 8067, + [SMALL_STATE(1944)] = 8161, + [SMALL_STATE(1945)] = 8243, + [SMALL_STATE(1946)] = 8327, + [SMALL_STATE(1947)] = 8409, + [SMALL_STATE(1948)] = 8499, + [SMALL_STATE(1949)] = 8593, + [SMALL_STATE(1950)] = 8681, + [SMALL_STATE(1951)] = 8759, + [SMALL_STATE(1952)] = 8849, + [SMALL_STATE(1953)] = 8939, + [SMALL_STATE(1954)] = 9021, + [SMALL_STATE(1955)] = 9099, + [SMALL_STATE(1956)] = 9193, + [SMALL_STATE(1957)] = 9285, + [SMALL_STATE(1958)] = 9363, + [SMALL_STATE(1959)] = 9457, + [SMALL_STATE(1960)] = 9545, + [SMALL_STATE(1961)] = 9615, + [SMALL_STATE(1962)] = 9693, + [SMALL_STATE(1963)] = 9775, + [SMALL_STATE(1964)] = 9857, + [SMALL_STATE(1965)] = 9940, + [SMALL_STATE(1966)] = 10029, + [SMALL_STATE(1967)] = 10106, + [SMALL_STATE(1968)] = 10187, + [SMALL_STATE(1969)] = 10256, + [SMALL_STATE(1970)] = 10325, + [SMALL_STATE(1971)] = 10396, + [SMALL_STATE(1972)] = 10465, + [SMALL_STATE(1973)] = 10542, + [SMALL_STATE(1974)] = 10613, + [SMALL_STATE(1975)] = 10686, + [SMALL_STATE(1976)] = 10765, + [SMALL_STATE(1977)] = 10842, + [SMALL_STATE(1978)] = 10921, + [SMALL_STATE(1979)] = 11004, + [SMALL_STATE(1980)] = 11077, + [SMALL_STATE(1981)] = 11160, + [SMALL_STATE(1982)] = 11229, + [SMALL_STATE(1983)] = 11298, + [SMALL_STATE(1984)] = 11387, + [SMALL_STATE(1985)] = 11460, + [SMALL_STATE(1986)] = 11541, + [SMALL_STATE(1987)] = 11626, + [SMALL_STATE(1988)] = 11697, + [SMALL_STATE(1989)] = 11774, + [SMALL_STATE(1990)] = 11845, + [SMALL_STATE(1991)] = 11926, + [SMALL_STATE(1992)] = 11997, + [SMALL_STATE(1993)] = 12068, + [SMALL_STATE(1994)] = 12139, + [SMALL_STATE(1995)] = 12216, + [SMALL_STATE(1996)] = 12289, + [SMALL_STATE(1997)] = 12360, + [SMALL_STATE(1998)] = 12431, + [SMALL_STATE(1999)] = 12500, + [SMALL_STATE(2000)] = 12593, + [SMALL_STATE(2001)] = 12680, + [SMALL_STATE(2002)] = 12749, + [SMALL_STATE(2003)] = 12818, + [SMALL_STATE(2004)] = 12893, + [SMALL_STATE(2005)] = 12962, + [SMALL_STATE(2006)] = 13033, + [SMALL_STATE(2007)] = 13122, + [SMALL_STATE(2008)] = 13201, + [SMALL_STATE(2009)] = 13270, + [SMALL_STATE(2010)] = 13339, + [SMALL_STATE(2011)] = 13418, + [SMALL_STATE(2012)] = 13497, + [SMALL_STATE(2013)] = 13574, + [SMALL_STATE(2014)] = 13653, + [SMALL_STATE(2015)] = 13728, + [SMALL_STATE(2016)] = 13821, + [SMALL_STATE(2017)] = 13892, + [SMALL_STATE(2018)] = 13971, + [SMALL_STATE(2019)] = 14050, + [SMALL_STATE(2020)] = 14135, + [SMALL_STATE(2021)] = 14212, + [SMALL_STATE(2022)] = 14291, + [SMALL_STATE(2023)] = 14370, + [SMALL_STATE(2024)] = 14447, + [SMALL_STATE(2025)] = 14525, + [SMALL_STATE(2026)] = 14603, + [SMALL_STATE(2027)] = 14681, + [SMALL_STATE(2028)] = 14763, + [SMALL_STATE(2029)] = 14837, + [SMALL_STATE(2030)] = 14919, + [SMALL_STATE(2031)] = 15001, + [SMALL_STATE(2032)] = 15085, + [SMALL_STATE(2033)] = 15163, + [SMALL_STATE(2034)] = 15241, + [SMALL_STATE(2035)] = 15317, + [SMALL_STATE(2036)] = 15395, + [SMALL_STATE(2037)] = 15471, + [SMALL_STATE(2038)] = 15547, + [SMALL_STATE(2039)] = 15625, + [SMALL_STATE(2040)] = 15707, + [SMALL_STATE(2041)] = 15781, + [SMALL_STATE(2042)] = 15869, + [SMALL_STATE(2043)] = 15947, + [SMALL_STATE(2044)] = 16023, + [SMALL_STATE(2045)] = 16101, + [SMALL_STATE(2046)] = 16228, + [SMALL_STATE(2047)] = 16303, + [SMALL_STATE(2048)] = 16430, + [SMALL_STATE(2049)] = 16505, + [SMALL_STATE(2050)] = 16580, + [SMALL_STATE(2051)] = 16707, + [SMALL_STATE(2052)] = 16780, + [SMALL_STATE(2053)] = 16907, + [SMALL_STATE(2054)] = 17034, + [SMALL_STATE(2055)] = 17113, + [SMALL_STATE(2056)] = 17194, + [SMALL_STATE(2057)] = 17273, + [SMALL_STATE(2058)] = 17348, + [SMALL_STATE(2059)] = 17427, + [SMALL_STATE(2060)] = 17502, + [SMALL_STATE(2061)] = 17581, + [SMALL_STATE(2062)] = 17708, + [SMALL_STATE(2063)] = 17785, + [SMALL_STATE(2064)] = 17860, + [SMALL_STATE(2065)] = 17987, + [SMALL_STATE(2066)] = 18062, + [SMALL_STATE(2067)] = 18139, + [SMALL_STATE(2068)] = 18210, + [SMALL_STATE(2069)] = 18285, + [SMALL_STATE(2070)] = 18412, + [SMALL_STATE(2071)] = 18483, [SMALL_STATE(2072)] = 18610, - [SMALL_STATE(2073)] = 18682, - [SMALL_STATE(2074)] = 18758, - [SMALL_STATE(2075)] = 18832, - [SMALL_STATE(2076)] = 18906, - [SMALL_STATE(2077)] = 18982, - [SMALL_STATE(2078)] = 19056, - [SMALL_STATE(2079)] = 19130, - [SMALL_STATE(2080)] = 19204, - [SMALL_STATE(2081)] = 19282, - [SMALL_STATE(2082)] = 19356, - [SMALL_STATE(2083)] = 19434, - [SMALL_STATE(2084)] = 19508, + [SMALL_STATE(2073)] = 18686, + [SMALL_STATE(2074)] = 18762, + [SMALL_STATE(2075)] = 18840, + [SMALL_STATE(2076)] = 18912, + [SMALL_STATE(2077)] = 18984, + [SMALL_STATE(2078)] = 19058, + [SMALL_STATE(2079)] = 19132, + [SMALL_STATE(2080)] = 19206, + [SMALL_STATE(2081)] = 19284, + [SMALL_STATE(2082)] = 19358, + [SMALL_STATE(2083)] = 19432, + [SMALL_STATE(2084)] = 19506, [SMALL_STATE(2085)] = 19580, - [SMALL_STATE(2086)] = 19653, - [SMALL_STATE(2087)] = 19726, - [SMALL_STATE(2088)] = 19797, - [SMALL_STATE(2089)] = 19870, - [SMALL_STATE(2090)] = 19993, - [SMALL_STATE(2091)] = 20116, - [SMALL_STATE(2092)] = 20189, - [SMALL_STATE(2093)] = 20312, - [SMALL_STATE(2094)] = 20385, - [SMALL_STATE(2095)] = 20458, - [SMALL_STATE(2096)] = 20581, - [SMALL_STATE(2097)] = 20654, - [SMALL_STATE(2098)] = 20777, - [SMALL_STATE(2099)] = 20900, - [SMALL_STATE(2100)] = 20973, - [SMALL_STATE(2101)] = 21046, - [SMALL_STATE(2102)] = 21119, - [SMALL_STATE(2103)] = 21192, - [SMALL_STATE(2104)] = 21315, - [SMALL_STATE(2105)] = 21438, - [SMALL_STATE(2106)] = 21561, - [SMALL_STATE(2107)] = 21684, - [SMALL_STATE(2108)] = 21807, - [SMALL_STATE(2109)] = 21930, - [SMALL_STATE(2110)] = 22003, - [SMALL_STATE(2111)] = 22076, - [SMALL_STATE(2112)] = 22149, - [SMALL_STATE(2113)] = 22220, - [SMALL_STATE(2114)] = 22343, - [SMALL_STATE(2115)] = 22466, - [SMALL_STATE(2116)] = 22539, - [SMALL_STATE(2117)] = 22612, - [SMALL_STATE(2118)] = 22735, - [SMALL_STATE(2119)] = 22808, - [SMALL_STATE(2120)] = 22931, - [SMALL_STATE(2121)] = 23054, - [SMALL_STATE(2122)] = 23177, - [SMALL_STATE(2123)] = 23250, - [SMALL_STATE(2124)] = 23373, - [SMALL_STATE(2125)] = 23446, - [SMALL_STATE(2126)] = 23569, - [SMALL_STATE(2127)] = 23644, - [SMALL_STATE(2128)] = 23767, - [SMALL_STATE(2129)] = 23840, - [SMALL_STATE(2130)] = 23963, - [SMALL_STATE(2131)] = 24086, - [SMALL_STATE(2132)] = 24209, - [SMALL_STATE(2133)] = 24332, - [SMALL_STATE(2134)] = 24455, - [SMALL_STATE(2135)] = 24528, - [SMALL_STATE(2136)] = 24651, - [SMALL_STATE(2137)] = 24721, - [SMALL_STATE(2138)] = 24791, - [SMALL_STATE(2139)] = 24861, - [SMALL_STATE(2140)] = 24931, - [SMALL_STATE(2141)] = 25001, - [SMALL_STATE(2142)] = 25071, - [SMALL_STATE(2143)] = 25141, - [SMALL_STATE(2144)] = 25211, - [SMALL_STATE(2145)] = 25281, - [SMALL_STATE(2146)] = 25400, - [SMALL_STATE(2147)] = 25519, - [SMALL_STATE(2148)] = 25638, - [SMALL_STATE(2149)] = 25757, - [SMALL_STATE(2150)] = 25876, - [SMALL_STATE(2151)] = 25995, - [SMALL_STATE(2152)] = 26114, - [SMALL_STATE(2153)] = 26233, - [SMALL_STATE(2154)] = 26352, - [SMALL_STATE(2155)] = 26471, - [SMALL_STATE(2156)] = 26595, - [SMALL_STATE(2157)] = 26719, - [SMALL_STATE(2158)] = 26843, - [SMALL_STATE(2159)] = 26967, - [SMALL_STATE(2160)] = 27091, - [SMALL_STATE(2161)] = 27206, - [SMALL_STATE(2162)] = 27323, - [SMALL_STATE(2163)] = 27434, - [SMALL_STATE(2164)] = 27551, - [SMALL_STATE(2165)] = 27668, - [SMALL_STATE(2166)] = 27785, - [SMALL_STATE(2167)] = 27896, - [SMALL_STATE(2168)] = 28013, - [SMALL_STATE(2169)] = 28130, - [SMALL_STATE(2170)] = 28247, - [SMALL_STATE(2171)] = 28364, - [SMALL_STATE(2172)] = 28475, - [SMALL_STATE(2173)] = 28592, - [SMALL_STATE(2174)] = 28709, - [SMALL_STATE(2175)] = 28826, - [SMALL_STATE(2176)] = 28937, - [SMALL_STATE(2177)] = 29054, - [SMALL_STATE(2178)] = 29171, - [SMALL_STATE(2179)] = 29288, - [SMALL_STATE(2180)] = 29405, - [SMALL_STATE(2181)] = 29522, - [SMALL_STATE(2182)] = 29639, - [SMALL_STATE(2183)] = 29750, - [SMALL_STATE(2184)] = 29867, - [SMALL_STATE(2185)] = 29984, - [SMALL_STATE(2186)] = 30101, - [SMALL_STATE(2187)] = 30218, - [SMALL_STATE(2188)] = 30335, - [SMALL_STATE(2189)] = 30452, - [SMALL_STATE(2190)] = 30569, - [SMALL_STATE(2191)] = 30680, - [SMALL_STATE(2192)] = 30797, - [SMALL_STATE(2193)] = 30914, - [SMALL_STATE(2194)] = 31031, - [SMALL_STATE(2195)] = 31142, - [SMALL_STATE(2196)] = 31259, - [SMALL_STATE(2197)] = 31376, - [SMALL_STATE(2198)] = 31493, - [SMALL_STATE(2199)] = 31610, - [SMALL_STATE(2200)] = 31727, - [SMALL_STATE(2201)] = 31841, - [SMALL_STATE(2202)] = 31903, - [SMALL_STATE(2203)] = 32019, - [SMALL_STATE(2204)] = 32081, - [SMALL_STATE(2205)] = 32152, - [SMALL_STATE(2206)] = 32229, - [SMALL_STATE(2207)] = 32298, - [SMALL_STATE(2208)] = 32369, - [SMALL_STATE(2209)] = 32472, - [SMALL_STATE(2210)] = 32543, - [SMALL_STATE(2211)] = 32609, - [SMALL_STATE(2212)] = 32669, - [SMALL_STATE(2213)] = 32729, - [SMALL_STATE(2214)] = 32789, - [SMALL_STATE(2215)] = 32851, - [SMALL_STATE(2216)] = 32911, - [SMALL_STATE(2217)] = 32977, - [SMALL_STATE(2218)] = 33043, - [SMALL_STATE(2219)] = 33105, - [SMALL_STATE(2220)] = 33165, - [SMALL_STATE(2221)] = 33231, - [SMALL_STATE(2222)] = 33295, - [SMALL_STATE(2223)] = 33359, - [SMALL_STATE(2224)] = 33419, - [SMALL_STATE(2225)] = 33479, - [SMALL_STATE(2226)] = 33541, - [SMALL_STATE(2227)] = 33605, - [SMALL_STATE(2228)] = 33664, - [SMALL_STATE(2229)] = 33725, - [SMALL_STATE(2230)] = 33784, - [SMALL_STATE(2231)] = 33909, - [SMALL_STATE(2232)] = 33994, - [SMALL_STATE(2233)] = 34089, - [SMALL_STATE(2234)] = 34198, - [SMALL_STATE(2235)] = 34323, - [SMALL_STATE(2236)] = 34390, - [SMALL_STATE(2237)] = 34455, - [SMALL_STATE(2238)] = 34514, - [SMALL_STATE(2239)] = 34631, - [SMALL_STATE(2240)] = 34756, - [SMALL_STATE(2241)] = 34815, - [SMALL_STATE(2242)] = 34932, - [SMALL_STATE(2243)] = 35057, - [SMALL_STATE(2244)] = 35116, - [SMALL_STATE(2245)] = 35175, - [SMALL_STATE(2246)] = 35234, - [SMALL_STATE(2247)] = 35351, - [SMALL_STATE(2248)] = 35410, - [SMALL_STATE(2249)] = 35487, - [SMALL_STATE(2250)] = 35604, - [SMALL_STATE(2251)] = 35665, - [SMALL_STATE(2252)] = 35724, - [SMALL_STATE(2253)] = 35783, - [SMALL_STATE(2254)] = 35842, - [SMALL_STATE(2255)] = 35901, - [SMALL_STATE(2256)] = 35960, - [SMALL_STATE(2257)] = 36019, - [SMALL_STATE(2258)] = 36078, - [SMALL_STATE(2259)] = 36137, - [SMALL_STATE(2260)] = 36196, - [SMALL_STATE(2261)] = 36255, - [SMALL_STATE(2262)] = 36316, - [SMALL_STATE(2263)] = 36375, - [SMALL_STATE(2264)] = 36434, - [SMALL_STATE(2265)] = 36493, - [SMALL_STATE(2266)] = 36552, - [SMALL_STATE(2267)] = 36611, - [SMALL_STATE(2268)] = 36670, - [SMALL_STATE(2269)] = 36729, - [SMALL_STATE(2270)] = 36788, - [SMALL_STATE(2271)] = 36853, - [SMALL_STATE(2272)] = 36918, - [SMALL_STATE(2273)] = 36997, - [SMALL_STATE(2274)] = 37062, - [SMALL_STATE(2275)] = 37121, - [SMALL_STATE(2276)] = 37246, - [SMALL_STATE(2277)] = 37305, - [SMALL_STATE(2278)] = 37364, - [SMALL_STATE(2279)] = 37423, - [SMALL_STATE(2280)] = 37488, - [SMALL_STATE(2281)] = 37553, - [SMALL_STATE(2282)] = 37618, - [SMALL_STATE(2283)] = 37677, - [SMALL_STATE(2284)] = 37736, - [SMALL_STATE(2285)] = 37795, - [SMALL_STATE(2286)] = 37854, - [SMALL_STATE(2287)] = 37913, - [SMALL_STATE(2288)] = 37972, - [SMALL_STATE(2289)] = 38031, - [SMALL_STATE(2290)] = 38090, - [SMALL_STATE(2291)] = 38149, - [SMALL_STATE(2292)] = 38208, - [SMALL_STATE(2293)] = 38267, - [SMALL_STATE(2294)] = 38328, - [SMALL_STATE(2295)] = 38387, - [SMALL_STATE(2296)] = 38448, - [SMALL_STATE(2297)] = 38509, - [SMALL_STATE(2298)] = 38568, - [SMALL_STATE(2299)] = 38627, - [SMALL_STATE(2300)] = 38722, - [SMALL_STATE(2301)] = 38781, - [SMALL_STATE(2302)] = 38840, - [SMALL_STATE(2303)] = 38899, - [SMALL_STATE(2304)] = 38958, - [SMALL_STATE(2305)] = 39017, - [SMALL_STATE(2306)] = 39076, - [SMALL_STATE(2307)] = 39135, - [SMALL_STATE(2308)] = 39234, - [SMALL_STATE(2309)] = 39293, - [SMALL_STATE(2310)] = 39410, - [SMALL_STATE(2311)] = 39473, - [SMALL_STATE(2312)] = 39590, - [SMALL_STATE(2313)] = 39685, - [SMALL_STATE(2314)] = 39744, - [SMALL_STATE(2315)] = 39803, - [SMALL_STATE(2316)] = 39890, - [SMALL_STATE(2317)] = 39975, - [SMALL_STATE(2318)] = 40078, - [SMALL_STATE(2319)] = 40137, - [SMALL_STATE(2320)] = 40238, - [SMALL_STATE(2321)] = 40363, - [SMALL_STATE(2322)] = 40422, - [SMALL_STATE(2323)] = 40539, - [SMALL_STATE(2324)] = 40664, - [SMALL_STATE(2325)] = 40723, - [SMALL_STATE(2326)] = 40782, - [SMALL_STATE(2327)] = 40841, - [SMALL_STATE(2328)] = 40900, - [SMALL_STATE(2329)] = 41007, - [SMALL_STATE(2330)] = 41066, - [SMALL_STATE(2331)] = 41171, - [SMALL_STATE(2332)] = 41230, - [SMALL_STATE(2333)] = 41289, - [SMALL_STATE(2334)] = 41406, - [SMALL_STATE(2335)] = 41465, - [SMALL_STATE(2336)] = 41524, - [SMALL_STATE(2337)] = 41589, - [SMALL_STATE(2338)] = 41648, - [SMALL_STATE(2339)] = 41713, - [SMALL_STATE(2340)] = 41774, - [SMALL_STATE(2341)] = 41833, - [SMALL_STATE(2342)] = 41914, - [SMALL_STATE(2343)] = 41973, - [SMALL_STATE(2344)] = 42090, - [SMALL_STATE(2345)] = 42149, - [SMALL_STATE(2346)] = 42212, - [SMALL_STATE(2347)] = 42277, - [SMALL_STATE(2348)] = 42338, - [SMALL_STATE(2349)] = 42399, - [SMALL_STATE(2350)] = 42458, - [SMALL_STATE(2351)] = 42575, - [SMALL_STATE(2352)] = 42634, - [SMALL_STATE(2353)] = 42751, - [SMALL_STATE(2354)] = 42810, - [SMALL_STATE(2355)] = 42869, - [SMALL_STATE(2356)] = 42986, - [SMALL_STATE(2357)] = 43103, - [SMALL_STATE(2358)] = 43194, - [SMALL_STATE(2359)] = 43311, - [SMALL_STATE(2360)] = 43376, - [SMALL_STATE(2361)] = 43435, - [SMALL_STATE(2362)] = 43494, - [SMALL_STATE(2363)] = 43553, - [SMALL_STATE(2364)] = 43612, - [SMALL_STATE(2365)] = 43671, - [SMALL_STATE(2366)] = 43732, - [SMALL_STATE(2367)] = 43797, - [SMALL_STATE(2368)] = 43914, - [SMALL_STATE(2369)] = 44039, - [SMALL_STATE(2370)] = 44098, - [SMALL_STATE(2371)] = 44159, - [SMALL_STATE(2372)] = 44284, - [SMALL_STATE(2373)] = 44343, - [SMALL_STATE(2374)] = 44402, - [SMALL_STATE(2375)] = 44461, - [SMALL_STATE(2376)] = 44548, - [SMALL_STATE(2377)] = 44643, - [SMALL_STATE(2378)] = 44738, - [SMALL_STATE(2379)] = 44801, - [SMALL_STATE(2380)] = 44868, - [SMALL_STATE(2381)] = 44927, - [SMALL_STATE(2382)] = 45022, - [SMALL_STATE(2383)] = 45085, - [SMALL_STATE(2384)] = 45152, - [SMALL_STATE(2385)] = 45211, - [SMALL_STATE(2386)] = 45270, - [SMALL_STATE(2387)] = 45329, - [SMALL_STATE(2388)] = 45390, - [SMALL_STATE(2389)] = 45448, - [SMALL_STATE(2390)] = 45506, - [SMALL_STATE(2391)] = 45594, - [SMALL_STATE(2392)] = 45652, - [SMALL_STATE(2393)] = 45768, - [SMALL_STATE(2394)] = 45854, - [SMALL_STATE(2395)] = 45912, - [SMALL_STATE(2396)] = 46000, - [SMALL_STATE(2397)] = 46058, - [SMALL_STATE(2398)] = 46116, - [SMALL_STATE(2399)] = 46232, - [SMALL_STATE(2400)] = 46290, - [SMALL_STATE(2401)] = 46392, - [SMALL_STATE(2402)] = 46466, - [SMALL_STATE(2403)] = 46586, - [SMALL_STATE(2404)] = 46644, - [SMALL_STATE(2405)] = 46702, - [SMALL_STATE(2406)] = 46760, + [SMALL_STATE(2086)] = 19654, + [SMALL_STATE(2087)] = 19777, + [SMALL_STATE(2088)] = 19900, + [SMALL_STATE(2089)] = 20023, + [SMALL_STATE(2090)] = 20146, + [SMALL_STATE(2091)] = 20219, + [SMALL_STATE(2092)] = 20292, + [SMALL_STATE(2093)] = 20415, + [SMALL_STATE(2094)] = 20488, + [SMALL_STATE(2095)] = 20611, + [SMALL_STATE(2096)] = 20734, + [SMALL_STATE(2097)] = 20857, + [SMALL_STATE(2098)] = 20930, + [SMALL_STATE(2099)] = 21053, + [SMALL_STATE(2100)] = 21176, + [SMALL_STATE(2101)] = 21299, + [SMALL_STATE(2102)] = 21372, + [SMALL_STATE(2103)] = 21495, + [SMALL_STATE(2104)] = 21568, + [SMALL_STATE(2105)] = 21641, + [SMALL_STATE(2106)] = 21764, + [SMALL_STATE(2107)] = 21887, + [SMALL_STATE(2108)] = 22010, + [SMALL_STATE(2109)] = 22133, + [SMALL_STATE(2110)] = 22208, + [SMALL_STATE(2111)] = 22281, + [SMALL_STATE(2112)] = 22404, + [SMALL_STATE(2113)] = 22527, + [SMALL_STATE(2114)] = 22600, + [SMALL_STATE(2115)] = 22671, + [SMALL_STATE(2116)] = 22794, + [SMALL_STATE(2117)] = 22917, + [SMALL_STATE(2118)] = 22990, + [SMALL_STATE(2119)] = 23113, + [SMALL_STATE(2120)] = 23236, + [SMALL_STATE(2121)] = 23359, + [SMALL_STATE(2122)] = 23432, + [SMALL_STATE(2123)] = 23555, + [SMALL_STATE(2124)] = 23628, + [SMALL_STATE(2125)] = 23701, + [SMALL_STATE(2126)] = 23774, + [SMALL_STATE(2127)] = 23847, + [SMALL_STATE(2128)] = 23970, + [SMALL_STATE(2129)] = 24041, + [SMALL_STATE(2130)] = 24114, + [SMALL_STATE(2131)] = 24187, + [SMALL_STATE(2132)] = 24310, + [SMALL_STATE(2133)] = 24383, + [SMALL_STATE(2134)] = 24456, + [SMALL_STATE(2135)] = 24529, + [SMALL_STATE(2136)] = 24652, + [SMALL_STATE(2137)] = 24725, + [SMALL_STATE(2138)] = 24795, + [SMALL_STATE(2139)] = 24865, + [SMALL_STATE(2140)] = 24935, + [SMALL_STATE(2141)] = 25005, + [SMALL_STATE(2142)] = 25075, + [SMALL_STATE(2143)] = 25145, + [SMALL_STATE(2144)] = 25215, + [SMALL_STATE(2145)] = 25285, + [SMALL_STATE(2146)] = 25355, + [SMALL_STATE(2147)] = 25474, + [SMALL_STATE(2148)] = 25593, + [SMALL_STATE(2149)] = 25712, + [SMALL_STATE(2150)] = 25831, + [SMALL_STATE(2151)] = 25950, + [SMALL_STATE(2152)] = 26069, + [SMALL_STATE(2153)] = 26188, + [SMALL_STATE(2154)] = 26307, + [SMALL_STATE(2155)] = 26426, + [SMALL_STATE(2156)] = 26545, + [SMALL_STATE(2157)] = 26669, + [SMALL_STATE(2158)] = 26793, + [SMALL_STATE(2159)] = 26917, + [SMALL_STATE(2160)] = 27041, + [SMALL_STATE(2161)] = 27165, + [SMALL_STATE(2162)] = 27282, + [SMALL_STATE(2163)] = 27399, + [SMALL_STATE(2164)] = 27510, + [SMALL_STATE(2165)] = 27621, + [SMALL_STATE(2166)] = 27738, + [SMALL_STATE(2167)] = 27855, + [SMALL_STATE(2168)] = 27972, + [SMALL_STATE(2169)] = 28083, + [SMALL_STATE(2170)] = 28200, + [SMALL_STATE(2171)] = 28317, + [SMALL_STATE(2172)] = 28434, + [SMALL_STATE(2173)] = 28551, + [SMALL_STATE(2174)] = 28668, + [SMALL_STATE(2175)] = 28785, + [SMALL_STATE(2176)] = 28902, + [SMALL_STATE(2177)] = 29013, + [SMALL_STATE(2178)] = 29130, + [SMALL_STATE(2179)] = 29247, + [SMALL_STATE(2180)] = 29358, + [SMALL_STATE(2181)] = 29475, + [SMALL_STATE(2182)] = 29586, + [SMALL_STATE(2183)] = 29703, + [SMALL_STATE(2184)] = 29820, + [SMALL_STATE(2185)] = 29935, + [SMALL_STATE(2186)] = 30046, + [SMALL_STATE(2187)] = 30163, + [SMALL_STATE(2188)] = 30280, + [SMALL_STATE(2189)] = 30397, + [SMALL_STATE(2190)] = 30514, + [SMALL_STATE(2191)] = 30631, + [SMALL_STATE(2192)] = 30748, + [SMALL_STATE(2193)] = 30865, + [SMALL_STATE(2194)] = 30982, + [SMALL_STATE(2195)] = 31099, + [SMALL_STATE(2196)] = 31216, + [SMALL_STATE(2197)] = 31333, + [SMALL_STATE(2198)] = 31450, + [SMALL_STATE(2199)] = 31567, + [SMALL_STATE(2200)] = 31684, + [SMALL_STATE(2201)] = 31801, + [SMALL_STATE(2202)] = 31915, + [SMALL_STATE(2203)] = 32031, + [SMALL_STATE(2204)] = 32093, + [SMALL_STATE(2205)] = 32155, + [SMALL_STATE(2206)] = 32226, + [SMALL_STATE(2207)] = 32297, + [SMALL_STATE(2208)] = 32368, + [SMALL_STATE(2209)] = 32445, + [SMALL_STATE(2210)] = 32514, + [SMALL_STATE(2211)] = 32617, + [SMALL_STATE(2212)] = 32677, + [SMALL_STATE(2213)] = 32743, + [SMALL_STATE(2214)] = 32805, + [SMALL_STATE(2215)] = 32869, + [SMALL_STATE(2216)] = 32929, + [SMALL_STATE(2217)] = 32991, + [SMALL_STATE(2218)] = 33053, + [SMALL_STATE(2219)] = 33113, + [SMALL_STATE(2220)] = 33173, + [SMALL_STATE(2221)] = 33239, + [SMALL_STATE(2222)] = 33305, + [SMALL_STATE(2223)] = 33371, + [SMALL_STATE(2224)] = 33431, + [SMALL_STATE(2225)] = 33491, + [SMALL_STATE(2226)] = 33551, + [SMALL_STATE(2227)] = 33615, + [SMALL_STATE(2228)] = 33679, + [SMALL_STATE(2229)] = 33796, + [SMALL_STATE(2230)] = 33913, + [SMALL_STATE(2231)] = 34030, + [SMALL_STATE(2232)] = 34089, + [SMALL_STATE(2233)] = 34148, + [SMALL_STATE(2234)] = 34213, + [SMALL_STATE(2235)] = 34272, + [SMALL_STATE(2236)] = 34363, + [SMALL_STATE(2237)] = 34422, + [SMALL_STATE(2238)] = 34539, + [SMALL_STATE(2239)] = 34600, + [SMALL_STATE(2240)] = 34659, + [SMALL_STATE(2241)] = 34718, + [SMALL_STATE(2242)] = 34777, + [SMALL_STATE(2243)] = 34836, + [SMALL_STATE(2244)] = 34895, + [SMALL_STATE(2245)] = 34954, + [SMALL_STATE(2246)] = 35013, + [SMALL_STATE(2247)] = 35072, + [SMALL_STATE(2248)] = 35133, + [SMALL_STATE(2249)] = 35192, + [SMALL_STATE(2250)] = 35255, + [SMALL_STATE(2251)] = 35380, + [SMALL_STATE(2252)] = 35439, + [SMALL_STATE(2253)] = 35498, + [SMALL_STATE(2254)] = 35559, + [SMALL_STATE(2255)] = 35684, + [SMALL_STATE(2256)] = 35779, + [SMALL_STATE(2257)] = 35838, + [SMALL_STATE(2258)] = 35897, + [SMALL_STATE(2259)] = 35956, + [SMALL_STATE(2260)] = 36081, + [SMALL_STATE(2261)] = 36206, + [SMALL_STATE(2262)] = 36273, + [SMALL_STATE(2263)] = 36390, + [SMALL_STATE(2264)] = 36449, + [SMALL_STATE(2265)] = 36508, + [SMALL_STATE(2266)] = 36633, + [SMALL_STATE(2267)] = 36692, + [SMALL_STATE(2268)] = 36751, + [SMALL_STATE(2269)] = 36876, + [SMALL_STATE(2270)] = 36935, + [SMALL_STATE(2271)] = 36994, + [SMALL_STATE(2272)] = 37055, + [SMALL_STATE(2273)] = 37134, + [SMALL_STATE(2274)] = 37193, + [SMALL_STATE(2275)] = 37252, + [SMALL_STATE(2276)] = 37313, + [SMALL_STATE(2277)] = 37378, + [SMALL_STATE(2278)] = 37495, + [SMALL_STATE(2279)] = 37554, + [SMALL_STATE(2280)] = 37639, + [SMALL_STATE(2281)] = 37698, + [SMALL_STATE(2282)] = 37757, + [SMALL_STATE(2283)] = 37816, + [SMALL_STATE(2284)] = 37875, + [SMALL_STATE(2285)] = 37938, + [SMALL_STATE(2286)] = 38003, + [SMALL_STATE(2287)] = 38062, + [SMALL_STATE(2288)] = 38121, + [SMALL_STATE(2289)] = 38238, + [SMALL_STATE(2290)] = 38303, + [SMALL_STATE(2291)] = 38362, + [SMALL_STATE(2292)] = 38421, + [SMALL_STATE(2293)] = 38546, + [SMALL_STATE(2294)] = 38663, + [SMALL_STATE(2295)] = 38744, + [SMALL_STATE(2296)] = 38803, + [SMALL_STATE(2297)] = 38862, + [SMALL_STATE(2298)] = 38979, + [SMALL_STATE(2299)] = 39040, + [SMALL_STATE(2300)] = 39099, + [SMALL_STATE(2301)] = 39164, + [SMALL_STATE(2302)] = 39281, + [SMALL_STATE(2303)] = 39340, + [SMALL_STATE(2304)] = 39457, + [SMALL_STATE(2305)] = 39562, + [SMALL_STATE(2306)] = 39679, + [SMALL_STATE(2307)] = 39796, + [SMALL_STATE(2308)] = 39903, + [SMALL_STATE(2309)] = 40020, + [SMALL_STATE(2310)] = 40115, + [SMALL_STATE(2311)] = 40174, + [SMALL_STATE(2312)] = 40233, + [SMALL_STATE(2313)] = 40292, + [SMALL_STATE(2314)] = 40379, + [SMALL_STATE(2315)] = 40456, + [SMALL_STATE(2316)] = 40515, + [SMALL_STATE(2317)] = 40614, + [SMALL_STATE(2318)] = 40715, + [SMALL_STATE(2319)] = 40774, + [SMALL_STATE(2320)] = 40833, + [SMALL_STATE(2321)] = 40892, + [SMALL_STATE(2322)] = 40995, + [SMALL_STATE(2323)] = 41054, + [SMALL_STATE(2324)] = 41119, + [SMALL_STATE(2325)] = 41178, + [SMALL_STATE(2326)] = 41263, + [SMALL_STATE(2327)] = 41328, + [SMALL_STATE(2328)] = 41387, + [SMALL_STATE(2329)] = 41474, + [SMALL_STATE(2330)] = 41535, + [SMALL_STATE(2331)] = 41594, + [SMALL_STATE(2332)] = 41655, + [SMALL_STATE(2333)] = 41750, + [SMALL_STATE(2334)] = 41817, + [SMALL_STATE(2335)] = 41876, + [SMALL_STATE(2336)] = 41935, + [SMALL_STATE(2337)] = 41994, + [SMALL_STATE(2338)] = 42089, + [SMALL_STATE(2339)] = 42148, + [SMALL_STATE(2340)] = 42207, + [SMALL_STATE(2341)] = 42266, + [SMALL_STATE(2342)] = 42325, + [SMALL_STATE(2343)] = 42392, + [SMALL_STATE(2344)] = 42455, + [SMALL_STATE(2345)] = 42514, + [SMALL_STATE(2346)] = 42573, + [SMALL_STATE(2347)] = 42632, + [SMALL_STATE(2348)] = 42727, + [SMALL_STATE(2349)] = 42786, + [SMALL_STATE(2350)] = 42895, + [SMALL_STATE(2351)] = 43012, + [SMALL_STATE(2352)] = 43071, + [SMALL_STATE(2353)] = 43136, + [SMALL_STATE(2354)] = 43195, + [SMALL_STATE(2355)] = 43254, + [SMALL_STATE(2356)] = 43379, + [SMALL_STATE(2357)] = 43438, + [SMALL_STATE(2358)] = 43497, + [SMALL_STATE(2359)] = 43556, + [SMALL_STATE(2360)] = 43615, + [SMALL_STATE(2361)] = 43676, + [SMALL_STATE(2362)] = 43735, + [SMALL_STATE(2363)] = 43800, + [SMALL_STATE(2364)] = 43859, + [SMALL_STATE(2365)] = 43918, + [SMALL_STATE(2366)] = 43979, + [SMALL_STATE(2367)] = 44038, + [SMALL_STATE(2368)] = 44097, + [SMALL_STATE(2369)] = 44156, + [SMALL_STATE(2370)] = 44215, + [SMALL_STATE(2371)] = 44340, + [SMALL_STATE(2372)] = 44399, + [SMALL_STATE(2373)] = 44458, + [SMALL_STATE(2374)] = 44553, + [SMALL_STATE(2375)] = 44618, + [SMALL_STATE(2376)] = 44681, + [SMALL_STATE(2377)] = 44740, + [SMALL_STATE(2378)] = 44799, + [SMALL_STATE(2379)] = 44860, + [SMALL_STATE(2380)] = 44921, + [SMALL_STATE(2381)] = 44986, + [SMALL_STATE(2382)] = 45051, + [SMALL_STATE(2383)] = 45110, + [SMALL_STATE(2384)] = 45169, + [SMALL_STATE(2385)] = 45228, + [SMALL_STATE(2386)] = 45287, + [SMALL_STATE(2387)] = 45346, + [SMALL_STATE(2388)] = 45405, + [SMALL_STATE(2389)] = 45464, + [SMALL_STATE(2390)] = 45526, + [SMALL_STATE(2391)] = 45630, + [SMALL_STATE(2392)] = 45750, + [SMALL_STATE(2393)] = 45834, + [SMALL_STATE(2394)] = 45892, + [SMALL_STATE(2395)] = 45950, + [SMALL_STATE(2396)] = 46028, + [SMALL_STATE(2397)] = 46086, + [SMALL_STATE(2398)] = 46144, + [SMALL_STATE(2399)] = 46202, + [SMALL_STATE(2400)] = 46260, + [SMALL_STATE(2401)] = 46318, + [SMALL_STATE(2402)] = 46404, + [SMALL_STATE(2403)] = 46492, + [SMALL_STATE(2404)] = 46550, + [SMALL_STATE(2405)] = 46608, + [SMALL_STATE(2406)] = 46728, [SMALL_STATE(2407)] = 46848, - [SMALL_STATE(2408)] = 46964, - [SMALL_STATE(2409)] = 47048, - [SMALL_STATE(2410)] = 47136, - [SMALL_STATE(2411)] = 47252, - [SMALL_STATE(2412)] = 47338, - [SMALL_STATE(2413)] = 47458, - [SMALL_STATE(2414)] = 47522, - [SMALL_STATE(2415)] = 47580, - [SMALL_STATE(2416)] = 47696, - [SMALL_STATE(2417)] = 47816, - [SMALL_STATE(2418)] = 47936, - [SMALL_STATE(2419)] = 47994, - [SMALL_STATE(2420)] = 48052, - [SMALL_STATE(2421)] = 48110, - [SMALL_STATE(2422)] = 48168, - [SMALL_STATE(2423)] = 48284, - [SMALL_STATE(2424)] = 48368, - [SMALL_STATE(2425)] = 48426, - [SMALL_STATE(2426)] = 48484, - [SMALL_STATE(2427)] = 48542, - [SMALL_STATE(2428)] = 48600, - [SMALL_STATE(2429)] = 48720, - [SMALL_STATE(2430)] = 48840, - [SMALL_STATE(2431)] = 48898, - [SMALL_STATE(2432)] = 49014, - [SMALL_STATE(2433)] = 49072, - [SMALL_STATE(2434)] = 49148, - [SMALL_STATE(2435)] = 49234, - [SMALL_STATE(2436)] = 49292, - [SMALL_STATE(2437)] = 49350, - [SMALL_STATE(2438)] = 49428, - [SMALL_STATE(2439)] = 49486, - [SMALL_STATE(2440)] = 49572, - [SMALL_STATE(2441)] = 49630, - [SMALL_STATE(2442)] = 49688, - [SMALL_STATE(2443)] = 49746, - [SMALL_STATE(2444)] = 49804, - [SMALL_STATE(2445)] = 49862, - [SMALL_STATE(2446)] = 49920, - [SMALL_STATE(2447)] = 49978, - [SMALL_STATE(2448)] = 50078, - [SMALL_STATE(2449)] = 50198, - [SMALL_STATE(2450)] = 50256, - [SMALL_STATE(2451)] = 50314, - [SMALL_STATE(2452)] = 50372, - [SMALL_STATE(2453)] = 50430, - [SMALL_STATE(2454)] = 50488, - [SMALL_STATE(2455)] = 50546, - [SMALL_STATE(2456)] = 50664, - [SMALL_STATE(2457)] = 50762, - [SMALL_STATE(2458)] = 50820, - [SMALL_STATE(2459)] = 50878, - [SMALL_STATE(2460)] = 50936, - [SMALL_STATE(2461)] = 50994, - [SMALL_STATE(2462)] = 51110, - [SMALL_STATE(2463)] = 51168, - [SMALL_STATE(2464)] = 51284, - [SMALL_STATE(2465)] = 51374, - [SMALL_STATE(2466)] = 51434, - [SMALL_STATE(2467)] = 51554, - [SMALL_STATE(2468)] = 51674, - [SMALL_STATE(2469)] = 51794, - [SMALL_STATE(2470)] = 51914, - [SMALL_STATE(2471)] = 51980, - [SMALL_STATE(2472)] = 52080, - [SMALL_STATE(2473)] = 52200, - [SMALL_STATE(2474)] = 52258, - [SMALL_STATE(2475)] = 52320, - [SMALL_STATE(2476)] = 52378, + [SMALL_STATE(2408)] = 46906, + [SMALL_STATE(2409)] = 46964, + [SMALL_STATE(2410)] = 47022, + [SMALL_STATE(2411)] = 47138, + [SMALL_STATE(2412)] = 47258, + [SMALL_STATE(2413)] = 47378, + [SMALL_STATE(2414)] = 47436, + [SMALL_STATE(2415)] = 47524, + [SMALL_STATE(2416)] = 47582, + [SMALL_STATE(2417)] = 47640, + [SMALL_STATE(2418)] = 47698, + [SMALL_STATE(2419)] = 47762, + [SMALL_STATE(2420)] = 47820, + [SMALL_STATE(2421)] = 47878, + [SMALL_STATE(2422)] = 47936, + [SMALL_STATE(2423)] = 47994, + [SMALL_STATE(2424)] = 48052, + [SMALL_STATE(2425)] = 48110, + [SMALL_STATE(2426)] = 48196, + [SMALL_STATE(2427)] = 48312, + [SMALL_STATE(2428)] = 48400, + [SMALL_STATE(2429)] = 48464, + [SMALL_STATE(2430)] = 48522, + [SMALL_STATE(2431)] = 48580, + [SMALL_STATE(2432)] = 48644, + [SMALL_STATE(2433)] = 48702, + [SMALL_STATE(2434)] = 48790, + [SMALL_STATE(2435)] = 48876, + [SMALL_STATE(2436)] = 48996, + [SMALL_STATE(2437)] = 49082, + [SMALL_STATE(2438)] = 49198, + [SMALL_STATE(2439)] = 49274, + [SMALL_STATE(2440)] = 49390, + [SMALL_STATE(2441)] = 49510, + [SMALL_STATE(2442)] = 49568, + [SMALL_STATE(2443)] = 49656, + [SMALL_STATE(2444)] = 49714, + [SMALL_STATE(2445)] = 49772, + [SMALL_STATE(2446)] = 49892, + [SMALL_STATE(2447)] = 50008, + [SMALL_STATE(2448)] = 50066, + [SMALL_STATE(2449)] = 50124, + [SMALL_STATE(2450)] = 50240, + [SMALL_STATE(2451)] = 50356, + [SMALL_STATE(2452)] = 50474, + [SMALL_STATE(2453)] = 50594, + [SMALL_STATE(2454)] = 50670, + [SMALL_STATE(2455)] = 50728, + [SMALL_STATE(2456)] = 50786, + [SMALL_STATE(2457)] = 50844, + [SMALL_STATE(2458)] = 50902, + [SMALL_STATE(2459)] = 50960, + [SMALL_STATE(2460)] = 51076, + [SMALL_STATE(2461)] = 51134, + [SMALL_STATE(2462)] = 51192, + [SMALL_STATE(2463)] = 51250, + [SMALL_STATE(2464)] = 51308, + [SMALL_STATE(2465)] = 51366, + [SMALL_STATE(2466)] = 51482, + [SMALL_STATE(2467)] = 51540, + [SMALL_STATE(2468)] = 51630, + [SMALL_STATE(2469)] = 51746, + [SMALL_STATE(2470)] = 51862, + [SMALL_STATE(2471)] = 51978, + [SMALL_STATE(2472)] = 52094, + [SMALL_STATE(2473)] = 52210, + [SMALL_STATE(2474)] = 52268, + [SMALL_STATE(2475)] = 52326, + [SMALL_STATE(2476)] = 52384, [SMALL_STATE(2477)] = 52446, - [SMALL_STATE(2478)] = 52566, - [SMALL_STATE(2479)] = 52686, - [SMALL_STATE(2480)] = 52806, - [SMALL_STATE(2481)] = 52864, - [SMALL_STATE(2482)] = 52922, - [SMALL_STATE(2483)] = 53038, - [SMALL_STATE(2484)] = 53154, - [SMALL_STATE(2485)] = 53216, - [SMALL_STATE(2486)] = 53332, - [SMALL_STATE(2487)] = 53448, - [SMALL_STATE(2488)] = 53516, - [SMALL_STATE(2489)] = 53584, - [SMALL_STATE(2490)] = 53642, - [SMALL_STATE(2491)] = 53702, - [SMALL_STATE(2492)] = 53800, - [SMALL_STATE(2493)] = 53916, - [SMALL_STATE(2494)] = 53974, - [SMALL_STATE(2495)] = 54090, - [SMALL_STATE(2496)] = 54148, - [SMALL_STATE(2497)] = 54206, - [SMALL_STATE(2498)] = 54264, - [SMALL_STATE(2499)] = 54380, - [SMALL_STATE(2500)] = 54496, - [SMALL_STATE(2501)] = 54556, - [SMALL_STATE(2502)] = 54614, - [SMALL_STATE(2503)] = 54672, - [SMALL_STATE(2504)] = 54788, - [SMALL_STATE(2505)] = 54904, - [SMALL_STATE(2506)] = 55024, - [SMALL_STATE(2507)] = 55140, - [SMALL_STATE(2508)] = 55228, - [SMALL_STATE(2509)] = 55286, - [SMALL_STATE(2510)] = 55402, - [SMALL_STATE(2511)] = 55488, - [SMALL_STATE(2512)] = 55604, - [SMALL_STATE(2513)] = 55662, - [SMALL_STATE(2514)] = 55720, - [SMALL_STATE(2515)] = 55778, - [SMALL_STATE(2516)] = 55836, - [SMALL_STATE(2517)] = 55944, - [SMALL_STATE(2518)] = 56002, - [SMALL_STATE(2519)] = 56096, - [SMALL_STATE(2520)] = 56190, - [SMALL_STATE(2521)] = 56306, - [SMALL_STATE(2522)] = 56364, - [SMALL_STATE(2523)] = 56422, - [SMALL_STATE(2524)] = 56538, - [SMALL_STATE(2525)] = 56646, - [SMALL_STATE(2526)] = 56704, - [SMALL_STATE(2527)] = 56762, - [SMALL_STATE(2528)] = 56848, - [SMALL_STATE(2529)] = 56954, - [SMALL_STATE(2530)] = 57012, - [SMALL_STATE(2531)] = 57116, - [SMALL_STATE(2532)] = 57174, - [SMALL_STATE(2533)] = 57232, - [SMALL_STATE(2534)] = 57322, - [SMALL_STATE(2535)] = 57438, - [SMALL_STATE(2536)] = 57496, - [SMALL_STATE(2537)] = 57612, - [SMALL_STATE(2538)] = 57728, - [SMALL_STATE(2539)] = 57804, - [SMALL_STATE(2540)] = 57920, - [SMALL_STATE(2541)] = 57978, - [SMALL_STATE(2542)] = 58036, - [SMALL_STATE(2543)] = 58116, - [SMALL_STATE(2544)] = 58174, - [SMALL_STATE(2545)] = 58234, - [SMALL_STATE(2546)] = 58292, - [SMALL_STATE(2547)] = 58412, - [SMALL_STATE(2548)] = 58470, - [SMALL_STATE(2549)] = 58528, - [SMALL_STATE(2550)] = 58586, - [SMALL_STATE(2551)] = 58644, - [SMALL_STATE(2552)] = 58730, - [SMALL_STATE(2553)] = 58792, - [SMALL_STATE(2554)] = 58852, - [SMALL_STATE(2555)] = 58910, - [SMALL_STATE(2556)] = 58996, - [SMALL_STATE(2557)] = 59080, - [SMALL_STATE(2558)] = 59196, - [SMALL_STATE(2559)] = 59254, - [SMALL_STATE(2560)] = 59356, - [SMALL_STATE(2561)] = 59414, - [SMALL_STATE(2562)] = 59532, - [SMALL_STATE(2563)] = 59612, - [SMALL_STATE(2564)] = 59690, - [SMALL_STATE(2565)] = 59794, - [SMALL_STATE(2566)] = 59852, - [SMALL_STATE(2567)] = 59910, - [SMALL_STATE(2568)] = 59998, - [SMALL_STATE(2569)] = 60056, - [SMALL_STATE(2570)] = 60140, - [SMALL_STATE(2571)] = 60204, - [SMALL_STATE(2572)] = 60310, - [SMALL_STATE(2573)] = 60374, - [SMALL_STATE(2574)] = 60494, - [SMALL_STATE(2575)] = 60580, - [SMALL_STATE(2576)] = 60700, - [SMALL_STATE(2577)] = 60820, - [SMALL_STATE(2578)] = 60939, - [SMALL_STATE(2579)] = 61006, - [SMALL_STATE(2580)] = 61125, - [SMALL_STATE(2581)] = 61210, - [SMALL_STATE(2582)] = 61327, - [SMALL_STATE(2583)] = 61388, - [SMALL_STATE(2584)] = 61449, - [SMALL_STATE(2585)] = 61564, - [SMALL_STATE(2586)] = 61629, - [SMALL_STATE(2587)] = 61744, - [SMALL_STATE(2588)] = 61863, - [SMALL_STATE(2589)] = 61982, - [SMALL_STATE(2590)] = 62063, - [SMALL_STATE(2591)] = 62124, - [SMALL_STATE(2592)] = 62241, - [SMALL_STATE(2593)] = 62356, - [SMALL_STATE(2594)] = 62419, - [SMALL_STATE(2595)] = 62476, - [SMALL_STATE(2596)] = 62595, - [SMALL_STATE(2597)] = 62680, - [SMALL_STATE(2598)] = 62795, - [SMALL_STATE(2599)] = 62854, - [SMALL_STATE(2600)] = 62969, - [SMALL_STATE(2601)] = 63084, - [SMALL_STATE(2602)] = 63203, - [SMALL_STATE(2603)] = 63260, - [SMALL_STATE(2604)] = 63375, - [SMALL_STATE(2605)] = 63456, - [SMALL_STATE(2606)] = 63521, - [SMALL_STATE(2607)] = 63636, - [SMALL_STATE(2608)] = 63717, - [SMALL_STATE(2609)] = 63832, - [SMALL_STATE(2610)] = 63947, - [SMALL_STATE(2611)] = 64028, - [SMALL_STATE(2612)] = 64143, - [SMALL_STATE(2613)] = 64258, - [SMALL_STATE(2614)] = 64373, - [SMALL_STATE(2615)] = 64448, - [SMALL_STATE(2616)] = 64563, - [SMALL_STATE(2617)] = 64646, - [SMALL_STATE(2618)] = 64723, - [SMALL_STATE(2619)] = 64782, - [SMALL_STATE(2620)] = 64847, - [SMALL_STATE(2621)] = 64904, - [SMALL_STATE(2622)] = 65023, - [SMALL_STATE(2623)] = 65140, - [SMALL_STATE(2624)] = 65259, - [SMALL_STATE(2625)] = 65322, - [SMALL_STATE(2626)] = 65441, - [SMALL_STATE(2627)] = 65560, - [SMALL_STATE(2628)] = 65623, - [SMALL_STATE(2629)] = 65742, - [SMALL_STATE(2630)] = 65861, - [SMALL_STATE(2631)] = 65980, - [SMALL_STATE(2632)] = 66099, - [SMALL_STATE(2633)] = 66218, - [SMALL_STATE(2634)] = 66337, - [SMALL_STATE(2635)] = 66454, - [SMALL_STATE(2636)] = 66541, - [SMALL_STATE(2637)] = 66602, - [SMALL_STATE(2638)] = 66717, - [SMALL_STATE(2639)] = 66798, - [SMALL_STATE(2640)] = 66855, - [SMALL_STATE(2641)] = 66912, - [SMALL_STATE(2642)] = 67031, - [SMALL_STATE(2643)] = 67088, - [SMALL_STATE(2644)] = 67207, - [SMALL_STATE(2645)] = 67322, - [SMALL_STATE(2646)] = 67437, - [SMALL_STATE(2647)] = 67556, - [SMALL_STATE(2648)] = 67645, - [SMALL_STATE(2649)] = 67708, - [SMALL_STATE(2650)] = 67823, - [SMALL_STATE(2651)] = 67942, - [SMALL_STATE(2652)] = 68061, - [SMALL_STATE(2653)] = 68140, - [SMALL_STATE(2654)] = 68259, - [SMALL_STATE(2655)] = 68376, - [SMALL_STATE(2656)] = 68495, - [SMALL_STATE(2657)] = 68614, - [SMALL_STATE(2658)] = 68733, - [SMALL_STATE(2659)] = 68836, - [SMALL_STATE(2660)] = 68903, - [SMALL_STATE(2661)] = 68962, - [SMALL_STATE(2662)] = 69081, - [SMALL_STATE(2663)] = 69140, - [SMALL_STATE(2664)] = 69205, - [SMALL_STATE(2665)] = 69270, - [SMALL_STATE(2666)] = 69333, - [SMALL_STATE(2667)] = 69438, - [SMALL_STATE(2668)] = 69553, - [SMALL_STATE(2669)] = 69638, - [SMALL_STATE(2670)] = 69753, - [SMALL_STATE(2671)] = 69872, - [SMALL_STATE(2672)] = 69979, - [SMALL_STATE(2673)] = 70076, - [SMALL_STATE(2674)] = 70175, - [SMALL_STATE(2675)] = 70276, - [SMALL_STATE(2676)] = 70369, - [SMALL_STATE(2677)] = 70452, - [SMALL_STATE(2678)] = 70537, - [SMALL_STATE(2679)] = 70656, - [SMALL_STATE(2680)] = 70775, - [SMALL_STATE(2681)] = 70840, - [SMALL_STATE(2682)] = 70959, - [SMALL_STATE(2683)] = 71021, - [SMALL_STATE(2684)] = 71077, - [SMALL_STATE(2685)] = 71133, - [SMALL_STATE(2686)] = 71189, - [SMALL_STATE(2687)] = 71245, - [SMALL_STATE(2688)] = 71301, - [SMALL_STATE(2689)] = 71357, - [SMALL_STATE(2690)] = 71413, - [SMALL_STATE(2691)] = 71469, - [SMALL_STATE(2692)] = 71525, - [SMALL_STATE(2693)] = 71581, - [SMALL_STATE(2694)] = 71637, - [SMALL_STATE(2695)] = 71693, - [SMALL_STATE(2696)] = 71807, - [SMALL_STATE(2697)] = 71865, - [SMALL_STATE(2698)] = 71927, - [SMALL_STATE(2699)] = 71991, - [SMALL_STATE(2700)] = 72105, - [SMALL_STATE(2701)] = 72167, - [SMALL_STATE(2702)] = 72229, - [SMALL_STATE(2703)] = 72285, - [SMALL_STATE(2704)] = 72341, - [SMALL_STATE(2705)] = 72431, - [SMALL_STATE(2706)] = 72487, - [SMALL_STATE(2707)] = 72543, - [SMALL_STATE(2708)] = 72599, - [SMALL_STATE(2709)] = 72669, - [SMALL_STATE(2710)] = 72725, - [SMALL_STATE(2711)] = 72785, - [SMALL_STATE(2712)] = 72847, - [SMALL_STATE(2713)] = 72903, - [SMALL_STATE(2714)] = 72965, - [SMALL_STATE(2715)] = 73061, - [SMALL_STATE(2716)] = 73117, - [SMALL_STATE(2717)] = 73199, - [SMALL_STATE(2718)] = 73255, - [SMALL_STATE(2719)] = 73313, - [SMALL_STATE(2720)] = 73371, - [SMALL_STATE(2721)] = 73427, - [SMALL_STATE(2722)] = 73489, - [SMALL_STATE(2723)] = 73545, - [SMALL_STATE(2724)] = 73603, - [SMALL_STATE(2725)] = 73681, - [SMALL_STATE(2726)] = 73739, - [SMALL_STATE(2727)] = 73795, - [SMALL_STATE(2728)] = 73875, - [SMALL_STATE(2729)] = 73931, - [SMALL_STATE(2730)] = 73987, - [SMALL_STATE(2731)] = 74043, - [SMALL_STATE(2732)] = 74099, - [SMALL_STATE(2733)] = 74155, - [SMALL_STATE(2734)] = 74211, - [SMALL_STATE(2735)] = 74267, - [SMALL_STATE(2736)] = 74323, - [SMALL_STATE(2737)] = 74379, - [SMALL_STATE(2738)] = 74435, - [SMALL_STATE(2739)] = 74491, - [SMALL_STATE(2740)] = 74553, - [SMALL_STATE(2741)] = 74669, - [SMALL_STATE(2742)] = 74785, - [SMALL_STATE(2743)] = 74847, - [SMALL_STATE(2744)] = 74909, - [SMALL_STATE(2745)] = 74973, - [SMALL_STATE(2746)] = 75055, - [SMALL_STATE(2747)] = 75117, - [SMALL_STATE(2748)] = 75173, - [SMALL_STATE(2749)] = 75231, - [SMALL_STATE(2750)] = 75287, - [SMALL_STATE(2751)] = 75349, - [SMALL_STATE(2752)] = 75463, - [SMALL_STATE(2753)] = 75519, - [SMALL_STATE(2754)] = 75581, - [SMALL_STATE(2755)] = 75639, - [SMALL_STATE(2756)] = 75707, - [SMALL_STATE(2757)] = 75763, - [SMALL_STATE(2758)] = 75845, - [SMALL_STATE(2759)] = 75959, - [SMALL_STATE(2760)] = 76073, - [SMALL_STATE(2761)] = 76187, - [SMALL_STATE(2762)] = 76301, - [SMALL_STATE(2763)] = 76415, - [SMALL_STATE(2764)] = 76471, - [SMALL_STATE(2765)] = 76585, - [SMALL_STATE(2766)] = 76673, - [SMALL_STATE(2767)] = 76751, - [SMALL_STATE(2768)] = 76865, - [SMALL_STATE(2769)] = 76967, - [SMALL_STATE(2770)] = 77023, - [SMALL_STATE(2771)] = 77127, - [SMALL_STATE(2772)] = 77211, - [SMALL_STATE(2773)] = 77267, - [SMALL_STATE(2774)] = 77365, - [SMALL_STATE(2775)] = 77421, - [SMALL_STATE(2776)] = 77477, - [SMALL_STATE(2777)] = 77577, - [SMALL_STATE(2778)] = 77633, - [SMALL_STATE(2779)] = 77715, - [SMALL_STATE(2780)] = 77797, - [SMALL_STATE(2781)] = 77875, - [SMALL_STATE(2782)] = 77931, - [SMALL_STATE(2783)] = 78045, - [SMALL_STATE(2784)] = 78115, - [SMALL_STATE(2785)] = 78229, - [SMALL_STATE(2786)] = 78343, - [SMALL_STATE(2787)] = 78457, - [SMALL_STATE(2788)] = 78513, - [SMALL_STATE(2789)] = 78569, - [SMALL_STATE(2790)] = 78683, - [SMALL_STATE(2791)] = 78797, - [SMALL_STATE(2792)] = 78885, - [SMALL_STATE(2793)] = 78965, - [SMALL_STATE(2794)] = 79039, - [SMALL_STATE(2795)] = 79095, - [SMALL_STATE(2796)] = 79173, - [SMALL_STATE(2797)] = 79229, - [SMALL_STATE(2798)] = 79331, - [SMALL_STATE(2799)] = 79435, - [SMALL_STATE(2800)] = 79491, - [SMALL_STATE(2801)] = 79575, - [SMALL_STATE(2802)] = 79671, - [SMALL_STATE(2803)] = 79769, - [SMALL_STATE(2804)] = 79869, - [SMALL_STATE(2805)] = 79951, - [SMALL_STATE(2806)] = 80033, - [SMALL_STATE(2807)] = 80117, - [SMALL_STATE(2808)] = 80173, - [SMALL_STATE(2809)] = 80231, - [SMALL_STATE(2810)] = 80315, - [SMALL_STATE(2811)] = 80407, - [SMALL_STATE(2812)] = 80499, - [SMALL_STATE(2813)] = 80605, - [SMALL_STATE(2814)] = 80661, - [SMALL_STATE(2815)] = 80775, - [SMALL_STATE(2816)] = 80881, - [SMALL_STATE(2817)] = 80995, - [SMALL_STATE(2818)] = 81109, - [SMALL_STATE(2819)] = 81165, - [SMALL_STATE(2820)] = 81221, - [SMALL_STATE(2821)] = 81277, - [SMALL_STATE(2822)] = 81391, - [SMALL_STATE(2823)] = 81505, - [SMALL_STATE(2824)] = 81619, - [SMALL_STATE(2825)] = 81735, - [SMALL_STATE(2826)] = 81849, - [SMALL_STATE(2827)] = 81963, - [SMALL_STATE(2828)] = 82077, - [SMALL_STATE(2829)] = 82193, - [SMALL_STATE(2830)] = 82249, - [SMALL_STATE(2831)] = 82339, - [SMALL_STATE(2832)] = 82453, - [SMALL_STATE(2833)] = 82509, - [SMALL_STATE(2834)] = 82623, - [SMALL_STATE(2835)] = 82737, - [SMALL_STATE(2836)] = 82853, - [SMALL_STATE(2837)] = 82967, - [SMALL_STATE(2838)] = 83081, - [SMALL_STATE(2839)] = 83143, - [SMALL_STATE(2840)] = 83257, - [SMALL_STATE(2841)] = 83313, - [SMALL_STATE(2842)] = 83375, - [SMALL_STATE(2843)] = 83465, - [SMALL_STATE(2844)] = 83555, - [SMALL_STATE(2845)] = 83613, - [SMALL_STATE(2846)] = 83671, - [SMALL_STATE(2847)] = 83733, - [SMALL_STATE(2848)] = 83795, - [SMALL_STATE(2849)] = 83851, - [SMALL_STATE(2850)] = 83913, - [SMALL_STATE(2851)] = 83973, - [SMALL_STATE(2852)] = 84029, - [SMALL_STATE(2853)] = 84085, - [SMALL_STATE(2854)] = 84141, - [SMALL_STATE(2855)] = 84197, - [SMALL_STATE(2856)] = 84253, - [SMALL_STATE(2857)] = 84309, - [SMALL_STATE(2858)] = 84367, - [SMALL_STATE(2859)] = 84423, - [SMALL_STATE(2860)] = 84479, - [SMALL_STATE(2861)] = 84593, - [SMALL_STATE(2862)] = 84707, - [SMALL_STATE(2863)] = 84775, - [SMALL_STATE(2864)] = 84843, - [SMALL_STATE(2865)] = 84899, - [SMALL_STATE(2866)] = 84955, - [SMALL_STATE(2867)] = 85013, - [SMALL_STATE(2868)] = 85069, - [SMALL_STATE(2869)] = 85125, - [SMALL_STATE(2870)] = 85185, - [SMALL_STATE(2871)] = 85241, - [SMALL_STATE(2872)] = 85297, - [SMALL_STATE(2873)] = 85353, - [SMALL_STATE(2874)] = 85409, - [SMALL_STATE(2875)] = 85485, - [SMALL_STATE(2876)] = 85553, - [SMALL_STATE(2877)] = 85635, - [SMALL_STATE(2878)] = 85697, - [SMALL_STATE(2879)] = 85811, - [SMALL_STATE(2880)] = 85879, - [SMALL_STATE(2881)] = 85941, - [SMALL_STATE(2882)] = 86005, - [SMALL_STATE(2883)] = 86121, - [SMALL_STATE(2884)] = 86195, - [SMALL_STATE(2885)] = 86253, - [SMALL_STATE(2886)] = 86309, - [SMALL_STATE(2887)] = 86365, - [SMALL_STATE(2888)] = 86425, - [SMALL_STATE(2889)] = 86481, - [SMALL_STATE(2890)] = 86559, - [SMALL_STATE(2891)] = 86615, - [SMALL_STATE(2892)] = 86683, - [SMALL_STATE(2893)] = 86739, - [SMALL_STATE(2894)] = 86807, - [SMALL_STATE(2895)] = 86889, - [SMALL_STATE(2896)] = 87003, - [SMALL_STATE(2897)] = 87083, - [SMALL_STATE(2898)] = 87139, - [SMALL_STATE(2899)] = 87197, - [SMALL_STATE(2900)] = 87253, - [SMALL_STATE(2901)] = 87329, - [SMALL_STATE(2902)] = 87407, - [SMALL_STATE(2903)] = 87521, - [SMALL_STATE(2904)] = 87603, - [SMALL_STATE(2905)] = 87693, - [SMALL_STATE(2906)] = 87783, - [SMALL_STATE(2907)] = 87865, - [SMALL_STATE(2908)] = 87947, - [SMALL_STATE(2909)] = 88015, - [SMALL_STATE(2910)] = 88073, - [SMALL_STATE(2911)] = 88187, - [SMALL_STATE(2912)] = 88245, - [SMALL_STATE(2913)] = 88359, - [SMALL_STATE(2914)] = 88449, - [SMALL_STATE(2915)] = 88505, - [SMALL_STATE(2916)] = 88573, - [SMALL_STATE(2917)] = 88631, - [SMALL_STATE(2918)] = 88709, - [SMALL_STATE(2919)] = 88770, - [SMALL_STATE(2920)] = 88851, - [SMALL_STATE(2921)] = 88924, - [SMALL_STATE(2922)] = 88987, - [SMALL_STATE(2923)] = 89044, - [SMALL_STATE(2924)] = 89117, - [SMALL_STATE(2925)] = 89174, - [SMALL_STATE(2926)] = 89229, - [SMALL_STATE(2927)] = 89312, - [SMALL_STATE(2928)] = 89387, - [SMALL_STATE(2929)] = 89444, - [SMALL_STATE(2930)] = 89503, - [SMALL_STATE(2931)] = 89616, - [SMALL_STATE(2932)] = 89673, - [SMALL_STATE(2933)] = 89728, - [SMALL_STATE(2934)] = 89783, - [SMALL_STATE(2935)] = 89896, - [SMALL_STATE(2936)] = 89977, - [SMALL_STATE(2937)] = 90036, - [SMALL_STATE(2938)] = 90095, - [SMALL_STATE(2939)] = 90168, - [SMALL_STATE(2940)] = 90243, - [SMALL_STATE(2941)] = 90298, - [SMALL_STATE(2942)] = 90411, - [SMALL_STATE(2943)] = 90488, - [SMALL_STATE(2944)] = 90601, - [SMALL_STATE(2945)] = 90656, - [SMALL_STATE(2946)] = 90769, - [SMALL_STATE(2947)] = 90850, - [SMALL_STATE(2948)] = 90933, - [SMALL_STATE(2949)] = 90990, - [SMALL_STATE(2950)] = 91065, - [SMALL_STATE(2951)] = 91138, - [SMALL_STATE(2952)] = 91219, - [SMALL_STATE(2953)] = 91332, - [SMALL_STATE(2954)] = 91445, - [SMALL_STATE(2955)] = 91506, - [SMALL_STATE(2956)] = 91565, - [SMALL_STATE(2957)] = 91624, - [SMALL_STATE(2958)] = 91679, - [SMALL_STATE(2959)] = 91792, - [SMALL_STATE(2960)] = 91865, - [SMALL_STATE(2961)] = 91920, - [SMALL_STATE(2962)] = 91979, - [SMALL_STATE(2963)] = 92054, - [SMALL_STATE(2964)] = 92113, - [SMALL_STATE(2965)] = 92172, - [SMALL_STATE(2966)] = 92245, - [SMALL_STATE(2967)] = 92300, - [SMALL_STATE(2968)] = 92355, - [SMALL_STATE(2969)] = 92410, - [SMALL_STATE(2970)] = 92465, - [SMALL_STATE(2971)] = 92578, - [SMALL_STATE(2972)] = 92691, - [SMALL_STATE(2973)] = 92746, - [SMALL_STATE(2974)] = 92805, - [SMALL_STATE(2975)] = 92888, - [SMALL_STATE(2976)] = 92943, - [SMALL_STATE(2977)] = 93018, - [SMALL_STATE(2978)] = 93073, - [SMALL_STATE(2979)] = 93128, - [SMALL_STATE(2980)] = 93185, - [SMALL_STATE(2981)] = 93244, - [SMALL_STATE(2982)] = 93307, - [SMALL_STATE(2983)] = 93362, - [SMALL_STATE(2984)] = 93417, - [SMALL_STATE(2985)] = 93476, - [SMALL_STATE(2986)] = 93531, - [SMALL_STATE(2987)] = 93586, - [SMALL_STATE(2988)] = 93641, - [SMALL_STATE(2989)] = 93716, - [SMALL_STATE(2990)] = 93771, - [SMALL_STATE(2991)] = 93844, - [SMALL_STATE(2992)] = 93901, - [SMALL_STATE(2993)] = 93974, - [SMALL_STATE(2994)] = 94031, - [SMALL_STATE(2995)] = 94088, - [SMALL_STATE(2996)] = 94181, - [SMALL_STATE(2997)] = 94238, - [SMALL_STATE(2998)] = 94311, - [SMALL_STATE(2999)] = 94366, - [SMALL_STATE(3000)] = 94423, - [SMALL_STATE(3001)] = 94482, - [SMALL_STATE(3002)] = 94539, - [SMALL_STATE(3003)] = 94612, - [SMALL_STATE(3004)] = 94687, - [SMALL_STATE(3005)] = 94768, - [SMALL_STATE(3006)] = 94831, - [SMALL_STATE(3007)] = 94944, - [SMALL_STATE(3008)] = 94999, - [SMALL_STATE(3009)] = 95054, - [SMALL_STATE(3010)] = 95127, - [SMALL_STATE(3011)] = 95208, - [SMALL_STATE(3012)] = 95291, - [SMALL_STATE(3013)] = 95346, - [SMALL_STATE(3014)] = 95421, - [SMALL_STATE(3015)] = 95488, - [SMALL_STATE(3016)] = 95543, - [SMALL_STATE(3017)] = 95598, - [SMALL_STATE(3018)] = 95653, - [SMALL_STATE(3019)] = 95726, - [SMALL_STATE(3020)] = 95801, - [SMALL_STATE(3021)] = 95858, - [SMALL_STATE(3022)] = 95917, - [SMALL_STATE(3023)] = 95972, - [SMALL_STATE(3024)] = 96031, - [SMALL_STATE(3025)] = 96086, - [SMALL_STATE(3026)] = 96141, - [SMALL_STATE(3027)] = 96214, - [SMALL_STATE(3028)] = 96281, - [SMALL_STATE(3029)] = 96336, - [SMALL_STATE(3030)] = 96449, - [SMALL_STATE(3031)] = 96512, - [SMALL_STATE(3032)] = 96567, - [SMALL_STATE(3033)] = 96680, - [SMALL_STATE(3034)] = 96793, - [SMALL_STATE(3035)] = 96898, - [SMALL_STATE(3036)] = 96953, - [SMALL_STATE(3037)] = 97008, - [SMALL_STATE(3038)] = 97099, - [SMALL_STATE(3039)] = 97214, - [SMALL_STATE(3040)] = 97269, - [SMALL_STATE(3041)] = 97326, - [SMALL_STATE(3042)] = 97389, - [SMALL_STATE(3043)] = 97444, - [SMALL_STATE(3044)] = 97499, - [SMALL_STATE(3045)] = 97554, - [SMALL_STATE(3046)] = 97609, - [SMALL_STATE(3047)] = 97692, - [SMALL_STATE(3048)] = 97751, - [SMALL_STATE(3049)] = 97832, - [SMALL_STATE(3050)] = 97891, - [SMALL_STATE(3051)] = 97952, - [SMALL_STATE(3052)] = 98015, - [SMALL_STATE(3053)] = 98098, - [SMALL_STATE(3054)] = 98153, - [SMALL_STATE(3055)] = 98212, - [SMALL_STATE(3056)] = 98293, - [SMALL_STATE(3057)] = 98392, - [SMALL_STATE(3058)] = 98447, - [SMALL_STATE(3059)] = 98502, - [SMALL_STATE(3060)] = 98557, - [SMALL_STATE(3061)] = 98612, - [SMALL_STATE(3062)] = 98679, - [SMALL_STATE(3063)] = 98734, - [SMALL_STATE(3064)] = 98793, - [SMALL_STATE(3065)] = 98866, - [SMALL_STATE(3066)] = 98921, - [SMALL_STATE(3067)] = 99018, - [SMALL_STATE(3068)] = 99073, - [SMALL_STATE(3069)] = 99186, - [SMALL_STATE(3070)] = 99241, - [SMALL_STATE(3071)] = 99336, - [SMALL_STATE(3072)] = 99419, - [SMALL_STATE(3073)] = 99474, - [SMALL_STATE(3074)] = 99529, - [SMALL_STATE(3075)] = 99604, - [SMALL_STATE(3076)] = 99659, - [SMALL_STATE(3077)] = 99720, - [SMALL_STATE(3078)] = 99833, - [SMALL_STATE(3079)] = 99946, - [SMALL_STATE(3080)] = 100049, - [SMALL_STATE(3081)] = 100150, - [SMALL_STATE(3082)] = 100225, - [SMALL_STATE(3083)] = 100298, - [SMALL_STATE(3084)] = 100375, - [SMALL_STATE(3085)] = 100488, - [SMALL_STATE(3086)] = 100543, - [SMALL_STATE(3087)] = 100602, - [SMALL_STATE(3088)] = 100657, - [SMALL_STATE(3089)] = 100720, - [SMALL_STATE(3090)] = 100785, - [SMALL_STATE(3091)] = 100858, - [SMALL_STATE(3092)] = 100945, - [SMALL_STATE(3093)] = 101058, - [SMALL_STATE(3094)] = 101171, - [SMALL_STATE(3095)] = 101226, - [SMALL_STATE(3096)] = 101339, - [SMALL_STATE(3097)] = 101412, - [SMALL_STATE(3098)] = 101467, - [SMALL_STATE(3099)] = 101542, - [SMALL_STATE(3100)] = 101655, - [SMALL_STATE(3101)] = 101768, - [SMALL_STATE(3102)] = 101881, - [SMALL_STATE(3103)] = 101936, - [SMALL_STATE(3104)] = 101991, - [SMALL_STATE(3105)] = 102104, - [SMALL_STATE(3106)] = 102159, - [SMALL_STATE(3107)] = 102272, - [SMALL_STATE(3108)] = 102359, - [SMALL_STATE(3109)] = 102436, - [SMALL_STATE(3110)] = 102537, - [SMALL_STATE(3111)] = 102640, - [SMALL_STATE(3112)] = 102699, - [SMALL_STATE(3113)] = 102754, - [SMALL_STATE(3114)] = 102837, - [SMALL_STATE(3115)] = 102932, - [SMALL_STATE(3116)] = 103029, - [SMALL_STATE(3117)] = 103110, - [SMALL_STATE(3118)] = 103175, - [SMALL_STATE(3119)] = 103230, - [SMALL_STATE(3120)] = 103343, - [SMALL_STATE(3121)] = 103442, - [SMALL_STATE(3122)] = 103501, - [SMALL_STATE(3123)] = 103582, - [SMALL_STATE(3124)] = 103657, - [SMALL_STATE(3125)] = 103770, - [SMALL_STATE(3126)] = 103843, - [SMALL_STATE(3127)] = 103956, - [SMALL_STATE(3128)] = 104031, - [SMALL_STATE(3129)] = 104144, - [SMALL_STATE(3130)] = 104227, - [SMALL_STATE(3131)] = 104340, - [SMALL_STATE(3132)] = 104431, - [SMALL_STATE(3133)] = 104544, - [SMALL_STATE(3134)] = 104649, - [SMALL_STATE(3135)] = 104762, - [SMALL_STATE(3136)] = 104845, - [SMALL_STATE(3137)] = 104918, - [SMALL_STATE(3138)] = 105031, - [SMALL_STATE(3139)] = 105090, - [SMALL_STATE(3140)] = 105147, - [SMALL_STATE(3141)] = 105202, - [SMALL_STATE(3142)] = 105277, - [SMALL_STATE(3143)] = 105350, - [SMALL_STATE(3144)] = 105405, - [SMALL_STATE(3145)] = 105518, - [SMALL_STATE(3146)] = 105577, - [SMALL_STATE(3147)] = 105636, - [SMALL_STATE(3148)] = 105695, - [SMALL_STATE(3149)] = 105750, - [SMALL_STATE(3150)] = 105809, - [SMALL_STATE(3151)] = 105884, - [SMALL_STATE(3152)] = 105997, - [SMALL_STATE(3153)] = 106052, - [SMALL_STATE(3154)] = 106119, - [SMALL_STATE(3155)] = 106186, - [SMALL_STATE(3156)] = 106253, - [SMALL_STATE(3157)] = 106326, - [SMALL_STATE(3158)] = 106393, - [SMALL_STATE(3159)] = 106460, - [SMALL_STATE(3160)] = 106573, - [SMALL_STATE(3161)] = 106628, - [SMALL_STATE(3162)] = 106695, - [SMALL_STATE(3163)] = 106752, - [SMALL_STATE(3164)] = 106865, - [SMALL_STATE(3165)] = 106932, - [SMALL_STATE(3166)] = 106999, - [SMALL_STATE(3167)] = 107064, - [SMALL_STATE(3168)] = 107119, - [SMALL_STATE(3169)] = 107174, - [SMALL_STATE(3170)] = 107239, - [SMALL_STATE(3171)] = 107298, - [SMALL_STATE(3172)] = 107357, - [SMALL_STATE(3173)] = 107420, - [SMALL_STATE(3174)] = 107533, - [SMALL_STATE(3175)] = 107646, - [SMALL_STATE(3176)] = 107707, - [SMALL_STATE(3177)] = 107768, - [SMALL_STATE(3178)] = 107849, - [SMALL_STATE(3179)] = 107932, - [SMALL_STATE(3180)] = 108007, - [SMALL_STATE(3181)] = 108070, - [SMALL_STATE(3182)] = 108129, - [SMALL_STATE(3183)] = 108188, - [SMALL_STATE(3184)] = 108251, - [SMALL_STATE(3185)] = 108326, - [SMALL_STATE(3186)] = 108399, - [SMALL_STATE(3187)] = 108461, - [SMALL_STATE(3188)] = 108571, - [SMALL_STATE(3189)] = 108639, - [SMALL_STATE(3190)] = 108749, - [SMALL_STATE(3191)] = 108811, - [SMALL_STATE(3192)] = 108921, - [SMALL_STATE(3193)] = 108981, - [SMALL_STATE(3194)] = 109043, - [SMALL_STATE(3195)] = 109111, - [SMALL_STATE(3196)] = 109171, - [SMALL_STATE(3197)] = 109239, - [SMALL_STATE(3198)] = 109307, - [SMALL_STATE(3199)] = 109375, - [SMALL_STATE(3200)] = 109443, - [SMALL_STATE(3201)] = 109519, - [SMALL_STATE(3202)] = 109595, - [SMALL_STATE(3203)] = 109663, - [SMALL_STATE(3204)] = 109773, - [SMALL_STATE(3205)] = 109841, - [SMALL_STATE(3206)] = 109951, - [SMALL_STATE(3207)] = 110011, - [SMALL_STATE(3208)] = 110091, - [SMALL_STATE(3209)] = 110173, - [SMALL_STATE(3210)] = 110247, - [SMALL_STATE(3211)] = 110357, - [SMALL_STATE(3212)] = 110425, - [SMALL_STATE(3213)] = 110497, - [SMALL_STATE(3214)] = 110607, - [SMALL_STATE(3215)] = 110693, + [SMALL_STATE(2478)] = 52504, + [SMALL_STATE(2479)] = 52562, + [SMALL_STATE(2480)] = 52620, + [SMALL_STATE(2481)] = 52678, + [SMALL_STATE(2482)] = 52786, + [SMALL_STATE(2483)] = 52880, + [SMALL_STATE(2484)] = 52940, + [SMALL_STATE(2485)] = 52998, + [SMALL_STATE(2486)] = 53118, + [SMALL_STATE(2487)] = 53176, + [SMALL_STATE(2488)] = 53234, + [SMALL_STATE(2489)] = 53292, + [SMALL_STATE(2490)] = 53350, + [SMALL_STATE(2491)] = 53470, + [SMALL_STATE(2492)] = 53590, + [SMALL_STATE(2493)] = 53648, + [SMALL_STATE(2494)] = 53706, + [SMALL_STATE(2495)] = 53768, + [SMALL_STATE(2496)] = 53826, + [SMALL_STATE(2497)] = 53884, + [SMALL_STATE(2498)] = 53970, + [SMALL_STATE(2499)] = 54054, + [SMALL_STATE(2500)] = 54174, + [SMALL_STATE(2501)] = 54232, + [SMALL_STATE(2502)] = 54348, + [SMALL_STATE(2503)] = 54406, + [SMALL_STATE(2504)] = 54526, + [SMALL_STATE(2505)] = 54584, + [SMALL_STATE(2506)] = 54642, + [SMALL_STATE(2507)] = 54702, + [SMALL_STATE(2508)] = 54760, + [SMALL_STATE(2509)] = 54876, + [SMALL_STATE(2510)] = 54992, + [SMALL_STATE(2511)] = 55092, + [SMALL_STATE(2512)] = 55150, + [SMALL_STATE(2513)] = 55248, + [SMALL_STATE(2514)] = 55334, + [SMALL_STATE(2515)] = 55450, + [SMALL_STATE(2516)] = 55530, + [SMALL_STATE(2517)] = 55598, + [SMALL_STATE(2518)] = 55704, + [SMALL_STATE(2519)] = 55772, + [SMALL_STATE(2520)] = 55888, + [SMALL_STATE(2521)] = 55948, + [SMALL_STATE(2522)] = 56050, + [SMALL_STATE(2523)] = 56108, + [SMALL_STATE(2524)] = 56212, + [SMALL_STATE(2525)] = 56270, + [SMALL_STATE(2526)] = 56350, + [SMALL_STATE(2527)] = 56466, + [SMALL_STATE(2528)] = 56586, + [SMALL_STATE(2529)] = 56644, + [SMALL_STATE(2530)] = 56732, + [SMALL_STATE(2531)] = 56790, + [SMALL_STATE(2532)] = 56876, + [SMALL_STATE(2533)] = 56992, + [SMALL_STATE(2534)] = 57050, + [SMALL_STATE(2535)] = 57118, + [SMALL_STATE(2536)] = 57176, + [SMALL_STATE(2537)] = 57254, + [SMALL_STATE(2538)] = 57312, + [SMALL_STATE(2539)] = 57432, + [SMALL_STATE(2540)] = 57492, + [SMALL_STATE(2541)] = 57598, + [SMALL_STATE(2542)] = 57656, + [SMALL_STATE(2543)] = 57714, + [SMALL_STATE(2544)] = 57804, + [SMALL_STATE(2545)] = 57920, + [SMALL_STATE(2546)] = 58036, + [SMALL_STATE(2547)] = 58152, + [SMALL_STATE(2548)] = 58268, + [SMALL_STATE(2549)] = 58326, + [SMALL_STATE(2550)] = 58446, + [SMALL_STATE(2551)] = 58504, + [SMALL_STATE(2552)] = 58620, + [SMALL_STATE(2553)] = 58704, + [SMALL_STATE(2554)] = 58790, + [SMALL_STATE(2555)] = 58848, + [SMALL_STATE(2556)] = 58906, + [SMALL_STATE(2557)] = 59026, + [SMALL_STATE(2558)] = 59084, + [SMALL_STATE(2559)] = 59192, + [SMALL_STATE(2560)] = 59290, + [SMALL_STATE(2561)] = 59384, + [SMALL_STATE(2562)] = 59442, + [SMALL_STATE(2563)] = 59502, + [SMALL_STATE(2564)] = 59560, + [SMALL_STATE(2565)] = 59660, + [SMALL_STATE(2566)] = 59776, + [SMALL_STATE(2567)] = 59842, + [SMALL_STATE(2568)] = 59962, + [SMALL_STATE(2569)] = 60082, + [SMALL_STATE(2570)] = 60184, + [SMALL_STATE(2571)] = 60258, + [SMALL_STATE(2572)] = 60374, + [SMALL_STATE(2573)] = 60490, + [SMALL_STATE(2574)] = 60574, + [SMALL_STATE(2575)] = 60692, + [SMALL_STATE(2576)] = 60750, + [SMALL_STATE(2577)] = 60836, + [SMALL_STATE(2578)] = 60894, + [SMALL_STATE(2579)] = 60953, + [SMALL_STATE(2580)] = 61072, + [SMALL_STATE(2581)] = 61191, + [SMALL_STATE(2582)] = 61276, + [SMALL_STATE(2583)] = 61395, + [SMALL_STATE(2584)] = 61510, + [SMALL_STATE(2585)] = 61569, + [SMALL_STATE(2586)] = 61628, + [SMALL_STATE(2587)] = 61743, + [SMALL_STATE(2588)] = 61858, + [SMALL_STATE(2589)] = 61965, + [SMALL_STATE(2590)] = 62058, + [SMALL_STATE(2591)] = 62123, + [SMALL_STATE(2592)] = 62242, + [SMALL_STATE(2593)] = 62299, + [SMALL_STATE(2594)] = 62414, + [SMALL_STATE(2595)] = 62529, + [SMALL_STATE(2596)] = 62644, + [SMALL_STATE(2597)] = 62763, + [SMALL_STATE(2598)] = 62882, + [SMALL_STATE(2599)] = 63001, + [SMALL_STATE(2600)] = 63116, + [SMALL_STATE(2601)] = 63201, + [SMALL_STATE(2602)] = 63284, + [SMALL_STATE(2603)] = 63403, + [SMALL_STATE(2604)] = 63466, + [SMALL_STATE(2605)] = 63567, + [SMALL_STATE(2606)] = 63686, + [SMALL_STATE(2607)] = 63801, + [SMALL_STATE(2608)] = 63916, + [SMALL_STATE(2609)] = 64015, + [SMALL_STATE(2610)] = 64112, + [SMALL_STATE(2611)] = 64197, + [SMALL_STATE(2612)] = 64302, + [SMALL_STATE(2613)] = 64359, + [SMALL_STATE(2614)] = 64422, + [SMALL_STATE(2615)] = 64483, + [SMALL_STATE(2616)] = 64586, + [SMALL_STATE(2617)] = 64705, + [SMALL_STATE(2618)] = 64784, + [SMALL_STATE(2619)] = 64903, + [SMALL_STATE(2620)] = 65022, + [SMALL_STATE(2621)] = 65137, + [SMALL_STATE(2622)] = 65198, + [SMALL_STATE(2623)] = 65313, + [SMALL_STATE(2624)] = 65376, + [SMALL_STATE(2625)] = 65457, + [SMALL_STATE(2626)] = 65572, + [SMALL_STATE(2627)] = 65687, + [SMALL_STATE(2628)] = 65750, + [SMALL_STATE(2629)] = 65865, + [SMALL_STATE(2630)] = 65984, + [SMALL_STATE(2631)] = 66049, + [SMALL_STATE(2632)] = 66136, + [SMALL_STATE(2633)] = 66225, + [SMALL_STATE(2634)] = 66342, + [SMALL_STATE(2635)] = 66403, + [SMALL_STATE(2636)] = 66464, + [SMALL_STATE(2637)] = 66521, + [SMALL_STATE(2638)] = 66606, + [SMALL_STATE(2639)] = 66673, + [SMALL_STATE(2640)] = 66740, + [SMALL_STATE(2641)] = 66855, + [SMALL_STATE(2642)] = 66970, + [SMALL_STATE(2643)] = 67087, + [SMALL_STATE(2644)] = 67144, + [SMALL_STATE(2645)] = 67263, + [SMALL_STATE(2646)] = 67326, + [SMALL_STATE(2647)] = 67445, + [SMALL_STATE(2648)] = 67562, + [SMALL_STATE(2649)] = 67681, + [SMALL_STATE(2650)] = 67796, + [SMALL_STATE(2651)] = 67915, + [SMALL_STATE(2652)] = 68034, + [SMALL_STATE(2653)] = 68149, + [SMALL_STATE(2654)] = 68268, + [SMALL_STATE(2655)] = 68327, + [SMALL_STATE(2656)] = 68446, + [SMALL_STATE(2657)] = 68527, + [SMALL_STATE(2658)] = 68646, + [SMALL_STATE(2659)] = 68765, + [SMALL_STATE(2660)] = 68880, + [SMALL_STATE(2661)] = 68999, + [SMALL_STATE(2662)] = 69076, + [SMALL_STATE(2663)] = 69159, + [SMALL_STATE(2664)] = 69274, + [SMALL_STATE(2665)] = 69393, + [SMALL_STATE(2666)] = 69468, + [SMALL_STATE(2667)] = 69587, + [SMALL_STATE(2668)] = 69644, + [SMALL_STATE(2669)] = 69725, + [SMALL_STATE(2670)] = 69844, + [SMALL_STATE(2671)] = 69901, + [SMALL_STATE(2672)] = 70018, + [SMALL_STATE(2673)] = 70137, + [SMALL_STATE(2674)] = 70202, + [SMALL_STATE(2675)] = 70321, + [SMALL_STATE(2676)] = 70440, + [SMALL_STATE(2677)] = 70557, + [SMALL_STATE(2678)] = 70638, + [SMALL_STATE(2679)] = 70703, + [SMALL_STATE(2680)] = 70822, + [SMALL_STATE(2681)] = 70887, + [SMALL_STATE(2682)] = 70952, + [SMALL_STATE(2683)] = 71033, + [SMALL_STATE(2684)] = 71089, + [SMALL_STATE(2685)] = 71203, + [SMALL_STATE(2686)] = 71319, + [SMALL_STATE(2687)] = 71397, + [SMALL_STATE(2688)] = 71479, + [SMALL_STATE(2689)] = 71593, + [SMALL_STATE(2690)] = 71651, + [SMALL_STATE(2691)] = 71713, + [SMALL_STATE(2692)] = 71793, + [SMALL_STATE(2693)] = 71849, + [SMALL_STATE(2694)] = 71965, + [SMALL_STATE(2695)] = 72033, + [SMALL_STATE(2696)] = 72101, + [SMALL_STATE(2697)] = 72169, + [SMALL_STATE(2698)] = 72251, + [SMALL_STATE(2699)] = 72307, + [SMALL_STATE(2700)] = 72387, + [SMALL_STATE(2701)] = 72465, + [SMALL_STATE(2702)] = 72555, + [SMALL_STATE(2703)] = 72637, + [SMALL_STATE(2704)] = 72693, + [SMALL_STATE(2705)] = 72783, + [SMALL_STATE(2706)] = 72897, + [SMALL_STATE(2707)] = 72959, + [SMALL_STATE(2708)] = 73021, + [SMALL_STATE(2709)] = 73135, + [SMALL_STATE(2710)] = 73191, + [SMALL_STATE(2711)] = 73253, + [SMALL_STATE(2712)] = 73367, + [SMALL_STATE(2713)] = 73431, + [SMALL_STATE(2714)] = 73545, + [SMALL_STATE(2715)] = 73621, + [SMALL_STATE(2716)] = 73685, + [SMALL_STATE(2717)] = 73767, + [SMALL_STATE(2718)] = 73881, + [SMALL_STATE(2719)] = 73943, + [SMALL_STATE(2720)] = 74059, + [SMALL_STATE(2721)] = 74133, + [SMALL_STATE(2722)] = 74191, + [SMALL_STATE(2723)] = 74251, + [SMALL_STATE(2724)] = 74307, + [SMALL_STATE(2725)] = 74369, + [SMALL_STATE(2726)] = 74429, + [SMALL_STATE(2727)] = 74485, + [SMALL_STATE(2728)] = 74547, + [SMALL_STATE(2729)] = 74605, + [SMALL_STATE(2730)] = 74721, + [SMALL_STATE(2731)] = 74777, + [SMALL_STATE(2732)] = 74833, + [SMALL_STATE(2733)] = 74889, + [SMALL_STATE(2734)] = 74945, + [SMALL_STATE(2735)] = 75001, + [SMALL_STATE(2736)] = 75071, + [SMALL_STATE(2737)] = 75133, + [SMALL_STATE(2738)] = 75189, + [SMALL_STATE(2739)] = 75245, + [SMALL_STATE(2740)] = 75301, + [SMALL_STATE(2741)] = 75357, + [SMALL_STATE(2742)] = 75419, + [SMALL_STATE(2743)] = 75475, + [SMALL_STATE(2744)] = 75531, + [SMALL_STATE(2745)] = 75587, + [SMALL_STATE(2746)] = 75643, + [SMALL_STATE(2747)] = 75699, + [SMALL_STATE(2748)] = 75755, + [SMALL_STATE(2749)] = 75811, + [SMALL_STATE(2750)] = 75867, + [SMALL_STATE(2751)] = 75923, + [SMALL_STATE(2752)] = 75979, + [SMALL_STATE(2753)] = 76035, + [SMALL_STATE(2754)] = 76117, + [SMALL_STATE(2755)] = 76173, + [SMALL_STATE(2756)] = 76229, + [SMALL_STATE(2757)] = 76285, + [SMALL_STATE(2758)] = 76341, + [SMALL_STATE(2759)] = 76409, + [SMALL_STATE(2760)] = 76477, + [SMALL_STATE(2761)] = 76567, + [SMALL_STATE(2762)] = 76623, + [SMALL_STATE(2763)] = 76679, + [SMALL_STATE(2764)] = 76737, + [SMALL_STATE(2765)] = 76793, + [SMALL_STATE(2766)] = 76863, + [SMALL_STATE(2767)] = 76945, + [SMALL_STATE(2768)] = 77007, + [SMALL_STATE(2769)] = 77063, + [SMALL_STATE(2770)] = 77119, + [SMALL_STATE(2771)] = 77181, + [SMALL_STATE(2772)] = 77237, + [SMALL_STATE(2773)] = 77293, + [SMALL_STATE(2774)] = 77349, + [SMALL_STATE(2775)] = 77405, + [SMALL_STATE(2776)] = 77461, + [SMALL_STATE(2777)] = 77517, + [SMALL_STATE(2778)] = 77573, + [SMALL_STATE(2779)] = 77629, + [SMALL_STATE(2780)] = 77685, + [SMALL_STATE(2781)] = 77741, + [SMALL_STATE(2782)] = 77797, + [SMALL_STATE(2783)] = 77853, + [SMALL_STATE(2784)] = 77943, + [SMALL_STATE(2785)] = 77999, + [SMALL_STATE(2786)] = 78055, + [SMALL_STATE(2787)] = 78111, + [SMALL_STATE(2788)] = 78189, + [SMALL_STATE(2789)] = 78247, + [SMALL_STATE(2790)] = 78329, + [SMALL_STATE(2791)] = 78409, + [SMALL_STATE(2792)] = 78487, + [SMALL_STATE(2793)] = 78569, + [SMALL_STATE(2794)] = 78683, + [SMALL_STATE(2795)] = 78765, + [SMALL_STATE(2796)] = 78821, + [SMALL_STATE(2797)] = 78877, + [SMALL_STATE(2798)] = 78933, + [SMALL_STATE(2799)] = 78989, + [SMALL_STATE(2800)] = 79045, + [SMALL_STATE(2801)] = 79107, + [SMALL_STATE(2802)] = 79221, + [SMALL_STATE(2803)] = 79277, + [SMALL_STATE(2804)] = 79335, + [SMALL_STATE(2805)] = 79391, + [SMALL_STATE(2806)] = 79453, + [SMALL_STATE(2807)] = 79509, + [SMALL_STATE(2808)] = 79567, + [SMALL_STATE(2809)] = 79625, + [SMALL_STATE(2810)] = 79739, + [SMALL_STATE(2811)] = 79795, + [SMALL_STATE(2812)] = 79851, + [SMALL_STATE(2813)] = 79907, + [SMALL_STATE(2814)] = 79963, + [SMALL_STATE(2815)] = 80019, + [SMALL_STATE(2816)] = 80075, + [SMALL_STATE(2817)] = 80131, + [SMALL_STATE(2818)] = 80187, + [SMALL_STATE(2819)] = 80243, + [SMALL_STATE(2820)] = 80311, + [SMALL_STATE(2821)] = 80425, + [SMALL_STATE(2822)] = 80493, + [SMALL_STATE(2823)] = 80607, + [SMALL_STATE(2824)] = 80721, + [SMALL_STATE(2825)] = 80835, + [SMALL_STATE(2826)] = 80949, + [SMALL_STATE(2827)] = 81037, + [SMALL_STATE(2828)] = 81115, + [SMALL_STATE(2829)] = 81217, + [SMALL_STATE(2830)] = 81321, + [SMALL_STATE(2831)] = 81405, + [SMALL_STATE(2832)] = 81501, + [SMALL_STATE(2833)] = 81575, + [SMALL_STATE(2834)] = 81689, + [SMALL_STATE(2835)] = 81787, + [SMALL_STATE(2836)] = 81887, + [SMALL_STATE(2837)] = 81969, + [SMALL_STATE(2838)] = 82053, + [SMALL_STATE(2839)] = 82145, + [SMALL_STATE(2840)] = 82251, + [SMALL_STATE(2841)] = 82365, + [SMALL_STATE(2842)] = 82479, + [SMALL_STATE(2843)] = 82593, + [SMALL_STATE(2844)] = 82709, + [SMALL_STATE(2845)] = 82823, + [SMALL_STATE(2846)] = 82913, + [SMALL_STATE(2847)] = 83027, + [SMALL_STATE(2848)] = 83141, + [SMALL_STATE(2849)] = 83255, + [SMALL_STATE(2850)] = 83369, + [SMALL_STATE(2851)] = 83425, + [SMALL_STATE(2852)] = 83481, + [SMALL_STATE(2853)] = 83595, + [SMALL_STATE(2854)] = 83709, + [SMALL_STATE(2855)] = 83765, + [SMALL_STATE(2856)] = 83827, + [SMALL_STATE(2857)] = 83887, + [SMALL_STATE(2858)] = 83949, + [SMALL_STATE(2859)] = 84013, + [SMALL_STATE(2860)] = 84075, + [SMALL_STATE(2861)] = 84137, + [SMALL_STATE(2862)] = 84251, + [SMALL_STATE(2863)] = 84365, + [SMALL_STATE(2864)] = 84453, + [SMALL_STATE(2865)] = 84515, + [SMALL_STATE(2866)] = 84573, + [SMALL_STATE(2867)] = 84649, + [SMALL_STATE(2868)] = 84731, + [SMALL_STATE(2869)] = 84845, + [SMALL_STATE(2870)] = 84923, + [SMALL_STATE(2871)] = 84979, + [SMALL_STATE(2872)] = 85081, + [SMALL_STATE(2873)] = 85185, + [SMALL_STATE(2874)] = 85269, + [SMALL_STATE(2875)] = 85365, + [SMALL_STATE(2876)] = 85463, + [SMALL_STATE(2877)] = 85563, + [SMALL_STATE(2878)] = 85645, + [SMALL_STATE(2879)] = 85729, + [SMALL_STATE(2880)] = 85787, + [SMALL_STATE(2881)] = 85845, + [SMALL_STATE(2882)] = 85907, + [SMALL_STATE(2883)] = 85969, + [SMALL_STATE(2884)] = 86025, + [SMALL_STATE(2885)] = 86117, + [SMALL_STATE(2886)] = 86173, + [SMALL_STATE(2887)] = 86229, + [SMALL_STATE(2888)] = 86285, + [SMALL_STATE(2889)] = 86341, + [SMALL_STATE(2890)] = 86447, + [SMALL_STATE(2891)] = 86505, + [SMALL_STATE(2892)] = 86619, + [SMALL_STATE(2893)] = 86675, + [SMALL_STATE(2894)] = 86789, + [SMALL_STATE(2895)] = 86845, + [SMALL_STATE(2896)] = 86901, + [SMALL_STATE(2897)] = 87015, + [SMALL_STATE(2898)] = 87071, + [SMALL_STATE(2899)] = 87185, + [SMALL_STATE(2900)] = 87241, + [SMALL_STATE(2901)] = 87299, + [SMALL_STATE(2902)] = 87355, + [SMALL_STATE(2903)] = 87423, + [SMALL_STATE(2904)] = 87491, + [SMALL_STATE(2905)] = 87551, + [SMALL_STATE(2906)] = 87607, + [SMALL_STATE(2907)] = 87665, + [SMALL_STATE(2908)] = 87779, + [SMALL_STATE(2909)] = 87893, + [SMALL_STATE(2910)] = 88007, + [SMALL_STATE(2911)] = 88065, + [SMALL_STATE(2912)] = 88179, + [SMALL_STATE(2913)] = 88257, + [SMALL_STATE(2914)] = 88315, + [SMALL_STATE(2915)] = 88429, + [SMALL_STATE(2916)] = 88519, + [SMALL_STATE(2917)] = 88609, + [SMALL_STATE(2918)] = 88667, + [SMALL_STATE(2919)] = 88783, + [SMALL_STATE(2920)] = 88838, + [SMALL_STATE(2921)] = 88951, + [SMALL_STATE(2922)] = 89012, + [SMALL_STATE(2923)] = 89067, + [SMALL_STATE(2924)] = 89122, + [SMALL_STATE(2925)] = 89177, + [SMALL_STATE(2926)] = 89232, + [SMALL_STATE(2927)] = 89287, + [SMALL_STATE(2928)] = 89342, + [SMALL_STATE(2929)] = 89425, + [SMALL_STATE(2930)] = 89480, + [SMALL_STATE(2931)] = 89561, + [SMALL_STATE(2932)] = 89620, + [SMALL_STATE(2933)] = 89683, + [SMALL_STATE(2934)] = 89782, + [SMALL_STATE(2935)] = 89855, + [SMALL_STATE(2936)] = 89928, + [SMALL_STATE(2937)] = 89983, + [SMALL_STATE(2938)] = 90080, + [SMALL_STATE(2939)] = 90145, + [SMALL_STATE(2940)] = 90220, + [SMALL_STATE(2941)] = 90279, + [SMALL_STATE(2942)] = 90334, + [SMALL_STATE(2943)] = 90389, + [SMALL_STATE(2944)] = 90454, + [SMALL_STATE(2945)] = 90549, + [SMALL_STATE(2946)] = 90608, + [SMALL_STATE(2947)] = 90671, + [SMALL_STATE(2948)] = 90728, + [SMALL_STATE(2949)] = 90811, + [SMALL_STATE(2950)] = 90886, + [SMALL_STATE(2951)] = 90961, + [SMALL_STATE(2952)] = 91034, + [SMALL_STATE(2953)] = 91109, + [SMALL_STATE(2954)] = 91190, + [SMALL_STATE(2955)] = 91273, + [SMALL_STATE(2956)] = 91386, + [SMALL_STATE(2957)] = 91463, + [SMALL_STATE(2958)] = 91522, + [SMALL_STATE(2959)] = 91597, + [SMALL_STATE(2960)] = 91680, + [SMALL_STATE(2961)] = 91783, + [SMALL_STATE(2962)] = 91864, + [SMALL_STATE(2963)] = 91965, + [SMALL_STATE(2964)] = 92040, + [SMALL_STATE(2965)] = 92097, + [SMALL_STATE(2966)] = 92152, + [SMALL_STATE(2967)] = 92227, + [SMALL_STATE(2968)] = 92300, + [SMALL_STATE(2969)] = 92381, + [SMALL_STATE(2970)] = 92440, + [SMALL_STATE(2971)] = 92515, + [SMALL_STATE(2972)] = 92598, + [SMALL_STATE(2973)] = 92657, + [SMALL_STATE(2974)] = 92716, + [SMALL_STATE(2975)] = 92793, + [SMALL_STATE(2976)] = 92866, + [SMALL_STATE(2977)] = 92925, + [SMALL_STATE(2978)] = 93000, + [SMALL_STATE(2979)] = 93055, + [SMALL_STATE(2980)] = 93110, + [SMALL_STATE(2981)] = 93165, + [SMALL_STATE(2982)] = 93232, + [SMALL_STATE(2983)] = 93299, + [SMALL_STATE(2984)] = 93354, + [SMALL_STATE(2985)] = 93437, + [SMALL_STATE(2986)] = 93494, + [SMALL_STATE(2987)] = 93575, + [SMALL_STATE(2988)] = 93638, + [SMALL_STATE(2989)] = 93699, + [SMALL_STATE(2990)] = 93754, + [SMALL_STATE(2991)] = 93811, + [SMALL_STATE(2992)] = 93866, + [SMALL_STATE(2993)] = 93939, + [SMALL_STATE(2994)] = 93998, + [SMALL_STATE(2995)] = 94057, + [SMALL_STATE(2996)] = 94120, + [SMALL_STATE(2997)] = 94175, + [SMALL_STATE(2998)] = 94230, + [SMALL_STATE(2999)] = 94317, + [SMALL_STATE(3000)] = 94430, + [SMALL_STATE(3001)] = 94485, + [SMALL_STATE(3002)] = 94558, + [SMALL_STATE(3003)] = 94671, + [SMALL_STATE(3004)] = 94726, + [SMALL_STATE(3005)] = 94781, + [SMALL_STATE(3006)] = 94836, + [SMALL_STATE(3007)] = 94891, + [SMALL_STATE(3008)] = 95004, + [SMALL_STATE(3009)] = 95079, + [SMALL_STATE(3010)] = 95134, + [SMALL_STATE(3011)] = 95189, + [SMALL_STATE(3012)] = 95244, + [SMALL_STATE(3013)] = 95319, + [SMALL_STATE(3014)] = 95374, + [SMALL_STATE(3015)] = 95429, + [SMALL_STATE(3016)] = 95542, + [SMALL_STATE(3017)] = 95597, + [SMALL_STATE(3018)] = 95710, + [SMALL_STATE(3019)] = 95767, + [SMALL_STATE(3020)] = 95824, + [SMALL_STATE(3021)] = 95889, + [SMALL_STATE(3022)] = 95946, + [SMALL_STATE(3023)] = 96001, + [SMALL_STATE(3024)] = 96060, + [SMALL_STATE(3025)] = 96125, + [SMALL_STATE(3026)] = 96184, + [SMALL_STATE(3027)] = 96239, + [SMALL_STATE(3028)] = 96294, + [SMALL_STATE(3029)] = 96349, + [SMALL_STATE(3030)] = 96404, + [SMALL_STATE(3031)] = 96461, + [SMALL_STATE(3032)] = 96524, + [SMALL_STATE(3033)] = 96597, + [SMALL_STATE(3034)] = 96654, + [SMALL_STATE(3035)] = 96767, + [SMALL_STATE(3036)] = 96880, + [SMALL_STATE(3037)] = 96993, + [SMALL_STATE(3038)] = 97048, + [SMALL_STATE(3039)] = 97123, + [SMALL_STATE(3040)] = 97178, + [SMALL_STATE(3041)] = 97233, + [SMALL_STATE(3042)] = 97288, + [SMALL_STATE(3043)] = 97347, + [SMALL_STATE(3044)] = 97404, + [SMALL_STATE(3045)] = 97517, + [SMALL_STATE(3046)] = 97572, + [SMALL_STATE(3047)] = 97685, + [SMALL_STATE(3048)] = 97740, + [SMALL_STATE(3049)] = 97795, + [SMALL_STATE(3050)] = 97850, + [SMALL_STATE(3051)] = 97907, + [SMALL_STATE(3052)] = 97962, + [SMALL_STATE(3053)] = 98017, + [SMALL_STATE(3054)] = 98092, + [SMALL_STATE(3055)] = 98205, + [SMALL_STATE(3056)] = 98278, + [SMALL_STATE(3057)] = 98333, + [SMALL_STATE(3058)] = 98388, + [SMALL_STATE(3059)] = 98443, + [SMALL_STATE(3060)] = 98556, + [SMALL_STATE(3061)] = 98611, + [SMALL_STATE(3062)] = 98666, + [SMALL_STATE(3063)] = 98733, + [SMALL_STATE(3064)] = 98800, + [SMALL_STATE(3065)] = 98855, + [SMALL_STATE(3066)] = 98914, + [SMALL_STATE(3067)] = 98971, + [SMALL_STATE(3068)] = 99084, + [SMALL_STATE(3069)] = 99143, + [SMALL_STATE(3070)] = 99202, + [SMALL_STATE(3071)] = 99257, + [SMALL_STATE(3072)] = 99330, + [SMALL_STATE(3073)] = 99443, + [SMALL_STATE(3074)] = 99516, + [SMALL_STATE(3075)] = 99571, + [SMALL_STATE(3076)] = 99626, + [SMALL_STATE(3077)] = 99681, + [SMALL_STATE(3078)] = 99794, + [SMALL_STATE(3079)] = 99907, + [SMALL_STATE(3080)] = 100020, + [SMALL_STATE(3081)] = 100075, + [SMALL_STATE(3082)] = 100130, + [SMALL_STATE(3083)] = 100189, + [SMALL_STATE(3084)] = 100302, + [SMALL_STATE(3085)] = 100415, + [SMALL_STATE(3086)] = 100470, + [SMALL_STATE(3087)] = 100583, + [SMALL_STATE(3088)] = 100688, + [SMALL_STATE(3089)] = 100761, + [SMALL_STATE(3090)] = 100842, + [SMALL_STATE(3091)] = 100933, + [SMALL_STATE(3092)] = 101016, + [SMALL_STATE(3093)] = 101075, + [SMALL_STATE(3094)] = 101142, + [SMALL_STATE(3095)] = 101215, + [SMALL_STATE(3096)] = 101298, + [SMALL_STATE(3097)] = 101379, + [SMALL_STATE(3098)] = 101434, + [SMALL_STATE(3099)] = 101489, + [SMALL_STATE(3100)] = 101552, + [SMALL_STATE(3101)] = 101627, + [SMALL_STATE(3102)] = 101740, + [SMALL_STATE(3103)] = 101813, + [SMALL_STATE(3104)] = 101926, + [SMALL_STATE(3105)] = 101985, + [SMALL_STATE(3106)] = 102066, + [SMALL_STATE(3107)] = 102133, + [SMALL_STATE(3108)] = 102206, + [SMALL_STATE(3109)] = 102269, + [SMALL_STATE(3110)] = 102382, + [SMALL_STATE(3111)] = 102495, + [SMALL_STATE(3112)] = 102608, + [SMALL_STATE(3113)] = 102675, + [SMALL_STATE(3114)] = 102748, + [SMALL_STATE(3115)] = 102807, + [SMALL_STATE(3116)] = 102870, + [SMALL_STATE(3117)] = 102937, + [SMALL_STATE(3118)] = 102992, + [SMALL_STATE(3119)] = 103075, + [SMALL_STATE(3120)] = 103142, + [SMALL_STATE(3121)] = 103209, + [SMALL_STATE(3122)] = 103322, + [SMALL_STATE(3123)] = 103397, + [SMALL_STATE(3124)] = 103460, + [SMALL_STATE(3125)] = 103541, + [SMALL_STATE(3126)] = 103628, + [SMALL_STATE(3127)] = 103689, + [SMALL_STATE(3128)] = 103764, + [SMALL_STATE(3129)] = 103837, + [SMALL_STATE(3130)] = 103950, + [SMALL_STATE(3131)] = 104011, + [SMALL_STATE(3132)] = 104084, + [SMALL_STATE(3133)] = 104159, + [SMALL_STATE(3134)] = 104240, + [SMALL_STATE(3135)] = 104353, + [SMALL_STATE(3136)] = 104426, + [SMALL_STATE(3137)] = 104485, + [SMALL_STATE(3138)] = 104600, + [SMALL_STATE(3139)] = 104713, + [SMALL_STATE(3140)] = 104826, + [SMALL_STATE(3141)] = 104899, + [SMALL_STATE(3142)] = 104972, + [SMALL_STATE(3143)] = 105027, + [SMALL_STATE(3144)] = 105086, + [SMALL_STATE(3145)] = 105147, + [SMALL_STATE(3146)] = 105202, + [SMALL_STATE(3147)] = 105279, + [SMALL_STATE(3148)] = 105338, + [SMALL_STATE(3149)] = 105439, + [SMALL_STATE(3150)] = 105496, + [SMALL_STATE(3151)] = 105599, + [SMALL_STATE(3152)] = 105682, + [SMALL_STATE(3153)] = 105741, + [SMALL_STATE(3154)] = 105816, + [SMALL_STATE(3155)] = 105889, + [SMALL_STATE(3156)] = 105946, + [SMALL_STATE(3157)] = 106029, + [SMALL_STATE(3158)] = 106142, + [SMALL_STATE(3159)] = 106237, + [SMALL_STATE(3160)] = 106334, + [SMALL_STATE(3161)] = 106433, + [SMALL_STATE(3162)] = 106514, + [SMALL_STATE(3163)] = 106569, + [SMALL_STATE(3164)] = 106628, + [SMALL_STATE(3165)] = 106689, + [SMALL_STATE(3166)] = 106756, + [SMALL_STATE(3167)] = 106815, + [SMALL_STATE(3168)] = 106872, + [SMALL_STATE(3169)] = 106963, + [SMALL_STATE(3170)] = 107068, + [SMALL_STATE(3171)] = 107181, + [SMALL_STATE(3172)] = 107240, + [SMALL_STATE(3173)] = 107353, + [SMALL_STATE(3174)] = 107466, + [SMALL_STATE(3175)] = 107579, + [SMALL_STATE(3176)] = 107638, + [SMALL_STATE(3177)] = 107751, + [SMALL_STATE(3178)] = 107806, + [SMALL_STATE(3179)] = 107861, + [SMALL_STATE(3180)] = 107974, + [SMALL_STATE(3181)] = 108031, + [SMALL_STATE(3182)] = 108144, + [SMALL_STATE(3183)] = 108203, + [SMALL_STATE(3184)] = 108262, + [SMALL_STATE(3185)] = 108317, + [SMALL_STATE(3186)] = 108380, + [SMALL_STATE(3187)] = 108473, + [SMALL_STATE(3188)] = 108563, + [SMALL_STATE(3189)] = 108631, + [SMALL_STATE(3190)] = 108691, + [SMALL_STATE(3191)] = 108749, + [SMALL_STATE(3192)] = 108811, + [SMALL_STATE(3193)] = 108873, + [SMALL_STATE(3194)] = 108941, + [SMALL_STATE(3195)] = 109003, + [SMALL_STATE(3196)] = 109059, + [SMALL_STATE(3197)] = 109169, + [SMALL_STATE(3198)] = 109279, + [SMALL_STATE(3199)] = 109389, + [SMALL_STATE(3200)] = 109499, + [SMALL_STATE(3201)] = 109609, + [SMALL_STATE(3202)] = 109695, + [SMALL_STATE(3203)] = 109771, + [SMALL_STATE(3204)] = 109851, + [SMALL_STATE(3205)] = 109961, + [SMALL_STATE(3206)] = 110017, + [SMALL_STATE(3207)] = 110127, + [SMALL_STATE(3208)] = 110195, + [SMALL_STATE(3209)] = 110295, + [SMALL_STATE(3210)] = 110353, + [SMALL_STATE(3211)] = 110421, + [SMALL_STATE(3212)] = 110497, + [SMALL_STATE(3213)] = 110565, + [SMALL_STATE(3214)] = 110633, + [SMALL_STATE(3215)] = 110701, [SMALL_STATE(3216)] = 110769, - [SMALL_STATE(3217)] = 110827, - [SMALL_STATE(3218)] = 110889, - [SMALL_STATE(3219)] = 110977, - [SMALL_STATE(3220)] = 111033, - [SMALL_STATE(3221)] = 111101, - [SMALL_STATE(3222)] = 111157, - [SMALL_STATE(3223)] = 111233, - [SMALL_STATE(3224)] = 111301, - [SMALL_STATE(3225)] = 111403, - [SMALL_STATE(3226)] = 111471, - [SMALL_STATE(3227)] = 111529, - [SMALL_STATE(3228)] = 111597, - [SMALL_STATE(3229)] = 111707, - [SMALL_STATE(3230)] = 111789, - [SMALL_STATE(3231)] = 111857, - [SMALL_STATE(3232)] = 111957, - [SMALL_STATE(3233)] = 112025, - [SMALL_STATE(3234)] = 112093, - [SMALL_STATE(3235)] = 112169, - [SMALL_STATE(3236)] = 112263, - [SMALL_STATE(3237)] = 112339, - [SMALL_STATE(3238)] = 112401, - [SMALL_STATE(3239)] = 112469, - [SMALL_STATE(3240)] = 112565, - [SMALL_STATE(3241)] = 112633, - [SMALL_STATE(3242)] = 112731, - [SMALL_STATE(3243)] = 112841, - [SMALL_STATE(3244)] = 112951, - [SMALL_STATE(3245)] = 113019, - [SMALL_STATE(3246)] = 113079, - [SMALL_STATE(3247)] = 113189, - [SMALL_STATE(3248)] = 113265, - [SMALL_STATE(3249)] = 113375, - [SMALL_STATE(3250)] = 113443, - [SMALL_STATE(3251)] = 113527, - [SMALL_STATE(3252)] = 113595, - [SMALL_STATE(3253)] = 113663, - [SMALL_STATE(3254)] = 113773, - [SMALL_STATE(3255)] = 113883, - [SMALL_STATE(3256)] = 113993, - [SMALL_STATE(3257)] = 114103, - [SMALL_STATE(3258)] = 114171, - [SMALL_STATE(3259)] = 114275, - [SMALL_STATE(3260)] = 114365, - [SMALL_STATE(3261)] = 114447, - [SMALL_STATE(3262)] = 114503, - [SMALL_STATE(3263)] = 114565, - [SMALL_STATE(3264)] = 114641, - [SMALL_STATE(3265)] = 114721, - [SMALL_STATE(3266)] = 114777, - [SMALL_STATE(3267)] = 114832, - [SMALL_STATE(3268)] = 114907, - [SMALL_STATE(3269)] = 114966, - [SMALL_STATE(3270)] = 115025, - [SMALL_STATE(3271)] = 115080, - [SMALL_STATE(3272)] = 115139, - [SMALL_STATE(3273)] = 115194, - [SMALL_STATE(3274)] = 115253, - [SMALL_STATE(3275)] = 115330, - [SMALL_STATE(3276)] = 115389, - [SMALL_STATE(3277)] = 115462, - [SMALL_STATE(3278)] = 115517, - [SMALL_STATE(3279)] = 115586, - [SMALL_STATE(3280)] = 115679, - [SMALL_STATE(3281)] = 115734, - [SMALL_STATE(3282)] = 115789, - [SMALL_STATE(3283)] = 115844, - [SMALL_STATE(3284)] = 115899, - [SMALL_STATE(3285)] = 115972, - [SMALL_STATE(3286)] = 116027, - [SMALL_STATE(3287)] = 116082, - [SMALL_STATE(3288)] = 116141, - [SMALL_STATE(3289)] = 116196, - [SMALL_STATE(3290)] = 116269, - [SMALL_STATE(3291)] = 116328, - [SMALL_STATE(3292)] = 116397, - [SMALL_STATE(3293)] = 116456, - [SMALL_STATE(3294)] = 116535, - [SMALL_STATE(3295)] = 116604, - [SMALL_STATE(3296)] = 116679, - [SMALL_STATE(3297)] = 116752, - [SMALL_STATE(3298)] = 116821, - [SMALL_STATE(3299)] = 116882, - [SMALL_STATE(3300)] = 116955, - [SMALL_STATE(3301)] = 117010, - [SMALL_STATE(3302)] = 117065, - [SMALL_STATE(3303)] = 117138, - [SMALL_STATE(3304)] = 117197, - [SMALL_STATE(3305)] = 117266, - [SMALL_STATE(3306)] = 117325, - [SMALL_STATE(3307)] = 117391, - [SMALL_STATE(3308)] = 117453, - [SMALL_STATE(3309)] = 117511, - [SMALL_STATE(3310)] = 117573, - [SMALL_STATE(3311)] = 117635, - [SMALL_STATE(3312)] = 117697, - [SMALL_STATE(3313)] = 117759, - [SMALL_STATE(3314)] = 117821, - [SMALL_STATE(3315)] = 117879, - [SMALL_STATE(3316)] = 117945, - [SMALL_STATE(3317)] = 118007, - [SMALL_STATE(3318)] = 118073, - [SMALL_STATE(3319)] = 118139, - [SMALL_STATE(3320)] = 118201, - [SMALL_STATE(3321)] = 118271, - [SMALL_STATE(3322)] = 118337, - [SMALL_STATE(3323)] = 118405, - [SMALL_STATE(3324)] = 118459, - [SMALL_STATE(3325)] = 118531, - [SMALL_STATE(3326)] = 118593, - [SMALL_STATE(3327)] = 118651, - [SMALL_STATE(3328)] = 118713, - [SMALL_STATE(3329)] = 118779, - [SMALL_STATE(3330)] = 118845, - [SMALL_STATE(3331)] = 118907, - [SMALL_STATE(3332)] = 118965, - [SMALL_STATE(3333)] = 119031, - [SMALL_STATE(3334)] = 119089, + [SMALL_STATE(3217)] = 110831, + [SMALL_STATE(3218)] = 110891, + [SMALL_STATE(3219)] = 110973, + [SMALL_STATE(3220)] = 111041, + [SMALL_STATE(3221)] = 111109, + [SMALL_STATE(3222)] = 111203, + [SMALL_STATE(3223)] = 111299, + [SMALL_STATE(3224)] = 111355, + [SMALL_STATE(3225)] = 111453, + [SMALL_STATE(3226)] = 111563, + [SMALL_STATE(3227)] = 111635, + [SMALL_STATE(3228)] = 111737, + [SMALL_STATE(3229)] = 111819, + [SMALL_STATE(3230)] = 111923, + [SMALL_STATE(3231)] = 112033, + [SMALL_STATE(3232)] = 112113, + [SMALL_STATE(3233)] = 112187, + [SMALL_STATE(3234)] = 112297, + [SMALL_STATE(3235)] = 112373, + [SMALL_STATE(3236)] = 112433, + [SMALL_STATE(3237)] = 112495, + [SMALL_STATE(3238)] = 112563, + [SMALL_STATE(3239)] = 112639, + [SMALL_STATE(3240)] = 112707, + [SMALL_STATE(3241)] = 112775, + [SMALL_STATE(3242)] = 112843, + [SMALL_STATE(3243)] = 112911, + [SMALL_STATE(3244)] = 112993, + [SMALL_STATE(3245)] = 113069, + [SMALL_STATE(3246)] = 113179, + [SMALL_STATE(3247)] = 113267, + [SMALL_STATE(3248)] = 113335, + [SMALL_STATE(3249)] = 113403, + [SMALL_STATE(3250)] = 113513, + [SMALL_STATE(3251)] = 113623, + [SMALL_STATE(3252)] = 113733, + [SMALL_STATE(3253)] = 113843, + [SMALL_STATE(3254)] = 113911, + [SMALL_STATE(3255)] = 113979, + [SMALL_STATE(3256)] = 114089, + [SMALL_STATE(3257)] = 114165, + [SMALL_STATE(3258)] = 114241, + [SMALL_STATE(3259)] = 114309, + [SMALL_STATE(3260)] = 114369, + [SMALL_STATE(3261)] = 114437, + [SMALL_STATE(3262)] = 114505, + [SMALL_STATE(3263)] = 114561, + [SMALL_STATE(3264)] = 114645, + [SMALL_STATE(3265)] = 114707, + [SMALL_STATE(3266)] = 114775, + [SMALL_STATE(3267)] = 114851, + [SMALL_STATE(3268)] = 114910, + [SMALL_STATE(3269)] = 114965, + [SMALL_STATE(3270)] = 115038, + [SMALL_STATE(3271)] = 115115, + [SMALL_STATE(3272)] = 115184, + [SMALL_STATE(3273)] = 115259, + [SMALL_STATE(3274)] = 115314, + [SMALL_STATE(3275)] = 115369, + [SMALL_STATE(3276)] = 115438, + [SMALL_STATE(3277)] = 115497, + [SMALL_STATE(3278)] = 115556, + [SMALL_STATE(3279)] = 115631, + [SMALL_STATE(3280)] = 115686, + [SMALL_STATE(3281)] = 115745, + [SMALL_STATE(3282)] = 115800, + [SMALL_STATE(3283)] = 115859, + [SMALL_STATE(3284)] = 115932, + [SMALL_STATE(3285)] = 116005, + [SMALL_STATE(3286)] = 116084, + [SMALL_STATE(3287)] = 116139, + [SMALL_STATE(3288)] = 116198, + [SMALL_STATE(3289)] = 116267, + [SMALL_STATE(3290)] = 116322, + [SMALL_STATE(3291)] = 116395, + [SMALL_STATE(3292)] = 116464, + [SMALL_STATE(3293)] = 116557, + [SMALL_STATE(3294)] = 116616, + [SMALL_STATE(3295)] = 116675, + [SMALL_STATE(3296)] = 116734, + [SMALL_STATE(3297)] = 116789, + [SMALL_STATE(3298)] = 116858, + [SMALL_STATE(3299)] = 116913, + [SMALL_STATE(3300)] = 116986, + [SMALL_STATE(3301)] = 117045, + [SMALL_STATE(3302)] = 117118, + [SMALL_STATE(3303)] = 117173, + [SMALL_STATE(3304)] = 117234, + [SMALL_STATE(3305)] = 117289, + [SMALL_STATE(3306)] = 117344, + [SMALL_STATE(3307)] = 117399, + [SMALL_STATE(3308)] = 117465, + [SMALL_STATE(3309)] = 117527, + [SMALL_STATE(3310)] = 117589, + [SMALL_STATE(3311)] = 117655, + [SMALL_STATE(3312)] = 117721, + [SMALL_STATE(3313)] = 117779, + [SMALL_STATE(3314)] = 117841, + [SMALL_STATE(3315)] = 117895, + [SMALL_STATE(3316)] = 117961, + [SMALL_STATE(3317)] = 118023, + [SMALL_STATE(3318)] = 118089, + [SMALL_STATE(3319)] = 118155, + [SMALL_STATE(3320)] = 118221, + [SMALL_STATE(3321)] = 118287, + [SMALL_STATE(3322)] = 118349, + [SMALL_STATE(3323)] = 118411, + [SMALL_STATE(3324)] = 118481, + [SMALL_STATE(3325)] = 118535, + [SMALL_STATE(3326)] = 118597, + [SMALL_STATE(3327)] = 118655, + [SMALL_STATE(3328)] = 118709, + [SMALL_STATE(3329)] = 118771, + [SMALL_STATE(3330)] = 118837, + [SMALL_STATE(3331)] = 118903, + [SMALL_STATE(3332)] = 118961, + [SMALL_STATE(3333)] = 119023, + [SMALL_STATE(3334)] = 119085, [SMALL_STATE(3335)] = 119151, - [SMALL_STATE(3336)] = 119221, + [SMALL_STATE(3336)] = 119217, [SMALL_STATE(3337)] = 119283, - [SMALL_STATE(3338)] = 119349, - [SMALL_STATE(3339)] = 119403, - [SMALL_STATE(3340)] = 119457, - [SMALL_STATE(3341)] = 119523, - [SMALL_STATE(3342)] = 119589, - [SMALL_STATE(3343)] = 119643, - [SMALL_STATE(3344)] = 119709, - [SMALL_STATE(3345)] = 119775, - [SMALL_STATE(3346)] = 119841, - [SMALL_STATE(3347)] = 119907, - [SMALL_STATE(3348)] = 119969, - [SMALL_STATE(3349)] = 120035, - [SMALL_STATE(3350)] = 120088, - [SMALL_STATE(3351)] = 120141, - [SMALL_STATE(3352)] = 120194, - [SMALL_STATE(3353)] = 120247, - [SMALL_STATE(3354)] = 120312, - [SMALL_STATE(3355)] = 120365, - [SMALL_STATE(3356)] = 120418, - [SMALL_STATE(3357)] = 120471, - [SMALL_STATE(3358)] = 120524, - [SMALL_STATE(3359)] = 120577, - [SMALL_STATE(3360)] = 120627, - [SMALL_STATE(3361)] = 120677, - [SMALL_STATE(3362)] = 120727, - [SMALL_STATE(3363)] = 120777, - [SMALL_STATE(3364)] = 120827, - [SMALL_STATE(3365)] = 120877, - [SMALL_STATE(3366)] = 120927, - [SMALL_STATE(3367)] = 120977, - [SMALL_STATE(3368)] = 121027, - [SMALL_STATE(3369)] = 121077, - [SMALL_STATE(3370)] = 121127, - [SMALL_STATE(3371)] = 121177, - [SMALL_STATE(3372)] = 121227, - [SMALL_STATE(3373)] = 121283, - [SMALL_STATE(3374)] = 121333, - [SMALL_STATE(3375)] = 121383, - [SMALL_STATE(3376)] = 121433, - [SMALL_STATE(3377)] = 121483, - [SMALL_STATE(3378)] = 121533, - [SMALL_STATE(3379)] = 121585, - [SMALL_STATE(3380)] = 121635, - [SMALL_STATE(3381)] = 121691, - [SMALL_STATE(3382)] = 121741, - [SMALL_STATE(3383)] = 121791, - [SMALL_STATE(3384)] = 121841, - [SMALL_STATE(3385)] = 121891, - [SMALL_STATE(3386)] = 121941, - [SMALL_STATE(3387)] = 121991, - [SMALL_STATE(3388)] = 122041, - [SMALL_STATE(3389)] = 122091, - [SMALL_STATE(3390)] = 122165, - [SMALL_STATE(3391)] = 122215, - [SMALL_STATE(3392)] = 122265, - [SMALL_STATE(3393)] = 122319, - [SMALL_STATE(3394)] = 122369, - [SMALL_STATE(3395)] = 122419, - [SMALL_STATE(3396)] = 122473, - [SMALL_STATE(3397)] = 122523, - [SMALL_STATE(3398)] = 122573, - [SMALL_STATE(3399)] = 122623, - [SMALL_STATE(3400)] = 122673, - [SMALL_STATE(3401)] = 122725, - [SMALL_STATE(3402)] = 122775, - [SMALL_STATE(3403)] = 122825, - [SMALL_STATE(3404)] = 122875, - [SMALL_STATE(3405)] = 122925, - [SMALL_STATE(3406)] = 122975, - [SMALL_STATE(3407)] = 123025, - [SMALL_STATE(3408)] = 123075, - [SMALL_STATE(3409)] = 123125, - [SMALL_STATE(3410)] = 123175, - [SMALL_STATE(3411)] = 123225, - [SMALL_STATE(3412)] = 123275, - [SMALL_STATE(3413)] = 123325, - [SMALL_STATE(3414)] = 123375, - [SMALL_STATE(3415)] = 123425, - [SMALL_STATE(3416)] = 123475, - [SMALL_STATE(3417)] = 123542, - [SMALL_STATE(3418)] = 123593, - [SMALL_STATE(3419)] = 123640, - [SMALL_STATE(3420)] = 123687, - [SMALL_STATE(3421)] = 123734, - [SMALL_STATE(3422)] = 123801, - [SMALL_STATE(3423)] = 123866, - [SMALL_STATE(3424)] = 123913, - [SMALL_STATE(3425)] = 123960, - [SMALL_STATE(3426)] = 124007, - [SMALL_STATE(3427)] = 124072, - [SMALL_STATE(3428)] = 124135, - [SMALL_STATE(3429)] = 124200, - [SMALL_STATE(3430)] = 124247, - [SMALL_STATE(3431)] = 124314, - [SMALL_STATE(3432)] = 124361, - [SMALL_STATE(3433)] = 124426, - [SMALL_STATE(3434)] = 124477, - [SMALL_STATE(3435)] = 124537, - [SMALL_STATE(3436)] = 124597, - [SMALL_STATE(3437)] = 124673, - [SMALL_STATE(3438)] = 124733, - [SMALL_STATE(3439)] = 124793, - [SMALL_STATE(3440)] = 124853, - [SMALL_STATE(3441)] = 124913, - [SMALL_STATE(3442)] = 124973, - [SMALL_STATE(3443)] = 125033, - [SMALL_STATE(3444)] = 125093, - [SMALL_STATE(3445)] = 125145, - [SMALL_STATE(3446)] = 125205, - [SMALL_STATE(3447)] = 125265, - [SMALL_STATE(3448)] = 125325, - [SMALL_STATE(3449)] = 125385, - [SMALL_STATE(3450)] = 125445, - [SMALL_STATE(3451)] = 125505, - [SMALL_STATE(3452)] = 125565, - [SMALL_STATE(3453)] = 125625, - [SMALL_STATE(3454)] = 125685, - [SMALL_STATE(3455)] = 125745, - [SMALL_STATE(3456)] = 125805, - [SMALL_STATE(3457)] = 125865, - [SMALL_STATE(3458)] = 125925, - [SMALL_STATE(3459)] = 125985, - [SMALL_STATE(3460)] = 126045, - [SMALL_STATE(3461)] = 126105, - [SMALL_STATE(3462)] = 126165, - [SMALL_STATE(3463)] = 126225, - [SMALL_STATE(3464)] = 126301, - [SMALL_STATE(3465)] = 126362, - [SMALL_STATE(3466)] = 126423, - [SMALL_STATE(3467)] = 126484, - [SMALL_STATE(3468)] = 126545, - [SMALL_STATE(3469)] = 126616, - [SMALL_STATE(3470)] = 126677, - [SMALL_STATE(3471)] = 126738, - [SMALL_STATE(3472)] = 126799, - [SMALL_STATE(3473)] = 126884, - [SMALL_STATE(3474)] = 126951, - [SMALL_STATE(3475)] = 127012, - [SMALL_STATE(3476)] = 127097, - [SMALL_STATE(3477)] = 127182, - [SMALL_STATE(3478)] = 127253, - [SMALL_STATE(3479)] = 127338, - [SMALL_STATE(3480)] = 127399, - [SMALL_STATE(3481)] = 127466, - [SMALL_STATE(3482)] = 127527, - [SMALL_STATE(3483)] = 127588, - [SMALL_STATE(3484)] = 127649, - [SMALL_STATE(3485)] = 127734, - [SMALL_STATE(3486)] = 127795, - [SMALL_STATE(3487)] = 127880, - [SMALL_STATE(3488)] = 127941, - [SMALL_STATE(3489)] = 128002, - [SMALL_STATE(3490)] = 128047, - [SMALL_STATE(3491)] = 128132, - [SMALL_STATE(3492)] = 128217, - [SMALL_STATE(3493)] = 128278, - [SMALL_STATE(3494)] = 128339, - [SMALL_STATE(3495)] = 128406, - [SMALL_STATE(3496)] = 128467, - [SMALL_STATE(3497)] = 128516, - [SMALL_STATE(3498)] = 128583, - [SMALL_STATE(3499)] = 128644, - [SMALL_STATE(3500)] = 128729, - [SMALL_STATE(3501)] = 128790, - [SMALL_STATE(3502)] = 128851, - [SMALL_STATE(3503)] = 128912, - [SMALL_STATE(3504)] = 128973, - [SMALL_STATE(3505)] = 129058, - [SMALL_STATE(3506)] = 129119, - [SMALL_STATE(3507)] = 129204, - [SMALL_STATE(3508)] = 129265, - [SMALL_STATE(3509)] = 129336, - [SMALL_STATE(3510)] = 129397, - [SMALL_STATE(3511)] = 129482, - [SMALL_STATE(3512)] = 129543, - [SMALL_STATE(3513)] = 129604, - [SMALL_STATE(3514)] = 129665, - [SMALL_STATE(3515)] = 129726, - [SMALL_STATE(3516)] = 129790, - [SMALL_STATE(3517)] = 129854, - [SMALL_STATE(3518)] = 129918, - [SMALL_STATE(3519)] = 129976, - [SMALL_STATE(3520)] = 130040, - [SMALL_STATE(3521)] = 130100, - [SMALL_STATE(3522)] = 130164, - [SMALL_STATE(3523)] = 130224, - [SMALL_STATE(3524)] = 130288, - [SMALL_STATE(3525)] = 130352, - [SMALL_STATE(3526)] = 130416, - [SMALL_STATE(3527)] = 130480, - [SMALL_STATE(3528)] = 130544, - [SMALL_STATE(3529)] = 130608, - [SMALL_STATE(3530)] = 130672, - [SMALL_STATE(3531)] = 130736, - [SMALL_STATE(3532)] = 130800, - [SMALL_STATE(3533)] = 130846, - [SMALL_STATE(3534)] = 130910, - [SMALL_STATE(3535)] = 130974, - [SMALL_STATE(3536)] = 131029, - [SMALL_STATE(3537)] = 131084, - [SMALL_STATE(3538)] = 131139, - [SMALL_STATE(3539)] = 131194, - [SMALL_STATE(3540)] = 131249, - [SMALL_STATE(3541)] = 131306, + [SMALL_STATE(3338)] = 119351, + [SMALL_STATE(3339)] = 119417, + [SMALL_STATE(3340)] = 119483, + [SMALL_STATE(3341)] = 119549, + [SMALL_STATE(3342)] = 119611, + [SMALL_STATE(3343)] = 119669, + [SMALL_STATE(3344)] = 119731, + [SMALL_STATE(3345)] = 119793, + [SMALL_STATE(3346)] = 119851, + [SMALL_STATE(3347)] = 119905, + [SMALL_STATE(3348)] = 119967, + [SMALL_STATE(3349)] = 120037, + [SMALL_STATE(3350)] = 120109, + [SMALL_STATE(3351)] = 120162, + [SMALL_STATE(3352)] = 120215, + [SMALL_STATE(3353)] = 120268, + [SMALL_STATE(3354)] = 120321, + [SMALL_STATE(3355)] = 120374, + [SMALL_STATE(3356)] = 120439, + [SMALL_STATE(3357)] = 120492, + [SMALL_STATE(3358)] = 120545, + [SMALL_STATE(3359)] = 120598, + [SMALL_STATE(3360)] = 120651, + [SMALL_STATE(3361)] = 120701, + [SMALL_STATE(3362)] = 120751, + [SMALL_STATE(3363)] = 120801, + [SMALL_STATE(3364)] = 120851, + [SMALL_STATE(3365)] = 120901, + [SMALL_STATE(3366)] = 120955, + [SMALL_STATE(3367)] = 121005, + [SMALL_STATE(3368)] = 121055, + [SMALL_STATE(3369)] = 121105, + [SMALL_STATE(3370)] = 121155, + [SMALL_STATE(3371)] = 121205, + [SMALL_STATE(3372)] = 121255, + [SMALL_STATE(3373)] = 121305, + [SMALL_STATE(3374)] = 121355, + [SMALL_STATE(3375)] = 121405, + [SMALL_STATE(3376)] = 121455, + [SMALL_STATE(3377)] = 121505, + [SMALL_STATE(3378)] = 121555, + [SMALL_STATE(3379)] = 121605, + [SMALL_STATE(3380)] = 121655, + [SMALL_STATE(3381)] = 121705, + [SMALL_STATE(3382)] = 121757, + [SMALL_STATE(3383)] = 121807, + [SMALL_STATE(3384)] = 121857, + [SMALL_STATE(3385)] = 121907, + [SMALL_STATE(3386)] = 121957, + [SMALL_STATE(3387)] = 122007, + [SMALL_STATE(3388)] = 122057, + [SMALL_STATE(3389)] = 122107, + [SMALL_STATE(3390)] = 122159, + [SMALL_STATE(3391)] = 122209, + [SMALL_STATE(3392)] = 122259, + [SMALL_STATE(3393)] = 122309, + [SMALL_STATE(3394)] = 122359, + [SMALL_STATE(3395)] = 122409, + [SMALL_STATE(3396)] = 122459, + [SMALL_STATE(3397)] = 122509, + [SMALL_STATE(3398)] = 122559, + [SMALL_STATE(3399)] = 122609, + [SMALL_STATE(3400)] = 122659, + [SMALL_STATE(3401)] = 122709, + [SMALL_STATE(3402)] = 122759, + [SMALL_STATE(3403)] = 122809, + [SMALL_STATE(3404)] = 122859, + [SMALL_STATE(3405)] = 122933, + [SMALL_STATE(3406)] = 122989, + [SMALL_STATE(3407)] = 123039, + [SMALL_STATE(3408)] = 123097, + [SMALL_STATE(3409)] = 123153, + [SMALL_STATE(3410)] = 123203, + [SMALL_STATE(3411)] = 123253, + [SMALL_STATE(3412)] = 123303, + [SMALL_STATE(3413)] = 123353, + [SMALL_STATE(3414)] = 123403, + [SMALL_STATE(3415)] = 123453, + [SMALL_STATE(3416)] = 123503, + [SMALL_STATE(3417)] = 123553, + [SMALL_STATE(3418)] = 123607, + [SMALL_STATE(3419)] = 123654, + [SMALL_STATE(3420)] = 123701, + [SMALL_STATE(3421)] = 123764, + [SMALL_STATE(3422)] = 123829, + [SMALL_STATE(3423)] = 123896, + [SMALL_STATE(3424)] = 123961, + [SMALL_STATE(3425)] = 124008, + [SMALL_STATE(3426)] = 124055, + [SMALL_STATE(3427)] = 124120, + [SMALL_STATE(3428)] = 124167, + [SMALL_STATE(3429)] = 124214, + [SMALL_STATE(3430)] = 124261, + [SMALL_STATE(3431)] = 124328, + [SMALL_STATE(3432)] = 124375, + [SMALL_STATE(3433)] = 124440, + [SMALL_STATE(3434)] = 124491, + [SMALL_STATE(3435)] = 124542, + [SMALL_STATE(3436)] = 124609, + [SMALL_STATE(3437)] = 124669, + [SMALL_STATE(3438)] = 124729, + [SMALL_STATE(3439)] = 124789, + [SMALL_STATE(3440)] = 124849, + [SMALL_STATE(3441)] = 124909, + [SMALL_STATE(3442)] = 124969, + [SMALL_STATE(3443)] = 125029, + [SMALL_STATE(3444)] = 125089, + [SMALL_STATE(3445)] = 125149, + [SMALL_STATE(3446)] = 125209, + [SMALL_STATE(3447)] = 125269, + [SMALL_STATE(3448)] = 125329, + [SMALL_STATE(3449)] = 125389, + [SMALL_STATE(3450)] = 125449, + [SMALL_STATE(3451)] = 125509, + [SMALL_STATE(3452)] = 125585, + [SMALL_STATE(3453)] = 125645, + [SMALL_STATE(3454)] = 125705, + [SMALL_STATE(3455)] = 125765, + [SMALL_STATE(3456)] = 125825, + [SMALL_STATE(3457)] = 125885, + [SMALL_STATE(3458)] = 125945, + [SMALL_STATE(3459)] = 126005, + [SMALL_STATE(3460)] = 126065, + [SMALL_STATE(3461)] = 126125, + [SMALL_STATE(3462)] = 126185, + [SMALL_STATE(3463)] = 126245, + [SMALL_STATE(3464)] = 126321, + [SMALL_STATE(3465)] = 126381, + [SMALL_STATE(3466)] = 126427, + [SMALL_STATE(3467)] = 126488, + [SMALL_STATE(3468)] = 126549, + [SMALL_STATE(3469)] = 126610, + [SMALL_STATE(3470)] = 126671, + [SMALL_STATE(3471)] = 126732, + [SMALL_STATE(3472)] = 126803, + [SMALL_STATE(3473)] = 126874, + [SMALL_STATE(3474)] = 126935, + [SMALL_STATE(3475)] = 127020, + [SMALL_STATE(3476)] = 127105, + [SMALL_STATE(3477)] = 127166, + [SMALL_STATE(3478)] = 127227, + [SMALL_STATE(3479)] = 127294, + [SMALL_STATE(3480)] = 127355, + [SMALL_STATE(3481)] = 127440, + [SMALL_STATE(3482)] = 127501, + [SMALL_STATE(3483)] = 127562, + [SMALL_STATE(3484)] = 127647, + [SMALL_STATE(3485)] = 127732, + [SMALL_STATE(3486)] = 127799, + [SMALL_STATE(3487)] = 127860, + [SMALL_STATE(3488)] = 127921, + [SMALL_STATE(3489)] = 127982, + [SMALL_STATE(3490)] = 128031, + [SMALL_STATE(3491)] = 128092, + [SMALL_STATE(3492)] = 128153, + [SMALL_STATE(3493)] = 128214, + [SMALL_STATE(3494)] = 128275, + [SMALL_STATE(3495)] = 128342, + [SMALL_STATE(3496)] = 128403, + [SMALL_STATE(3497)] = 128464, + [SMALL_STATE(3498)] = 128525, + [SMALL_STATE(3499)] = 128586, + [SMALL_STATE(3500)] = 128671, + [SMALL_STATE(3501)] = 128732, + [SMALL_STATE(3502)] = 128799, + [SMALL_STATE(3503)] = 128884, + [SMALL_STATE(3504)] = 128945, + [SMALL_STATE(3505)] = 129030, + [SMALL_STATE(3506)] = 129101, + [SMALL_STATE(3507)] = 129186, + [SMALL_STATE(3508)] = 129247, + [SMALL_STATE(3509)] = 129308, + [SMALL_STATE(3510)] = 129369, + [SMALL_STATE(3511)] = 129430, + [SMALL_STATE(3512)] = 129515, + [SMALL_STATE(3513)] = 129600, + [SMALL_STATE(3514)] = 129661, + [SMALL_STATE(3515)] = 129722, + [SMALL_STATE(3516)] = 129807, + [SMALL_STATE(3517)] = 129871, + [SMALL_STATE(3518)] = 129935, + [SMALL_STATE(3519)] = 129999, + [SMALL_STATE(3520)] = 130059, + [SMALL_STATE(3521)] = 130123, + [SMALL_STATE(3522)] = 130187, + [SMALL_STATE(3523)] = 130251, + [SMALL_STATE(3524)] = 130315, + [SMALL_STATE(3525)] = 130379, + [SMALL_STATE(3526)] = 130443, + [SMALL_STATE(3527)] = 130503, + [SMALL_STATE(3528)] = 130561, + [SMALL_STATE(3529)] = 130625, + [SMALL_STATE(3530)] = 130689, + [SMALL_STATE(3531)] = 130735, + [SMALL_STATE(3532)] = 130799, + [SMALL_STATE(3533)] = 130863, + [SMALL_STATE(3534)] = 130927, + [SMALL_STATE(3535)] = 130991, + [SMALL_STATE(3536)] = 131055, + [SMALL_STATE(3537)] = 131112, + [SMALL_STATE(3538)] = 131155, + [SMALL_STATE(3539)] = 131198, + [SMALL_STATE(3540)] = 131253, + [SMALL_STATE(3541)] = 131308, [SMALL_STATE(3542)] = 131363, [SMALL_STATE(3543)] = 131418, [SMALL_STATE(3544)] = 131461, [SMALL_STATE(3545)] = 131516, - [SMALL_STATE(3546)] = 131559, - [SMALL_STATE(3547)] = 131614, - [SMALL_STATE(3548)] = 131669, - [SMALL_STATE(3549)] = 131724, - [SMALL_STATE(3550)] = 131779, - [SMALL_STATE(3551)] = 131834, - [SMALL_STATE(3552)] = 131877, - [SMALL_STATE(3553)] = 131932, - [SMALL_STATE(3554)] = 131987, - [SMALL_STATE(3555)] = 132044, - [SMALL_STATE(3556)] = 132099, - [SMALL_STATE(3557)] = 132154, - [SMALL_STATE(3558)] = 132197, - [SMALL_STATE(3559)] = 132252, - [SMALL_STATE(3560)] = 132307, - [SMALL_STATE(3561)] = 132362, - [SMALL_STATE(3562)] = 132419, - [SMALL_STATE(3563)] = 132474, - [SMALL_STATE(3564)] = 132531, - [SMALL_STATE(3565)] = 132586, - [SMALL_STATE(3566)] = 132641, - [SMALL_STATE(3567)] = 132696, - [SMALL_STATE(3568)] = 132753, - [SMALL_STATE(3569)] = 132808, - [SMALL_STATE(3570)] = 132863, - [SMALL_STATE(3571)] = 132918, - [SMALL_STATE(3572)] = 132975, - [SMALL_STATE(3573)] = 133030, - [SMALL_STATE(3574)] = 133085, - [SMALL_STATE(3575)] = 133142, - [SMALL_STATE(3576)] = 133197, - [SMALL_STATE(3577)] = 133252, - [SMALL_STATE(3578)] = 133309, - [SMALL_STATE(3579)] = 133364, - [SMALL_STATE(3580)] = 133419, - [SMALL_STATE(3581)] = 133476, - [SMALL_STATE(3582)] = 133531, - [SMALL_STATE(3583)] = 133588, + [SMALL_STATE(3546)] = 131573, + [SMALL_STATE(3547)] = 131628, + [SMALL_STATE(3548)] = 131683, + [SMALL_STATE(3549)] = 131726, + [SMALL_STATE(3550)] = 131781, + [SMALL_STATE(3551)] = 131836, + [SMALL_STATE(3552)] = 131891, + [SMALL_STATE(3553)] = 131946, + [SMALL_STATE(3554)] = 132001, + [SMALL_STATE(3555)] = 132056, + [SMALL_STATE(3556)] = 132111, + [SMALL_STATE(3557)] = 132166, + [SMALL_STATE(3558)] = 132221, + [SMALL_STATE(3559)] = 132276, + [SMALL_STATE(3560)] = 132331, + [SMALL_STATE(3561)] = 132386, + [SMALL_STATE(3562)] = 132441, + [SMALL_STATE(3563)] = 132496, + [SMALL_STATE(3564)] = 132551, + [SMALL_STATE(3565)] = 132594, + [SMALL_STATE(3566)] = 132649, + [SMALL_STATE(3567)] = 132704, + [SMALL_STATE(3568)] = 132761, + [SMALL_STATE(3569)] = 132816, + [SMALL_STATE(3570)] = 132873, + [SMALL_STATE(3571)] = 132928, + [SMALL_STATE(3572)] = 132983, + [SMALL_STATE(3573)] = 133040, + [SMALL_STATE(3574)] = 133097, + [SMALL_STATE(3575)] = 133152, + [SMALL_STATE(3576)] = 133209, + [SMALL_STATE(3577)] = 133264, + [SMALL_STATE(3578)] = 133319, + [SMALL_STATE(3579)] = 133362, + [SMALL_STATE(3580)] = 133417, + [SMALL_STATE(3581)] = 133474, + [SMALL_STATE(3582)] = 133529, + [SMALL_STATE(3583)] = 133586, [SMALL_STATE(3584)] = 133643, [SMALL_STATE(3585)] = 133698, - [SMALL_STATE(3586)] = 133755, - [SMALL_STATE(3587)] = 133812, + [SMALL_STATE(3586)] = 133753, + [SMALL_STATE(3587)] = 133810, [SMALL_STATE(3588)] = 133867, [SMALL_STATE(3589)] = 133922, [SMALL_STATE(3590)] = 133977, [SMALL_STATE(3591)] = 134034, [SMALL_STATE(3592)] = 134089, [SMALL_STATE(3593)] = 134144, - [SMALL_STATE(3594)] = 134199, - [SMALL_STATE(3595)] = 134242, - [SMALL_STATE(3596)] = 134285, - [SMALL_STATE(3597)] = 134325, - [SMALL_STATE(3598)] = 134360, - [SMALL_STATE(3599)] = 134407, - [SMALL_STATE(3600)] = 134454, - [SMALL_STATE(3601)] = 134501, - [SMALL_STATE(3602)] = 134536, - [SMALL_STATE(3603)] = 134571, - [SMALL_STATE(3604)] = 134605, - [SMALL_STATE(3605)] = 134639, - [SMALL_STATE(3606)] = 134672, - [SMALL_STATE(3607)] = 134705, - [SMALL_STATE(3608)] = 134738, - [SMALL_STATE(3609)] = 134779, - [SMALL_STATE(3610)] = 134812, - [SMALL_STATE(3611)] = 134845, - [SMALL_STATE(3612)] = 134878, - [SMALL_STATE(3613)] = 134911, - [SMALL_STATE(3614)] = 134944, - [SMALL_STATE(3615)] = 134977, - [SMALL_STATE(3616)] = 135010, - [SMALL_STATE(3617)] = 135043, - [SMALL_STATE(3618)] = 135076, - [SMALL_STATE(3619)] = 135109, - [SMALL_STATE(3620)] = 135142, - [SMALL_STATE(3621)] = 135175, - [SMALL_STATE(3622)] = 135208, - [SMALL_STATE(3623)] = 135241, - [SMALL_STATE(3624)] = 135274, - [SMALL_STATE(3625)] = 135307, - [SMALL_STATE(3626)] = 135340, - [SMALL_STATE(3627)] = 135373, - [SMALL_STATE(3628)] = 135406, - [SMALL_STATE(3629)] = 135439, - [SMALL_STATE(3630)] = 135472, - [SMALL_STATE(3631)] = 135505, - [SMALL_STATE(3632)] = 135538, - [SMALL_STATE(3633)] = 135571, - [SMALL_STATE(3634)] = 135604, - [SMALL_STATE(3635)] = 135637, - [SMALL_STATE(3636)] = 135670, - [SMALL_STATE(3637)] = 135703, - [SMALL_STATE(3638)] = 135736, - [SMALL_STATE(3639)] = 135769, - [SMALL_STATE(3640)] = 135802, - [SMALL_STATE(3641)] = 135856, - [SMALL_STATE(3642)] = 135910, - [SMALL_STATE(3643)] = 135970, - [SMALL_STATE(3644)] = 136024, - [SMALL_STATE(3645)] = 136062, - [SMALL_STATE(3646)] = 136116, - [SMALL_STATE(3647)] = 136170, - [SMALL_STATE(3648)] = 136230, - [SMALL_STATE(3649)] = 136273, - [SMALL_STATE(3650)] = 136304, - [SMALL_STATE(3651)] = 136335, - [SMALL_STATE(3652)] = 136366, - [SMALL_STATE(3653)] = 136397, - [SMALL_STATE(3654)] = 136428, - [SMALL_STATE(3655)] = 136459, - [SMALL_STATE(3656)] = 136490, - [SMALL_STATE(3657)] = 136525, - [SMALL_STATE(3658)] = 136556, - [SMALL_STATE(3659)] = 136587, - [SMALL_STATE(3660)] = 136618, - [SMALL_STATE(3661)] = 136649, - [SMALL_STATE(3662)] = 136680, - [SMALL_STATE(3663)] = 136715, - [SMALL_STATE(3664)] = 136748, - [SMALL_STATE(3665)] = 136781, - [SMALL_STATE(3666)] = 136824, - [SMALL_STATE(3667)] = 136855, - [SMALL_STATE(3668)] = 136886, - [SMALL_STATE(3669)] = 136917, - [SMALL_STATE(3670)] = 136948, - [SMALL_STATE(3671)] = 136979, - [SMALL_STATE(3672)] = 137010, - [SMALL_STATE(3673)] = 137053, - [SMALL_STATE(3674)] = 137084, - [SMALL_STATE(3675)] = 137115, - [SMALL_STATE(3676)] = 137146, - [SMALL_STATE(3677)] = 137178, - [SMALL_STATE(3678)] = 137208, - [SMALL_STATE(3679)] = 137240, - [SMALL_STATE(3680)] = 137270, - [SMALL_STATE(3681)] = 137302, - [SMALL_STATE(3682)] = 137333, - [SMALL_STATE(3683)] = 137362, - [SMALL_STATE(3684)] = 137391, - [SMALL_STATE(3685)] = 137420, - [SMALL_STATE(3686)] = 137455, - [SMALL_STATE(3687)] = 137494, - [SMALL_STATE(3688)] = 137533, - [SMALL_STATE(3689)] = 137562, - [SMALL_STATE(3690)] = 137591, - [SMALL_STATE(3691)] = 137620, - [SMALL_STATE(3692)] = 137659, - [SMALL_STATE(3693)] = 137690, - [SMALL_STATE(3694)] = 137721, - [SMALL_STATE(3695)] = 137760, - [SMALL_STATE(3696)] = 137799, - [SMALL_STATE(3697)] = 137836, - [SMALL_STATE(3698)] = 137875, - [SMALL_STATE(3699)] = 137914, - [SMALL_STATE(3700)] = 137947, - [SMALL_STATE(3701)] = 137986, - [SMALL_STATE(3702)] = 138021, - [SMALL_STATE(3703)] = 138048, - [SMALL_STATE(3704)] = 138085, - [SMALL_STATE(3705)] = 138124, - [SMALL_STATE(3706)] = 138155, - [SMALL_STATE(3707)] = 138194, - [SMALL_STATE(3708)] = 138233, - [SMALL_STATE(3709)] = 138268, - [SMALL_STATE(3710)] = 138295, - [SMALL_STATE(3711)] = 138324, - [SMALL_STATE(3712)] = 138351, - [SMALL_STATE(3713)] = 138378, - [SMALL_STATE(3714)] = 138407, - [SMALL_STATE(3715)] = 138434, - [SMALL_STATE(3716)] = 138473, - [SMALL_STATE(3717)] = 138510, - [SMALL_STATE(3718)] = 138539, - [SMALL_STATE(3719)] = 138568, - [SMALL_STATE(3720)] = 138597, - [SMALL_STATE(3721)] = 138626, - [SMALL_STATE(3722)] = 138653, - [SMALL_STATE(3723)] = 138682, - [SMALL_STATE(3724)] = 138719, - [SMALL_STATE(3725)] = 138758, - [SMALL_STATE(3726)] = 138787, - [SMALL_STATE(3727)] = 138816, - [SMALL_STATE(3728)] = 138845, - [SMALL_STATE(3729)] = 138874, + [SMALL_STATE(3594)] = 134201, + [SMALL_STATE(3595)] = 134244, + [SMALL_STATE(3596)] = 134299, + [SMALL_STATE(3597)] = 134354, + [SMALL_STATE(3598)] = 134409, + [SMALL_STATE(3599)] = 134449, + [SMALL_STATE(3600)] = 134484, + [SMALL_STATE(3601)] = 134519, + [SMALL_STATE(3602)] = 134566, + [SMALL_STATE(3603)] = 134613, + [SMALL_STATE(3604)] = 134660, + [SMALL_STATE(3605)] = 134695, + [SMALL_STATE(3606)] = 134729, + [SMALL_STATE(3607)] = 134763, + [SMALL_STATE(3608)] = 134796, + [SMALL_STATE(3609)] = 134829, + [SMALL_STATE(3610)] = 134862, + [SMALL_STATE(3611)] = 134895, + [SMALL_STATE(3612)] = 134928, + [SMALL_STATE(3613)] = 134961, + [SMALL_STATE(3614)] = 134994, + [SMALL_STATE(3615)] = 135027, + [SMALL_STATE(3616)] = 135060, + [SMALL_STATE(3617)] = 135093, + [SMALL_STATE(3618)] = 135126, + [SMALL_STATE(3619)] = 135159, + [SMALL_STATE(3620)] = 135192, + [SMALL_STATE(3621)] = 135225, + [SMALL_STATE(3622)] = 135266, + [SMALL_STATE(3623)] = 135299, + [SMALL_STATE(3624)] = 135332, + [SMALL_STATE(3625)] = 135365, + [SMALL_STATE(3626)] = 135398, + [SMALL_STATE(3627)] = 135431, + [SMALL_STATE(3628)] = 135464, + [SMALL_STATE(3629)] = 135497, + [SMALL_STATE(3630)] = 135530, + [SMALL_STATE(3631)] = 135563, + [SMALL_STATE(3632)] = 135596, + [SMALL_STATE(3633)] = 135629, + [SMALL_STATE(3634)] = 135662, + [SMALL_STATE(3635)] = 135695, + [SMALL_STATE(3636)] = 135728, + [SMALL_STATE(3637)] = 135761, + [SMALL_STATE(3638)] = 135794, + [SMALL_STATE(3639)] = 135827, + [SMALL_STATE(3640)] = 135860, + [SMALL_STATE(3641)] = 135893, + [SMALL_STATE(3642)] = 135926, + [SMALL_STATE(3643)] = 135980, + [SMALL_STATE(3644)] = 136034, + [SMALL_STATE(3645)] = 136094, + [SMALL_STATE(3646)] = 136154, + [SMALL_STATE(3647)] = 136208, + [SMALL_STATE(3648)] = 136246, + [SMALL_STATE(3649)] = 136300, + [SMALL_STATE(3650)] = 136354, + [SMALL_STATE(3651)] = 136397, + [SMALL_STATE(3652)] = 136428, + [SMALL_STATE(3653)] = 136461, + [SMALL_STATE(3654)] = 136492, + [SMALL_STATE(3655)] = 136523, + [SMALL_STATE(3656)] = 136554, + [SMALL_STATE(3657)] = 136585, + [SMALL_STATE(3658)] = 136616, + [SMALL_STATE(3659)] = 136647, + [SMALL_STATE(3660)] = 136682, + [SMALL_STATE(3661)] = 136713, + [SMALL_STATE(3662)] = 136744, + [SMALL_STATE(3663)] = 136775, + [SMALL_STATE(3664)] = 136806, + [SMALL_STATE(3665)] = 136837, + [SMALL_STATE(3666)] = 136868, + [SMALL_STATE(3667)] = 136899, + [SMALL_STATE(3668)] = 136934, + [SMALL_STATE(3669)] = 136965, + [SMALL_STATE(3670)] = 136996, + [SMALL_STATE(3671)] = 137027, + [SMALL_STATE(3672)] = 137070, + [SMALL_STATE(3673)] = 137101, + [SMALL_STATE(3674)] = 137132, + [SMALL_STATE(3675)] = 137175, + [SMALL_STATE(3676)] = 137206, + [SMALL_STATE(3677)] = 137237, + [SMALL_STATE(3678)] = 137270, + [SMALL_STATE(3679)] = 137300, + [SMALL_STATE(3680)] = 137332, + [SMALL_STATE(3681)] = 137364, + [SMALL_STATE(3682)] = 137396, + [SMALL_STATE(3683)] = 137426, + [SMALL_STATE(3684)] = 137453, + [SMALL_STATE(3685)] = 137490, + [SMALL_STATE(3686)] = 137521, + [SMALL_STATE(3687)] = 137560, + [SMALL_STATE(3688)] = 137599, + [SMALL_STATE(3689)] = 137638, + [SMALL_STATE(3690)] = 137677, + [SMALL_STATE(3691)] = 137716, + [SMALL_STATE(3692)] = 137753, + [SMALL_STATE(3693)] = 137782, + [SMALL_STATE(3694)] = 137819, + [SMALL_STATE(3695)] = 137848, + [SMALL_STATE(3696)] = 137877, + [SMALL_STATE(3697)] = 137916, + [SMALL_STATE(3698)] = 137945, + [SMALL_STATE(3699)] = 137980, + [SMALL_STATE(3700)] = 138013, + [SMALL_STATE(3701)] = 138044, + [SMALL_STATE(3702)] = 138075, + [SMALL_STATE(3703)] = 138106, + [SMALL_STATE(3704)] = 138135, + [SMALL_STATE(3705)] = 138164, + [SMALL_STATE(3706)] = 138193, + [SMALL_STATE(3707)] = 138222, + [SMALL_STATE(3708)] = 138251, + [SMALL_STATE(3709)] = 138286, + [SMALL_STATE(3710)] = 138315, + [SMALL_STATE(3711)] = 138344, + [SMALL_STATE(3712)] = 138371, + [SMALL_STATE(3713)] = 138400, + [SMALL_STATE(3714)] = 138429, + [SMALL_STATE(3715)] = 138458, + [SMALL_STATE(3716)] = 138487, + [SMALL_STATE(3717)] = 138516, + [SMALL_STATE(3718)] = 138547, + [SMALL_STATE(3719)] = 138576, + [SMALL_STATE(3720)] = 138605, + [SMALL_STATE(3721)] = 138634, + [SMALL_STATE(3722)] = 138661, + [SMALL_STATE(3723)] = 138688, + [SMALL_STATE(3724)] = 138717, + [SMALL_STATE(3725)] = 138746, + [SMALL_STATE(3726)] = 138775, + [SMALL_STATE(3727)] = 138802, + [SMALL_STATE(3728)] = 138839, + [SMALL_STATE(3729)] = 138866, [SMALL_STATE(3730)] = 138903, - [SMALL_STATE(3731)] = 138932, - [SMALL_STATE(3732)] = 138967, - [SMALL_STATE(3733)] = 138996, - [SMALL_STATE(3734)] = 139035, - [SMALL_STATE(3735)] = 139066, - [SMALL_STATE(3736)] = 139095, - [SMALL_STATE(3737)] = 139124, - [SMALL_STATE(3738)] = 139153, - [SMALL_STATE(3739)] = 139182, - [SMALL_STATE(3740)] = 139211, - [SMALL_STATE(3741)] = 139240, - [SMALL_STATE(3742)] = 139269, - [SMALL_STATE(3743)] = 139298, - [SMALL_STATE(3744)] = 139327, - [SMALL_STATE(3745)] = 139356, - [SMALL_STATE(3746)] = 139385, - [SMALL_STATE(3747)] = 139414, - [SMALL_STATE(3748)] = 139443, - [SMALL_STATE(3749)] = 139472, - [SMALL_STATE(3750)] = 139501, - [SMALL_STATE(3751)] = 139530, - [SMALL_STATE(3752)] = 139569, - [SMALL_STATE(3753)] = 139598, - [SMALL_STATE(3754)] = 139627, - [SMALL_STATE(3755)] = 139656, - [SMALL_STATE(3756)] = 139685, - [SMALL_STATE(3757)] = 139714, - [SMALL_STATE(3758)] = 139751, - [SMALL_STATE(3759)] = 139780, - [SMALL_STATE(3760)] = 139809, - [SMALL_STATE(3761)] = 139848, - [SMALL_STATE(3762)] = 139887, - [SMALL_STATE(3763)] = 139926, - [SMALL_STATE(3764)] = 139955, - [SMALL_STATE(3765)] = 139984, - [SMALL_STATE(3766)] = 140013, - [SMALL_STATE(3767)] = 140050, - [SMALL_STATE(3768)] = 140079, - [SMALL_STATE(3769)] = 140108, - [SMALL_STATE(3770)] = 140137, - [SMALL_STATE(3771)] = 140164, - [SMALL_STATE(3772)] = 140191, - [SMALL_STATE(3773)] = 140220, - [SMALL_STATE(3774)] = 140249, - [SMALL_STATE(3775)] = 140278, - [SMALL_STATE(3776)] = 140307, - [SMALL_STATE(3777)] = 140336, - [SMALL_STATE(3778)] = 140365, - [SMALL_STATE(3779)] = 140394, - [SMALL_STATE(3780)] = 140423, - [SMALL_STATE(3781)] = 140452, - [SMALL_STATE(3782)] = 140481, - [SMALL_STATE(3783)] = 140508, - [SMALL_STATE(3784)] = 140543, - [SMALL_STATE(3785)] = 140578, - [SMALL_STATE(3786)] = 140613, - [SMALL_STATE(3787)] = 140642, - [SMALL_STATE(3788)] = 140671, - [SMALL_STATE(3789)] = 140700, - [SMALL_STATE(3790)] = 140729, - [SMALL_STATE(3791)] = 140758, - [SMALL_STATE(3792)] = 140787, - [SMALL_STATE(3793)] = 140835, - [SMALL_STATE(3794)] = 140883, - [SMALL_STATE(3795)] = 140931, - [SMALL_STATE(3796)] = 140979, - [SMALL_STATE(3797)] = 141027, - [SMALL_STATE(3798)] = 141075, - [SMALL_STATE(3799)] = 141123, - [SMALL_STATE(3800)] = 141171, - [SMALL_STATE(3801)] = 141219, - [SMALL_STATE(3802)] = 141253, - [SMALL_STATE(3803)] = 141297, - [SMALL_STATE(3804)] = 141345, - [SMALL_STATE(3805)] = 141393, - [SMALL_STATE(3806)] = 141437, - [SMALL_STATE(3807)] = 141485, - [SMALL_STATE(3808)] = 141533, - [SMALL_STATE(3809)] = 141577, - [SMALL_STATE(3810)] = 141625, - [SMALL_STATE(3811)] = 141673, - [SMALL_STATE(3812)] = 141721, - [SMALL_STATE(3813)] = 141769, - [SMALL_STATE(3814)] = 141817, - [SMALL_STATE(3815)] = 141865, - [SMALL_STATE(3816)] = 141913, - [SMALL_STATE(3817)] = 141947, - [SMALL_STATE(3818)] = 141981, + [SMALL_STATE(3731)] = 138942, + [SMALL_STATE(3732)] = 138971, + [SMALL_STATE(3733)] = 139010, + [SMALL_STATE(3734)] = 139047, + [SMALL_STATE(3735)] = 139074, + [SMALL_STATE(3736)] = 139113, + [SMALL_STATE(3737)] = 139152, + [SMALL_STATE(3738)] = 139181, + [SMALL_STATE(3739)] = 139210, + [SMALL_STATE(3740)] = 139249, + [SMALL_STATE(3741)] = 139278, + [SMALL_STATE(3742)] = 139307, + [SMALL_STATE(3743)] = 139336, + [SMALL_STATE(3744)] = 139365, + [SMALL_STATE(3745)] = 139394, + [SMALL_STATE(3746)] = 139423, + [SMALL_STATE(3747)] = 139452, + [SMALL_STATE(3748)] = 139481, + [SMALL_STATE(3749)] = 139510, + [SMALL_STATE(3750)] = 139539, + [SMALL_STATE(3751)] = 139568, + [SMALL_STATE(3752)] = 139597, + [SMALL_STATE(3753)] = 139626, + [SMALL_STATE(3754)] = 139655, + [SMALL_STATE(3755)] = 139694, + [SMALL_STATE(3756)] = 139733, + [SMALL_STATE(3757)] = 139762, + [SMALL_STATE(3758)] = 139791, + [SMALL_STATE(3759)] = 139820, + [SMALL_STATE(3760)] = 139849, + [SMALL_STATE(3761)] = 139888, + [SMALL_STATE(3762)] = 139915, + [SMALL_STATE(3763)] = 139950, + [SMALL_STATE(3764)] = 139985, + [SMALL_STATE(3765)] = 140014, + [SMALL_STATE(3766)] = 140041, + [SMALL_STATE(3767)] = 140080, + [SMALL_STATE(3768)] = 140109, + [SMALL_STATE(3769)] = 140138, + [SMALL_STATE(3770)] = 140167, + [SMALL_STATE(3771)] = 140202, + [SMALL_STATE(3772)] = 140231, + [SMALL_STATE(3773)] = 140266, + [SMALL_STATE(3774)] = 140295, + [SMALL_STATE(3775)] = 140324, + [SMALL_STATE(3776)] = 140353, + [SMALL_STATE(3777)] = 140382, + [SMALL_STATE(3778)] = 140411, + [SMALL_STATE(3779)] = 140440, + [SMALL_STATE(3780)] = 140469, + [SMALL_STATE(3781)] = 140498, + [SMALL_STATE(3782)] = 140527, + [SMALL_STATE(3783)] = 140556, + [SMALL_STATE(3784)] = 140585, + [SMALL_STATE(3785)] = 140614, + [SMALL_STATE(3786)] = 140643, + [SMALL_STATE(3787)] = 140672, + [SMALL_STATE(3788)] = 140707, + [SMALL_STATE(3789)] = 140736, + [SMALL_STATE(3790)] = 140765, + [SMALL_STATE(3791)] = 140804, + [SMALL_STATE(3792)] = 140843, + [SMALL_STATE(3793)] = 140882, + [SMALL_STATE(3794)] = 140911, + [SMALL_STATE(3795)] = 140959, + [SMALL_STATE(3796)] = 141007, + [SMALL_STATE(3797)] = 141055, + [SMALL_STATE(3798)] = 141103, + [SMALL_STATE(3799)] = 141135, + [SMALL_STATE(3800)] = 141183, + [SMALL_STATE(3801)] = 141231, + [SMALL_STATE(3802)] = 141279, + [SMALL_STATE(3803)] = 141313, + [SMALL_STATE(3804)] = 141361, + [SMALL_STATE(3805)] = 141409, + [SMALL_STATE(3806)] = 141443, + [SMALL_STATE(3807)] = 141487, + [SMALL_STATE(3808)] = 141535, + [SMALL_STATE(3809)] = 141583, + [SMALL_STATE(3810)] = 141631, + [SMALL_STATE(3811)] = 141679, + [SMALL_STATE(3812)] = 141727, + [SMALL_STATE(3813)] = 141775, + [SMALL_STATE(3814)] = 141823, + [SMALL_STATE(3815)] = 141867, + [SMALL_STATE(3816)] = 141911, + [SMALL_STATE(3817)] = 141945, + [SMALL_STATE(3818)] = 141993, [SMALL_STATE(3819)] = 142029, [SMALL_STATE(3820)] = 142077, - [SMALL_STATE(3821)] = 142109, - [SMALL_STATE(3822)] = 142143, - [SMALL_STATE(3823)] = 142187, - [SMALL_STATE(3824)] = 142235, - [SMALL_STATE(3825)] = 142269, - [SMALL_STATE(3826)] = 142317, - [SMALL_STATE(3827)] = 142365, - [SMALL_STATE(3828)] = 142409, - [SMALL_STATE(3829)] = 142457, - [SMALL_STATE(3830)] = 142491, - [SMALL_STATE(3831)] = 142527, - [SMALL_STATE(3832)] = 142575, - [SMALL_STATE(3833)] = 142623, - [SMALL_STATE(3834)] = 142664, - [SMALL_STATE(3835)] = 142689, - [SMALL_STATE(3836)] = 142730, - [SMALL_STATE(3837)] = 142757, - [SMALL_STATE(3838)] = 142798, - [SMALL_STATE(3839)] = 142839, - [SMALL_STATE(3840)] = 142880, - [SMALL_STATE(3841)] = 142907, - [SMALL_STATE(3842)] = 142934, - [SMALL_STATE(3843)] = 142975, - [SMALL_STATE(3844)] = 143002, - [SMALL_STATE(3845)] = 143043, - [SMALL_STATE(3846)] = 143070, - [SMALL_STATE(3847)] = 143097, - [SMALL_STATE(3848)] = 143124, - [SMALL_STATE(3849)] = 143151, - [SMALL_STATE(3850)] = 143192, - [SMALL_STATE(3851)] = 143237, - [SMALL_STATE(3852)] = 143262, - [SMALL_STATE(3853)] = 143287, - [SMALL_STATE(3854)] = 143314, - [SMALL_STATE(3855)] = 143339, - [SMALL_STATE(3856)] = 143364, - [SMALL_STATE(3857)] = 143391, - [SMALL_STATE(3858)] = 143432, - [SMALL_STATE(3859)] = 143457, - [SMALL_STATE(3860)] = 143490, - [SMALL_STATE(3861)] = 143515, - [SMALL_STATE(3862)] = 143556, - [SMALL_STATE(3863)] = 143581, - [SMALL_STATE(3864)] = 143622, - [SMALL_STATE(3865)] = 143647, - [SMALL_STATE(3866)] = 143688, - [SMALL_STATE(3867)] = 143717, - [SMALL_STATE(3868)] = 143742, - [SMALL_STATE(3869)] = 143771, - [SMALL_STATE(3870)] = 143796, - [SMALL_STATE(3871)] = 143821, - [SMALL_STATE(3872)] = 143846, - [SMALL_STATE(3873)] = 143887, - [SMALL_STATE(3874)] = 143912, - [SMALL_STATE(3875)] = 143939, - [SMALL_STATE(3876)] = 143964, - [SMALL_STATE(3877)] = 143989, - [SMALL_STATE(3878)] = 144016, - [SMALL_STATE(3879)] = 144061, - [SMALL_STATE(3880)] = 144088, - [SMALL_STATE(3881)] = 144113, - [SMALL_STATE(3882)] = 144138, - [SMALL_STATE(3883)] = 144169, - [SMALL_STATE(3884)] = 144208, - [SMALL_STATE(3885)] = 144249, - [SMALL_STATE(3886)] = 144274, - [SMALL_STATE(3887)] = 144299, - [SMALL_STATE(3888)] = 144324, - [SMALL_STATE(3889)] = 144349, - [SMALL_STATE(3890)] = 144374, - [SMALL_STATE(3891)] = 144399, - [SMALL_STATE(3892)] = 144424, - [SMALL_STATE(3893)] = 144465, - [SMALL_STATE(3894)] = 144498, - [SMALL_STATE(3895)] = 144523, - [SMALL_STATE(3896)] = 144550, - [SMALL_STATE(3897)] = 144577, - [SMALL_STATE(3898)] = 144602, - [SMALL_STATE(3899)] = 144629, - [SMALL_STATE(3900)] = 144656, - [SMALL_STATE(3901)] = 144697, - [SMALL_STATE(3902)] = 144722, - [SMALL_STATE(3903)] = 144747, - [SMALL_STATE(3904)] = 144772, - [SMALL_STATE(3905)] = 144803, - [SMALL_STATE(3906)] = 144828, - [SMALL_STATE(3907)] = 144853, - [SMALL_STATE(3908)] = 144878, - [SMALL_STATE(3909)] = 144903, - [SMALL_STATE(3910)] = 144944, - [SMALL_STATE(3911)] = 144982, - [SMALL_STATE(3912)] = 145020, - [SMALL_STATE(3913)] = 145064, - [SMALL_STATE(3914)] = 145106, - [SMALL_STATE(3915)] = 145148, - [SMALL_STATE(3916)] = 145190, - [SMALL_STATE(3917)] = 145232, - [SMALL_STATE(3918)] = 145270, - [SMALL_STATE(3919)] = 145308, - [SMALL_STATE(3920)] = 145346, - [SMALL_STATE(3921)] = 145382, - [SMALL_STATE(3922)] = 145416, - [SMALL_STATE(3923)] = 145458, - [SMALL_STATE(3924)] = 145500, - [SMALL_STATE(3925)] = 145536, - [SMALL_STATE(3926)] = 145562, - [SMALL_STATE(3927)] = 145596, - [SMALL_STATE(3928)] = 145634, - [SMALL_STATE(3929)] = 145676, - [SMALL_STATE(3930)] = 145710, - [SMALL_STATE(3931)] = 145752, - [SMALL_STATE(3932)] = 145794, - [SMALL_STATE(3933)] = 145836, - [SMALL_STATE(3934)] = 145878, - [SMALL_STATE(3935)] = 145920, - [SMALL_STATE(3936)] = 145962, - [SMALL_STATE(3937)] = 146006, - [SMALL_STATE(3938)] = 146048, - [SMALL_STATE(3939)] = 146076, - [SMALL_STATE(3940)] = 146118, - [SMALL_STATE(3941)] = 146156, - [SMALL_STATE(3942)] = 146198, - [SMALL_STATE(3943)] = 146228, - [SMALL_STATE(3944)] = 146272, - [SMALL_STATE(3945)] = 146314, - [SMALL_STATE(3946)] = 146356, - [SMALL_STATE(3947)] = 146382, - [SMALL_STATE(3948)] = 146424, - [SMALL_STATE(3949)] = 146462, - [SMALL_STATE(3950)] = 146504, - [SMALL_STATE(3951)] = 146542, - [SMALL_STATE(3952)] = 146570, - [SMALL_STATE(3953)] = 146612, - [SMALL_STATE(3954)] = 146654, - [SMALL_STATE(3955)] = 146698, - [SMALL_STATE(3956)] = 146740, - [SMALL_STATE(3957)] = 146782, - [SMALL_STATE(3958)] = 146810, - [SMALL_STATE(3959)] = 146848, - [SMALL_STATE(3960)] = 146890, - [SMALL_STATE(3961)] = 146932, - [SMALL_STATE(3962)] = 146966, - [SMALL_STATE(3963)] = 147010, - [SMALL_STATE(3964)] = 147046, - [SMALL_STATE(3965)] = 147088, - [SMALL_STATE(3966)] = 147122, - [SMALL_STATE(3967)] = 147145, - [SMALL_STATE(3968)] = 147174, - [SMALL_STATE(3969)] = 147199, - [SMALL_STATE(3970)] = 147224, - [SMALL_STATE(3971)] = 147249, - [SMALL_STATE(3972)] = 147274, - [SMALL_STATE(3973)] = 147299, - [SMALL_STATE(3974)] = 147328, - [SMALL_STATE(3975)] = 147357, - [SMALL_STATE(3976)] = 147388, - [SMALL_STATE(3977)] = 147413, - [SMALL_STATE(3978)] = 147438, - [SMALL_STATE(3979)] = 147463, - [SMALL_STATE(3980)] = 147486, - [SMALL_STATE(3981)] = 147509, - [SMALL_STATE(3982)] = 147536, - [SMALL_STATE(3983)] = 147565, - [SMALL_STATE(3984)] = 147588, - [SMALL_STATE(3985)] = 147613, - [SMALL_STATE(3986)] = 147638, - [SMALL_STATE(3987)] = 147663, - [SMALL_STATE(3988)] = 147690, - [SMALL_STATE(3989)] = 147715, - [SMALL_STATE(3990)] = 147740, - [SMALL_STATE(3991)] = 147767, - [SMALL_STATE(3992)] = 147792, - [SMALL_STATE(3993)] = 147817, - [SMALL_STATE(3994)] = 147842, - [SMALL_STATE(3995)] = 147871, - [SMALL_STATE(3996)] = 147900, - [SMALL_STATE(3997)] = 147925, - [SMALL_STATE(3998)] = 147952, - [SMALL_STATE(3999)] = 147977, - [SMALL_STATE(4000)] = 148002, - [SMALL_STATE(4001)] = 148027, - [SMALL_STATE(4002)] = 148050, - [SMALL_STATE(4003)] = 148075, - [SMALL_STATE(4004)] = 148118, - [SMALL_STATE(4005)] = 148143, - [SMALL_STATE(4006)] = 148172, - [SMALL_STATE(4007)] = 148197, - [SMALL_STATE(4008)] = 148220, - [SMALL_STATE(4009)] = 148243, - [SMALL_STATE(4010)] = 148266, - [SMALL_STATE(4011)] = 148291, - [SMALL_STATE(4012)] = 148316, - [SMALL_STATE(4013)] = 148341, - [SMALL_STATE(4014)] = 148366, - [SMALL_STATE(4015)] = 148393, - [SMALL_STATE(4016)] = 148418, - [SMALL_STATE(4017)] = 148443, - [SMALL_STATE(4018)] = 148468, - [SMALL_STATE(4019)] = 148493, - [SMALL_STATE(4020)] = 148522, - [SMALL_STATE(4021)] = 148549, - [SMALL_STATE(4022)] = 148576, - [SMALL_STATE(4023)] = 148601, - [SMALL_STATE(4024)] = 148626, - [SMALL_STATE(4025)] = 148651, - [SMALL_STATE(4026)] = 148676, - [SMALL_STATE(4027)] = 148701, - [SMALL_STATE(4028)] = 148724, - [SMALL_STATE(4029)] = 148749, - [SMALL_STATE(4030)] = 148774, - [SMALL_STATE(4031)] = 148812, - [SMALL_STATE(4032)] = 148840, - [SMALL_STATE(4033)] = 148880, - [SMALL_STATE(4034)] = 148904, - [SMALL_STATE(4035)] = 148944, - [SMALL_STATE(4036)] = 148972, - [SMALL_STATE(4037)] = 149012, - [SMALL_STATE(4038)] = 149048, - [SMALL_STATE(4039)] = 149088, - [SMALL_STATE(4040)] = 149116, - [SMALL_STATE(4041)] = 149156, - [SMALL_STATE(4042)] = 149196, - [SMALL_STATE(4043)] = 149232, - [SMALL_STATE(4044)] = 149266, - [SMALL_STATE(4045)] = 149290, - [SMALL_STATE(4046)] = 149326, - [SMALL_STATE(4047)] = 149366, - [SMALL_STATE(4048)] = 149406, - [SMALL_STATE(4049)] = 149440, - [SMALL_STATE(4050)] = 149480, - [SMALL_STATE(4051)] = 149502, - [SMALL_STATE(4052)] = 149528, - [SMALL_STATE(4053)] = 149568, - [SMALL_STATE(4054)] = 149592, - [SMALL_STATE(4055)] = 149632, - [SMALL_STATE(4056)] = 149658, - [SMALL_STATE(4057)] = 149698, - [SMALL_STATE(4058)] = 149734, - [SMALL_STATE(4059)] = 149772, - [SMALL_STATE(4060)] = 149812, - [SMALL_STATE(4061)] = 149852, - [SMALL_STATE(4062)] = 149892, - [SMALL_STATE(4063)] = 149932, - [SMALL_STATE(4064)] = 149972, - [SMALL_STATE(4065)] = 149998, - [SMALL_STATE(4066)] = 150038, - [SMALL_STATE(4067)] = 150078, - [SMALL_STATE(4068)] = 150100, - [SMALL_STATE(4069)] = 150131, - [SMALL_STATE(4070)] = 150158, - [SMALL_STATE(4071)] = 150179, - [SMALL_STATE(4072)] = 150210, - [SMALL_STATE(4073)] = 150241, - [SMALL_STATE(4074)] = 150278, - [SMALL_STATE(4075)] = 150309, - [SMALL_STATE(4076)] = 150346, - [SMALL_STATE(4077)] = 150377, - [SMALL_STATE(4078)] = 150410, - [SMALL_STATE(4079)] = 150431, - [SMALL_STATE(4080)] = 150452, - [SMALL_STATE(4081)] = 150483, - [SMALL_STATE(4082)] = 150514, - [SMALL_STATE(4083)] = 150543, - [SMALL_STATE(4084)] = 150576, - [SMALL_STATE(4085)] = 150609, - [SMALL_STATE(4086)] = 150642, - [SMALL_STATE(4087)] = 150679, - [SMALL_STATE(4088)] = 150712, + [SMALL_STATE(3821)] = 142125, + [SMALL_STATE(3822)] = 142169, + [SMALL_STATE(3823)] = 142217, + [SMALL_STATE(3824)] = 142265, + [SMALL_STATE(3825)] = 142309, + [SMALL_STATE(3826)] = 142357, + [SMALL_STATE(3827)] = 142405, + [SMALL_STATE(3828)] = 142439, + [SMALL_STATE(3829)] = 142487, + [SMALL_STATE(3830)] = 142535, + [SMALL_STATE(3831)] = 142569, + [SMALL_STATE(3832)] = 142617, + [SMALL_STATE(3833)] = 142665, + [SMALL_STATE(3834)] = 142713, + [SMALL_STATE(3835)] = 142747, + [SMALL_STATE(3836)] = 142772, + [SMALL_STATE(3837)] = 142805, + [SMALL_STATE(3838)] = 142846, + [SMALL_STATE(3839)] = 142871, + [SMALL_STATE(3840)] = 142912, + [SMALL_STATE(3841)] = 142957, + [SMALL_STATE(3842)] = 142982, + [SMALL_STATE(3843)] = 143023, + [SMALL_STATE(3844)] = 143048, + [SMALL_STATE(3845)] = 143073, + [SMALL_STATE(3846)] = 143098, + [SMALL_STATE(3847)] = 143139, + [SMALL_STATE(3848)] = 143166, + [SMALL_STATE(3849)] = 143195, + [SMALL_STATE(3850)] = 143222, + [SMALL_STATE(3851)] = 143249, + [SMALL_STATE(3852)] = 143290, + [SMALL_STATE(3853)] = 143317, + [SMALL_STATE(3854)] = 143358, + [SMALL_STATE(3855)] = 143399, + [SMALL_STATE(3856)] = 143424, + [SMALL_STATE(3857)] = 143451, + [SMALL_STATE(3858)] = 143482, + [SMALL_STATE(3859)] = 143507, + [SMALL_STATE(3860)] = 143534, + [SMALL_STATE(3861)] = 143561, + [SMALL_STATE(3862)] = 143586, + [SMALL_STATE(3863)] = 143627, + [SMALL_STATE(3864)] = 143652, + [SMALL_STATE(3865)] = 143693, + [SMALL_STATE(3866)] = 143718, + [SMALL_STATE(3867)] = 143745, + [SMALL_STATE(3868)] = 143772, + [SMALL_STATE(3869)] = 143799, + [SMALL_STATE(3870)] = 143840, + [SMALL_STATE(3871)] = 143881, + [SMALL_STATE(3872)] = 143912, + [SMALL_STATE(3873)] = 143937, + [SMALL_STATE(3874)] = 143962, + [SMALL_STATE(3875)] = 143987, + [SMALL_STATE(3876)] = 144012, + [SMALL_STATE(3877)] = 144037, + [SMALL_STATE(3878)] = 144062, + [SMALL_STATE(3879)] = 144089, + [SMALL_STATE(3880)] = 144116, + [SMALL_STATE(3881)] = 144143, + [SMALL_STATE(3882)] = 144168, + [SMALL_STATE(3883)] = 144193, + [SMALL_STATE(3884)] = 144218, + [SMALL_STATE(3885)] = 144243, + [SMALL_STATE(3886)] = 144268, + [SMALL_STATE(3887)] = 144293, + [SMALL_STATE(3888)] = 144318, + [SMALL_STATE(3889)] = 144343, + [SMALL_STATE(3890)] = 144368, + [SMALL_STATE(3891)] = 144393, + [SMALL_STATE(3892)] = 144418, + [SMALL_STATE(3893)] = 144443, + [SMALL_STATE(3894)] = 144484, + [SMALL_STATE(3895)] = 144509, + [SMALL_STATE(3896)] = 144534, + [SMALL_STATE(3897)] = 144559, + [SMALL_STATE(3898)] = 144584, + [SMALL_STATE(3899)] = 144609, + [SMALL_STATE(3900)] = 144648, + [SMALL_STATE(3901)] = 144689, + [SMALL_STATE(3902)] = 144734, + [SMALL_STATE(3903)] = 144775, + [SMALL_STATE(3904)] = 144816, + [SMALL_STATE(3905)] = 144843, + [SMALL_STATE(3906)] = 144884, + [SMALL_STATE(3907)] = 144911, + [SMALL_STATE(3908)] = 144952, + [SMALL_STATE(3909)] = 144979, + [SMALL_STATE(3910)] = 145008, + [SMALL_STATE(3911)] = 145035, + [SMALL_STATE(3912)] = 145068, + [SMALL_STATE(3913)] = 145110, + [SMALL_STATE(3914)] = 145148, + [SMALL_STATE(3915)] = 145186, + [SMALL_STATE(3916)] = 145224, + [SMALL_STATE(3917)] = 145266, + [SMALL_STATE(3918)] = 145308, + [SMALL_STATE(3919)] = 145350, + [SMALL_STATE(3920)] = 145388, + [SMALL_STATE(3921)] = 145424, + [SMALL_STATE(3922)] = 145468, + [SMALL_STATE(3923)] = 145510, + [SMALL_STATE(3924)] = 145552, + [SMALL_STATE(3925)] = 145578, + [SMALL_STATE(3926)] = 145616, + [SMALL_STATE(3927)] = 145644, + [SMALL_STATE(3928)] = 145688, + [SMALL_STATE(3929)] = 145730, + [SMALL_STATE(3930)] = 145772, + [SMALL_STATE(3931)] = 145810, + [SMALL_STATE(3932)] = 145846, + [SMALL_STATE(3933)] = 145888, + [SMALL_STATE(3934)] = 145930, + [SMALL_STATE(3935)] = 145972, + [SMALL_STATE(3936)] = 146006, + [SMALL_STATE(3937)] = 146048, + [SMALL_STATE(3938)] = 146092, + [SMALL_STATE(3939)] = 146134, + [SMALL_STATE(3940)] = 146176, + [SMALL_STATE(3941)] = 146210, + [SMALL_STATE(3942)] = 146244, + [SMALL_STATE(3943)] = 146288, + [SMALL_STATE(3944)] = 146330, + [SMALL_STATE(3945)] = 146364, + [SMALL_STATE(3946)] = 146402, + [SMALL_STATE(3947)] = 146444, + [SMALL_STATE(3948)] = 146486, + [SMALL_STATE(3949)] = 146528, + [SMALL_STATE(3950)] = 146572, + [SMALL_STATE(3951)] = 146614, + [SMALL_STATE(3952)] = 146656, + [SMALL_STATE(3953)] = 146698, + [SMALL_STATE(3954)] = 146736, + [SMALL_STATE(3955)] = 146778, + [SMALL_STATE(3956)] = 146820, + [SMALL_STATE(3957)] = 146854, + [SMALL_STATE(3958)] = 146892, + [SMALL_STATE(3959)] = 146934, + [SMALL_STATE(3960)] = 146976, + [SMALL_STATE(3961)] = 147012, + [SMALL_STATE(3962)] = 147038, + [SMALL_STATE(3963)] = 147080, + [SMALL_STATE(3964)] = 147110, + [SMALL_STATE(3965)] = 147148, + [SMALL_STATE(3966)] = 147190, + [SMALL_STATE(3967)] = 147218, + [SMALL_STATE(3968)] = 147246, + [SMALL_STATE(3969)] = 147271, + [SMALL_STATE(3970)] = 147296, + [SMALL_STATE(3971)] = 147321, + [SMALL_STATE(3972)] = 147346, + [SMALL_STATE(3973)] = 147369, + [SMALL_STATE(3974)] = 147394, + [SMALL_STATE(3975)] = 147423, + [SMALL_STATE(3976)] = 147448, + [SMALL_STATE(3977)] = 147475, + [SMALL_STATE(3978)] = 147500, + [SMALL_STATE(3979)] = 147531, + [SMALL_STATE(3980)] = 147556, + [SMALL_STATE(3981)] = 147583, + [SMALL_STATE(3982)] = 147608, + [SMALL_STATE(3983)] = 147633, + [SMALL_STATE(3984)] = 147658, + [SMALL_STATE(3985)] = 147683, + [SMALL_STATE(3986)] = 147726, + [SMALL_STATE(3987)] = 147751, + [SMALL_STATE(3988)] = 147780, + [SMALL_STATE(3989)] = 147805, + [SMALL_STATE(3990)] = 147832, + [SMALL_STATE(3991)] = 147857, + [SMALL_STATE(3992)] = 147884, + [SMALL_STATE(3993)] = 147909, + [SMALL_STATE(3994)] = 147932, + [SMALL_STATE(3995)] = 147955, + [SMALL_STATE(3996)] = 147980, + [SMALL_STATE(3997)] = 148005, + [SMALL_STATE(3998)] = 148030, + [SMALL_STATE(3999)] = 148055, + [SMALL_STATE(4000)] = 148084, + [SMALL_STATE(4001)] = 148113, + [SMALL_STATE(4002)] = 148142, + [SMALL_STATE(4003)] = 148167, + [SMALL_STATE(4004)] = 148192, + [SMALL_STATE(4005)] = 148215, + [SMALL_STATE(4006)] = 148242, + [SMALL_STATE(4007)] = 148271, + [SMALL_STATE(4008)] = 148300, + [SMALL_STATE(4009)] = 148327, + [SMALL_STATE(4010)] = 148352, + [SMALL_STATE(4011)] = 148377, + [SMALL_STATE(4012)] = 148402, + [SMALL_STATE(4013)] = 148427, + [SMALL_STATE(4014)] = 148450, + [SMALL_STATE(4015)] = 148475, + [SMALL_STATE(4016)] = 148500, + [SMALL_STATE(4017)] = 148525, + [SMALL_STATE(4018)] = 148548, + [SMALL_STATE(4019)] = 148573, + [SMALL_STATE(4020)] = 148598, + [SMALL_STATE(4021)] = 148623, + [SMALL_STATE(4022)] = 148650, + [SMALL_STATE(4023)] = 148675, + [SMALL_STATE(4024)] = 148698, + [SMALL_STATE(4025)] = 148723, + [SMALL_STATE(4026)] = 148746, + [SMALL_STATE(4027)] = 148771, + [SMALL_STATE(4028)] = 148796, + [SMALL_STATE(4029)] = 148821, + [SMALL_STATE(4030)] = 148844, + [SMALL_STATE(4031)] = 148873, + [SMALL_STATE(4032)] = 148898, + [SMALL_STATE(4033)] = 148938, + [SMALL_STATE(4034)] = 148972, + [SMALL_STATE(4035)] = 149012, + [SMALL_STATE(4036)] = 149052, + [SMALL_STATE(4037)] = 149080, + [SMALL_STATE(4038)] = 149106, + [SMALL_STATE(4039)] = 149142, + [SMALL_STATE(4040)] = 149170, + [SMALL_STATE(4041)] = 149210, + [SMALL_STATE(4042)] = 149250, + [SMALL_STATE(4043)] = 149290, + [SMALL_STATE(4044)] = 149330, + [SMALL_STATE(4045)] = 149356, + [SMALL_STATE(4046)] = 149396, + [SMALL_STATE(4047)] = 149436, + [SMALL_STATE(4048)] = 149474, + [SMALL_STATE(4049)] = 149514, + [SMALL_STATE(4050)] = 149548, + [SMALL_STATE(4051)] = 149572, + [SMALL_STATE(4052)] = 149608, + [SMALL_STATE(4053)] = 149632, + [SMALL_STATE(4054)] = 149656, + [SMALL_STATE(4055)] = 149696, + [SMALL_STATE(4056)] = 149718, + [SMALL_STATE(4057)] = 149754, + [SMALL_STATE(4058)] = 149794, + [SMALL_STATE(4059)] = 149830, + [SMALL_STATE(4060)] = 149870, + [SMALL_STATE(4061)] = 149910, + [SMALL_STATE(4062)] = 149936, + [SMALL_STATE(4063)] = 149976, + [SMALL_STATE(4064)] = 150016, + [SMALL_STATE(4065)] = 150044, + [SMALL_STATE(4066)] = 150084, + [SMALL_STATE(4067)] = 150124, + [SMALL_STATE(4068)] = 150162, + [SMALL_STATE(4069)] = 150202, + [SMALL_STATE(4070)] = 150224, + [SMALL_STATE(4071)] = 150261, + [SMALL_STATE(4072)] = 150294, + [SMALL_STATE(4073)] = 150315, + [SMALL_STATE(4074)] = 150342, + [SMALL_STATE(4075)] = 150363, + [SMALL_STATE(4076)] = 150386, + [SMALL_STATE(4077)] = 150407, + [SMALL_STATE(4078)] = 150428, + [SMALL_STATE(4079)] = 150449, + [SMALL_STATE(4080)] = 150482, + [SMALL_STATE(4081)] = 150515, + [SMALL_STATE(4082)] = 150548, + [SMALL_STATE(4083)] = 150581, + [SMALL_STATE(4084)] = 150604, + [SMALL_STATE(4085)] = 150641, + [SMALL_STATE(4086)] = 150662, + [SMALL_STATE(4087)] = 150683, + [SMALL_STATE(4088)] = 150716, [SMALL_STATE(4089)] = 150749, [SMALL_STATE(4090)] = 150782, - [SMALL_STATE(4091)] = 150817, + [SMALL_STATE(4091)] = 150815, [SMALL_STATE(4092)] = 150838, [SMALL_STATE(4093)] = 150871, - [SMALL_STATE(4094)] = 150892, - [SMALL_STATE(4095)] = 150925, - [SMALL_STATE(4096)] = 150946, - [SMALL_STATE(4097)] = 150983, - [SMALL_STATE(4098)] = 151006, - [SMALL_STATE(4099)] = 151043, - [SMALL_STATE(4100)] = 151064, - [SMALL_STATE(4101)] = 151085, - [SMALL_STATE(4102)] = 151122, - [SMALL_STATE(4103)] = 151159, - [SMALL_STATE(4104)] = 151186, - [SMALL_STATE(4105)] = 151223, - [SMALL_STATE(4106)] = 151244, - [SMALL_STATE(4107)] = 151281, - [SMALL_STATE(4108)] = 151318, - [SMALL_STATE(4109)] = 151355, - [SMALL_STATE(4110)] = 151388, - [SMALL_STATE(4111)] = 151409, - [SMALL_STATE(4112)] = 151446, - [SMALL_STATE(4113)] = 151467, - [SMALL_STATE(4114)] = 151488, - [SMALL_STATE(4115)] = 151525, - [SMALL_STATE(4116)] = 151546, - [SMALL_STATE(4117)] = 151583, - [SMALL_STATE(4118)] = 151616, - [SMALL_STATE(4119)] = 151637, - [SMALL_STATE(4120)] = 151658, - [SMALL_STATE(4121)] = 151695, - [SMALL_STATE(4122)] = 151716, - [SMALL_STATE(4123)] = 151747, - [SMALL_STATE(4124)] = 151784, - [SMALL_STATE(4125)] = 151805, - [SMALL_STATE(4126)] = 151838, - [SMALL_STATE(4127)] = 151871, - [SMALL_STATE(4128)] = 151908, - [SMALL_STATE(4129)] = 151929, - [SMALL_STATE(4130)] = 151950, - [SMALL_STATE(4131)] = 151987, - [SMALL_STATE(4132)] = 152008, - [SMALL_STATE(4133)] = 152045, - [SMALL_STATE(4134)] = 152066, - [SMALL_STATE(4135)] = 152087, - [SMALL_STATE(4136)] = 152108, - [SMALL_STATE(4137)] = 152145, - [SMALL_STATE(4138)] = 152180, - [SMALL_STATE(4139)] = 152201, - [SMALL_STATE(4140)] = 152238, - [SMALL_STATE(4141)] = 152267, - [SMALL_STATE(4142)] = 152304, - [SMALL_STATE(4143)] = 152341, - [SMALL_STATE(4144)] = 152374, - [SMALL_STATE(4145)] = 152395, - [SMALL_STATE(4146)] = 152432, - [SMALL_STATE(4147)] = 152453, - [SMALL_STATE(4148)] = 152486, - [SMALL_STATE(4149)] = 152523, - [SMALL_STATE(4150)] = 152556, - [SMALL_STATE(4151)] = 152585, - [SMALL_STATE(4152)] = 152622, - [SMALL_STATE(4153)] = 152645, - [SMALL_STATE(4154)] = 152668, - [SMALL_STATE(4155)] = 152691, - [SMALL_STATE(4156)] = 152714, - [SMALL_STATE(4157)] = 152737, - [SMALL_STATE(4158)] = 152764, - [SMALL_STATE(4159)] = 152797, - [SMALL_STATE(4160)] = 152830, - [SMALL_STATE(4161)] = 152863, - [SMALL_STATE(4162)] = 152896, - [SMALL_STATE(4163)] = 152923, - [SMALL_STATE(4164)] = 152960, - [SMALL_STATE(4165)] = 152993, + [SMALL_STATE(4094)] = 150904, + [SMALL_STATE(4095)] = 150937, + [SMALL_STATE(4096)] = 150964, + [SMALL_STATE(4097)] = 151001, + [SMALL_STATE(4098)] = 151026, + [SMALL_STATE(4099)] = 151063, + [SMALL_STATE(4100)] = 151086, + [SMALL_STATE(4101)] = 151109, + [SMALL_STATE(4102)] = 151146, + [SMALL_STATE(4103)] = 151183, + [SMALL_STATE(4104)] = 151204, + [SMALL_STATE(4105)] = 151241, + [SMALL_STATE(4106)] = 151278, + [SMALL_STATE(4107)] = 151315, + [SMALL_STATE(4108)] = 151352, + [SMALL_STATE(4109)] = 151385, + [SMALL_STATE(4110)] = 151414, + [SMALL_STATE(4111)] = 151443, + [SMALL_STATE(4112)] = 151480, + [SMALL_STATE(4113)] = 151517, + [SMALL_STATE(4114)] = 151538, + [SMALL_STATE(4115)] = 151559, + [SMALL_STATE(4116)] = 151592, + [SMALL_STATE(4117)] = 151625, + [SMALL_STATE(4118)] = 151662, + [SMALL_STATE(4119)] = 151697, + [SMALL_STATE(4120)] = 151734, + [SMALL_STATE(4121)] = 151767, + [SMALL_STATE(4122)] = 151800, + [SMALL_STATE(4123)] = 151833, + [SMALL_STATE(4124)] = 151866, + [SMALL_STATE(4125)] = 151899, + [SMALL_STATE(4126)] = 151936, + [SMALL_STATE(4127)] = 151969, + [SMALL_STATE(4128)] = 151990, + [SMALL_STATE(4129)] = 152011, + [SMALL_STATE(4130)] = 152032, + [SMALL_STATE(4131)] = 152065, + [SMALL_STATE(4132)] = 152098, + [SMALL_STATE(4133)] = 152119, + [SMALL_STATE(4134)] = 152140, + [SMALL_STATE(4135)] = 152171, + [SMALL_STATE(4136)] = 152192, + [SMALL_STATE(4137)] = 152225, + [SMALL_STATE(4138)] = 152248, + [SMALL_STATE(4139)] = 152285, + [SMALL_STATE(4140)] = 152318, + [SMALL_STATE(4141)] = 152339, + [SMALL_STATE(4142)] = 152360, + [SMALL_STATE(4143)] = 152381, + [SMALL_STATE(4144)] = 152402, + [SMALL_STATE(4145)] = 152425, + [SMALL_STATE(4146)] = 152458, + [SMALL_STATE(4147)] = 152491, + [SMALL_STATE(4148)] = 152524, + [SMALL_STATE(4149)] = 152545, + [SMALL_STATE(4150)] = 152578, + [SMALL_STATE(4151)] = 152611, + [SMALL_STATE(4152)] = 152632, + [SMALL_STATE(4153)] = 152669, + [SMALL_STATE(4154)] = 152702, + [SMALL_STATE(4155)] = 152725, + [SMALL_STATE(4156)] = 152746, + [SMALL_STATE(4157)] = 152777, + [SMALL_STATE(4158)] = 152814, + [SMALL_STATE(4159)] = 152845, + [SMALL_STATE(4160)] = 152876, + [SMALL_STATE(4161)] = 152897, + [SMALL_STATE(4162)] = 152934, + [SMALL_STATE(4163)] = 152955, + [SMALL_STATE(4164)] = 152988, + [SMALL_STATE(4165)] = 153009, [SMALL_STATE(4166)] = 153030, - [SMALL_STATE(4167)] = 153063, - [SMALL_STATE(4168)] = 153100, - [SMALL_STATE(4169)] = 153133, - [SMALL_STATE(4170)] = 153170, - [SMALL_STATE(4171)] = 153203, - [SMALL_STATE(4172)] = 153236, - [SMALL_STATE(4173)] = 153269, - [SMALL_STATE(4174)] = 153302, - [SMALL_STATE(4175)] = 153335, - [SMALL_STATE(4176)] = 153372, - [SMALL_STATE(4177)] = 153405, - [SMALL_STATE(4178)] = 153442, - [SMALL_STATE(4179)] = 153475, - [SMALL_STATE(4180)] = 153512, - [SMALL_STATE(4181)] = 153533, - [SMALL_STATE(4182)] = 153570, - [SMALL_STATE(4183)] = 153603, - [SMALL_STATE(4184)] = 153636, - [SMALL_STATE(4185)] = 153669, - [SMALL_STATE(4186)] = 153702, - [SMALL_STATE(4187)] = 153735, - [SMALL_STATE(4188)] = 153756, - [SMALL_STATE(4189)] = 153789, - [SMALL_STATE(4190)] = 153822, - [SMALL_STATE(4191)] = 153853, - [SMALL_STATE(4192)] = 153886, - [SMALL_STATE(4193)] = 153907, - [SMALL_STATE(4194)] = 153930, - [SMALL_STATE(4195)] = 153963, - [SMALL_STATE(4196)] = 154000, - [SMALL_STATE(4197)] = 154037, - [SMALL_STATE(4198)] = 154058, - [SMALL_STATE(4199)] = 154091, - [SMALL_STATE(4200)] = 154112, - [SMALL_STATE(4201)] = 154133, - [SMALL_STATE(4202)] = 154166, - [SMALL_STATE(4203)] = 154199, - [SMALL_STATE(4204)] = 154232, - [SMALL_STATE(4205)] = 154253, - [SMALL_STATE(4206)] = 154274, - [SMALL_STATE(4207)] = 154311, - [SMALL_STATE(4208)] = 154346, - [SMALL_STATE(4209)] = 154367, - [SMALL_STATE(4210)] = 154394, - [SMALL_STATE(4211)] = 154427, - [SMALL_STATE(4212)] = 154464, - [SMALL_STATE(4213)] = 154501, - [SMALL_STATE(4214)] = 154532, - [SMALL_STATE(4215)] = 154565, - [SMALL_STATE(4216)] = 154586, - [SMALL_STATE(4217)] = 154619, - [SMALL_STATE(4218)] = 154650, - [SMALL_STATE(4219)] = 154683, - [SMALL_STATE(4220)] = 154716, - [SMALL_STATE(4221)] = 154749, - [SMALL_STATE(4222)] = 154782, - [SMALL_STATE(4223)] = 154815, - [SMALL_STATE(4224)] = 154852, - [SMALL_STATE(4225)] = 154885, - [SMALL_STATE(4226)] = 154918, - [SMALL_STATE(4227)] = 154951, - [SMALL_STATE(4228)] = 154984, - [SMALL_STATE(4229)] = 155007, - [SMALL_STATE(4230)] = 155030, - [SMALL_STATE(4231)] = 155061, - [SMALL_STATE(4232)] = 155086, - [SMALL_STATE(4233)] = 155113, - [SMALL_STATE(4234)] = 155146, - [SMALL_STATE(4235)] = 155183, - [SMALL_STATE(4236)] = 155204, - [SMALL_STATE(4237)] = 155237, - [SMALL_STATE(4238)] = 155258, + [SMALL_STATE(4167)] = 153061, + [SMALL_STATE(4168)] = 153082, + [SMALL_STATE(4169)] = 153119, + [SMALL_STATE(4170)] = 153140, + [SMALL_STATE(4171)] = 153173, + [SMALL_STATE(4172)] = 153196, + [SMALL_STATE(4173)] = 153227, + [SMALL_STATE(4174)] = 153254, + [SMALL_STATE(4175)] = 153287, + [SMALL_STATE(4176)] = 153314, + [SMALL_STATE(4177)] = 153345, + [SMALL_STATE(4178)] = 153378, + [SMALL_STATE(4179)] = 153399, + [SMALL_STATE(4180)] = 153430, + [SMALL_STATE(4181)] = 153467, + [SMALL_STATE(4182)] = 153488, + [SMALL_STATE(4183)] = 153519, + [SMALL_STATE(4184)] = 153552, + [SMALL_STATE(4185)] = 153585, + [SMALL_STATE(4186)] = 153618, + [SMALL_STATE(4187)] = 153651, + [SMALL_STATE(4188)] = 153688, + [SMALL_STATE(4189)] = 153725, + [SMALL_STATE(4190)] = 153758, + [SMALL_STATE(4191)] = 153791, + [SMALL_STATE(4192)] = 153812, + [SMALL_STATE(4193)] = 153845, + [SMALL_STATE(4194)] = 153878, + [SMALL_STATE(4195)] = 153905, + [SMALL_STATE(4196)] = 153942, + [SMALL_STATE(4197)] = 153979, + [SMALL_STATE(4198)] = 154012, + [SMALL_STATE(4199)] = 154045, + [SMALL_STATE(4200)] = 154078, + [SMALL_STATE(4201)] = 154111, + [SMALL_STATE(4202)] = 154144, + [SMALL_STATE(4203)] = 154181, + [SMALL_STATE(4204)] = 154202, + [SMALL_STATE(4205)] = 154223, + [SMALL_STATE(4206)] = 154250, + [SMALL_STATE(4207)] = 154287, + [SMALL_STATE(4208)] = 154320, + [SMALL_STATE(4209)] = 154357, + [SMALL_STATE(4210)] = 154388, + [SMALL_STATE(4211)] = 154425, + [SMALL_STATE(4212)] = 154458, + [SMALL_STATE(4213)] = 154479, + [SMALL_STATE(4214)] = 154512, + [SMALL_STATE(4215)] = 154545, + [SMALL_STATE(4216)] = 154566, + [SMALL_STATE(4217)] = 154591, + [SMALL_STATE(4218)] = 154624, + [SMALL_STATE(4219)] = 154659, + [SMALL_STATE(4220)] = 154680, + [SMALL_STATE(4221)] = 154717, + [SMALL_STATE(4222)] = 154754, + [SMALL_STATE(4223)] = 154787, + [SMALL_STATE(4224)] = 154820, + [SMALL_STATE(4225)] = 154853, + [SMALL_STATE(4226)] = 154890, + [SMALL_STATE(4227)] = 154923, + [SMALL_STATE(4228)] = 154956, + [SMALL_STATE(4229)] = 154989, + [SMALL_STATE(4230)] = 155010, + [SMALL_STATE(4231)] = 155041, + [SMALL_STATE(4232)] = 155072, + [SMALL_STATE(4233)] = 155109, + [SMALL_STATE(4234)] = 155136, + [SMALL_STATE(4235)] = 155157, + [SMALL_STATE(4236)] = 155188, + [SMALL_STATE(4237)] = 155225, + [SMALL_STATE(4238)] = 155262, [SMALL_STATE(4239)] = 155295, - [SMALL_STATE(4240)] = 155320, - [SMALL_STATE(4241)] = 155341, - [SMALL_STATE(4242)] = 155364, - [SMALL_STATE(4243)] = 155401, - [SMALL_STATE(4244)] = 155422, - [SMALL_STATE(4245)] = 155443, - [SMALL_STATE(4246)] = 155476, - [SMALL_STATE(4247)] = 155509, - [SMALL_STATE(4248)] = 155530, - [SMALL_STATE(4249)] = 155567, - [SMALL_STATE(4250)] = 155588, - [SMALL_STATE(4251)] = 155625, - [SMALL_STATE(4252)] = 155662, - [SMALL_STATE(4253)] = 155683, - [SMALL_STATE(4254)] = 155704, - [SMALL_STATE(4255)] = 155741, - [SMALL_STATE(4256)] = 155766, - [SMALL_STATE(4257)] = 155787, - [SMALL_STATE(4258)] = 155820, + [SMALL_STATE(4240)] = 155316, + [SMALL_STATE(4241)] = 155349, + [SMALL_STATE(4242)] = 155370, + [SMALL_STATE(4243)] = 155391, + [SMALL_STATE(4244)] = 155428, + [SMALL_STATE(4245)] = 155449, + [SMALL_STATE(4246)] = 155470, + [SMALL_STATE(4247)] = 155507, + [SMALL_STATE(4248)] = 155544, + [SMALL_STATE(4249)] = 155577, + [SMALL_STATE(4250)] = 155614, + [SMALL_STATE(4251)] = 155635, + [SMALL_STATE(4252)] = 155672, + [SMALL_STATE(4253)] = 155693, + [SMALL_STATE(4254)] = 155730, + [SMALL_STATE(4255)] = 155753, + [SMALL_STATE(4256)] = 155774, + [SMALL_STATE(4257)] = 155795, + [SMALL_STATE(4258)] = 155816, [SMALL_STATE(4259)] = 155853, - [SMALL_STATE(4260)] = 155886, - [SMALL_STATE(4261)] = 155919, - [SMALL_STATE(4262)] = 155952, - [SMALL_STATE(4263)] = 155985, - [SMALL_STATE(4264)] = 156006, + [SMALL_STATE(4260)] = 155874, + [SMALL_STATE(4261)] = 155897, + [SMALL_STATE(4262)] = 155930, + [SMALL_STATE(4263)] = 155967, + [SMALL_STATE(4264)] = 156000, [SMALL_STATE(4265)] = 156037, - [SMALL_STATE(4266)] = 156070, - [SMALL_STATE(4267)] = 156091, - [SMALL_STATE(4268)] = 156112, - [SMALL_STATE(4269)] = 156149, - [SMALL_STATE(4270)] = 156180, - [SMALL_STATE(4271)] = 156213, - [SMALL_STATE(4272)] = 156234, - [SMALL_STATE(4273)] = 156271, - [SMALL_STATE(4274)] = 156304, - [SMALL_STATE(4275)] = 156325, - [SMALL_STATE(4276)] = 156346, - [SMALL_STATE(4277)] = 156383, - [SMALL_STATE(4278)] = 156406, - [SMALL_STATE(4279)] = 156427, - [SMALL_STATE(4280)] = 156448, - [SMALL_STATE(4281)] = 156469, - [SMALL_STATE(4282)] = 156502, - [SMALL_STATE(4283)] = 156535, - [SMALL_STATE(4284)] = 156568, - [SMALL_STATE(4285)] = 156589, - [SMALL_STATE(4286)] = 156622, - [SMALL_STATE(4287)] = 156643, - [SMALL_STATE(4288)] = 156680, - [SMALL_STATE(4289)] = 156701, - [SMALL_STATE(4290)] = 156732, - [SMALL_STATE(4291)] = 156767, - [SMALL_STATE(4292)] = 156798, - [SMALL_STATE(4293)] = 156835, - [SMALL_STATE(4294)] = 156862, - [SMALL_STATE(4295)] = 156883, - [SMALL_STATE(4296)] = 156916, - [SMALL_STATE(4297)] = 156949, - [SMALL_STATE(4298)] = 156970, - [SMALL_STATE(4299)] = 156991, - [SMALL_STATE(4300)] = 157024, - [SMALL_STATE(4301)] = 157057, - [SMALL_STATE(4302)] = 157085, - [SMALL_STATE(4303)] = 157117, - [SMALL_STATE(4304)] = 157143, - [SMALL_STATE(4305)] = 157169, - [SMALL_STATE(4306)] = 157195, - [SMALL_STATE(4307)] = 157223, - [SMALL_STATE(4308)] = 157251, - [SMALL_STATE(4309)] = 157281, - [SMALL_STATE(4310)] = 157307, - [SMALL_STATE(4311)] = 157333, - [SMALL_STATE(4312)] = 157367, - [SMALL_STATE(4313)] = 157395, - [SMALL_STATE(4314)] = 157423, - [SMALL_STATE(4315)] = 157455, - [SMALL_STATE(4316)] = 157487, - [SMALL_STATE(4317)] = 157515, - [SMALL_STATE(4318)] = 157547, - [SMALL_STATE(4319)] = 157575, - [SMALL_STATE(4320)] = 157603, - [SMALL_STATE(4321)] = 157637, - [SMALL_STATE(4322)] = 157671, - [SMALL_STATE(4323)] = 157693, - [SMALL_STATE(4324)] = 157725, - [SMALL_STATE(4325)] = 157759, - [SMALL_STATE(4326)] = 157791, - [SMALL_STATE(4327)] = 157825, - [SMALL_STATE(4328)] = 157859, - [SMALL_STATE(4329)] = 157893, - [SMALL_STATE(4330)] = 157919, - [SMALL_STATE(4331)] = 157945, - [SMALL_STATE(4332)] = 157965, - [SMALL_STATE(4333)] = 157985, - [SMALL_STATE(4334)] = 158013, - [SMALL_STATE(4335)] = 158047, - [SMALL_STATE(4336)] = 158081, - [SMALL_STATE(4337)] = 158115, - [SMALL_STATE(4338)] = 158137, - [SMALL_STATE(4339)] = 158159, - [SMALL_STATE(4340)] = 158191, - [SMALL_STATE(4341)] = 158218, - [SMALL_STATE(4342)] = 158249, - [SMALL_STATE(4343)] = 158276, - [SMALL_STATE(4344)] = 158303, - [SMALL_STATE(4345)] = 158334, - [SMALL_STATE(4346)] = 158361, - [SMALL_STATE(4347)] = 158392, - [SMALL_STATE(4348)] = 158423, - [SMALL_STATE(4349)] = 158454, - [SMALL_STATE(4350)] = 158481, - [SMALL_STATE(4351)] = 158508, - [SMALL_STATE(4352)] = 158539, - [SMALL_STATE(4353)] = 158570, - [SMALL_STATE(4354)] = 158597, - [SMALL_STATE(4355)] = 158624, - [SMALL_STATE(4356)] = 158651, - [SMALL_STATE(4357)] = 158678, - [SMALL_STATE(4358)] = 158705, - [SMALL_STATE(4359)] = 158732, - [SMALL_STATE(4360)] = 158759, - [SMALL_STATE(4361)] = 158786, - [SMALL_STATE(4362)] = 158813, - [SMALL_STATE(4363)] = 158840, - [SMALL_STATE(4364)] = 158871, - [SMALL_STATE(4365)] = 158898, - [SMALL_STATE(4366)] = 158925, - [SMALL_STATE(4367)] = 158952, - [SMALL_STATE(4368)] = 158973, - [SMALL_STATE(4369)] = 159000, - [SMALL_STATE(4370)] = 159027, - [SMALL_STATE(4371)] = 159058, - [SMALL_STATE(4372)] = 159085, - [SMALL_STATE(4373)] = 159116, - [SMALL_STATE(4374)] = 159143, - [SMALL_STATE(4375)] = 159170, - [SMALL_STATE(4376)] = 159197, - [SMALL_STATE(4377)] = 159224, - [SMALL_STATE(4378)] = 159251, - [SMALL_STATE(4379)] = 159278, - [SMALL_STATE(4380)] = 159307, - [SMALL_STATE(4381)] = 159338, - [SMALL_STATE(4382)] = 159369, - [SMALL_STATE(4383)] = 159400, - [SMALL_STATE(4384)] = 159431, - [SMALL_STATE(4385)] = 159454, - [SMALL_STATE(4386)] = 159485, - [SMALL_STATE(4387)] = 159508, - [SMALL_STATE(4388)] = 159531, - [SMALL_STATE(4389)] = 159562, - [SMALL_STATE(4390)] = 159581, - [SMALL_STATE(4391)] = 159612, - [SMALL_STATE(4392)] = 159639, - [SMALL_STATE(4393)] = 159670, - [SMALL_STATE(4394)] = 159697, - [SMALL_STATE(4395)] = 159728, - [SMALL_STATE(4396)] = 159759, - [SMALL_STATE(4397)] = 159790, - [SMALL_STATE(4398)] = 159809, - [SMALL_STATE(4399)] = 159830, - [SMALL_STATE(4400)] = 159861, - [SMALL_STATE(4401)] = 159888, - [SMALL_STATE(4402)] = 159915, - [SMALL_STATE(4403)] = 159942, - [SMALL_STATE(4404)] = 159967, - [SMALL_STATE(4405)] = 159994, - [SMALL_STATE(4406)] = 160021, - [SMALL_STATE(4407)] = 160048, - [SMALL_STATE(4408)] = 160075, - [SMALL_STATE(4409)] = 160094, - [SMALL_STATE(4410)] = 160125, - [SMALL_STATE(4411)] = 160152, - [SMALL_STATE(4412)] = 160183, - [SMALL_STATE(4413)] = 160214, - [SMALL_STATE(4414)] = 160245, - [SMALL_STATE(4415)] = 160272, - [SMALL_STATE(4416)] = 160303, - [SMALL_STATE(4417)] = 160330, - [SMALL_STATE(4418)] = 160357, - [SMALL_STATE(4419)] = 160388, - [SMALL_STATE(4420)] = 160407, - [SMALL_STATE(4421)] = 160438, - [SMALL_STATE(4422)] = 160469, - [SMALL_STATE(4423)] = 160500, - [SMALL_STATE(4424)] = 160527, - [SMALL_STATE(4425)] = 160546, - [SMALL_STATE(4426)] = 160573, - [SMALL_STATE(4427)] = 160592, - [SMALL_STATE(4428)] = 160619, - [SMALL_STATE(4429)] = 160646, - [SMALL_STATE(4430)] = 160673, - [SMALL_STATE(4431)] = 160700, - [SMALL_STATE(4432)] = 160721, - [SMALL_STATE(4433)] = 160748, - [SMALL_STATE(4434)] = 160775, - [SMALL_STATE(4435)] = 160806, - [SMALL_STATE(4436)] = 160833, - [SMALL_STATE(4437)] = 160860, - [SMALL_STATE(4438)] = 160879, - [SMALL_STATE(4439)] = 160898, - [SMALL_STATE(4440)] = 160925, - [SMALL_STATE(4441)] = 160952, - [SMALL_STATE(4442)] = 160971, - [SMALL_STATE(4443)] = 161002, - [SMALL_STATE(4444)] = 161029, - [SMALL_STATE(4445)] = 161056, - [SMALL_STATE(4446)] = 161087, - [SMALL_STATE(4447)] = 161114, - [SMALL_STATE(4448)] = 161141, - [SMALL_STATE(4449)] = 161172, - [SMALL_STATE(4450)] = 161199, - [SMALL_STATE(4451)] = 161226, - [SMALL_STATE(4452)] = 161257, - [SMALL_STATE(4453)] = 161288, - [SMALL_STATE(4454)] = 161315, - [SMALL_STATE(4455)] = 161334, - [SMALL_STATE(4456)] = 161357, - [SMALL_STATE(4457)] = 161388, - [SMALL_STATE(4458)] = 161411, - [SMALL_STATE(4459)] = 161442, - [SMALL_STATE(4460)] = 161473, - [SMALL_STATE(4461)] = 161500, - [SMALL_STATE(4462)] = 161531, - [SMALL_STATE(4463)] = 161558, - [SMALL_STATE(4464)] = 161585, - [SMALL_STATE(4465)] = 161616, - [SMALL_STATE(4466)] = 161643, - [SMALL_STATE(4467)] = 161674, - [SMALL_STATE(4468)] = 161705, - [SMALL_STATE(4469)] = 161736, - [SMALL_STATE(4470)] = 161767, - [SMALL_STATE(4471)] = 161798, - [SMALL_STATE(4472)] = 161829, - [SMALL_STATE(4473)] = 161860, - [SMALL_STATE(4474)] = 161887, - [SMALL_STATE(4475)] = 161914, - [SMALL_STATE(4476)] = 161945, - [SMALL_STATE(4477)] = 161976, - [SMALL_STATE(4478)] = 162007, - [SMALL_STATE(4479)] = 162026, - [SMALL_STATE(4480)] = 162053, - [SMALL_STATE(4481)] = 162080, - [SMALL_STATE(4482)] = 162111, - [SMALL_STATE(4483)] = 162142, - [SMALL_STATE(4484)] = 162169, - [SMALL_STATE(4485)] = 162200, - [SMALL_STATE(4486)] = 162229, - [SMALL_STATE(4487)] = 162252, - [SMALL_STATE(4488)] = 162275, - [SMALL_STATE(4489)] = 162298, - [SMALL_STATE(4490)] = 162327, - [SMALL_STATE(4491)] = 162356, - [SMALL_STATE(4492)] = 162383, - [SMALL_STATE(4493)] = 162414, - [SMALL_STATE(4494)] = 162441, - [SMALL_STATE(4495)] = 162468, - [SMALL_STATE(4496)] = 162495, - [SMALL_STATE(4497)] = 162522, - [SMALL_STATE(4498)] = 162549, - [SMALL_STATE(4499)] = 162576, - [SMALL_STATE(4500)] = 162607, - [SMALL_STATE(4501)] = 162630, - [SMALL_STATE(4502)] = 162661, - [SMALL_STATE(4503)] = 162680, - [SMALL_STATE(4504)] = 162711, - [SMALL_STATE(4505)] = 162742, - [SMALL_STATE(4506)] = 162773, - [SMALL_STATE(4507)] = 162804, - [SMALL_STATE(4508)] = 162827, - [SMALL_STATE(4509)] = 162856, - [SMALL_STATE(4510)] = 162879, - [SMALL_STATE(4511)] = 162898, - [SMALL_STATE(4512)] = 162925, - [SMALL_STATE(4513)] = 162944, - [SMALL_STATE(4514)] = 162963, - [SMALL_STATE(4515)] = 162986, - [SMALL_STATE(4516)] = 163009, - [SMALL_STATE(4517)] = 163032, - [SMALL_STATE(4518)] = 163055, - [SMALL_STATE(4519)] = 163084, - [SMALL_STATE(4520)] = 163111, - [SMALL_STATE(4521)] = 163142, - [SMALL_STATE(4522)] = 163173, - [SMALL_STATE(4523)] = 163200, - [SMALL_STATE(4524)] = 163229, - [SMALL_STATE(4525)] = 163258, - [SMALL_STATE(4526)] = 163287, - [SMALL_STATE(4527)] = 163306, - [SMALL_STATE(4528)] = 163325, - [SMALL_STATE(4529)] = 163354, - [SMALL_STATE(4530)] = 163377, - [SMALL_STATE(4531)] = 163400, - [SMALL_STATE(4532)] = 163419, - [SMALL_STATE(4533)] = 163442, - [SMALL_STATE(4534)] = 163471, - [SMALL_STATE(4535)] = 163494, - [SMALL_STATE(4536)] = 163525, - [SMALL_STATE(4537)] = 163556, - [SMALL_STATE(4538)] = 163585, - [SMALL_STATE(4539)] = 163614, - [SMALL_STATE(4540)] = 163637, - [SMALL_STATE(4541)] = 163666, - [SMALL_STATE(4542)] = 163693, - [SMALL_STATE(4543)] = 163720, - [SMALL_STATE(4544)] = 163743, - [SMALL_STATE(4545)] = 163766, - [SMALL_STATE(4546)] = 163795, - [SMALL_STATE(4547)] = 163818, - [SMALL_STATE(4548)] = 163845, - [SMALL_STATE(4549)] = 163868, - [SMALL_STATE(4550)] = 163899, - [SMALL_STATE(4551)] = 163922, - [SMALL_STATE(4552)] = 163949, - [SMALL_STATE(4553)] = 163976, - [SMALL_STATE(4554)] = 163999, - [SMALL_STATE(4555)] = 164020, - [SMALL_STATE(4556)] = 164047, - [SMALL_STATE(4557)] = 164074, - [SMALL_STATE(4558)] = 164097, - [SMALL_STATE(4559)] = 164120, - [SMALL_STATE(4560)] = 164151, - [SMALL_STATE(4561)] = 164174, - [SMALL_STATE(4562)] = 164193, - [SMALL_STATE(4563)] = 164222, - [SMALL_STATE(4564)] = 164243, - [SMALL_STATE(4565)] = 164274, - [SMALL_STATE(4566)] = 164305, - [SMALL_STATE(4567)] = 164330, - [SMALL_STATE(4568)] = 164349, - [SMALL_STATE(4569)] = 164372, - [SMALL_STATE(4570)] = 164403, - [SMALL_STATE(4571)] = 164434, - [SMALL_STATE(4572)] = 164463, - [SMALL_STATE(4573)] = 164482, - [SMALL_STATE(4574)] = 164503, - [SMALL_STATE(4575)] = 164530, - [SMALL_STATE(4576)] = 164557, - [SMALL_STATE(4577)] = 164584, - [SMALL_STATE(4578)] = 164611, - [SMALL_STATE(4579)] = 164638, - [SMALL_STATE(4580)] = 164669, - [SMALL_STATE(4581)] = 164688, - [SMALL_STATE(4582)] = 164709, - [SMALL_STATE(4583)] = 164728, - [SMALL_STATE(4584)] = 164759, - [SMALL_STATE(4585)] = 164788, - [SMALL_STATE(4586)] = 164819, - [SMALL_STATE(4587)] = 164850, - [SMALL_STATE(4588)] = 164881, - [SMALL_STATE(4589)] = 164900, - [SMALL_STATE(4590)] = 164931, - [SMALL_STATE(4591)] = 164962, - [SMALL_STATE(4592)] = 164993, - [SMALL_STATE(4593)] = 165020, - [SMALL_STATE(4594)] = 165047, - [SMALL_STATE(4595)] = 165074, - [SMALL_STATE(4596)] = 165093, - [SMALL_STATE(4597)] = 165120, - [SMALL_STATE(4598)] = 165147, - [SMALL_STATE(4599)] = 165174, - [SMALL_STATE(4600)] = 165193, - [SMALL_STATE(4601)] = 165212, - [SMALL_STATE(4602)] = 165231, - [SMALL_STATE(4603)] = 165258, - [SMALL_STATE(4604)] = 165285, - [SMALL_STATE(4605)] = 165312, - [SMALL_STATE(4606)] = 165339, - [SMALL_STATE(4607)] = 165358, - [SMALL_STATE(4608)] = 165377, - [SMALL_STATE(4609)] = 165408, - [SMALL_STATE(4610)] = 165439, - [SMALL_STATE(4611)] = 165466, - [SMALL_STATE(4612)] = 165493, - [SMALL_STATE(4613)] = 165524, - [SMALL_STATE(4614)] = 165546, - [SMALL_STATE(4615)] = 165568, - [SMALL_STATE(4616)] = 165588, - [SMALL_STATE(4617)] = 165614, - [SMALL_STATE(4618)] = 165634, - [SMALL_STATE(4619)] = 165662, - [SMALL_STATE(4620)] = 165684, - [SMALL_STATE(4621)] = 165704, - [SMALL_STATE(4622)] = 165732, - [SMALL_STATE(4623)] = 165760, - [SMALL_STATE(4624)] = 165780, - [SMALL_STATE(4625)] = 165806, - [SMALL_STATE(4626)] = 165826, - [SMALL_STATE(4627)] = 165854, - [SMALL_STATE(4628)] = 165882, - [SMALL_STATE(4629)] = 165902, - [SMALL_STATE(4630)] = 165928, - [SMALL_STATE(4631)] = 165950, - [SMALL_STATE(4632)] = 165972, - [SMALL_STATE(4633)] = 165994, - [SMALL_STATE(4634)] = 166016, - [SMALL_STATE(4635)] = 166034, - [SMALL_STATE(4636)] = 166060, - [SMALL_STATE(4637)] = 166082, - [SMALL_STATE(4638)] = 166110, - [SMALL_STATE(4639)] = 166128, - [SMALL_STATE(4640)] = 166156, - [SMALL_STATE(4641)] = 166174, - [SMALL_STATE(4642)] = 166202, - [SMALL_STATE(4643)] = 166228, - [SMALL_STATE(4644)] = 166250, - [SMALL_STATE(4645)] = 166278, - [SMALL_STATE(4646)] = 166296, - [SMALL_STATE(4647)] = 166314, - [SMALL_STATE(4648)] = 166342, - [SMALL_STATE(4649)] = 166364, - [SMALL_STATE(4650)] = 166392, - [SMALL_STATE(4651)] = 166420, - [SMALL_STATE(4652)] = 166448, - [SMALL_STATE(4653)] = 166470, - [SMALL_STATE(4654)] = 166498, - [SMALL_STATE(4655)] = 166520, - [SMALL_STATE(4656)] = 166546, - [SMALL_STATE(4657)] = 166574, - [SMALL_STATE(4658)] = 166596, - [SMALL_STATE(4659)] = 166618, - [SMALL_STATE(4660)] = 166644, - [SMALL_STATE(4661)] = 166672, - [SMALL_STATE(4662)] = 166690, - [SMALL_STATE(4663)] = 166718, - [SMALL_STATE(4664)] = 166744, - [SMALL_STATE(4665)] = 166762, - [SMALL_STATE(4666)] = 166780, - [SMALL_STATE(4667)] = 166798, - [SMALL_STATE(4668)] = 166820, - [SMALL_STATE(4669)] = 166838, - [SMALL_STATE(4670)] = 166860, - [SMALL_STATE(4671)] = 166888, - [SMALL_STATE(4672)] = 166916, - [SMALL_STATE(4673)] = 166942, - [SMALL_STATE(4674)] = 166970, - [SMALL_STATE(4675)] = 166998, - [SMALL_STATE(4676)] = 167026, - [SMALL_STATE(4677)] = 167054, - [SMALL_STATE(4678)] = 167072, - [SMALL_STATE(4679)] = 167098, - [SMALL_STATE(4680)] = 167120, - [SMALL_STATE(4681)] = 167142, - [SMALL_STATE(4682)] = 167164, - [SMALL_STATE(4683)] = 167186, - [SMALL_STATE(4684)] = 167208, - [SMALL_STATE(4685)] = 167236, - [SMALL_STATE(4686)] = 167264, - [SMALL_STATE(4687)] = 167284, - [SMALL_STATE(4688)] = 167302, - [SMALL_STATE(4689)] = 167324, - [SMALL_STATE(4690)] = 167342, - [SMALL_STATE(4691)] = 167370, - [SMALL_STATE(4692)] = 167388, - [SMALL_STATE(4693)] = 167416, - [SMALL_STATE(4694)] = 167444, - [SMALL_STATE(4695)] = 167462, - [SMALL_STATE(4696)] = 167480, - [SMALL_STATE(4697)] = 167508, - [SMALL_STATE(4698)] = 167536, - [SMALL_STATE(4699)] = 167554, - [SMALL_STATE(4700)] = 167582, - [SMALL_STATE(4701)] = 167604, - [SMALL_STATE(4702)] = 167632, - [SMALL_STATE(4703)] = 167660, - [SMALL_STATE(4704)] = 167686, - [SMALL_STATE(4705)] = 167704, - [SMALL_STATE(4706)] = 167722, - [SMALL_STATE(4707)] = 167744, - [SMALL_STATE(4708)] = 167772, - [SMALL_STATE(4709)] = 167800, - [SMALL_STATE(4710)] = 167822, - [SMALL_STATE(4711)] = 167840, - [SMALL_STATE(4712)] = 167858, - [SMALL_STATE(4713)] = 167880, - [SMALL_STATE(4714)] = 167902, - [SMALL_STATE(4715)] = 167922, - [SMALL_STATE(4716)] = 167950, - [SMALL_STATE(4717)] = 167976, - [SMALL_STATE(4718)] = 167994, - [SMALL_STATE(4719)] = 168016, - [SMALL_STATE(4720)] = 168038, - [SMALL_STATE(4721)] = 168066, - [SMALL_STATE(4722)] = 168084, - [SMALL_STATE(4723)] = 168106, - [SMALL_STATE(4724)] = 168124, - [SMALL_STATE(4725)] = 168146, - [SMALL_STATE(4726)] = 168168, - [SMALL_STATE(4727)] = 168196, - [SMALL_STATE(4728)] = 168224, - [SMALL_STATE(4729)] = 168242, - [SMALL_STATE(4730)] = 168264, - [SMALL_STATE(4731)] = 168292, - [SMALL_STATE(4732)] = 168320, - [SMALL_STATE(4733)] = 168348, - [SMALL_STATE(4734)] = 168370, - [SMALL_STATE(4735)] = 168388, - [SMALL_STATE(4736)] = 168410, - [SMALL_STATE(4737)] = 168438, - [SMALL_STATE(4738)] = 168464, - [SMALL_STATE(4739)] = 168492, - [SMALL_STATE(4740)] = 168520, - [SMALL_STATE(4741)] = 168542, - [SMALL_STATE(4742)] = 168568, - [SMALL_STATE(4743)] = 168590, - [SMALL_STATE(4744)] = 168612, - [SMALL_STATE(4745)] = 168636, - [SMALL_STATE(4746)] = 168658, - [SMALL_STATE(4747)] = 168684, - [SMALL_STATE(4748)] = 168712, - [SMALL_STATE(4749)] = 168734, - [SMALL_STATE(4750)] = 168762, - [SMALL_STATE(4751)] = 168790, - [SMALL_STATE(4752)] = 168808, - [SMALL_STATE(4753)] = 168836, - [SMALL_STATE(4754)] = 168854, - [SMALL_STATE(4755)] = 168882, - [SMALL_STATE(4756)] = 168900, - [SMALL_STATE(4757)] = 168928, - [SMALL_STATE(4758)] = 168950, - [SMALL_STATE(4759)] = 168978, - [SMALL_STATE(4760)] = 169000, - [SMALL_STATE(4761)] = 169022, - [SMALL_STATE(4762)] = 169044, - [SMALL_STATE(4763)] = 169062, - [SMALL_STATE(4764)] = 169080, - [SMALL_STATE(4765)] = 169102, - [SMALL_STATE(4766)] = 169124, - [SMALL_STATE(4767)] = 169152, - [SMALL_STATE(4768)] = 169180, - [SMALL_STATE(4769)] = 169202, - [SMALL_STATE(4770)] = 169224, - [SMALL_STATE(4771)] = 169246, - [SMALL_STATE(4772)] = 169268, - [SMALL_STATE(4773)] = 169290, - [SMALL_STATE(4774)] = 169312, - [SMALL_STATE(4775)] = 169330, - [SMALL_STATE(4776)] = 169352, - [SMALL_STATE(4777)] = 169378, - [SMALL_STATE(4778)] = 169400, - [SMALL_STATE(4779)] = 169422, - [SMALL_STATE(4780)] = 169450, - [SMALL_STATE(4781)] = 169470, - [SMALL_STATE(4782)] = 169498, - [SMALL_STATE(4783)] = 169526, - [SMALL_STATE(4784)] = 169544, - [SMALL_STATE(4785)] = 169572, - [SMALL_STATE(4786)] = 169590, - [SMALL_STATE(4787)] = 169608, - [SMALL_STATE(4788)] = 169626, - [SMALL_STATE(4789)] = 169652, - [SMALL_STATE(4790)] = 169670, - [SMALL_STATE(4791)] = 169688, - [SMALL_STATE(4792)] = 169712, - [SMALL_STATE(4793)] = 169730, - [SMALL_STATE(4794)] = 169748, - [SMALL_STATE(4795)] = 169766, - [SMALL_STATE(4796)] = 169794, - [SMALL_STATE(4797)] = 169820, - [SMALL_STATE(4798)] = 169842, - [SMALL_STATE(4799)] = 169864, - [SMALL_STATE(4800)] = 169892, - [SMALL_STATE(4801)] = 169918, - [SMALL_STATE(4802)] = 169946, - [SMALL_STATE(4803)] = 169974, - [SMALL_STATE(4804)] = 170002, - [SMALL_STATE(4805)] = 170024, - [SMALL_STATE(4806)] = 170046, - [SMALL_STATE(4807)] = 170072, - [SMALL_STATE(4808)] = 170090, - [SMALL_STATE(4809)] = 170118, - [SMALL_STATE(4810)] = 170136, - [SMALL_STATE(4811)] = 170164, - [SMALL_STATE(4812)] = 170192, - [SMALL_STATE(4813)] = 170220, - [SMALL_STATE(4814)] = 170246, - [SMALL_STATE(4815)] = 170272, - [SMALL_STATE(4816)] = 170294, - [SMALL_STATE(4817)] = 170322, - [SMALL_STATE(4818)] = 170350, - [SMALL_STATE(4819)] = 170376, - [SMALL_STATE(4820)] = 170398, - [SMALL_STATE(4821)] = 170426, - [SMALL_STATE(4822)] = 170454, - [SMALL_STATE(4823)] = 170482, - [SMALL_STATE(4824)] = 170510, - [SMALL_STATE(4825)] = 170538, - [SMALL_STATE(4826)] = 170558, - [SMALL_STATE(4827)] = 170586, - [SMALL_STATE(4828)] = 170610, - [SMALL_STATE(4829)] = 170628, - [SMALL_STATE(4830)] = 170656, - [SMALL_STATE(4831)] = 170684, - [SMALL_STATE(4832)] = 170702, - [SMALL_STATE(4833)] = 170722, - [SMALL_STATE(4834)] = 170750, - [SMALL_STATE(4835)] = 170768, - [SMALL_STATE(4836)] = 170796, - [SMALL_STATE(4837)] = 170824, - [SMALL_STATE(4838)] = 170850, - [SMALL_STATE(4839)] = 170878, - [SMALL_STATE(4840)] = 170900, - [SMALL_STATE(4841)] = 170926, - [SMALL_STATE(4842)] = 170954, - [SMALL_STATE(4843)] = 170982, - [SMALL_STATE(4844)] = 171010, - [SMALL_STATE(4845)] = 171035, - [SMALL_STATE(4846)] = 171056, - [SMALL_STATE(4847)] = 171077, - [SMALL_STATE(4848)] = 171094, - [SMALL_STATE(4849)] = 171119, - [SMALL_STATE(4850)] = 171136, - [SMALL_STATE(4851)] = 171161, - [SMALL_STATE(4852)] = 171182, - [SMALL_STATE(4853)] = 171199, - [SMALL_STATE(4854)] = 171220, - [SMALL_STATE(4855)] = 171245, - [SMALL_STATE(4856)] = 171266, - [SMALL_STATE(4857)] = 171291, - [SMALL_STATE(4858)] = 171308, - [SMALL_STATE(4859)] = 171325, - [SMALL_STATE(4860)] = 171342, - [SMALL_STATE(4861)] = 171363, - [SMALL_STATE(4862)] = 171388, - [SMALL_STATE(4863)] = 171405, - [SMALL_STATE(4864)] = 171422, - [SMALL_STATE(4865)] = 171447, - [SMALL_STATE(4866)] = 171472, - [SMALL_STATE(4867)] = 171489, - [SMALL_STATE(4868)] = 171510, - [SMALL_STATE(4869)] = 171527, - [SMALL_STATE(4870)] = 171552, - [SMALL_STATE(4871)] = 171569, - [SMALL_STATE(4872)] = 171594, - [SMALL_STATE(4873)] = 171615, - [SMALL_STATE(4874)] = 171640, - [SMALL_STATE(4875)] = 171661, - [SMALL_STATE(4876)] = 171686, - [SMALL_STATE(4877)] = 171711, - [SMALL_STATE(4878)] = 171732, - [SMALL_STATE(4879)] = 171749, - [SMALL_STATE(4880)] = 171770, - [SMALL_STATE(4881)] = 171787, - [SMALL_STATE(4882)] = 171808, - [SMALL_STATE(4883)] = 171829, - [SMALL_STATE(4884)] = 171850, - [SMALL_STATE(4885)] = 171871, - [SMALL_STATE(4886)] = 171896, - [SMALL_STATE(4887)] = 171921, - [SMALL_STATE(4888)] = 171946, - [SMALL_STATE(4889)] = 171967, - [SMALL_STATE(4890)] = 171988, - [SMALL_STATE(4891)] = 172005, - [SMALL_STATE(4892)] = 172030, - [SMALL_STATE(4893)] = 172051, - [SMALL_STATE(4894)] = 172068, - [SMALL_STATE(4895)] = 172089, - [SMALL_STATE(4896)] = 172106, - [SMALL_STATE(4897)] = 172123, - [SMALL_STATE(4898)] = 172144, - [SMALL_STATE(4899)] = 172165, - [SMALL_STATE(4900)] = 172182, - [SMALL_STATE(4901)] = 172199, - [SMALL_STATE(4902)] = 172220, - [SMALL_STATE(4903)] = 172241, - [SMALL_STATE(4904)] = 172262, - [SMALL_STATE(4905)] = 172279, - [SMALL_STATE(4906)] = 172300, - [SMALL_STATE(4907)] = 172317, - [SMALL_STATE(4908)] = 172342, - [SMALL_STATE(4909)] = 172363, - [SMALL_STATE(4910)] = 172388, - [SMALL_STATE(4911)] = 172409, - [SMALL_STATE(4912)] = 172430, - [SMALL_STATE(4913)] = 172451, - [SMALL_STATE(4914)] = 172476, - [SMALL_STATE(4915)] = 172501, - [SMALL_STATE(4916)] = 172518, - [SMALL_STATE(4917)] = 172535, - [SMALL_STATE(4918)] = 172556, - [SMALL_STATE(4919)] = 172581, - [SMALL_STATE(4920)] = 172606, - [SMALL_STATE(4921)] = 172627, - [SMALL_STATE(4922)] = 172652, - [SMALL_STATE(4923)] = 172677, - [SMALL_STATE(4924)] = 172698, - [SMALL_STATE(4925)] = 172723, - [SMALL_STATE(4926)] = 172744, - [SMALL_STATE(4927)] = 172761, - [SMALL_STATE(4928)] = 172782, - [SMALL_STATE(4929)] = 172807, - [SMALL_STATE(4930)] = 172828, - [SMALL_STATE(4931)] = 172853, - [SMALL_STATE(4932)] = 172878, - [SMALL_STATE(4933)] = 172899, - [SMALL_STATE(4934)] = 172924, - [SMALL_STATE(4935)] = 172949, - [SMALL_STATE(4936)] = 172966, - [SMALL_STATE(4937)] = 172987, - [SMALL_STATE(4938)] = 173004, - [SMALL_STATE(4939)] = 173029, - [SMALL_STATE(4940)] = 173050, - [SMALL_STATE(4941)] = 173071, - [SMALL_STATE(4942)] = 173096, - [SMALL_STATE(4943)] = 173117, - [SMALL_STATE(4944)] = 173134, - [SMALL_STATE(4945)] = 173151, - [SMALL_STATE(4946)] = 173168, - [SMALL_STATE(4947)] = 173185, - [SMALL_STATE(4948)] = 173206, - [SMALL_STATE(4949)] = 173223, - [SMALL_STATE(4950)] = 173244, - [SMALL_STATE(4951)] = 173269, - [SMALL_STATE(4952)] = 173290, - [SMALL_STATE(4953)] = 173307, - [SMALL_STATE(4954)] = 173328, - [SMALL_STATE(4955)] = 173353, - [SMALL_STATE(4956)] = 173378, - [SMALL_STATE(4957)] = 173395, - [SMALL_STATE(4958)] = 173416, - [SMALL_STATE(4959)] = 173437, - [SMALL_STATE(4960)] = 173458, - [SMALL_STATE(4961)] = 173483, - [SMALL_STATE(4962)] = 173504, - [SMALL_STATE(4963)] = 173529, - [SMALL_STATE(4964)] = 173546, - [SMALL_STATE(4965)] = 173563, - [SMALL_STATE(4966)] = 173584, - [SMALL_STATE(4967)] = 173605, - [SMALL_STATE(4968)] = 173622, - [SMALL_STATE(4969)] = 173639, - [SMALL_STATE(4970)] = 173660, - [SMALL_STATE(4971)] = 173677, - [SMALL_STATE(4972)] = 173698, - [SMALL_STATE(4973)] = 173715, - [SMALL_STATE(4974)] = 173736, - [SMALL_STATE(4975)] = 173753, - [SMALL_STATE(4976)] = 173774, - [SMALL_STATE(4977)] = 173799, - [SMALL_STATE(4978)] = 173820, - [SMALL_STATE(4979)] = 173837, - [SMALL_STATE(4980)] = 173862, - [SMALL_STATE(4981)] = 173887, - [SMALL_STATE(4982)] = 173912, - [SMALL_STATE(4983)] = 173935, - [SMALL_STATE(4984)] = 173952, - [SMALL_STATE(4985)] = 173973, - [SMALL_STATE(4986)] = 173998, - [SMALL_STATE(4987)] = 174019, - [SMALL_STATE(4988)] = 174038, - [SMALL_STATE(4989)] = 174061, - [SMALL_STATE(4990)] = 174082, - [SMALL_STATE(4991)] = 174099, - [SMALL_STATE(4992)] = 174124, - [SMALL_STATE(4993)] = 174145, - [SMALL_STATE(4994)] = 174162, - [SMALL_STATE(4995)] = 174183, - [SMALL_STATE(4996)] = 174200, - [SMALL_STATE(4997)] = 174217, - [SMALL_STATE(4998)] = 174238, - [SMALL_STATE(4999)] = 174263, - [SMALL_STATE(5000)] = 174288, - [SMALL_STATE(5001)] = 174313, - [SMALL_STATE(5002)] = 174334, - [SMALL_STATE(5003)] = 174355, - [SMALL_STATE(5004)] = 174380, - [SMALL_STATE(5005)] = 174397, - [SMALL_STATE(5006)] = 174418, - [SMALL_STATE(5007)] = 174443, - [SMALL_STATE(5008)] = 174468, - [SMALL_STATE(5009)] = 174489, - [SMALL_STATE(5010)] = 174514, - [SMALL_STATE(5011)] = 174535, - [SMALL_STATE(5012)] = 174560, - [SMALL_STATE(5013)] = 174577, - [SMALL_STATE(5014)] = 174602, - [SMALL_STATE(5015)] = 174627, - [SMALL_STATE(5016)] = 174652, - [SMALL_STATE(5017)] = 174677, - [SMALL_STATE(5018)] = 174702, - [SMALL_STATE(5019)] = 174723, - [SMALL_STATE(5020)] = 174744, - [SMALL_STATE(5021)] = 174769, - [SMALL_STATE(5022)] = 174790, - [SMALL_STATE(5023)] = 174815, - [SMALL_STATE(5024)] = 174836, - [SMALL_STATE(5025)] = 174853, - [SMALL_STATE(5026)] = 174874, - [SMALL_STATE(5027)] = 174891, - [SMALL_STATE(5028)] = 174916, - [SMALL_STATE(5029)] = 174941, - [SMALL_STATE(5030)] = 174966, - [SMALL_STATE(5031)] = 174987, - [SMALL_STATE(5032)] = 175008, - [SMALL_STATE(5033)] = 175033, - [SMALL_STATE(5034)] = 175058, - [SMALL_STATE(5035)] = 175083, - [SMALL_STATE(5036)] = 175108, - [SMALL_STATE(5037)] = 175129, - [SMALL_STATE(5038)] = 175154, - [SMALL_STATE(5039)] = 175171, - [SMALL_STATE(5040)] = 175188, - [SMALL_STATE(5041)] = 175209, - [SMALL_STATE(5042)] = 175234, - [SMALL_STATE(5043)] = 175255, - [SMALL_STATE(5044)] = 175280, - [SMALL_STATE(5045)] = 175297, - [SMALL_STATE(5046)] = 175322, - [SMALL_STATE(5047)] = 175345, - [SMALL_STATE(5048)] = 175370, - [SMALL_STATE(5049)] = 175391, - [SMALL_STATE(5050)] = 175408, - [SMALL_STATE(5051)] = 175433, - [SMALL_STATE(5052)] = 175450, - [SMALL_STATE(5053)] = 175467, - [SMALL_STATE(5054)] = 175488, - [SMALL_STATE(5055)] = 175509, - [SMALL_STATE(5056)] = 175526, - [SMALL_STATE(5057)] = 175547, - [SMALL_STATE(5058)] = 175572, - [SMALL_STATE(5059)] = 175589, - [SMALL_STATE(5060)] = 175610, - [SMALL_STATE(5061)] = 175635, - [SMALL_STATE(5062)] = 175652, - [SMALL_STATE(5063)] = 175677, - [SMALL_STATE(5064)] = 175702, - [SMALL_STATE(5065)] = 175719, - [SMALL_STATE(5066)] = 175742, - [SMALL_STATE(5067)] = 175763, - [SMALL_STATE(5068)] = 175780, - [SMALL_STATE(5069)] = 175805, - [SMALL_STATE(5070)] = 175830, - [SMALL_STATE(5071)] = 175847, - [SMALL_STATE(5072)] = 175864, - [SMALL_STATE(5073)] = 175881, - [SMALL_STATE(5074)] = 175904, - [SMALL_STATE(5075)] = 175927, - [SMALL_STATE(5076)] = 175944, - [SMALL_STATE(5077)] = 175961, - [SMALL_STATE(5078)] = 175982, - [SMALL_STATE(5079)] = 176003, - [SMALL_STATE(5080)] = 176020, - [SMALL_STATE(5081)] = 176037, - [SMALL_STATE(5082)] = 176054, - [SMALL_STATE(5083)] = 176071, - [SMALL_STATE(5084)] = 176088, - [SMALL_STATE(5085)] = 176105, - [SMALL_STATE(5086)] = 176130, - [SMALL_STATE(5087)] = 176147, - [SMALL_STATE(5088)] = 176164, - [SMALL_STATE(5089)] = 176181, - [SMALL_STATE(5090)] = 176202, - [SMALL_STATE(5091)] = 176223, - [SMALL_STATE(5092)] = 176244, - [SMALL_STATE(5093)] = 176261, - [SMALL_STATE(5094)] = 176286, - [SMALL_STATE(5095)] = 176311, - [SMALL_STATE(5096)] = 176328, - [SMALL_STATE(5097)] = 176345, - [SMALL_STATE(5098)] = 176370, - [SMALL_STATE(5099)] = 176387, - [SMALL_STATE(5100)] = 176410, - [SMALL_STATE(5101)] = 176431, - [SMALL_STATE(5102)] = 176454, - [SMALL_STATE(5103)] = 176479, - [SMALL_STATE(5104)] = 176500, - [SMALL_STATE(5105)] = 176521, - [SMALL_STATE(5106)] = 176538, - [SMALL_STATE(5107)] = 176563, - [SMALL_STATE(5108)] = 176588, - [SMALL_STATE(5109)] = 176613, - [SMALL_STATE(5110)] = 176630, - [SMALL_STATE(5111)] = 176651, - [SMALL_STATE(5112)] = 176676, - [SMALL_STATE(5113)] = 176697, - [SMALL_STATE(5114)] = 176714, - [SMALL_STATE(5115)] = 176739, - [SMALL_STATE(5116)] = 176756, - [SMALL_STATE(5117)] = 176773, - [SMALL_STATE(5118)] = 176790, - [SMALL_STATE(5119)] = 176811, - [SMALL_STATE(5120)] = 176836, - [SMALL_STATE(5121)] = 176857, - [SMALL_STATE(5122)] = 176874, - [SMALL_STATE(5123)] = 176897, - [SMALL_STATE(5124)] = 176922, - [SMALL_STATE(5125)] = 176947, - [SMALL_STATE(5126)] = 176968, - [SMALL_STATE(5127)] = 176989, - [SMALL_STATE(5128)] = 177006, - [SMALL_STATE(5129)] = 177031, - [SMALL_STATE(5130)] = 177052, - [SMALL_STATE(5131)] = 177069, - [SMALL_STATE(5132)] = 177094, - [SMALL_STATE(5133)] = 177111, - [SMALL_STATE(5134)] = 177132, - [SMALL_STATE(5135)] = 177149, - [SMALL_STATE(5136)] = 177166, - [SMALL_STATE(5137)] = 177183, - [SMALL_STATE(5138)] = 177208, - [SMALL_STATE(5139)] = 177225, - [SMALL_STATE(5140)] = 177250, - [SMALL_STATE(5141)] = 177267, - [SMALL_STATE(5142)] = 177292, - [SMALL_STATE(5143)] = 177317, - [SMALL_STATE(5144)] = 177334, - [SMALL_STATE(5145)] = 177351, - [SMALL_STATE(5146)] = 177372, - [SMALL_STATE(5147)] = 177389, - [SMALL_STATE(5148)] = 177406, - [SMALL_STATE(5149)] = 177431, - [SMALL_STATE(5150)] = 177452, - [SMALL_STATE(5151)] = 177469, - [SMALL_STATE(5152)] = 177494, - [SMALL_STATE(5153)] = 177515, - [SMALL_STATE(5154)] = 177536, - [SMALL_STATE(5155)] = 177561, - [SMALL_STATE(5156)] = 177582, - [SMALL_STATE(5157)] = 177599, - [SMALL_STATE(5158)] = 177624, - [SMALL_STATE(5159)] = 177641, - [SMALL_STATE(5160)] = 177658, - [SMALL_STATE(5161)] = 177675, - [SMALL_STATE(5162)] = 177700, - [SMALL_STATE(5163)] = 177725, - [SMALL_STATE(5164)] = 177746, - [SMALL_STATE(5165)] = 177767, - [SMALL_STATE(5166)] = 177788, - [SMALL_STATE(5167)] = 177809, - [SMALL_STATE(5168)] = 177830, - [SMALL_STATE(5169)] = 177851, - [SMALL_STATE(5170)] = 177868, - [SMALL_STATE(5171)] = 177885, - [SMALL_STATE(5172)] = 177902, - [SMALL_STATE(5173)] = 177923, - [SMALL_STATE(5174)] = 177948, - [SMALL_STATE(5175)] = 177969, - [SMALL_STATE(5176)] = 177986, - [SMALL_STATE(5177)] = 178011, - [SMALL_STATE(5178)] = 178028, - [SMALL_STATE(5179)] = 178049, - [SMALL_STATE(5180)] = 178066, - [SMALL_STATE(5181)] = 178087, - [SMALL_STATE(5182)] = 178112, - [SMALL_STATE(5183)] = 178133, - [SMALL_STATE(5184)] = 178150, - [SMALL_STATE(5185)] = 178167, - [SMALL_STATE(5186)] = 178188, - [SMALL_STATE(5187)] = 178205, - [SMALL_STATE(5188)] = 178222, - [SMALL_STATE(5189)] = 178239, - [SMALL_STATE(5190)] = 178260, - [SMALL_STATE(5191)] = 178277, - [SMALL_STATE(5192)] = 178302, - [SMALL_STATE(5193)] = 178327, - [SMALL_STATE(5194)] = 178348, - [SMALL_STATE(5195)] = 178365, - [SMALL_STATE(5196)] = 178390, - [SMALL_STATE(5197)] = 178415, - [SMALL_STATE(5198)] = 178440, - [SMALL_STATE(5199)] = 178465, - [SMALL_STATE(5200)] = 178490, - [SMALL_STATE(5201)] = 178509, - [SMALL_STATE(5202)] = 178534, - [SMALL_STATE(5203)] = 178557, - [SMALL_STATE(5204)] = 178582, - [SMALL_STATE(5205)] = 178607, - [SMALL_STATE(5206)] = 178624, - [SMALL_STATE(5207)] = 178641, - [SMALL_STATE(5208)] = 178666, - [SMALL_STATE(5209)] = 178691, - [SMALL_STATE(5210)] = 178716, - [SMALL_STATE(5211)] = 178737, - [SMALL_STATE(5212)] = 178758, - [SMALL_STATE(5213)] = 178777, - [SMALL_STATE(5214)] = 178798, - [SMALL_STATE(5215)] = 178815, - [SMALL_STATE(5216)] = 178834, - [SMALL_STATE(5217)] = 178851, - [SMALL_STATE(5218)] = 178876, - [SMALL_STATE(5219)] = 178897, - [SMALL_STATE(5220)] = 178922, - [SMALL_STATE(5221)] = 178943, - [SMALL_STATE(5222)] = 178962, - [SMALL_STATE(5223)] = 178983, - [SMALL_STATE(5224)] = 179004, - [SMALL_STATE(5225)] = 179029, - [SMALL_STATE(5226)] = 179050, - [SMALL_STATE(5227)] = 179075, - [SMALL_STATE(5228)] = 179098, - [SMALL_STATE(5229)] = 179119, - [SMALL_STATE(5230)] = 179140, - [SMALL_STATE(5231)] = 179161, - [SMALL_STATE(5232)] = 179182, - [SMALL_STATE(5233)] = 179207, - [SMALL_STATE(5234)] = 179230, - [SMALL_STATE(5235)] = 179251, - [SMALL_STATE(5236)] = 179272, - [SMALL_STATE(5237)] = 179293, - [SMALL_STATE(5238)] = 179314, - [SMALL_STATE(5239)] = 179335, - [SMALL_STATE(5240)] = 179356, - [SMALL_STATE(5241)] = 179377, - [SMALL_STATE(5242)] = 179394, - [SMALL_STATE(5243)] = 179415, - [SMALL_STATE(5244)] = 179432, - [SMALL_STATE(5245)] = 179455, - [SMALL_STATE(5246)] = 179476, - [SMALL_STATE(5247)] = 179493, - [SMALL_STATE(5248)] = 179518, - [SMALL_STATE(5249)] = 179535, - [SMALL_STATE(5250)] = 179552, - [SMALL_STATE(5251)] = 179569, - [SMALL_STATE(5252)] = 179590, - [SMALL_STATE(5253)] = 179615, - [SMALL_STATE(5254)] = 179632, - [SMALL_STATE(5255)] = 179657, - [SMALL_STATE(5256)] = 179678, - [SMALL_STATE(5257)] = 179703, - [SMALL_STATE(5258)] = 179724, - [SMALL_STATE(5259)] = 179745, - [SMALL_STATE(5260)] = 179768, - [SMALL_STATE(5261)] = 179785, - [SMALL_STATE(5262)] = 179810, - [SMALL_STATE(5263)] = 179827, - [SMALL_STATE(5264)] = 179844, - [SMALL_STATE(5265)] = 179861, - [SMALL_STATE(5266)] = 179878, - [SMALL_STATE(5267)] = 179903, - [SMALL_STATE(5268)] = 179928, - [SMALL_STATE(5269)] = 179951, - [SMALL_STATE(5270)] = 179968, - [SMALL_STATE(5271)] = 179989, - [SMALL_STATE(5272)] = 180014, - [SMALL_STATE(5273)] = 180031, - [SMALL_STATE(5274)] = 180052, - [SMALL_STATE(5275)] = 180077, - [SMALL_STATE(5276)] = 180094, - [SMALL_STATE(5277)] = 180115, - [SMALL_STATE(5278)] = 180132, - [SMALL_STATE(5279)] = 180149, - [SMALL_STATE(5280)] = 180174, - [SMALL_STATE(5281)] = 180191, - [SMALL_STATE(5282)] = 180208, - [SMALL_STATE(5283)] = 180229, - [SMALL_STATE(5284)] = 180246, - [SMALL_STATE(5285)] = 180267, - [SMALL_STATE(5286)] = 180284, - [SMALL_STATE(5287)] = 180301, - [SMALL_STATE(5288)] = 180322, - [SMALL_STATE(5289)] = 180343, - [SMALL_STATE(5290)] = 180360, - [SMALL_STATE(5291)] = 180377, - [SMALL_STATE(5292)] = 180402, - [SMALL_STATE(5293)] = 180419, - [SMALL_STATE(5294)] = 180444, - [SMALL_STATE(5295)] = 180461, - [SMALL_STATE(5296)] = 180478, - [SMALL_STATE(5297)] = 180495, - [SMALL_STATE(5298)] = 180516, - [SMALL_STATE(5299)] = 180533, - [SMALL_STATE(5300)] = 180558, - [SMALL_STATE(5301)] = 180575, - [SMALL_STATE(5302)] = 180600, - [SMALL_STATE(5303)] = 180621, - [SMALL_STATE(5304)] = 180642, - [SMALL_STATE(5305)] = 180659, - [SMALL_STATE(5306)] = 180680, - [SMALL_STATE(5307)] = 180705, - [SMALL_STATE(5308)] = 180722, - [SMALL_STATE(5309)] = 180739, - [SMALL_STATE(5310)] = 180756, - [SMALL_STATE(5311)] = 180777, - [SMALL_STATE(5312)] = 180798, - [SMALL_STATE(5313)] = 180819, - [SMALL_STATE(5314)] = 180844, - [SMALL_STATE(5315)] = 180867, - [SMALL_STATE(5316)] = 180884, - [SMALL_STATE(5317)] = 180905, - [SMALL_STATE(5318)] = 180922, - [SMALL_STATE(5319)] = 180939, - [SMALL_STATE(5320)] = 180960, - [SMALL_STATE(5321)] = 180983, - [SMALL_STATE(5322)] = 181004, - [SMALL_STATE(5323)] = 181025, - [SMALL_STATE(5324)] = 181046, - [SMALL_STATE(5325)] = 181063, - [SMALL_STATE(5326)] = 181084, - [SMALL_STATE(5327)] = 181101, - [SMALL_STATE(5328)] = 181122, - [SMALL_STATE(5329)] = 181143, - [SMALL_STATE(5330)] = 181164, - [SMALL_STATE(5331)] = 181181, - [SMALL_STATE(5332)] = 181202, - [SMALL_STATE(5333)] = 181223, - [SMALL_STATE(5334)] = 181244, - [SMALL_STATE(5335)] = 181267, - [SMALL_STATE(5336)] = 181284, - [SMALL_STATE(5337)] = 181309, - [SMALL_STATE(5338)] = 181326, - [SMALL_STATE(5339)] = 181343, - [SMALL_STATE(5340)] = 181368, - [SMALL_STATE(5341)] = 181389, - [SMALL_STATE(5342)] = 181410, - [SMALL_STATE(5343)] = 181431, - [SMALL_STATE(5344)] = 181454, - [SMALL_STATE(5345)] = 181479, - [SMALL_STATE(5346)] = 181504, - [SMALL_STATE(5347)] = 181529, - [SMALL_STATE(5348)] = 181546, - [SMALL_STATE(5349)] = 181567, - [SMALL_STATE(5350)] = 181584, - [SMALL_STATE(5351)] = 181605, - [SMALL_STATE(5352)] = 181622, - [SMALL_STATE(5353)] = 181643, - [SMALL_STATE(5354)] = 181666, - [SMALL_STATE(5355)] = 181691, - [SMALL_STATE(5356)] = 181712, - [SMALL_STATE(5357)] = 181733, - [SMALL_STATE(5358)] = 181758, - [SMALL_STATE(5359)] = 181775, - [SMALL_STATE(5360)] = 181792, - [SMALL_STATE(5361)] = 181813, - [SMALL_STATE(5362)] = 181834, - [SMALL_STATE(5363)] = 181855, - [SMALL_STATE(5364)] = 181872, - [SMALL_STATE(5365)] = 181889, - [SMALL_STATE(5366)] = 181910, - [SMALL_STATE(5367)] = 181931, - [SMALL_STATE(5368)] = 181952, - [SMALL_STATE(5369)] = 181969, - [SMALL_STATE(5370)] = 181994, - [SMALL_STATE(5371)] = 182019, - [SMALL_STATE(5372)] = 182044, - [SMALL_STATE(5373)] = 182069, - [SMALL_STATE(5374)] = 182090, - [SMALL_STATE(5375)] = 182107, - [SMALL_STATE(5376)] = 182128, - [SMALL_STATE(5377)] = 182149, - [SMALL_STATE(5378)] = 182174, - [SMALL_STATE(5379)] = 182191, - [SMALL_STATE(5380)] = 182212, - [SMALL_STATE(5381)] = 182237, - [SMALL_STATE(5382)] = 182262, - [SMALL_STATE(5383)] = 182287, - [SMALL_STATE(5384)] = 182310, - [SMALL_STATE(5385)] = 182331, - [SMALL_STATE(5386)] = 182356, - [SMALL_STATE(5387)] = 182379, - [SMALL_STATE(5388)] = 182396, - [SMALL_STATE(5389)] = 182417, - [SMALL_STATE(5390)] = 182440, - [SMALL_STATE(5391)] = 182465, - [SMALL_STATE(5392)] = 182482, - [SMALL_STATE(5393)] = 182499, - [SMALL_STATE(5394)] = 182520, - [SMALL_STATE(5395)] = 182543, - [SMALL_STATE(5396)] = 182566, - [SMALL_STATE(5397)] = 182583, - [SMALL_STATE(5398)] = 182606, - [SMALL_STATE(5399)] = 182631, - [SMALL_STATE(5400)] = 182652, - [SMALL_STATE(5401)] = 182673, - [SMALL_STATE(5402)] = 182692, - [SMALL_STATE(5403)] = 182717, - [SMALL_STATE(5404)] = 182734, - [SMALL_STATE(5405)] = 182751, - [SMALL_STATE(5406)] = 182768, - [SMALL_STATE(5407)] = 182791, - [SMALL_STATE(5408)] = 182812, - [SMALL_STATE(5409)] = 182832, - [SMALL_STATE(5410)] = 182852, - [SMALL_STATE(5411)] = 182868, - [SMALL_STATE(5412)] = 182888, - [SMALL_STATE(5413)] = 182910, - [SMALL_STATE(5414)] = 182930, - [SMALL_STATE(5415)] = 182950, - [SMALL_STATE(5416)] = 182970, - [SMALL_STATE(5417)] = 182990, - [SMALL_STATE(5418)] = 183012, - [SMALL_STATE(5419)] = 183032, - [SMALL_STATE(5420)] = 183052, - [SMALL_STATE(5421)] = 183072, - [SMALL_STATE(5422)] = 183094, - [SMALL_STATE(5423)] = 183116, - [SMALL_STATE(5424)] = 183138, - [SMALL_STATE(5425)] = 183160, - [SMALL_STATE(5426)] = 183180, - [SMALL_STATE(5427)] = 183202, - [SMALL_STATE(5428)] = 183220, - [SMALL_STATE(5429)] = 183242, - [SMALL_STATE(5430)] = 183262, - [SMALL_STATE(5431)] = 183282, - [SMALL_STATE(5432)] = 183302, - [SMALL_STATE(5433)] = 183322, - [SMALL_STATE(5434)] = 183344, - [SMALL_STATE(5435)] = 183364, - [SMALL_STATE(5436)] = 183384, - [SMALL_STATE(5437)] = 183404, - [SMALL_STATE(5438)] = 183426, - [SMALL_STATE(5439)] = 183448, - [SMALL_STATE(5440)] = 183468, - [SMALL_STATE(5441)] = 183486, - [SMALL_STATE(5442)] = 183508, - [SMALL_STATE(5443)] = 183528, - [SMALL_STATE(5444)] = 183548, - [SMALL_STATE(5445)] = 183570, - [SMALL_STATE(5446)] = 183592, - [SMALL_STATE(5447)] = 183614, - [SMALL_STATE(5448)] = 183632, - [SMALL_STATE(5449)] = 183654, - [SMALL_STATE(5450)] = 183676, - [SMALL_STATE(5451)] = 183696, - [SMALL_STATE(5452)] = 183718, - [SMALL_STATE(5453)] = 183738, - [SMALL_STATE(5454)] = 183760, - [SMALL_STATE(5455)] = 183780, - [SMALL_STATE(5456)] = 183800, - [SMALL_STATE(5457)] = 183822, - [SMALL_STATE(5458)] = 183842, - [SMALL_STATE(5459)] = 183862, - [SMALL_STATE(5460)] = 183882, - [SMALL_STATE(5461)] = 183902, - [SMALL_STATE(5462)] = 183922, - [SMALL_STATE(5463)] = 183944, - [SMALL_STATE(5464)] = 183966, - [SMALL_STATE(5465)] = 183986, - [SMALL_STATE(5466)] = 184006, - [SMALL_STATE(5467)] = 184026, - [SMALL_STATE(5468)] = 184048, - [SMALL_STATE(5469)] = 184070, - [SMALL_STATE(5470)] = 184086, - [SMALL_STATE(5471)] = 184108, - [SMALL_STATE(5472)] = 184130, - [SMALL_STATE(5473)] = 184152, - [SMALL_STATE(5474)] = 184172, - [SMALL_STATE(5475)] = 184194, - [SMALL_STATE(5476)] = 184214, - [SMALL_STATE(5477)] = 184234, - [SMALL_STATE(5478)] = 184256, - [SMALL_STATE(5479)] = 184276, - [SMALL_STATE(5480)] = 184296, - [SMALL_STATE(5481)] = 184318, - [SMALL_STATE(5482)] = 184338, - [SMALL_STATE(5483)] = 184358, - [SMALL_STATE(5484)] = 184378, - [SMALL_STATE(5485)] = 184398, - [SMALL_STATE(5486)] = 184418, - [SMALL_STATE(5487)] = 184440, - [SMALL_STATE(5488)] = 184462, - [SMALL_STATE(5489)] = 184484, - [SMALL_STATE(5490)] = 184506, - [SMALL_STATE(5491)] = 184526, - [SMALL_STATE(5492)] = 184546, - [SMALL_STATE(5493)] = 184566, - [SMALL_STATE(5494)] = 184586, - [SMALL_STATE(5495)] = 184606, - [SMALL_STATE(5496)] = 184626, - [SMALL_STATE(5497)] = 184648, - [SMALL_STATE(5498)] = 184670, - [SMALL_STATE(5499)] = 184690, - [SMALL_STATE(5500)] = 184710, - [SMALL_STATE(5501)] = 184732, - [SMALL_STATE(5502)] = 184750, - [SMALL_STATE(5503)] = 184770, - [SMALL_STATE(5504)] = 184790, - [SMALL_STATE(5505)] = 184812, - [SMALL_STATE(5506)] = 184832, - [SMALL_STATE(5507)] = 184852, - [SMALL_STATE(5508)] = 184872, - [SMALL_STATE(5509)] = 184894, - [SMALL_STATE(5510)] = 184914, - [SMALL_STATE(5511)] = 184934, - [SMALL_STATE(5512)] = 184954, - [SMALL_STATE(5513)] = 184974, - [SMALL_STATE(5514)] = 184994, - [SMALL_STATE(5515)] = 185010, - [SMALL_STATE(5516)] = 185032, - [SMALL_STATE(5517)] = 185052, - [SMALL_STATE(5518)] = 185072, - [SMALL_STATE(5519)] = 185092, - [SMALL_STATE(5520)] = 185112, - [SMALL_STATE(5521)] = 185132, - [SMALL_STATE(5522)] = 185152, - [SMALL_STATE(5523)] = 185172, - [SMALL_STATE(5524)] = 185192, - [SMALL_STATE(5525)] = 185214, - [SMALL_STATE(5526)] = 185236, - [SMALL_STATE(5527)] = 185256, - [SMALL_STATE(5528)] = 185276, - [SMALL_STATE(5529)] = 185298, - [SMALL_STATE(5530)] = 185318, - [SMALL_STATE(5531)] = 185340, - [SMALL_STATE(5532)] = 185360, - [SMALL_STATE(5533)] = 185382, - [SMALL_STATE(5534)] = 185402, - [SMALL_STATE(5535)] = 185422, - [SMALL_STATE(5536)] = 185442, - [SMALL_STATE(5537)] = 185464, - [SMALL_STATE(5538)] = 185484, - [SMALL_STATE(5539)] = 185504, - [SMALL_STATE(5540)] = 185524, - [SMALL_STATE(5541)] = 185544, - [SMALL_STATE(5542)] = 185564, - [SMALL_STATE(5543)] = 185584, - [SMALL_STATE(5544)] = 185604, - [SMALL_STATE(5545)] = 185624, - [SMALL_STATE(5546)] = 185644, - [SMALL_STATE(5547)] = 185660, - [SMALL_STATE(5548)] = 185680, - [SMALL_STATE(5549)] = 185702, - [SMALL_STATE(5550)] = 185722, - [SMALL_STATE(5551)] = 185742, - [SMALL_STATE(5552)] = 185758, - [SMALL_STATE(5553)] = 185774, - [SMALL_STATE(5554)] = 185794, - [SMALL_STATE(5555)] = 185816, - [SMALL_STATE(5556)] = 185836, - [SMALL_STATE(5557)] = 185858, - [SMALL_STATE(5558)] = 185880, - [SMALL_STATE(5559)] = 185902, - [SMALL_STATE(5560)] = 185922, - [SMALL_STATE(5561)] = 185942, - [SMALL_STATE(5562)] = 185964, - [SMALL_STATE(5563)] = 185984, - [SMALL_STATE(5564)] = 186006, - [SMALL_STATE(5565)] = 186028, - [SMALL_STATE(5566)] = 186048, - [SMALL_STATE(5567)] = 186070, - [SMALL_STATE(5568)] = 186090, - [SMALL_STATE(5569)] = 186110, - [SMALL_STATE(5570)] = 186130, - [SMALL_STATE(5571)] = 186150, - [SMALL_STATE(5572)] = 186170, - [SMALL_STATE(5573)] = 186190, - [SMALL_STATE(5574)] = 186210, - [SMALL_STATE(5575)] = 186232, - [SMALL_STATE(5576)] = 186252, - [SMALL_STATE(5577)] = 186272, - [SMALL_STATE(5578)] = 186292, - [SMALL_STATE(5579)] = 186312, - [SMALL_STATE(5580)] = 186332, - [SMALL_STATE(5581)] = 186354, - [SMALL_STATE(5582)] = 186374, - [SMALL_STATE(5583)] = 186394, - [SMALL_STATE(5584)] = 186414, - [SMALL_STATE(5585)] = 186436, - [SMALL_STATE(5586)] = 186458, - [SMALL_STATE(5587)] = 186478, - [SMALL_STATE(5588)] = 186498, - [SMALL_STATE(5589)] = 186520, - [SMALL_STATE(5590)] = 186542, - [SMALL_STATE(5591)] = 186564, - [SMALL_STATE(5592)] = 186584, - [SMALL_STATE(5593)] = 186606, - [SMALL_STATE(5594)] = 186626, - [SMALL_STATE(5595)] = 186648, - [SMALL_STATE(5596)] = 186666, - [SMALL_STATE(5597)] = 186688, - [SMALL_STATE(5598)] = 186706, - [SMALL_STATE(5599)] = 186724, - [SMALL_STATE(5600)] = 186746, - [SMALL_STATE(5601)] = 186768, - [SMALL_STATE(5602)] = 186788, - [SMALL_STATE(5603)] = 186810, - [SMALL_STATE(5604)] = 186832, - [SMALL_STATE(5605)] = 186852, - [SMALL_STATE(5606)] = 186874, - [SMALL_STATE(5607)] = 186896, - [SMALL_STATE(5608)] = 186918, - [SMALL_STATE(5609)] = 186938, - [SMALL_STATE(5610)] = 186956, - [SMALL_STATE(5611)] = 186978, - [SMALL_STATE(5612)] = 187000, - [SMALL_STATE(5613)] = 187016, - [SMALL_STATE(5614)] = 187032, - [SMALL_STATE(5615)] = 187050, - [SMALL_STATE(5616)] = 187072, - [SMALL_STATE(5617)] = 187092, - [SMALL_STATE(5618)] = 187112, - [SMALL_STATE(5619)] = 187134, - [SMALL_STATE(5620)] = 187154, - [SMALL_STATE(5621)] = 187176, - [SMALL_STATE(5622)] = 187198, - [SMALL_STATE(5623)] = 187218, - [SMALL_STATE(5624)] = 187234, - [SMALL_STATE(5625)] = 187256, - [SMALL_STATE(5626)] = 187274, - [SMALL_STATE(5627)] = 187292, - [SMALL_STATE(5628)] = 187312, - [SMALL_STATE(5629)] = 187332, - [SMALL_STATE(5630)] = 187352, - [SMALL_STATE(5631)] = 187374, - [SMALL_STATE(5632)] = 187394, - [SMALL_STATE(5633)] = 187414, - [SMALL_STATE(5634)] = 187434, - [SMALL_STATE(5635)] = 187454, - [SMALL_STATE(5636)] = 187474, - [SMALL_STATE(5637)] = 187496, - [SMALL_STATE(5638)] = 187518, - [SMALL_STATE(5639)] = 187540, - [SMALL_STATE(5640)] = 187560, - [SMALL_STATE(5641)] = 187580, - [SMALL_STATE(5642)] = 187597, - [SMALL_STATE(5643)] = 187616, - [SMALL_STATE(5644)] = 187635, - [SMALL_STATE(5645)] = 187650, - [SMALL_STATE(5646)] = 187665, - [SMALL_STATE(5647)] = 187680, - [SMALL_STATE(5648)] = 187695, - [SMALL_STATE(5649)] = 187714, - [SMALL_STATE(5650)] = 187729, - [SMALL_STATE(5651)] = 187744, - [SMALL_STATE(5652)] = 187763, - [SMALL_STATE(5653)] = 187782, - [SMALL_STATE(5654)] = 187797, - [SMALL_STATE(5655)] = 187816, - [SMALL_STATE(5656)] = 187831, - [SMALL_STATE(5657)] = 187846, - [SMALL_STATE(5658)] = 187861, - [SMALL_STATE(5659)] = 187876, - [SMALL_STATE(5660)] = 187891, - [SMALL_STATE(5661)] = 187910, - [SMALL_STATE(5662)] = 187925, - [SMALL_STATE(5663)] = 187940, - [SMALL_STATE(5664)] = 187959, - [SMALL_STATE(5665)] = 187974, - [SMALL_STATE(5666)] = 187989, - [SMALL_STATE(5667)] = 188008, - [SMALL_STATE(5668)] = 188027, - [SMALL_STATE(5669)] = 188046, - [SMALL_STATE(5670)] = 188065, - [SMALL_STATE(5671)] = 188084, - [SMALL_STATE(5672)] = 188099, - [SMALL_STATE(5673)] = 188114, - [SMALL_STATE(5674)] = 188129, - [SMALL_STATE(5675)] = 188144, - [SMALL_STATE(5676)] = 188159, - [SMALL_STATE(5677)] = 188174, - [SMALL_STATE(5678)] = 188191, - [SMALL_STATE(5679)] = 188210, - [SMALL_STATE(5680)] = 188225, - [SMALL_STATE(5681)] = 188244, - [SMALL_STATE(5682)] = 188259, - [SMALL_STATE(5683)] = 188274, - [SMALL_STATE(5684)] = 188289, - [SMALL_STATE(5685)] = 188304, - [SMALL_STATE(5686)] = 188319, - [SMALL_STATE(5687)] = 188334, - [SMALL_STATE(5688)] = 188349, - [SMALL_STATE(5689)] = 188364, - [SMALL_STATE(5690)] = 188379, - [SMALL_STATE(5691)] = 188394, - [SMALL_STATE(5692)] = 188409, - [SMALL_STATE(5693)] = 188428, - [SMALL_STATE(5694)] = 188445, - [SMALL_STATE(5695)] = 188464, - [SMALL_STATE(5696)] = 188481, - [SMALL_STATE(5697)] = 188498, - [SMALL_STATE(5698)] = 188513, - [SMALL_STATE(5699)] = 188528, - [SMALL_STATE(5700)] = 188543, - [SMALL_STATE(5701)] = 188558, - [SMALL_STATE(5702)] = 188573, - [SMALL_STATE(5703)] = 188588, - [SMALL_STATE(5704)] = 188603, - [SMALL_STATE(5705)] = 188618, - [SMALL_STATE(5706)] = 188633, - [SMALL_STATE(5707)] = 188652, - [SMALL_STATE(5708)] = 188667, - [SMALL_STATE(5709)] = 188682, - [SMALL_STATE(5710)] = 188697, - [SMALL_STATE(5711)] = 188716, - [SMALL_STATE(5712)] = 188731, - [SMALL_STATE(5713)] = 188746, - [SMALL_STATE(5714)] = 188761, - [SMALL_STATE(5715)] = 188778, - [SMALL_STATE(5716)] = 188795, - [SMALL_STATE(5717)] = 188814, - [SMALL_STATE(5718)] = 188829, - [SMALL_STATE(5719)] = 188844, - [SMALL_STATE(5720)] = 188859, - [SMALL_STATE(5721)] = 188878, - [SMALL_STATE(5722)] = 188893, - [SMALL_STATE(5723)] = 188912, - [SMALL_STATE(5724)] = 188931, - [SMALL_STATE(5725)] = 188950, - [SMALL_STATE(5726)] = 188965, - [SMALL_STATE(5727)] = 188984, - [SMALL_STATE(5728)] = 189003, - [SMALL_STATE(5729)] = 189018, - [SMALL_STATE(5730)] = 189033, - [SMALL_STATE(5731)] = 189052, - [SMALL_STATE(5732)] = 189067, - [SMALL_STATE(5733)] = 189086, - [SMALL_STATE(5734)] = 189101, - [SMALL_STATE(5735)] = 189116, - [SMALL_STATE(5736)] = 189131, - [SMALL_STATE(5737)] = 189146, - [SMALL_STATE(5738)] = 189165, - [SMALL_STATE(5739)] = 189180, - [SMALL_STATE(5740)] = 189199, - [SMALL_STATE(5741)] = 189218, - [SMALL_STATE(5742)] = 189233, - [SMALL_STATE(5743)] = 189248, - [SMALL_STATE(5744)] = 189267, - [SMALL_STATE(5745)] = 189282, - [SMALL_STATE(5746)] = 189297, - [SMALL_STATE(5747)] = 189312, - [SMALL_STATE(5748)] = 189327, - [SMALL_STATE(5749)] = 189344, - [SMALL_STATE(5750)] = 189359, - [SMALL_STATE(5751)] = 189374, - [SMALL_STATE(5752)] = 189389, - [SMALL_STATE(5753)] = 189404, - [SMALL_STATE(5754)] = 189423, - [SMALL_STATE(5755)] = 189438, - [SMALL_STATE(5756)] = 189457, - [SMALL_STATE(5757)] = 189472, - [SMALL_STATE(5758)] = 189491, - [SMALL_STATE(5759)] = 189506, - [SMALL_STATE(5760)] = 189525, - [SMALL_STATE(5761)] = 189540, - [SMALL_STATE(5762)] = 189559, - [SMALL_STATE(5763)] = 189574, - [SMALL_STATE(5764)] = 189593, - [SMALL_STATE(5765)] = 189608, - [SMALL_STATE(5766)] = 189623, - [SMALL_STATE(5767)] = 189638, - [SMALL_STATE(5768)] = 189653, - [SMALL_STATE(5769)] = 189672, - [SMALL_STATE(5770)] = 189687, - [SMALL_STATE(5771)] = 189706, - [SMALL_STATE(5772)] = 189721, - [SMALL_STATE(5773)] = 189736, - [SMALL_STATE(5774)] = 189755, - [SMALL_STATE(5775)] = 189774, - [SMALL_STATE(5776)] = 189789, - [SMALL_STATE(5777)] = 189808, - [SMALL_STATE(5778)] = 189827, - [SMALL_STATE(5779)] = 189844, - [SMALL_STATE(5780)] = 189859, - [SMALL_STATE(5781)] = 189874, - [SMALL_STATE(5782)] = 189891, - [SMALL_STATE(5783)] = 189906, - [SMALL_STATE(5784)] = 189925, - [SMALL_STATE(5785)] = 189940, - [SMALL_STATE(5786)] = 189959, - [SMALL_STATE(5787)] = 189974, - [SMALL_STATE(5788)] = 189989, - [SMALL_STATE(5789)] = 190004, - [SMALL_STATE(5790)] = 190019, - [SMALL_STATE(5791)] = 190034, - [SMALL_STATE(5792)] = 190049, - [SMALL_STATE(5793)] = 190068, - [SMALL_STATE(5794)] = 190083, - [SMALL_STATE(5795)] = 190102, - [SMALL_STATE(5796)] = 190117, - [SMALL_STATE(5797)] = 190132, - [SMALL_STATE(5798)] = 190147, - [SMALL_STATE(5799)] = 190162, - [SMALL_STATE(5800)] = 190177, - [SMALL_STATE(5801)] = 190192, - [SMALL_STATE(5802)] = 190207, - [SMALL_STATE(5803)] = 190224, - [SMALL_STATE(5804)] = 190239, - [SMALL_STATE(5805)] = 190258, - [SMALL_STATE(5806)] = 190273, - [SMALL_STATE(5807)] = 190288, - [SMALL_STATE(5808)] = 190303, - [SMALL_STATE(5809)] = 190318, - [SMALL_STATE(5810)] = 190333, - [SMALL_STATE(5811)] = 190350, - [SMALL_STATE(5812)] = 190369, - [SMALL_STATE(5813)] = 190384, - [SMALL_STATE(5814)] = 190399, - [SMALL_STATE(5815)] = 190414, - [SMALL_STATE(5816)] = 190429, - [SMALL_STATE(5817)] = 190448, - [SMALL_STATE(5818)] = 190463, - [SMALL_STATE(5819)] = 190482, - [SMALL_STATE(5820)] = 190499, - [SMALL_STATE(5821)] = 190514, - [SMALL_STATE(5822)] = 190529, - [SMALL_STATE(5823)] = 190548, - [SMALL_STATE(5824)] = 190563, - [SMALL_STATE(5825)] = 190580, - [SMALL_STATE(5826)] = 190595, - [SMALL_STATE(5827)] = 190610, - [SMALL_STATE(5828)] = 190625, - [SMALL_STATE(5829)] = 190640, - [SMALL_STATE(5830)] = 190659, - [SMALL_STATE(5831)] = 190674, - [SMALL_STATE(5832)] = 190689, - [SMALL_STATE(5833)] = 190706, - [SMALL_STATE(5834)] = 190721, - [SMALL_STATE(5835)] = 190736, - [SMALL_STATE(5836)] = 190751, - [SMALL_STATE(5837)] = 190770, - [SMALL_STATE(5838)] = 190785, - [SMALL_STATE(5839)] = 190800, - [SMALL_STATE(5840)] = 190817, - [SMALL_STATE(5841)] = 190836, - [SMALL_STATE(5842)] = 190855, - [SMALL_STATE(5843)] = 190872, - [SMALL_STATE(5844)] = 190887, - [SMALL_STATE(5845)] = 190902, - [SMALL_STATE(5846)] = 190919, - [SMALL_STATE(5847)] = 190936, - [SMALL_STATE(5848)] = 190955, - [SMALL_STATE(5849)] = 190974, - [SMALL_STATE(5850)] = 190989, - [SMALL_STATE(5851)] = 191004, - [SMALL_STATE(5852)] = 191019, - [SMALL_STATE(5853)] = 191034, - [SMALL_STATE(5854)] = 191049, - [SMALL_STATE(5855)] = 191066, - [SMALL_STATE(5856)] = 191081, - [SMALL_STATE(5857)] = 191096, - [SMALL_STATE(5858)] = 191113, - [SMALL_STATE(5859)] = 191130, - [SMALL_STATE(5860)] = 191149, - [SMALL_STATE(5861)] = 191164, - [SMALL_STATE(5862)] = 191179, - [SMALL_STATE(5863)] = 191198, - [SMALL_STATE(5864)] = 191215, - [SMALL_STATE(5865)] = 191230, - [SMALL_STATE(5866)] = 191245, - [SMALL_STATE(5867)] = 191262, - [SMALL_STATE(5868)] = 191279, - [SMALL_STATE(5869)] = 191298, - [SMALL_STATE(5870)] = 191317, - [SMALL_STATE(5871)] = 191334, - [SMALL_STATE(5872)] = 191351, - [SMALL_STATE(5873)] = 191366, - [SMALL_STATE(5874)] = 191383, - [SMALL_STATE(5875)] = 191402, - [SMALL_STATE(5876)] = 191419, - [SMALL_STATE(5877)] = 191436, - [SMALL_STATE(5878)] = 191451, - [SMALL_STATE(5879)] = 191466, - [SMALL_STATE(5880)] = 191481, - [SMALL_STATE(5881)] = 191496, - [SMALL_STATE(5882)] = 191511, - [SMALL_STATE(5883)] = 191526, - [SMALL_STATE(5884)] = 191541, - [SMALL_STATE(5885)] = 191560, - [SMALL_STATE(5886)] = 191579, - [SMALL_STATE(5887)] = 191594, - [SMALL_STATE(5888)] = 191609, - [SMALL_STATE(5889)] = 191624, - [SMALL_STATE(5890)] = 191639, - [SMALL_STATE(5891)] = 191658, - [SMALL_STATE(5892)] = 191673, - [SMALL_STATE(5893)] = 191688, - [SMALL_STATE(5894)] = 191707, - [SMALL_STATE(5895)] = 191722, - [SMALL_STATE(5896)] = 191739, - [SMALL_STATE(5897)] = 191754, - [SMALL_STATE(5898)] = 191771, - [SMALL_STATE(5899)] = 191790, - [SMALL_STATE(5900)] = 191809, - [SMALL_STATE(5901)] = 191824, - [SMALL_STATE(5902)] = 191841, - [SMALL_STATE(5903)] = 191856, - [SMALL_STATE(5904)] = 191871, - [SMALL_STATE(5905)] = 191886, - [SMALL_STATE(5906)] = 191901, - [SMALL_STATE(5907)] = 191916, - [SMALL_STATE(5908)] = 191933, - [SMALL_STATE(5909)] = 191948, - [SMALL_STATE(5910)] = 191963, - [SMALL_STATE(5911)] = 191978, - [SMALL_STATE(5912)] = 191993, - [SMALL_STATE(5913)] = 192008, - [SMALL_STATE(5914)] = 192027, - [SMALL_STATE(5915)] = 192042, - [SMALL_STATE(5916)] = 192057, - [SMALL_STATE(5917)] = 192072, - [SMALL_STATE(5918)] = 192087, - [SMALL_STATE(5919)] = 192106, - [SMALL_STATE(5920)] = 192125, - [SMALL_STATE(5921)] = 192140, - [SMALL_STATE(5922)] = 192157, - [SMALL_STATE(5923)] = 192176, - [SMALL_STATE(5924)] = 192195, - [SMALL_STATE(5925)] = 192210, - [SMALL_STATE(5926)] = 192229, - [SMALL_STATE(5927)] = 192244, - [SMALL_STATE(5928)] = 192259, - [SMALL_STATE(5929)] = 192274, - [SMALL_STATE(5930)] = 192293, - [SMALL_STATE(5931)] = 192308, - [SMALL_STATE(5932)] = 192327, - [SMALL_STATE(5933)] = 192342, - [SMALL_STATE(5934)] = 192357, - [SMALL_STATE(5935)] = 192372, - [SMALL_STATE(5936)] = 192391, - [SMALL_STATE(5937)] = 192408, - [SMALL_STATE(5938)] = 192423, - [SMALL_STATE(5939)] = 192440, - [SMALL_STATE(5940)] = 192455, - [SMALL_STATE(5941)] = 192470, - [SMALL_STATE(5942)] = 192485, - [SMALL_STATE(5943)] = 192500, - [SMALL_STATE(5944)] = 192515, - [SMALL_STATE(5945)] = 192530, - [SMALL_STATE(5946)] = 192545, - [SMALL_STATE(5947)] = 192560, - [SMALL_STATE(5948)] = 192577, - [SMALL_STATE(5949)] = 192592, - [SMALL_STATE(5950)] = 192607, - [SMALL_STATE(5951)] = 192622, - [SMALL_STATE(5952)] = 192637, - [SMALL_STATE(5953)] = 192652, - [SMALL_STATE(5954)] = 192671, - [SMALL_STATE(5955)] = 192686, - [SMALL_STATE(5956)] = 192701, - [SMALL_STATE(5957)] = 192720, - [SMALL_STATE(5958)] = 192735, - [SMALL_STATE(5959)] = 192750, - [SMALL_STATE(5960)] = 192769, - [SMALL_STATE(5961)] = 192788, - [SMALL_STATE(5962)] = 192807, - [SMALL_STATE(5963)] = 192822, - [SMALL_STATE(5964)] = 192837, - [SMALL_STATE(5965)] = 192852, - [SMALL_STATE(5966)] = 192867, - [SMALL_STATE(5967)] = 192882, - [SMALL_STATE(5968)] = 192897, - [SMALL_STATE(5969)] = 192914, - [SMALL_STATE(5970)] = 192931, - [SMALL_STATE(5971)] = 192950, - [SMALL_STATE(5972)] = 192969, - [SMALL_STATE(5973)] = 192988, - [SMALL_STATE(5974)] = 193003, - [SMALL_STATE(5975)] = 193020, - [SMALL_STATE(5976)] = 193035, - [SMALL_STATE(5977)] = 193050, - [SMALL_STATE(5978)] = 193065, - [SMALL_STATE(5979)] = 193080, - [SMALL_STATE(5980)] = 193095, - [SMALL_STATE(5981)] = 193110, - [SMALL_STATE(5982)] = 193125, - [SMALL_STATE(5983)] = 193140, - [SMALL_STATE(5984)] = 193155, - [SMALL_STATE(5985)] = 193170, - [SMALL_STATE(5986)] = 193189, - [SMALL_STATE(5987)] = 193206, - [SMALL_STATE(5988)] = 193223, - [SMALL_STATE(5989)] = 193238, - [SMALL_STATE(5990)] = 193253, - [SMALL_STATE(5991)] = 193268, - [SMALL_STATE(5992)] = 193283, - [SMALL_STATE(5993)] = 193298, - [SMALL_STATE(5994)] = 193313, - [SMALL_STATE(5995)] = 193328, - [SMALL_STATE(5996)] = 193343, - [SMALL_STATE(5997)] = 193362, - [SMALL_STATE(5998)] = 193377, - [SMALL_STATE(5999)] = 193392, - [SMALL_STATE(6000)] = 193407, - [SMALL_STATE(6001)] = 193426, - [SMALL_STATE(6002)] = 193441, - [SMALL_STATE(6003)] = 193456, - [SMALL_STATE(6004)] = 193471, - [SMALL_STATE(6005)] = 193486, - [SMALL_STATE(6006)] = 193501, - [SMALL_STATE(6007)] = 193520, - [SMALL_STATE(6008)] = 193535, - [SMALL_STATE(6009)] = 193550, - [SMALL_STATE(6010)] = 193565, - [SMALL_STATE(6011)] = 193584, - [SMALL_STATE(6012)] = 193599, - [SMALL_STATE(6013)] = 193618, - [SMALL_STATE(6014)] = 193637, - [SMALL_STATE(6015)] = 193652, - [SMALL_STATE(6016)] = 193671, - [SMALL_STATE(6017)] = 193686, - [SMALL_STATE(6018)] = 193705, - [SMALL_STATE(6019)] = 193720, - [SMALL_STATE(6020)] = 193739, - [SMALL_STATE(6021)] = 193754, - [SMALL_STATE(6022)] = 193769, - [SMALL_STATE(6023)] = 193788, - [SMALL_STATE(6024)] = 193803, - [SMALL_STATE(6025)] = 193822, - [SMALL_STATE(6026)] = 193837, - [SMALL_STATE(6027)] = 193852, - [SMALL_STATE(6028)] = 193867, - [SMALL_STATE(6029)] = 193882, - [SMALL_STATE(6030)] = 193897, - [SMALL_STATE(6031)] = 193914, - [SMALL_STATE(6032)] = 193929, - [SMALL_STATE(6033)] = 193944, - [SMALL_STATE(6034)] = 193961, - [SMALL_STATE(6035)] = 193976, - [SMALL_STATE(6036)] = 193993, - [SMALL_STATE(6037)] = 194008, - [SMALL_STATE(6038)] = 194023, - [SMALL_STATE(6039)] = 194038, - [SMALL_STATE(6040)] = 194053, - [SMALL_STATE(6041)] = 194070, - [SMALL_STATE(6042)] = 194087, - [SMALL_STATE(6043)] = 194102, - [SMALL_STATE(6044)] = 194117, - [SMALL_STATE(6045)] = 194136, - [SMALL_STATE(6046)] = 194155, - [SMALL_STATE(6047)] = 194170, - [SMALL_STATE(6048)] = 194185, - [SMALL_STATE(6049)] = 194200, - [SMALL_STATE(6050)] = 194215, - [SMALL_STATE(6051)] = 194234, - [SMALL_STATE(6052)] = 194253, - [SMALL_STATE(6053)] = 194268, - [SMALL_STATE(6054)] = 194287, - [SMALL_STATE(6055)] = 194302, - [SMALL_STATE(6056)] = 194317, - [SMALL_STATE(6057)] = 194332, - [SMALL_STATE(6058)] = 194347, - [SMALL_STATE(6059)] = 194366, - [SMALL_STATE(6060)] = 194381, - [SMALL_STATE(6061)] = 194400, - [SMALL_STATE(6062)] = 194419, - [SMALL_STATE(6063)] = 194434, - [SMALL_STATE(6064)] = 194449, - [SMALL_STATE(6065)] = 194464, - [SMALL_STATE(6066)] = 194479, - [SMALL_STATE(6067)] = 194494, - [SMALL_STATE(6068)] = 194509, - [SMALL_STATE(6069)] = 194524, - [SMALL_STATE(6070)] = 194541, - [SMALL_STATE(6071)] = 194556, - [SMALL_STATE(6072)] = 194575, - [SMALL_STATE(6073)] = 194590, - [SMALL_STATE(6074)] = 194605, - [SMALL_STATE(6075)] = 194622, - [SMALL_STATE(6076)] = 194637, - [SMALL_STATE(6077)] = 194652, - [SMALL_STATE(6078)] = 194667, - [SMALL_STATE(6079)] = 194682, - [SMALL_STATE(6080)] = 194699, - [SMALL_STATE(6081)] = 194714, - [SMALL_STATE(6082)] = 194731, - [SMALL_STATE(6083)] = 194746, - [SMALL_STATE(6084)] = 194761, - [SMALL_STATE(6085)] = 194780, - [SMALL_STATE(6086)] = 194795, - [SMALL_STATE(6087)] = 194810, - [SMALL_STATE(6088)] = 194825, - [SMALL_STATE(6089)] = 194840, - [SMALL_STATE(6090)] = 194855, - [SMALL_STATE(6091)] = 194870, - [SMALL_STATE(6092)] = 194885, - [SMALL_STATE(6093)] = 194900, - [SMALL_STATE(6094)] = 194915, - [SMALL_STATE(6095)] = 194930, - [SMALL_STATE(6096)] = 194945, - [SMALL_STATE(6097)] = 194962, - [SMALL_STATE(6098)] = 194977, - [SMALL_STATE(6099)] = 194994, - [SMALL_STATE(6100)] = 195009, - [SMALL_STATE(6101)] = 195028, - [SMALL_STATE(6102)] = 195047, - [SMALL_STATE(6103)] = 195062, - [SMALL_STATE(6104)] = 195077, - [SMALL_STATE(6105)] = 195092, - [SMALL_STATE(6106)] = 195111, - [SMALL_STATE(6107)] = 195126, - [SMALL_STATE(6108)] = 195141, - [SMALL_STATE(6109)] = 195156, - [SMALL_STATE(6110)] = 195175, - [SMALL_STATE(6111)] = 195194, - [SMALL_STATE(6112)] = 195213, - [SMALL_STATE(6113)] = 195230, - [SMALL_STATE(6114)] = 195249, - [SMALL_STATE(6115)] = 195264, - [SMALL_STATE(6116)] = 195283, - [SMALL_STATE(6117)] = 195302, - [SMALL_STATE(6118)] = 195321, - [SMALL_STATE(6119)] = 195338, - [SMALL_STATE(6120)] = 195357, - [SMALL_STATE(6121)] = 195376, - [SMALL_STATE(6122)] = 195395, - [SMALL_STATE(6123)] = 195410, - [SMALL_STATE(6124)] = 195425, - [SMALL_STATE(6125)] = 195440, - [SMALL_STATE(6126)] = 195455, - [SMALL_STATE(6127)] = 195470, - [SMALL_STATE(6128)] = 195485, - [SMALL_STATE(6129)] = 195504, - [SMALL_STATE(6130)] = 195519, - [SMALL_STATE(6131)] = 195534, - [SMALL_STATE(6132)] = 195549, - [SMALL_STATE(6133)] = 195564, - [SMALL_STATE(6134)] = 195583, - [SMALL_STATE(6135)] = 195598, - [SMALL_STATE(6136)] = 195613, - [SMALL_STATE(6137)] = 195628, - [SMALL_STATE(6138)] = 195643, - [SMALL_STATE(6139)] = 195658, - [SMALL_STATE(6140)] = 195673, - [SMALL_STATE(6141)] = 195688, - [SMALL_STATE(6142)] = 195705, - [SMALL_STATE(6143)] = 195722, - [SMALL_STATE(6144)] = 195741, - [SMALL_STATE(6145)] = 195760, - [SMALL_STATE(6146)] = 195779, - [SMALL_STATE(6147)] = 195798, - [SMALL_STATE(6148)] = 195817, - [SMALL_STATE(6149)] = 195832, - [SMALL_STATE(6150)] = 195847, - [SMALL_STATE(6151)] = 195862, - [SMALL_STATE(6152)] = 195881, - [SMALL_STATE(6153)] = 195896, - [SMALL_STATE(6154)] = 195915, - [SMALL_STATE(6155)] = 195934, - [SMALL_STATE(6156)] = 195953, - [SMALL_STATE(6157)] = 195972, - [SMALL_STATE(6158)] = 195989, - [SMALL_STATE(6159)] = 196008, - [SMALL_STATE(6160)] = 196025, - [SMALL_STATE(6161)] = 196044, - [SMALL_STATE(6162)] = 196063, - [SMALL_STATE(6163)] = 196082, - [SMALL_STATE(6164)] = 196101, - [SMALL_STATE(6165)] = 196116, - [SMALL_STATE(6166)] = 196135, - [SMALL_STATE(6167)] = 196154, - [SMALL_STATE(6168)] = 196171, - [SMALL_STATE(6169)] = 196186, - [SMALL_STATE(6170)] = 196201, - [SMALL_STATE(6171)] = 196216, - [SMALL_STATE(6172)] = 196235, - [SMALL_STATE(6173)] = 196250, - [SMALL_STATE(6174)] = 196269, - [SMALL_STATE(6175)] = 196284, - [SMALL_STATE(6176)] = 196303, - [SMALL_STATE(6177)] = 196318, - [SMALL_STATE(6178)] = 196335, - [SMALL_STATE(6179)] = 196354, - [SMALL_STATE(6180)] = 196369, - [SMALL_STATE(6181)] = 196384, - [SMALL_STATE(6182)] = 196399, - [SMALL_STATE(6183)] = 196414, - [SMALL_STATE(6184)] = 196429, - [SMALL_STATE(6185)] = 196448, - [SMALL_STATE(6186)] = 196463, - [SMALL_STATE(6187)] = 196478, - [SMALL_STATE(6188)] = 196493, - [SMALL_STATE(6189)] = 196512, - [SMALL_STATE(6190)] = 196531, - [SMALL_STATE(6191)] = 196546, - [SMALL_STATE(6192)] = 196561, - [SMALL_STATE(6193)] = 196580, - [SMALL_STATE(6194)] = 196599, - [SMALL_STATE(6195)] = 196618, - [SMALL_STATE(6196)] = 196637, - [SMALL_STATE(6197)] = 196656, - [SMALL_STATE(6198)] = 196675, - [SMALL_STATE(6199)] = 196694, - [SMALL_STATE(6200)] = 196713, - [SMALL_STATE(6201)] = 196728, - [SMALL_STATE(6202)] = 196747, - [SMALL_STATE(6203)] = 196762, - [SMALL_STATE(6204)] = 196777, - [SMALL_STATE(6205)] = 196796, - [SMALL_STATE(6206)] = 196815, - [SMALL_STATE(6207)] = 196834, - [SMALL_STATE(6208)] = 196853, - [SMALL_STATE(6209)] = 196872, - [SMALL_STATE(6210)] = 196891, - [SMALL_STATE(6211)] = 196906, - [SMALL_STATE(6212)] = 196921, - [SMALL_STATE(6213)] = 196936, - [SMALL_STATE(6214)] = 196955, - [SMALL_STATE(6215)] = 196974, - [SMALL_STATE(6216)] = 196989, - [SMALL_STATE(6217)] = 197004, - [SMALL_STATE(6218)] = 197019, - [SMALL_STATE(6219)] = 197038, - [SMALL_STATE(6220)] = 197055, - [SMALL_STATE(6221)] = 197070, - [SMALL_STATE(6222)] = 197087, - [SMALL_STATE(6223)] = 197104, - [SMALL_STATE(6224)] = 197121, - [SMALL_STATE(6225)] = 197136, - [SMALL_STATE(6226)] = 197151, - [SMALL_STATE(6227)] = 197166, - [SMALL_STATE(6228)] = 197185, - [SMALL_STATE(6229)] = 197200, - [SMALL_STATE(6230)] = 197219, - [SMALL_STATE(6231)] = 197238, - [SMALL_STATE(6232)] = 197253, - [SMALL_STATE(6233)] = 197272, - [SMALL_STATE(6234)] = 197291, - [SMALL_STATE(6235)] = 197306, - [SMALL_STATE(6236)] = 197323, - [SMALL_STATE(6237)] = 197340, - [SMALL_STATE(6238)] = 197357, - [SMALL_STATE(6239)] = 197372, - [SMALL_STATE(6240)] = 197391, - [SMALL_STATE(6241)] = 197410, - [SMALL_STATE(6242)] = 197425, - [SMALL_STATE(6243)] = 197444, - [SMALL_STATE(6244)] = 197459, - [SMALL_STATE(6245)] = 197478, - [SMALL_STATE(6246)] = 197497, - [SMALL_STATE(6247)] = 197516, - [SMALL_STATE(6248)] = 197535, - [SMALL_STATE(6249)] = 197554, - [SMALL_STATE(6250)] = 197573, - [SMALL_STATE(6251)] = 197588, - [SMALL_STATE(6252)] = 197603, - [SMALL_STATE(6253)] = 197618, - [SMALL_STATE(6254)] = 197637, - [SMALL_STATE(6255)] = 197654, - [SMALL_STATE(6256)] = 197673, - [SMALL_STATE(6257)] = 197688, - [SMALL_STATE(6258)] = 197707, - [SMALL_STATE(6259)] = 197722, - [SMALL_STATE(6260)] = 197741, - [SMALL_STATE(6261)] = 197760, - [SMALL_STATE(6262)] = 197779, - [SMALL_STATE(6263)] = 197798, - [SMALL_STATE(6264)] = 197817, - [SMALL_STATE(6265)] = 197836, - [SMALL_STATE(6266)] = 197851, - [SMALL_STATE(6267)] = 197870, - [SMALL_STATE(6268)] = 197889, - [SMALL_STATE(6269)] = 197904, - [SMALL_STATE(6270)] = 197919, - [SMALL_STATE(6271)] = 197934, - [SMALL_STATE(6272)] = 197949, - [SMALL_STATE(6273)] = 197964, - [SMALL_STATE(6274)] = 197983, - [SMALL_STATE(6275)] = 198002, - [SMALL_STATE(6276)] = 198017, - [SMALL_STATE(6277)] = 198036, - [SMALL_STATE(6278)] = 198055, - [SMALL_STATE(6279)] = 198074, - [SMALL_STATE(6280)] = 198089, - [SMALL_STATE(6281)] = 198108, - [SMALL_STATE(6282)] = 198123, - [SMALL_STATE(6283)] = 198142, - [SMALL_STATE(6284)] = 198157, - [SMALL_STATE(6285)] = 198172, - [SMALL_STATE(6286)] = 198189, - [SMALL_STATE(6287)] = 198206, - [SMALL_STATE(6288)] = 198225, - [SMALL_STATE(6289)] = 198240, - [SMALL_STATE(6290)] = 198259, - [SMALL_STATE(6291)] = 198274, - [SMALL_STATE(6292)] = 198293, - [SMALL_STATE(6293)] = 198308, - [SMALL_STATE(6294)] = 198327, - [SMALL_STATE(6295)] = 198342, - [SMALL_STATE(6296)] = 198361, - [SMALL_STATE(6297)] = 198376, - [SMALL_STATE(6298)] = 198391, - [SMALL_STATE(6299)] = 198406, - [SMALL_STATE(6300)] = 198425, - [SMALL_STATE(6301)] = 198444, - [SMALL_STATE(6302)] = 198463, - [SMALL_STATE(6303)] = 198482, - [SMALL_STATE(6304)] = 198497, - [SMALL_STATE(6305)] = 198516, - [SMALL_STATE(6306)] = 198533, - [SMALL_STATE(6307)] = 198548, - [SMALL_STATE(6308)] = 198563, - [SMALL_STATE(6309)] = 198580, - [SMALL_STATE(6310)] = 198599, - [SMALL_STATE(6311)] = 198618, - [SMALL_STATE(6312)] = 198637, - [SMALL_STATE(6313)] = 198652, - [SMALL_STATE(6314)] = 198667, - [SMALL_STATE(6315)] = 198682, - [SMALL_STATE(6316)] = 198701, - [SMALL_STATE(6317)] = 198716, - [SMALL_STATE(6318)] = 198731, - [SMALL_STATE(6319)] = 198746, - [SMALL_STATE(6320)] = 198761, - [SMALL_STATE(6321)] = 198776, - [SMALL_STATE(6322)] = 198791, - [SMALL_STATE(6323)] = 198810, - [SMALL_STATE(6324)] = 198829, - [SMALL_STATE(6325)] = 198848, - [SMALL_STATE(6326)] = 198863, - [SMALL_STATE(6327)] = 198882, - [SMALL_STATE(6328)] = 198897, - [SMALL_STATE(6329)] = 198912, - [SMALL_STATE(6330)] = 198927, - [SMALL_STATE(6331)] = 198942, - [SMALL_STATE(6332)] = 198957, - [SMALL_STATE(6333)] = 198976, - [SMALL_STATE(6334)] = 198991, - [SMALL_STATE(6335)] = 199007, - [SMALL_STATE(6336)] = 199021, - [SMALL_STATE(6337)] = 199037, - [SMALL_STATE(6338)] = 199053, - [SMALL_STATE(6339)] = 199069, - [SMALL_STATE(6340)] = 199083, - [SMALL_STATE(6341)] = 199099, - [SMALL_STATE(6342)] = 199115, - [SMALL_STATE(6343)] = 199131, - [SMALL_STATE(6344)] = 199147, - [SMALL_STATE(6345)] = 199163, - [SMALL_STATE(6346)] = 199179, - [SMALL_STATE(6347)] = 199195, - [SMALL_STATE(6348)] = 199211, - [SMALL_STATE(6349)] = 199227, - [SMALL_STATE(6350)] = 199243, - [SMALL_STATE(6351)] = 199259, - [SMALL_STATE(6352)] = 199275, - [SMALL_STATE(6353)] = 199291, - [SMALL_STATE(6354)] = 199305, - [SMALL_STATE(6355)] = 199319, - [SMALL_STATE(6356)] = 199333, - [SMALL_STATE(6357)] = 199349, - [SMALL_STATE(6358)] = 199365, - [SMALL_STATE(6359)] = 199381, - [SMALL_STATE(6360)] = 199395, - [SMALL_STATE(6361)] = 199409, - [SMALL_STATE(6362)] = 199423, - [SMALL_STATE(6363)] = 199439, - [SMALL_STATE(6364)] = 199453, - [SMALL_STATE(6365)] = 199469, - [SMALL_STATE(6366)] = 199483, - [SMALL_STATE(6367)] = 199497, - [SMALL_STATE(6368)] = 199513, - [SMALL_STATE(6369)] = 199529, - [SMALL_STATE(6370)] = 199545, - [SMALL_STATE(6371)] = 199559, - [SMALL_STATE(6372)] = 199575, - [SMALL_STATE(6373)] = 199591, - [SMALL_STATE(6374)] = 199607, - [SMALL_STATE(6375)] = 199623, - [SMALL_STATE(6376)] = 199639, - [SMALL_STATE(6377)] = 199653, - [SMALL_STATE(6378)] = 199669, - [SMALL_STATE(6379)] = 199685, - [SMALL_STATE(6380)] = 199699, - [SMALL_STATE(6381)] = 199715, - [SMALL_STATE(6382)] = 199731, - [SMALL_STATE(6383)] = 199747, - [SMALL_STATE(6384)] = 199763, - [SMALL_STATE(6385)] = 199779, - [SMALL_STATE(6386)] = 199793, - [SMALL_STATE(6387)] = 199809, - [SMALL_STATE(6388)] = 199825, - [SMALL_STATE(6389)] = 199841, - [SMALL_STATE(6390)] = 199857, - [SMALL_STATE(6391)] = 199873, - [SMALL_STATE(6392)] = 199889, - [SMALL_STATE(6393)] = 199905, - [SMALL_STATE(6394)] = 199919, - [SMALL_STATE(6395)] = 199933, - [SMALL_STATE(6396)] = 199947, - [SMALL_STATE(6397)] = 199963, - [SMALL_STATE(6398)] = 199979, - [SMALL_STATE(6399)] = 199995, - [SMALL_STATE(6400)] = 200011, - [SMALL_STATE(6401)] = 200025, - [SMALL_STATE(6402)] = 200041, - [SMALL_STATE(6403)] = 200057, - [SMALL_STATE(6404)] = 200073, - [SMALL_STATE(6405)] = 200089, - [SMALL_STATE(6406)] = 200105, - [SMALL_STATE(6407)] = 200121, - [SMALL_STATE(6408)] = 200137, - [SMALL_STATE(6409)] = 200153, - [SMALL_STATE(6410)] = 200169, - [SMALL_STATE(6411)] = 200185, - [SMALL_STATE(6412)] = 200199, - [SMALL_STATE(6413)] = 200215, - [SMALL_STATE(6414)] = 200229, - [SMALL_STATE(6415)] = 200245, - [SMALL_STATE(6416)] = 200261, - [SMALL_STATE(6417)] = 200277, - [SMALL_STATE(6418)] = 200293, - [SMALL_STATE(6419)] = 200307, - [SMALL_STATE(6420)] = 200323, - [SMALL_STATE(6421)] = 200339, - [SMALL_STATE(6422)] = 200355, - [SMALL_STATE(6423)] = 200371, - [SMALL_STATE(6424)] = 200387, - [SMALL_STATE(6425)] = 200403, - [SMALL_STATE(6426)] = 200419, - [SMALL_STATE(6427)] = 200433, - [SMALL_STATE(6428)] = 200449, - [SMALL_STATE(6429)] = 200465, - [SMALL_STATE(6430)] = 200481, - [SMALL_STATE(6431)] = 200497, - [SMALL_STATE(6432)] = 200511, - [SMALL_STATE(6433)] = 200527, - [SMALL_STATE(6434)] = 200543, - [SMALL_STATE(6435)] = 200559, - [SMALL_STATE(6436)] = 200573, - [SMALL_STATE(6437)] = 200589, - [SMALL_STATE(6438)] = 200605, - [SMALL_STATE(6439)] = 200619, - [SMALL_STATE(6440)] = 200635, - [SMALL_STATE(6441)] = 200651, - [SMALL_STATE(6442)] = 200667, - [SMALL_STATE(6443)] = 200683, - [SMALL_STATE(6444)] = 200699, - [SMALL_STATE(6445)] = 200715, - [SMALL_STATE(6446)] = 200731, - [SMALL_STATE(6447)] = 200747, - [SMALL_STATE(6448)] = 200763, - [SMALL_STATE(6449)] = 200779, - [SMALL_STATE(6450)] = 200795, - [SMALL_STATE(6451)] = 200811, - [SMALL_STATE(6452)] = 200827, - [SMALL_STATE(6453)] = 200843, - [SMALL_STATE(6454)] = 200857, - [SMALL_STATE(6455)] = 200871, - [SMALL_STATE(6456)] = 200885, - [SMALL_STATE(6457)] = 200901, - [SMALL_STATE(6458)] = 200915, - [SMALL_STATE(6459)] = 200931, - [SMALL_STATE(6460)] = 200945, - [SMALL_STATE(6461)] = 200961, - [SMALL_STATE(6462)] = 200977, - [SMALL_STATE(6463)] = 200991, - [SMALL_STATE(6464)] = 201007, - [SMALL_STATE(6465)] = 201023, - [SMALL_STATE(6466)] = 201037, - [SMALL_STATE(6467)] = 201053, - [SMALL_STATE(6468)] = 201067, - [SMALL_STATE(6469)] = 201083, - [SMALL_STATE(6470)] = 201099, - [SMALL_STATE(6471)] = 201115, - [SMALL_STATE(6472)] = 201129, - [SMALL_STATE(6473)] = 201143, - [SMALL_STATE(6474)] = 201159, - [SMALL_STATE(6475)] = 201173, - [SMALL_STATE(6476)] = 201189, - [SMALL_STATE(6477)] = 201205, - [SMALL_STATE(6478)] = 201221, - [SMALL_STATE(6479)] = 201235, - [SMALL_STATE(6480)] = 201249, - [SMALL_STATE(6481)] = 201263, - [SMALL_STATE(6482)] = 201277, - [SMALL_STATE(6483)] = 201293, - [SMALL_STATE(6484)] = 201307, - [SMALL_STATE(6485)] = 201323, - [SMALL_STATE(6486)] = 201339, - [SMALL_STATE(6487)] = 201353, - [SMALL_STATE(6488)] = 201367, - [SMALL_STATE(6489)] = 201383, - [SMALL_STATE(6490)] = 201399, - [SMALL_STATE(6491)] = 201415, - [SMALL_STATE(6492)] = 201429, - [SMALL_STATE(6493)] = 201445, - [SMALL_STATE(6494)] = 201461, - [SMALL_STATE(6495)] = 201477, - [SMALL_STATE(6496)] = 201493, - [SMALL_STATE(6497)] = 201509, - [SMALL_STATE(6498)] = 201525, - [SMALL_STATE(6499)] = 201539, - [SMALL_STATE(6500)] = 201555, - [SMALL_STATE(6501)] = 201571, - [SMALL_STATE(6502)] = 201587, - [SMALL_STATE(6503)] = 201603, - [SMALL_STATE(6504)] = 201617, - [SMALL_STATE(6505)] = 201633, - [SMALL_STATE(6506)] = 201647, - [SMALL_STATE(6507)] = 201661, - [SMALL_STATE(6508)] = 201677, - [SMALL_STATE(6509)] = 201691, - [SMALL_STATE(6510)] = 201707, - [SMALL_STATE(6511)] = 201723, - [SMALL_STATE(6512)] = 201737, - [SMALL_STATE(6513)] = 201753, - [SMALL_STATE(6514)] = 201767, - [SMALL_STATE(6515)] = 201781, - [SMALL_STATE(6516)] = 201797, - [SMALL_STATE(6517)] = 201813, - [SMALL_STATE(6518)] = 201829, - [SMALL_STATE(6519)] = 201843, - [SMALL_STATE(6520)] = 201859, - [SMALL_STATE(6521)] = 201875, - [SMALL_STATE(6522)] = 201891, - [SMALL_STATE(6523)] = 201907, - [SMALL_STATE(6524)] = 201923, - [SMALL_STATE(6525)] = 201939, - [SMALL_STATE(6526)] = 201955, - [SMALL_STATE(6527)] = 201971, - [SMALL_STATE(6528)] = 201985, - [SMALL_STATE(6529)] = 202001, - [SMALL_STATE(6530)] = 202015, - [SMALL_STATE(6531)] = 202031, - [SMALL_STATE(6532)] = 202045, - [SMALL_STATE(6533)] = 202061, - [SMALL_STATE(6534)] = 202077, - [SMALL_STATE(6535)] = 202093, - [SMALL_STATE(6536)] = 202109, - [SMALL_STATE(6537)] = 202123, - [SMALL_STATE(6538)] = 202137, - [SMALL_STATE(6539)] = 202153, - [SMALL_STATE(6540)] = 202167, - [SMALL_STATE(6541)] = 202183, - [SMALL_STATE(6542)] = 202199, - [SMALL_STATE(6543)] = 202215, - [SMALL_STATE(6544)] = 202231, - [SMALL_STATE(6545)] = 202247, - [SMALL_STATE(6546)] = 202263, - [SMALL_STATE(6547)] = 202279, - [SMALL_STATE(6548)] = 202293, - [SMALL_STATE(6549)] = 202309, - [SMALL_STATE(6550)] = 202323, - [SMALL_STATE(6551)] = 202339, - [SMALL_STATE(6552)] = 202353, - [SMALL_STATE(6553)] = 202367, - [SMALL_STATE(6554)] = 202383, - [SMALL_STATE(6555)] = 202399, - [SMALL_STATE(6556)] = 202413, - [SMALL_STATE(6557)] = 202429, - [SMALL_STATE(6558)] = 202443, - [SMALL_STATE(6559)] = 202459, - [SMALL_STATE(6560)] = 202475, - [SMALL_STATE(6561)] = 202491, - [SMALL_STATE(6562)] = 202507, - [SMALL_STATE(6563)] = 202523, - [SMALL_STATE(6564)] = 202539, - [SMALL_STATE(6565)] = 202555, - [SMALL_STATE(6566)] = 202571, - [SMALL_STATE(6567)] = 202587, - [SMALL_STATE(6568)] = 202603, - [SMALL_STATE(6569)] = 202617, - [SMALL_STATE(6570)] = 202631, - [SMALL_STATE(6571)] = 202645, - [SMALL_STATE(6572)] = 202661, - [SMALL_STATE(6573)] = 202675, - [SMALL_STATE(6574)] = 202689, - [SMALL_STATE(6575)] = 202705, - [SMALL_STATE(6576)] = 202721, - [SMALL_STATE(6577)] = 202735, - [SMALL_STATE(6578)] = 202751, - [SMALL_STATE(6579)] = 202767, - [SMALL_STATE(6580)] = 202783, - [SMALL_STATE(6581)] = 202799, - [SMALL_STATE(6582)] = 202815, - [SMALL_STATE(6583)] = 202831, - [SMALL_STATE(6584)] = 202847, - [SMALL_STATE(6585)] = 202861, - [SMALL_STATE(6586)] = 202877, - [SMALL_STATE(6587)] = 202893, - [SMALL_STATE(6588)] = 202909, - [SMALL_STATE(6589)] = 202923, - [SMALL_STATE(6590)] = 202937, - [SMALL_STATE(6591)] = 202951, - [SMALL_STATE(6592)] = 202967, - [SMALL_STATE(6593)] = 202983, - [SMALL_STATE(6594)] = 202999, - [SMALL_STATE(6595)] = 203015, - [SMALL_STATE(6596)] = 203031, - [SMALL_STATE(6597)] = 203047, - [SMALL_STATE(6598)] = 203061, - [SMALL_STATE(6599)] = 203075, - [SMALL_STATE(6600)] = 203091, - [SMALL_STATE(6601)] = 203105, - [SMALL_STATE(6602)] = 203119, - [SMALL_STATE(6603)] = 203135, - [SMALL_STATE(6604)] = 203151, - [SMALL_STATE(6605)] = 203165, - [SMALL_STATE(6606)] = 203181, - [SMALL_STATE(6607)] = 203195, - [SMALL_STATE(6608)] = 203209, - [SMALL_STATE(6609)] = 203225, - [SMALL_STATE(6610)] = 203241, - [SMALL_STATE(6611)] = 203257, - [SMALL_STATE(6612)] = 203273, - [SMALL_STATE(6613)] = 203287, - [SMALL_STATE(6614)] = 203303, - [SMALL_STATE(6615)] = 203319, - [SMALL_STATE(6616)] = 203333, - [SMALL_STATE(6617)] = 203349, - [SMALL_STATE(6618)] = 203365, - [SMALL_STATE(6619)] = 203379, - [SMALL_STATE(6620)] = 203395, - [SMALL_STATE(6621)] = 203411, - [SMALL_STATE(6622)] = 203427, - [SMALL_STATE(6623)] = 203441, - [SMALL_STATE(6624)] = 203457, - [SMALL_STATE(6625)] = 203473, - [SMALL_STATE(6626)] = 203487, - [SMALL_STATE(6627)] = 203501, - [SMALL_STATE(6628)] = 203517, - [SMALL_STATE(6629)] = 203533, - [SMALL_STATE(6630)] = 203549, - [SMALL_STATE(6631)] = 203565, - [SMALL_STATE(6632)] = 203581, - [SMALL_STATE(6633)] = 203595, - [SMALL_STATE(6634)] = 203609, - [SMALL_STATE(6635)] = 203625, - [SMALL_STATE(6636)] = 203639, - [SMALL_STATE(6637)] = 203653, - [SMALL_STATE(6638)] = 203669, - [SMALL_STATE(6639)] = 203685, - [SMALL_STATE(6640)] = 203701, - [SMALL_STATE(6641)] = 203715, - [SMALL_STATE(6642)] = 203731, - [SMALL_STATE(6643)] = 203747, - [SMALL_STATE(6644)] = 203763, - [SMALL_STATE(6645)] = 203777, - [SMALL_STATE(6646)] = 203791, - [SMALL_STATE(6647)] = 203807, - [SMALL_STATE(6648)] = 203821, - [SMALL_STATE(6649)] = 203837, - [SMALL_STATE(6650)] = 203853, - [SMALL_STATE(6651)] = 203867, - [SMALL_STATE(6652)] = 203881, - [SMALL_STATE(6653)] = 203895, - [SMALL_STATE(6654)] = 203911, - [SMALL_STATE(6655)] = 203927, - [SMALL_STATE(6656)] = 203943, - [SMALL_STATE(6657)] = 203957, - [SMALL_STATE(6658)] = 203973, - [SMALL_STATE(6659)] = 203987, - [SMALL_STATE(6660)] = 204001, - [SMALL_STATE(6661)] = 204017, - [SMALL_STATE(6662)] = 204031, - [SMALL_STATE(6663)] = 204045, - [SMALL_STATE(6664)] = 204061, - [SMALL_STATE(6665)] = 204077, - [SMALL_STATE(6666)] = 204093, - [SMALL_STATE(6667)] = 204107, - [SMALL_STATE(6668)] = 204123, - [SMALL_STATE(6669)] = 204139, - [SMALL_STATE(6670)] = 204153, - [SMALL_STATE(6671)] = 204169, - [SMALL_STATE(6672)] = 204183, - [SMALL_STATE(6673)] = 204199, - [SMALL_STATE(6674)] = 204215, - [SMALL_STATE(6675)] = 204231, - [SMALL_STATE(6676)] = 204245, - [SMALL_STATE(6677)] = 204261, - [SMALL_STATE(6678)] = 204275, - [SMALL_STATE(6679)] = 204289, - [SMALL_STATE(6680)] = 204305, - [SMALL_STATE(6681)] = 204319, - [SMALL_STATE(6682)] = 204333, - [SMALL_STATE(6683)] = 204347, - [SMALL_STATE(6684)] = 204361, - [SMALL_STATE(6685)] = 204375, - [SMALL_STATE(6686)] = 204389, - [SMALL_STATE(6687)] = 204403, - [SMALL_STATE(6688)] = 204419, - [SMALL_STATE(6689)] = 204435, - [SMALL_STATE(6690)] = 204449, - [SMALL_STATE(6691)] = 204463, - [SMALL_STATE(6692)] = 204477, - [SMALL_STATE(6693)] = 204491, - [SMALL_STATE(6694)] = 204505, - [SMALL_STATE(6695)] = 204521, - [SMALL_STATE(6696)] = 204535, - [SMALL_STATE(6697)] = 204551, - [SMALL_STATE(6698)] = 204565, - [SMALL_STATE(6699)] = 204581, - [SMALL_STATE(6700)] = 204595, - [SMALL_STATE(6701)] = 204609, - [SMALL_STATE(6702)] = 204623, - [SMALL_STATE(6703)] = 204639, - [SMALL_STATE(6704)] = 204655, - [SMALL_STATE(6705)] = 204671, - [SMALL_STATE(6706)] = 204687, - [SMALL_STATE(6707)] = 204703, - [SMALL_STATE(6708)] = 204719, - [SMALL_STATE(6709)] = 204733, - [SMALL_STATE(6710)] = 204749, - [SMALL_STATE(6711)] = 204763, - [SMALL_STATE(6712)] = 204777, - [SMALL_STATE(6713)] = 204793, - [SMALL_STATE(6714)] = 204807, - [SMALL_STATE(6715)] = 204821, - [SMALL_STATE(6716)] = 204835, - [SMALL_STATE(6717)] = 204849, - [SMALL_STATE(6718)] = 204865, - [SMALL_STATE(6719)] = 204879, - [SMALL_STATE(6720)] = 204895, - [SMALL_STATE(6721)] = 204909, - [SMALL_STATE(6722)] = 204923, - [SMALL_STATE(6723)] = 204939, - [SMALL_STATE(6724)] = 204955, - [SMALL_STATE(6725)] = 204969, - [SMALL_STATE(6726)] = 204985, - [SMALL_STATE(6727)] = 205001, - [SMALL_STATE(6728)] = 205015, - [SMALL_STATE(6729)] = 205031, - [SMALL_STATE(6730)] = 205047, - [SMALL_STATE(6731)] = 205063, - [SMALL_STATE(6732)] = 205077, - [SMALL_STATE(6733)] = 205093, - [SMALL_STATE(6734)] = 205107, - [SMALL_STATE(6735)] = 205121, - [SMALL_STATE(6736)] = 205135, - [SMALL_STATE(6737)] = 205149, - [SMALL_STATE(6738)] = 205163, - [SMALL_STATE(6739)] = 205179, - [SMALL_STATE(6740)] = 205195, - [SMALL_STATE(6741)] = 205211, - [SMALL_STATE(6742)] = 205227, - [SMALL_STATE(6743)] = 205241, - [SMALL_STATE(6744)] = 205257, - [SMALL_STATE(6745)] = 205271, - [SMALL_STATE(6746)] = 205285, - [SMALL_STATE(6747)] = 205301, - [SMALL_STATE(6748)] = 205317, - [SMALL_STATE(6749)] = 205331, - [SMALL_STATE(6750)] = 205345, - [SMALL_STATE(6751)] = 205361, - [SMALL_STATE(6752)] = 205377, - [SMALL_STATE(6753)] = 205391, - [SMALL_STATE(6754)] = 205407, - [SMALL_STATE(6755)] = 205423, - [SMALL_STATE(6756)] = 205437, - [SMALL_STATE(6757)] = 205453, - [SMALL_STATE(6758)] = 205467, - [SMALL_STATE(6759)] = 205483, - [SMALL_STATE(6760)] = 205497, - [SMALL_STATE(6761)] = 205513, - [SMALL_STATE(6762)] = 205529, - [SMALL_STATE(6763)] = 205545, - [SMALL_STATE(6764)] = 205559, - [SMALL_STATE(6765)] = 205573, - [SMALL_STATE(6766)] = 205587, - [SMALL_STATE(6767)] = 205601, - [SMALL_STATE(6768)] = 205617, - [SMALL_STATE(6769)] = 205631, - [SMALL_STATE(6770)] = 205647, - [SMALL_STATE(6771)] = 205663, - [SMALL_STATE(6772)] = 205679, - [SMALL_STATE(6773)] = 205695, - [SMALL_STATE(6774)] = 205709, - [SMALL_STATE(6775)] = 205725, - [SMALL_STATE(6776)] = 205739, - [SMALL_STATE(6777)] = 205755, - [SMALL_STATE(6778)] = 205771, - [SMALL_STATE(6779)] = 205785, - [SMALL_STATE(6780)] = 205801, - [SMALL_STATE(6781)] = 205817, - [SMALL_STATE(6782)] = 205833, - [SMALL_STATE(6783)] = 205847, - [SMALL_STATE(6784)] = 205861, - [SMALL_STATE(6785)] = 205875, - [SMALL_STATE(6786)] = 205891, - [SMALL_STATE(6787)] = 205907, - [SMALL_STATE(6788)] = 205923, - [SMALL_STATE(6789)] = 205937, - [SMALL_STATE(6790)] = 205953, - [SMALL_STATE(6791)] = 205969, - [SMALL_STATE(6792)] = 205985, - [SMALL_STATE(6793)] = 206001, - [SMALL_STATE(6794)] = 206017, - [SMALL_STATE(6795)] = 206033, - [SMALL_STATE(6796)] = 206047, - [SMALL_STATE(6797)] = 206061, - [SMALL_STATE(6798)] = 206077, - [SMALL_STATE(6799)] = 206093, - [SMALL_STATE(6800)] = 206107, - [SMALL_STATE(6801)] = 206123, - [SMALL_STATE(6802)] = 206137, - [SMALL_STATE(6803)] = 206151, - [SMALL_STATE(6804)] = 206167, - [SMALL_STATE(6805)] = 206183, - [SMALL_STATE(6806)] = 206199, - [SMALL_STATE(6807)] = 206213, - [SMALL_STATE(6808)] = 206229, - [SMALL_STATE(6809)] = 206245, - [SMALL_STATE(6810)] = 206259, - [SMALL_STATE(6811)] = 206275, - [SMALL_STATE(6812)] = 206291, - [SMALL_STATE(6813)] = 206305, - [SMALL_STATE(6814)] = 206319, - [SMALL_STATE(6815)] = 206335, - [SMALL_STATE(6816)] = 206349, - [SMALL_STATE(6817)] = 206365, - [SMALL_STATE(6818)] = 206379, - [SMALL_STATE(6819)] = 206395, - [SMALL_STATE(6820)] = 206411, - [SMALL_STATE(6821)] = 206425, - [SMALL_STATE(6822)] = 206441, - [SMALL_STATE(6823)] = 206457, - [SMALL_STATE(6824)] = 206471, - [SMALL_STATE(6825)] = 206487, - [SMALL_STATE(6826)] = 206501, - [SMALL_STATE(6827)] = 206517, - [SMALL_STATE(6828)] = 206533, - [SMALL_STATE(6829)] = 206549, - [SMALL_STATE(6830)] = 206565, - [SMALL_STATE(6831)] = 206581, - [SMALL_STATE(6832)] = 206597, - [SMALL_STATE(6833)] = 206611, - [SMALL_STATE(6834)] = 206625, - [SMALL_STATE(6835)] = 206639, - [SMALL_STATE(6836)] = 206655, - [SMALL_STATE(6837)] = 206669, - [SMALL_STATE(6838)] = 206685, - [SMALL_STATE(6839)] = 206699, - [SMALL_STATE(6840)] = 206713, - [SMALL_STATE(6841)] = 206729, - [SMALL_STATE(6842)] = 206743, - [SMALL_STATE(6843)] = 206759, - [SMALL_STATE(6844)] = 206773, - [SMALL_STATE(6845)] = 206787, - [SMALL_STATE(6846)] = 206801, - [SMALL_STATE(6847)] = 206817, - [SMALL_STATE(6848)] = 206833, - [SMALL_STATE(6849)] = 206847, - [SMALL_STATE(6850)] = 206861, - [SMALL_STATE(6851)] = 206877, - [SMALL_STATE(6852)] = 206893, - [SMALL_STATE(6853)] = 206909, - [SMALL_STATE(6854)] = 206925, - [SMALL_STATE(6855)] = 206941, - [SMALL_STATE(6856)] = 206955, - [SMALL_STATE(6857)] = 206971, - [SMALL_STATE(6858)] = 206987, - [SMALL_STATE(6859)] = 207003, - [SMALL_STATE(6860)] = 207017, - [SMALL_STATE(6861)] = 207031, - [SMALL_STATE(6862)] = 207045, - [SMALL_STATE(6863)] = 207061, - [SMALL_STATE(6864)] = 207077, - [SMALL_STATE(6865)] = 207093, - [SMALL_STATE(6866)] = 207109, - [SMALL_STATE(6867)] = 207125, - [SMALL_STATE(6868)] = 207141, - [SMALL_STATE(6869)] = 207157, - [SMALL_STATE(6870)] = 207173, - [SMALL_STATE(6871)] = 207189, - [SMALL_STATE(6872)] = 207203, - [SMALL_STATE(6873)] = 207217, - [SMALL_STATE(6874)] = 207233, - [SMALL_STATE(6875)] = 207247, - [SMALL_STATE(6876)] = 207263, - [SMALL_STATE(6877)] = 207277, - [SMALL_STATE(6878)] = 207291, - [SMALL_STATE(6879)] = 207307, - [SMALL_STATE(6880)] = 207323, - [SMALL_STATE(6881)] = 207337, - [SMALL_STATE(6882)] = 207353, - [SMALL_STATE(6883)] = 207369, - [SMALL_STATE(6884)] = 207385, - [SMALL_STATE(6885)] = 207401, - [SMALL_STATE(6886)] = 207415, - [SMALL_STATE(6887)] = 207429, - [SMALL_STATE(6888)] = 207445, - [SMALL_STATE(6889)] = 207461, - [SMALL_STATE(6890)] = 207475, - [SMALL_STATE(6891)] = 207489, - [SMALL_STATE(6892)] = 207505, - [SMALL_STATE(6893)] = 207521, - [SMALL_STATE(6894)] = 207537, - [SMALL_STATE(6895)] = 207551, - [SMALL_STATE(6896)] = 207567, - [SMALL_STATE(6897)] = 207583, - [SMALL_STATE(6898)] = 207599, - [SMALL_STATE(6899)] = 207615, - [SMALL_STATE(6900)] = 207631, - [SMALL_STATE(6901)] = 207647, - [SMALL_STATE(6902)] = 207663, - [SMALL_STATE(6903)] = 207677, - [SMALL_STATE(6904)] = 207691, - [SMALL_STATE(6905)] = 207707, - [SMALL_STATE(6906)] = 207723, - [SMALL_STATE(6907)] = 207737, - [SMALL_STATE(6908)] = 207751, - [SMALL_STATE(6909)] = 207767, - [SMALL_STATE(6910)] = 207781, - [SMALL_STATE(6911)] = 207797, - [SMALL_STATE(6912)] = 207811, - [SMALL_STATE(6913)] = 207827, - [SMALL_STATE(6914)] = 207841, - [SMALL_STATE(6915)] = 207855, - [SMALL_STATE(6916)] = 207871, - [SMALL_STATE(6917)] = 207885, - [SMALL_STATE(6918)] = 207901, - [SMALL_STATE(6919)] = 207917, - [SMALL_STATE(6920)] = 207931, - [SMALL_STATE(6921)] = 207945, - [SMALL_STATE(6922)] = 207961, - [SMALL_STATE(6923)] = 207977, - [SMALL_STATE(6924)] = 207993, - [SMALL_STATE(6925)] = 208009, - [SMALL_STATE(6926)] = 208025, - [SMALL_STATE(6927)] = 208041, - [SMALL_STATE(6928)] = 208057, - [SMALL_STATE(6929)] = 208073, - [SMALL_STATE(6930)] = 208087, - [SMALL_STATE(6931)] = 208103, - [SMALL_STATE(6932)] = 208117, - [SMALL_STATE(6933)] = 208133, - [SMALL_STATE(6934)] = 208149, - [SMALL_STATE(6935)] = 208165, - [SMALL_STATE(6936)] = 208181, - [SMALL_STATE(6937)] = 208197, - [SMALL_STATE(6938)] = 208213, - [SMALL_STATE(6939)] = 208229, - [SMALL_STATE(6940)] = 208245, - [SMALL_STATE(6941)] = 208261, - [SMALL_STATE(6942)] = 208275, - [SMALL_STATE(6943)] = 208291, - [SMALL_STATE(6944)] = 208307, - [SMALL_STATE(6945)] = 208323, - [SMALL_STATE(6946)] = 208337, - [SMALL_STATE(6947)] = 208353, - [SMALL_STATE(6948)] = 208367, - [SMALL_STATE(6949)] = 208383, - [SMALL_STATE(6950)] = 208399, - [SMALL_STATE(6951)] = 208413, - [SMALL_STATE(6952)] = 208429, - [SMALL_STATE(6953)] = 208445, - [SMALL_STATE(6954)] = 208461, - [SMALL_STATE(6955)] = 208475, - [SMALL_STATE(6956)] = 208489, - [SMALL_STATE(6957)] = 208503, - [SMALL_STATE(6958)] = 208517, - [SMALL_STATE(6959)] = 208531, - [SMALL_STATE(6960)] = 208547, - [SMALL_STATE(6961)] = 208563, - [SMALL_STATE(6962)] = 208577, - [SMALL_STATE(6963)] = 208593, - [SMALL_STATE(6964)] = 208609, - [SMALL_STATE(6965)] = 208625, - [SMALL_STATE(6966)] = 208639, - [SMALL_STATE(6967)] = 208653, - [SMALL_STATE(6968)] = 208669, - [SMALL_STATE(6969)] = 208683, - [SMALL_STATE(6970)] = 208699, - [SMALL_STATE(6971)] = 208713, - [SMALL_STATE(6972)] = 208729, - [SMALL_STATE(6973)] = 208743, - [SMALL_STATE(6974)] = 208759, - [SMALL_STATE(6975)] = 208775, - [SMALL_STATE(6976)] = 208791, - [SMALL_STATE(6977)] = 208807, - [SMALL_STATE(6978)] = 208821, - [SMALL_STATE(6979)] = 208835, - [SMALL_STATE(6980)] = 208849, - [SMALL_STATE(6981)] = 208863, - [SMALL_STATE(6982)] = 208877, - [SMALL_STATE(6983)] = 208891, - [SMALL_STATE(6984)] = 208907, - [SMALL_STATE(6985)] = 208921, - [SMALL_STATE(6986)] = 208935, - [SMALL_STATE(6987)] = 208951, - [SMALL_STATE(6988)] = 208967, - [SMALL_STATE(6989)] = 208983, - [SMALL_STATE(6990)] = 208997, - [SMALL_STATE(6991)] = 209010, - [SMALL_STATE(6992)] = 209023, - [SMALL_STATE(6993)] = 209036, - [SMALL_STATE(6994)] = 209049, - [SMALL_STATE(6995)] = 209062, - [SMALL_STATE(6996)] = 209075, - [SMALL_STATE(6997)] = 209088, - [SMALL_STATE(6998)] = 209101, - [SMALL_STATE(6999)] = 209114, - [SMALL_STATE(7000)] = 209127, - [SMALL_STATE(7001)] = 209140, - [SMALL_STATE(7002)] = 209153, - [SMALL_STATE(7003)] = 209166, - [SMALL_STATE(7004)] = 209179, - [SMALL_STATE(7005)] = 209192, - [SMALL_STATE(7006)] = 209205, - [SMALL_STATE(7007)] = 209218, - [SMALL_STATE(7008)] = 209231, - [SMALL_STATE(7009)] = 209244, - [SMALL_STATE(7010)] = 209257, - [SMALL_STATE(7011)] = 209270, - [SMALL_STATE(7012)] = 209283, - [SMALL_STATE(7013)] = 209296, - [SMALL_STATE(7014)] = 209309, - [SMALL_STATE(7015)] = 209322, - [SMALL_STATE(7016)] = 209335, - [SMALL_STATE(7017)] = 209348, - [SMALL_STATE(7018)] = 209361, - [SMALL_STATE(7019)] = 209374, - [SMALL_STATE(7020)] = 209387, - [SMALL_STATE(7021)] = 209400, - [SMALL_STATE(7022)] = 209413, - [SMALL_STATE(7023)] = 209426, - [SMALL_STATE(7024)] = 209439, - [SMALL_STATE(7025)] = 209452, - [SMALL_STATE(7026)] = 209465, - [SMALL_STATE(7027)] = 209478, - [SMALL_STATE(7028)] = 209491, - [SMALL_STATE(7029)] = 209504, - [SMALL_STATE(7030)] = 209517, - [SMALL_STATE(7031)] = 209530, - [SMALL_STATE(7032)] = 209543, - [SMALL_STATE(7033)] = 209556, - [SMALL_STATE(7034)] = 209569, - [SMALL_STATE(7035)] = 209582, - [SMALL_STATE(7036)] = 209595, - [SMALL_STATE(7037)] = 209608, - [SMALL_STATE(7038)] = 209621, - [SMALL_STATE(7039)] = 209634, - [SMALL_STATE(7040)] = 209647, - [SMALL_STATE(7041)] = 209660, - [SMALL_STATE(7042)] = 209673, - [SMALL_STATE(7043)] = 209686, - [SMALL_STATE(7044)] = 209699, - [SMALL_STATE(7045)] = 209712, - [SMALL_STATE(7046)] = 209725, - [SMALL_STATE(7047)] = 209738, - [SMALL_STATE(7048)] = 209751, - [SMALL_STATE(7049)] = 209764, - [SMALL_STATE(7050)] = 209777, - [SMALL_STATE(7051)] = 209790, - [SMALL_STATE(7052)] = 209803, - [SMALL_STATE(7053)] = 209816, - [SMALL_STATE(7054)] = 209829, - [SMALL_STATE(7055)] = 209842, - [SMALL_STATE(7056)] = 209855, - [SMALL_STATE(7057)] = 209868, - [SMALL_STATE(7058)] = 209881, - [SMALL_STATE(7059)] = 209894, - [SMALL_STATE(7060)] = 209907, - [SMALL_STATE(7061)] = 209920, - [SMALL_STATE(7062)] = 209933, - [SMALL_STATE(7063)] = 209946, - [SMALL_STATE(7064)] = 209959, - [SMALL_STATE(7065)] = 209972, - [SMALL_STATE(7066)] = 209985, - [SMALL_STATE(7067)] = 209998, - [SMALL_STATE(7068)] = 210011, - [SMALL_STATE(7069)] = 210024, - [SMALL_STATE(7070)] = 210037, - [SMALL_STATE(7071)] = 210050, - [SMALL_STATE(7072)] = 210063, - [SMALL_STATE(7073)] = 210076, - [SMALL_STATE(7074)] = 210089, - [SMALL_STATE(7075)] = 210102, - [SMALL_STATE(7076)] = 210115, - [SMALL_STATE(7077)] = 210128, - [SMALL_STATE(7078)] = 210141, - [SMALL_STATE(7079)] = 210154, - [SMALL_STATE(7080)] = 210167, - [SMALL_STATE(7081)] = 210180, - [SMALL_STATE(7082)] = 210193, - [SMALL_STATE(7083)] = 210206, - [SMALL_STATE(7084)] = 210219, - [SMALL_STATE(7085)] = 210232, - [SMALL_STATE(7086)] = 210245, - [SMALL_STATE(7087)] = 210258, - [SMALL_STATE(7088)] = 210271, - [SMALL_STATE(7089)] = 210284, - [SMALL_STATE(7090)] = 210297, - [SMALL_STATE(7091)] = 210310, - [SMALL_STATE(7092)] = 210323, - [SMALL_STATE(7093)] = 210336, - [SMALL_STATE(7094)] = 210349, - [SMALL_STATE(7095)] = 210362, - [SMALL_STATE(7096)] = 210375, - [SMALL_STATE(7097)] = 210388, - [SMALL_STATE(7098)] = 210401, - [SMALL_STATE(7099)] = 210414, - [SMALL_STATE(7100)] = 210427, - [SMALL_STATE(7101)] = 210440, - [SMALL_STATE(7102)] = 210453, - [SMALL_STATE(7103)] = 210466, - [SMALL_STATE(7104)] = 210479, - [SMALL_STATE(7105)] = 210492, - [SMALL_STATE(7106)] = 210505, - [SMALL_STATE(7107)] = 210518, - [SMALL_STATE(7108)] = 210531, - [SMALL_STATE(7109)] = 210544, - [SMALL_STATE(7110)] = 210557, - [SMALL_STATE(7111)] = 210570, - [SMALL_STATE(7112)] = 210583, - [SMALL_STATE(7113)] = 210596, - [SMALL_STATE(7114)] = 210609, - [SMALL_STATE(7115)] = 210622, - [SMALL_STATE(7116)] = 210635, - [SMALL_STATE(7117)] = 210648, - [SMALL_STATE(7118)] = 210661, - [SMALL_STATE(7119)] = 210674, - [SMALL_STATE(7120)] = 210687, - [SMALL_STATE(7121)] = 210700, - [SMALL_STATE(7122)] = 210713, - [SMALL_STATE(7123)] = 210726, - [SMALL_STATE(7124)] = 210739, - [SMALL_STATE(7125)] = 210752, - [SMALL_STATE(7126)] = 210765, - [SMALL_STATE(7127)] = 210778, - [SMALL_STATE(7128)] = 210791, - [SMALL_STATE(7129)] = 210804, - [SMALL_STATE(7130)] = 210817, - [SMALL_STATE(7131)] = 210830, - [SMALL_STATE(7132)] = 210843, - [SMALL_STATE(7133)] = 210856, - [SMALL_STATE(7134)] = 210869, - [SMALL_STATE(7135)] = 210882, - [SMALL_STATE(7136)] = 210895, - [SMALL_STATE(7137)] = 210908, - [SMALL_STATE(7138)] = 210921, - [SMALL_STATE(7139)] = 210934, - [SMALL_STATE(7140)] = 210947, - [SMALL_STATE(7141)] = 210960, - [SMALL_STATE(7142)] = 210973, - [SMALL_STATE(7143)] = 210986, - [SMALL_STATE(7144)] = 210999, - [SMALL_STATE(7145)] = 211012, - [SMALL_STATE(7146)] = 211025, - [SMALL_STATE(7147)] = 211038, - [SMALL_STATE(7148)] = 211051, - [SMALL_STATE(7149)] = 211064, - [SMALL_STATE(7150)] = 211077, - [SMALL_STATE(7151)] = 211090, - [SMALL_STATE(7152)] = 211103, - [SMALL_STATE(7153)] = 211116, - [SMALL_STATE(7154)] = 211129, - [SMALL_STATE(7155)] = 211142, - [SMALL_STATE(7156)] = 211155, - [SMALL_STATE(7157)] = 211168, - [SMALL_STATE(7158)] = 211181, - [SMALL_STATE(7159)] = 211194, - [SMALL_STATE(7160)] = 211207, - [SMALL_STATE(7161)] = 211220, - [SMALL_STATE(7162)] = 211233, - [SMALL_STATE(7163)] = 211246, - [SMALL_STATE(7164)] = 211259, - [SMALL_STATE(7165)] = 211272, - [SMALL_STATE(7166)] = 211285, - [SMALL_STATE(7167)] = 211298, - [SMALL_STATE(7168)] = 211311, - [SMALL_STATE(7169)] = 211324, - [SMALL_STATE(7170)] = 211337, - [SMALL_STATE(7171)] = 211350, - [SMALL_STATE(7172)] = 211363, - [SMALL_STATE(7173)] = 211376, - [SMALL_STATE(7174)] = 211389, - [SMALL_STATE(7175)] = 211402, - [SMALL_STATE(7176)] = 211415, - [SMALL_STATE(7177)] = 211428, - [SMALL_STATE(7178)] = 211441, - [SMALL_STATE(7179)] = 211454, - [SMALL_STATE(7180)] = 211467, - [SMALL_STATE(7181)] = 211480, - [SMALL_STATE(7182)] = 211493, - [SMALL_STATE(7183)] = 211506, - [SMALL_STATE(7184)] = 211519, - [SMALL_STATE(7185)] = 211532, - [SMALL_STATE(7186)] = 211545, - [SMALL_STATE(7187)] = 211558, - [SMALL_STATE(7188)] = 211571, - [SMALL_STATE(7189)] = 211584, - [SMALL_STATE(7190)] = 211597, - [SMALL_STATE(7191)] = 211610, - [SMALL_STATE(7192)] = 211623, - [SMALL_STATE(7193)] = 211636, - [SMALL_STATE(7194)] = 211649, - [SMALL_STATE(7195)] = 211662, - [SMALL_STATE(7196)] = 211675, - [SMALL_STATE(7197)] = 211688, - [SMALL_STATE(7198)] = 211701, - [SMALL_STATE(7199)] = 211714, - [SMALL_STATE(7200)] = 211727, - [SMALL_STATE(7201)] = 211740, - [SMALL_STATE(7202)] = 211753, - [SMALL_STATE(7203)] = 211766, - [SMALL_STATE(7204)] = 211779, - [SMALL_STATE(7205)] = 211792, - [SMALL_STATE(7206)] = 211805, - [SMALL_STATE(7207)] = 211818, - [SMALL_STATE(7208)] = 211831, - [SMALL_STATE(7209)] = 211844, - [SMALL_STATE(7210)] = 211857, - [SMALL_STATE(7211)] = 211870, - [SMALL_STATE(7212)] = 211883, - [SMALL_STATE(7213)] = 211896, - [SMALL_STATE(7214)] = 211909, - [SMALL_STATE(7215)] = 211922, - [SMALL_STATE(7216)] = 211935, - [SMALL_STATE(7217)] = 211948, - [SMALL_STATE(7218)] = 211961, - [SMALL_STATE(7219)] = 211974, - [SMALL_STATE(7220)] = 211987, - [SMALL_STATE(7221)] = 212000, - [SMALL_STATE(7222)] = 212013, - [SMALL_STATE(7223)] = 212026, - [SMALL_STATE(7224)] = 212039, - [SMALL_STATE(7225)] = 212052, - [SMALL_STATE(7226)] = 212065, - [SMALL_STATE(7227)] = 212078, - [SMALL_STATE(7228)] = 212091, - [SMALL_STATE(7229)] = 212104, - [SMALL_STATE(7230)] = 212117, - [SMALL_STATE(7231)] = 212130, - [SMALL_STATE(7232)] = 212143, - [SMALL_STATE(7233)] = 212156, - [SMALL_STATE(7234)] = 212169, - [SMALL_STATE(7235)] = 212182, - [SMALL_STATE(7236)] = 212195, - [SMALL_STATE(7237)] = 212208, - [SMALL_STATE(7238)] = 212221, - [SMALL_STATE(7239)] = 212234, - [SMALL_STATE(7240)] = 212247, - [SMALL_STATE(7241)] = 212260, - [SMALL_STATE(7242)] = 212273, - [SMALL_STATE(7243)] = 212286, - [SMALL_STATE(7244)] = 212299, - [SMALL_STATE(7245)] = 212312, - [SMALL_STATE(7246)] = 212325, - [SMALL_STATE(7247)] = 212338, - [SMALL_STATE(7248)] = 212351, - [SMALL_STATE(7249)] = 212364, - [SMALL_STATE(7250)] = 212377, - [SMALL_STATE(7251)] = 212390, - [SMALL_STATE(7252)] = 212403, - [SMALL_STATE(7253)] = 212416, - [SMALL_STATE(7254)] = 212429, - [SMALL_STATE(7255)] = 212442, - [SMALL_STATE(7256)] = 212455, - [SMALL_STATE(7257)] = 212468, - [SMALL_STATE(7258)] = 212481, - [SMALL_STATE(7259)] = 212494, - [SMALL_STATE(7260)] = 212507, - [SMALL_STATE(7261)] = 212520, - [SMALL_STATE(7262)] = 212533, - [SMALL_STATE(7263)] = 212546, - [SMALL_STATE(7264)] = 212559, - [SMALL_STATE(7265)] = 212572, - [SMALL_STATE(7266)] = 212585, - [SMALL_STATE(7267)] = 212598, - [SMALL_STATE(7268)] = 212611, - [SMALL_STATE(7269)] = 212624, - [SMALL_STATE(7270)] = 212637, - [SMALL_STATE(7271)] = 212650, - [SMALL_STATE(7272)] = 212663, - [SMALL_STATE(7273)] = 212676, - [SMALL_STATE(7274)] = 212689, - [SMALL_STATE(7275)] = 212702, - [SMALL_STATE(7276)] = 212715, - [SMALL_STATE(7277)] = 212728, - [SMALL_STATE(7278)] = 212741, - [SMALL_STATE(7279)] = 212754, - [SMALL_STATE(7280)] = 212767, - [SMALL_STATE(7281)] = 212780, - [SMALL_STATE(7282)] = 212793, - [SMALL_STATE(7283)] = 212806, - [SMALL_STATE(7284)] = 212819, - [SMALL_STATE(7285)] = 212832, - [SMALL_STATE(7286)] = 212845, - [SMALL_STATE(7287)] = 212858, - [SMALL_STATE(7288)] = 212871, - [SMALL_STATE(7289)] = 212884, - [SMALL_STATE(7290)] = 212897, - [SMALL_STATE(7291)] = 212910, - [SMALL_STATE(7292)] = 212923, - [SMALL_STATE(7293)] = 212936, - [SMALL_STATE(7294)] = 212949, - [SMALL_STATE(7295)] = 212962, - [SMALL_STATE(7296)] = 212975, - [SMALL_STATE(7297)] = 212988, - [SMALL_STATE(7298)] = 213001, - [SMALL_STATE(7299)] = 213014, - [SMALL_STATE(7300)] = 213027, - [SMALL_STATE(7301)] = 213040, - [SMALL_STATE(7302)] = 213053, - [SMALL_STATE(7303)] = 213066, - [SMALL_STATE(7304)] = 213079, - [SMALL_STATE(7305)] = 213092, - [SMALL_STATE(7306)] = 213105, - [SMALL_STATE(7307)] = 213118, - [SMALL_STATE(7308)] = 213131, - [SMALL_STATE(7309)] = 213144, - [SMALL_STATE(7310)] = 213157, - [SMALL_STATE(7311)] = 213170, - [SMALL_STATE(7312)] = 213183, - [SMALL_STATE(7313)] = 213196, - [SMALL_STATE(7314)] = 213209, - [SMALL_STATE(7315)] = 213222, - [SMALL_STATE(7316)] = 213235, - [SMALL_STATE(7317)] = 213248, - [SMALL_STATE(7318)] = 213261, - [SMALL_STATE(7319)] = 213274, - [SMALL_STATE(7320)] = 213287, - [SMALL_STATE(7321)] = 213300, - [SMALL_STATE(7322)] = 213313, - [SMALL_STATE(7323)] = 213326, - [SMALL_STATE(7324)] = 213339, - [SMALL_STATE(7325)] = 213352, - [SMALL_STATE(7326)] = 213365, - [SMALL_STATE(7327)] = 213378, - [SMALL_STATE(7328)] = 213391, - [SMALL_STATE(7329)] = 213404, - [SMALL_STATE(7330)] = 213417, - [SMALL_STATE(7331)] = 213430, - [SMALL_STATE(7332)] = 213443, - [SMALL_STATE(7333)] = 213456, - [SMALL_STATE(7334)] = 213469, - [SMALL_STATE(7335)] = 213482, - [SMALL_STATE(7336)] = 213495, - [SMALL_STATE(7337)] = 213508, - [SMALL_STATE(7338)] = 213521, - [SMALL_STATE(7339)] = 213534, - [SMALL_STATE(7340)] = 213547, - [SMALL_STATE(7341)] = 213560, - [SMALL_STATE(7342)] = 213573, - [SMALL_STATE(7343)] = 213586, - [SMALL_STATE(7344)] = 213599, - [SMALL_STATE(7345)] = 213612, - [SMALL_STATE(7346)] = 213625, - [SMALL_STATE(7347)] = 213638, - [SMALL_STATE(7348)] = 213651, - [SMALL_STATE(7349)] = 213664, - [SMALL_STATE(7350)] = 213677, - [SMALL_STATE(7351)] = 213690, - [SMALL_STATE(7352)] = 213703, - [SMALL_STATE(7353)] = 213716, - [SMALL_STATE(7354)] = 213729, - [SMALL_STATE(7355)] = 213742, - [SMALL_STATE(7356)] = 213755, - [SMALL_STATE(7357)] = 213768, - [SMALL_STATE(7358)] = 213781, - [SMALL_STATE(7359)] = 213794, - [SMALL_STATE(7360)] = 213807, - [SMALL_STATE(7361)] = 213820, - [SMALL_STATE(7362)] = 213833, - [SMALL_STATE(7363)] = 213846, - [SMALL_STATE(7364)] = 213859, - [SMALL_STATE(7365)] = 213872, - [SMALL_STATE(7366)] = 213885, - [SMALL_STATE(7367)] = 213898, - [SMALL_STATE(7368)] = 213911, - [SMALL_STATE(7369)] = 213924, - [SMALL_STATE(7370)] = 213937, - [SMALL_STATE(7371)] = 213950, - [SMALL_STATE(7372)] = 213963, - [SMALL_STATE(7373)] = 213976, - [SMALL_STATE(7374)] = 213989, - [SMALL_STATE(7375)] = 214002, - [SMALL_STATE(7376)] = 214015, - [SMALL_STATE(7377)] = 214028, - [SMALL_STATE(7378)] = 214041, - [SMALL_STATE(7379)] = 214054, - [SMALL_STATE(7380)] = 214067, - [SMALL_STATE(7381)] = 214080, - [SMALL_STATE(7382)] = 214093, - [SMALL_STATE(7383)] = 214106, - [SMALL_STATE(7384)] = 214119, - [SMALL_STATE(7385)] = 214132, - [SMALL_STATE(7386)] = 214145, - [SMALL_STATE(7387)] = 214158, - [SMALL_STATE(7388)] = 214171, - [SMALL_STATE(7389)] = 214184, - [SMALL_STATE(7390)] = 214197, - [SMALL_STATE(7391)] = 214210, - [SMALL_STATE(7392)] = 214223, - [SMALL_STATE(7393)] = 214236, - [SMALL_STATE(7394)] = 214249, - [SMALL_STATE(7395)] = 214262, - [SMALL_STATE(7396)] = 214275, - [SMALL_STATE(7397)] = 214288, - [SMALL_STATE(7398)] = 214301, - [SMALL_STATE(7399)] = 214314, - [SMALL_STATE(7400)] = 214327, - [SMALL_STATE(7401)] = 214340, - [SMALL_STATE(7402)] = 214353, - [SMALL_STATE(7403)] = 214366, - [SMALL_STATE(7404)] = 214379, - [SMALL_STATE(7405)] = 214392, - [SMALL_STATE(7406)] = 214405, - [SMALL_STATE(7407)] = 214418, - [SMALL_STATE(7408)] = 214431, - [SMALL_STATE(7409)] = 214444, - [SMALL_STATE(7410)] = 214457, - [SMALL_STATE(7411)] = 214470, - [SMALL_STATE(7412)] = 214483, - [SMALL_STATE(7413)] = 214496, - [SMALL_STATE(7414)] = 214509, - [SMALL_STATE(7415)] = 214522, - [SMALL_STATE(7416)] = 214535, - [SMALL_STATE(7417)] = 214548, - [SMALL_STATE(7418)] = 214561, - [SMALL_STATE(7419)] = 214574, - [SMALL_STATE(7420)] = 214587, - [SMALL_STATE(7421)] = 214600, - [SMALL_STATE(7422)] = 214613, - [SMALL_STATE(7423)] = 214626, - [SMALL_STATE(7424)] = 214639, - [SMALL_STATE(7425)] = 214652, - [SMALL_STATE(7426)] = 214665, - [SMALL_STATE(7427)] = 214678, - [SMALL_STATE(7428)] = 214691, - [SMALL_STATE(7429)] = 214704, - [SMALL_STATE(7430)] = 214717, - [SMALL_STATE(7431)] = 214730, - [SMALL_STATE(7432)] = 214743, - [SMALL_STATE(7433)] = 214756, - [SMALL_STATE(7434)] = 214769, - [SMALL_STATE(7435)] = 214782, - [SMALL_STATE(7436)] = 214795, - [SMALL_STATE(7437)] = 214808, - [SMALL_STATE(7438)] = 214821, - [SMALL_STATE(7439)] = 214834, - [SMALL_STATE(7440)] = 214847, - [SMALL_STATE(7441)] = 214860, - [SMALL_STATE(7442)] = 214873, - [SMALL_STATE(7443)] = 214886, - [SMALL_STATE(7444)] = 214899, - [SMALL_STATE(7445)] = 214912, - [SMALL_STATE(7446)] = 214925, - [SMALL_STATE(7447)] = 214938, - [SMALL_STATE(7448)] = 214951, - [SMALL_STATE(7449)] = 214964, - [SMALL_STATE(7450)] = 214977, - [SMALL_STATE(7451)] = 214990, - [SMALL_STATE(7452)] = 215003, - [SMALL_STATE(7453)] = 215016, - [SMALL_STATE(7454)] = 215029, - [SMALL_STATE(7455)] = 215042, - [SMALL_STATE(7456)] = 215055, - [SMALL_STATE(7457)] = 215068, - [SMALL_STATE(7458)] = 215081, - [SMALL_STATE(7459)] = 215094, - [SMALL_STATE(7460)] = 215107, - [SMALL_STATE(7461)] = 215120, - [SMALL_STATE(7462)] = 215133, - [SMALL_STATE(7463)] = 215146, - [SMALL_STATE(7464)] = 215159, - [SMALL_STATE(7465)] = 215172, - [SMALL_STATE(7466)] = 215185, - [SMALL_STATE(7467)] = 215198, - [SMALL_STATE(7468)] = 215211, - [SMALL_STATE(7469)] = 215224, - [SMALL_STATE(7470)] = 215237, - [SMALL_STATE(7471)] = 215250, - [SMALL_STATE(7472)] = 215263, - [SMALL_STATE(7473)] = 215276, - [SMALL_STATE(7474)] = 215289, - [SMALL_STATE(7475)] = 215302, - [SMALL_STATE(7476)] = 215315, - [SMALL_STATE(7477)] = 215328, - [SMALL_STATE(7478)] = 215341, - [SMALL_STATE(7479)] = 215354, + [SMALL_STATE(4266)] = 156074, + [SMALL_STATE(4267)] = 156095, + [SMALL_STATE(4268)] = 156126, + [SMALL_STATE(4269)] = 156163, + [SMALL_STATE(4270)] = 156194, + [SMALL_STATE(4271)] = 156223, + [SMALL_STATE(4272)] = 156256, + [SMALL_STATE(4273)] = 156291, + [SMALL_STATE(4274)] = 156322, + [SMALL_STATE(4275)] = 156355, + [SMALL_STATE(4276)] = 156388, + [SMALL_STATE(4277)] = 156419, + [SMALL_STATE(4278)] = 156452, + [SMALL_STATE(4279)] = 156485, + [SMALL_STATE(4280)] = 156518, + [SMALL_STATE(4281)] = 156539, + [SMALL_STATE(4282)] = 156576, + [SMALL_STATE(4283)] = 156597, + [SMALL_STATE(4284)] = 156618, + [SMALL_STATE(4285)] = 156639, + [SMALL_STATE(4286)] = 156672, + [SMALL_STATE(4287)] = 156697, + [SMALL_STATE(4288)] = 156734, + [SMALL_STATE(4289)] = 156771, + [SMALL_STATE(4290)] = 156804, + [SMALL_STATE(4291)] = 156841, + [SMALL_STATE(4292)] = 156878, + [SMALL_STATE(4293)] = 156899, + [SMALL_STATE(4294)] = 156936, + [SMALL_STATE(4295)] = 156973, + [SMALL_STATE(4296)] = 157008, + [SMALL_STATE(4297)] = 157029, + [SMALL_STATE(4298)] = 157062, + [SMALL_STATE(4299)] = 157083, + [SMALL_STATE(4300)] = 157104, + [SMALL_STATE(4301)] = 157125, + [SMALL_STATE(4302)] = 157158, + [SMALL_STATE(4303)] = 157179, + [SMALL_STATE(4304)] = 157212, + [SMALL_STATE(4305)] = 157246, + [SMALL_STATE(4306)] = 157278, + [SMALL_STATE(4307)] = 157312, + [SMALL_STATE(4308)] = 157342, + [SMALL_STATE(4309)] = 157364, + [SMALL_STATE(4310)] = 157392, + [SMALL_STATE(4311)] = 157426, + [SMALL_STATE(4312)] = 157452, + [SMALL_STATE(4313)] = 157480, + [SMALL_STATE(4314)] = 157506, + [SMALL_STATE(4315)] = 157540, + [SMALL_STATE(4316)] = 157572, + [SMALL_STATE(4317)] = 157598, + [SMALL_STATE(4318)] = 157626, + [SMALL_STATE(4319)] = 157652, + [SMALL_STATE(4320)] = 157678, + [SMALL_STATE(4321)] = 157704, + [SMALL_STATE(4322)] = 157730, + [SMALL_STATE(4323)] = 157758, + [SMALL_STATE(4324)] = 157792, + [SMALL_STATE(4325)] = 157826, + [SMALL_STATE(4326)] = 157854, + [SMALL_STATE(4327)] = 157888, + [SMALL_STATE(4328)] = 157910, + [SMALL_STATE(4329)] = 157938, + [SMALL_STATE(4330)] = 157960, + [SMALL_STATE(4331)] = 157992, + [SMALL_STATE(4332)] = 158020, + [SMALL_STATE(4333)] = 158052, + [SMALL_STATE(4334)] = 158084, + [SMALL_STATE(4335)] = 158112, + [SMALL_STATE(4336)] = 158140, + [SMALL_STATE(4337)] = 158172, + [SMALL_STATE(4338)] = 158192, + [SMALL_STATE(4339)] = 158226, + [SMALL_STATE(4340)] = 158246, + [SMALL_STATE(4341)] = 158280, + [SMALL_STATE(4342)] = 158312, + [SMALL_STATE(4343)] = 158346, + [SMALL_STATE(4344)] = 158377, + [SMALL_STATE(4345)] = 158406, + [SMALL_STATE(4346)] = 158437, + [SMALL_STATE(4347)] = 158460, + [SMALL_STATE(4348)] = 158491, + [SMALL_STATE(4349)] = 158522, + [SMALL_STATE(4350)] = 158553, + [SMALL_STATE(4351)] = 158580, + [SMALL_STATE(4352)] = 158607, + [SMALL_STATE(4353)] = 158638, + [SMALL_STATE(4354)] = 158669, + [SMALL_STATE(4355)] = 158700, + [SMALL_STATE(4356)] = 158727, + [SMALL_STATE(4357)] = 158754, + [SMALL_STATE(4358)] = 158781, + [SMALL_STATE(4359)] = 158808, + [SMALL_STATE(4360)] = 158835, + [SMALL_STATE(4361)] = 158866, + [SMALL_STATE(4362)] = 158893, + [SMALL_STATE(4363)] = 158920, + [SMALL_STATE(4364)] = 158947, + [SMALL_STATE(4365)] = 158974, + [SMALL_STATE(4366)] = 159001, + [SMALL_STATE(4367)] = 159028, + [SMALL_STATE(4368)] = 159055, + [SMALL_STATE(4369)] = 159082, + [SMALL_STATE(4370)] = 159109, + [SMALL_STATE(4371)] = 159136, + [SMALL_STATE(4372)] = 159163, + [SMALL_STATE(4373)] = 159190, + [SMALL_STATE(4374)] = 159217, + [SMALL_STATE(4375)] = 159244, + [SMALL_STATE(4376)] = 159271, + [SMALL_STATE(4377)] = 159298, + [SMALL_STATE(4378)] = 159325, + [SMALL_STATE(4379)] = 159352, + [SMALL_STATE(4380)] = 159379, + [SMALL_STATE(4381)] = 159406, + [SMALL_STATE(4382)] = 159433, + [SMALL_STATE(4383)] = 159460, + [SMALL_STATE(4384)] = 159487, + [SMALL_STATE(4385)] = 159514, + [SMALL_STATE(4386)] = 159541, + [SMALL_STATE(4387)] = 159568, + [SMALL_STATE(4388)] = 159595, + [SMALL_STATE(4389)] = 159622, + [SMALL_STATE(4390)] = 159649, + [SMALL_STATE(4391)] = 159676, + [SMALL_STATE(4392)] = 159703, + [SMALL_STATE(4393)] = 159730, + [SMALL_STATE(4394)] = 159757, + [SMALL_STATE(4395)] = 159788, + [SMALL_STATE(4396)] = 159815, + [SMALL_STATE(4397)] = 159842, + [SMALL_STATE(4398)] = 159873, + [SMALL_STATE(4399)] = 159894, + [SMALL_STATE(4400)] = 159921, + [SMALL_STATE(4401)] = 159948, + [SMALL_STATE(4402)] = 159979, + [SMALL_STATE(4403)] = 160010, + [SMALL_STATE(4404)] = 160037, + [SMALL_STATE(4405)] = 160064, + [SMALL_STATE(4406)] = 160095, + [SMALL_STATE(4407)] = 160124, + [SMALL_STATE(4408)] = 160155, + [SMALL_STATE(4409)] = 160186, + [SMALL_STATE(4410)] = 160217, + [SMALL_STATE(4411)] = 160248, + [SMALL_STATE(4412)] = 160279, + [SMALL_STATE(4413)] = 160306, + [SMALL_STATE(4414)] = 160337, + [SMALL_STATE(4415)] = 160360, + [SMALL_STATE(4416)] = 160391, + [SMALL_STATE(4417)] = 160422, + [SMALL_STATE(4418)] = 160449, + [SMALL_STATE(4419)] = 160476, + [SMALL_STATE(4420)] = 160499, + [SMALL_STATE(4421)] = 160526, + [SMALL_STATE(4422)] = 160557, + [SMALL_STATE(4423)] = 160588, + [SMALL_STATE(4424)] = 160619, + [SMALL_STATE(4425)] = 160646, + [SMALL_STATE(4426)] = 160673, + [SMALL_STATE(4427)] = 160700, + [SMALL_STATE(4428)] = 160727, + [SMALL_STATE(4429)] = 160758, + [SMALL_STATE(4430)] = 160785, + [SMALL_STATE(4431)] = 160812, + [SMALL_STATE(4432)] = 160843, + [SMALL_STATE(4433)] = 160870, + [SMALL_STATE(4434)] = 160901, + [SMALL_STATE(4435)] = 160928, + [SMALL_STATE(4436)] = 160955, + [SMALL_STATE(4437)] = 160982, + [SMALL_STATE(4438)] = 161013, + [SMALL_STATE(4439)] = 161040, + [SMALL_STATE(4440)] = 161071, + [SMALL_STATE(4441)] = 161098, + [SMALL_STATE(4442)] = 161129, + [SMALL_STATE(4443)] = 161156, + [SMALL_STATE(4444)] = 161183, + [SMALL_STATE(4445)] = 161210, + [SMALL_STATE(4446)] = 161237, + [SMALL_STATE(4447)] = 161264, + [SMALL_STATE(4448)] = 161295, + [SMALL_STATE(4449)] = 161326, + [SMALL_STATE(4450)] = 161357, + [SMALL_STATE(4451)] = 161376, + [SMALL_STATE(4452)] = 161395, + [SMALL_STATE(4453)] = 161414, + [SMALL_STATE(4454)] = 161433, + [SMALL_STATE(4455)] = 161452, + [SMALL_STATE(4456)] = 161471, + [SMALL_STATE(4457)] = 161498, + [SMALL_STATE(4458)] = 161529, + [SMALL_STATE(4459)] = 161548, + [SMALL_STATE(4460)] = 161575, + [SMALL_STATE(4461)] = 161606, + [SMALL_STATE(4462)] = 161637, + [SMALL_STATE(4463)] = 161668, + [SMALL_STATE(4464)] = 161699, + [SMALL_STATE(4465)] = 161730, + [SMALL_STATE(4466)] = 161761, + [SMALL_STATE(4467)] = 161792, + [SMALL_STATE(4468)] = 161823, + [SMALL_STATE(4469)] = 161852, + [SMALL_STATE(4470)] = 161883, + [SMALL_STATE(4471)] = 161902, + [SMALL_STATE(4472)] = 161933, + [SMALL_STATE(4473)] = 161964, + [SMALL_STATE(4474)] = 161995, + [SMALL_STATE(4475)] = 162022, + [SMALL_STATE(4476)] = 162053, + [SMALL_STATE(4477)] = 162084, + [SMALL_STATE(4478)] = 162111, + [SMALL_STATE(4479)] = 162138, + [SMALL_STATE(4480)] = 162161, + [SMALL_STATE(4481)] = 162188, + [SMALL_STATE(4482)] = 162215, + [SMALL_STATE(4483)] = 162242, + [SMALL_STATE(4484)] = 162263, + [SMALL_STATE(4485)] = 162282, + [SMALL_STATE(4486)] = 162309, + [SMALL_STATE(4487)] = 162340, + [SMALL_STATE(4488)] = 162367, + [SMALL_STATE(4489)] = 162394, + [SMALL_STATE(4490)] = 162421, + [SMALL_STATE(4491)] = 162440, + [SMALL_STATE(4492)] = 162463, + [SMALL_STATE(4493)] = 162490, + [SMALL_STATE(4494)] = 162513, + [SMALL_STATE(4495)] = 162536, + [SMALL_STATE(4496)] = 162567, + [SMALL_STATE(4497)] = 162590, + [SMALL_STATE(4498)] = 162617, + [SMALL_STATE(4499)] = 162640, + [SMALL_STATE(4500)] = 162663, + [SMALL_STATE(4501)] = 162686, + [SMALL_STATE(4502)] = 162709, + [SMALL_STATE(4503)] = 162732, + [SMALL_STATE(4504)] = 162759, + [SMALL_STATE(4505)] = 162782, + [SMALL_STATE(4506)] = 162805, + [SMALL_STATE(4507)] = 162832, + [SMALL_STATE(4508)] = 162859, + [SMALL_STATE(4509)] = 162890, + [SMALL_STATE(4510)] = 162909, + [SMALL_STATE(4511)] = 162940, + [SMALL_STATE(4512)] = 162971, + [SMALL_STATE(4513)] = 162996, + [SMALL_STATE(4514)] = 163019, + [SMALL_STATE(4515)] = 163050, + [SMALL_STATE(4516)] = 163069, + [SMALL_STATE(4517)] = 163092, + [SMALL_STATE(4518)] = 163115, + [SMALL_STATE(4519)] = 163138, + [SMALL_STATE(4520)] = 163169, + [SMALL_STATE(4521)] = 163198, + [SMALL_STATE(4522)] = 163225, + [SMALL_STATE(4523)] = 163246, + [SMALL_STATE(4524)] = 163277, + [SMALL_STATE(4525)] = 163306, + [SMALL_STATE(4526)] = 163337, + [SMALL_STATE(4527)] = 163356, + [SMALL_STATE(4528)] = 163387, + [SMALL_STATE(4529)] = 163418, + [SMALL_STATE(4530)] = 163445, + [SMALL_STATE(4531)] = 163472, + [SMALL_STATE(4532)] = 163503, + [SMALL_STATE(4533)] = 163530, + [SMALL_STATE(4534)] = 163557, + [SMALL_STATE(4535)] = 163588, + [SMALL_STATE(4536)] = 163615, + [SMALL_STATE(4537)] = 163638, + [SMALL_STATE(4538)] = 163661, + [SMALL_STATE(4539)] = 163692, + [SMALL_STATE(4540)] = 163715, + [SMALL_STATE(4541)] = 163742, + [SMALL_STATE(4542)] = 163771, + [SMALL_STATE(4543)] = 163798, + [SMALL_STATE(4544)] = 163825, + [SMALL_STATE(4545)] = 163856, + [SMALL_STATE(4546)] = 163883, + [SMALL_STATE(4547)] = 163910, + [SMALL_STATE(4548)] = 163941, + [SMALL_STATE(4549)] = 163960, + [SMALL_STATE(4550)] = 163991, + [SMALL_STATE(4551)] = 164022, + [SMALL_STATE(4552)] = 164053, + [SMALL_STATE(4553)] = 164072, + [SMALL_STATE(4554)] = 164099, + [SMALL_STATE(4555)] = 164126, + [SMALL_STATE(4556)] = 164153, + [SMALL_STATE(4557)] = 164176, + [SMALL_STATE(4558)] = 164197, + [SMALL_STATE(4559)] = 164224, + [SMALL_STATE(4560)] = 164243, + [SMALL_STATE(4561)] = 164272, + [SMALL_STATE(4562)] = 164303, + [SMALL_STATE(4563)] = 164322, + [SMALL_STATE(4564)] = 164353, + [SMALL_STATE(4565)] = 164384, + [SMALL_STATE(4566)] = 164407, + [SMALL_STATE(4567)] = 164430, + [SMALL_STATE(4568)] = 164453, + [SMALL_STATE(4569)] = 164484, + [SMALL_STATE(4570)] = 164515, + [SMALL_STATE(4571)] = 164534, + [SMALL_STATE(4572)] = 164553, + [SMALL_STATE(4573)] = 164572, + [SMALL_STATE(4574)] = 164603, + [SMALL_STATE(4575)] = 164622, + [SMALL_STATE(4576)] = 164651, + [SMALL_STATE(4577)] = 164682, + [SMALL_STATE(4578)] = 164713, + [SMALL_STATE(4579)] = 164744, + [SMALL_STATE(4580)] = 164773, + [SMALL_STATE(4581)] = 164802, + [SMALL_STATE(4582)] = 164825, + [SMALL_STATE(4583)] = 164852, + [SMALL_STATE(4584)] = 164879, + [SMALL_STATE(4585)] = 164902, + [SMALL_STATE(4586)] = 164929, + [SMALL_STATE(4587)] = 164960, + [SMALL_STATE(4588)] = 164991, + [SMALL_STATE(4589)] = 165018, + [SMALL_STATE(4590)] = 165047, + [SMALL_STATE(4591)] = 165076, + [SMALL_STATE(4592)] = 165095, + [SMALL_STATE(4593)] = 165116, + [SMALL_STATE(4594)] = 165145, + [SMALL_STATE(4595)] = 165174, + [SMALL_STATE(4596)] = 165203, + [SMALL_STATE(4597)] = 165232, + [SMALL_STATE(4598)] = 165251, + [SMALL_STATE(4599)] = 165270, + [SMALL_STATE(4600)] = 165293, + [SMALL_STATE(4601)] = 165312, + [SMALL_STATE(4602)] = 165333, + [SMALL_STATE(4603)] = 165364, + [SMALL_STATE(4604)] = 165385, + [SMALL_STATE(4605)] = 165414, + [SMALL_STATE(4606)] = 165433, + [SMALL_STATE(4607)] = 165452, + [SMALL_STATE(4608)] = 165483, + [SMALL_STATE(4609)] = 165514, + [SMALL_STATE(4610)] = 165543, + [SMALL_STATE(4611)] = 165574, + [SMALL_STATE(4612)] = 165597, + [SMALL_STATE(4613)] = 165616, + [SMALL_STATE(4614)] = 165635, + [SMALL_STATE(4615)] = 165654, + [SMALL_STATE(4616)] = 165673, + [SMALL_STATE(4617)] = 165695, + [SMALL_STATE(4618)] = 165723, + [SMALL_STATE(4619)] = 165751, + [SMALL_STATE(4620)] = 165769, + [SMALL_STATE(4621)] = 165789, + [SMALL_STATE(4622)] = 165815, + [SMALL_STATE(4623)] = 165843, + [SMALL_STATE(4624)] = 165871, + [SMALL_STATE(4625)] = 165897, + [SMALL_STATE(4626)] = 165925, + [SMALL_STATE(4627)] = 165947, + [SMALL_STATE(4628)] = 165969, + [SMALL_STATE(4629)] = 165991, + [SMALL_STATE(4630)] = 166019, + [SMALL_STATE(4631)] = 166041, + [SMALL_STATE(4632)] = 166063, + [SMALL_STATE(4633)] = 166085, + [SMALL_STATE(4634)] = 166113, + [SMALL_STATE(4635)] = 166141, + [SMALL_STATE(4636)] = 166163, + [SMALL_STATE(4637)] = 166191, + [SMALL_STATE(4638)] = 166219, + [SMALL_STATE(4639)] = 166241, + [SMALL_STATE(4640)] = 166269, + [SMALL_STATE(4641)] = 166297, + [SMALL_STATE(4642)] = 166325, + [SMALL_STATE(4643)] = 166345, + [SMALL_STATE(4644)] = 166363, + [SMALL_STATE(4645)] = 166391, + [SMALL_STATE(4646)] = 166419, + [SMALL_STATE(4647)] = 166447, + [SMALL_STATE(4648)] = 166473, + [SMALL_STATE(4649)] = 166495, + [SMALL_STATE(4650)] = 166523, + [SMALL_STATE(4651)] = 166551, + [SMALL_STATE(4652)] = 166579, + [SMALL_STATE(4653)] = 166597, + [SMALL_STATE(4654)] = 166619, + [SMALL_STATE(4655)] = 166647, + [SMALL_STATE(4656)] = 166669, + [SMALL_STATE(4657)] = 166691, + [SMALL_STATE(4658)] = 166717, + [SMALL_STATE(4659)] = 166739, + [SMALL_STATE(4660)] = 166761, + [SMALL_STATE(4661)] = 166789, + [SMALL_STATE(4662)] = 166817, + [SMALL_STATE(4663)] = 166839, + [SMALL_STATE(4664)] = 166861, + [SMALL_STATE(4665)] = 166887, + [SMALL_STATE(4666)] = 166905, + [SMALL_STATE(4667)] = 166927, + [SMALL_STATE(4668)] = 166949, + [SMALL_STATE(4669)] = 166967, + [SMALL_STATE(4670)] = 166985, + [SMALL_STATE(4671)] = 167013, + [SMALL_STATE(4672)] = 167035, + [SMALL_STATE(4673)] = 167063, + [SMALL_STATE(4674)] = 167083, + [SMALL_STATE(4675)] = 167111, + [SMALL_STATE(4676)] = 167133, + [SMALL_STATE(4677)] = 167161, + [SMALL_STATE(4678)] = 167189, + [SMALL_STATE(4679)] = 167211, + [SMALL_STATE(4680)] = 167237, + [SMALL_STATE(4681)] = 167263, + [SMALL_STATE(4682)] = 167283, + [SMALL_STATE(4683)] = 167305, + [SMALL_STATE(4684)] = 167331, + [SMALL_STATE(4685)] = 167349, + [SMALL_STATE(4686)] = 167371, + [SMALL_STATE(4687)] = 167399, + [SMALL_STATE(4688)] = 167419, + [SMALL_STATE(4689)] = 167445, + [SMALL_STATE(4690)] = 167473, + [SMALL_STATE(4691)] = 167499, + [SMALL_STATE(4692)] = 167527, + [SMALL_STATE(4693)] = 167553, + [SMALL_STATE(4694)] = 167575, + [SMALL_STATE(4695)] = 167603, + [SMALL_STATE(4696)] = 167621, + [SMALL_STATE(4697)] = 167639, + [SMALL_STATE(4698)] = 167657, + [SMALL_STATE(4699)] = 167685, + [SMALL_STATE(4700)] = 167713, + [SMALL_STATE(4701)] = 167735, + [SMALL_STATE(4702)] = 167757, + [SMALL_STATE(4703)] = 167779, + [SMALL_STATE(4704)] = 167797, + [SMALL_STATE(4705)] = 167819, + [SMALL_STATE(4706)] = 167837, + [SMALL_STATE(4707)] = 167859, + [SMALL_STATE(4708)] = 167887, + [SMALL_STATE(4709)] = 167915, + [SMALL_STATE(4710)] = 167937, + [SMALL_STATE(4711)] = 167965, + [SMALL_STATE(4712)] = 167987, + [SMALL_STATE(4713)] = 168015, + [SMALL_STATE(4714)] = 168033, + [SMALL_STATE(4715)] = 168061, + [SMALL_STATE(4716)] = 168083, + [SMALL_STATE(4717)] = 168101, + [SMALL_STATE(4718)] = 168119, + [SMALL_STATE(4719)] = 168137, + [SMALL_STATE(4720)] = 168163, + [SMALL_STATE(4721)] = 168189, + [SMALL_STATE(4722)] = 168207, + [SMALL_STATE(4723)] = 168235, + [SMALL_STATE(4724)] = 168263, + [SMALL_STATE(4725)] = 168291, + [SMALL_STATE(4726)] = 168319, + [SMALL_STATE(4727)] = 168347, + [SMALL_STATE(4728)] = 168375, + [SMALL_STATE(4729)] = 168393, + [SMALL_STATE(4730)] = 168421, + [SMALL_STATE(4731)] = 168439, + [SMALL_STATE(4732)] = 168461, + [SMALL_STATE(4733)] = 168479, + [SMALL_STATE(4734)] = 168501, + [SMALL_STATE(4735)] = 168521, + [SMALL_STATE(4736)] = 168541, + [SMALL_STATE(4737)] = 168563, + [SMALL_STATE(4738)] = 168585, + [SMALL_STATE(4739)] = 168613, + [SMALL_STATE(4740)] = 168641, + [SMALL_STATE(4741)] = 168661, + [SMALL_STATE(4742)] = 168683, + [SMALL_STATE(4743)] = 168701, + [SMALL_STATE(4744)] = 168729, + [SMALL_STATE(4745)] = 168755, + [SMALL_STATE(4746)] = 168777, + [SMALL_STATE(4747)] = 168797, + [SMALL_STATE(4748)] = 168825, + [SMALL_STATE(4749)] = 168853, + [SMALL_STATE(4750)] = 168871, + [SMALL_STATE(4751)] = 168893, + [SMALL_STATE(4752)] = 168915, + [SMALL_STATE(4753)] = 168943, + [SMALL_STATE(4754)] = 168961, + [SMALL_STATE(4755)] = 168979, + [SMALL_STATE(4756)] = 168997, + [SMALL_STATE(4757)] = 169025, + [SMALL_STATE(4758)] = 169053, + [SMALL_STATE(4759)] = 169075, + [SMALL_STATE(4760)] = 169097, + [SMALL_STATE(4761)] = 169119, + [SMALL_STATE(4762)] = 169141, + [SMALL_STATE(4763)] = 169161, + [SMALL_STATE(4764)] = 169179, + [SMALL_STATE(4765)] = 169201, + [SMALL_STATE(4766)] = 169223, + [SMALL_STATE(4767)] = 169245, + [SMALL_STATE(4768)] = 169263, + [SMALL_STATE(4769)] = 169285, + [SMALL_STATE(4770)] = 169307, + [SMALL_STATE(4771)] = 169325, + [SMALL_STATE(4772)] = 169347, + [SMALL_STATE(4773)] = 169375, + [SMALL_STATE(4774)] = 169403, + [SMALL_STATE(4775)] = 169431, + [SMALL_STATE(4776)] = 169453, + [SMALL_STATE(4777)] = 169471, + [SMALL_STATE(4778)] = 169493, + [SMALL_STATE(4779)] = 169521, + [SMALL_STATE(4780)] = 169539, + [SMALL_STATE(4781)] = 169557, + [SMALL_STATE(4782)] = 169585, + [SMALL_STATE(4783)] = 169607, + [SMALL_STATE(4784)] = 169629, + [SMALL_STATE(4785)] = 169655, + [SMALL_STATE(4786)] = 169681, + [SMALL_STATE(4787)] = 169703, + [SMALL_STATE(4788)] = 169721, + [SMALL_STATE(4789)] = 169739, + [SMALL_STATE(4790)] = 169761, + [SMALL_STATE(4791)] = 169785, + [SMALL_STATE(4792)] = 169813, + [SMALL_STATE(4793)] = 169831, + [SMALL_STATE(4794)] = 169849, + [SMALL_STATE(4795)] = 169877, + [SMALL_STATE(4796)] = 169903, + [SMALL_STATE(4797)] = 169923, + [SMALL_STATE(4798)] = 169941, + [SMALL_STATE(4799)] = 169969, + [SMALL_STATE(4800)] = 169987, + [SMALL_STATE(4801)] = 170015, + [SMALL_STATE(4802)] = 170043, + [SMALL_STATE(4803)] = 170071, + [SMALL_STATE(4804)] = 170095, + [SMALL_STATE(4805)] = 170121, + [SMALL_STATE(4806)] = 170147, + [SMALL_STATE(4807)] = 170175, + [SMALL_STATE(4808)] = 170203, + [SMALL_STATE(4809)] = 170229, + [SMALL_STATE(4810)] = 170255, + [SMALL_STATE(4811)] = 170281, + [SMALL_STATE(4812)] = 170309, + [SMALL_STATE(4813)] = 170337, + [SMALL_STATE(4814)] = 170359, + [SMALL_STATE(4815)] = 170387, + [SMALL_STATE(4816)] = 170413, + [SMALL_STATE(4817)] = 170441, + [SMALL_STATE(4818)] = 170469, + [SMALL_STATE(4819)] = 170495, + [SMALL_STATE(4820)] = 170523, + [SMALL_STATE(4821)] = 170545, + [SMALL_STATE(4822)] = 170563, + [SMALL_STATE(4823)] = 170591, + [SMALL_STATE(4824)] = 170619, + [SMALL_STATE(4825)] = 170647, + [SMALL_STATE(4826)] = 170675, + [SMALL_STATE(4827)] = 170703, + [SMALL_STATE(4828)] = 170725, + [SMALL_STATE(4829)] = 170743, + [SMALL_STATE(4830)] = 170761, + [SMALL_STATE(4831)] = 170779, + [SMALL_STATE(4832)] = 170797, + [SMALL_STATE(4833)] = 170815, + [SMALL_STATE(4834)] = 170843, + [SMALL_STATE(4835)] = 170867, + [SMALL_STATE(4836)] = 170889, + [SMALL_STATE(4837)] = 170917, + [SMALL_STATE(4838)] = 170935, + [SMALL_STATE(4839)] = 170963, + [SMALL_STATE(4840)] = 170989, + [SMALL_STATE(4841)] = 171011, + [SMALL_STATE(4842)] = 171039, + [SMALL_STATE(4843)] = 171067, + [SMALL_STATE(4844)] = 171095, + [SMALL_STATE(4845)] = 171123, + [SMALL_STATE(4846)] = 171141, + [SMALL_STATE(4847)] = 171162, + [SMALL_STATE(4848)] = 171183, + [SMALL_STATE(4849)] = 171208, + [SMALL_STATE(4850)] = 171229, + [SMALL_STATE(4851)] = 171250, + [SMALL_STATE(4852)] = 171275, + [SMALL_STATE(4853)] = 171300, + [SMALL_STATE(4854)] = 171317, + [SMALL_STATE(4855)] = 171342, + [SMALL_STATE(4856)] = 171359, + [SMALL_STATE(4857)] = 171384, + [SMALL_STATE(4858)] = 171405, + [SMALL_STATE(4859)] = 171426, + [SMALL_STATE(4860)] = 171451, + [SMALL_STATE(4861)] = 171476, + [SMALL_STATE(4862)] = 171501, + [SMALL_STATE(4863)] = 171526, + [SMALL_STATE(4864)] = 171551, + [SMALL_STATE(4865)] = 171568, + [SMALL_STATE(4866)] = 171585, + [SMALL_STATE(4867)] = 171606, + [SMALL_STATE(4868)] = 171627, + [SMALL_STATE(4869)] = 171648, + [SMALL_STATE(4870)] = 171671, + [SMALL_STATE(4871)] = 171696, + [SMALL_STATE(4872)] = 171721, + [SMALL_STATE(4873)] = 171746, + [SMALL_STATE(4874)] = 171771, + [SMALL_STATE(4875)] = 171796, + [SMALL_STATE(4876)] = 171821, + [SMALL_STATE(4877)] = 171838, + [SMALL_STATE(4878)] = 171855, + [SMALL_STATE(4879)] = 171880, + [SMALL_STATE(4880)] = 171905, + [SMALL_STATE(4881)] = 171930, + [SMALL_STATE(4882)] = 171947, + [SMALL_STATE(4883)] = 171964, + [SMALL_STATE(4884)] = 171981, + [SMALL_STATE(4885)] = 171998, + [SMALL_STATE(4886)] = 172019, + [SMALL_STATE(4887)] = 172036, + [SMALL_STATE(4888)] = 172061, + [SMALL_STATE(4889)] = 172078, + [SMALL_STATE(4890)] = 172103, + [SMALL_STATE(4891)] = 172124, + [SMALL_STATE(4892)] = 172141, + [SMALL_STATE(4893)] = 172164, + [SMALL_STATE(4894)] = 172181, + [SMALL_STATE(4895)] = 172202, + [SMALL_STATE(4896)] = 172219, + [SMALL_STATE(4897)] = 172236, + [SMALL_STATE(4898)] = 172257, + [SMALL_STATE(4899)] = 172282, + [SMALL_STATE(4900)] = 172299, + [SMALL_STATE(4901)] = 172324, + [SMALL_STATE(4902)] = 172341, + [SMALL_STATE(4903)] = 172362, + [SMALL_STATE(4904)] = 172387, + [SMALL_STATE(4905)] = 172408, + [SMALL_STATE(4906)] = 172433, + [SMALL_STATE(4907)] = 172458, + [SMALL_STATE(4908)] = 172479, + [SMALL_STATE(4909)] = 172500, + [SMALL_STATE(4910)] = 172521, + [SMALL_STATE(4911)] = 172538, + [SMALL_STATE(4912)] = 172559, + [SMALL_STATE(4913)] = 172584, + [SMALL_STATE(4914)] = 172601, + [SMALL_STATE(4915)] = 172620, + [SMALL_STATE(4916)] = 172641, + [SMALL_STATE(4917)] = 172666, + [SMALL_STATE(4918)] = 172691, + [SMALL_STATE(4919)] = 172712, + [SMALL_STATE(4920)] = 172737, + [SMALL_STATE(4921)] = 172758, + [SMALL_STATE(4922)] = 172783, + [SMALL_STATE(4923)] = 172804, + [SMALL_STATE(4924)] = 172829, + [SMALL_STATE(4925)] = 172854, + [SMALL_STATE(4926)] = 172879, + [SMALL_STATE(4927)] = 172900, + [SMALL_STATE(4928)] = 172921, + [SMALL_STATE(4929)] = 172942, + [SMALL_STATE(4930)] = 172963, + [SMALL_STATE(4931)] = 172980, + [SMALL_STATE(4932)] = 173001, + [SMALL_STATE(4933)] = 173022, + [SMALL_STATE(4934)] = 173043, + [SMALL_STATE(4935)] = 173060, + [SMALL_STATE(4936)] = 173081, + [SMALL_STATE(4937)] = 173098, + [SMALL_STATE(4938)] = 173123, + [SMALL_STATE(4939)] = 173144, + [SMALL_STATE(4940)] = 173169, + [SMALL_STATE(4941)] = 173190, + [SMALL_STATE(4942)] = 173211, + [SMALL_STATE(4943)] = 173232, + [SMALL_STATE(4944)] = 173249, + [SMALL_STATE(4945)] = 173270, + [SMALL_STATE(4946)] = 173295, + [SMALL_STATE(4947)] = 173312, + [SMALL_STATE(4948)] = 173335, + [SMALL_STATE(4949)] = 173352, + [SMALL_STATE(4950)] = 173377, + [SMALL_STATE(4951)] = 173394, + [SMALL_STATE(4952)] = 173415, + [SMALL_STATE(4953)] = 173440, + [SMALL_STATE(4954)] = 173461, + [SMALL_STATE(4955)] = 173482, + [SMALL_STATE(4956)] = 173505, + [SMALL_STATE(4957)] = 173526, + [SMALL_STATE(4958)] = 173551, + [SMALL_STATE(4959)] = 173574, + [SMALL_STATE(4960)] = 173599, + [SMALL_STATE(4961)] = 173620, + [SMALL_STATE(4962)] = 173645, + [SMALL_STATE(4963)] = 173666, + [SMALL_STATE(4964)] = 173691, + [SMALL_STATE(4965)] = 173708, + [SMALL_STATE(4966)] = 173725, + [SMALL_STATE(4967)] = 173746, + [SMALL_STATE(4968)] = 173771, + [SMALL_STATE(4969)] = 173796, + [SMALL_STATE(4970)] = 173817, + [SMALL_STATE(4971)] = 173838, + [SMALL_STATE(4972)] = 173863, + [SMALL_STATE(4973)] = 173886, + [SMALL_STATE(4974)] = 173911, + [SMALL_STATE(4975)] = 173932, + [SMALL_STATE(4976)] = 173953, + [SMALL_STATE(4977)] = 173974, + [SMALL_STATE(4978)] = 173991, + [SMALL_STATE(4979)] = 174008, + [SMALL_STATE(4980)] = 174025, + [SMALL_STATE(4981)] = 174042, + [SMALL_STATE(4982)] = 174063, + [SMALL_STATE(4983)] = 174088, + [SMALL_STATE(4984)] = 174109, + [SMALL_STATE(4985)] = 174134, + [SMALL_STATE(4986)] = 174151, + [SMALL_STATE(4987)] = 174172, + [SMALL_STATE(4988)] = 174189, + [SMALL_STATE(4989)] = 174210, + [SMALL_STATE(4990)] = 174227, + [SMALL_STATE(4991)] = 174248, + [SMALL_STATE(4992)] = 174273, + [SMALL_STATE(4993)] = 174298, + [SMALL_STATE(4994)] = 174315, + [SMALL_STATE(4995)] = 174340, + [SMALL_STATE(4996)] = 174357, + [SMALL_STATE(4997)] = 174374, + [SMALL_STATE(4998)] = 174395, + [SMALL_STATE(4999)] = 174420, + [SMALL_STATE(5000)] = 174441, + [SMALL_STATE(5001)] = 174466, + [SMALL_STATE(5002)] = 174487, + [SMALL_STATE(5003)] = 174512, + [SMALL_STATE(5004)] = 174537, + [SMALL_STATE(5005)] = 174562, + [SMALL_STATE(5006)] = 174583, + [SMALL_STATE(5007)] = 174604, + [SMALL_STATE(5008)] = 174629, + [SMALL_STATE(5009)] = 174650, + [SMALL_STATE(5010)] = 174671, + [SMALL_STATE(5011)] = 174692, + [SMALL_STATE(5012)] = 174713, + [SMALL_STATE(5013)] = 174730, + [SMALL_STATE(5014)] = 174755, + [SMALL_STATE(5015)] = 174780, + [SMALL_STATE(5016)] = 174805, + [SMALL_STATE(5017)] = 174822, + [SMALL_STATE(5018)] = 174847, + [SMALL_STATE(5019)] = 174868, + [SMALL_STATE(5020)] = 174891, + [SMALL_STATE(5021)] = 174912, + [SMALL_STATE(5022)] = 174933, + [SMALL_STATE(5023)] = 174954, + [SMALL_STATE(5024)] = 174979, + [SMALL_STATE(5025)] = 174996, + [SMALL_STATE(5026)] = 175017, + [SMALL_STATE(5027)] = 175042, + [SMALL_STATE(5028)] = 175067, + [SMALL_STATE(5029)] = 175092, + [SMALL_STATE(5030)] = 175113, + [SMALL_STATE(5031)] = 175130, + [SMALL_STATE(5032)] = 175147, + [SMALL_STATE(5033)] = 175168, + [SMALL_STATE(5034)] = 175189, + [SMALL_STATE(5035)] = 175214, + [SMALL_STATE(5036)] = 175235, + [SMALL_STATE(5037)] = 175252, + [SMALL_STATE(5038)] = 175273, + [SMALL_STATE(5039)] = 175290, + [SMALL_STATE(5040)] = 175315, + [SMALL_STATE(5041)] = 175336, + [SMALL_STATE(5042)] = 175357, + [SMALL_STATE(5043)] = 175378, + [SMALL_STATE(5044)] = 175395, + [SMALL_STATE(5045)] = 175416, + [SMALL_STATE(5046)] = 175433, + [SMALL_STATE(5047)] = 175450, + [SMALL_STATE(5048)] = 175471, + [SMALL_STATE(5049)] = 175492, + [SMALL_STATE(5050)] = 175517, + [SMALL_STATE(5051)] = 175534, + [SMALL_STATE(5052)] = 175555, + [SMALL_STATE(5053)] = 175576, + [SMALL_STATE(5054)] = 175601, + [SMALL_STATE(5055)] = 175622, + [SMALL_STATE(5056)] = 175639, + [SMALL_STATE(5057)] = 175658, + [SMALL_STATE(5058)] = 175679, + [SMALL_STATE(5059)] = 175700, + [SMALL_STATE(5060)] = 175721, + [SMALL_STATE(5061)] = 175746, + [SMALL_STATE(5062)] = 175767, + [SMALL_STATE(5063)] = 175788, + [SMALL_STATE(5064)] = 175805, + [SMALL_STATE(5065)] = 175826, + [SMALL_STATE(5066)] = 175849, + [SMALL_STATE(5067)] = 175870, + [SMALL_STATE(5068)] = 175887, + [SMALL_STATE(5069)] = 175908, + [SMALL_STATE(5070)] = 175925, + [SMALL_STATE(5071)] = 175946, + [SMALL_STATE(5072)] = 175967, + [SMALL_STATE(5073)] = 175992, + [SMALL_STATE(5074)] = 176013, + [SMALL_STATE(5075)] = 176030, + [SMALL_STATE(5076)] = 176053, + [SMALL_STATE(5077)] = 176070, + [SMALL_STATE(5078)] = 176091, + [SMALL_STATE(5079)] = 176116, + [SMALL_STATE(5080)] = 176137, + [SMALL_STATE(5081)] = 176158, + [SMALL_STATE(5082)] = 176179, + [SMALL_STATE(5083)] = 176204, + [SMALL_STATE(5084)] = 176225, + [SMALL_STATE(5085)] = 176250, + [SMALL_STATE(5086)] = 176271, + [SMALL_STATE(5087)] = 176292, + [SMALL_STATE(5088)] = 176315, + [SMALL_STATE(5089)] = 176332, + [SMALL_STATE(5090)] = 176355, + [SMALL_STATE(5091)] = 176372, + [SMALL_STATE(5092)] = 176393, + [SMALL_STATE(5093)] = 176414, + [SMALL_STATE(5094)] = 176439, + [SMALL_STATE(5095)] = 176456, + [SMALL_STATE(5096)] = 176477, + [SMALL_STATE(5097)] = 176494, + [SMALL_STATE(5098)] = 176515, + [SMALL_STATE(5099)] = 176536, + [SMALL_STATE(5100)] = 176553, + [SMALL_STATE(5101)] = 176570, + [SMALL_STATE(5102)] = 176587, + [SMALL_STATE(5103)] = 176608, + [SMALL_STATE(5104)] = 176629, + [SMALL_STATE(5105)] = 176650, + [SMALL_STATE(5106)] = 176671, + [SMALL_STATE(5107)] = 176692, + [SMALL_STATE(5108)] = 176709, + [SMALL_STATE(5109)] = 176730, + [SMALL_STATE(5110)] = 176755, + [SMALL_STATE(5111)] = 176772, + [SMALL_STATE(5112)] = 176789, + [SMALL_STATE(5113)] = 176810, + [SMALL_STATE(5114)] = 176827, + [SMALL_STATE(5115)] = 176844, + [SMALL_STATE(5116)] = 176865, + [SMALL_STATE(5117)] = 176882, + [SMALL_STATE(5118)] = 176899, + [SMALL_STATE(5119)] = 176922, + [SMALL_STATE(5120)] = 176943, + [SMALL_STATE(5121)] = 176960, + [SMALL_STATE(5122)] = 176981, + [SMALL_STATE(5123)] = 177002, + [SMALL_STATE(5124)] = 177025, + [SMALL_STATE(5125)] = 177046, + [SMALL_STATE(5126)] = 177067, + [SMALL_STATE(5127)] = 177088, + [SMALL_STATE(5128)] = 177113, + [SMALL_STATE(5129)] = 177130, + [SMALL_STATE(5130)] = 177151, + [SMALL_STATE(5131)] = 177172, + [SMALL_STATE(5132)] = 177189, + [SMALL_STATE(5133)] = 177212, + [SMALL_STATE(5134)] = 177229, + [SMALL_STATE(5135)] = 177254, + [SMALL_STATE(5136)] = 177275, + [SMALL_STATE(5137)] = 177298, + [SMALL_STATE(5138)] = 177315, + [SMALL_STATE(5139)] = 177332, + [SMALL_STATE(5140)] = 177357, + [SMALL_STATE(5141)] = 177374, + [SMALL_STATE(5142)] = 177391, + [SMALL_STATE(5143)] = 177412, + [SMALL_STATE(5144)] = 177433, + [SMALL_STATE(5145)] = 177454, + [SMALL_STATE(5146)] = 177479, + [SMALL_STATE(5147)] = 177504, + [SMALL_STATE(5148)] = 177521, + [SMALL_STATE(5149)] = 177546, + [SMALL_STATE(5150)] = 177563, + [SMALL_STATE(5151)] = 177580, + [SMALL_STATE(5152)] = 177605, + [SMALL_STATE(5153)] = 177630, + [SMALL_STATE(5154)] = 177647, + [SMALL_STATE(5155)] = 177672, + [SMALL_STATE(5156)] = 177689, + [SMALL_STATE(5157)] = 177706, + [SMALL_STATE(5158)] = 177723, + [SMALL_STATE(5159)] = 177740, + [SMALL_STATE(5160)] = 177757, + [SMALL_STATE(5161)] = 177780, + [SMALL_STATE(5162)] = 177797, + [SMALL_STATE(5163)] = 177822, + [SMALL_STATE(5164)] = 177847, + [SMALL_STATE(5165)] = 177872, + [SMALL_STATE(5166)] = 177893, + [SMALL_STATE(5167)] = 177914, + [SMALL_STATE(5168)] = 177939, + [SMALL_STATE(5169)] = 177964, + [SMALL_STATE(5170)] = 177981, + [SMALL_STATE(5171)] = 177998, + [SMALL_STATE(5172)] = 178023, + [SMALL_STATE(5173)] = 178040, + [SMALL_STATE(5174)] = 178057, + [SMALL_STATE(5175)] = 178078, + [SMALL_STATE(5176)] = 178103, + [SMALL_STATE(5177)] = 178124, + [SMALL_STATE(5178)] = 178149, + [SMALL_STATE(5179)] = 178174, + [SMALL_STATE(5180)] = 178191, + [SMALL_STATE(5181)] = 178212, + [SMALL_STATE(5182)] = 178231, + [SMALL_STATE(5183)] = 178256, + [SMALL_STATE(5184)] = 178281, + [SMALL_STATE(5185)] = 178302, + [SMALL_STATE(5186)] = 178319, + [SMALL_STATE(5187)] = 178338, + [SMALL_STATE(5188)] = 178357, + [SMALL_STATE(5189)] = 178378, + [SMALL_STATE(5190)] = 178397, + [SMALL_STATE(5191)] = 178414, + [SMALL_STATE(5192)] = 178431, + [SMALL_STATE(5193)] = 178448, + [SMALL_STATE(5194)] = 178469, + [SMALL_STATE(5195)] = 178490, + [SMALL_STATE(5196)] = 178511, + [SMALL_STATE(5197)] = 178528, + [SMALL_STATE(5198)] = 178549, + [SMALL_STATE(5199)] = 178570, + [SMALL_STATE(5200)] = 178591, + [SMALL_STATE(5201)] = 178616, + [SMALL_STATE(5202)] = 178637, + [SMALL_STATE(5203)] = 178654, + [SMALL_STATE(5204)] = 178679, + [SMALL_STATE(5205)] = 178696, + [SMALL_STATE(5206)] = 178717, + [SMALL_STATE(5207)] = 178734, + [SMALL_STATE(5208)] = 178759, + [SMALL_STATE(5209)] = 178776, + [SMALL_STATE(5210)] = 178801, + [SMALL_STATE(5211)] = 178822, + [SMALL_STATE(5212)] = 178843, + [SMALL_STATE(5213)] = 178860, + [SMALL_STATE(5214)] = 178877, + [SMALL_STATE(5215)] = 178898, + [SMALL_STATE(5216)] = 178919, + [SMALL_STATE(5217)] = 178940, + [SMALL_STATE(5218)] = 178963, + [SMALL_STATE(5219)] = 178988, + [SMALL_STATE(5220)] = 179009, + [SMALL_STATE(5221)] = 179034, + [SMALL_STATE(5222)] = 179055, + [SMALL_STATE(5223)] = 179076, + [SMALL_STATE(5224)] = 179101, + [SMALL_STATE(5225)] = 179126, + [SMALL_STATE(5226)] = 179147, + [SMALL_STATE(5227)] = 179164, + [SMALL_STATE(5228)] = 179189, + [SMALL_STATE(5229)] = 179206, + [SMALL_STATE(5230)] = 179231, + [SMALL_STATE(5231)] = 179248, + [SMALL_STATE(5232)] = 179265, + [SMALL_STATE(5233)] = 179286, + [SMALL_STATE(5234)] = 179309, + [SMALL_STATE(5235)] = 179326, + [SMALL_STATE(5236)] = 179351, + [SMALL_STATE(5237)] = 179376, + [SMALL_STATE(5238)] = 179393, + [SMALL_STATE(5239)] = 179418, + [SMALL_STATE(5240)] = 179439, + [SMALL_STATE(5241)] = 179464, + [SMALL_STATE(5242)] = 179485, + [SMALL_STATE(5243)] = 179502, + [SMALL_STATE(5244)] = 179523, + [SMALL_STATE(5245)] = 179548, + [SMALL_STATE(5246)] = 179565, + [SMALL_STATE(5247)] = 179582, + [SMALL_STATE(5248)] = 179603, + [SMALL_STATE(5249)] = 179628, + [SMALL_STATE(5250)] = 179645, + [SMALL_STATE(5251)] = 179666, + [SMALL_STATE(5252)] = 179683, + [SMALL_STATE(5253)] = 179704, + [SMALL_STATE(5254)] = 179725, + [SMALL_STATE(5255)] = 179746, + [SMALL_STATE(5256)] = 179771, + [SMALL_STATE(5257)] = 179788, + [SMALL_STATE(5258)] = 179813, + [SMALL_STATE(5259)] = 179830, + [SMALL_STATE(5260)] = 179853, + [SMALL_STATE(5261)] = 179878, + [SMALL_STATE(5262)] = 179899, + [SMALL_STATE(5263)] = 179916, + [SMALL_STATE(5264)] = 179937, + [SMALL_STATE(5265)] = 179958, + [SMALL_STATE(5266)] = 179975, + [SMALL_STATE(5267)] = 179992, + [SMALL_STATE(5268)] = 180013, + [SMALL_STATE(5269)] = 180030, + [SMALL_STATE(5270)] = 180051, + [SMALL_STATE(5271)] = 180068, + [SMALL_STATE(5272)] = 180093, + [SMALL_STATE(5273)] = 180110, + [SMALL_STATE(5274)] = 180133, + [SMALL_STATE(5275)] = 180150, + [SMALL_STATE(5276)] = 180171, + [SMALL_STATE(5277)] = 180188, + [SMALL_STATE(5278)] = 180205, + [SMALL_STATE(5279)] = 180222, + [SMALL_STATE(5280)] = 180247, + [SMALL_STATE(5281)] = 180268, + [SMALL_STATE(5282)] = 180289, + [SMALL_STATE(5283)] = 180310, + [SMALL_STATE(5284)] = 180335, + [SMALL_STATE(5285)] = 180360, + [SMALL_STATE(5286)] = 180377, + [SMALL_STATE(5287)] = 180394, + [SMALL_STATE(5288)] = 180411, + [SMALL_STATE(5289)] = 180428, + [SMALL_STATE(5290)] = 180445, + [SMALL_STATE(5291)] = 180470, + [SMALL_STATE(5292)] = 180487, + [SMALL_STATE(5293)] = 180512, + [SMALL_STATE(5294)] = 180529, + [SMALL_STATE(5295)] = 180550, + [SMALL_STATE(5296)] = 180567, + [SMALL_STATE(5297)] = 180592, + [SMALL_STATE(5298)] = 180609, + [SMALL_STATE(5299)] = 180634, + [SMALL_STATE(5300)] = 180651, + [SMALL_STATE(5301)] = 180668, + [SMALL_STATE(5302)] = 180693, + [SMALL_STATE(5303)] = 180710, + [SMALL_STATE(5304)] = 180731, + [SMALL_STATE(5305)] = 180752, + [SMALL_STATE(5306)] = 180773, + [SMALL_STATE(5307)] = 180798, + [SMALL_STATE(5308)] = 180819, + [SMALL_STATE(5309)] = 180836, + [SMALL_STATE(5310)] = 180857, + [SMALL_STATE(5311)] = 180874, + [SMALL_STATE(5312)] = 180895, + [SMALL_STATE(5313)] = 180916, + [SMALL_STATE(5314)] = 180933, + [SMALL_STATE(5315)] = 180954, + [SMALL_STATE(5316)] = 180971, + [SMALL_STATE(5317)] = 180988, + [SMALL_STATE(5318)] = 181005, + [SMALL_STATE(5319)] = 181030, + [SMALL_STATE(5320)] = 181051, + [SMALL_STATE(5321)] = 181068, + [SMALL_STATE(5322)] = 181089, + [SMALL_STATE(5323)] = 181114, + [SMALL_STATE(5324)] = 181131, + [SMALL_STATE(5325)] = 181156, + [SMALL_STATE(5326)] = 181177, + [SMALL_STATE(5327)] = 181198, + [SMALL_STATE(5328)] = 181215, + [SMALL_STATE(5329)] = 181240, + [SMALL_STATE(5330)] = 181257, + [SMALL_STATE(5331)] = 181278, + [SMALL_STATE(5332)] = 181295, + [SMALL_STATE(5333)] = 181316, + [SMALL_STATE(5334)] = 181337, + [SMALL_STATE(5335)] = 181358, + [SMALL_STATE(5336)] = 181375, + [SMALL_STATE(5337)] = 181396, + [SMALL_STATE(5338)] = 181413, + [SMALL_STATE(5339)] = 181430, + [SMALL_STATE(5340)] = 181455, + [SMALL_STATE(5341)] = 181472, + [SMALL_STATE(5342)] = 181489, + [SMALL_STATE(5343)] = 181510, + [SMALL_STATE(5344)] = 181527, + [SMALL_STATE(5345)] = 181552, + [SMALL_STATE(5346)] = 181577, + [SMALL_STATE(5347)] = 181602, + [SMALL_STATE(5348)] = 181619, + [SMALL_STATE(5349)] = 181642, + [SMALL_STATE(5350)] = 181659, + [SMALL_STATE(5351)] = 181684, + [SMALL_STATE(5352)] = 181701, + [SMALL_STATE(5353)] = 181726, + [SMALL_STATE(5354)] = 181743, + [SMALL_STATE(5355)] = 181760, + [SMALL_STATE(5356)] = 181777, + [SMALL_STATE(5357)] = 181802, + [SMALL_STATE(5358)] = 181827, + [SMALL_STATE(5359)] = 181844, + [SMALL_STATE(5360)] = 181869, + [SMALL_STATE(5361)] = 181886, + [SMALL_STATE(5362)] = 181907, + [SMALL_STATE(5363)] = 181924, + [SMALL_STATE(5364)] = 181941, + [SMALL_STATE(5365)] = 181958, + [SMALL_STATE(5366)] = 181983, + [SMALL_STATE(5367)] = 182006, + [SMALL_STATE(5368)] = 182031, + [SMALL_STATE(5369)] = 182048, + [SMALL_STATE(5370)] = 182073, + [SMALL_STATE(5371)] = 182090, + [SMALL_STATE(5372)] = 182113, + [SMALL_STATE(5373)] = 182134, + [SMALL_STATE(5374)] = 182159, + [SMALL_STATE(5375)] = 182184, + [SMALL_STATE(5376)] = 182201, + [SMALL_STATE(5377)] = 182226, + [SMALL_STATE(5378)] = 182247, + [SMALL_STATE(5379)] = 182264, + [SMALL_STATE(5380)] = 182287, + [SMALL_STATE(5381)] = 182304, + [SMALL_STATE(5382)] = 182325, + [SMALL_STATE(5383)] = 182350, + [SMALL_STATE(5384)] = 182371, + [SMALL_STATE(5385)] = 182392, + [SMALL_STATE(5386)] = 182409, + [SMALL_STATE(5387)] = 182434, + [SMALL_STATE(5388)] = 182451, + [SMALL_STATE(5389)] = 182476, + [SMALL_STATE(5390)] = 182499, + [SMALL_STATE(5391)] = 182524, + [SMALL_STATE(5392)] = 182541, + [SMALL_STATE(5393)] = 182566, + [SMALL_STATE(5394)] = 182591, + [SMALL_STATE(5395)] = 182616, + [SMALL_STATE(5396)] = 182641, + [SMALL_STATE(5397)] = 182658, + [SMALL_STATE(5398)] = 182683, + [SMALL_STATE(5399)] = 182708, + [SMALL_STATE(5400)] = 182733, + [SMALL_STATE(5401)] = 182758, + [SMALL_STATE(5402)] = 182775, + [SMALL_STATE(5403)] = 182798, + [SMALL_STATE(5404)] = 182823, + [SMALL_STATE(5405)] = 182840, + [SMALL_STATE(5406)] = 182857, + [SMALL_STATE(5407)] = 182882, + [SMALL_STATE(5408)] = 182899, + [SMALL_STATE(5409)] = 182922, + [SMALL_STATE(5410)] = 182943, + [SMALL_STATE(5411)] = 182965, + [SMALL_STATE(5412)] = 182985, + [SMALL_STATE(5413)] = 183007, + [SMALL_STATE(5414)] = 183027, + [SMALL_STATE(5415)] = 183049, + [SMALL_STATE(5416)] = 183071, + [SMALL_STATE(5417)] = 183093, + [SMALL_STATE(5418)] = 183115, + [SMALL_STATE(5419)] = 183135, + [SMALL_STATE(5420)] = 183155, + [SMALL_STATE(5421)] = 183175, + [SMALL_STATE(5422)] = 183197, + [SMALL_STATE(5423)] = 183219, + [SMALL_STATE(5424)] = 183241, + [SMALL_STATE(5425)] = 183259, + [SMALL_STATE(5426)] = 183281, + [SMALL_STATE(5427)] = 183303, + [SMALL_STATE(5428)] = 183319, + [SMALL_STATE(5429)] = 183341, + [SMALL_STATE(5430)] = 183361, + [SMALL_STATE(5431)] = 183381, + [SMALL_STATE(5432)] = 183403, + [SMALL_STATE(5433)] = 183423, + [SMALL_STATE(5434)] = 183445, + [SMALL_STATE(5435)] = 183465, + [SMALL_STATE(5436)] = 183487, + [SMALL_STATE(5437)] = 183507, + [SMALL_STATE(5438)] = 183527, + [SMALL_STATE(5439)] = 183549, + [SMALL_STATE(5440)] = 183569, + [SMALL_STATE(5441)] = 183589, + [SMALL_STATE(5442)] = 183609, + [SMALL_STATE(5443)] = 183629, + [SMALL_STATE(5444)] = 183649, + [SMALL_STATE(5445)] = 183669, + [SMALL_STATE(5446)] = 183689, + [SMALL_STATE(5447)] = 183709, + [SMALL_STATE(5448)] = 183729, + [SMALL_STATE(5449)] = 183749, + [SMALL_STATE(5450)] = 183769, + [SMALL_STATE(5451)] = 183791, + [SMALL_STATE(5452)] = 183811, + [SMALL_STATE(5453)] = 183831, + [SMALL_STATE(5454)] = 183851, + [SMALL_STATE(5455)] = 183873, + [SMALL_STATE(5456)] = 183893, + [SMALL_STATE(5457)] = 183913, + [SMALL_STATE(5458)] = 183935, + [SMALL_STATE(5459)] = 183957, + [SMALL_STATE(5460)] = 183979, + [SMALL_STATE(5461)] = 184001, + [SMALL_STATE(5462)] = 184023, + [SMALL_STATE(5463)] = 184039, + [SMALL_STATE(5464)] = 184061, + [SMALL_STATE(5465)] = 184083, + [SMALL_STATE(5466)] = 184105, + [SMALL_STATE(5467)] = 184127, + [SMALL_STATE(5468)] = 184149, + [SMALL_STATE(5469)] = 184169, + [SMALL_STATE(5470)] = 184191, + [SMALL_STATE(5471)] = 184213, + [SMALL_STATE(5472)] = 184231, + [SMALL_STATE(5473)] = 184253, + [SMALL_STATE(5474)] = 184275, + [SMALL_STATE(5475)] = 184295, + [SMALL_STATE(5476)] = 184315, + [SMALL_STATE(5477)] = 184335, + [SMALL_STATE(5478)] = 184357, + [SMALL_STATE(5479)] = 184377, + [SMALL_STATE(5480)] = 184395, + [SMALL_STATE(5481)] = 184413, + [SMALL_STATE(5482)] = 184429, + [SMALL_STATE(5483)] = 184449, + [SMALL_STATE(5484)] = 184469, + [SMALL_STATE(5485)] = 184489, + [SMALL_STATE(5486)] = 184509, + [SMALL_STATE(5487)] = 184529, + [SMALL_STATE(5488)] = 184549, + [SMALL_STATE(5489)] = 184569, + [SMALL_STATE(5490)] = 184589, + [SMALL_STATE(5491)] = 184609, + [SMALL_STATE(5492)] = 184629, + [SMALL_STATE(5493)] = 184651, + [SMALL_STATE(5494)] = 184671, + [SMALL_STATE(5495)] = 184691, + [SMALL_STATE(5496)] = 184711, + [SMALL_STATE(5497)] = 184731, + [SMALL_STATE(5498)] = 184751, + [SMALL_STATE(5499)] = 184773, + [SMALL_STATE(5500)] = 184793, + [SMALL_STATE(5501)] = 184813, + [SMALL_STATE(5502)] = 184833, + [SMALL_STATE(5503)] = 184855, + [SMALL_STATE(5504)] = 184875, + [SMALL_STATE(5505)] = 184895, + [SMALL_STATE(5506)] = 184915, + [SMALL_STATE(5507)] = 184935, + [SMALL_STATE(5508)] = 184951, + [SMALL_STATE(5509)] = 184971, + [SMALL_STATE(5510)] = 184993, + [SMALL_STATE(5511)] = 185015, + [SMALL_STATE(5512)] = 185037, + [SMALL_STATE(5513)] = 185059, + [SMALL_STATE(5514)] = 185081, + [SMALL_STATE(5515)] = 185103, + [SMALL_STATE(5516)] = 185125, + [SMALL_STATE(5517)] = 185143, + [SMALL_STATE(5518)] = 185163, + [SMALL_STATE(5519)] = 185183, + [SMALL_STATE(5520)] = 185203, + [SMALL_STATE(5521)] = 185223, + [SMALL_STATE(5522)] = 185243, + [SMALL_STATE(5523)] = 185263, + [SMALL_STATE(5524)] = 185283, + [SMALL_STATE(5525)] = 185303, + [SMALL_STATE(5526)] = 185325, + [SMALL_STATE(5527)] = 185345, + [SMALL_STATE(5528)] = 185367, + [SMALL_STATE(5529)] = 185389, + [SMALL_STATE(5530)] = 185409, + [SMALL_STATE(5531)] = 185429, + [SMALL_STATE(5532)] = 185451, + [SMALL_STATE(5533)] = 185471, + [SMALL_STATE(5534)] = 185491, + [SMALL_STATE(5535)] = 185513, + [SMALL_STATE(5536)] = 185535, + [SMALL_STATE(5537)] = 185557, + [SMALL_STATE(5538)] = 185575, + [SMALL_STATE(5539)] = 185595, + [SMALL_STATE(5540)] = 185615, + [SMALL_STATE(5541)] = 185635, + [SMALL_STATE(5542)] = 185655, + [SMALL_STATE(5543)] = 185675, + [SMALL_STATE(5544)] = 185695, + [SMALL_STATE(5545)] = 185717, + [SMALL_STATE(5546)] = 185737, + [SMALL_STATE(5547)] = 185757, + [SMALL_STATE(5548)] = 185777, + [SMALL_STATE(5549)] = 185799, + [SMALL_STATE(5550)] = 185819, + [SMALL_STATE(5551)] = 185839, + [SMALL_STATE(5552)] = 185859, + [SMALL_STATE(5553)] = 185879, + [SMALL_STATE(5554)] = 185899, + [SMALL_STATE(5555)] = 185919, + [SMALL_STATE(5556)] = 185939, + [SMALL_STATE(5557)] = 185961, + [SMALL_STATE(5558)] = 185979, + [SMALL_STATE(5559)] = 186001, + [SMALL_STATE(5560)] = 186023, + [SMALL_STATE(5561)] = 186043, + [SMALL_STATE(5562)] = 186063, + [SMALL_STATE(5563)] = 186085, + [SMALL_STATE(5564)] = 186101, + [SMALL_STATE(5565)] = 186121, + [SMALL_STATE(5566)] = 186141, + [SMALL_STATE(5567)] = 186161, + [SMALL_STATE(5568)] = 186181, + [SMALL_STATE(5569)] = 186201, + [SMALL_STATE(5570)] = 186217, + [SMALL_STATE(5571)] = 186237, + [SMALL_STATE(5572)] = 186253, + [SMALL_STATE(5573)] = 186273, + [SMALL_STATE(5574)] = 186295, + [SMALL_STATE(5575)] = 186315, + [SMALL_STATE(5576)] = 186335, + [SMALL_STATE(5577)] = 186355, + [SMALL_STATE(5578)] = 186375, + [SMALL_STATE(5579)] = 186395, + [SMALL_STATE(5580)] = 186417, + [SMALL_STATE(5581)] = 186437, + [SMALL_STATE(5582)] = 186457, + [SMALL_STATE(5583)] = 186477, + [SMALL_STATE(5584)] = 186499, + [SMALL_STATE(5585)] = 186519, + [SMALL_STATE(5586)] = 186539, + [SMALL_STATE(5587)] = 186559, + [SMALL_STATE(5588)] = 186579, + [SMALL_STATE(5589)] = 186599, + [SMALL_STATE(5590)] = 186619, + [SMALL_STATE(5591)] = 186639, + [SMALL_STATE(5592)] = 186659, + [SMALL_STATE(5593)] = 186679, + [SMALL_STATE(5594)] = 186701, + [SMALL_STATE(5595)] = 186723, + [SMALL_STATE(5596)] = 186745, + [SMALL_STATE(5597)] = 186767, + [SMALL_STATE(5598)] = 186787, + [SMALL_STATE(5599)] = 186809, + [SMALL_STATE(5600)] = 186831, + [SMALL_STATE(5601)] = 186851, + [SMALL_STATE(5602)] = 186871, + [SMALL_STATE(5603)] = 186893, + [SMALL_STATE(5604)] = 186911, + [SMALL_STATE(5605)] = 186931, + [SMALL_STATE(5606)] = 186951, + [SMALL_STATE(5607)] = 186973, + [SMALL_STATE(5608)] = 186995, + [SMALL_STATE(5609)] = 187011, + [SMALL_STATE(5610)] = 187031, + [SMALL_STATE(5611)] = 187053, + [SMALL_STATE(5612)] = 187075, + [SMALL_STATE(5613)] = 187095, + [SMALL_STATE(5614)] = 187117, + [SMALL_STATE(5615)] = 187135, + [SMALL_STATE(5616)] = 187155, + [SMALL_STATE(5617)] = 187177, + [SMALL_STATE(5618)] = 187199, + [SMALL_STATE(5619)] = 187219, + [SMALL_STATE(5620)] = 187241, + [SMALL_STATE(5621)] = 187263, + [SMALL_STATE(5622)] = 187281, + [SMALL_STATE(5623)] = 187301, + [SMALL_STATE(5624)] = 187317, + [SMALL_STATE(5625)] = 187337, + [SMALL_STATE(5626)] = 187359, + [SMALL_STATE(5627)] = 187375, + [SMALL_STATE(5628)] = 187395, + [SMALL_STATE(5629)] = 187415, + [SMALL_STATE(5630)] = 187437, + [SMALL_STATE(5631)] = 187457, + [SMALL_STATE(5632)] = 187477, + [SMALL_STATE(5633)] = 187495, + [SMALL_STATE(5634)] = 187515, + [SMALL_STATE(5635)] = 187537, + [SMALL_STATE(5636)] = 187559, + [SMALL_STATE(5637)] = 187581, + [SMALL_STATE(5638)] = 187601, + [SMALL_STATE(5639)] = 187623, + [SMALL_STATE(5640)] = 187643, + [SMALL_STATE(5641)] = 187665, + [SMALL_STATE(5642)] = 187687, + [SMALL_STATE(5643)] = 187707, + [SMALL_STATE(5644)] = 187727, + [SMALL_STATE(5645)] = 187746, + [SMALL_STATE(5646)] = 187761, + [SMALL_STATE(5647)] = 187780, + [SMALL_STATE(5648)] = 187797, + [SMALL_STATE(5649)] = 187814, + [SMALL_STATE(5650)] = 187833, + [SMALL_STATE(5651)] = 187852, + [SMALL_STATE(5652)] = 187871, + [SMALL_STATE(5653)] = 187890, + [SMALL_STATE(5654)] = 187905, + [SMALL_STATE(5655)] = 187922, + [SMALL_STATE(5656)] = 187941, + [SMALL_STATE(5657)] = 187956, + [SMALL_STATE(5658)] = 187975, + [SMALL_STATE(5659)] = 187992, + [SMALL_STATE(5660)] = 188009, + [SMALL_STATE(5661)] = 188028, + [SMALL_STATE(5662)] = 188045, + [SMALL_STATE(5663)] = 188064, + [SMALL_STATE(5664)] = 188083, + [SMALL_STATE(5665)] = 188102, + [SMALL_STATE(5666)] = 188121, + [SMALL_STATE(5667)] = 188140, + [SMALL_STATE(5668)] = 188157, + [SMALL_STATE(5669)] = 188174, + [SMALL_STATE(5670)] = 188193, + [SMALL_STATE(5671)] = 188212, + [SMALL_STATE(5672)] = 188229, + [SMALL_STATE(5673)] = 188246, + [SMALL_STATE(5674)] = 188265, + [SMALL_STATE(5675)] = 188284, + [SMALL_STATE(5676)] = 188303, + [SMALL_STATE(5677)] = 188322, + [SMALL_STATE(5678)] = 188339, + [SMALL_STATE(5679)] = 188356, + [SMALL_STATE(5680)] = 188371, + [SMALL_STATE(5681)] = 188390, + [SMALL_STATE(5682)] = 188405, + [SMALL_STATE(5683)] = 188424, + [SMALL_STATE(5684)] = 188441, + [SMALL_STATE(5685)] = 188456, + [SMALL_STATE(5686)] = 188475, + [SMALL_STATE(5687)] = 188494, + [SMALL_STATE(5688)] = 188511, + [SMALL_STATE(5689)] = 188528, + [SMALL_STATE(5690)] = 188543, + [SMALL_STATE(5691)] = 188562, + [SMALL_STATE(5692)] = 188579, + [SMALL_STATE(5693)] = 188598, + [SMALL_STATE(5694)] = 188617, + [SMALL_STATE(5695)] = 188636, + [SMALL_STATE(5696)] = 188655, + [SMALL_STATE(5697)] = 188672, + [SMALL_STATE(5698)] = 188689, + [SMALL_STATE(5699)] = 188708, + [SMALL_STATE(5700)] = 188727, + [SMALL_STATE(5701)] = 188746, + [SMALL_STATE(5702)] = 188763, + [SMALL_STATE(5703)] = 188780, + [SMALL_STATE(5704)] = 188797, + [SMALL_STATE(5705)] = 188816, + [SMALL_STATE(5706)] = 188833, + [SMALL_STATE(5707)] = 188850, + [SMALL_STATE(5708)] = 188867, + [SMALL_STATE(5709)] = 188882, + [SMALL_STATE(5710)] = 188899, + [SMALL_STATE(5711)] = 188918, + [SMALL_STATE(5712)] = 188937, + [SMALL_STATE(5713)] = 188956, + [SMALL_STATE(5714)] = 188971, + [SMALL_STATE(5715)] = 188990, + [SMALL_STATE(5716)] = 189007, + [SMALL_STATE(5717)] = 189026, + [SMALL_STATE(5718)] = 189043, + [SMALL_STATE(5719)] = 189058, + [SMALL_STATE(5720)] = 189077, + [SMALL_STATE(5721)] = 189096, + [SMALL_STATE(5722)] = 189115, + [SMALL_STATE(5723)] = 189134, + [SMALL_STATE(5724)] = 189151, + [SMALL_STATE(5725)] = 189170, + [SMALL_STATE(5726)] = 189187, + [SMALL_STATE(5727)] = 189206, + [SMALL_STATE(5728)] = 189223, + [SMALL_STATE(5729)] = 189242, + [SMALL_STATE(5730)] = 189261, + [SMALL_STATE(5731)] = 189280, + [SMALL_STATE(5732)] = 189295, + [SMALL_STATE(5733)] = 189314, + [SMALL_STATE(5734)] = 189333, + [SMALL_STATE(5735)] = 189348, + [SMALL_STATE(5736)] = 189365, + [SMALL_STATE(5737)] = 189384, + [SMALL_STATE(5738)] = 189399, + [SMALL_STATE(5739)] = 189418, + [SMALL_STATE(5740)] = 189435, + [SMALL_STATE(5741)] = 189452, + [SMALL_STATE(5742)] = 189471, + [SMALL_STATE(5743)] = 189490, + [SMALL_STATE(5744)] = 189509, + [SMALL_STATE(5745)] = 189526, + [SMALL_STATE(5746)] = 189541, + [SMALL_STATE(5747)] = 189560, + [SMALL_STATE(5748)] = 189579, + [SMALL_STATE(5749)] = 189598, + [SMALL_STATE(5750)] = 189613, + [SMALL_STATE(5751)] = 189628, + [SMALL_STATE(5752)] = 189643, + [SMALL_STATE(5753)] = 189658, + [SMALL_STATE(5754)] = 189677, + [SMALL_STATE(5755)] = 189696, + [SMALL_STATE(5756)] = 189715, + [SMALL_STATE(5757)] = 189730, + [SMALL_STATE(5758)] = 189745, + [SMALL_STATE(5759)] = 189764, + [SMALL_STATE(5760)] = 189783, + [SMALL_STATE(5761)] = 189798, + [SMALL_STATE(5762)] = 189817, + [SMALL_STATE(5763)] = 189832, + [SMALL_STATE(5764)] = 189851, + [SMALL_STATE(5765)] = 189868, + [SMALL_STATE(5766)] = 189887, + [SMALL_STATE(5767)] = 189902, + [SMALL_STATE(5768)] = 189921, + [SMALL_STATE(5769)] = 189936, + [SMALL_STATE(5770)] = 189955, + [SMALL_STATE(5771)] = 189970, + [SMALL_STATE(5772)] = 189989, + [SMALL_STATE(5773)] = 190004, + [SMALL_STATE(5774)] = 190019, + [SMALL_STATE(5775)] = 190038, + [SMALL_STATE(5776)] = 190053, + [SMALL_STATE(5777)] = 190072, + [SMALL_STATE(5778)] = 190087, + [SMALL_STATE(5779)] = 190102, + [SMALL_STATE(5780)] = 190117, + [SMALL_STATE(5781)] = 190132, + [SMALL_STATE(5782)] = 190147, + [SMALL_STATE(5783)] = 190162, + [SMALL_STATE(5784)] = 190177, + [SMALL_STATE(5785)] = 190192, + [SMALL_STATE(5786)] = 190211, + [SMALL_STATE(5787)] = 190226, + [SMALL_STATE(5788)] = 190241, + [SMALL_STATE(5789)] = 190256, + [SMALL_STATE(5790)] = 190271, + [SMALL_STATE(5791)] = 190286, + [SMALL_STATE(5792)] = 190301, + [SMALL_STATE(5793)] = 190320, + [SMALL_STATE(5794)] = 190335, + [SMALL_STATE(5795)] = 190350, + [SMALL_STATE(5796)] = 190367, + [SMALL_STATE(5797)] = 190382, + [SMALL_STATE(5798)] = 190401, + [SMALL_STATE(5799)] = 190416, + [SMALL_STATE(5800)] = 190435, + [SMALL_STATE(5801)] = 190450, + [SMALL_STATE(5802)] = 190469, + [SMALL_STATE(5803)] = 190484, + [SMALL_STATE(5804)] = 190503, + [SMALL_STATE(5805)] = 190518, + [SMALL_STATE(5806)] = 190535, + [SMALL_STATE(5807)] = 190550, + [SMALL_STATE(5808)] = 190565, + [SMALL_STATE(5809)] = 190580, + [SMALL_STATE(5810)] = 190595, + [SMALL_STATE(5811)] = 190610, + [SMALL_STATE(5812)] = 190625, + [SMALL_STATE(5813)] = 190640, + [SMALL_STATE(5814)] = 190655, + [SMALL_STATE(5815)] = 190670, + [SMALL_STATE(5816)] = 190685, + [SMALL_STATE(5817)] = 190700, + [SMALL_STATE(5818)] = 190715, + [SMALL_STATE(5819)] = 190730, + [SMALL_STATE(5820)] = 190745, + [SMALL_STATE(5821)] = 190760, + [SMALL_STATE(5822)] = 190775, + [SMALL_STATE(5823)] = 190790, + [SMALL_STATE(5824)] = 190805, + [SMALL_STATE(5825)] = 190820, + [SMALL_STATE(5826)] = 190835, + [SMALL_STATE(5827)] = 190850, + [SMALL_STATE(5828)] = 190865, + [SMALL_STATE(5829)] = 190880, + [SMALL_STATE(5830)] = 190895, + [SMALL_STATE(5831)] = 190914, + [SMALL_STATE(5832)] = 190929, + [SMALL_STATE(5833)] = 190944, + [SMALL_STATE(5834)] = 190959, + [SMALL_STATE(5835)] = 190974, + [SMALL_STATE(5836)] = 190989, + [SMALL_STATE(5837)] = 191004, + [SMALL_STATE(5838)] = 191019, + [SMALL_STATE(5839)] = 191034, + [SMALL_STATE(5840)] = 191049, + [SMALL_STATE(5841)] = 191064, + [SMALL_STATE(5842)] = 191083, + [SMALL_STATE(5843)] = 191102, + [SMALL_STATE(5844)] = 191117, + [SMALL_STATE(5845)] = 191132, + [SMALL_STATE(5846)] = 191147, + [SMALL_STATE(5847)] = 191166, + [SMALL_STATE(5848)] = 191185, + [SMALL_STATE(5849)] = 191200, + [SMALL_STATE(5850)] = 191219, + [SMALL_STATE(5851)] = 191234, + [SMALL_STATE(5852)] = 191249, + [SMALL_STATE(5853)] = 191264, + [SMALL_STATE(5854)] = 191279, + [SMALL_STATE(5855)] = 191294, + [SMALL_STATE(5856)] = 191313, + [SMALL_STATE(5857)] = 191328, + [SMALL_STATE(5858)] = 191347, + [SMALL_STATE(5859)] = 191362, + [SMALL_STATE(5860)] = 191377, + [SMALL_STATE(5861)] = 191392, + [SMALL_STATE(5862)] = 191407, + [SMALL_STATE(5863)] = 191422, + [SMALL_STATE(5864)] = 191437, + [SMALL_STATE(5865)] = 191452, + [SMALL_STATE(5866)] = 191467, + [SMALL_STATE(5867)] = 191482, + [SMALL_STATE(5868)] = 191497, + [SMALL_STATE(5869)] = 191512, + [SMALL_STATE(5870)] = 191527, + [SMALL_STATE(5871)] = 191542, + [SMALL_STATE(5872)] = 191561, + [SMALL_STATE(5873)] = 191576, + [SMALL_STATE(5874)] = 191591, + [SMALL_STATE(5875)] = 191606, + [SMALL_STATE(5876)] = 191621, + [SMALL_STATE(5877)] = 191636, + [SMALL_STATE(5878)] = 191651, + [SMALL_STATE(5879)] = 191666, + [SMALL_STATE(5880)] = 191681, + [SMALL_STATE(5881)] = 191700, + [SMALL_STATE(5882)] = 191719, + [SMALL_STATE(5883)] = 191734, + [SMALL_STATE(5884)] = 191753, + [SMALL_STATE(5885)] = 191768, + [SMALL_STATE(5886)] = 191783, + [SMALL_STATE(5887)] = 191798, + [SMALL_STATE(5888)] = 191813, + [SMALL_STATE(5889)] = 191828, + [SMALL_STATE(5890)] = 191843, + [SMALL_STATE(5891)] = 191858, + [SMALL_STATE(5892)] = 191873, + [SMALL_STATE(5893)] = 191888, + [SMALL_STATE(5894)] = 191903, + [SMALL_STATE(5895)] = 191918, + [SMALL_STATE(5896)] = 191933, + [SMALL_STATE(5897)] = 191952, + [SMALL_STATE(5898)] = 191967, + [SMALL_STATE(5899)] = 191982, + [SMALL_STATE(5900)] = 191997, + [SMALL_STATE(5901)] = 192012, + [SMALL_STATE(5902)] = 192027, + [SMALL_STATE(5903)] = 192042, + [SMALL_STATE(5904)] = 192057, + [SMALL_STATE(5905)] = 192072, + [SMALL_STATE(5906)] = 192087, + [SMALL_STATE(5907)] = 192104, + [SMALL_STATE(5908)] = 192119, + [SMALL_STATE(5909)] = 192134, + [SMALL_STATE(5910)] = 192149, + [SMALL_STATE(5911)] = 192164, + [SMALL_STATE(5912)] = 192179, + [SMALL_STATE(5913)] = 192194, + [SMALL_STATE(5914)] = 192209, + [SMALL_STATE(5915)] = 192224, + [SMALL_STATE(5916)] = 192239, + [SMALL_STATE(5917)] = 192254, + [SMALL_STATE(5918)] = 192269, + [SMALL_STATE(5919)] = 192284, + [SMALL_STATE(5920)] = 192299, + [SMALL_STATE(5921)] = 192314, + [SMALL_STATE(5922)] = 192329, + [SMALL_STATE(5923)] = 192344, + [SMALL_STATE(5924)] = 192359, + [SMALL_STATE(5925)] = 192374, + [SMALL_STATE(5926)] = 192389, + [SMALL_STATE(5927)] = 192404, + [SMALL_STATE(5928)] = 192423, + [SMALL_STATE(5929)] = 192438, + [SMALL_STATE(5930)] = 192453, + [SMALL_STATE(5931)] = 192472, + [SMALL_STATE(5932)] = 192487, + [SMALL_STATE(5933)] = 192502, + [SMALL_STATE(5934)] = 192517, + [SMALL_STATE(5935)] = 192536, + [SMALL_STATE(5936)] = 192555, + [SMALL_STATE(5937)] = 192570, + [SMALL_STATE(5938)] = 192585, + [SMALL_STATE(5939)] = 192600, + [SMALL_STATE(5940)] = 192615, + [SMALL_STATE(5941)] = 192632, + [SMALL_STATE(5942)] = 192651, + [SMALL_STATE(5943)] = 192666, + [SMALL_STATE(5944)] = 192681, + [SMALL_STATE(5945)] = 192700, + [SMALL_STATE(5946)] = 192715, + [SMALL_STATE(5947)] = 192730, + [SMALL_STATE(5948)] = 192745, + [SMALL_STATE(5949)] = 192760, + [SMALL_STATE(5950)] = 192775, + [SMALL_STATE(5951)] = 192790, + [SMALL_STATE(5952)] = 192805, + [SMALL_STATE(5953)] = 192820, + [SMALL_STATE(5954)] = 192835, + [SMALL_STATE(5955)] = 192850, + [SMALL_STATE(5956)] = 192865, + [SMALL_STATE(5957)] = 192882, + [SMALL_STATE(5958)] = 192899, + [SMALL_STATE(5959)] = 192914, + [SMALL_STATE(5960)] = 192931, + [SMALL_STATE(5961)] = 192946, + [SMALL_STATE(5962)] = 192961, + [SMALL_STATE(5963)] = 192980, + [SMALL_STATE(5964)] = 192997, + [SMALL_STATE(5965)] = 193012, + [SMALL_STATE(5966)] = 193027, + [SMALL_STATE(5967)] = 193046, + [SMALL_STATE(5968)] = 193065, + [SMALL_STATE(5969)] = 193080, + [SMALL_STATE(5970)] = 193095, + [SMALL_STATE(5971)] = 193112, + [SMALL_STATE(5972)] = 193127, + [SMALL_STATE(5973)] = 193146, + [SMALL_STATE(5974)] = 193161, + [SMALL_STATE(5975)] = 193180, + [SMALL_STATE(5976)] = 193199, + [SMALL_STATE(5977)] = 193216, + [SMALL_STATE(5978)] = 193235, + [SMALL_STATE(5979)] = 193250, + [SMALL_STATE(5980)] = 193265, + [SMALL_STATE(5981)] = 193280, + [SMALL_STATE(5982)] = 193295, + [SMALL_STATE(5983)] = 193310, + [SMALL_STATE(5984)] = 193325, + [SMALL_STATE(5985)] = 193340, + [SMALL_STATE(5986)] = 193357, + [SMALL_STATE(5987)] = 193374, + [SMALL_STATE(5988)] = 193391, + [SMALL_STATE(5989)] = 193406, + [SMALL_STATE(5990)] = 193423, + [SMALL_STATE(5991)] = 193440, + [SMALL_STATE(5992)] = 193457, + [SMALL_STATE(5993)] = 193474, + [SMALL_STATE(5994)] = 193491, + [SMALL_STATE(5995)] = 193508, + [SMALL_STATE(5996)] = 193525, + [SMALL_STATE(5997)] = 193542, + [SMALL_STATE(5998)] = 193557, + [SMALL_STATE(5999)] = 193572, + [SMALL_STATE(6000)] = 193589, + [SMALL_STATE(6001)] = 193604, + [SMALL_STATE(6002)] = 193619, + [SMALL_STATE(6003)] = 193638, + [SMALL_STATE(6004)] = 193653, + [SMALL_STATE(6005)] = 193668, + [SMALL_STATE(6006)] = 193683, + [SMALL_STATE(6007)] = 193702, + [SMALL_STATE(6008)] = 193717, + [SMALL_STATE(6009)] = 193732, + [SMALL_STATE(6010)] = 193747, + [SMALL_STATE(6011)] = 193762, + [SMALL_STATE(6012)] = 193777, + [SMALL_STATE(6013)] = 193792, + [SMALL_STATE(6014)] = 193807, + [SMALL_STATE(6015)] = 193822, + [SMALL_STATE(6016)] = 193837, + [SMALL_STATE(6017)] = 193856, + [SMALL_STATE(6018)] = 193871, + [SMALL_STATE(6019)] = 193890, + [SMALL_STATE(6020)] = 193909, + [SMALL_STATE(6021)] = 193924, + [SMALL_STATE(6022)] = 193943, + [SMALL_STATE(6023)] = 193962, + [SMALL_STATE(6024)] = 193981, + [SMALL_STATE(6025)] = 193996, + [SMALL_STATE(6026)] = 194015, + [SMALL_STATE(6027)] = 194030, + [SMALL_STATE(6028)] = 194049, + [SMALL_STATE(6029)] = 194064, + [SMALL_STATE(6030)] = 194079, + [SMALL_STATE(6031)] = 194098, + [SMALL_STATE(6032)] = 194113, + [SMALL_STATE(6033)] = 194132, + [SMALL_STATE(6034)] = 194147, + [SMALL_STATE(6035)] = 194162, + [SMALL_STATE(6036)] = 194177, + [SMALL_STATE(6037)] = 194192, + [SMALL_STATE(6038)] = 194207, + [SMALL_STATE(6039)] = 194222, + [SMALL_STATE(6040)] = 194237, + [SMALL_STATE(6041)] = 194252, + [SMALL_STATE(6042)] = 194267, + [SMALL_STATE(6043)] = 194282, + [SMALL_STATE(6044)] = 194297, + [SMALL_STATE(6045)] = 194316, + [SMALL_STATE(6046)] = 194331, + [SMALL_STATE(6047)] = 194346, + [SMALL_STATE(6048)] = 194361, + [SMALL_STATE(6049)] = 194376, + [SMALL_STATE(6050)] = 194393, + [SMALL_STATE(6051)] = 194412, + [SMALL_STATE(6052)] = 194427, + [SMALL_STATE(6053)] = 194442, + [SMALL_STATE(6054)] = 194461, + [SMALL_STATE(6055)] = 194476, + [SMALL_STATE(6056)] = 194491, + [SMALL_STATE(6057)] = 194506, + [SMALL_STATE(6058)] = 194525, + [SMALL_STATE(6059)] = 194540, + [SMALL_STATE(6060)] = 194559, + [SMALL_STATE(6061)] = 194574, + [SMALL_STATE(6062)] = 194591, + [SMALL_STATE(6063)] = 194606, + [SMALL_STATE(6064)] = 194621, + [SMALL_STATE(6065)] = 194636, + [SMALL_STATE(6066)] = 194651, + [SMALL_STATE(6067)] = 194668, + [SMALL_STATE(6068)] = 194683, + [SMALL_STATE(6069)] = 194698, + [SMALL_STATE(6070)] = 194713, + [SMALL_STATE(6071)] = 194732, + [SMALL_STATE(6072)] = 194747, + [SMALL_STATE(6073)] = 194762, + [SMALL_STATE(6074)] = 194781, + [SMALL_STATE(6075)] = 194796, + [SMALL_STATE(6076)] = 194811, + [SMALL_STATE(6077)] = 194826, + [SMALL_STATE(6078)] = 194841, + [SMALL_STATE(6079)] = 194856, + [SMALL_STATE(6080)] = 194871, + [SMALL_STATE(6081)] = 194886, + [SMALL_STATE(6082)] = 194901, + [SMALL_STATE(6083)] = 194916, + [SMALL_STATE(6084)] = 194931, + [SMALL_STATE(6085)] = 194946, + [SMALL_STATE(6086)] = 194963, + [SMALL_STATE(6087)] = 194982, + [SMALL_STATE(6088)] = 194997, + [SMALL_STATE(6089)] = 195016, + [SMALL_STATE(6090)] = 195035, + [SMALL_STATE(6091)] = 195054, + [SMALL_STATE(6092)] = 195073, + [SMALL_STATE(6093)] = 195092, + [SMALL_STATE(6094)] = 195107, + [SMALL_STATE(6095)] = 195122, + [SMALL_STATE(6096)] = 195137, + [SMALL_STATE(6097)] = 195152, + [SMALL_STATE(6098)] = 195167, + [SMALL_STATE(6099)] = 195182, + [SMALL_STATE(6100)] = 195201, + [SMALL_STATE(6101)] = 195216, + [SMALL_STATE(6102)] = 195233, + [SMALL_STATE(6103)] = 195248, + [SMALL_STATE(6104)] = 195263, + [SMALL_STATE(6105)] = 195280, + [SMALL_STATE(6106)] = 195295, + [SMALL_STATE(6107)] = 195310, + [SMALL_STATE(6108)] = 195327, + [SMALL_STATE(6109)] = 195342, + [SMALL_STATE(6110)] = 195357, + [SMALL_STATE(6111)] = 195372, + [SMALL_STATE(6112)] = 195391, + [SMALL_STATE(6113)] = 195406, + [SMALL_STATE(6114)] = 195421, + [SMALL_STATE(6115)] = 195436, + [SMALL_STATE(6116)] = 195455, + [SMALL_STATE(6117)] = 195474, + [SMALL_STATE(6118)] = 195489, + [SMALL_STATE(6119)] = 195508, + [SMALL_STATE(6120)] = 195527, + [SMALL_STATE(6121)] = 195542, + [SMALL_STATE(6122)] = 195557, + [SMALL_STATE(6123)] = 195572, + [SMALL_STATE(6124)] = 195587, + [SMALL_STATE(6125)] = 195602, + [SMALL_STATE(6126)] = 195617, + [SMALL_STATE(6127)] = 195636, + [SMALL_STATE(6128)] = 195655, + [SMALL_STATE(6129)] = 195672, + [SMALL_STATE(6130)] = 195691, + [SMALL_STATE(6131)] = 195706, + [SMALL_STATE(6132)] = 195721, + [SMALL_STATE(6133)] = 195736, + [SMALL_STATE(6134)] = 195751, + [SMALL_STATE(6135)] = 195766, + [SMALL_STATE(6136)] = 195781, + [SMALL_STATE(6137)] = 195796, + [SMALL_STATE(6138)] = 195811, + [SMALL_STATE(6139)] = 195826, + [SMALL_STATE(6140)] = 195841, + [SMALL_STATE(6141)] = 195856, + [SMALL_STATE(6142)] = 195871, + [SMALL_STATE(6143)] = 195886, + [SMALL_STATE(6144)] = 195901, + [SMALL_STATE(6145)] = 195920, + [SMALL_STATE(6146)] = 195935, + [SMALL_STATE(6147)] = 195950, + [SMALL_STATE(6148)] = 195965, + [SMALL_STATE(6149)] = 195980, + [SMALL_STATE(6150)] = 195995, + [SMALL_STATE(6151)] = 196010, + [SMALL_STATE(6152)] = 196025, + [SMALL_STATE(6153)] = 196044, + [SMALL_STATE(6154)] = 196059, + [SMALL_STATE(6155)] = 196074, + [SMALL_STATE(6156)] = 196089, + [SMALL_STATE(6157)] = 196108, + [SMALL_STATE(6158)] = 196123, + [SMALL_STATE(6159)] = 196142, + [SMALL_STATE(6160)] = 196157, + [SMALL_STATE(6161)] = 196176, + [SMALL_STATE(6162)] = 196191, + [SMALL_STATE(6163)] = 196206, + [SMALL_STATE(6164)] = 196225, + [SMALL_STATE(6165)] = 196240, + [SMALL_STATE(6166)] = 196259, + [SMALL_STATE(6167)] = 196274, + [SMALL_STATE(6168)] = 196293, + [SMALL_STATE(6169)] = 196308, + [SMALL_STATE(6170)] = 196323, + [SMALL_STATE(6171)] = 196338, + [SMALL_STATE(6172)] = 196353, + [SMALL_STATE(6173)] = 196372, + [SMALL_STATE(6174)] = 196387, + [SMALL_STATE(6175)] = 196406, + [SMALL_STATE(6176)] = 196425, + [SMALL_STATE(6177)] = 196440, + [SMALL_STATE(6178)] = 196455, + [SMALL_STATE(6179)] = 196470, + [SMALL_STATE(6180)] = 196485, + [SMALL_STATE(6181)] = 196500, + [SMALL_STATE(6182)] = 196515, + [SMALL_STATE(6183)] = 196530, + [SMALL_STATE(6184)] = 196545, + [SMALL_STATE(6185)] = 196560, + [SMALL_STATE(6186)] = 196575, + [SMALL_STATE(6187)] = 196590, + [SMALL_STATE(6188)] = 196605, + [SMALL_STATE(6189)] = 196620, + [SMALL_STATE(6190)] = 196635, + [SMALL_STATE(6191)] = 196650, + [SMALL_STATE(6192)] = 196665, + [SMALL_STATE(6193)] = 196680, + [SMALL_STATE(6194)] = 196695, + [SMALL_STATE(6195)] = 196714, + [SMALL_STATE(6196)] = 196729, + [SMALL_STATE(6197)] = 196744, + [SMALL_STATE(6198)] = 196759, + [SMALL_STATE(6199)] = 196774, + [SMALL_STATE(6200)] = 196789, + [SMALL_STATE(6201)] = 196808, + [SMALL_STATE(6202)] = 196823, + [SMALL_STATE(6203)] = 196842, + [SMALL_STATE(6204)] = 196861, + [SMALL_STATE(6205)] = 196880, + [SMALL_STATE(6206)] = 196895, + [SMALL_STATE(6207)] = 196910, + [SMALL_STATE(6208)] = 196929, + [SMALL_STATE(6209)] = 196948, + [SMALL_STATE(6210)] = 196965, + [SMALL_STATE(6211)] = 196984, + [SMALL_STATE(6212)] = 197003, + [SMALL_STATE(6213)] = 197018, + [SMALL_STATE(6214)] = 197035, + [SMALL_STATE(6215)] = 197054, + [SMALL_STATE(6216)] = 197073, + [SMALL_STATE(6217)] = 197092, + [SMALL_STATE(6218)] = 197107, + [SMALL_STATE(6219)] = 197122, + [SMALL_STATE(6220)] = 197141, + [SMALL_STATE(6221)] = 197160, + [SMALL_STATE(6222)] = 197175, + [SMALL_STATE(6223)] = 197190, + [SMALL_STATE(6224)] = 197205, + [SMALL_STATE(6225)] = 197224, + [SMALL_STATE(6226)] = 197243, + [SMALL_STATE(6227)] = 197258, + [SMALL_STATE(6228)] = 197277, + [SMALL_STATE(6229)] = 197296, + [SMALL_STATE(6230)] = 197311, + [SMALL_STATE(6231)] = 197326, + [SMALL_STATE(6232)] = 197345, + [SMALL_STATE(6233)] = 197364, + [SMALL_STATE(6234)] = 197379, + [SMALL_STATE(6235)] = 197394, + [SMALL_STATE(6236)] = 197409, + [SMALL_STATE(6237)] = 197424, + [SMALL_STATE(6238)] = 197439, + [SMALL_STATE(6239)] = 197454, + [SMALL_STATE(6240)] = 197473, + [SMALL_STATE(6241)] = 197492, + [SMALL_STATE(6242)] = 197509, + [SMALL_STATE(6243)] = 197526, + [SMALL_STATE(6244)] = 197543, + [SMALL_STATE(6245)] = 197558, + [SMALL_STATE(6246)] = 197577, + [SMALL_STATE(6247)] = 197592, + [SMALL_STATE(6248)] = 197607, + [SMALL_STATE(6249)] = 197626, + [SMALL_STATE(6250)] = 197645, + [SMALL_STATE(6251)] = 197664, + [SMALL_STATE(6252)] = 197683, + [SMALL_STATE(6253)] = 197702, + [SMALL_STATE(6254)] = 197717, + [SMALL_STATE(6255)] = 197732, + [SMALL_STATE(6256)] = 197751, + [SMALL_STATE(6257)] = 197770, + [SMALL_STATE(6258)] = 197785, + [SMALL_STATE(6259)] = 197800, + [SMALL_STATE(6260)] = 197815, + [SMALL_STATE(6261)] = 197830, + [SMALL_STATE(6262)] = 197845, + [SMALL_STATE(6263)] = 197860, + [SMALL_STATE(6264)] = 197879, + [SMALL_STATE(6265)] = 197894, + [SMALL_STATE(6266)] = 197913, + [SMALL_STATE(6267)] = 197932, + [SMALL_STATE(6268)] = 197947, + [SMALL_STATE(6269)] = 197966, + [SMALL_STATE(6270)] = 197981, + [SMALL_STATE(6271)] = 198000, + [SMALL_STATE(6272)] = 198015, + [SMALL_STATE(6273)] = 198034, + [SMALL_STATE(6274)] = 198049, + [SMALL_STATE(6275)] = 198068, + [SMALL_STATE(6276)] = 198087, + [SMALL_STATE(6277)] = 198102, + [SMALL_STATE(6278)] = 198121, + [SMALL_STATE(6279)] = 198136, + [SMALL_STATE(6280)] = 198151, + [SMALL_STATE(6281)] = 198166, + [SMALL_STATE(6282)] = 198181, + [SMALL_STATE(6283)] = 198200, + [SMALL_STATE(6284)] = 198215, + [SMALL_STATE(6285)] = 198230, + [SMALL_STATE(6286)] = 198245, + [SMALL_STATE(6287)] = 198264, + [SMALL_STATE(6288)] = 198281, + [SMALL_STATE(6289)] = 198296, + [SMALL_STATE(6290)] = 198315, + [SMALL_STATE(6291)] = 198330, + [SMALL_STATE(6292)] = 198349, + [SMALL_STATE(6293)] = 198368, + [SMALL_STATE(6294)] = 198387, + [SMALL_STATE(6295)] = 198406, + [SMALL_STATE(6296)] = 198425, + [SMALL_STATE(6297)] = 198444, + [SMALL_STATE(6298)] = 198463, + [SMALL_STATE(6299)] = 198482, + [SMALL_STATE(6300)] = 198501, + [SMALL_STATE(6301)] = 198516, + [SMALL_STATE(6302)] = 198535, + [SMALL_STATE(6303)] = 198554, + [SMALL_STATE(6304)] = 198573, + [SMALL_STATE(6305)] = 198592, + [SMALL_STATE(6306)] = 198609, + [SMALL_STATE(6307)] = 198626, + [SMALL_STATE(6308)] = 198641, + [SMALL_STATE(6309)] = 198660, + [SMALL_STATE(6310)] = 198675, + [SMALL_STATE(6311)] = 198694, + [SMALL_STATE(6312)] = 198713, + [SMALL_STATE(6313)] = 198728, + [SMALL_STATE(6314)] = 198743, + [SMALL_STATE(6315)] = 198758, + [SMALL_STATE(6316)] = 198777, + [SMALL_STATE(6317)] = 198796, + [SMALL_STATE(6318)] = 198815, + [SMALL_STATE(6319)] = 198834, + [SMALL_STATE(6320)] = 198853, + [SMALL_STATE(6321)] = 198868, + [SMALL_STATE(6322)] = 198887, + [SMALL_STATE(6323)] = 198906, + [SMALL_STATE(6324)] = 198921, + [SMALL_STATE(6325)] = 198940, + [SMALL_STATE(6326)] = 198957, + [SMALL_STATE(6327)] = 198976, + [SMALL_STATE(6328)] = 198991, + [SMALL_STATE(6329)] = 199010, + [SMALL_STATE(6330)] = 199029, + [SMALL_STATE(6331)] = 199044, + [SMALL_STATE(6332)] = 199059, + [SMALL_STATE(6333)] = 199074, + [SMALL_STATE(6334)] = 199089, + [SMALL_STATE(6335)] = 199104, + [SMALL_STATE(6336)] = 199123, + [SMALL_STATE(6337)] = 199138, + [SMALL_STATE(6338)] = 199152, + [SMALL_STATE(6339)] = 199166, + [SMALL_STATE(6340)] = 199182, + [SMALL_STATE(6341)] = 199198, + [SMALL_STATE(6342)] = 199214, + [SMALL_STATE(6343)] = 199228, + [SMALL_STATE(6344)] = 199244, + [SMALL_STATE(6345)] = 199260, + [SMALL_STATE(6346)] = 199274, + [SMALL_STATE(6347)] = 199290, + [SMALL_STATE(6348)] = 199306, + [SMALL_STATE(6349)] = 199322, + [SMALL_STATE(6350)] = 199336, + [SMALL_STATE(6351)] = 199352, + [SMALL_STATE(6352)] = 199368, + [SMALL_STATE(6353)] = 199382, + [SMALL_STATE(6354)] = 199398, + [SMALL_STATE(6355)] = 199414, + [SMALL_STATE(6356)] = 199430, + [SMALL_STATE(6357)] = 199444, + [SMALL_STATE(6358)] = 199460, + [SMALL_STATE(6359)] = 199476, + [SMALL_STATE(6360)] = 199492, + [SMALL_STATE(6361)] = 199506, + [SMALL_STATE(6362)] = 199520, + [SMALL_STATE(6363)] = 199534, + [SMALL_STATE(6364)] = 199548, + [SMALL_STATE(6365)] = 199562, + [SMALL_STATE(6366)] = 199576, + [SMALL_STATE(6367)] = 199592, + [SMALL_STATE(6368)] = 199608, + [SMALL_STATE(6369)] = 199624, + [SMALL_STATE(6370)] = 199638, + [SMALL_STATE(6371)] = 199652, + [SMALL_STATE(6372)] = 199666, + [SMALL_STATE(6373)] = 199682, + [SMALL_STATE(6374)] = 199696, + [SMALL_STATE(6375)] = 199712, + [SMALL_STATE(6376)] = 199728, + [SMALL_STATE(6377)] = 199742, + [SMALL_STATE(6378)] = 199758, + [SMALL_STATE(6379)] = 199774, + [SMALL_STATE(6380)] = 199788, + [SMALL_STATE(6381)] = 199804, + [SMALL_STATE(6382)] = 199818, + [SMALL_STATE(6383)] = 199832, + [SMALL_STATE(6384)] = 199848, + [SMALL_STATE(6385)] = 199862, + [SMALL_STATE(6386)] = 199876, + [SMALL_STATE(6387)] = 199890, + [SMALL_STATE(6388)] = 199906, + [SMALL_STATE(6389)] = 199922, + [SMALL_STATE(6390)] = 199938, + [SMALL_STATE(6391)] = 199954, + [SMALL_STATE(6392)] = 199968, + [SMALL_STATE(6393)] = 199982, + [SMALL_STATE(6394)] = 199998, + [SMALL_STATE(6395)] = 200012, + [SMALL_STATE(6396)] = 200028, + [SMALL_STATE(6397)] = 200042, + [SMALL_STATE(6398)] = 200058, + [SMALL_STATE(6399)] = 200074, + [SMALL_STATE(6400)] = 200090, + [SMALL_STATE(6401)] = 200106, + [SMALL_STATE(6402)] = 200120, + [SMALL_STATE(6403)] = 200136, + [SMALL_STATE(6404)] = 200152, + [SMALL_STATE(6405)] = 200166, + [SMALL_STATE(6406)] = 200182, + [SMALL_STATE(6407)] = 200196, + [SMALL_STATE(6408)] = 200210, + [SMALL_STATE(6409)] = 200224, + [SMALL_STATE(6410)] = 200240, + [SMALL_STATE(6411)] = 200256, + [SMALL_STATE(6412)] = 200272, + [SMALL_STATE(6413)] = 200288, + [SMALL_STATE(6414)] = 200302, + [SMALL_STATE(6415)] = 200318, + [SMALL_STATE(6416)] = 200334, + [SMALL_STATE(6417)] = 200350, + [SMALL_STATE(6418)] = 200364, + [SMALL_STATE(6419)] = 200380, + [SMALL_STATE(6420)] = 200396, + [SMALL_STATE(6421)] = 200410, + [SMALL_STATE(6422)] = 200426, + [SMALL_STATE(6423)] = 200442, + [SMALL_STATE(6424)] = 200458, + [SMALL_STATE(6425)] = 200474, + [SMALL_STATE(6426)] = 200490, + [SMALL_STATE(6427)] = 200506, + [SMALL_STATE(6428)] = 200520, + [SMALL_STATE(6429)] = 200534, + [SMALL_STATE(6430)] = 200550, + [SMALL_STATE(6431)] = 200566, + [SMALL_STATE(6432)] = 200582, + [SMALL_STATE(6433)] = 200598, + [SMALL_STATE(6434)] = 200614, + [SMALL_STATE(6435)] = 200628, + [SMALL_STATE(6436)] = 200642, + [SMALL_STATE(6437)] = 200656, + [SMALL_STATE(6438)] = 200670, + [SMALL_STATE(6439)] = 200686, + [SMALL_STATE(6440)] = 200702, + [SMALL_STATE(6441)] = 200718, + [SMALL_STATE(6442)] = 200734, + [SMALL_STATE(6443)] = 200750, + [SMALL_STATE(6444)] = 200766, + [SMALL_STATE(6445)] = 200782, + [SMALL_STATE(6446)] = 200798, + [SMALL_STATE(6447)] = 200814, + [SMALL_STATE(6448)] = 200828, + [SMALL_STATE(6449)] = 200844, + [SMALL_STATE(6450)] = 200860, + [SMALL_STATE(6451)] = 200876, + [SMALL_STATE(6452)] = 200892, + [SMALL_STATE(6453)] = 200908, + [SMALL_STATE(6454)] = 200924, + [SMALL_STATE(6455)] = 200940, + [SMALL_STATE(6456)] = 200956, + [SMALL_STATE(6457)] = 200972, + [SMALL_STATE(6458)] = 200988, + [SMALL_STATE(6459)] = 201004, + [SMALL_STATE(6460)] = 201020, + [SMALL_STATE(6461)] = 201036, + [SMALL_STATE(6462)] = 201052, + [SMALL_STATE(6463)] = 201068, + [SMALL_STATE(6464)] = 201084, + [SMALL_STATE(6465)] = 201098, + [SMALL_STATE(6466)] = 201112, + [SMALL_STATE(6467)] = 201128, + [SMALL_STATE(6468)] = 201144, + [SMALL_STATE(6469)] = 201158, + [SMALL_STATE(6470)] = 201174, + [SMALL_STATE(6471)] = 201190, + [SMALL_STATE(6472)] = 201204, + [SMALL_STATE(6473)] = 201220, + [SMALL_STATE(6474)] = 201236, + [SMALL_STATE(6475)] = 201252, + [SMALL_STATE(6476)] = 201268, + [SMALL_STATE(6477)] = 201284, + [SMALL_STATE(6478)] = 201300, + [SMALL_STATE(6479)] = 201316, + [SMALL_STATE(6480)] = 201330, + [SMALL_STATE(6481)] = 201346, + [SMALL_STATE(6482)] = 201362, + [SMALL_STATE(6483)] = 201378, + [SMALL_STATE(6484)] = 201394, + [SMALL_STATE(6485)] = 201408, + [SMALL_STATE(6486)] = 201422, + [SMALL_STATE(6487)] = 201438, + [SMALL_STATE(6488)] = 201454, + [SMALL_STATE(6489)] = 201470, + [SMALL_STATE(6490)] = 201484, + [SMALL_STATE(6491)] = 201500, + [SMALL_STATE(6492)] = 201514, + [SMALL_STATE(6493)] = 201530, + [SMALL_STATE(6494)] = 201544, + [SMALL_STATE(6495)] = 201558, + [SMALL_STATE(6496)] = 201572, + [SMALL_STATE(6497)] = 201588, + [SMALL_STATE(6498)] = 201604, + [SMALL_STATE(6499)] = 201618, + [SMALL_STATE(6500)] = 201632, + [SMALL_STATE(6501)] = 201648, + [SMALL_STATE(6502)] = 201664, + [SMALL_STATE(6503)] = 201680, + [SMALL_STATE(6504)] = 201696, + [SMALL_STATE(6505)] = 201710, + [SMALL_STATE(6506)] = 201724, + [SMALL_STATE(6507)] = 201738, + [SMALL_STATE(6508)] = 201754, + [SMALL_STATE(6509)] = 201768, + [SMALL_STATE(6510)] = 201782, + [SMALL_STATE(6511)] = 201798, + [SMALL_STATE(6512)] = 201814, + [SMALL_STATE(6513)] = 201830, + [SMALL_STATE(6514)] = 201846, + [SMALL_STATE(6515)] = 201860, + [SMALL_STATE(6516)] = 201876, + [SMALL_STATE(6517)] = 201892, + [SMALL_STATE(6518)] = 201908, + [SMALL_STATE(6519)] = 201924, + [SMALL_STATE(6520)] = 201940, + [SMALL_STATE(6521)] = 201956, + [SMALL_STATE(6522)] = 201972, + [SMALL_STATE(6523)] = 201988, + [SMALL_STATE(6524)] = 202002, + [SMALL_STATE(6525)] = 202016, + [SMALL_STATE(6526)] = 202030, + [SMALL_STATE(6527)] = 202046, + [SMALL_STATE(6528)] = 202062, + [SMALL_STATE(6529)] = 202078, + [SMALL_STATE(6530)] = 202094, + [SMALL_STATE(6531)] = 202110, + [SMALL_STATE(6532)] = 202126, + [SMALL_STATE(6533)] = 202142, + [SMALL_STATE(6534)] = 202156, + [SMALL_STATE(6535)] = 202170, + [SMALL_STATE(6536)] = 202184, + [SMALL_STATE(6537)] = 202200, + [SMALL_STATE(6538)] = 202216, + [SMALL_STATE(6539)] = 202230, + [SMALL_STATE(6540)] = 202244, + [SMALL_STATE(6541)] = 202260, + [SMALL_STATE(6542)] = 202274, + [SMALL_STATE(6543)] = 202290, + [SMALL_STATE(6544)] = 202306, + [SMALL_STATE(6545)] = 202322, + [SMALL_STATE(6546)] = 202336, + [SMALL_STATE(6547)] = 202352, + [SMALL_STATE(6548)] = 202366, + [SMALL_STATE(6549)] = 202382, + [SMALL_STATE(6550)] = 202398, + [SMALL_STATE(6551)] = 202414, + [SMALL_STATE(6552)] = 202428, + [SMALL_STATE(6553)] = 202442, + [SMALL_STATE(6554)] = 202458, + [SMALL_STATE(6555)] = 202474, + [SMALL_STATE(6556)] = 202490, + [SMALL_STATE(6557)] = 202504, + [SMALL_STATE(6558)] = 202520, + [SMALL_STATE(6559)] = 202534, + [SMALL_STATE(6560)] = 202548, + [SMALL_STATE(6561)] = 202564, + [SMALL_STATE(6562)] = 202580, + [SMALL_STATE(6563)] = 202596, + [SMALL_STATE(6564)] = 202610, + [SMALL_STATE(6565)] = 202624, + [SMALL_STATE(6566)] = 202638, + [SMALL_STATE(6567)] = 202652, + [SMALL_STATE(6568)] = 202666, + [SMALL_STATE(6569)] = 202682, + [SMALL_STATE(6570)] = 202696, + [SMALL_STATE(6571)] = 202710, + [SMALL_STATE(6572)] = 202724, + [SMALL_STATE(6573)] = 202740, + [SMALL_STATE(6574)] = 202756, + [SMALL_STATE(6575)] = 202772, + [SMALL_STATE(6576)] = 202788, + [SMALL_STATE(6577)] = 202804, + [SMALL_STATE(6578)] = 202820, + [SMALL_STATE(6579)] = 202834, + [SMALL_STATE(6580)] = 202850, + [SMALL_STATE(6581)] = 202864, + [SMALL_STATE(6582)] = 202878, + [SMALL_STATE(6583)] = 202894, + [SMALL_STATE(6584)] = 202910, + [SMALL_STATE(6585)] = 202924, + [SMALL_STATE(6586)] = 202940, + [SMALL_STATE(6587)] = 202956, + [SMALL_STATE(6588)] = 202972, + [SMALL_STATE(6589)] = 202988, + [SMALL_STATE(6590)] = 203004, + [SMALL_STATE(6591)] = 203020, + [SMALL_STATE(6592)] = 203036, + [SMALL_STATE(6593)] = 203050, + [SMALL_STATE(6594)] = 203066, + [SMALL_STATE(6595)] = 203080, + [SMALL_STATE(6596)] = 203096, + [SMALL_STATE(6597)] = 203110, + [SMALL_STATE(6598)] = 203124, + [SMALL_STATE(6599)] = 203140, + [SMALL_STATE(6600)] = 203156, + [SMALL_STATE(6601)] = 203170, + [SMALL_STATE(6602)] = 203184, + [SMALL_STATE(6603)] = 203198, + [SMALL_STATE(6604)] = 203212, + [SMALL_STATE(6605)] = 203228, + [SMALL_STATE(6606)] = 203244, + [SMALL_STATE(6607)] = 203258, + [SMALL_STATE(6608)] = 203272, + [SMALL_STATE(6609)] = 203288, + [SMALL_STATE(6610)] = 203304, + [SMALL_STATE(6611)] = 203318, + [SMALL_STATE(6612)] = 203332, + [SMALL_STATE(6613)] = 203348, + [SMALL_STATE(6614)] = 203364, + [SMALL_STATE(6615)] = 203380, + [SMALL_STATE(6616)] = 203396, + [SMALL_STATE(6617)] = 203412, + [SMALL_STATE(6618)] = 203426, + [SMALL_STATE(6619)] = 203442, + [SMALL_STATE(6620)] = 203458, + [SMALL_STATE(6621)] = 203474, + [SMALL_STATE(6622)] = 203490, + [SMALL_STATE(6623)] = 203504, + [SMALL_STATE(6624)] = 203520, + [SMALL_STATE(6625)] = 203536, + [SMALL_STATE(6626)] = 203550, + [SMALL_STATE(6627)] = 203566, + [SMALL_STATE(6628)] = 203580, + [SMALL_STATE(6629)] = 203596, + [SMALL_STATE(6630)] = 203610, + [SMALL_STATE(6631)] = 203624, + [SMALL_STATE(6632)] = 203638, + [SMALL_STATE(6633)] = 203654, + [SMALL_STATE(6634)] = 203668, + [SMALL_STATE(6635)] = 203682, + [SMALL_STATE(6636)] = 203698, + [SMALL_STATE(6637)] = 203712, + [SMALL_STATE(6638)] = 203728, + [SMALL_STATE(6639)] = 203742, + [SMALL_STATE(6640)] = 203758, + [SMALL_STATE(6641)] = 203772, + [SMALL_STATE(6642)] = 203788, + [SMALL_STATE(6643)] = 203802, + [SMALL_STATE(6644)] = 203816, + [SMALL_STATE(6645)] = 203832, + [SMALL_STATE(6646)] = 203848, + [SMALL_STATE(6647)] = 203862, + [SMALL_STATE(6648)] = 203878, + [SMALL_STATE(6649)] = 203894, + [SMALL_STATE(6650)] = 203910, + [SMALL_STATE(6651)] = 203926, + [SMALL_STATE(6652)] = 203942, + [SMALL_STATE(6653)] = 203958, + [SMALL_STATE(6654)] = 203972, + [SMALL_STATE(6655)] = 203988, + [SMALL_STATE(6656)] = 204004, + [SMALL_STATE(6657)] = 204020, + [SMALL_STATE(6658)] = 204036, + [SMALL_STATE(6659)] = 204052, + [SMALL_STATE(6660)] = 204066, + [SMALL_STATE(6661)] = 204080, + [SMALL_STATE(6662)] = 204094, + [SMALL_STATE(6663)] = 204110, + [SMALL_STATE(6664)] = 204124, + [SMALL_STATE(6665)] = 204138, + [SMALL_STATE(6666)] = 204152, + [SMALL_STATE(6667)] = 204168, + [SMALL_STATE(6668)] = 204182, + [SMALL_STATE(6669)] = 204196, + [SMALL_STATE(6670)] = 204212, + [SMALL_STATE(6671)] = 204228, + [SMALL_STATE(6672)] = 204242, + [SMALL_STATE(6673)] = 204258, + [SMALL_STATE(6674)] = 204274, + [SMALL_STATE(6675)] = 204290, + [SMALL_STATE(6676)] = 204306, + [SMALL_STATE(6677)] = 204320, + [SMALL_STATE(6678)] = 204334, + [SMALL_STATE(6679)] = 204350, + [SMALL_STATE(6680)] = 204366, + [SMALL_STATE(6681)] = 204380, + [SMALL_STATE(6682)] = 204394, + [SMALL_STATE(6683)] = 204410, + [SMALL_STATE(6684)] = 204424, + [SMALL_STATE(6685)] = 204438, + [SMALL_STATE(6686)] = 204452, + [SMALL_STATE(6687)] = 204466, + [SMALL_STATE(6688)] = 204480, + [SMALL_STATE(6689)] = 204496, + [SMALL_STATE(6690)] = 204512, + [SMALL_STATE(6691)] = 204528, + [SMALL_STATE(6692)] = 204544, + [SMALL_STATE(6693)] = 204560, + [SMALL_STATE(6694)] = 204574, + [SMALL_STATE(6695)] = 204590, + [SMALL_STATE(6696)] = 204604, + [SMALL_STATE(6697)] = 204618, + [SMALL_STATE(6698)] = 204632, + [SMALL_STATE(6699)] = 204648, + [SMALL_STATE(6700)] = 204662, + [SMALL_STATE(6701)] = 204678, + [SMALL_STATE(6702)] = 204692, + [SMALL_STATE(6703)] = 204706, + [SMALL_STATE(6704)] = 204722, + [SMALL_STATE(6705)] = 204736, + [SMALL_STATE(6706)] = 204752, + [SMALL_STATE(6707)] = 204766, + [SMALL_STATE(6708)] = 204782, + [SMALL_STATE(6709)] = 204798, + [SMALL_STATE(6710)] = 204812, + [SMALL_STATE(6711)] = 204828, + [SMALL_STATE(6712)] = 204844, + [SMALL_STATE(6713)] = 204860, + [SMALL_STATE(6714)] = 204876, + [SMALL_STATE(6715)] = 204892, + [SMALL_STATE(6716)] = 204908, + [SMALL_STATE(6717)] = 204924, + [SMALL_STATE(6718)] = 204940, + [SMALL_STATE(6719)] = 204956, + [SMALL_STATE(6720)] = 204970, + [SMALL_STATE(6721)] = 204986, + [SMALL_STATE(6722)] = 205002, + [SMALL_STATE(6723)] = 205018, + [SMALL_STATE(6724)] = 205032, + [SMALL_STATE(6725)] = 205046, + [SMALL_STATE(6726)] = 205062, + [SMALL_STATE(6727)] = 205076, + [SMALL_STATE(6728)] = 205092, + [SMALL_STATE(6729)] = 205106, + [SMALL_STATE(6730)] = 205120, + [SMALL_STATE(6731)] = 205134, + [SMALL_STATE(6732)] = 205148, + [SMALL_STATE(6733)] = 205164, + [SMALL_STATE(6734)] = 205178, + [SMALL_STATE(6735)] = 205192, + [SMALL_STATE(6736)] = 205208, + [SMALL_STATE(6737)] = 205224, + [SMALL_STATE(6738)] = 205240, + [SMALL_STATE(6739)] = 205256, + [SMALL_STATE(6740)] = 205270, + [SMALL_STATE(6741)] = 205286, + [SMALL_STATE(6742)] = 205302, + [SMALL_STATE(6743)] = 205318, + [SMALL_STATE(6744)] = 205334, + [SMALL_STATE(6745)] = 205350, + [SMALL_STATE(6746)] = 205364, + [SMALL_STATE(6747)] = 205380, + [SMALL_STATE(6748)] = 205394, + [SMALL_STATE(6749)] = 205408, + [SMALL_STATE(6750)] = 205424, + [SMALL_STATE(6751)] = 205440, + [SMALL_STATE(6752)] = 205454, + [SMALL_STATE(6753)] = 205470, + [SMALL_STATE(6754)] = 205484, + [SMALL_STATE(6755)] = 205500, + [SMALL_STATE(6756)] = 205514, + [SMALL_STATE(6757)] = 205528, + [SMALL_STATE(6758)] = 205544, + [SMALL_STATE(6759)] = 205560, + [SMALL_STATE(6760)] = 205576, + [SMALL_STATE(6761)] = 205592, + [SMALL_STATE(6762)] = 205608, + [SMALL_STATE(6763)] = 205624, + [SMALL_STATE(6764)] = 205638, + [SMALL_STATE(6765)] = 205652, + [SMALL_STATE(6766)] = 205666, + [SMALL_STATE(6767)] = 205682, + [SMALL_STATE(6768)] = 205698, + [SMALL_STATE(6769)] = 205714, + [SMALL_STATE(6770)] = 205730, + [SMALL_STATE(6771)] = 205746, + [SMALL_STATE(6772)] = 205762, + [SMALL_STATE(6773)] = 205778, + [SMALL_STATE(6774)] = 205794, + [SMALL_STATE(6775)] = 205810, + [SMALL_STATE(6776)] = 205826, + [SMALL_STATE(6777)] = 205842, + [SMALL_STATE(6778)] = 205858, + [SMALL_STATE(6779)] = 205874, + [SMALL_STATE(6780)] = 205888, + [SMALL_STATE(6781)] = 205904, + [SMALL_STATE(6782)] = 205918, + [SMALL_STATE(6783)] = 205934, + [SMALL_STATE(6784)] = 205948, + [SMALL_STATE(6785)] = 205962, + [SMALL_STATE(6786)] = 205976, + [SMALL_STATE(6787)] = 205992, + [SMALL_STATE(6788)] = 206008, + [SMALL_STATE(6789)] = 206024, + [SMALL_STATE(6790)] = 206038, + [SMALL_STATE(6791)] = 206054, + [SMALL_STATE(6792)] = 206070, + [SMALL_STATE(6793)] = 206086, + [SMALL_STATE(6794)] = 206100, + [SMALL_STATE(6795)] = 206116, + [SMALL_STATE(6796)] = 206132, + [SMALL_STATE(6797)] = 206146, + [SMALL_STATE(6798)] = 206162, + [SMALL_STATE(6799)] = 206178, + [SMALL_STATE(6800)] = 206194, + [SMALL_STATE(6801)] = 206208, + [SMALL_STATE(6802)] = 206222, + [SMALL_STATE(6803)] = 206238, + [SMALL_STATE(6804)] = 206254, + [SMALL_STATE(6805)] = 206270, + [SMALL_STATE(6806)] = 206286, + [SMALL_STATE(6807)] = 206300, + [SMALL_STATE(6808)] = 206316, + [SMALL_STATE(6809)] = 206332, + [SMALL_STATE(6810)] = 206346, + [SMALL_STATE(6811)] = 206362, + [SMALL_STATE(6812)] = 206376, + [SMALL_STATE(6813)] = 206392, + [SMALL_STATE(6814)] = 206406, + [SMALL_STATE(6815)] = 206420, + [SMALL_STATE(6816)] = 206436, + [SMALL_STATE(6817)] = 206452, + [SMALL_STATE(6818)] = 206468, + [SMALL_STATE(6819)] = 206484, + [SMALL_STATE(6820)] = 206498, + [SMALL_STATE(6821)] = 206514, + [SMALL_STATE(6822)] = 206530, + [SMALL_STATE(6823)] = 206544, + [SMALL_STATE(6824)] = 206560, + [SMALL_STATE(6825)] = 206574, + [SMALL_STATE(6826)] = 206588, + [SMALL_STATE(6827)] = 206602, + [SMALL_STATE(6828)] = 206616, + [SMALL_STATE(6829)] = 206630, + [SMALL_STATE(6830)] = 206646, + [SMALL_STATE(6831)] = 206662, + [SMALL_STATE(6832)] = 206678, + [SMALL_STATE(6833)] = 206692, + [SMALL_STATE(6834)] = 206706, + [SMALL_STATE(6835)] = 206722, + [SMALL_STATE(6836)] = 206736, + [SMALL_STATE(6837)] = 206752, + [SMALL_STATE(6838)] = 206766, + [SMALL_STATE(6839)] = 206782, + [SMALL_STATE(6840)] = 206798, + [SMALL_STATE(6841)] = 206812, + [SMALL_STATE(6842)] = 206828, + [SMALL_STATE(6843)] = 206842, + [SMALL_STATE(6844)] = 206856, + [SMALL_STATE(6845)] = 206872, + [SMALL_STATE(6846)] = 206888, + [SMALL_STATE(6847)] = 206902, + [SMALL_STATE(6848)] = 206918, + [SMALL_STATE(6849)] = 206932, + [SMALL_STATE(6850)] = 206948, + [SMALL_STATE(6851)] = 206962, + [SMALL_STATE(6852)] = 206976, + [SMALL_STATE(6853)] = 206992, + [SMALL_STATE(6854)] = 207008, + [SMALL_STATE(6855)] = 207024, + [SMALL_STATE(6856)] = 207040, + [SMALL_STATE(6857)] = 207056, + [SMALL_STATE(6858)] = 207070, + [SMALL_STATE(6859)] = 207084, + [SMALL_STATE(6860)] = 207098, + [SMALL_STATE(6861)] = 207114, + [SMALL_STATE(6862)] = 207128, + [SMALL_STATE(6863)] = 207144, + [SMALL_STATE(6864)] = 207160, + [SMALL_STATE(6865)] = 207176, + [SMALL_STATE(6866)] = 207190, + [SMALL_STATE(6867)] = 207206, + [SMALL_STATE(6868)] = 207222, + [SMALL_STATE(6869)] = 207236, + [SMALL_STATE(6870)] = 207252, + [SMALL_STATE(6871)] = 207266, + [SMALL_STATE(6872)] = 207282, + [SMALL_STATE(6873)] = 207296, + [SMALL_STATE(6874)] = 207310, + [SMALL_STATE(6875)] = 207326, + [SMALL_STATE(6876)] = 207340, + [SMALL_STATE(6877)] = 207354, + [SMALL_STATE(6878)] = 207370, + [SMALL_STATE(6879)] = 207386, + [SMALL_STATE(6880)] = 207402, + [SMALL_STATE(6881)] = 207418, + [SMALL_STATE(6882)] = 207434, + [SMALL_STATE(6883)] = 207448, + [SMALL_STATE(6884)] = 207462, + [SMALL_STATE(6885)] = 207478, + [SMALL_STATE(6886)] = 207494, + [SMALL_STATE(6887)] = 207510, + [SMALL_STATE(6888)] = 207526, + [SMALL_STATE(6889)] = 207542, + [SMALL_STATE(6890)] = 207556, + [SMALL_STATE(6891)] = 207572, + [SMALL_STATE(6892)] = 207588, + [SMALL_STATE(6893)] = 207602, + [SMALL_STATE(6894)] = 207618, + [SMALL_STATE(6895)] = 207634, + [SMALL_STATE(6896)] = 207648, + [SMALL_STATE(6897)] = 207662, + [SMALL_STATE(6898)] = 207678, + [SMALL_STATE(6899)] = 207694, + [SMALL_STATE(6900)] = 207708, + [SMALL_STATE(6901)] = 207724, + [SMALL_STATE(6902)] = 207740, + [SMALL_STATE(6903)] = 207754, + [SMALL_STATE(6904)] = 207770, + [SMALL_STATE(6905)] = 207784, + [SMALL_STATE(6906)] = 207800, + [SMALL_STATE(6907)] = 207816, + [SMALL_STATE(6908)] = 207832, + [SMALL_STATE(6909)] = 207846, + [SMALL_STATE(6910)] = 207860, + [SMALL_STATE(6911)] = 207874, + [SMALL_STATE(6912)] = 207890, + [SMALL_STATE(6913)] = 207906, + [SMALL_STATE(6914)] = 207920, + [SMALL_STATE(6915)] = 207936, + [SMALL_STATE(6916)] = 207950, + [SMALL_STATE(6917)] = 207964, + [SMALL_STATE(6918)] = 207978, + [SMALL_STATE(6919)] = 207994, + [SMALL_STATE(6920)] = 208010, + [SMALL_STATE(6921)] = 208026, + [SMALL_STATE(6922)] = 208042, + [SMALL_STATE(6923)] = 208058, + [SMALL_STATE(6924)] = 208074, + [SMALL_STATE(6925)] = 208088, + [SMALL_STATE(6926)] = 208102, + [SMALL_STATE(6927)] = 208116, + [SMALL_STATE(6928)] = 208132, + [SMALL_STATE(6929)] = 208148, + [SMALL_STATE(6930)] = 208164, + [SMALL_STATE(6931)] = 208180, + [SMALL_STATE(6932)] = 208196, + [SMALL_STATE(6933)] = 208212, + [SMALL_STATE(6934)] = 208228, + [SMALL_STATE(6935)] = 208244, + [SMALL_STATE(6936)] = 208260, + [SMALL_STATE(6937)] = 208276, + [SMALL_STATE(6938)] = 208292, + [SMALL_STATE(6939)] = 208308, + [SMALL_STATE(6940)] = 208324, + [SMALL_STATE(6941)] = 208340, + [SMALL_STATE(6942)] = 208356, + [SMALL_STATE(6943)] = 208372, + [SMALL_STATE(6944)] = 208388, + [SMALL_STATE(6945)] = 208404, + [SMALL_STATE(6946)] = 208420, + [SMALL_STATE(6947)] = 208436, + [SMALL_STATE(6948)] = 208452, + [SMALL_STATE(6949)] = 208468, + [SMALL_STATE(6950)] = 208484, + [SMALL_STATE(6951)] = 208500, + [SMALL_STATE(6952)] = 208516, + [SMALL_STATE(6953)] = 208532, + [SMALL_STATE(6954)] = 208548, + [SMALL_STATE(6955)] = 208562, + [SMALL_STATE(6956)] = 208576, + [SMALL_STATE(6957)] = 208590, + [SMALL_STATE(6958)] = 208604, + [SMALL_STATE(6959)] = 208618, + [SMALL_STATE(6960)] = 208634, + [SMALL_STATE(6961)] = 208650, + [SMALL_STATE(6962)] = 208666, + [SMALL_STATE(6963)] = 208682, + [SMALL_STATE(6964)] = 208698, + [SMALL_STATE(6965)] = 208714, + [SMALL_STATE(6966)] = 208728, + [SMALL_STATE(6967)] = 208744, + [SMALL_STATE(6968)] = 208758, + [SMALL_STATE(6969)] = 208774, + [SMALL_STATE(6970)] = 208790, + [SMALL_STATE(6971)] = 208806, + [SMALL_STATE(6972)] = 208822, + [SMALL_STATE(6973)] = 208838, + [SMALL_STATE(6974)] = 208854, + [SMALL_STATE(6975)] = 208868, + [SMALL_STATE(6976)] = 208882, + [SMALL_STATE(6977)] = 208898, + [SMALL_STATE(6978)] = 208912, + [SMALL_STATE(6979)] = 208926, + [SMALL_STATE(6980)] = 208940, + [SMALL_STATE(6981)] = 208956, + [SMALL_STATE(6982)] = 208972, + [SMALL_STATE(6983)] = 208988, + [SMALL_STATE(6984)] = 209004, + [SMALL_STATE(6985)] = 209020, + [SMALL_STATE(6986)] = 209034, + [SMALL_STATE(6987)] = 209050, + [SMALL_STATE(6988)] = 209066, + [SMALL_STATE(6989)] = 209082, + [SMALL_STATE(6990)] = 209098, + [SMALL_STATE(6991)] = 209114, + [SMALL_STATE(6992)] = 209130, + [SMALL_STATE(6993)] = 209144, + [SMALL_STATE(6994)] = 209160, + [SMALL_STATE(6995)] = 209176, + [SMALL_STATE(6996)] = 209192, + [SMALL_STATE(6997)] = 209205, + [SMALL_STATE(6998)] = 209218, + [SMALL_STATE(6999)] = 209231, + [SMALL_STATE(7000)] = 209244, + [SMALL_STATE(7001)] = 209257, + [SMALL_STATE(7002)] = 209270, + [SMALL_STATE(7003)] = 209283, + [SMALL_STATE(7004)] = 209296, + [SMALL_STATE(7005)] = 209309, + [SMALL_STATE(7006)] = 209322, + [SMALL_STATE(7007)] = 209335, + [SMALL_STATE(7008)] = 209348, + [SMALL_STATE(7009)] = 209361, + [SMALL_STATE(7010)] = 209374, + [SMALL_STATE(7011)] = 209387, + [SMALL_STATE(7012)] = 209400, + [SMALL_STATE(7013)] = 209413, + [SMALL_STATE(7014)] = 209426, + [SMALL_STATE(7015)] = 209439, + [SMALL_STATE(7016)] = 209452, + [SMALL_STATE(7017)] = 209465, + [SMALL_STATE(7018)] = 209478, + [SMALL_STATE(7019)] = 209491, + [SMALL_STATE(7020)] = 209504, + [SMALL_STATE(7021)] = 209517, + [SMALL_STATE(7022)] = 209530, + [SMALL_STATE(7023)] = 209543, + [SMALL_STATE(7024)] = 209556, + [SMALL_STATE(7025)] = 209569, + [SMALL_STATE(7026)] = 209582, + [SMALL_STATE(7027)] = 209595, + [SMALL_STATE(7028)] = 209608, + [SMALL_STATE(7029)] = 209621, + [SMALL_STATE(7030)] = 209634, + [SMALL_STATE(7031)] = 209647, + [SMALL_STATE(7032)] = 209660, + [SMALL_STATE(7033)] = 209673, + [SMALL_STATE(7034)] = 209686, + [SMALL_STATE(7035)] = 209699, + [SMALL_STATE(7036)] = 209712, + [SMALL_STATE(7037)] = 209725, + [SMALL_STATE(7038)] = 209738, + [SMALL_STATE(7039)] = 209751, + [SMALL_STATE(7040)] = 209764, + [SMALL_STATE(7041)] = 209777, + [SMALL_STATE(7042)] = 209790, + [SMALL_STATE(7043)] = 209803, + [SMALL_STATE(7044)] = 209816, + [SMALL_STATE(7045)] = 209829, + [SMALL_STATE(7046)] = 209842, + [SMALL_STATE(7047)] = 209855, + [SMALL_STATE(7048)] = 209868, + [SMALL_STATE(7049)] = 209881, + [SMALL_STATE(7050)] = 209894, + [SMALL_STATE(7051)] = 209907, + [SMALL_STATE(7052)] = 209920, + [SMALL_STATE(7053)] = 209933, + [SMALL_STATE(7054)] = 209946, + [SMALL_STATE(7055)] = 209959, + [SMALL_STATE(7056)] = 209972, + [SMALL_STATE(7057)] = 209985, + [SMALL_STATE(7058)] = 209998, + [SMALL_STATE(7059)] = 210011, + [SMALL_STATE(7060)] = 210024, + [SMALL_STATE(7061)] = 210037, + [SMALL_STATE(7062)] = 210050, + [SMALL_STATE(7063)] = 210063, + [SMALL_STATE(7064)] = 210076, + [SMALL_STATE(7065)] = 210089, + [SMALL_STATE(7066)] = 210102, + [SMALL_STATE(7067)] = 210115, + [SMALL_STATE(7068)] = 210128, + [SMALL_STATE(7069)] = 210141, + [SMALL_STATE(7070)] = 210154, + [SMALL_STATE(7071)] = 210167, + [SMALL_STATE(7072)] = 210180, + [SMALL_STATE(7073)] = 210193, + [SMALL_STATE(7074)] = 210206, + [SMALL_STATE(7075)] = 210219, + [SMALL_STATE(7076)] = 210232, + [SMALL_STATE(7077)] = 210245, + [SMALL_STATE(7078)] = 210258, + [SMALL_STATE(7079)] = 210271, + [SMALL_STATE(7080)] = 210284, + [SMALL_STATE(7081)] = 210297, + [SMALL_STATE(7082)] = 210310, + [SMALL_STATE(7083)] = 210323, + [SMALL_STATE(7084)] = 210336, + [SMALL_STATE(7085)] = 210349, + [SMALL_STATE(7086)] = 210362, + [SMALL_STATE(7087)] = 210375, + [SMALL_STATE(7088)] = 210388, + [SMALL_STATE(7089)] = 210401, + [SMALL_STATE(7090)] = 210414, + [SMALL_STATE(7091)] = 210427, + [SMALL_STATE(7092)] = 210440, + [SMALL_STATE(7093)] = 210453, + [SMALL_STATE(7094)] = 210466, + [SMALL_STATE(7095)] = 210479, + [SMALL_STATE(7096)] = 210492, + [SMALL_STATE(7097)] = 210505, + [SMALL_STATE(7098)] = 210518, + [SMALL_STATE(7099)] = 210531, + [SMALL_STATE(7100)] = 210544, + [SMALL_STATE(7101)] = 210557, + [SMALL_STATE(7102)] = 210570, + [SMALL_STATE(7103)] = 210583, + [SMALL_STATE(7104)] = 210596, + [SMALL_STATE(7105)] = 210609, + [SMALL_STATE(7106)] = 210622, + [SMALL_STATE(7107)] = 210635, + [SMALL_STATE(7108)] = 210648, + [SMALL_STATE(7109)] = 210661, + [SMALL_STATE(7110)] = 210674, + [SMALL_STATE(7111)] = 210687, + [SMALL_STATE(7112)] = 210700, + [SMALL_STATE(7113)] = 210713, + [SMALL_STATE(7114)] = 210726, + [SMALL_STATE(7115)] = 210739, + [SMALL_STATE(7116)] = 210752, + [SMALL_STATE(7117)] = 210765, + [SMALL_STATE(7118)] = 210778, + [SMALL_STATE(7119)] = 210791, + [SMALL_STATE(7120)] = 210804, + [SMALL_STATE(7121)] = 210817, + [SMALL_STATE(7122)] = 210830, + [SMALL_STATE(7123)] = 210843, + [SMALL_STATE(7124)] = 210856, + [SMALL_STATE(7125)] = 210869, + [SMALL_STATE(7126)] = 210882, + [SMALL_STATE(7127)] = 210895, + [SMALL_STATE(7128)] = 210908, + [SMALL_STATE(7129)] = 210921, + [SMALL_STATE(7130)] = 210934, + [SMALL_STATE(7131)] = 210947, + [SMALL_STATE(7132)] = 210960, + [SMALL_STATE(7133)] = 210973, + [SMALL_STATE(7134)] = 210986, + [SMALL_STATE(7135)] = 210999, + [SMALL_STATE(7136)] = 211012, + [SMALL_STATE(7137)] = 211025, + [SMALL_STATE(7138)] = 211038, + [SMALL_STATE(7139)] = 211051, + [SMALL_STATE(7140)] = 211064, + [SMALL_STATE(7141)] = 211077, + [SMALL_STATE(7142)] = 211090, + [SMALL_STATE(7143)] = 211103, + [SMALL_STATE(7144)] = 211116, + [SMALL_STATE(7145)] = 211129, + [SMALL_STATE(7146)] = 211142, + [SMALL_STATE(7147)] = 211155, + [SMALL_STATE(7148)] = 211168, + [SMALL_STATE(7149)] = 211181, + [SMALL_STATE(7150)] = 211194, + [SMALL_STATE(7151)] = 211207, + [SMALL_STATE(7152)] = 211220, + [SMALL_STATE(7153)] = 211233, + [SMALL_STATE(7154)] = 211246, + [SMALL_STATE(7155)] = 211259, + [SMALL_STATE(7156)] = 211272, + [SMALL_STATE(7157)] = 211285, + [SMALL_STATE(7158)] = 211298, + [SMALL_STATE(7159)] = 211311, + [SMALL_STATE(7160)] = 211324, + [SMALL_STATE(7161)] = 211337, + [SMALL_STATE(7162)] = 211350, + [SMALL_STATE(7163)] = 211363, + [SMALL_STATE(7164)] = 211376, + [SMALL_STATE(7165)] = 211389, + [SMALL_STATE(7166)] = 211402, + [SMALL_STATE(7167)] = 211415, + [SMALL_STATE(7168)] = 211428, + [SMALL_STATE(7169)] = 211441, + [SMALL_STATE(7170)] = 211454, + [SMALL_STATE(7171)] = 211467, + [SMALL_STATE(7172)] = 211480, + [SMALL_STATE(7173)] = 211493, + [SMALL_STATE(7174)] = 211506, + [SMALL_STATE(7175)] = 211519, + [SMALL_STATE(7176)] = 211532, + [SMALL_STATE(7177)] = 211545, + [SMALL_STATE(7178)] = 211558, + [SMALL_STATE(7179)] = 211571, + [SMALL_STATE(7180)] = 211584, + [SMALL_STATE(7181)] = 211597, + [SMALL_STATE(7182)] = 211610, + [SMALL_STATE(7183)] = 211623, + [SMALL_STATE(7184)] = 211636, + [SMALL_STATE(7185)] = 211649, + [SMALL_STATE(7186)] = 211662, + [SMALL_STATE(7187)] = 211675, + [SMALL_STATE(7188)] = 211688, + [SMALL_STATE(7189)] = 211701, + [SMALL_STATE(7190)] = 211714, + [SMALL_STATE(7191)] = 211727, + [SMALL_STATE(7192)] = 211740, + [SMALL_STATE(7193)] = 211753, + [SMALL_STATE(7194)] = 211766, + [SMALL_STATE(7195)] = 211779, + [SMALL_STATE(7196)] = 211792, + [SMALL_STATE(7197)] = 211805, + [SMALL_STATE(7198)] = 211818, + [SMALL_STATE(7199)] = 211831, + [SMALL_STATE(7200)] = 211844, + [SMALL_STATE(7201)] = 211857, + [SMALL_STATE(7202)] = 211870, + [SMALL_STATE(7203)] = 211883, + [SMALL_STATE(7204)] = 211896, + [SMALL_STATE(7205)] = 211909, + [SMALL_STATE(7206)] = 211922, + [SMALL_STATE(7207)] = 211935, + [SMALL_STATE(7208)] = 211948, + [SMALL_STATE(7209)] = 211961, + [SMALL_STATE(7210)] = 211974, + [SMALL_STATE(7211)] = 211987, + [SMALL_STATE(7212)] = 212000, + [SMALL_STATE(7213)] = 212013, + [SMALL_STATE(7214)] = 212026, + [SMALL_STATE(7215)] = 212039, + [SMALL_STATE(7216)] = 212052, + [SMALL_STATE(7217)] = 212065, + [SMALL_STATE(7218)] = 212078, + [SMALL_STATE(7219)] = 212091, + [SMALL_STATE(7220)] = 212104, + [SMALL_STATE(7221)] = 212117, + [SMALL_STATE(7222)] = 212130, + [SMALL_STATE(7223)] = 212143, + [SMALL_STATE(7224)] = 212156, + [SMALL_STATE(7225)] = 212169, + [SMALL_STATE(7226)] = 212182, + [SMALL_STATE(7227)] = 212195, + [SMALL_STATE(7228)] = 212208, + [SMALL_STATE(7229)] = 212221, + [SMALL_STATE(7230)] = 212234, + [SMALL_STATE(7231)] = 212247, + [SMALL_STATE(7232)] = 212260, + [SMALL_STATE(7233)] = 212273, + [SMALL_STATE(7234)] = 212286, + [SMALL_STATE(7235)] = 212299, + [SMALL_STATE(7236)] = 212312, + [SMALL_STATE(7237)] = 212325, + [SMALL_STATE(7238)] = 212338, + [SMALL_STATE(7239)] = 212351, + [SMALL_STATE(7240)] = 212364, + [SMALL_STATE(7241)] = 212377, + [SMALL_STATE(7242)] = 212390, + [SMALL_STATE(7243)] = 212403, + [SMALL_STATE(7244)] = 212416, + [SMALL_STATE(7245)] = 212429, + [SMALL_STATE(7246)] = 212442, + [SMALL_STATE(7247)] = 212455, + [SMALL_STATE(7248)] = 212468, + [SMALL_STATE(7249)] = 212481, + [SMALL_STATE(7250)] = 212494, + [SMALL_STATE(7251)] = 212507, + [SMALL_STATE(7252)] = 212520, + [SMALL_STATE(7253)] = 212533, + [SMALL_STATE(7254)] = 212546, + [SMALL_STATE(7255)] = 212559, + [SMALL_STATE(7256)] = 212572, + [SMALL_STATE(7257)] = 212585, + [SMALL_STATE(7258)] = 212598, + [SMALL_STATE(7259)] = 212611, + [SMALL_STATE(7260)] = 212624, + [SMALL_STATE(7261)] = 212637, + [SMALL_STATE(7262)] = 212650, + [SMALL_STATE(7263)] = 212663, + [SMALL_STATE(7264)] = 212676, + [SMALL_STATE(7265)] = 212689, + [SMALL_STATE(7266)] = 212702, + [SMALL_STATE(7267)] = 212715, + [SMALL_STATE(7268)] = 212728, + [SMALL_STATE(7269)] = 212741, + [SMALL_STATE(7270)] = 212754, + [SMALL_STATE(7271)] = 212767, + [SMALL_STATE(7272)] = 212780, + [SMALL_STATE(7273)] = 212793, + [SMALL_STATE(7274)] = 212806, + [SMALL_STATE(7275)] = 212819, + [SMALL_STATE(7276)] = 212832, + [SMALL_STATE(7277)] = 212845, + [SMALL_STATE(7278)] = 212858, + [SMALL_STATE(7279)] = 212871, + [SMALL_STATE(7280)] = 212884, + [SMALL_STATE(7281)] = 212897, + [SMALL_STATE(7282)] = 212910, + [SMALL_STATE(7283)] = 212923, + [SMALL_STATE(7284)] = 212936, + [SMALL_STATE(7285)] = 212949, + [SMALL_STATE(7286)] = 212962, + [SMALL_STATE(7287)] = 212975, + [SMALL_STATE(7288)] = 212988, + [SMALL_STATE(7289)] = 213001, + [SMALL_STATE(7290)] = 213014, + [SMALL_STATE(7291)] = 213027, + [SMALL_STATE(7292)] = 213040, + [SMALL_STATE(7293)] = 213053, + [SMALL_STATE(7294)] = 213066, + [SMALL_STATE(7295)] = 213079, + [SMALL_STATE(7296)] = 213092, + [SMALL_STATE(7297)] = 213105, + [SMALL_STATE(7298)] = 213118, + [SMALL_STATE(7299)] = 213131, + [SMALL_STATE(7300)] = 213144, + [SMALL_STATE(7301)] = 213157, + [SMALL_STATE(7302)] = 213170, + [SMALL_STATE(7303)] = 213183, + [SMALL_STATE(7304)] = 213196, + [SMALL_STATE(7305)] = 213209, + [SMALL_STATE(7306)] = 213222, + [SMALL_STATE(7307)] = 213235, + [SMALL_STATE(7308)] = 213248, + [SMALL_STATE(7309)] = 213261, + [SMALL_STATE(7310)] = 213274, + [SMALL_STATE(7311)] = 213287, + [SMALL_STATE(7312)] = 213300, + [SMALL_STATE(7313)] = 213313, + [SMALL_STATE(7314)] = 213326, + [SMALL_STATE(7315)] = 213339, + [SMALL_STATE(7316)] = 213352, + [SMALL_STATE(7317)] = 213365, + [SMALL_STATE(7318)] = 213378, + [SMALL_STATE(7319)] = 213391, + [SMALL_STATE(7320)] = 213404, + [SMALL_STATE(7321)] = 213417, + [SMALL_STATE(7322)] = 213430, + [SMALL_STATE(7323)] = 213443, + [SMALL_STATE(7324)] = 213456, + [SMALL_STATE(7325)] = 213469, + [SMALL_STATE(7326)] = 213482, + [SMALL_STATE(7327)] = 213495, + [SMALL_STATE(7328)] = 213508, + [SMALL_STATE(7329)] = 213521, + [SMALL_STATE(7330)] = 213534, + [SMALL_STATE(7331)] = 213547, + [SMALL_STATE(7332)] = 213560, + [SMALL_STATE(7333)] = 213573, + [SMALL_STATE(7334)] = 213586, + [SMALL_STATE(7335)] = 213599, + [SMALL_STATE(7336)] = 213612, + [SMALL_STATE(7337)] = 213625, + [SMALL_STATE(7338)] = 213638, + [SMALL_STATE(7339)] = 213651, + [SMALL_STATE(7340)] = 213664, + [SMALL_STATE(7341)] = 213677, + [SMALL_STATE(7342)] = 213690, + [SMALL_STATE(7343)] = 213703, + [SMALL_STATE(7344)] = 213716, + [SMALL_STATE(7345)] = 213729, + [SMALL_STATE(7346)] = 213742, + [SMALL_STATE(7347)] = 213755, + [SMALL_STATE(7348)] = 213768, + [SMALL_STATE(7349)] = 213781, + [SMALL_STATE(7350)] = 213794, + [SMALL_STATE(7351)] = 213807, + [SMALL_STATE(7352)] = 213820, + [SMALL_STATE(7353)] = 213833, + [SMALL_STATE(7354)] = 213846, + [SMALL_STATE(7355)] = 213859, + [SMALL_STATE(7356)] = 213872, + [SMALL_STATE(7357)] = 213885, + [SMALL_STATE(7358)] = 213898, + [SMALL_STATE(7359)] = 213911, + [SMALL_STATE(7360)] = 213924, + [SMALL_STATE(7361)] = 213937, + [SMALL_STATE(7362)] = 213950, + [SMALL_STATE(7363)] = 213963, + [SMALL_STATE(7364)] = 213976, + [SMALL_STATE(7365)] = 213989, + [SMALL_STATE(7366)] = 214002, + [SMALL_STATE(7367)] = 214015, + [SMALL_STATE(7368)] = 214028, + [SMALL_STATE(7369)] = 214041, + [SMALL_STATE(7370)] = 214054, + [SMALL_STATE(7371)] = 214067, + [SMALL_STATE(7372)] = 214080, + [SMALL_STATE(7373)] = 214093, + [SMALL_STATE(7374)] = 214106, + [SMALL_STATE(7375)] = 214119, + [SMALL_STATE(7376)] = 214132, + [SMALL_STATE(7377)] = 214145, + [SMALL_STATE(7378)] = 214158, + [SMALL_STATE(7379)] = 214171, + [SMALL_STATE(7380)] = 214184, + [SMALL_STATE(7381)] = 214197, + [SMALL_STATE(7382)] = 214210, + [SMALL_STATE(7383)] = 214223, + [SMALL_STATE(7384)] = 214236, + [SMALL_STATE(7385)] = 214249, + [SMALL_STATE(7386)] = 214262, + [SMALL_STATE(7387)] = 214275, + [SMALL_STATE(7388)] = 214288, + [SMALL_STATE(7389)] = 214301, + [SMALL_STATE(7390)] = 214314, + [SMALL_STATE(7391)] = 214327, + [SMALL_STATE(7392)] = 214340, + [SMALL_STATE(7393)] = 214353, + [SMALL_STATE(7394)] = 214366, + [SMALL_STATE(7395)] = 214379, + [SMALL_STATE(7396)] = 214392, + [SMALL_STATE(7397)] = 214405, + [SMALL_STATE(7398)] = 214418, + [SMALL_STATE(7399)] = 214431, + [SMALL_STATE(7400)] = 214444, + [SMALL_STATE(7401)] = 214457, + [SMALL_STATE(7402)] = 214470, + [SMALL_STATE(7403)] = 214483, + [SMALL_STATE(7404)] = 214496, + [SMALL_STATE(7405)] = 214509, + [SMALL_STATE(7406)] = 214522, + [SMALL_STATE(7407)] = 214535, + [SMALL_STATE(7408)] = 214548, + [SMALL_STATE(7409)] = 214561, + [SMALL_STATE(7410)] = 214574, + [SMALL_STATE(7411)] = 214587, + [SMALL_STATE(7412)] = 214600, + [SMALL_STATE(7413)] = 214613, + [SMALL_STATE(7414)] = 214626, + [SMALL_STATE(7415)] = 214639, + [SMALL_STATE(7416)] = 214652, + [SMALL_STATE(7417)] = 214665, + [SMALL_STATE(7418)] = 214678, + [SMALL_STATE(7419)] = 214691, + [SMALL_STATE(7420)] = 214704, + [SMALL_STATE(7421)] = 214717, + [SMALL_STATE(7422)] = 214730, + [SMALL_STATE(7423)] = 214743, + [SMALL_STATE(7424)] = 214756, + [SMALL_STATE(7425)] = 214769, + [SMALL_STATE(7426)] = 214782, + [SMALL_STATE(7427)] = 214795, + [SMALL_STATE(7428)] = 214808, + [SMALL_STATE(7429)] = 214821, + [SMALL_STATE(7430)] = 214834, + [SMALL_STATE(7431)] = 214847, + [SMALL_STATE(7432)] = 214860, + [SMALL_STATE(7433)] = 214873, + [SMALL_STATE(7434)] = 214886, + [SMALL_STATE(7435)] = 214899, + [SMALL_STATE(7436)] = 214912, + [SMALL_STATE(7437)] = 214925, + [SMALL_STATE(7438)] = 214938, + [SMALL_STATE(7439)] = 214951, + [SMALL_STATE(7440)] = 214964, + [SMALL_STATE(7441)] = 214977, + [SMALL_STATE(7442)] = 214990, + [SMALL_STATE(7443)] = 215003, + [SMALL_STATE(7444)] = 215016, + [SMALL_STATE(7445)] = 215029, + [SMALL_STATE(7446)] = 215042, + [SMALL_STATE(7447)] = 215055, + [SMALL_STATE(7448)] = 215068, + [SMALL_STATE(7449)] = 215081, + [SMALL_STATE(7450)] = 215094, + [SMALL_STATE(7451)] = 215107, + [SMALL_STATE(7452)] = 215120, + [SMALL_STATE(7453)] = 215133, + [SMALL_STATE(7454)] = 215146, + [SMALL_STATE(7455)] = 215159, + [SMALL_STATE(7456)] = 215172, + [SMALL_STATE(7457)] = 215185, + [SMALL_STATE(7458)] = 215198, + [SMALL_STATE(7459)] = 215211, + [SMALL_STATE(7460)] = 215224, + [SMALL_STATE(7461)] = 215237, + [SMALL_STATE(7462)] = 215250, + [SMALL_STATE(7463)] = 215263, + [SMALL_STATE(7464)] = 215276, + [SMALL_STATE(7465)] = 215289, + [SMALL_STATE(7466)] = 215302, + [SMALL_STATE(7467)] = 215315, + [SMALL_STATE(7468)] = 215328, + [SMALL_STATE(7469)] = 215341, + [SMALL_STATE(7470)] = 215354, + [SMALL_STATE(7471)] = 215367, + [SMALL_STATE(7472)] = 215380, + [SMALL_STATE(7473)] = 215393, + [SMALL_STATE(7474)] = 215406, + [SMALL_STATE(7475)] = 215419, + [SMALL_STATE(7476)] = 215432, + [SMALL_STATE(7477)] = 215445, + [SMALL_STATE(7478)] = 215458, + [SMALL_STATE(7479)] = 215471, + [SMALL_STATE(7480)] = 215484, + [SMALL_STATE(7481)] = 215497, + [SMALL_STATE(7482)] = 215510, + [SMALL_STATE(7483)] = 215523, + [SMALL_STATE(7484)] = 215536, + [SMALL_STATE(7485)] = 215549, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), [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(2006), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(806), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(696), [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(551), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7243), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(769), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(625), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(795), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7255), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(678), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(680), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6723), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4302), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6891), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6948), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6738), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6739), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6742), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(269), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7409), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7082), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7083), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6983), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4596), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4332), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6897), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6993), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6981), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6980), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7413), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4338), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4804), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2924), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5657), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7088), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7089), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6337), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6342), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4341), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6341), [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6343), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6348), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6350), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6359), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4590), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7379), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7377), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7376), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6347), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5650), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6352), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4032), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4511), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7399), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(250), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(94), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(246), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(270), [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4324), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4818), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4310), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4784), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(539), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(698), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(545), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(698), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2045] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4024), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [2051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3726), + [2035] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4028), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [2051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3784), [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 175), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 175), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 175), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 227), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 227), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 164), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 67), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 175), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 175), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 164), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 175), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 175), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 175), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 175), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 175), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 227), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 227), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(94), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3552), - [2721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(256), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(796), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [2730] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5783), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3570), + [2721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(261), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(766), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [2730] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5698), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(256), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5783), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(261), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5698), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 272), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 174), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 175), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 140), [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 139), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 272), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 66), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 65), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 183), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 57), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 191), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 174), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 183), [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 164), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 57), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 139), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 174), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 65), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 57), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 191), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 57), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 57), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 191), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 57), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 183), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 66), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 183), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 57), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 191), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 164), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 175), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 57), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 174), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 139), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 68), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 68), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 189), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 189), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 67), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 67), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(699), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 68), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 68), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 67), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 67), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(755), [4198] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7369), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7216), [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1655), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7246), - [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1650), - [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6629), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(4049), - [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(6128), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(283), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(779), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4306] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [4339] = {.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), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(540), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(691), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2583), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2474), - [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3206), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2916), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), - [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3966), - [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3555), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3425), - [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(525), - [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5408), - [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5629), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2959), - [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(7003), - [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3980), - [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5893), - [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2390), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2917), - [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3227), - [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2580), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3266), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3265), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3473), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4787] = {.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), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 76), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 76), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 49), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1652), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7164), + [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1650), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6527), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(726), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(4062), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(6175), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(285), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4316] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(493), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4350] = {.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), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(693), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2210), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3235), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2506), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2476), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2614), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2910), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4023), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3574), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3429), + [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(530), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5529), + [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5530), + [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3001), + [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(7012), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4004), + [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2427), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2912), + [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3237), + [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2637), + [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3286), + [4735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3262), + [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3478), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4789] = {.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), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 76), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 76), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 49), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 64), - [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 75), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 77), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 77), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 266), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 266), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 265), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 265), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 190), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 190), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 226), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 226), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 225), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 225), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 76), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 76), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), - [5139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3206), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 77), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 77), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 188), - [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2916), - [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(216), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 63), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 318), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 318), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 298), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 298), - [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 171), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 172), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 172), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 76), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 76), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 77), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 77), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 62), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2474), - [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2583), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 50), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 50), - [5336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), - [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 77), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 77), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 76), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 76), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6696), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), - [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), - [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(211), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), - [5549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(209), - [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), - [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(209), - [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 63), - [5585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(209), - [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 71), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 71), - [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), REDUCE(sym_assignment_expression, 3, 0, 62), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), - [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 62), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 17), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 17), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(211), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 75), - [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 74), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 74), - [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [5751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(209), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 73), - [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 73), - [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 72), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 72), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(659), - [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(211), - [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(211), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), - [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5793] = {.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), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 62), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 64), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 172), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 172), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 77), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 77), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 63), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 76), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 76), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2210), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2476), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(208), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 50), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 50), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 75), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(208), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(208), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), + [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2614), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(208), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 266), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 266), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2910), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2506), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 188), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 77), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 77), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 226), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 226), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3235), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), + [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 72), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 72), + [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6812), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 75), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 71), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 71), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), REDUCE(sym_assignment_expression, 3, 0, 62), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), + [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(213), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), + [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), + [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 63), + [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), + [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(214), + [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 62), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(213), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(213), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(213), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), + [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(634), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 62), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(208), - [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(208), - [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(208), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [5900] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(216), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 62), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [5874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5890] = {.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), + [5894] = {.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), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(208), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [5931] = {.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), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(214), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), - [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(215), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [6132] = {.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, 49), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [6138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [6144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(213), - [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(213), - [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(213), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [6423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(710), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), - [6432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(213), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [6449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(212), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [6469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(212), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(212), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(212), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 153), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 153), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [6512] = {.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), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(210), - [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [6590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(210), - [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(210), - [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(210), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [5925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(212), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(212), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(212), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), + [6168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(209), + [6171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(209), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(209), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(209), + [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(212), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6198] = {.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, 49), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(215), + [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(210), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(210), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [6465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(210), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [6484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(723), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(210), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6518] = {.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), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(211), + [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(211), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(211), + [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(211), + [6598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), - [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), - [6650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), - [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), - [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), - [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), - [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), - [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), - [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 175), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 175), - [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 335), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 335), - [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), - [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), - [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), - [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), - [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 227), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 227), - [6739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), - [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), - [6743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3431), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), - [6772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(3419), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), + [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), + [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 335), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 335), + [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 227), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 227), + [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 175), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 175), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), + [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), + [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), + [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), + [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), + [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), + [6745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), + [6747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(3431), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), + [6756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), + [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), + [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), + [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3418), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [6891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5893), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [7002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [7020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4834), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 156), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 57), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [7299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 57), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 156), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 156), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 57), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [7396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [7399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4762), - [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4763), - [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [7407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4766), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [6875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [7004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [7022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4730), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 57), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 156), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 156), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 57), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 156), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), + [7398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [7401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), + [7404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), + [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4729), [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 156), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 57), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6629), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 76), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [7569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(4517), - [7572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(407), - [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 76), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), - [7679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), - [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), - [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 77), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), - [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 166), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [8063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 137), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 137), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 160), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 77), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), - [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 174), - [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 56), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [8127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 277), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 278), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 285), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), - [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(779), - [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 323), - [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 328), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 337), - [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(699), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), - [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 178), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 177), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7167), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5692), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), - [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 130), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5469), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [8655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 61), - [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 57), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 57), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 57), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6527), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(4584), + [7858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(398), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 77), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 285), + [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 166), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 337), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 328), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 323), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 278), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 174), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 277), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(755), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 160), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 77), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 56), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(726), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [8237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2148), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5657), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [8463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 57), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [8469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 61), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 178), + [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 177), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7130), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 130), + [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), + [8683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 281), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 220), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 58), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1659), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [8830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 260), - [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 259), - [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [8880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), - [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1776), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1658), - [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), - [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 293), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), - [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), - [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1665), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1770), - [9046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1664), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [9055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1733), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [9072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1807), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), - [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 76), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [9103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [9105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), - [9107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [9147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 181), - [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 181), - [9151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), - [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), SHIFT_REPEAT(524), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(5421), - [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), - [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 57), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), - [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [9433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [9442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5854), - [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5854), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 274), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), - [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [9491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [9502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [9504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5781), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 60), - [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 342), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(691), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 174), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), - [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), - [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [9807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [9809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), - [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), - [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(3518), - [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3218), - [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [9854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), - [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), - [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [9999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), - [10002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [10008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [10010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [10013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 57), - [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 77), - [10027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 278), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [10063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 277), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [10087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [10103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [10123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [10155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), - [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), - [10229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4196), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), - [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [10430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 154), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [10602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [10710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [10726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), - [10740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [10764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [10794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), - [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 57), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 196), - [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [11096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [11592] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [11754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 281), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 260), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1776), + [8784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1663), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 259), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6024), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [8891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1662), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 76), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1735), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 293), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 58), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), + [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1665), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 220), + [9064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1779), + [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1659), + [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1798), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 57), + [9145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(5515), + [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [9269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 60), + [9325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), + [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), SHIFT_REPEAT(542), + [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 274), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4595), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6085), + [9487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6085), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [9499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 71), + [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(693), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [9634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [9642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), + [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 342), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 278), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [9877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [9895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6663), + [9898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 277), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 57), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), + [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), + [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(3527), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), + [10043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [10055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [10057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [10077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [10081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), + [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [10113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4281), + [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [10164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), + [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 174), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [10303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 77), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [10428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [10442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 196), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [10574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [10618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 154), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [10674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), + [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [10692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), + [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [10834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 57), + [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [11588] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index edbfe08c..124dad2b 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -1,15 +1,6 @@ { - "0": "j", - "1": "a", - "2": "v", - "3": "a", - "4": "s", - "5": "c", - "6": "r", - "7": "i", - "8": "p", - "9": "t", "name": "typescript", + "inherits": "javascript", "word": "identifier", "rules": { "program": { @@ -6549,6 +6540,22 @@ ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "arguments", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index 03166011..8bf6fe28 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -13,7 +13,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7427 +#define STATE_COUNT 7433 #define LARGE_STATE_COUNT 1913 #define SYMBOL_COUNT 380 #define ALIAS_COUNT 7 @@ -4488,132 +4488,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 15, + [17] = 12, [18] = 18, [19] = 18, [20] = 20, [21] = 18, - [22] = 22, + [22] = 20, [23] = 18, - [24] = 22, - [25] = 22, - [26] = 22, - [27] = 18, + [24] = 20, + [25] = 18, + [26] = 20, + [27] = 20, [28] = 18, - [29] = 22, - [30] = 22, - [31] = 18, - [32] = 22, - [33] = 22, + [29] = 20, + [30] = 18, + [31] = 20, + [32] = 20, + [33] = 20, [34] = 18, - [35] = 35, - [36] = 22, + [35] = 20, + [36] = 18, [37] = 18, [38] = 18, - [39] = 39, - [40] = 22, - [41] = 18, - [42] = 22, - [43] = 18, - [44] = 22, + [39] = 18, + [40] = 40, + [41] = 20, + [42] = 20, + [43] = 20, + [44] = 18, [45] = 18, - [46] = 22, - [47] = 22, + [46] = 18, + [47] = 20, [48] = 18, - [49] = 22, - [50] = 22, + [49] = 20, + [50] = 20, [51] = 18, - [52] = 18, - [53] = 22, + [52] = 20, + [53] = 18, [54] = 18, - [55] = 22, - [56] = 18, - [57] = 18, - [58] = 22, + [55] = 20, + [56] = 20, + [57] = 20, + [58] = 20, [59] = 18, [60] = 18, - [61] = 22, + [61] = 18, [62] = 18, - [63] = 22, + [63] = 20, [64] = 18, - [65] = 22, - [66] = 22, - [67] = 18, - [68] = 22, + [65] = 20, + [66] = 18, + [67] = 20, + [68] = 68, [69] = 18, - [70] = 18, - [71] = 22, - [72] = 22, + [70] = 20, + [71] = 71, + [72] = 20, [73] = 73, [74] = 74, - [75] = 73, + [75] = 75, [76] = 76, - [77] = 76, + [77] = 77, [78] = 78, - [79] = 74, - [80] = 80, - [81] = 80, - [82] = 82, + [79] = 79, + [80] = 75, + [81] = 73, + [82] = 75, [83] = 83, - [84] = 82, + [84] = 76, [85] = 85, - [86] = 86, - [87] = 73, - [88] = 76, - [89] = 76, - [90] = 83, - [91] = 74, - [92] = 82, - [93] = 74, - [94] = 94, - [95] = 80, - [96] = 94, - [97] = 73, - [98] = 94, - [99] = 83, - [100] = 80, - [101] = 94, - [102] = 78, - [103] = 86, - [104] = 78, - [105] = 85, - [106] = 73, - [107] = 78, - [108] = 85, - [109] = 86, - [110] = 86, - [111] = 83, - [112] = 83, - [113] = 80, - [114] = 82, - [115] = 94, + [86] = 79, + [87] = 87, + [88] = 73, + [89] = 83, + [90] = 85, + [91] = 73, + [92] = 79, + [93] = 78, + [94] = 79, + [95] = 74, + [96] = 77, + [97] = 87, + [98] = 77, + [99] = 78, + [100] = 74, + [101] = 73, + [102] = 85, + [103] = 87, + [104] = 75, + [105] = 78, + [106] = 83, + [107] = 85, + [108] = 77, + [109] = 76, + [110] = 83, + [111] = 74, + [112] = 76, + [113] = 83, + [114] = 79, + [115] = 87, [116] = 76, - [117] = 85, - [118] = 82, + [117] = 87, + [118] = 78, [119] = 85, - [120] = 78, - [121] = 74, - [122] = 86, + [120] = 74, + [121] = 77, + [122] = 75, [123] = 123, - [124] = 124, - [125] = 124, - [126] = 124, - [127] = 124, - [128] = 124, + [124] = 123, + [125] = 125, + [126] = 123, + [127] = 125, + [128] = 123, [129] = 123, - [130] = 124, - [131] = 124, + [130] = 123, + [131] = 123, [132] = 123, - [133] = 124, - [134] = 124, - [135] = 124, + [133] = 123, + [134] = 123, + [135] = 125, [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 136, + [140] = 140, [141] = 141, - [142] = 142, + [142] = 138, [143] = 143, [144] = 144, [145] = 145, @@ -4622,69 +4622,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [148] = 146, [149] = 149, [150] = 150, - [151] = 149, + [151] = 151, [152] = 152, - [153] = 152, - [154] = 150, - [155] = 155, - [156] = 156, - [157] = 157, + [153] = 151, + [154] = 152, + [155] = 151, + [156] = 152, + [157] = 151, [158] = 149, - [159] = 157, - [160] = 149, - [161] = 150, - [162] = 157, - [163] = 157, - [164] = 150, - [165] = 149, - [166] = 156, - [167] = 150, - [168] = 157, - [169] = 156, - [170] = 150, - [171] = 144, + [159] = 149, + [160] = 160, + [161] = 160, + [162] = 152, + [163] = 160, + [164] = 164, + [165] = 144, + [166] = 151, + [167] = 149, + [168] = 152, + [169] = 152, + [170] = 149, + [171] = 150, [172] = 144, - [173] = 145, - [174] = 174, - [175] = 175, - [176] = 150, - [177] = 156, - [178] = 150, - [179] = 150, + [173] = 152, + [174] = 160, + [175] = 152, + [176] = 145, + [177] = 177, + [178] = 178, + [179] = 160, [180] = 180, - [181] = 181, - [182] = 152, - [183] = 150, - [184] = 156, - [185] = 144, + [181] = 152, + [182] = 144, + [183] = 160, + [184] = 152, + [185] = 185, [186] = 150, - [187] = 156, - [188] = 152, - [189] = 150, - [190] = 150, - [191] = 150, - [192] = 150, - [193] = 155, - [194] = 150, - [195] = 156, - [196] = 150, - [197] = 156, - [198] = 175, - [199] = 156, - [200] = 150, + [187] = 152, + [188] = 150, + [189] = 152, + [190] = 152, + [191] = 152, + [192] = 160, + [193] = 152, + [194] = 152, + [195] = 164, + [196] = 152, + [197] = 160, + [198] = 152, + [199] = 178, + [200] = 160, [201] = 201, - [202] = 201, + [202] = 202, [203] = 201, [204] = 201, [205] = 201, [206] = 201, - [207] = 201, - [208] = 150, - [209] = 156, - [210] = 201, + [207] = 160, + [208] = 201, + [209] = 201, + [210] = 152, [211] = 201, [212] = 201, - [213] = 213, + [213] = 201, [214] = 214, [215] = 214, [216] = 214, @@ -4709,630 +4709,630 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [235] = 227, [236] = 227, [237] = 237, - [238] = 238, + [238] = 237, [239] = 237, - [240] = 237, - [241] = 237, + [240] = 240, + [241] = 240, [242] = 237, - [243] = 238, - [244] = 238, + [243] = 237, + [244] = 240, [245] = 237, - [246] = 238, - [247] = 238, - [248] = 238, + [246] = 240, + [247] = 240, + [248] = 240, [249] = 249, [250] = 249, [251] = 249, [252] = 252, [253] = 253, [254] = 249, - [255] = 252, - [256] = 249, + [255] = 249, + [256] = 252, [257] = 252, [258] = 249, - [259] = 249, - [260] = 249, - [261] = 253, - [262] = 262, - [263] = 262, + [259] = 253, + [260] = 260, + [261] = 249, + [262] = 260, + [263] = 249, [264] = 249, [265] = 265, - [266] = 265, - [267] = 267, - [268] = 267, - [269] = 249, - [270] = 270, - [271] = 270, + [266] = 266, + [267] = 265, + [268] = 268, + [269] = 268, + [270] = 268, + [271] = 266, [272] = 265, - [273] = 270, - [274] = 267, + [273] = 249, + [274] = 266, [275] = 275, - [276] = 275, + [276] = 276, [277] = 275, [278] = 275, [279] = 275, - [280] = 280, - [281] = 275, - [282] = 282, + [280] = 275, + [281] = 281, + [282] = 275, [283] = 275, [284] = 284, - [285] = 284, - [286] = 286, - [287] = 286, - [288] = 286, - [289] = 286, - [290] = 286, - [291] = 291, + [285] = 285, + [286] = 284, + [287] = 285, + [288] = 288, + [289] = 285, + [290] = 285, + [291] = 285, [292] = 292, [293] = 293, - [294] = 294, + [294] = 284, [295] = 295, [296] = 296, - [297] = 295, + [297] = 297, [298] = 298, [299] = 299, - [300] = 293, - [301] = 301, - [302] = 284, + [300] = 298, + [301] = 297, + [302] = 302, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 301, + [308] = 308, [309] = 309, [310] = 310, [311] = 311, - [312] = 312, - [313] = 299, + [312] = 299, + [313] = 313, [314] = 314, - [315] = 315, + [315] = 284, [316] = 316, - [317] = 296, - [318] = 294, + [317] = 317, + [318] = 318, [319] = 319, [320] = 320, - [321] = 321, + [321] = 296, [322] = 322, [323] = 323, - [324] = 294, - [325] = 296, - [326] = 299, - [327] = 327, + [324] = 296, + [325] = 295, + [326] = 295, + [327] = 302, [328] = 328, - [329] = 329, + [329] = 302, [330] = 330, [331] = 331, - [332] = 332, - [333] = 284, + [332] = 299, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 301, - [338] = 304, - [339] = 328, - [340] = 322, - [341] = 335, - [342] = 323, - [343] = 327, - [344] = 310, - [345] = 345, - [346] = 345, - [347] = 345, - [348] = 284, - [349] = 345, - [350] = 334, - [351] = 299, - [352] = 332, - [353] = 307, - [354] = 311, - [355] = 314, - [356] = 315, - [357] = 296, + [337] = 337, + [338] = 317, + [339] = 339, + [340] = 307, + [341] = 310, + [342] = 306, + [343] = 322, + [344] = 284, + [345] = 314, + [346] = 303, + [347] = 299, + [348] = 334, + [349] = 302, + [350] = 295, + [351] = 333, + [352] = 304, + [353] = 284, + [354] = 305, + [355] = 339, + [356] = 337, + [357] = 318, [358] = 319, - [359] = 305, - [360] = 312, - [361] = 284, - [362] = 320, - [363] = 303, - [364] = 322, - [365] = 316, - [366] = 331, - [367] = 294, - [368] = 328, - [369] = 329, - [370] = 310, - [371] = 321, - [372] = 303, - [373] = 316, - [374] = 332, - [375] = 320, - [376] = 301, - [377] = 319, - [378] = 336, - [379] = 335, - [380] = 304, - [381] = 345, - [382] = 323, - [383] = 309, - [384] = 284, - [385] = 305, - [386] = 307, - [387] = 327, - [388] = 309, - [389] = 330, - [390] = 315, - [391] = 391, - [392] = 314, - [393] = 311, - [394] = 312, - [395] = 284, - [396] = 345, - [397] = 345, - [398] = 336, - [399] = 331, - [400] = 284, + [359] = 296, + [360] = 320, + [361] = 339, + [362] = 333, + [363] = 328, + [364] = 311, + [365] = 309, + [366] = 336, + [367] = 330, + [368] = 331, + [369] = 369, + [370] = 334, + [371] = 339, + [372] = 310, + [373] = 307, + [374] = 337, + [375] = 339, + [376] = 311, + [377] = 304, + [378] = 335, + [379] = 305, + [380] = 284, + [381] = 284, + [382] = 317, + [383] = 318, + [384] = 323, + [385] = 284, + [386] = 306, + [387] = 336, + [388] = 314, + [389] = 319, + [390] = 320, + [391] = 328, + [392] = 339, + [393] = 330, + [394] = 308, + [395] = 331, + [396] = 309, + [397] = 303, + [398] = 322, + [399] = 284, + [400] = 316, [401] = 284, - [402] = 334, - [403] = 329, - [404] = 330, - [405] = 284, - [406] = 321, - [407] = 407, - [408] = 314, - [409] = 336, - [410] = 331, - [411] = 407, - [412] = 407, - [413] = 323, - [414] = 321, - [415] = 407, - [416] = 407, - [417] = 334, - [418] = 418, - [419] = 419, - [420] = 407, - [421] = 421, - [422] = 419, - [423] = 419, - [424] = 424, - [425] = 425, - [426] = 330, - [427] = 407, - [428] = 319, - [429] = 407, - [430] = 322, - [431] = 431, - [432] = 304, - [433] = 309, - [434] = 307, - [435] = 305, - [436] = 421, - [437] = 315, + [402] = 316, + [403] = 308, + [404] = 339, + [405] = 323, + [406] = 335, + [407] = 328, + [408] = 310, + [409] = 409, + [410] = 409, + [411] = 323, + [412] = 322, + [413] = 314, + [414] = 308, + [415] = 415, + [416] = 415, + [417] = 316, + [418] = 409, + [419] = 415, + [420] = 409, + [421] = 409, + [422] = 422, + [423] = 304, + [424] = 305, + [425] = 320, + [426] = 426, + [427] = 307, + [428] = 333, + [429] = 306, + [430] = 409, + [431] = 409, + [432] = 309, + [433] = 415, + [434] = 336, + [435] = 334, + [436] = 409, + [437] = 409, [438] = 438, - [439] = 419, - [440] = 316, - [441] = 441, - [442] = 310, - [443] = 311, - [444] = 407, - [445] = 303, - [446] = 332, - [447] = 407, - [448] = 419, - [449] = 327, - [450] = 320, - [451] = 407, - [452] = 328, - [453] = 329, - [454] = 335, - [455] = 407, - [456] = 407, - [457] = 425, - [458] = 407, - [459] = 407, - [460] = 441, - [461] = 407, - [462] = 312, + [439] = 409, + [440] = 409, + [441] = 303, + [442] = 409, + [443] = 330, + [444] = 317, + [445] = 318, + [446] = 335, + [447] = 337, + [448] = 448, + [449] = 319, + [450] = 311, + [451] = 451, + [452] = 451, + [453] = 453, + [454] = 331, + [455] = 426, + [456] = 409, + [457] = 415, + [458] = 448, + [459] = 409, + [460] = 409, + [461] = 461, + [462] = 409, [463] = 463, [464] = 464, [465] = 465, - [466] = 465, - [467] = 467, - [468] = 465, - [469] = 465, - [470] = 465, - [471] = 471, + [466] = 466, + [467] = 466, + [468] = 468, + [469] = 466, + [470] = 466, + [471] = 466, [472] = 472, [473] = 472, - [474] = 472, + [474] = 474, [475] = 472, - [476] = 476, + [476] = 472, [477] = 472, [478] = 478, [479] = 479, - [480] = 479, + [480] = 480, [481] = 481, - [482] = 482, - [483] = 478, + [482] = 478, + [483] = 483, [484] = 478, - [485] = 485, + [485] = 479, [486] = 486, - [487] = 479, + [487] = 487, [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, + [489] = 486, + [490] = 487, + [491] = 488, [492] = 479, - [493] = 482, - [494] = 482, - [495] = 489, - [496] = 496, - [497] = 482, - [498] = 498, - [499] = 479, - [500] = 478, - [501] = 501, - [502] = 501, - [503] = 498, - [504] = 496, - [505] = 479, - [506] = 485, - [507] = 485, - [508] = 489, - [509] = 509, - [510] = 489, - [511] = 489, - [512] = 512, - [513] = 513, - [514] = 501, - [515] = 498, - [516] = 496, - [517] = 489, - [518] = 485, - [519] = 496, - [520] = 485, - [521] = 498, - [522] = 501, - [523] = 482, - [524] = 482, - [525] = 479, - [526] = 496, - [527] = 498, - [528] = 528, - [529] = 482, - [530] = 530, - [531] = 501, - [532] = 485, - [533] = 489, - [534] = 482, - [535] = 501, - [536] = 498, - [537] = 496, - [538] = 482, - [539] = 482, - [540] = 478, - [541] = 501, - [542] = 542, - [543] = 543, - [544] = 498, - [545] = 501, - [546] = 489, - [547] = 485, - [548] = 501, - [549] = 498, - [550] = 496, - [551] = 501, - [552] = 498, - [553] = 509, - [554] = 496, - [555] = 485, - [556] = 485, - [557] = 489, - [558] = 489, - [559] = 559, - [560] = 560, - [561] = 498, - [562] = 496, - [563] = 496, - [564] = 512, + [493] = 493, + [494] = 488, + [495] = 487, + [496] = 486, + [497] = 493, + [498] = 479, + [499] = 493, + [500] = 493, + [501] = 493, + [502] = 502, + [503] = 503, + [504] = 479, + [505] = 488, + [506] = 487, + [507] = 503, + [508] = 486, + [509] = 503, + [510] = 510, + [511] = 480, + [512] = 510, + [513] = 479, + [514] = 479, + [515] = 480, + [516] = 516, + [517] = 478, + [518] = 478, + [519] = 478, + [520] = 520, + [521] = 503, + [522] = 478, + [523] = 503, + [524] = 480, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 480, + [529] = 478, + [530] = 479, + [531] = 493, + [532] = 480, + [533] = 493, + [534] = 534, + [535] = 480, + [536] = 536, + [537] = 488, + [538] = 487, + [539] = 486, + [540] = 540, + [541] = 541, + [542] = 488, + [543] = 487, + [544] = 479, + [545] = 481, + [546] = 478, + [547] = 547, + [548] = 486, + [549] = 487, + [550] = 488, + [551] = 486, + [552] = 487, + [553] = 488, + [554] = 486, + [555] = 493, + [556] = 478, + [557] = 493, + [558] = 486, + [559] = 487, + [560] = 488, + [561] = 493, + [562] = 479, + [563] = 487, + [564] = 488, [565] = 565, - [566] = 485, + [566] = 486, [567] = 567, [568] = 568, - [569] = 569, - [570] = 569, + [569] = 568, + [570] = 567, [571] = 571, - [572] = 572, - [573] = 571, - [574] = 574, + [572] = 567, + [573] = 573, + [574] = 571, [575] = 575, [576] = 576, [577] = 577, [578] = 578, - [579] = 579, + [579] = 567, [580] = 580, - [581] = 581, + [581] = 568, [582] = 582, - [583] = 567, - [584] = 567, + [583] = 583, + [584] = 584, [585] = 585, - [586] = 568, + [586] = 586, [587] = 587, - [588] = 588, - [589] = 571, + [588] = 584, + [589] = 589, [590] = 590, - [591] = 591, - [592] = 585, - [593] = 593, + [591] = 576, + [592] = 590, + [593] = 583, [594] = 594, - [595] = 579, + [595] = 573, [596] = 596, - [597] = 569, + [597] = 597, [598] = 598, - [599] = 599, - [600] = 567, - [601] = 585, - [602] = 587, - [603] = 603, + [599] = 586, + [600] = 577, + [601] = 601, + [602] = 602, + [603] = 596, [604] = 604, - [605] = 605, + [605] = 586, [606] = 571, - [607] = 607, + [607] = 594, [608] = 608, [609] = 609, - [610] = 571, - [611] = 571, - [612] = 609, - [613] = 608, - [614] = 607, - [615] = 615, - [616] = 616, - [617] = 571, - [618] = 567, - [619] = 598, - [620] = 582, - [621] = 603, + [610] = 578, + [611] = 611, + [612] = 582, + [613] = 602, + [614] = 611, + [615] = 601, + [616] = 576, + [617] = 577, + [618] = 597, + [619] = 573, + [620] = 583, + [621] = 589, [622] = 622, - [623] = 587, - [624] = 599, - [625] = 588, - [626] = 579, - [627] = 582, - [628] = 598, - [629] = 582, + [623] = 594, + [624] = 587, + [625] = 575, + [626] = 571, + [627] = 627, + [628] = 582, + [629] = 622, [630] = 587, - [631] = 569, + [631] = 567, [632] = 596, - [633] = 598, - [634] = 594, - [635] = 585, - [636] = 582, - [637] = 591, - [638] = 579, - [639] = 571, - [640] = 571, - [641] = 588, - [642] = 590, - [643] = 582, - [644] = 571, - [645] = 572, - [646] = 580, - [647] = 593, - [648] = 571, - [649] = 585, - [650] = 568, - [651] = 567, - [652] = 615, - [653] = 616, - [654] = 581, - [655] = 587, - [656] = 569, - [657] = 567, - [658] = 582, - [659] = 580, - [660] = 578, - [661] = 615, - [662] = 609, - [663] = 571, - [664] = 585, - [665] = 587, - [666] = 666, - [667] = 579, - [668] = 569, - [669] = 576, - [670] = 585, - [671] = 567, - [672] = 608, - [673] = 615, - [674] = 616, - [675] = 593, - [676] = 607, - [677] = 571, - [678] = 571, - [679] = 603, - [680] = 599, - [681] = 596, - [682] = 609, - [683] = 594, - [684] = 591, - [685] = 590, - [686] = 609, - [687] = 588, - [688] = 568, - [689] = 585, - [690] = 588, - [691] = 581, - [692] = 580, + [633] = 609, + [634] = 634, + [635] = 608, + [636] = 589, + [637] = 568, + [638] = 594, + [639] = 586, + [640] = 602, + [641] = 567, + [642] = 601, + [643] = 580, + [644] = 608, + [645] = 609, + [646] = 597, + [647] = 576, + [648] = 609, + [649] = 571, + [650] = 578, + [651] = 594, + [652] = 584, + [653] = 653, + [654] = 622, + [655] = 575, + [656] = 586, + [657] = 609, + [658] = 584, + [659] = 608, + [660] = 586, + [661] = 583, + [662] = 577, + [663] = 578, + [664] = 634, + [665] = 584, + [666] = 571, + [667] = 667, + [668] = 589, + [669] = 590, + [670] = 587, + [671] = 582, + [672] = 611, + [673] = 568, + [674] = 567, + [675] = 576, + [676] = 634, + [677] = 596, + [678] = 678, + [679] = 568, + [680] = 577, + [681] = 578, + [682] = 575, + [683] = 602, + [684] = 573, + [685] = 611, + [686] = 586, + [687] = 678, + [688] = 586, + [689] = 573, + [690] = 608, + [691] = 691, + [692] = 609, [693] = 693, - [694] = 578, - [695] = 608, - [696] = 576, - [697] = 608, + [694] = 694, + [695] = 634, + [696] = 678, + [697] = 575, [698] = 576, - [699] = 699, - [700] = 616, - [701] = 598, - [702] = 578, - [703] = 607, - [704] = 569, - [705] = 588, - [706] = 574, - [707] = 615, - [708] = 598, - [709] = 572, - [710] = 587, - [711] = 616, - [712] = 588, - [713] = 580, - [714] = 603, - [715] = 615, - [716] = 581, - [717] = 572, - [718] = 609, - [719] = 587, - [720] = 608, - [721] = 579, - [722] = 568, - [723] = 572, - [724] = 574, - [725] = 587, - [726] = 693, - [727] = 569, - [728] = 576, - [729] = 599, - [730] = 596, - [731] = 622, - [732] = 571, - [733] = 616, - [734] = 615, - [735] = 594, - [736] = 576, - [737] = 591, - [738] = 588, - [739] = 576, - [740] = 578, - [741] = 741, - [742] = 574, - [743] = 609, - [744] = 574, - [745] = 616, - [746] = 615, - [747] = 616, - [748] = 608, - [749] = 749, - [750] = 581, - [751] = 576, - [752] = 588, - [753] = 578, - [754] = 580, - [755] = 590, - [756] = 579, - [757] = 591, - [758] = 571, - [759] = 593, - [760] = 581, - [761] = 578, - [762] = 594, - [763] = 616, - [764] = 568, - [765] = 580, - [766] = 590, - [767] = 767, - [768] = 591, - [769] = 769, - [770] = 594, - [771] = 596, + [699] = 580, + [700] = 601, + [701] = 584, + [702] = 597, + [703] = 583, + [704] = 589, + [705] = 611, + [706] = 608, + [707] = 587, + [708] = 582, + [709] = 584, + [710] = 590, + [711] = 580, + [712] = 568, + [713] = 678, + [714] = 594, + [715] = 594, + [716] = 583, + [717] = 567, + [718] = 576, + [719] = 590, + [720] = 622, + [721] = 604, + [722] = 577, + [723] = 594, + [724] = 724, + [725] = 586, + [726] = 608, + [727] = 693, + [728] = 609, + [729] = 578, + [730] = 634, + [731] = 590, + [732] = 594, + [733] = 584, + [734] = 571, + [735] = 586, + [736] = 611, + [737] = 580, + [738] = 611, + [739] = 604, + [740] = 580, + [741] = 578, + [742] = 622, + [743] = 611, + [744] = 577, + [745] = 590, + [746] = 575, + [747] = 575, + [748] = 634, + [749] = 604, + [750] = 568, + [751] = 678, + [752] = 596, + [753] = 576, + [754] = 567, + [755] = 571, + [756] = 571, + [757] = 601, + [758] = 578, + [759] = 597, + [760] = 760, + [761] = 577, + [762] = 597, + [763] = 622, + [764] = 590, + [765] = 634, + [766] = 622, + [767] = 596, + [768] = 594, + [769] = 582, + [770] = 602, + [771] = 587, [772] = 582, - [773] = 579, - [774] = 567, - [775] = 567, - [776] = 572, - [777] = 593, - [778] = 578, - [779] = 585, - [780] = 585, - [781] = 599, - [782] = 603, - [783] = 580, - [784] = 590, - [785] = 615, - [786] = 596, - [787] = 582, - [788] = 599, - [789] = 569, - [790] = 598, - [791] = 581, - [792] = 598, - [793] = 598, - [794] = 616, - [795] = 582, - [796] = 615, + [773] = 575, + [774] = 590, + [775] = 596, + [776] = 601, + [777] = 634, + [778] = 580, + [779] = 611, + [780] = 587, + [781] = 602, + [782] = 622, + [783] = 601, + [784] = 584, + [785] = 596, + [786] = 786, + [787] = 601, + [788] = 609, + [789] = 598, + [790] = 586, + [791] = 791, + [792] = 573, + [793] = 608, + [794] = 622, + [795] = 584, + [796] = 608, [797] = 609, - [798] = 608, - [799] = 603, - [800] = 587, - [801] = 609, - [802] = 607, - [803] = 569, - [804] = 608, - [805] = 576, - [806] = 608, - [807] = 604, - [808] = 607, - [809] = 572, - [810] = 604, - [811] = 811, - [812] = 572, - [813] = 607, - [814] = 609, - [815] = 578, - [816] = 607, - [817] = 580, - [818] = 572, - [819] = 581, - [820] = 568, - [821] = 579, - [822] = 588, - [823] = 823, + [798] = 576, + [799] = 602, + [800] = 634, + [801] = 575, + [802] = 589, + [803] = 573, + [804] = 691, + [805] = 586, + [806] = 586, + [807] = 573, + [808] = 622, + [809] = 598, + [810] = 577, + [811] = 602, + [812] = 567, + [813] = 582, + [814] = 586, + [815] = 586, + [816] = 578, + [817] = 608, + [818] = 609, + [819] = 590, + [820] = 596, + [821] = 580, + [822] = 573, + [823] = 568, [824] = 824, - [825] = 603, - [826] = 590, - [827] = 599, - [828] = 591, - [829] = 594, - [830] = 596, - [831] = 568, + [825] = 825, + [826] = 582, + [827] = 587, + [828] = 589, + [829] = 583, + [830] = 589, + [831] = 583, [832] = 596, - [833] = 599, - [834] = 607, - [835] = 590, - [836] = 603, - [837] = 594, - [838] = 598, - [839] = 591, - [840] = 607, - [841] = 603, - [842] = 576, - [843] = 599, - [844] = 578, - [845] = 596, - [846] = 580, - [847] = 594, - [848] = 591, - [849] = 581, - [850] = 590, - [851] = 572, - [852] = 568, - [853] = 590, - [854] = 591, - [855] = 568, - [856] = 581, - [857] = 594, - [858] = 596, - [859] = 579, - [860] = 599, - [861] = 603, + [833] = 601, + [834] = 580, + [835] = 597, + [836] = 597, + [837] = 604, + [838] = 602, + [839] = 602, + [840] = 583, + [841] = 611, + [842] = 597, + [843] = 578, + [844] = 577, + [845] = 586, + [846] = 576, + [847] = 847, + [848] = 589, + [849] = 573, + [850] = 568, + [851] = 575, + [852] = 634, + [853] = 582, + [854] = 587, + [855] = 589, + [856] = 587, + [857] = 583, + [858] = 580, + [859] = 597, + [860] = 601, + [861] = 571, [862] = 862, [863] = 862, [864] = 862, @@ -5353,850 +5353,850 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [879] = 879, [880] = 880, [881] = 880, - [882] = 879, + [882] = 880, [883] = 879, - [884] = 880, + [884] = 879, [885] = 885, [886] = 885, [887] = 885, [888] = 885, [889] = 885, [890] = 890, - [891] = 890, - [892] = 892, - [893] = 890, + [891] = 891, + [892] = 890, + [893] = 891, [894] = 890, - [895] = 892, - [896] = 896, + [895] = 895, + [896] = 895, [897] = 890, - [898] = 896, - [899] = 890, - [900] = 892, - [901] = 896, + [898] = 890, + [899] = 891, + [900] = 890, + [901] = 895, [902] = 902, [903] = 903, [904] = 904, - [905] = 902, - [906] = 906, - [907] = 907, - [908] = 907, - [909] = 907, - [910] = 904, - [911] = 907, - [912] = 907, - [913] = 903, - [914] = 907, - [915] = 904, + [905] = 903, + [906] = 904, + [907] = 904, + [908] = 908, + [909] = 908, + [910] = 908, + [911] = 908, + [912] = 904, + [913] = 913, + [914] = 908, + [915] = 902, [916] = 904, - [917] = 904, - [918] = 907, - [919] = 907, - [920] = 903, - [921] = 907, - [922] = 922, - [923] = 907, + [917] = 908, + [918] = 908, + [919] = 919, + [920] = 908, + [921] = 908, + [922] = 903, + [923] = 908, [924] = 924, - [925] = 924, - [926] = 924, + [925] = 908, + [926] = 926, [927] = 924, [928] = 924, - [929] = 903, - [930] = 930, - [931] = 931, + [929] = 924, + [930] = 908, + [931] = 924, [932] = 932, - [933] = 907, - [934] = 907, - [935] = 924, - [936] = 907, - [937] = 907, - [938] = 316, - [939] = 902, - [940] = 907, - [941] = 304, - [942] = 906, - [943] = 907, - [944] = 907, - [945] = 907, - [946] = 930, - [947] = 930, - [948] = 948, - [949] = 930, - [950] = 316, - [951] = 948, - [952] = 321, - [953] = 299, - [954] = 954, - [955] = 316, - [956] = 948, - [957] = 948, - [958] = 948, - [959] = 304, - [960] = 316, - [961] = 331, - [962] = 948, - [963] = 948, - [964] = 948, - [965] = 948, - [966] = 907, - [967] = 304, - [968] = 304, - [969] = 948, - [970] = 296, + [933] = 924, + [934] = 903, + [935] = 935, + [936] = 935, + [937] = 913, + [938] = 908, + [939] = 309, + [940] = 908, + [941] = 902, + [942] = 908, + [943] = 908, + [944] = 908, + [945] = 314, + [946] = 908, + [947] = 935, + [948] = 295, + [949] = 314, + [950] = 950, + [951] = 950, + [952] = 309, + [953] = 316, + [954] = 314, + [955] = 309, + [956] = 908, + [957] = 950, + [958] = 296, + [959] = 950, + [960] = 935, + [961] = 950, + [962] = 950, + [963] = 950, + [964] = 309, + [965] = 308, + [966] = 950, + [967] = 950, + [968] = 950, + [969] = 314, + [970] = 970, [971] = 316, - [972] = 299, + [972] = 295, [973] = 973, [974] = 974, [975] = 975, - [976] = 294, - [977] = 304, + [976] = 308, + [977] = 309, [978] = 978, - [979] = 979, - [980] = 321, + [979] = 309, + [980] = 980, [981] = 981, - [982] = 299, - [983] = 307, - [984] = 296, - [985] = 305, - [986] = 304, - [987] = 331, - [988] = 304, - [989] = 954, - [990] = 296, - [991] = 954, - [992] = 992, - [993] = 316, + [982] = 982, + [983] = 983, + [984] = 295, + [985] = 985, + [986] = 309, + [987] = 987, + [988] = 988, + [989] = 314, + [990] = 314, + [991] = 311, + [992] = 303, + [993] = 296, [994] = 994, - [995] = 995, - [996] = 316, - [997] = 304, + [995] = 975, + [996] = 970, + [997] = 302, [998] = 998, [999] = 999, - [1000] = 1000, - [1001] = 304, - [1002] = 331, - [1003] = 994, - [1004] = 331, - [1005] = 334, - [1006] = 1006, - [1007] = 321, - [1008] = 316, - [1009] = 316, - [1010] = 321, - [1011] = 331, + [1000] = 316, + [1001] = 314, + [1002] = 1002, + [1003] = 334, + [1004] = 309, + [1005] = 316, + [1006] = 308, + [1007] = 316, + [1008] = 1008, + [1009] = 1009, + [1010] = 296, + [1011] = 1011, [1012] = 1012, - [1013] = 321, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 335, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, + [1013] = 322, + [1014] = 308, + [1015] = 308, + [1016] = 970, + [1017] = 309, + [1018] = 314, + [1019] = 314, + [1020] = 974, [1021] = 1021, [1022] = 1022, [1023] = 1023, - [1024] = 981, + [1024] = 994, [1025] = 1025, [1026] = 1026, - [1027] = 304, + [1027] = 311, [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, - [1032] = 1032, - [1033] = 1033, + [1032] = 316, + [1033] = 316, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 307, + [1037] = 314, [1038] = 1038, - [1039] = 305, + [1039] = 1039, [1040] = 1040, - [1041] = 1018, - [1042] = 994, + [1041] = 1041, + [1042] = 311, [1043] = 1043, - [1044] = 331, - [1045] = 992, - [1046] = 995, - [1047] = 296, - [1048] = 299, - [1049] = 973, - [1050] = 334, + [1044] = 1044, + [1045] = 1012, + [1046] = 998, + [1047] = 999, + [1048] = 1048, + [1049] = 983, + [1050] = 982, [1051] = 1051, - [1052] = 1052, - [1053] = 321, + [1052] = 1002, + [1053] = 302, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1055] = 303, + [1056] = 314, [1057] = 1057, - [1058] = 1058, - [1059] = 1059, + [1058] = 314, + [1059] = 1009, [1060] = 1060, - [1061] = 335, - [1062] = 1062, + [1061] = 1061, + [1062] = 309, [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 321, + [1068] = 302, [1069] = 1069, [1070] = 1070, - [1071] = 1071, + [1071] = 308, [1072] = 1072, - [1073] = 1073, + [1073] = 999, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 316, - [1079] = 1015, + [1078] = 1078, + [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 304, + [1082] = 1082, [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 294, - [1087] = 307, + [1084] = 975, + [1085] = 970, + [1086] = 1086, + [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1019, - [1091] = 304, - [1092] = 1092, - [1093] = 1093, + [1090] = 334, + [1091] = 1091, + [1092] = 974, + [1093] = 309, [1094] = 1094, - [1095] = 294, - [1096] = 305, + [1095] = 1095, + [1096] = 308, [1097] = 1097, - [1098] = 323, - [1099] = 973, - [1100] = 331, - [1101] = 316, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 995, - [1105] = 992, + [1104] = 1104, + [1105] = 1105, [1106] = 1106, - [1107] = 331, - [1108] = 1014, - [1109] = 1012, + [1107] = 308, + [1108] = 1108, + [1109] = 1109, [1110] = 1110, [1111] = 1111, - [1112] = 1112, + [1112] = 316, [1113] = 1113, - [1114] = 1114, - [1115] = 321, + [1114] = 1008, + [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 321, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 998, + [1119] = 316, + [1120] = 1120, + [1121] = 975, + [1122] = 336, + [1123] = 308, + [1124] = 333, [1125] = 1125, - [1126] = 1126, - [1127] = 1127, + [1126] = 314, + [1127] = 309, [1128] = 1128, - [1129] = 999, + [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, - [1133] = 321, - [1134] = 312, + [1133] = 985, + [1134] = 987, [1135] = 1135, - [1136] = 1014, - [1137] = 1012, + [1136] = 985, + [1137] = 1137, [1138] = 1138, - [1139] = 981, - [1140] = 309, - [1141] = 304, - [1142] = 1142, + [1139] = 988, + [1140] = 1140, + [1141] = 1141, + [1142] = 987, [1143] = 1143, [1144] = 1144, - [1145] = 316, - [1146] = 334, + [1145] = 1145, + [1146] = 1146, [1147] = 1147, - [1148] = 1019, + [1148] = 1148, [1149] = 1149, - [1150] = 1015, - [1151] = 335, + [1150] = 1150, + [1151] = 994, [1152] = 1152, - [1153] = 1153, + [1153] = 322, [1154] = 1154, - [1155] = 331, - [1156] = 1006, - [1157] = 327, - [1158] = 1158, - [1159] = 954, - [1160] = 321, - [1161] = 975, - [1162] = 316, - [1163] = 1016, - [1164] = 974, - [1165] = 979, - [1166] = 331, + [1155] = 1008, + [1156] = 1156, + [1157] = 322, + [1158] = 303, + [1159] = 316, + [1160] = 1160, + [1161] = 1161, + [1162] = 978, + [1163] = 334, + [1164] = 311, + [1165] = 337, + [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, + [1169] = 988, + [1170] = 973, + [1171] = 306, [1172] = 1172, - [1173] = 975, - [1174] = 998, - [1175] = 1175, - [1176] = 331, - [1177] = 999, - [1178] = 974, - [1179] = 316, - [1180] = 994, + [1173] = 1173, + [1174] = 1174, + [1175] = 980, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, [1181] = 1181, - [1182] = 1182, - [1183] = 978, - [1184] = 979, + [1182] = 334, + [1183] = 1012, + [1184] = 998, [1185] = 1185, - [1186] = 1000, - [1187] = 1187, + [1186] = 1002, + [1187] = 1009, [1188] = 1188, [1189] = 1189, [1190] = 1190, [1191] = 1191, - [1192] = 1192, - [1193] = 1018, - [1194] = 1194, - [1195] = 1195, + [1192] = 309, + [1193] = 309, + [1194] = 981, + [1195] = 1011, [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1006, - [1202] = 1202, - [1203] = 334, - [1204] = 335, - [1205] = 1000, + [1197] = 295, + [1198] = 308, + [1199] = 296, + [1200] = 983, + [1201] = 973, + [1202] = 978, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, [1206] = 1206, [1207] = 1207, [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 978, - [1215] = 1215, - [1216] = 1016, - [1217] = 304, - [1218] = 1121, - [1219] = 1198, - [1220] = 1153, - [1221] = 321, - [1222] = 1111, - [1223] = 1207, - [1224] = 1112, - [1225] = 1114, - [1226] = 1168, - [1227] = 1153, - [1228] = 1207, - [1229] = 1190, - [1230] = 1168, - [1231] = 1172, - [1232] = 1111, - [1233] = 331, - [1234] = 1189, - [1235] = 1112, - [1236] = 1187, - [1237] = 1188, - [1238] = 1206, - [1239] = 1208, - [1240] = 1209, - [1241] = 1202, - [1242] = 1172, - [1243] = 1200, - [1244] = 1192, - [1245] = 1187, - [1246] = 1188, - [1247] = 1059, - [1248] = 1206, - [1249] = 1208, - [1250] = 1209, - [1251] = 1202, - [1252] = 1200, - [1253] = 1181, - [1254] = 1149, - [1255] = 1192, - [1256] = 1019, - [1257] = 321, - [1258] = 1144, - [1259] = 1059, - [1260] = 1181, - [1261] = 978, - [1262] = 981, - [1263] = 1135, - [1264] = 1149, - [1265] = 1132, - [1266] = 1012, - [1267] = 1014, - [1268] = 1175, - [1269] = 1171, - [1270] = 1169, - [1271] = 1122, - [1272] = 1067, - [1273] = 1144, - [1274] = 335, - [1275] = 1021, - [1276] = 334, - [1277] = 1117, - [1278] = 1116, - [1279] = 1113, - [1280] = 1110, - [1281] = 1135, - [1282] = 1097, - [1283] = 1122, - [1284] = 1092, - [1285] = 1106, - [1286] = 1021, - [1287] = 1117, - [1288] = 1069, - [1289] = 1089, - [1290] = 1084, - [1291] = 1074, - [1292] = 1073, - [1293] = 1064, - [1294] = 1063, - [1295] = 1194, - [1296] = 1097, - [1297] = 1094, - [1298] = 1092, - [1299] = 1089, - [1300] = 1084, - [1301] = 1138, - [1302] = 1058, - [1303] = 1074, - [1304] = 331, - [1305] = 1055, - [1306] = 1073, - [1307] = 1064, - [1308] = 1063, - [1309] = 1194, - [1310] = 327, - [1311] = 1094, - [1312] = 321, - [1313] = 1052, - [1314] = 1058, - [1315] = 1131, - [1316] = 1038, - [1317] = 1130, - [1318] = 1128, - [1319] = 1127, - [1320] = 1040, - [1321] = 1126, - [1322] = 1055, - [1323] = 1125, - [1324] = 1123, - [1325] = 1032, - [1326] = 1028, - [1327] = 1071, - [1328] = 1118, - [1329] = 1077, - [1330] = 1080, - [1331] = 1052, - [1332] = 1088, - [1333] = 1103, - [1334] = 323, - [1335] = 1154, - [1336] = 1158, - [1337] = 1167, - [1338] = 1040, - [1339] = 1032, - [1340] = 1028, - [1341] = 334, - [1342] = 1071, - [1343] = 1170, - [1344] = 316, - [1345] = 309, - [1346] = 1077, - [1347] = 1080, - [1348] = 1088, - [1349] = 1103, - [1350] = 312, - [1351] = 1018, - [1352] = 1182, - [1353] = 331, - [1354] = 1043, - [1355] = 1119, - [1356] = 1154, - [1357] = 1158, - [1358] = 1167, - [1359] = 1023, - [1360] = 1170, - [1361] = 1020, - [1362] = 335, - [1363] = 1083, - [1364] = 1070, - [1365] = 1147, - [1366] = 1143, - [1367] = 1142, - [1368] = 1368, - [1369] = 1081, - [1370] = 1025, - [1371] = 1102, - [1372] = 1076, - [1373] = 1093, - [1374] = 1085, - [1375] = 1051, - [1376] = 321, - [1377] = 1026, - [1378] = 1022, - [1379] = 1075, - [1380] = 1072, - [1381] = 294, - [1382] = 1182, - [1383] = 1191, - [1384] = 1185, - [1385] = 1065, - [1386] = 1060, - [1387] = 1057, - [1388] = 1056, - [1389] = 1054, - [1390] = 1030, - [1391] = 1043, - [1392] = 1195, - [1393] = 1070, - [1394] = 1147, - [1395] = 1036, - [1396] = 1143, - [1397] = 1142, - [1398] = 1102, - [1399] = 1093, - [1400] = 1069, - [1401] = 1016, - [1402] = 1085, - [1403] = 1152, - [1404] = 312, - [1405] = 1022, - [1406] = 1030, - [1407] = 1036, - [1408] = 1067, - [1409] = 1066, - [1410] = 1062, - [1411] = 973, - [1412] = 1000, - [1413] = 1006, - [1414] = 1195, - [1415] = 1015, - [1416] = 1029, - [1417] = 1215, - [1418] = 1031, - [1419] = 1213, - [1420] = 1033, - [1421] = 1212, - [1422] = 1034, - [1423] = 1038, - [1424] = 1035, - [1425] = 1034, - [1426] = 1033, - [1427] = 1031, - [1428] = 1035, - [1429] = 1029, - [1430] = 1152, - [1431] = 1211, - [1432] = 1210, - [1433] = 1026, - [1434] = 334, - [1435] = 1138, - [1436] = 1132, - [1437] = 1051, - [1438] = 1025, - [1439] = 1020, - [1440] = 316, - [1441] = 327, - [1442] = 323, - [1443] = 1023, - [1444] = 1066, - [1445] = 1199, - [1446] = 1215, - [1447] = 1114, - [1448] = 1119, - [1449] = 1213, - [1450] = 1197, - [1451] = 307, - [1452] = 305, - [1453] = 331, - [1454] = 1185, - [1455] = 995, - [1456] = 992, - [1457] = 1191, - [1458] = 1196, - [1459] = 304, - [1460] = 1054, - [1461] = 1062, - [1462] = 1056, - [1463] = 1057, - [1464] = 1060, - [1465] = 1196, - [1466] = 1065, - [1467] = 1190, - [1468] = 1197, - [1469] = 1189, - [1470] = 1175, - [1471] = 1072, - [1472] = 1075, - [1473] = 1076, - [1474] = 1171, - [1475] = 1169, - [1476] = 1198, - [1477] = 1199, - [1478] = 1081, - [1479] = 1083, - [1480] = 1212, - [1481] = 1211, - [1482] = 309, - [1483] = 1210, - [1484] = 1131, - [1485] = 1130, - [1486] = 335, - [1487] = 1128, - [1488] = 1127, - [1489] = 1126, - [1490] = 1125, - [1491] = 1123, - [1492] = 1121, - [1493] = 1116, - [1494] = 1113, - [1495] = 1110, - [1496] = 1106, - [1497] = 1118, - [1498] = 304, - [1499] = 979, - [1500] = 974, - [1501] = 999, - [1502] = 998, - [1503] = 975, - [1504] = 321, - [1505] = 1043, - [1506] = 1198, - [1507] = 1199, - [1508] = 1154, - [1509] = 1212, - [1510] = 1077, - [1511] = 1158, - [1512] = 1033, - [1513] = 1036, - [1514] = 1122, - [1515] = 1167, - [1516] = 1080, - [1517] = 1144, - [1518] = 1088, - [1519] = 1021, - [1520] = 1035, - [1521] = 1030, - [1522] = 1022, - [1523] = 1117, - [1524] = 1103, - [1525] = 335, - [1526] = 1038, - [1527] = 327, - [1528] = 1058, - [1529] = 1194, - [1530] = 1063, - [1531] = 1064, - [1532] = 323, - [1533] = 1170, - [1534] = 1169, - [1535] = 1171, - [1536] = 1073, - [1537] = 1097, - [1538] = 1085, - [1539] = 1074, - [1540] = 312, - [1541] = 1094, - [1542] = 1152, - [1543] = 1211, - [1544] = 1213, - [1545] = 1210, - [1546] = 1029, - [1547] = 1093, - [1548] = 1092, - [1549] = 1102, - [1550] = 1142, - [1551] = 1116, - [1552] = 1175, - [1553] = 1113, - [1554] = 1215, - [1555] = 1110, - [1556] = 1106, - [1557] = 1089, - [1558] = 1143, - [1559] = 1189, - [1560] = 1026, - [1561] = 1131, - [1562] = 1084, - [1563] = 1034, - [1564] = 1071, - [1565] = 334, - [1566] = 1147, - [1567] = 1168, - [1568] = 1028, - [1569] = 1172, - [1570] = 1118, - [1571] = 1187, - [1572] = 1188, - [1573] = 1070, - [1574] = 1206, - [1575] = 1208, - [1576] = 1195, - [1577] = 1209, - [1578] = 1202, - [1579] = 1138, - [1580] = 1197, - [1581] = 1200, - [1582] = 1121, - [1583] = 1368, - [1584] = 1132, - [1585] = 1032, - [1586] = 1069, - [1587] = 1192, - [1588] = 1190, - [1589] = 1040, - [1590] = 331, - [1591] = 1054, - [1592] = 1056, - [1593] = 1031, - [1594] = 1057, - [1595] = 1067, - [1596] = 1060, - [1597] = 1123, - [1598] = 1125, - [1599] = 1196, - [1600] = 309, - [1601] = 1207, - [1602] = 1153, - [1603] = 1065, - [1604] = 1114, - [1605] = 1135, - [1606] = 1062, - [1607] = 1185, - [1608] = 1191, - [1609] = 1059, - [1610] = 1181, - [1611] = 1111, - [1612] = 1066, - [1613] = 1083, - [1614] = 1149, - [1615] = 1182, - [1616] = 1072, - [1617] = 1025, - [1618] = 1075, - [1619] = 1081, - [1620] = 1020, - [1621] = 1023, - [1622] = 1076, - [1623] = 1051, - [1624] = 1119, - [1625] = 1130, - [1626] = 1052, - [1627] = 1128, - [1628] = 1127, - [1629] = 1126, - [1630] = 1055, - [1631] = 1112, + [1209] = 980, + [1210] = 314, + [1211] = 308, + [1212] = 982, + [1213] = 1011, + [1214] = 1214, + [1215] = 316, + [1216] = 1216, + [1217] = 981, + [1218] = 308, + [1219] = 1089, + [1220] = 985, + [1221] = 1082, + [1222] = 1051, + [1223] = 987, + [1224] = 306, + [1225] = 1064, + [1226] = 1131, + [1227] = 1035, + [1228] = 1196, + [1229] = 1115, + [1230] = 994, + [1231] = 1034, + [1232] = 303, + [1233] = 322, + [1234] = 988, + [1235] = 336, + [1236] = 337, + [1237] = 1095, + [1238] = 1039, + [1239] = 1094, + [1240] = 1036, + [1241] = 1030, + [1242] = 1026, + [1243] = 1091, + [1244] = 1067, + [1245] = 1061, + [1246] = 1065, + [1247] = 1066, + [1248] = 1132, + [1249] = 1185, + [1250] = 1167, + [1251] = 1135, + [1252] = 1109, + [1253] = 1025, + [1254] = 980, + [1255] = 1069, + [1256] = 1070, + [1257] = 1028, + [1258] = 1072, + [1259] = 1074, + [1260] = 1031, + [1261] = 1075, + [1262] = 1040, + [1263] = 1078, + [1264] = 1079, + [1265] = 1080, + [1266] = 1190, + [1267] = 1189, + [1268] = 334, + [1269] = 1188, + [1270] = 1044, + [1271] = 1100, + [1272] = 1102, + [1273] = 1103, + [1274] = 1104, + [1275] = 1106, + [1276] = 1038, + [1277] = 1108, + [1278] = 1110, + [1279] = 1111, + [1280] = 1063, + [1281] = 1116, + [1282] = 1076, + [1283] = 1117, + [1284] = 1077, + [1285] = 311, + [1286] = 1156, + [1287] = 981, + [1288] = 1011, + [1289] = 1041, + [1290] = 1154, + [1291] = 333, + [1292] = 1081, + [1293] = 1083, + [1294] = 1086, + [1295] = 1140, + [1296] = 1143, + [1297] = 314, + [1298] = 1087, + [1299] = 1088, + [1300] = 1144, + [1301] = 1145, + [1302] = 1099, + [1303] = 1146, + [1304] = 1029, + [1305] = 1113, + [1306] = 1118, + [1307] = 1021, + [1308] = 1130, + [1309] = 1147, + [1310] = 1148, + [1311] = 1137, + [1312] = 1150, + [1313] = 1203, + [1314] = 1149, + [1315] = 1150, + [1316] = 316, + [1317] = 302, + [1318] = 1149, + [1319] = 1148, + [1320] = 1147, + [1321] = 1146, + [1322] = 1188, + [1323] = 1152, + [1324] = 1145, + [1325] = 1144, + [1326] = 1143, + [1327] = 1189, + [1328] = 1115, + [1329] = 1140, + [1330] = 1098, + [1331] = 1204, + [1332] = 1190, + [1333] = 1196, + [1334] = 1334, + [1335] = 998, + [1336] = 1203, + [1337] = 1172, + [1338] = 1173, + [1339] = 1176, + [1340] = 999, + [1341] = 1177, + [1342] = 308, + [1343] = 1154, + [1344] = 1204, + [1345] = 1178, + [1346] = 1180, + [1347] = 1181, + [1348] = 1191, + [1349] = 1043, + [1350] = 1205, + [1351] = 1041, + [1352] = 336, + [1353] = 1043, + [1354] = 337, + [1355] = 1206, + [1356] = 309, + [1357] = 1205, + [1358] = 1208, + [1359] = 1214, + [1360] = 334, + [1361] = 1138, + [1362] = 1120, + [1363] = 311, + [1364] = 1117, + [1365] = 1116, + [1366] = 1174, + [1367] = 1129, + [1368] = 1128, + [1369] = 1105, + [1370] = 973, + [1371] = 309, + [1372] = 1111, + [1373] = 1110, + [1374] = 1108, + [1375] = 974, + [1376] = 1038, + [1377] = 1125, + [1378] = 1161, + [1379] = 1166, + [1380] = 316, + [1381] = 1179, + [1382] = 1048, + [1383] = 1141, + [1384] = 1060, + [1385] = 1106, + [1386] = 1104, + [1387] = 1103, + [1388] = 1102, + [1389] = 1100, + [1390] = 1207, + [1391] = 1057, + [1392] = 1054, + [1393] = 1023, + [1394] = 1022, + [1395] = 1216, + [1396] = 1097, + [1397] = 1101, + [1398] = 1216, + [1399] = 1101, + [1400] = 1097, + [1401] = 1207, + [1402] = 1179, + [1403] = 1022, + [1404] = 333, + [1405] = 1166, + [1406] = 1161, + [1407] = 1125, + [1408] = 1023, + [1409] = 1054, + [1410] = 1057, + [1411] = 1044, + [1412] = 306, + [1413] = 1048, + [1414] = 1008, + [1415] = 1138, + [1416] = 1214, + [1417] = 1208, + [1418] = 1206, + [1419] = 1191, + [1420] = 1181, + [1421] = 1180, + [1422] = 1178, + [1423] = 1080, + [1424] = 1079, + [1425] = 1078, + [1426] = 1075, + [1427] = 1074, + [1428] = 1177, + [1429] = 1072, + [1430] = 1070, + [1431] = 1176, + [1432] = 1069, + [1433] = 1173, + [1434] = 1172, + [1435] = 1168, + [1436] = 1160, + [1437] = 1098, + [1438] = 1067, + [1439] = 1066, + [1440] = 1065, + [1441] = 1152, + [1442] = 1137, + [1443] = 1130, + [1444] = 1105, + [1445] = 1061, + [1446] = 1128, + [1447] = 1021, + [1448] = 1118, + [1449] = 1113, + [1450] = 1099, + [1451] = 1088, + [1452] = 1087, + [1453] = 1086, + [1454] = 1083, + [1455] = 1081, + [1456] = 1156, + [1457] = 1077, + [1458] = 334, + [1459] = 1076, + [1460] = 311, + [1461] = 1063, + [1462] = 314, + [1463] = 308, + [1464] = 1040, + [1465] = 1031, + [1466] = 1028, + [1467] = 1025, + [1468] = 1109, + [1469] = 1135, + [1470] = 1129, + [1471] = 1174, + [1472] = 1120, + [1473] = 1167, + [1474] = 1185, + [1475] = 1132, + [1476] = 1026, + [1477] = 1030, + [1478] = 1036, + [1479] = 1064, + [1480] = 1082, + [1481] = 1089, + [1482] = 1091, + [1483] = 1094, + [1484] = 1095, + [1485] = 1029, + [1486] = 1012, + [1487] = 978, + [1488] = 983, + [1489] = 982, + [1490] = 1002, + [1491] = 1141, + [1492] = 1009, + [1493] = 1060, + [1494] = 308, + [1495] = 316, + [1496] = 1160, + [1497] = 1168, + [1498] = 316, + [1499] = 1051, + [1500] = 1039, + [1501] = 1035, + [1502] = 1034, + [1503] = 1131, + [1504] = 1104, + [1505] = 1181, + [1506] = 1132, + [1507] = 1063, + [1508] = 1185, + [1509] = 1086, + [1510] = 1167, + [1511] = 1066, + [1512] = 1083, + [1513] = 334, + [1514] = 1036, + [1515] = 1088, + [1516] = 1081, + [1517] = 1067, + [1518] = 1087, + [1519] = 1044, + [1520] = 1135, + [1521] = 1128, + [1522] = 1030, + [1523] = 1109, + [1524] = 1028, + [1525] = 1160, + [1526] = 1156, + [1527] = 1077, + [1528] = 1026, + [1529] = 1076, + [1530] = 1168, + [1531] = 1206, + [1532] = 1099, + [1533] = 1208, + [1534] = 1031, + [1535] = 1214, + [1536] = 1188, + [1537] = 1189, + [1538] = 1025, + [1539] = 1097, + [1540] = 1051, + [1541] = 1039, + [1542] = 1069, + [1543] = 1035, + [1544] = 1203, + [1545] = 1196, + [1546] = 1040, + [1547] = 1101, + [1548] = 1034, + [1549] = 1113, + [1550] = 1118, + [1551] = 1021, + [1552] = 1216, + [1553] = 1207, + [1554] = 1190, + [1555] = 1130, + [1556] = 1120, + [1557] = 1137, + [1558] = 306, + [1559] = 1174, + [1560] = 1070, + [1561] = 336, + [1562] = 1177, + [1563] = 1072, + [1564] = 1061, + [1565] = 1117, + [1566] = 1116, + [1567] = 1074, + [1568] = 1075, + [1569] = 1176, + [1570] = 1105, + [1571] = 1111, + [1572] = 1173, + [1573] = 1078, + [1574] = 1110, + [1575] = 1079, + [1576] = 1080, + [1577] = 337, + [1578] = 1172, + [1579] = 1131, + [1580] = 1129, + [1581] = 316, + [1582] = 1098, + [1583] = 1179, + [1584] = 1205, + [1585] = 1154, + [1586] = 1043, + [1587] = 311, + [1588] = 1166, + [1589] = 1095, + [1590] = 1094, + [1591] = 1041, + [1592] = 1108, + [1593] = 1091, + [1594] = 1048, + [1595] = 1089, + [1596] = 1082, + [1597] = 1140, + [1598] = 1150, + [1599] = 1161, + [1600] = 1143, + [1601] = 1141, + [1602] = 1138, + [1603] = 1060, + [1604] = 333, + [1605] = 1106, + [1606] = 1103, + [1607] = 1102, + [1608] = 1100, + [1609] = 1065, + [1610] = 308, + [1611] = 1057, + [1612] = 1038, + [1613] = 1054, + [1614] = 1144, + [1615] = 1149, + [1616] = 1115, + [1617] = 1334, + [1618] = 1204, + [1619] = 1148, + [1620] = 1191, + [1621] = 1064, + [1622] = 1022, + [1623] = 1145, + [1624] = 1180, + [1625] = 1147, + [1626] = 1152, + [1627] = 1178, + [1628] = 1023, + [1629] = 1125, + [1630] = 1029, + [1631] = 1146, [1632] = 1632, [1633] = 1632, [1634] = 1632, [1635] = 1632, [1636] = 1632, [1637] = 1637, - [1638] = 1637, - [1639] = 1637, - [1640] = 1640, + [1638] = 1638, + [1639] = 1639, + [1640] = 1639, [1641] = 1641, - [1642] = 1640, - [1643] = 1643, - [1644] = 1637, - [1645] = 1015, - [1646] = 1640, + [1642] = 1641, + [1643] = 1641, + [1644] = 1644, + [1645] = 1641, + [1646] = 1646, [1647] = 1647, - [1648] = 1637, + [1648] = 1008, [1649] = 1649, - [1650] = 1650, + [1650] = 1641, [1651] = 1651, [1652] = 1652, - [1653] = 1018, - [1654] = 1654, - [1655] = 1655, + [1653] = 1639, + [1654] = 1639, + [1655] = 973, [1656] = 1656, - [1657] = 1657, - [1658] = 1640, - [1659] = 1640, + [1657] = 1639, + [1658] = 1658, + [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 1660, - [1663] = 1660, + [1662] = 1661, + [1663] = 1661, [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1666, - [1668] = 1664, - [1669] = 1669, + [1668] = 1668, + [1669] = 1664, [1670] = 1664, - [1671] = 1666, + [1671] = 1671, [1672] = 1672, - [1673] = 1665, - [1674] = 1672, - [1675] = 1666, - [1676] = 1669, - [1677] = 1669, - [1678] = 1678, - [1679] = 1679, - [1680] = 1669, - [1681] = 1665, - [1682] = 1664, - [1683] = 1665, - [1684] = 1672, - [1685] = 1679, - [1686] = 1665, - [1687] = 1666, - [1688] = 1669, - [1689] = 1664, - [1690] = 1679, - [1691] = 1679, - [1692] = 1665, - [1693] = 1679, - [1694] = 1672, - [1695] = 1679, - [1696] = 1665, - [1697] = 1672, - [1698] = 1679, - [1699] = 1672, - [1700] = 1669, - [1701] = 1669, - [1702] = 1666, + [1673] = 1673, + [1674] = 1671, + [1675] = 1672, + [1676] = 1673, + [1677] = 1668, + [1678] = 1673, + [1679] = 1672, + [1680] = 1666, + [1681] = 1671, + [1682] = 1668, + [1683] = 1672, + [1684] = 1664, + [1685] = 1666, + [1686] = 1668, + [1687] = 1668, + [1688] = 1666, + [1689] = 1671, + [1690] = 1673, + [1691] = 1666, + [1692] = 1671, + [1693] = 1672, + [1694] = 1668, + [1695] = 1673, + [1696] = 1664, + [1697] = 1671, + [1698] = 1664, + [1699] = 1673, + [1700] = 1668, + [1701] = 1666, + [1702] = 1672, [1703] = 1664, - [1704] = 1672, - [1705] = 1666, - [1706] = 1664, + [1704] = 1673, + [1705] = 1672, + [1706] = 1671, [1707] = 1707, [1708] = 1708, - [1709] = 1709, + [1709] = 1707, [1710] = 1707, - [1711] = 1707, + [1711] = 1711, [1712] = 1707, - [1713] = 1708, - [1714] = 1707, + [1713] = 1707, + [1714] = 1711, [1715] = 1707, [1716] = 1716, - [1717] = 1716, - [1718] = 1718, - [1719] = 1718, - [1720] = 1718, + [1717] = 1717, + [1718] = 1717, + [1719] = 1716, + [1720] = 1717, [1721] = 1716, - [1722] = 1718, - [1723] = 1716, + [1722] = 1717, + [1723] = 1717, [1724] = 1716, - [1725] = 1718, + [1725] = 1716, [1726] = 1726, [1727] = 1726, [1728] = 1726, @@ -6211,582 +6211,582 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1737] = 1726, [1738] = 1738, [1739] = 1739, - [1740] = 1740, + [1740] = 1738, [1741] = 1741, - [1742] = 1738, - [1743] = 1740, - [1744] = 1739, - [1745] = 1738, + [1742] = 1742, + [1743] = 1739, + [1744] = 1742, + [1745] = 1739, [1746] = 1741, - [1747] = 1741, - [1748] = 1739, - [1749] = 1740, + [1747] = 1739, + [1748] = 1742, + [1749] = 1739, [1750] = 1741, - [1751] = 1741, + [1751] = 1738, [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1757, + [1758] = 1758, [1759] = 1759, [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1753, + [1763] = 1759, [1764] = 1764, [1765] = 1765, - [1766] = 1755, - [1767] = 1767, + [1766] = 1753, + [1767] = 1753, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1770, + [1771] = 1768, [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1762, - [1778] = 1776, + [1775] = 1757, + [1776] = 1754, + [1777] = 1777, + [1778] = 1759, [1779] = 1779, - [1780] = 1756, - [1781] = 1772, + [1780] = 1780, + [1781] = 1780, [1782] = 1782, - [1783] = 1753, - [1784] = 1784, - [1785] = 1755, - [1786] = 1757, - [1787] = 1765, - [1788] = 1788, - [1789] = 1789, + [1783] = 1783, + [1784] = 1783, + [1785] = 1785, + [1786] = 1773, + [1787] = 1787, + [1788] = 1770, + [1789] = 1755, [1790] = 1790, - [1791] = 1775, + [1791] = 1791, [1792] = 1792, - [1793] = 1767, - [1794] = 1765, - [1795] = 1779, - [1796] = 1768, - [1797] = 1755, - [1798] = 1762, - [1799] = 1799, - [1800] = 1767, - [1801] = 1768, - [1802] = 1802, - [1803] = 1753, - [1804] = 1802, - [1805] = 1779, - [1806] = 1767, - [1807] = 1807, - [1808] = 1764, - [1809] = 1754, - [1810] = 1802, - [1811] = 1776, - [1812] = 1812, - [1813] = 1813, - [1814] = 1802, - [1815] = 1799, - [1816] = 1779, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1769, + [1797] = 1772, + [1798] = 1752, + [1799] = 1755, + [1800] = 1800, + [1801] = 1795, + [1802] = 1774, + [1803] = 1755, + [1804] = 1754, + [1805] = 1755, + [1806] = 1795, + [1807] = 1795, + [1808] = 1770, + [1809] = 1757, + [1810] = 1810, + [1811] = 1800, + [1812] = 1768, + [1813] = 1761, + [1814] = 1814, + [1815] = 1759, + [1816] = 1757, [1817] = 1817, - [1818] = 1762, - [1819] = 1756, - [1820] = 1764, - [1821] = 1769, - [1822] = 1822, - [1823] = 1768, - [1824] = 1765, - [1825] = 1756, - [1826] = 1807, - [1827] = 1776, - [1828] = 1799, - [1829] = 1754, - [1830] = 1799, - [1831] = 1807, - [1832] = 1770, - [1833] = 1833, - [1834] = 1792, - [1835] = 1768, - [1836] = 1765, - [1837] = 1754, - [1838] = 1838, - [1839] = 1772, - [1840] = 1769, - [1841] = 1753, - [1842] = 1799, + [1818] = 1753, + [1819] = 1819, + [1820] = 1820, + [1821] = 1773, + [1822] = 1783, + [1823] = 1773, + [1824] = 1770, + [1825] = 1800, + [1826] = 1752, + [1827] = 1787, + [1828] = 1759, + [1829] = 1769, + [1830] = 1780, + [1831] = 1753, + [1832] = 1761, + [1833] = 1772, + [1834] = 1760, + [1835] = 1760, + [1836] = 1795, + [1837] = 1783, + [1838] = 1780, + [1839] = 1783, + [1840] = 1780, + [1841] = 1761, + [1842] = 1757, [1843] = 1754, - [1844] = 1807, - [1845] = 1757, - [1846] = 1754, - [1847] = 1802, - [1848] = 1813, - [1849] = 1807, - [1850] = 1769, - [1851] = 1769, - [1852] = 1770, - [1853] = 1774, - [1854] = 1770, - [1855] = 1779, - [1856] = 1772, - [1857] = 1753, - [1858] = 1756, - [1859] = 1859, - [1860] = 1762, - [1861] = 1802, - [1862] = 1774, - [1863] = 1757, - [1864] = 1772, - [1865] = 1764, - [1866] = 1775, - [1867] = 1774, - [1868] = 1775, - [1869] = 1775, - [1870] = 1776, - [1871] = 1764, - [1872] = 1774, - [1873] = 1767, - [1874] = 1755, + [1844] = 1752, + [1845] = 1800, + [1846] = 1752, + [1847] = 1779, + [1848] = 1774, + [1849] = 1754, + [1850] = 1820, + [1851] = 1774, + [1852] = 1772, + [1853] = 1787, + [1854] = 1769, + [1855] = 1768, + [1856] = 1770, + [1857] = 1779, + [1858] = 1774, + [1859] = 1800, + [1860] = 1772, + [1861] = 1769, + [1862] = 1782, + [1863] = 1761, + [1864] = 1768, + [1865] = 1779, + [1866] = 1760, + [1867] = 1779, + [1868] = 1779, + [1869] = 1787, + [1870] = 1753, + [1871] = 1787, + [1872] = 1787, + [1873] = 1760, + [1874] = 1773, [1875] = 1875, [1876] = 1876, [1877] = 1877, [1878] = 1877, [1879] = 1879, [1880] = 1880, - [1881] = 1881, - [1882] = 1879, - [1883] = 1883, - [1884] = 1880, - [1885] = 1883, - [1886] = 1879, - [1887] = 1881, - [1888] = 1881, - [1889] = 1889, - [1890] = 1879, - [1891] = 1883, - [1892] = 1880, - [1893] = 1880, - [1894] = 1894, - [1895] = 1883, + [1881] = 1876, + [1882] = 1882, + [1883] = 1882, + [1884] = 1879, + [1885] = 1885, + [1886] = 1886, + [1887] = 1882, + [1888] = 1888, + [1889] = 1875, + [1890] = 1885, + [1891] = 1880, + [1892] = 1879, + [1893] = 1882, + [1894] = 1880, + [1895] = 1882, [1896] = 1880, - [1897] = 1875, - [1898] = 1883, - [1899] = 1881, - [1900] = 1881, + [1897] = 1885, + [1898] = 1882, + [1899] = 1885, + [1900] = 1880, [1901] = 1879, - [1902] = 1880, - [1903] = 1876, - [1904] = 1904, + [1902] = 1885, + [1903] = 1879, + [1904] = 1882, [1905] = 1905, [1906] = 1905, - [1907] = 1880, - [1908] = 1880, - [1909] = 1905, + [1907] = 1882, + [1908] = 1908, + [1909] = 1882, [1910] = 1875, - [1911] = 1880, - [1912] = 1880, - [1913] = 1913, + [1911] = 1905, + [1912] = 1882, + [1913] = 1882, [1914] = 1914, [1915] = 1915, [1916] = 1916, - [1917] = 1917, - [1918] = 1918, + [1917] = 1915, + [1918] = 1882, [1919] = 1915, [1920] = 1920, - [1921] = 1921, - [1922] = 1913, - [1923] = 1915, - [1924] = 1880, - [1925] = 1925, + [1921] = 1914, + [1922] = 1922, + [1923] = 1923, + [1924] = 1882, + [1925] = 1916, [1926] = 1926, - [1927] = 1920, + [1927] = 1927, [1928] = 1928, - [1929] = 1929, - [1930] = 1915, - [1931] = 1915, - [1932] = 1913, - [1933] = 1880, - [1934] = 1880, - [1935] = 1920, - [1936] = 1880, - [1937] = 1880, - [1938] = 1938, - [1939] = 1913, - [1940] = 1875, - [1941] = 1913, - [1942] = 1938, - [1943] = 1913, - [1944] = 1880, - [1945] = 1938, - [1946] = 1946, - [1947] = 1915, - [1948] = 1926, - [1949] = 1015, - [1950] = 1880, - [1951] = 1880, - [1952] = 1889, - [1953] = 1953, - [1954] = 1880, - [1955] = 1880, - [1956] = 1926, - [1957] = 1880, - [1958] = 1958, - [1959] = 1926, - [1960] = 1876, - [1961] = 1880, - [1962] = 1018, - [1963] = 1963, + [1929] = 1915, + [1930] = 1916, + [1931] = 1931, + [1932] = 1932, + [1933] = 1915, + [1934] = 1916, + [1935] = 1882, + [1936] = 1916, + [1937] = 1937, + [1938] = 1882, + [1939] = 1927, + [1940] = 1915, + [1941] = 1875, + [1942] = 1927, + [1943] = 1882, + [1944] = 1944, + [1945] = 1945, + [1946] = 1914, + [1947] = 1916, + [1948] = 1948, + [1949] = 1008, + [1950] = 1928, + [1951] = 1951, + [1952] = 1882, + [1953] = 1882, + [1954] = 1882, + [1955] = 1882, + [1956] = 1882, + [1957] = 1928, + [1958] = 1876, + [1959] = 973, + [1960] = 1960, + [1961] = 1888, + [1962] = 1928, + [1963] = 1882, [1964] = 1964, [1965] = 1965, - [1966] = 1880, - [1967] = 1926, - [1968] = 1964, - [1969] = 1963, - [1970] = 1970, - [1971] = 1971, - [1972] = 1926, - [1973] = 1970, - [1974] = 1974, - [1975] = 1926, - [1976] = 1970, - [1977] = 1977, - [1978] = 1970, + [1966] = 1966, + [1967] = 1960, + [1968] = 1965, + [1969] = 1969, + [1970] = 1928, + [1971] = 1965, + [1972] = 1965, + [1973] = 1965, + [1974] = 1965, + [1975] = 1975, + [1976] = 1976, + [1977] = 1928, + [1978] = 1978, [1979] = 1979, - [1980] = 1926, + [1980] = 1928, [1981] = 1981, - [1982] = 1970, - [1983] = 1964, - [1984] = 1970, - [1985] = 1970, - [1986] = 1963, + [1982] = 1982, + [1983] = 1983, + [1984] = 1965, + [1985] = 1928, + [1986] = 1965, [1987] = 1987, - [1988] = 1988, - [1989] = 1970, - [1990] = 1990, - [1991] = 1991, - [1992] = 1970, - [1993] = 1993, - [1994] = 1970, - [1995] = 1926, - [1996] = 1964, - [1997] = 1997, - [1998] = 1964, - [1999] = 1999, - [2000] = 2000, - [2001] = 2000, + [1988] = 1960, + [1989] = 1981, + [1990] = 1965, + [1991] = 1928, + [1992] = 1965, + [1993] = 1882, + [1994] = 1994, + [1995] = 1981, + [1996] = 1996, + [1997] = 1981, + [1998] = 1928, + [1999] = 1996, + [2000] = 1981, + [2001] = 1928, [2002] = 2002, - [2003] = 2003, - [2004] = 1926, - [2005] = 1964, - [2006] = 2002, - [2007] = 1981, - [2008] = 2003, - [2009] = 2000, - [2010] = 2000, - [2011] = 1196, - [2012] = 1926, - [2013] = 1981, - [2014] = 2000, - [2015] = 2002, - [2016] = 1926, - [2017] = 2017, - [2018] = 1926, - [2019] = 1926, - [2020] = 1212, - [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 2022, - [2026] = 2024, - [2027] = 2002, - [2028] = 2028, - [2029] = 2023, + [2003] = 1996, + [2004] = 2004, + [2005] = 1928, + [2006] = 1983, + [2007] = 2007, + [2008] = 1129, + [2009] = 1996, + [2010] = 2010, + [2011] = 2004, + [2012] = 1996, + [2013] = 2013, + [2014] = 1981, + [2015] = 2007, + [2016] = 1203, + [2017] = 1928, + [2018] = 2007, + [2019] = 1928, + [2020] = 1983, + [2021] = 1923, + [2022] = 1168, + [2023] = 1920, + [2024] = 1928, + [2025] = 1931, + [2026] = 1932, + [2027] = 2027, + [2028] = 1966, + [2029] = 2029, [2030] = 2030, - [2031] = 2028, - [2032] = 2032, - [2033] = 2023, - [2034] = 1926, - [2035] = 1018, - [2036] = 2036, - [2037] = 1925, - [2038] = 2038, - [2039] = 1132, - [2040] = 2040, - [2041] = 2024, - [2042] = 2042, - [2043] = 2002, - [2044] = 1964, - [2045] = 1138, - [2046] = 1977, - [2047] = 2028, - [2048] = 2002, - [2049] = 2028, - [2050] = 1988, - [2051] = 1964, - [2052] = 2022, - [2053] = 1926, - [2054] = 2028, - [2055] = 1965, - [2056] = 1964, - [2057] = 2023, - [2058] = 2024, - [2059] = 1185, - [2060] = 1191, - [2061] = 2022, - [2062] = 1921, - [2063] = 1958, + [2031] = 2031, + [2032] = 2007, + [2033] = 2033, + [2034] = 1060, + [2035] = 973, + [2036] = 2029, + [2037] = 1937, + [2038] = 2031, + [2039] = 2030, + [2040] = 2031, + [2041] = 2041, + [2042] = 2030, + [2043] = 2029, + [2044] = 2033, + [2045] = 1981, + [2046] = 2046, + [2047] = 1926, + [2048] = 2033, + [2049] = 1160, + [2050] = 1008, + [2051] = 2051, + [2052] = 2030, + [2053] = 2007, + [2054] = 1976, + [2055] = 1978, + [2056] = 2029, + [2057] = 2057, + [2058] = 1983, + [2059] = 1981, + [2060] = 2030, + [2061] = 2031, + [2062] = 1982, + [2063] = 1948, [2064] = 2064, - [2065] = 2036, - [2066] = 2028, - [2067] = 1991, - [2068] = 1964, - [2069] = 1918, - [2070] = 1946, - [2071] = 2022, - [2072] = 2022, - [2073] = 1917, - [2074] = 1916, - [2075] = 1993, - [2076] = 1993, - [2077] = 1991, - [2078] = 2024, - [2079] = 1981, - [2080] = 1015, - [2081] = 1928, - [2082] = 2023, + [2065] = 2029, + [2066] = 1928, + [2067] = 1981, + [2068] = 1945, + [2069] = 1979, + [2070] = 2033, + [2071] = 1979, + [2072] = 1978, + [2073] = 2029, + [2074] = 1981, + [2075] = 2007, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2041, + [2080] = 2031, + [2081] = 2033, + [2082] = 2033, [2083] = 2083, - [2084] = 1991, - [2085] = 2028, - [2086] = 1958, - [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 2022, - [2091] = 1958, - [2092] = 1977, - [2093] = 1958, - [2094] = 2094, - [2095] = 2028, - [2096] = 2096, - [2097] = 2002, - [2098] = 1965, - [2099] = 2002, - [2100] = 1999, - [2101] = 1990, - [2102] = 2028, + [2084] = 1141, + [2085] = 1979, + [2086] = 2086, + [2087] = 1978, + [2088] = 1948, + [2089] = 1981, + [2090] = 2010, + [2091] = 2029, + [2092] = 2029, + [2093] = 1969, + [2094] = 1982, + [2095] = 2095, + [2096] = 1948, + [2097] = 2097, + [2098] = 2098, + [2099] = 2086, + [2100] = 2029, + [2101] = 1976, + [2102] = 2102, [2103] = 2103, - [2104] = 2104, - [2105] = 2094, - [2106] = 2106, - [2107] = 2107, + [2104] = 2029, + [2105] = 2007, + [2106] = 2007, + [2107] = 2086, [2108] = 2108, [2109] = 2109, - [2110] = 2110, - [2111] = 2017, - [2112] = 2094, + [2110] = 1948, + [2111] = 2111, + [2112] = 2033, [2113] = 2113, - [2114] = 2114, - [2115] = 2022, - [2116] = 1993, - [2117] = 2094, - [2118] = 2028, - [2119] = 1964, - [2120] = 2094, - [2121] = 2022, - [2122] = 2094, - [2123] = 2022, - [2124] = 2002, + [2114] = 2086, + [2115] = 2115, + [2116] = 2116, + [2117] = 2033, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2007, + [2122] = 2007, + [2123] = 2033, + [2124] = 2086, [2125] = 2002, - [2126] = 2126, - [2127] = 2127, - [2128] = 1977, - [2129] = 2022, - [2130] = 2130, - [2131] = 2130, - [2132] = 2028, - [2133] = 2002, - [2134] = 1993, - [2135] = 2130, - [2136] = 2130, - [2137] = 1991, - [2138] = 2022, - [2139] = 2130, - [2140] = 2028, - [2141] = 2130, - [2142] = 2130, - [2143] = 2130, - [2144] = 1958, - [2145] = 1958, - [2146] = 2017, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 1965, - [2151] = 2130, - [2152] = 2028, - [2153] = 2032, - [2154] = 2028, - [2155] = 2017, - [2156] = 2022, - [2157] = 2028, - [2158] = 2022, - [2159] = 1958, - [2160] = 2022, - [2161] = 2028, - [2162] = 2022, - [2163] = 2022, - [2164] = 2022, - [2165] = 2028, - [2166] = 1988, - [2167] = 2028, - [2168] = 2042, - [2169] = 2169, + [2126] = 2086, + [2127] = 2033, + [2128] = 2007, + [2129] = 2129, + [2130] = 2129, + [2131] = 1948, + [2132] = 1982, + [2133] = 2033, + [2134] = 2129, + [2135] = 2135, + [2136] = 2136, + [2137] = 2029, + [2138] = 2129, + [2139] = 2033, + [2140] = 2129, + [2141] = 2002, + [2142] = 2129, + [2143] = 1979, + [2144] = 1976, + [2145] = 2145, + [2146] = 2146, + [2147] = 2129, + [2148] = 2029, + [2149] = 2129, + [2150] = 1978, + [2151] = 2129, + [2152] = 1948, + [2153] = 2029, + [2154] = 2033, + [2155] = 2029, + [2156] = 2051, + [2157] = 2046, + [2158] = 2033, + [2159] = 2033, + [2160] = 2033, + [2161] = 2033, + [2162] = 1948, + [2163] = 2033, + [2164] = 2029, + [2165] = 2029, + [2166] = 1966, + [2167] = 2029, + [2168] = 2029, + [2169] = 2002, [2170] = 2170, [2171] = 2171, - [2172] = 2170, - [2173] = 2169, - [2174] = 2170, - [2175] = 2028, - [2176] = 2176, - [2177] = 1999, - [2178] = 2171, - [2179] = 2176, - [2180] = 2176, - [2181] = 2176, - [2182] = 2170, - [2183] = 2176, - [2184] = 2169, - [2185] = 2176, - [2186] = 2171, - [2187] = 2171, - [2188] = 2188, - [2189] = 2171, - [2190] = 2188, - [2191] = 2170, - [2192] = 2188, - [2193] = 2171, - [2194] = 2169, - [2195] = 2170, - [2196] = 2171, - [2197] = 2188, - [2198] = 2188, - [2199] = 2188, - [2200] = 2169, - [2201] = 2169, - [2202] = 2188, + [2172] = 2172, + [2173] = 2010, + [2174] = 2171, + [2175] = 2175, + [2176] = 2170, + [2177] = 2177, + [2178] = 2177, + [2179] = 2170, + [2180] = 1948, + [2181] = 2177, + [2182] = 2172, + [2183] = 2177, + [2184] = 2170, + [2185] = 2171, + [2186] = 2172, + [2187] = 2170, + [2188] = 2177, + [2189] = 1948, + [2190] = 2170, + [2191] = 2177, + [2192] = 2175, + [2193] = 2172, + [2194] = 2177, + [2195] = 2029, + [2196] = 2172, + [2197] = 2171, + [2198] = 2175, + [2199] = 2171, + [2200] = 2177, + [2201] = 2033, + [2202] = 2108, [2203] = 2170, - [2204] = 2176, - [2205] = 2022, - [2206] = 2169, - [2207] = 2188, - [2208] = 2169, - [2209] = 2170, + [2204] = 2171, + [2205] = 2172, + [2206] = 2175, + [2207] = 2175, + [2208] = 2177, + [2209] = 2175, [2210] = 2171, [2211] = 2170, - [2212] = 1958, - [2213] = 1958, - [2214] = 2171, - [2215] = 2188, - [2216] = 2169, + [2212] = 2170, + [2213] = 2170, + [2214] = 2172, + [2215] = 2172, + [2216] = 2177, [2217] = 2171, - [2218] = 2176, - [2219] = 2170, - [2220] = 2176, - [2221] = 1958, - [2222] = 2096, - [2223] = 2223, - [2224] = 2223, - [2225] = 2223, - [2226] = 2223, - [2227] = 2223, - [2228] = 2223, - [2229] = 2223, - [2230] = 2223, - [2231] = 2223, - [2232] = 2223, - [2233] = 2233, - [2234] = 2233, - [2235] = 2233, - [2236] = 2233, - [2237] = 2233, - [2238] = 2233, - [2239] = 2233, - [2240] = 2233, - [2241] = 2233, + [2218] = 2175, + [2219] = 2171, + [2220] = 2175, + [2221] = 2175, + [2222] = 1948, + [2223] = 2172, + [2224] = 2224, + [2225] = 2224, + [2226] = 2224, + [2227] = 2224, + [2228] = 2224, + [2229] = 2224, + [2230] = 2224, + [2231] = 2224, + [2232] = 2224, + [2233] = 2224, + [2234] = 2234, + [2235] = 2234, + [2236] = 2234, + [2237] = 2234, + [2238] = 2234, + [2239] = 2234, + [2240] = 2234, + [2241] = 2234, [2242] = 2242, - [2243] = 2243, - [2244] = 2243, - [2245] = 2243, - [2246] = 2243, - [2247] = 2243, - [2248] = 2248, + [2243] = 2234, + [2244] = 2244, + [2245] = 2244, + [2246] = 2244, + [2247] = 2244, + [2248] = 2244, [2249] = 2249, - [2250] = 2248, - [2251] = 2251, - [2252] = 2249, - [2253] = 2248, - [2254] = 2254, - [2255] = 2248, - [2256] = 2249, - [2257] = 2248, - [2258] = 2249, - [2259] = 2249, - [2260] = 2251, - [2261] = 2248, - [2262] = 2251, + [2250] = 2250, + [2251] = 2250, + [2252] = 2252, + [2253] = 2249, + [2254] = 2250, + [2255] = 2249, + [2256] = 2256, + [2257] = 2250, + [2258] = 2256, + [2259] = 2256, + [2260] = 2250, + [2261] = 2250, + [2262] = 2249, [2263] = 2249, - [2264] = 2248, - [2265] = 2248, - [2266] = 2248, - [2267] = 2249, + [2264] = 2256, + [2265] = 2250, + [2266] = 2249, + [2267] = 2250, [2268] = 2249, - [2269] = 2249, - [2270] = 2251, - [2271] = 2248, - [2272] = 2248, - [2273] = 2249, - [2274] = 2248, - [2275] = 2251, - [2276] = 2248, + [2269] = 2250, + [2270] = 2250, + [2271] = 2250, + [2272] = 2249, + [2273] = 2256, + [2274] = 2256, + [2275] = 2249, + [2276] = 2250, [2277] = 2249, - [2278] = 2249, - [2279] = 2248, + [2278] = 2250, + [2279] = 2256, [2280] = 2249, [2281] = 2249, - [2282] = 2248, - [2283] = 2251, - [2284] = 2251, + [2282] = 2250, + [2283] = 2249, + [2284] = 2249, [2285] = 2249, [2286] = 2249, - [2287] = 2248, - [2288] = 323, + [2287] = 2250, + [2288] = 2250, [2289] = 2289, - [2290] = 2290, - [2291] = 327, - [2292] = 2292, + [2290] = 306, + [2291] = 2291, + [2292] = 337, [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, [2297] = 2297, - [2298] = 2030, + [2298] = 2298, [2299] = 2299, - [2300] = 294, - [2301] = 296, + [2300] = 2300, + [2301] = 2076, [2302] = 2302, [2303] = 2303, - [2304] = 299, - [2305] = 2305, - [2306] = 2064, - [2307] = 323, - [2308] = 301, - [2309] = 2309, - [2310] = 2038, - [2311] = 327, - [2312] = 2312, + [2304] = 2304, + [2305] = 337, + [2306] = 306, + [2307] = 299, + [2308] = 2064, + [2309] = 302, + [2310] = 2310, + [2311] = 2077, + [2312] = 295, [2313] = 2313, - [2314] = 2314, - [2315] = 294, + [2314] = 296, + [2315] = 2315, [2316] = 2316, [2317] = 2317, [2318] = 2318, @@ -6802,127 +6802,127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2328] = 2328, [2329] = 2329, [2330] = 2330, - [2331] = 1066, - [2332] = 1067, + [2331] = 2331, + [2332] = 2332, [2333] = 2333, - [2334] = 304, + [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 1069, + [2337] = 2337, [2338] = 2338, [2339] = 2339, [2340] = 2340, - [2341] = 2341, + [2341] = 309, [2342] = 2342, [2343] = 2343, - [2344] = 2126, + [2344] = 2344, [2345] = 2345, [2346] = 2346, [2347] = 2347, [2348] = 2348, - [2349] = 2110, - [2350] = 2109, - [2351] = 2108, - [2352] = 2104, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, [2353] = 2353, - [2354] = 2107, - [2355] = 2106, + [2354] = 2095, + [2355] = 314, [2356] = 2356, [2357] = 2357, - [2358] = 2103, + [2358] = 2358, [2359] = 2359, - [2360] = 2360, + [2360] = 1154, [2361] = 2361, - [2362] = 1062, - [2363] = 2363, - [2364] = 2364, + [2362] = 2362, + [2363] = 2361, + [2364] = 2361, [2365] = 2365, - [2366] = 2366, - [2367] = 2336, + [2366] = 2361, + [2367] = 2367, [2368] = 2368, [2369] = 2369, - [2370] = 2336, + [2370] = 2370, [2371] = 2371, [2372] = 2372, [2373] = 2373, - [2374] = 2374, - [2375] = 2336, + [2374] = 1041, + [2375] = 2375, [2376] = 2376, - [2377] = 2377, - [2378] = 2328, - [2379] = 2089, - [2380] = 2088, - [2381] = 2381, + [2377] = 1131, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2361, [2382] = 2382, [2383] = 2383, - [2384] = 2384, + [2384] = 2097, [2385] = 2385, - [2386] = 2087, + [2386] = 2386, [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 2390, - [2391] = 2391, + [2390] = 1038, + [2391] = 2338, [2392] = 2392, [2393] = 2393, - [2394] = 2394, + [2394] = 2116, [2395] = 2395, - [2396] = 2396, - [2397] = 2397, + [2396] = 2098, + [2397] = 2115, [2398] = 2398, [2399] = 2399, - [2400] = 2336, - [2401] = 2401, - [2402] = 2402, + [2400] = 2361, + [2401] = 2361, + [2402] = 2118, [2403] = 2403, [2404] = 2404, [2405] = 2405, [2406] = 2406, - [2407] = 2407, + [2407] = 303, [2408] = 2408, [2409] = 2409, - [2410] = 2410, - [2411] = 2411, + [2410] = 302, + [2411] = 2119, [2412] = 2412, [2413] = 2413, - [2414] = 2414, - [2415] = 2415, + [2414] = 2120, + [2415] = 295, [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, + [2417] = 2338, + [2418] = 2338, + [2419] = 296, [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 2336, - [2424] = 2424, - [2425] = 2336, - [2426] = 2426, + [2421] = 2361, + [2422] = 2113, + [2423] = 2423, + [2424] = 2361, + [2425] = 2425, + [2426] = 2109, [2427] = 2427, - [2428] = 2428, + [2428] = 1029, [2429] = 2429, [2430] = 2430, - [2431] = 2328, - [2432] = 2432, - [2433] = 316, - [2434] = 296, - [2435] = 299, - [2436] = 2328, - [2437] = 2328, - [2438] = 2336, + [2431] = 2431, + [2432] = 2111, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 2438, [2439] = 2439, [2440] = 2440, [2441] = 2441, - [2442] = 2336, - [2443] = 305, - [2444] = 307, - [2445] = 1051, - [2446] = 2446, - [2447] = 2447, + [2442] = 2442, + [2443] = 322, + [2444] = 2444, + [2445] = 2445, + [2446] = 2338, + [2447] = 2298, [2448] = 2448, - [2449] = 312, + [2449] = 2449, [2450] = 2450, - [2451] = 2447, + [2451] = 2451, [2452] = 2452, [2453] = 2453, [2454] = 2454, @@ -6932,918 +6932,918 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 2458, - [2462] = 2459, - [2463] = 2463, - [2464] = 309, + [2461] = 2461, + [2462] = 2462, + [2463] = 308, + [2464] = 2464, [2465] = 2465, - [2466] = 2450, + [2466] = 2466, [2467] = 2467, [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, + [2470] = 2450, + [2471] = 2452, + [2472] = 2453, [2473] = 2473, - [2474] = 2474, - [2475] = 2463, - [2476] = 2468, + [2474] = 2455, + [2475] = 2464, + [2476] = 2476, [2477] = 2477, [2478] = 2478, - [2479] = 2469, - [2480] = 2472, - [2481] = 2478, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, [2482] = 2482, - [2483] = 2483, + [2483] = 2476, [2484] = 2484, [2485] = 2485, - [2486] = 2486, - [2487] = 2487, + [2486] = 2477, + [2487] = 2451, [2488] = 2488, - [2489] = 2483, - [2490] = 2488, - [2491] = 2465, - [2492] = 2492, - [2493] = 2487, - [2494] = 2492, + [2489] = 2478, + [2490] = 2479, + [2491] = 2480, + [2492] = 2481, + [2493] = 2482, + [2494] = 2485, [2495] = 2495, - [2496] = 2496, - [2497] = 2497, + [2496] = 2469, + [2497] = 2495, [2498] = 2498, [2499] = 2499, [2500] = 2500, - [2501] = 2501, + [2501] = 2498, [2502] = 2502, - [2503] = 2503, + [2503] = 2448, [2504] = 2504, - [2505] = 2453, - [2506] = 2506, - [2507] = 2292, - [2508] = 2508, - [2509] = 2509, - [2510] = 2467, - [2511] = 2511, + [2505] = 2484, + [2506] = 2461, + [2507] = 2451, + [2508] = 2469, + [2509] = 2500, + [2510] = 2485, + [2511] = 2448, [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, + [2513] = 2498, + [2514] = 2495, + [2515] = 2469, [2516] = 2516, - [2517] = 307, - [2518] = 305, - [2519] = 331, - [2520] = 2496, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 2520, [2521] = 2521, - [2522] = 2502, - [2523] = 2503, - [2524] = 2524, - [2525] = 2504, - [2526] = 2448, - [2527] = 2506, - [2528] = 2528, - [2529] = 2521, - [2530] = 2530, + [2522] = 2455, + [2523] = 2523, + [2524] = 2295, + [2525] = 2525, + [2526] = 2484, + [2527] = 316, + [2528] = 311, + [2529] = 2461, + [2530] = 2293, [2531] = 2531, - [2532] = 2516, - [2533] = 2506, - [2534] = 2504, - [2535] = 2535, + [2532] = 2476, + [2533] = 2451, + [2534] = 2534, + [2535] = 2481, [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2516, + [2537] = 2482, + [2538] = 2462, + [2539] = 2539, [2540] = 2540, [2541] = 2541, - [2542] = 2542, + [2542] = 2536, [2543] = 2543, - [2544] = 334, - [2545] = 2545, - [2546] = 2515, - [2547] = 2503, - [2548] = 2502, + [2544] = 2504, + [2545] = 2488, + [2546] = 2488, + [2547] = 2500, + [2548] = 2548, [2549] = 2549, [2550] = 2550, - [2551] = 2496, - [2552] = 2492, - [2553] = 2487, - [2554] = 2488, - [2555] = 2483, + [2551] = 2454, + [2552] = 2552, + [2553] = 2504, + [2554] = 309, + [2555] = 2555, [2556] = 2556, - [2557] = 2478, - [2558] = 2472, - [2559] = 2469, - [2560] = 2535, - [2561] = 2457, - [2562] = 2562, - [2563] = 2563, - [2564] = 2564, + [2557] = 2557, + [2558] = 2478, + [2559] = 2480, + [2560] = 2560, + [2561] = 2543, + [2562] = 303, + [2563] = 322, + [2564] = 308, [2565] = 2565, - [2566] = 2448, - [2567] = 2452, + [2566] = 2566, + [2567] = 2567, [2568] = 2568, [2569] = 2569, - [2570] = 2515, - [2571] = 2516, - [2572] = 2515, - [2573] = 2514, + [2570] = 2500, + [2571] = 2448, + [2572] = 2572, + [2573] = 2573, [2574] = 2574, [2575] = 2575, - [2576] = 2293, - [2577] = 2468, - [2578] = 331, - [2579] = 2297, - [2580] = 2296, - [2581] = 316, - [2582] = 2453, - [2583] = 2448, - [2584] = 2452, - [2585] = 2295, - [2586] = 2467, - [2587] = 304, - [2588] = 2588, - [2589] = 2589, - [2590] = 2536, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, + [2579] = 2294, + [2580] = 2580, + [2581] = 314, + [2582] = 2297, + [2583] = 2456, + [2584] = 2454, + [2585] = 2449, + [2586] = 2543, + [2587] = 2587, + [2588] = 316, + [2589] = 2536, + [2590] = 2462, [2591] = 2591, - [2592] = 2537, - [2593] = 321, - [2594] = 2463, - [2595] = 2467, - [2596] = 2538, + [2592] = 333, + [2593] = 2540, + [2594] = 334, + [2595] = 2580, + [2596] = 2456, [2597] = 2597, - [2598] = 2540, - [2599] = 2459, - [2600] = 2448, - [2601] = 2601, - [2602] = 2458, - [2603] = 309, - [2604] = 2604, - [2605] = 2515, + [2598] = 2464, + [2599] = 2541, + [2600] = 2455, + [2601] = 2453, + [2602] = 2452, + [2603] = 2575, + [2604] = 2469, + [2605] = 2451, [2606] = 2606, - [2607] = 2516, + [2607] = 2575, [2608] = 2608, - [2609] = 2453, - [2610] = 2467, - [2611] = 335, - [2612] = 2457, - [2613] = 2453, - [2614] = 2456, - [2615] = 2455, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, + [2614] = 2450, + [2615] = 2615, [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2454, - [2620] = 2474, - [2621] = 2521, - [2622] = 2456, - [2623] = 2455, - [2624] = 2540, - [2625] = 2625, - [2626] = 335, - [2627] = 334, - [2628] = 2514, - [2629] = 2448, + [2619] = 2619, + [2620] = 2620, + [2621] = 2618, + [2622] = 2572, + [2623] = 2623, + [2624] = 2449, + [2625] = 2477, + [2626] = 2597, + [2627] = 336, + [2628] = 2455, + [2629] = 2629, [2630] = 2630, - [2631] = 2530, - [2632] = 2535, - [2633] = 2633, - [2634] = 312, + [2631] = 2631, + [2632] = 333, + [2633] = 2448, + [2634] = 2500, [2635] = 2635, - [2636] = 2636, - [2637] = 2536, - [2638] = 2638, - [2639] = 2537, - [2640] = 2530, - [2641] = 321, + [2636] = 336, + [2637] = 334, + [2638] = 2479, + [2639] = 2455, + [2640] = 2550, + [2641] = 2499, [2642] = 2642, - [2643] = 2474, - [2644] = 2644, - [2645] = 2645, + [2643] = 2597, + [2644] = 2580, + [2645] = 2540, [2646] = 2646, - [2647] = 2538, - [2648] = 2648, - [2649] = 2649, - [2650] = 2454, - [2651] = 2314, - [2652] = 2504, - [2653] = 2503, - [2654] = 2502, - [2655] = 2506, - [2656] = 2313, - [2657] = 2496, - [2658] = 2492, - [2659] = 2659, - [2660] = 2487, - [2661] = 2488, - [2662] = 2662, - [2663] = 2663, - [2664] = 2483, - [2665] = 2447, - [2666] = 2478, - [2667] = 2667, - [2668] = 2472, - [2669] = 2667, - [2670] = 2469, - [2671] = 2468, - [2672] = 2659, - [2673] = 2474, - [2674] = 2030, - [2675] = 2667, + [2647] = 2647, + [2648] = 2541, + [2649] = 2499, + [2650] = 2650, + [2651] = 311, + [2652] = 2077, + [2653] = 2461, + [2654] = 2464, + [2655] = 2476, + [2656] = 2477, + [2657] = 2478, + [2658] = 2479, + [2659] = 2480, + [2660] = 2481, + [2661] = 2482, + [2662] = 2485, + [2663] = 2495, + [2664] = 2664, + [2665] = 2498, + [2666] = 2484, + [2667] = 2329, + [2668] = 2473, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2304, + [2674] = 2300, + [2675] = 2543, [2676] = 2676, - [2677] = 2677, - [2678] = 2463, - [2679] = 2459, - [2680] = 2680, - [2681] = 2458, - [2682] = 2682, - [2683] = 2683, - [2684] = 2684, - [2685] = 2682, - [2686] = 2667, - [2687] = 2687, - [2688] = 2521, - [2689] = 2535, - [2690] = 2536, - [2691] = 2537, + [2677] = 2453, + [2678] = 2452, + [2679] = 2679, + [2680] = 2456, + [2681] = 2450, + [2682] = 2454, + [2683] = 2449, + [2684] = 2536, + [2685] = 2685, + [2686] = 2676, + [2687] = 2462, + [2688] = 2334, + [2689] = 2669, + [2690] = 2504, + [2691] = 2676, [2692] = 2692, - [2693] = 2465, - [2694] = 2038, - [2695] = 2692, - [2696] = 2514, - [2697] = 2697, - [2698] = 2538, - [2699] = 2540, + [2693] = 2693, + [2694] = 2303, + [2695] = 2534, + [2696] = 2696, + [2697] = 2679, + [2698] = 2488, + [2699] = 2699, [2700] = 2700, - [2701] = 2441, - [2702] = 2450, - [2703] = 2703, - [2704] = 2309, - [2705] = 2305, - [2706] = 2692, - [2707] = 2682, + [2701] = 2693, + [2702] = 2702, + [2703] = 2499, + [2704] = 2671, + [2705] = 2679, + [2706] = 2706, + [2707] = 2310, [2708] = 2708, - [2709] = 2709, - [2710] = 2440, - [2711] = 2302, - [2712] = 2452, - [2713] = 2713, - [2714] = 2714, - [2715] = 2715, - [2716] = 2530, - [2717] = 2540, - [2718] = 2538, - [2719] = 2477, - [2720] = 2720, - [2721] = 2721, - [2722] = 2537, - [2723] = 2536, - [2724] = 2312, - [2725] = 2535, - [2726] = 2713, - [2727] = 2713, - [2728] = 2692, - [2729] = 2729, - [2730] = 2457, - [2731] = 2506, - [2732] = 2504, - [2733] = 2720, - [2734] = 2452, - [2735] = 2474, - [2736] = 2503, - [2737] = 2502, - [2738] = 2692, - [2739] = 2714, - [2740] = 2521, - [2741] = 2531, - [2742] = 2514, - [2743] = 2530, - [2744] = 2496, - [2745] = 2492, - [2746] = 2299, - [2747] = 2303, - [2748] = 2487, - [2749] = 2488, - [2750] = 2682, - [2751] = 2454, - [2752] = 2483, - [2753] = 2478, - [2754] = 2754, - [2755] = 2692, - [2756] = 2472, - [2757] = 2469, - [2758] = 2455, - [2759] = 2468, - [2760] = 2456, - [2761] = 2667, - [2762] = 2463, - [2763] = 2459, - [2764] = 2458, - [2765] = 2457, - [2766] = 2766, - [2767] = 2692, - [2768] = 2441, - [2769] = 2713, - [2770] = 2770, - [2771] = 2456, - [2772] = 2455, - [2773] = 2440, - [2774] = 2454, - [2775] = 2064, - [2776] = 2682, - [2777] = 2777, - [2778] = 2713, - [2779] = 2779, - [2780] = 2441, - [2781] = 301, - [2782] = 2335, + [2709] = 2618, + [2710] = 2710, + [2711] = 2711, + [2712] = 2679, + [2713] = 2315, + [2714] = 2302, + [2715] = 2540, + [2716] = 2572, + [2717] = 2676, + [2718] = 2575, + [2719] = 2676, + [2720] = 2669, + [2721] = 2670, + [2722] = 2671, + [2723] = 2550, + [2724] = 2076, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2299, + [2729] = 2669, + [2730] = 2730, + [2731] = 2679, + [2732] = 2732, + [2733] = 2733, + [2734] = 2499, + [2735] = 2064, + [2736] = 2671, + [2737] = 2541, + [2738] = 2671, + [2739] = 2597, + [2740] = 2580, + [2741] = 2485, + [2742] = 2313, + [2743] = 2679, + [2744] = 2744, + [2745] = 2462, + [2746] = 2536, + [2747] = 2541, + [2748] = 2543, + [2749] = 2449, + [2750] = 2454, + [2751] = 2456, + [2752] = 2504, + [2753] = 2597, + [2754] = 2669, + [2755] = 2672, + [2756] = 2461, + [2757] = 2488, + [2758] = 2575, + [2759] = 2484, + [2760] = 2580, + [2761] = 2498, + [2762] = 2540, + [2763] = 2495, + [2764] = 2450, + [2765] = 2452, + [2766] = 2334, + [2767] = 2329, + [2768] = 2679, + [2769] = 2453, + [2770] = 2464, + [2771] = 2476, + [2772] = 2477, + [2773] = 2773, + [2774] = 2478, + [2775] = 2775, + [2776] = 2479, + [2777] = 2480, + [2778] = 2481, + [2779] = 2482, + [2780] = 2479, + [2781] = 2425, + [2782] = 2370, [2783] = 2783, - [2784] = 2784, - [2785] = 2420, - [2786] = 2454, + [2784] = 2120, + [2785] = 2119, + [2786] = 2118, [2787] = 2787, [2788] = 2788, - [2789] = 2416, - [2790] = 2441, - [2791] = 2440, - [2792] = 2415, - [2793] = 2784, - [2794] = 2414, - [2795] = 2450, - [2796] = 2413, - [2797] = 2407, - [2798] = 2405, - [2799] = 2788, - [2800] = 2441, - [2801] = 2404, - [2802] = 2403, - [2803] = 2401, - [2804] = 2399, - [2805] = 2398, - [2806] = 2784, - [2807] = 2455, - [2808] = 2521, - [2809] = 2456, - [2810] = 2810, - [2811] = 2811, - [2812] = 2457, - [2813] = 2440, - [2814] = 1051, - [2815] = 2395, - [2816] = 2393, - [2817] = 2392, - [2818] = 2391, - [2819] = 2390, - [2820] = 2388, - [2821] = 2385, - [2822] = 2384, - [2823] = 2383, - [2824] = 2824, - [2825] = 2530, - [2826] = 2382, - [2827] = 2381, - [2828] = 2377, - [2829] = 2376, - [2830] = 2087, - [2831] = 2088, - [2832] = 2089, - [2833] = 2784, - [2834] = 2783, - [2835] = 2422, - [2836] = 2836, - [2837] = 2837, - [2838] = 2458, - [2839] = 2839, - [2840] = 2459, - [2841] = 2426, - [2842] = 2427, - [2843] = 2428, - [2844] = 2417, - [2845] = 2412, - [2846] = 2463, - [2847] = 2514, - [2848] = 2468, - [2849] = 2849, - [2850] = 2429, - [2851] = 2486, - [2852] = 2469, - [2853] = 2853, - [2854] = 2697, - [2855] = 2784, - [2856] = 2472, - [2857] = 2411, - [2858] = 2410, - [2859] = 2409, - [2860] = 2408, - [2861] = 2406, - [2862] = 2402, - [2863] = 2397, - [2864] = 2396, - [2865] = 2394, - [2866] = 2321, - [2867] = 2430, - [2868] = 2868, - [2869] = 2432, - [2870] = 2387, - [2871] = 2478, - [2872] = 2872, - [2873] = 2483, - [2874] = 2488, - [2875] = 2357, - [2876] = 2356, - [2877] = 2353, - [2878] = 2347, - [2879] = 2346, - [2880] = 2441, - [2881] = 2440, - [2882] = 2439, - [2883] = 2345, - [2884] = 2389, - [2885] = 2465, - [2886] = 2343, - [2887] = 2342, - [2888] = 2341, - [2889] = 2329, - [2890] = 2474, - [2891] = 2327, - [2892] = 2784, - [2893] = 2326, - [2894] = 2323, - [2895] = 2320, - [2896] = 2477, - [2897] = 2319, - [2898] = 2318, - [2899] = 2317, - [2900] = 301, + [2789] = 2789, + [2790] = 2550, + [2791] = 2791, + [2792] = 2635, + [2793] = 2473, + [2794] = 2794, + [2795] = 1131, + [2796] = 2783, + [2797] = 2619, + [2798] = 2798, + [2799] = 2799, + [2800] = 2468, + [2801] = 2801, + [2802] = 2802, + [2803] = 1029, + [2804] = 2791, + [2805] = 2805, + [2806] = 2806, + [2807] = 2791, + [2808] = 2116, + [2809] = 2789, + [2810] = 2488, + [2811] = 2115, + [2812] = 2113, + [2813] = 2111, + [2814] = 2109, + [2815] = 2815, + [2816] = 2789, + [2817] = 2572, + [2818] = 1038, + [2819] = 2098, + [2820] = 2097, + [2821] = 2095, + [2822] = 299, + [2823] = 2618, + [2824] = 2791, + [2825] = 2329, + [2826] = 2575, + [2827] = 1041, + [2828] = 1154, + [2829] = 2334, + [2830] = 2830, + [2831] = 2831, + [2832] = 2323, + [2833] = 2783, + [2834] = 2409, + [2835] = 2597, + [2836] = 2320, + [2837] = 2333, + [2838] = 2332, + [2839] = 2331, + [2840] = 2319, + [2841] = 2841, + [2842] = 2378, + [2843] = 2330, + [2844] = 2504, + [2845] = 2327, + [2846] = 2403, + [2847] = 2405, + [2848] = 2318, + [2849] = 2392, + [2850] = 2399, + [2851] = 2379, + [2852] = 2445, + [2853] = 2468, + [2854] = 2854, + [2855] = 2855, + [2856] = 2699, + [2857] = 2356, + [2858] = 2357, + [2859] = 2412, + [2860] = 2429, + [2861] = 2430, + [2862] = 2434, + [2863] = 2435, + [2864] = 2436, + [2865] = 2437, + [2866] = 2438, + [2867] = 2439, + [2868] = 2442, + [2869] = 2359, + [2870] = 2367, + [2871] = 2371, + [2872] = 2398, + [2873] = 2789, + [2874] = 2874, + [2875] = 2543, + [2876] = 2876, + [2877] = 2580, + [2878] = 2783, + [2879] = 2799, + [2880] = 2383, + [2881] = 2382, + [2882] = 2540, + [2883] = 2791, + [2884] = 2541, + [2885] = 2420, + [2886] = 2406, + [2887] = 299, + [2888] = 2321, + [2889] = 2322, + [2890] = 2325, + [2891] = 2335, + [2892] = 2336, + [2893] = 2385, + [2894] = 2340, + [2895] = 2365, + [2896] = 2373, + [2897] = 2376, + [2898] = 2534, + [2899] = 2386, + [2900] = 2387, [2901] = 2901, - [2902] = 2316, - [2903] = 2330, - [2904] = 2333, - [2905] = 2487, - [2906] = 2492, - [2907] = 2496, - [2908] = 2502, - [2909] = 2503, - [2910] = 2788, - [2911] = 2531, - [2912] = 2849, - [2913] = 2504, - [2914] = 2506, - [2915] = 2915, - [2916] = 2418, - [2917] = 2424, - [2918] = 2322, - [2919] = 2348, - [2920] = 2788, - [2921] = 2872, - [2922] = 2642, - [2923] = 2923, - [2924] = 2924, - [2925] = 2421, - [2926] = 2535, - [2927] = 2784, - [2928] = 2536, - [2929] = 2537, - [2930] = 2538, - [2931] = 2419, - [2932] = 2540, - [2933] = 1062, - [2934] = 2452, - [2935] = 2788, - [2936] = 2783, - [2937] = 2324, - [2938] = 2447, - [2939] = 2788, - [2940] = 2103, - [2941] = 2106, - [2942] = 2107, - [2943] = 2338, - [2944] = 2339, - [2945] = 2783, - [2946] = 2340, - [2947] = 2108, - [2948] = 2948, - [2949] = 2126, - [2950] = 2486, - [2951] = 2642, - [2952] = 2872, - [2953] = 2359, - [2954] = 2954, - [2955] = 2955, - [2956] = 2360, - [2957] = 2361, - [2958] = 2531, - [2959] = 2783, - [2960] = 1066, - [2961] = 2110, - [2962] = 2363, - [2963] = 2364, - [2964] = 2109, - [2965] = 1069, - [2966] = 2104, - [2967] = 2575, - [2968] = 2366, - [2969] = 2783, - [2970] = 1067, - [2971] = 2971, - [2972] = 2853, - [2973] = 2697, - [2974] = 2365, - [2975] = 2325, - [2976] = 2439, - [2977] = 2374, - [2978] = 2389, - [2979] = 2373, - [2980] = 2372, - [2981] = 2868, - [2982] = 2371, - [2983] = 2369, - [2984] = 2754, - [2985] = 2368, - [2986] = 2575, - [2987] = 2440, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2569, + [2902] = 2791, + [2903] = 2350, + [2904] = 2450, + [2905] = 2452, + [2906] = 2453, + [2907] = 2907, + [2908] = 2789, + [2909] = 2909, + [2910] = 2464, + [2911] = 2855, + [2912] = 2326, + [2913] = 2476, + [2914] = 2477, + [2915] = 2478, + [2916] = 2329, + [2917] = 2358, + [2918] = 2388, + [2919] = 2352, + [2920] = 2404, + [2921] = 2699, + [2922] = 2334, + [2923] = 2351, + [2924] = 2372, + [2925] = 2423, + [2926] = 2413, + [2927] = 2317, + [2928] = 2928, + [2929] = 2324, + [2930] = 2368, + [2931] = 2369, + [2932] = 2395, + [2933] = 2441, + [2934] = 2499, + [2935] = 2375, + [2936] = 2787, + [2937] = 2316, + [2938] = 2362, + [2939] = 2348, + [2940] = 2346, + [2941] = 2342, + [2942] = 2339, + [2943] = 2480, + [2944] = 2481, + [2945] = 2482, + [2946] = 2423, + [2947] = 2485, + [2948] = 2329, + [2949] = 2949, + [2950] = 2791, + [2951] = 2951, + [2952] = 2901, + [2953] = 2495, + [2954] = 2732, + [2955] = 2498, + [2956] = 2484, + [2957] = 2461, + [2958] = 2783, + [2959] = 2329, + [2960] = 2473, + [2961] = 2334, + [2962] = 2962, + [2963] = 2456, + [2964] = 2454, + [2965] = 2449, + [2966] = 2440, + [2967] = 2789, + [2968] = 2536, + [2969] = 2462, + [2970] = 2408, + [2971] = 2433, + [2972] = 2444, + [2973] = 2334, + [2974] = 2431, + [2975] = 2416, + [2976] = 2393, + [2977] = 2353, + [2978] = 2427, + [2979] = 2326, + [2980] = 2619, + [2981] = 2783, + [2982] = 2349, + [2983] = 2347, + [2984] = 2345, + [2985] = 2344, + [2986] = 2343, + [2987] = 2337, + [2988] = 2380, + [2989] = 2389, + [2990] = 2328, + [2991] = 2799, + [2992] = 2635, [2993] = 2993, - [2994] = 322, - [2995] = 2556, - [2996] = 2996, - [2997] = 2997, - [2998] = 2452, - [2999] = 311, - [3000] = 314, - [3001] = 3001, - [3002] = 2322, + [2994] = 2994, + [2995] = 2635, + [2996] = 2464, + [2997] = 2476, + [2998] = 331, + [2999] = 2477, + [3000] = 330, + [3001] = 2478, + [3002] = 2479, [3003] = 3003, - [3004] = 2617, - [3005] = 3005, - [3006] = 2618, - [3007] = 2441, - [3008] = 3001, - [3009] = 3001, - [3010] = 315, - [3011] = 2715, - [3012] = 2575, - [3013] = 3013, - [3014] = 2440, - [3015] = 3015, - [3016] = 2540, - [3017] = 3017, - [3018] = 2538, - [3019] = 3001, - [3020] = 3020, - [3021] = 2530, - [3022] = 3022, - [3023] = 320, - [3024] = 2541, - [3025] = 2542, - [3026] = 3026, - [3027] = 2543, + [3004] = 2480, + [3005] = 2481, + [3006] = 2482, + [3007] = 2485, + [3008] = 2646, + [3009] = 2799, + [3010] = 2385, + [3011] = 318, + [3012] = 2495, + [3013] = 328, + [3014] = 2498, + [3015] = 2484, + [3016] = 2461, + [3017] = 2610, + [3018] = 3018, + [3019] = 2611, + [3020] = 2612, + [3021] = 2650, + [3022] = 2543, + [3023] = 2799, + [3024] = 2504, + [3025] = 3025, + [3026] = 2488, + [3027] = 3027, [3028] = 3028, - [3029] = 2545, - [3030] = 310, - [3031] = 3031, - [3032] = 2589, - [3033] = 3033, - [3034] = 2608, - [3035] = 3001, - [3036] = 3036, - [3037] = 3037, - [3038] = 2606, - [3039] = 3039, - [3040] = 2446, - [3041] = 3041, - [3042] = 2474, - [3043] = 2604, - [3044] = 2521, - [3045] = 2514, - [3046] = 2441, - [3047] = 2447, - [3048] = 2440, - [3049] = 2565, - [3050] = 2530, - [3051] = 2563, - [3052] = 2537, - [3053] = 328, - [3054] = 2536, - [3055] = 329, - [3056] = 2564, - [3057] = 2601, - [3058] = 2535, - [3059] = 3031, - [3060] = 319, - [3061] = 3061, - [3062] = 3062, - [3063] = 2597, - [3064] = 3064, - [3065] = 3065, - [3066] = 2568, - [3067] = 3067, - [3068] = 2549, - [3069] = 3026, - [3070] = 2540, - [3071] = 319, - [3072] = 332, - [3073] = 3073, - [3074] = 3074, - [3075] = 2715, - [3076] = 2512, - [3077] = 2457, - [3078] = 2509, - [3079] = 336, - [3080] = 3080, + [3029] = 2536, + [3030] = 3030, + [3031] = 2597, + [3032] = 2580, + [3033] = 2540, + [3034] = 2541, + [3035] = 2450, + [3036] = 2452, + [3037] = 2453, + [3038] = 2464, + [3039] = 3025, + [3040] = 2541, + [3041] = 3028, + [3042] = 2453, + [3043] = 2452, + [3044] = 2450, + [3045] = 2476, + [3046] = 2477, + [3047] = 2478, + [3048] = 2479, + [3049] = 2480, + [3050] = 2481, + [3051] = 2468, + [3052] = 3052, + [3053] = 2482, + [3054] = 2485, + [3055] = 3055, + [3056] = 2495, + [3057] = 2498, + [3058] = 2484, + [3059] = 2461, + [3060] = 3025, + [3061] = 2456, + [3062] = 3028, + [3063] = 320, + [3064] = 2454, + [3065] = 2449, + [3066] = 2799, + [3067] = 2574, + [3068] = 3068, + [3069] = 2462, + [3070] = 3003, + [3071] = 2647, + [3072] = 2499, + [3073] = 2456, + [3074] = 2454, + [3075] = 2449, + [3076] = 3076, + [3077] = 3077, + [3078] = 2536, + [3079] = 2462, + [3080] = 2993, [3081] = 3081, - [3082] = 3082, - [3083] = 3022, - [3084] = 2591, - [3085] = 2528, - [3086] = 2839, - [3087] = 2649, - [3088] = 2574, - [3089] = 2648, - [3090] = 2646, - [3091] = 2508, - [3092] = 2506, + [3082] = 2685, + [3083] = 3081, + [3084] = 2619, + [3085] = 2519, + [3086] = 2696, + [3087] = 2468, + [3088] = 2468, + [3089] = 3089, + [3090] = 3090, + [3091] = 3091, + [3092] = 2517, [3093] = 3093, - [3094] = 3094, - [3095] = 2504, - [3096] = 2503, - [3097] = 310, - [3098] = 320, - [3099] = 2535, - [3100] = 2502, - [3101] = 2683, - [3102] = 2872, - [3103] = 2588, - [3104] = 303, - [3105] = 322, - [3106] = 2514, - [3107] = 2872, - [3108] = 2638, - [3109] = 3109, - [3110] = 2562, - [3111] = 3111, - [3112] = 2550, - [3113] = 3113, - [3114] = 2524, - [3115] = 2625, - [3116] = 2521, - [3117] = 2474, - [3118] = 3067, - [3119] = 2495, - [3120] = 3120, - [3121] = 3064, - [3122] = 2540, - [3123] = 2538, - [3124] = 3124, - [3125] = 2537, - [3126] = 2575, - [3127] = 2496, - [3128] = 3001, - [3129] = 3129, - [3130] = 2492, - [3131] = 2616, - [3132] = 3132, - [3133] = 3061, - [3134] = 2536, - [3135] = 3031, - [3136] = 3001, - [3137] = 303, - [3138] = 315, - [3139] = 2502, - [3140] = 3067, - [3141] = 3141, - [3142] = 3129, - [3143] = 3143, - [3144] = 3144, - [3145] = 2487, - [3146] = 3064, - [3147] = 2642, - [3148] = 3061, + [3094] = 2329, + [3095] = 3095, + [3096] = 3095, + [3097] = 3003, + [3098] = 2699, + [3099] = 2841, + [3100] = 2473, + [3101] = 319, + [3102] = 3102, + [3103] = 2334, + [3104] = 3104, + [3105] = 2618, + [3106] = 3106, + [3107] = 318, + [3108] = 317, + [3109] = 2539, + [3110] = 2499, + [3111] = 2548, + [3112] = 331, + [3113] = 3003, + [3114] = 330, + [3115] = 2572, + [3116] = 3116, + [3117] = 2575, + [3118] = 2329, + [3119] = 2334, + [3120] = 2580, + [3121] = 328, + [3122] = 2597, + [3123] = 2568, + [3124] = 319, + [3125] = 2566, + [3126] = 3126, + [3127] = 335, + [3128] = 2550, + [3129] = 2540, + [3130] = 3130, + [3131] = 3131, + [3132] = 2385, + [3133] = 2326, + [3134] = 3003, + [3135] = 2619, + [3136] = 3025, + [3137] = 3137, + [3138] = 2482, + [3139] = 3139, + [3140] = 2531, + [3141] = 3028, + [3142] = 3095, + [3143] = 2619, + [3144] = 3003, + [3145] = 2629, + [3146] = 2993, + [3147] = 3147, + [3148] = 3148, [3149] = 3149, - [3150] = 3001, - [3151] = 328, - [3152] = 2538, - [3153] = 329, - [3154] = 2486, - [3155] = 2483, - [3156] = 3156, - [3157] = 2506, - [3158] = 3020, - [3159] = 3159, - [3160] = 2478, - [3161] = 3161, - [3162] = 2472, - [3163] = 2469, - [3164] = 2630, - [3165] = 3165, - [3166] = 2468, - [3167] = 3001, - [3168] = 2633, - [3169] = 2463, - [3170] = 2454, - [3171] = 2504, - [3172] = 2455, - [3173] = 2456, - [3174] = 2465, - [3175] = 2459, - [3176] = 2450, - [3177] = 2458, - [3178] = 3067, - [3179] = 2470, - [3180] = 2471, - [3181] = 2575, - [3182] = 332, - [3183] = 314, - [3184] = 2697, - [3185] = 3064, - [3186] = 2452, - [3187] = 311, + [3150] = 3150, + [3151] = 3027, + [3152] = 2615, + [3153] = 3003, + [3154] = 305, + [3155] = 3155, + [3156] = 304, + [3157] = 2841, + [3158] = 2525, + [3159] = 3030, + [3160] = 3160, + [3161] = 3095, + [3162] = 2993, + [3163] = 2631, + [3164] = 2617, + [3165] = 3095, + [3166] = 2523, + [3167] = 3167, + [3168] = 3168, + [3169] = 2606, + [3170] = 2613, + [3171] = 2616, + [3172] = 3172, + [3173] = 2630, + [3174] = 2993, + [3175] = 2385, + [3176] = 2556, + [3177] = 3003, + [3178] = 2575, + [3179] = 2521, + [3180] = 2520, + [3181] = 3181, + [3182] = 2488, + [3183] = 2504, + [3184] = 2543, + [3185] = 307, + [3186] = 2642, + [3187] = 3187, [3188] = 3188, [3189] = 3189, - [3190] = 3190, - [3191] = 330, - [3192] = 2439, - [3193] = 330, - [3194] = 2531, - [3195] = 3195, - [3196] = 3001, - [3197] = 2454, - [3198] = 2455, - [3199] = 2872, - [3200] = 3200, - [3201] = 2452, - [3202] = 3082, - [3203] = 2486, - [3204] = 2488, - [3205] = 2322, - [3206] = 2389, - [3207] = 336, - [3208] = 3208, - [3209] = 2635, - [3210] = 2474, - [3211] = 2521, - [3212] = 2514, - [3213] = 2839, - [3214] = 2530, - [3215] = 2457, - [3216] = 2454, - [3217] = 2456, - [3218] = 2496, - [3219] = 3219, - [3220] = 2455, - [3221] = 2456, - [3222] = 3222, - [3223] = 3223, - [3224] = 3064, - [3225] = 2492, - [3226] = 2457, - [3227] = 3208, - [3228] = 3067, - [3229] = 2460, - [3230] = 2486, - [3231] = 2487, - [3232] = 2458, - [3233] = 2488, - [3234] = 2483, - [3235] = 2478, - [3236] = 2472, - [3237] = 3237, - [3238] = 3067, - [3239] = 3064, - [3240] = 2458, - [3241] = 2469, - [3242] = 2459, - [3243] = 2463, - [3244] = 2468, - [3245] = 2469, - [3246] = 2468, - [3247] = 2472, - [3248] = 2463, - [3249] = 2478, - [3250] = 2483, - [3251] = 2488, - [3252] = 3252, - [3253] = 3093, - [3254] = 3061, - [3255] = 2459, - [3256] = 3031, - [3257] = 2487, - [3258] = 2492, - [3259] = 2496, - [3260] = 2502, - [3261] = 2503, - [3262] = 2504, - [3263] = 2511, - [3264] = 2506, - [3265] = 2501, - [3266] = 2500, - [3267] = 2499, - [3268] = 2498, - [3269] = 3061, - [3270] = 3031, - [3271] = 2535, - [3272] = 3064, - [3273] = 2645, - [3274] = 3067, - [3275] = 2536, - [3276] = 2503, - [3277] = 2537, - [3278] = 2497, - [3279] = 2322, - [3280] = 2644, - [3281] = 3281, - [3282] = 2469, - [3283] = 3283, - [3284] = 3284, - [3285] = 2683, - [3286] = 2389, + [3190] = 310, + [3191] = 3191, + [3192] = 2549, + [3193] = 2462, + [3194] = 2536, + [3195] = 2449, + [3196] = 3196, + [3197] = 3197, + [3198] = 323, + [3199] = 2502, + [3200] = 2454, + [3201] = 2456, + [3202] = 307, + [3203] = 2461, + [3204] = 3204, + [3205] = 2567, + [3206] = 2993, + [3207] = 3207, + [3208] = 3147, + [3209] = 3095, + [3210] = 310, + [3211] = 317, + [3212] = 3028, + [3213] = 3025, + [3214] = 3214, + [3215] = 304, + [3216] = 305, + [3217] = 2495, + [3218] = 3218, + [3219] = 2565, + [3220] = 3076, + [3221] = 2587, + [3222] = 2696, + [3223] = 2484, + [3224] = 2498, + [3225] = 2499, + [3226] = 2423, + [3227] = 3227, + [3228] = 3003, + [3229] = 2597, + [3230] = 3188, + [3231] = 3231, + [3232] = 3232, + [3233] = 2485, + [3234] = 2458, + [3235] = 2569, + [3236] = 2573, + [3237] = 2576, + [3238] = 2577, + [3239] = 2512, + [3240] = 2516, + [3241] = 3241, + [3242] = 3242, + [3243] = 2467, + [3244] = 2580, + [3245] = 2540, + [3246] = 2541, + [3247] = 2609, + [3248] = 2608, + [3249] = 2466, + [3250] = 2465, + [3251] = 2575, + [3252] = 2488, + [3253] = 2504, + [3254] = 2543, + [3255] = 2450, + [3256] = 2452, + [3257] = 2453, + [3258] = 2464, + [3259] = 2476, + [3260] = 320, + [3261] = 323, + [3262] = 2460, + [3263] = 2459, + [3264] = 3264, + [3265] = 2457, + [3266] = 3196, + [3267] = 3095, + [3268] = 335, + [3269] = 3269, + [3270] = 3003, + [3271] = 2993, + [3272] = 3272, + [3273] = 2518, + [3274] = 2477, + [3275] = 2478, + [3276] = 2479, + [3277] = 2480, + [3278] = 2481, + [3279] = 3279, + [3280] = 2620, + [3281] = 2578, + [3282] = 2468, + [3283] = 2385, + [3284] = 2326, + [3285] = 3285, + [3286] = 3286, [3287] = 3287, [3288] = 3288, [3289] = 3289, - [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3293, - [3294] = 3294, - [3295] = 2474, - [3296] = 2521, - [3297] = 2514, - [3298] = 3298, - [3299] = 2389, - [3300] = 2439, - [3301] = 3301, - [3302] = 3302, - [3303] = 2440, - [3304] = 3294, - [3305] = 2441, - [3306] = 2872, - [3307] = 3307, - [3308] = 2452, - [3309] = 3293, - [3310] = 2540, - [3311] = 2322, - [3312] = 3312, - [3313] = 2538, - [3314] = 3314, - [3315] = 2537, - [3316] = 2536, - [3317] = 2872, - [3318] = 2322, - [3319] = 3319, - [3320] = 3320, - [3321] = 2535, - [3322] = 3287, - [3323] = 2506, - [3324] = 2465, - [3325] = 2504, - [3326] = 3326, - [3327] = 2839, - [3328] = 2503, - [3329] = 2502, - [3330] = 3289, + [3290] = 2685, + [3291] = 2423, + [3292] = 2485, + [3293] = 2799, + [3294] = 3285, + [3295] = 2543, + [3296] = 2504, + [3297] = 3297, + [3298] = 2619, + [3299] = 2488, + [3300] = 3300, + [3301] = 3285, + [3302] = 2481, + [3303] = 2482, + [3304] = 3304, + [3305] = 2385, + [3306] = 2453, + [3307] = 2635, + [3308] = 2841, + [3309] = 2495, + [3310] = 2572, + [3311] = 2498, + [3312] = 2484, + [3313] = 2775, + [3314] = 2452, + [3315] = 3315, + [3316] = 2461, + [3317] = 3317, + [3318] = 3318, + [3319] = 2450, + [3320] = 2799, + [3321] = 2635, + [3322] = 2799, + [3323] = 3315, + [3324] = 2480, + [3325] = 2479, + [3326] = 2423, + [3327] = 2478, + [3328] = 3285, + [3329] = 3329, + [3330] = 3330, [3331] = 3331, - [3332] = 3289, - [3333] = 2492, - [3334] = 2486, - [3335] = 2872, - [3336] = 2642, - [3337] = 2872, + [3332] = 2541, + [3333] = 2540, + [3334] = 3334, + [3335] = 2580, + [3336] = 3336, + [3337] = 3318, [3338] = 3331, - [3339] = 2487, - [3340] = 2575, - [3341] = 2496, - [3342] = 3289, - [3343] = 2454, - [3344] = 3289, - [3345] = 2488, - [3346] = 2483, - [3347] = 2642, - [3348] = 2455, - [3349] = 2478, - [3350] = 2472, - [3351] = 3351, - [3352] = 3352, + [3339] = 2597, + [3340] = 3285, + [3341] = 2477, + [3342] = 3342, + [3343] = 2456, + [3344] = 2476, + [3345] = 2799, + [3346] = 2454, + [3347] = 3347, + [3348] = 3348, + [3349] = 2696, + [3350] = 2575, + [3351] = 2464, + [3352] = 2499, [3353] = 3353, - [3354] = 3289, - [3355] = 2456, - [3356] = 3301, - [3357] = 2457, - [3358] = 2715, - [3359] = 2458, - [3360] = 2459, - [3361] = 3289, - [3362] = 2463, - [3363] = 2770, - [3364] = 2468, - [3365] = 2530, - [3366] = 3366, - [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 2872, - [3371] = 2322, - [3372] = 3372, + [3354] = 3354, + [3355] = 3286, + [3356] = 2462, + [3357] = 3348, + [3358] = 2536, + [3359] = 3285, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 2334, + [3364] = 3364, + [3365] = 2449, + [3366] = 3285, + [3367] = 2329, + [3368] = 2618, + [3369] = 2635, + [3370] = 3370, + [3371] = 2572, + [3372] = 2550, [3373] = 3373, [3374] = 3374, [3375] = 3375, @@ -7855,117 +7855,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3381] = 3381, [3382] = 3382, [3383] = 3383, - [3384] = 2642, - [3385] = 3385, + [3384] = 3384, + [3385] = 2385, [3386] = 3386, - [3387] = 2683, + [3387] = 3387, [3388] = 3388, [3389] = 3389, [3390] = 3390, - [3391] = 3391, - [3392] = 2642, + [3391] = 2423, + [3392] = 3392, [3393] = 3393, - [3394] = 2575, - [3395] = 2389, - [3396] = 2715, - [3397] = 2486, + [3394] = 2696, + [3395] = 2685, + [3396] = 2468, + [3397] = 3397, [3398] = 3398, - [3399] = 2450, - [3400] = 3400, + [3399] = 2799, + [3400] = 2635, [3401] = 3401, - [3402] = 2465, - [3403] = 3403, - [3404] = 2447, + [3402] = 3402, + [3403] = 2619, + [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 3407, - [3408] = 3031, - [3409] = 3061, - [3410] = 3061, - [3411] = 3031, + [3407] = 2550, + [3408] = 3408, + [3409] = 3409, + [3410] = 3025, + [3411] = 3028, [3412] = 3412, - [3413] = 3061, + [3413] = 3028, [3414] = 3414, [3415] = 3415, - [3416] = 3061, - [3417] = 3031, - [3418] = 2322, - [3419] = 3031, - [3420] = 3061, - [3421] = 3031, - [3422] = 3422, - [3423] = 3423, - [3424] = 3031, - [3425] = 2322, - [3426] = 3426, - [3427] = 3398, - [3428] = 3061, - [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 2322, - [3434] = 2313, - [3435] = 3435, - [3436] = 3031, + [3416] = 3416, + [3417] = 3025, + [3418] = 2572, + [3419] = 3025, + [3420] = 3420, + [3421] = 2385, + [3422] = 3028, + [3423] = 3028, + [3424] = 3025, + [3425] = 3025, + [3426] = 2618, + [3427] = 3028, + [3428] = 3025, + [3429] = 3028, + [3430] = 3218, + [3431] = 3028, + [3432] = 3025, + [3433] = 2313, + [3434] = 3434, + [3435] = 2385, + [3436] = 3436, [3437] = 3437, - [3438] = 3061, - [3439] = 3439, + [3438] = 3438, + [3439] = 2841, [3440] = 3440, - [3441] = 2450, - [3442] = 2465, + [3441] = 3441, + [3442] = 3442, [3443] = 3443, - [3444] = 2839, - [3445] = 2447, - [3446] = 3190, - [3447] = 3447, + [3444] = 3444, + [3445] = 2385, + [3446] = 3446, + [3447] = 3386, [3448] = 3448, [3449] = 3449, [3450] = 3450, [3451] = 3451, - [3452] = 3450, - [3453] = 3450, - [3454] = 3450, - [3455] = 3450, - [3456] = 3450, - [3457] = 3450, - [3458] = 3450, - [3459] = 3450, - [3460] = 3450, - [3461] = 3461, + [3452] = 3452, + [3453] = 3452, + [3454] = 3452, + [3455] = 3452, + [3456] = 3452, + [3457] = 3452, + [3458] = 3452, + [3459] = 3452, + [3460] = 3452, + [3461] = 3452, [3462] = 3462, [3463] = 3463, - [3464] = 3464, - [3465] = 331, + [3464] = 314, + [3465] = 3465, [3466] = 3466, - [3467] = 321, + [3467] = 3467, [3468] = 3468, [3469] = 3469, [3470] = 3470, [3471] = 3471, - [3472] = 316, - [3473] = 304, - [3474] = 3474, + [3472] = 3472, + [3473] = 308, + [3474] = 316, [3475] = 3475, [3476] = 3476, [3477] = 3477, [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 3481, + [3481] = 1951, [3482] = 3482, - [3483] = 3483, - [3484] = 3484, + [3483] = 309, + [3484] = 314, [3485] = 3485, - [3486] = 3378, + [3486] = 3486, [3487] = 3487, - [3488] = 3377, + [3488] = 3488, [3489] = 3489, [3490] = 3490, [3491] = 3491, [3492] = 3492, [3493] = 3493, - [3494] = 3494, + [3494] = 309, [3495] = 3495, [3496] = 3496, [3497] = 3497, @@ -7975,121 +7975,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 316, - [3505] = 304, + [3504] = 3504, + [3505] = 3505, [3506] = 3506, [3507] = 3507, [3508] = 3508, [3509] = 3509, - [3510] = 3510, + [3510] = 3370, [3511] = 3511, [3512] = 3512, - [3513] = 3513, + [3513] = 3373, [3514] = 3514, [3515] = 3515, [3516] = 3516, [3517] = 3517, [3518] = 3518, - [3519] = 3041, + [3519] = 3519, [3520] = 3520, - [3521] = 3521, - [3522] = 331, - [3523] = 321, + [3521] = 3068, + [3522] = 3522, + [3523] = 316, [3524] = 3524, - [3525] = 3525, + [3525] = 308, [3526] = 3526, - [3527] = 3527, - [3528] = 3109, + [3527] = 3077, + [3528] = 3528, [3529] = 3529, [3530] = 3530, [3531] = 3531, - [3532] = 3074, + [3532] = 3532, [3533] = 3533, - [3534] = 3165, - [3535] = 3535, - [3536] = 3291, - [3537] = 3281, - [3538] = 3287, - [3539] = 3294, - [3540] = 3293, - [3541] = 3302, - [3542] = 3542, - [3543] = 3543, - [3544] = 3544, - [3545] = 3284, - [3546] = 3366, - [3547] = 3302, - [3548] = 3548, - [3549] = 1971, - [3550] = 3314, - [3551] = 3281, + [3534] = 3102, + [3535] = 3168, + [3536] = 3536, + [3537] = 3537, + [3538] = 3318, + [3539] = 3331, + [3540] = 3540, + [3541] = 3289, + [3542] = 3364, + [3543] = 3317, + [3544] = 3289, + [3545] = 3353, + [3546] = 3297, + [3547] = 3354, + [3548] = 3347, + [3549] = 3286, + [3550] = 3550, + [3551] = 3551, [3552] = 3552, - [3553] = 3314, - [3554] = 3294, - [3555] = 3283, - [3556] = 3543, - [3557] = 3287, - [3558] = 3293, - [3559] = 3301, - [3560] = 3288, - [3561] = 3561, - [3562] = 3284, - [3563] = 3301, - [3564] = 3320, - [3565] = 3548, - [3566] = 3566, - [3567] = 3567, - [3568] = 1987, + [3553] = 3304, + [3554] = 3288, + [3555] = 3551, + [3556] = 3353, + [3557] = 3331, + [3558] = 2013, + [3559] = 3318, + [3560] = 3348, + [3561] = 3364, + [3562] = 3562, + [3563] = 3563, + [3564] = 3286, + [3565] = 3354, + [3566] = 3552, + [3567] = 3348, + [3568] = 3568, [3569] = 3569, [3570] = 3570, - [3571] = 3571, - [3572] = 3570, + [3571] = 3570, + [3572] = 3572, [3573] = 3570, - [3574] = 3574, - [3575] = 3569, - [3576] = 3567, + [3574] = 3570, + [3575] = 3575, + [3576] = 3576, [3577] = 3577, [3578] = 3578, - [3579] = 3567, - [3580] = 1997, - [3581] = 3578, - [3582] = 3577, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, - [3586] = 3584, - [3587] = 3567, - [3588] = 3585, - [3589] = 3584, - [3590] = 3577, + [3579] = 1987, + [3580] = 3578, + [3581] = 3576, + [3582] = 3582, + [3583] = 3572, + [3584] = 3578, + [3585] = 3576, + [3586] = 3577, + [3587] = 3576, + [3588] = 3588, + [3589] = 3569, + [3590] = 3570, [3591] = 3591, - [3592] = 3578, - [3593] = 3593, - [3594] = 3577, - [3595] = 3578, - [3596] = 3585, - [3597] = 3570, - [3598] = 3570, - [3599] = 3569, - [3600] = 3570, + [3592] = 3572, + [3593] = 3591, + [3594] = 3591, + [3595] = 3569, + [3596] = 3577, + [3597] = 3576, + [3598] = 3577, + [3599] = 3599, + [3600] = 3591, [3601] = 3569, - [3602] = 3584, - [3603] = 3585, - [3604] = 3578, + [3602] = 3569, + [3603] = 3577, + [3604] = 3591, [3605] = 3569, - [3606] = 3584, - [3607] = 3607, - [3608] = 3585, - [3609] = 3569, - [3610] = 3578, - [3611] = 3584, - [3612] = 3585, - [3613] = 3577, - [3614] = 3567, - [3615] = 3567, - [3616] = 3577, - [3617] = 3617, - [3618] = 3352, + [3606] = 3572, + [3607] = 3572, + [3608] = 3578, + [3609] = 3591, + [3610] = 3610, + [3611] = 3570, + [3612] = 3576, + [3613] = 3572, + [3614] = 3578, + [3615] = 3577, + [3616] = 3616, + [3617] = 3578, + [3618] = 3618, [3619] = 3619, [3620] = 3620, [3621] = 3621, @@ -8099,7 +8099,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3625] = 3625, [3626] = 3626, [3627] = 3627, - [3628] = 3628, + [3628] = 3360, [3629] = 3629, [3630] = 3630, [3631] = 3631, @@ -8111,837 +8111,837 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3637] = 3637, [3638] = 3638, [3639] = 3639, - [3640] = 3640, + [3640] = 2027, [3641] = 3641, - [3642] = 3640, + [3642] = 3642, [3643] = 3643, [3644] = 3644, [3645] = 3645, [3646] = 3646, [3647] = 3647, - [3648] = 3648, + [3648] = 3644, [3649] = 3649, [3650] = 3650, [3651] = 3651, - [3652] = 2040, - [3653] = 2030, - [3654] = 3654, + [3652] = 3652, + [3653] = 3653, + [3654] = 3645, [3655] = 3655, [3656] = 3656, [3657] = 3657, [3658] = 3658, [3659] = 3659, [3660] = 3660, - [3661] = 3650, - [3662] = 2083, - [3663] = 2038, + [3661] = 3661, + [3662] = 3646, + [3663] = 2083, [3664] = 3664, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 2021, - [3669] = 3669, + [3665] = 3656, + [3666] = 3660, + [3667] = 2077, + [3668] = 3638, + [3669] = 2078, [3670] = 3670, [3671] = 3671, - [3672] = 3647, + [3672] = 3672, [3673] = 3673, - [3674] = 3674, + [3674] = 2064, [3675] = 3675, [3676] = 3676, - [3677] = 3654, - [3678] = 3678, - [3679] = 3679, - [3680] = 3664, - [3681] = 2064, + [3677] = 3677, + [3678] = 2057, + [3679] = 2076, + [3680] = 3680, + [3681] = 3642, [3682] = 3682, [3683] = 3683, - [3684] = 3683, + [3684] = 3684, [3685] = 3685, [3686] = 3686, - [3687] = 3682, + [3687] = 3675, [3688] = 3688, - [3689] = 3639, - [3690] = 3688, - [3691] = 3691, - [3692] = 3692, - [3693] = 3667, - [3694] = 3679, - [3695] = 3692, - [3696] = 3696, + [3689] = 3689, + [3690] = 3690, + [3691] = 3641, + [3692] = 3655, + [3693] = 3672, + [3694] = 3694, + [3695] = 3695, + [3696] = 3680, [3697] = 3697, [3698] = 3698, - [3699] = 2038, - [3700] = 2296, - [3701] = 2297, - [3702] = 2030, - [3703] = 2293, - [3704] = 2064, - [3705] = 323, - [3706] = 327, - [3707] = 2341, - [3708] = 2414, - [3709] = 2391, - [3710] = 2390, - [3711] = 2388, - [3712] = 2385, - [3713] = 2384, - [3714] = 2383, - [3715] = 2382, - [3716] = 2381, - [3717] = 2377, - [3718] = 2376, - [3719] = 2415, - [3720] = 2320, - [3721] = 2323, - [3722] = 2317, - [3723] = 2413, - [3724] = 2407, - [3725] = 2405, - [3726] = 2404, - [3727] = 2403, - [3728] = 2318, - [3729] = 2401, - [3730] = 2319, - [3731] = 2399, - [3732] = 2343, - [3733] = 2330, - [3734] = 2333, - [3735] = 2398, - [3736] = 2316, - [3737] = 2342, - [3738] = 2329, - [3739] = 2292, - [3740] = 2327, - [3741] = 2326, - [3742] = 3742, - [3743] = 2312, - [3744] = 3742, - [3745] = 3742, - [3746] = 3742, - [3747] = 3742, - [3748] = 2126, - [3749] = 2108, - [3750] = 2374, - [3751] = 2372, - [3752] = 1051, - [3753] = 2369, - [3754] = 1062, - [3755] = 1069, - [3756] = 2089, - [3757] = 1067, - [3758] = 2109, - [3759] = 2302, - [3760] = 2103, - [3761] = 2417, - [3762] = 2363, - [3763] = 323, - [3764] = 2361, - [3765] = 2087, - [3766] = 2104, - [3767] = 327, - [3768] = 2293, - [3769] = 2107, - [3770] = 2110, - [3771] = 2296, - [3772] = 1066, - [3773] = 2088, - [3774] = 2297, - [3775] = 2106, - [3776] = 2299, - [3777] = 2314, + [3699] = 3699, + [3700] = 3700, + [3701] = 2076, + [3702] = 2297, + [3703] = 2298, + [3704] = 2294, + [3705] = 2077, + [3706] = 2064, + [3707] = 306, + [3708] = 337, + [3709] = 2413, + [3710] = 2293, + [3711] = 2399, + [3712] = 2445, + [3713] = 2324, + [3714] = 2356, + [3715] = 2357, + [3716] = 2378, + [3717] = 2319, + [3718] = 2368, + [3719] = 2342, + [3720] = 2359, + [3721] = 2339, + [3722] = 2387, + [3723] = 2369, + [3724] = 2386, + [3725] = 2376, + [3726] = 2395, + [3727] = 2367, + [3728] = 2373, + [3729] = 2322, + [3730] = 2392, + [3731] = 2371, + [3732] = 2325, + [3733] = 2346, + [3734] = 2348, + [3735] = 2441, + [3736] = 2335, + [3737] = 2336, + [3738] = 2375, + [3739] = 2365, + [3740] = 2362, + [3741] = 2316, + [3742] = 2317, + [3743] = 2340, + [3744] = 3744, + [3745] = 2299, + [3746] = 3744, + [3747] = 3744, + [3748] = 3744, + [3749] = 3744, + [3750] = 2097, + [3751] = 2113, + [3752] = 1038, + [3753] = 2109, + [3754] = 1041, + [3755] = 2115, + [3756] = 2116, + [3757] = 2095, + [3758] = 2343, + [3759] = 2403, + [3760] = 2294, + [3761] = 306, + [3762] = 2416, + [3763] = 2111, + [3764] = 2345, + [3765] = 2297, + [3766] = 1154, + [3767] = 2349, + [3768] = 2098, + [3769] = 2315, + [3770] = 337, + [3771] = 1131, + [3772] = 1029, + [3773] = 2425, + [3774] = 2118, + [3775] = 2119, + [3776] = 2120, + [3777] = 2298, [3778] = 2303, - [3779] = 2309, - [3780] = 2305, - [3781] = 2319, - [3782] = 2356, - [3783] = 2325, - [3784] = 2327, - [3785] = 2398, - [3786] = 3786, - [3787] = 2410, + [3779] = 2302, + [3780] = 2300, + [3781] = 2304, + [3782] = 2310, + [3783] = 2430, + [3784] = 2434, + [3785] = 2321, + [3786] = 2409, + [3787] = 2372, [3788] = 3788, - [3789] = 2359, - [3790] = 3788, - [3791] = 2360, - [3792] = 2409, - [3793] = 2408, - [3794] = 2317, - [3795] = 2318, - [3796] = 2320, - [3797] = 2323, - [3798] = 3798, - [3799] = 2316, - [3800] = 2406, - [3801] = 3788, - [3802] = 2364, - [3803] = 2405, - [3804] = 2391, - [3805] = 2390, - [3806] = 3806, - [3807] = 2388, - [3808] = 2365, - [3809] = 2385, - [3810] = 2366, - [3811] = 3786, - [3812] = 3788, - [3813] = 2384, - [3814] = 2383, - [3815] = 2382, - [3816] = 3788, + [3789] = 3789, + [3790] = 2320, + [3791] = 2351, + [3792] = 2404, + [3793] = 3793, + [3794] = 3794, + [3795] = 2293, + [3796] = 2352, + [3797] = 3788, + [3798] = 2427, + [3799] = 3788, + [3800] = 2353, + [3801] = 3801, + [3802] = 3801, + [3803] = 2393, + [3804] = 2408, + [3805] = 2389, + [3806] = 3794, + [3807] = 2380, + [3808] = 2388, + [3809] = 3788, + [3810] = 2406, + [3811] = 2323, + [3812] = 2358, + [3813] = 3793, + [3814] = 3789, + [3815] = 3788, + [3816] = 3794, [3817] = 2420, - [3818] = 2381, - [3819] = 2377, - [3820] = 2376, - [3821] = 2346, - [3822] = 3798, - [3823] = 2402, - [3824] = 2348, - [3825] = 3788, - [3826] = 3788, - [3827] = 3827, - [3828] = 2292, - [3829] = 3806, - [3830] = 2293, - [3831] = 2357, - [3832] = 2297, - [3833] = 2432, - [3834] = 2296, - [3835] = 2339, - [3836] = 2340, - [3837] = 3788, - [3838] = 3798, - [3839] = 2338, - [3840] = 2412, - [3841] = 3798, - [3842] = 3806, - [3843] = 3827, - [3844] = 2416, - [3845] = 2404, - [3846] = 3786, - [3847] = 3806, - [3848] = 2430, - [3849] = 2324, - [3850] = 2429, - [3851] = 3827, - [3852] = 3788, - [3853] = 2411, - [3854] = 3827, - [3855] = 3786, - [3856] = 2401, - [3857] = 2387, - [3858] = 2403, - [3859] = 2321, - [3860] = 2394, - [3861] = 2333, - [3862] = 2353, - [3863] = 2396, - [3864] = 2397, - [3865] = 2428, - [3866] = 2427, - [3867] = 2426, - [3868] = 2368, - [3869] = 3786, - [3870] = 2330, - [3871] = 2343, - [3872] = 2326, - [3873] = 3827, - [3874] = 2415, - [3875] = 2414, - [3876] = 2342, - [3877] = 2341, - [3878] = 3806, - [3879] = 2345, - [3880] = 2422, - [3881] = 2413, - [3882] = 2407, - [3883] = 3798, - [3884] = 2329, - [3885] = 2392, - [3886] = 2393, - [3887] = 2371, - [3888] = 2399, - [3889] = 2395, - [3890] = 2373, - [3891] = 3788, - [3892] = 2347, - [3893] = 3893, - [3894] = 3894, - [3895] = 3894, + [3818] = 3793, + [3819] = 3788, + [3820] = 3801, + [3821] = 3788, + [3822] = 2339, + [3823] = 3793, + [3824] = 3788, + [3825] = 2342, + [3826] = 2344, + [3827] = 3794, + [3828] = 3801, + [3829] = 3789, + [3830] = 2346, + [3831] = 2348, + [3832] = 3801, + [3833] = 2362, + [3834] = 2319, + [3835] = 2378, + [3836] = 2392, + [3837] = 2399, + [3838] = 2331, + [3839] = 2445, + [3840] = 2356, + [3841] = 2297, + [3842] = 2357, + [3843] = 2298, + [3844] = 2359, + [3845] = 2367, + [3846] = 2371, + [3847] = 2316, + [3848] = 2375, + [3849] = 2441, + [3850] = 2395, + [3851] = 2369, + [3852] = 2368, + [3853] = 2398, + [3854] = 2324, + [3855] = 2294, + [3856] = 2317, + [3857] = 2413, + [3858] = 2433, + [3859] = 3794, + [3860] = 3788, + [3861] = 2442, + [3862] = 2439, + [3863] = 2438, + [3864] = 2437, + [3865] = 2383, + [3866] = 2444, + [3867] = 2436, + [3868] = 2379, + [3869] = 2322, + [3870] = 2325, + [3871] = 2337, + [3872] = 2335, + [3873] = 2336, + [3874] = 2318, + [3875] = 2340, + [3876] = 2382, + [3877] = 2365, + [3878] = 2373, + [3879] = 2376, + [3880] = 2405, + [3881] = 2386, + [3882] = 2412, + [3883] = 3789, + [3884] = 2387, + [3885] = 2327, + [3886] = 2435, + [3887] = 3788, + [3888] = 3793, + [3889] = 2333, + [3890] = 2429, + [3891] = 3789, + [3892] = 2330, + [3893] = 2347, + [3894] = 2332, + [3895] = 3895, [3896] = 3896, - [3897] = 3896, + [3897] = 3897, [3898] = 3898, - [3899] = 3899, + [3899] = 3895, [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3903, + [3901] = 2299, + [3902] = 3900, + [3903] = 3896, [3904] = 3904, [3905] = 3905, [3906] = 3906, - [3907] = 3896, - [3908] = 2312, + [3907] = 3907, + [3908] = 3908, [3909] = 3909, [3910] = 3910, [3911] = 3911, - [3912] = 3912, + [3912] = 3895, [3913] = 3913, - [3914] = 3914, - [3915] = 3894, + [3914] = 3900, + [3915] = 3915, [3916] = 3916, - [3917] = 3917, - [3918] = 3899, - [3919] = 3896, + [3917] = 3896, + [3918] = 3918, + [3919] = 3900, [3920] = 3920, - [3921] = 3899, - [3922] = 3922, - [3923] = 3899, - [3924] = 3894, + [3921] = 3921, + [3922] = 3895, + [3923] = 3900, + [3924] = 3924, [3925] = 3925, [3926] = 3926, - [3927] = 3927, - [3928] = 3894, - [3929] = 3896, + [3927] = 3896, + [3928] = 3928, + [3929] = 3929, [3930] = 3930, - [3931] = 3899, - [3932] = 3932, - [3933] = 2316, - [3934] = 2109, - [3935] = 2415, - [3936] = 2292, - [3937] = 2330, - [3938] = 2405, - [3939] = 2126, - [3940] = 2108, - [3941] = 2398, - [3942] = 2107, - [3943] = 2106, - [3944] = 2399, - [3945] = 2407, - [3946] = 2103, - [3947] = 2413, - [3948] = 2414, - [3949] = 2401, - [3950] = 3950, - [3951] = 2403, - [3952] = 2417, - [3953] = 2369, - [3954] = 3954, - [3955] = 2404, - [3956] = 3956, - [3957] = 2391, - [3958] = 2390, - [3959] = 2372, - [3960] = 2388, - [3961] = 2374, - [3962] = 2385, - [3963] = 2384, - [3964] = 3964, - [3965] = 2383, - [3966] = 2317, - [3967] = 2318, - [3968] = 2382, - [3969] = 2319, - [3970] = 2320, - [3971] = 3971, - [3972] = 2302, - [3973] = 3916, - [3974] = 2381, - [3975] = 2377, - [3976] = 2376, - [3977] = 2323, - [3978] = 3978, - [3979] = 2326, - [3980] = 2327, + [3931] = 3931, + [3932] = 3895, + [3933] = 3896, + [3934] = 3934, + [3935] = 2425, + [3936] = 2324, + [3937] = 2375, + [3938] = 2316, + [3939] = 2362, + [3940] = 2348, + [3941] = 2346, + [3942] = 2342, + [3943] = 2293, + [3944] = 2339, + [3945] = 3945, + [3946] = 2343, + [3947] = 3947, + [3948] = 2387, + [3949] = 2315, + [3950] = 2386, + [3951] = 2416, + [3952] = 2376, + [3953] = 2403, + [3954] = 2373, + [3955] = 2365, + [3956] = 2095, + [3957] = 2340, + [3958] = 2336, + [3959] = 3959, + [3960] = 2441, + [3961] = 2395, + [3962] = 2335, + [3963] = 2349, + [3964] = 2325, + [3965] = 2369, + [3966] = 2368, + [3967] = 2322, + [3968] = 2345, + [3969] = 3969, + [3970] = 2317, + [3971] = 2371, + [3972] = 3972, + [3973] = 2367, + [3974] = 2359, + [3975] = 2356, + [3976] = 2445, + [3977] = 3977, + [3978] = 2413, + [3979] = 2077, + [3980] = 2118, [3981] = 3981, - [3982] = 2363, - [3983] = 2329, - [3984] = 3984, - [3985] = 2087, - [3986] = 2341, - [3987] = 2088, - [3988] = 2342, - [3989] = 2089, - [3990] = 2343, - [3991] = 2038, - [3992] = 2361, + [3982] = 2064, + [3983] = 3983, + [3984] = 2076, + [3985] = 2399, + [3986] = 2109, + [3987] = 2111, + [3988] = 2392, + [3989] = 2113, + [3990] = 2378, + [3991] = 2115, + [3992] = 2116, [3993] = 3993, - [3994] = 3994, - [3995] = 2104, - [3996] = 2333, - [3997] = 2030, - [3998] = 3998, - [3999] = 2064, - [4000] = 2110, - [4001] = 4001, - [4002] = 4002, + [3994] = 2319, + [3995] = 2098, + [3996] = 3996, + [3997] = 2120, + [3998] = 2097, + [3999] = 2119, + [4000] = 4000, + [4001] = 2357, + [4002] = 3908, [4003] = 4003, - [4004] = 2299, + [4004] = 4004, [4005] = 4005, [4006] = 4006, [4007] = 4007, - [4008] = 4008, + [4008] = 2303, [4009] = 4009, - [4010] = 4007, - [4011] = 2305, + [4010] = 4010, + [4011] = 2302, [4012] = 4012, [4013] = 4013, [4014] = 4014, [4015] = 4015, - [4016] = 2309, + [4016] = 2300, [4017] = 4017, - [4018] = 4007, - [4019] = 4019, - [4020] = 2303, + [4018] = 4018, + [4019] = 2304, + [4020] = 4006, [4021] = 4021, [4022] = 4022, - [4023] = 4023, - [4024] = 4024, + [4023] = 4006, + [4024] = 4017, [4025] = 4025, [4026] = 4026, [4027] = 4027, [4028] = 4028, [4029] = 4029, [4030] = 4030, - [4031] = 4012, + [4031] = 4031, [4032] = 4032, - [4033] = 4033, + [4033] = 2299, [4034] = 4034, - [4035] = 4007, + [4035] = 4035, [4036] = 4036, [4037] = 4037, [4038] = 4038, - [4039] = 4039, - [4040] = 4012, - [4041] = 4012, - [4042] = 4042, + [4039] = 4017, + [4040] = 4040, + [4041] = 4017, + [4042] = 4006, [4043] = 4043, - [4044] = 4012, - [4045] = 2312, + [4044] = 4044, + [4045] = 4045, [4046] = 4046, [4047] = 4047, - [4048] = 4048, - [4049] = 4049, - [4050] = 4007, - [4051] = 2314, - [4052] = 2371, - [4053] = 2369, - [4054] = 2417, - [4055] = 2402, - [4056] = 2345, - [4057] = 2338, - [4058] = 2364, - [4059] = 2392, - [4060] = 1067, - [4061] = 2339, - [4062] = 2340, - [4063] = 2353, - [4064] = 4064, - [4065] = 2365, - [4066] = 2356, - [4067] = 2422, + [4048] = 4006, + [4049] = 4017, + [4050] = 4050, + [4051] = 4051, + [4052] = 2310, + [4053] = 4053, + [4054] = 2331, + [4055] = 2351, + [4056] = 4056, + [4057] = 1029, + [4058] = 2318, + [4059] = 2383, + [4060] = 2382, + [4061] = 2379, + [4062] = 2077, + [4063] = 1038, + [4064] = 2327, + [4065] = 2358, + [4066] = 2344, + [4067] = 2388, [4068] = 2321, - [4069] = 2325, - [4070] = 1069, - [4071] = 2366, - [4072] = 2426, - [4073] = 2360, - [4074] = 2432, - [4075] = 2064, - [4076] = 2374, - [4077] = 2372, - [4078] = 1051, - [4079] = 2420, - [4080] = 2373, - [4081] = 2347, - [4082] = 2394, - [4083] = 2416, - [4084] = 4084, - [4085] = 2427, - [4086] = 2406, - [4087] = 2428, - [4088] = 2346, - [4089] = 2397, - [4090] = 2430, - [4091] = 2387, - [4092] = 1066, - [4093] = 2368, - [4094] = 1062, - [4095] = 2412, - [4096] = 2357, - [4097] = 2408, - [4098] = 2410, - [4099] = 2396, - [4100] = 2363, - [4101] = 2361, - [4102] = 4102, - [4103] = 2302, - [4104] = 4104, - [4105] = 2038, - [4106] = 2429, - [4107] = 2030, - [4108] = 2411, - [4109] = 2395, - [4110] = 2348, - [4111] = 4111, - [4112] = 2393, - [4113] = 2324, - [4114] = 2359, - [4115] = 2409, - [4116] = 4116, + [4069] = 2406, + [4070] = 2064, + [4071] = 2403, + [4072] = 2405, + [4073] = 1041, + [4074] = 1154, + [4075] = 2352, + [4076] = 2330, + [4077] = 2337, + [4078] = 4078, + [4079] = 2380, + [4080] = 2404, + [4081] = 2389, + [4082] = 2427, + [4083] = 2412, + [4084] = 2429, + [4085] = 2347, + [4086] = 4086, + [4087] = 2430, + [4088] = 2434, + [4089] = 2372, + [4090] = 4090, + [4091] = 2393, + [4092] = 2435, + [4093] = 2436, + [4094] = 2320, + [4095] = 2353, + [4096] = 2437, + [4097] = 1131, + [4098] = 2349, + [4099] = 2323, + [4100] = 2315, + [4101] = 2420, + [4102] = 2345, + [4103] = 2332, + [4104] = 2438, + [4105] = 2439, + [4106] = 2444, + [4107] = 2343, + [4108] = 2433, + [4109] = 2333, + [4110] = 2408, + [4111] = 2076, + [4112] = 2425, + [4113] = 2442, + [4114] = 2409, + [4115] = 2398, + [4116] = 2416, [4117] = 4117, - [4118] = 4116, - [4119] = 4116, - [4120] = 4120, - [4121] = 4121, - [4122] = 4116, - [4123] = 4120, - [4124] = 2314, - [4125] = 4120, + [4118] = 4118, + [4119] = 4119, + [4120] = 4118, + [4121] = 3908, + [4122] = 2304, + [4123] = 4118, + [4124] = 2310, + [4125] = 4125, [4126] = 4126, - [4127] = 4117, + [4127] = 2300, [4128] = 4128, - [4129] = 4120, - [4130] = 4120, - [4131] = 4131, - [4132] = 4132, + [4129] = 4128, + [4130] = 4130, + [4131] = 2302, + [4132] = 4118, [4133] = 4133, [4134] = 4134, - [4135] = 4116, + [4135] = 4135, [4136] = 4136, - [4137] = 4136, - [4138] = 4138, - [4139] = 2305, + [4137] = 4137, + [4138] = 4135, + [4139] = 4118, [4140] = 4140, - [4141] = 4116, - [4142] = 2309, - [4143] = 4143, - [4144] = 4144, - [4145] = 2299, - [4146] = 3916, - [4147] = 4147, - [4148] = 2303, - [4149] = 4120, + [4141] = 4141, + [4142] = 4128, + [4143] = 4130, + [4144] = 2303, + [4145] = 4145, + [4146] = 4146, + [4147] = 4128, + [4148] = 4128, + [4149] = 4118, [4150] = 4150, - [4151] = 1066, - [4152] = 2429, - [4153] = 2428, - [4154] = 2427, - [4155] = 2426, - [4156] = 2422, + [4151] = 4128, + [4152] = 2095, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 4156, [4157] = 4157, [4158] = 4158, [4159] = 4159, [4160] = 4160, [4161] = 4161, - [4162] = 323, + [4162] = 4162, [4163] = 4163, [4164] = 4164, [4165] = 4165, - [4166] = 2395, - [4167] = 4012, - [4168] = 2393, - [4169] = 2392, - [4170] = 4159, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, + [4169] = 4169, + [4170] = 2358, [4171] = 4171, - [4172] = 4172, + [4172] = 4006, [4173] = 4173, - [4174] = 4012, + [4174] = 306, [4175] = 4175, [4176] = 4176, - [4177] = 4012, - [4178] = 4012, - [4179] = 2325, + [4177] = 4177, + [4178] = 4006, + [4179] = 337, [4180] = 4180, [4181] = 4181, - [4182] = 4182, - [4183] = 2324, - [4184] = 4164, - [4185] = 4185, - [4186] = 4165, + [4182] = 4177, + [4183] = 4006, + [4184] = 4177, + [4185] = 4006, + [4186] = 4160, [4187] = 4187, - [4188] = 4161, + [4188] = 4188, [4189] = 4189, [4190] = 4190, - [4191] = 4191, - [4192] = 4192, - [4193] = 4193, - [4194] = 4194, + [4191] = 2388, + [4192] = 4157, + [4193] = 2352, + [4194] = 1154, [4195] = 4195, - [4196] = 4164, + [4196] = 4196, [4197] = 4197, - [4198] = 327, + [4198] = 1041, [4199] = 4199, [4200] = 4200, [4201] = 4201, - [4202] = 4150, - [4203] = 2412, - [4204] = 4204, - [4205] = 2411, - [4206] = 2410, - [4207] = 2409, - [4208] = 2408, - [4209] = 2406, - [4210] = 2402, - [4211] = 2397, - [4212] = 2396, - [4213] = 2394, - [4214] = 2321, - [4215] = 4215, - [4216] = 2387, - [4217] = 4217, - [4218] = 1067, - [4219] = 4219, - [4220] = 2087, - [4221] = 2088, - [4222] = 2089, - [4223] = 4223, - [4224] = 4164, - [4225] = 4225, - [4226] = 4165, - [4227] = 1069, - [4228] = 4228, - [4229] = 4150, - [4230] = 4192, + [4202] = 1038, + [4203] = 2404, + [4204] = 4156, + [4205] = 4205, + [4206] = 4206, + [4207] = 1029, + [4208] = 2379, + [4209] = 4209, + [4210] = 2405, + [4211] = 4157, + [4212] = 2412, + [4213] = 2429, + [4214] = 2430, + [4215] = 2434, + [4216] = 2435, + [4217] = 2436, + [4218] = 2437, + [4219] = 2438, + [4220] = 2439, + [4221] = 2442, + [4222] = 1131, + [4223] = 2398, + [4224] = 2351, + [4225] = 2372, + [4226] = 4119, + [4227] = 4227, + [4228] = 4158, + [4229] = 4229, + [4230] = 4153, [4231] = 4231, - [4232] = 4232, - [4233] = 4159, + [4232] = 4158, + [4233] = 4233, [4234] = 4234, - [4235] = 4159, - [4236] = 2432, - [4237] = 4237, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4231, - [4242] = 4242, - [4243] = 4243, - [4244] = 4150, - [4245] = 4245, - [4246] = 4246, - [4247] = 2430, + [4235] = 4235, + [4236] = 4159, + [4237] = 4159, + [4238] = 1951, + [4239] = 4153, + [4240] = 4177, + [4241] = 4158, + [4242] = 4156, + [4243] = 4156, + [4244] = 4157, + [4245] = 4171, + [4246] = 4125, + [4247] = 4171, [4248] = 4248, - [4249] = 2103, - [4250] = 4190, - [4251] = 4159, - [4252] = 4144, - [4253] = 4253, - [4254] = 2106, - [4255] = 4140, - [4256] = 2107, - [4257] = 2357, - [4258] = 4159, - [4259] = 2356, - [4260] = 2353, - [4261] = 4231, - [4262] = 2108, - [4263] = 2126, - [4264] = 4264, - [4265] = 2347, - [4266] = 4150, - [4267] = 4192, - [4268] = 4012, + [4249] = 4160, + [4250] = 4250, + [4251] = 4251, + [4252] = 2097, + [4253] = 2098, + [4254] = 2318, + [4255] = 4255, + [4256] = 4126, + [4257] = 4160, + [4258] = 2327, + [4259] = 4259, + [4260] = 4156, + [4261] = 4261, + [4262] = 4177, + [4263] = 4263, + [4264] = 4006, + [4265] = 2109, + [4266] = 4160, + [4267] = 2111, + [4268] = 2113, [4269] = 4269, - [4270] = 4240, + [4270] = 2115, [4271] = 4271, - [4272] = 2346, - [4273] = 2345, - [4274] = 4274, - [4275] = 4190, - [4276] = 4161, + [4272] = 2116, + [4273] = 4273, + [4274] = 4171, + [4275] = 4275, + [4276] = 4275, [4277] = 4277, [4278] = 4278, [4279] = 4279, [4280] = 4280, - [4281] = 4158, + [4281] = 4281, [4282] = 4282, - [4283] = 4161, - [4284] = 4012, - [4285] = 4285, - [4286] = 4286, - [4287] = 4161, - [4288] = 2110, - [4289] = 1062, - [4290] = 4199, - [4291] = 2109, - [4292] = 4164, - [4293] = 2104, - [4294] = 2373, - [4295] = 4012, - [4296] = 2371, - [4297] = 2416, - [4298] = 2368, - [4299] = 4299, - [4300] = 4225, - [4301] = 4301, - [4302] = 4237, - [4303] = 4128, - [4304] = 2366, - [4305] = 2365, - [4306] = 4164, - [4307] = 2364, - [4308] = 4308, - [4309] = 4309, - [4310] = 2420, - [4311] = 2360, - [4312] = 2359, - [4313] = 4165, - [4314] = 4314, - [4315] = 4315, - [4316] = 4173, + [4283] = 4283, + [4284] = 4160, + [4285] = 2120, + [4286] = 2119, + [4287] = 2118, + [4288] = 4288, + [4289] = 4277, + [4290] = 4156, + [4291] = 4291, + [4292] = 4292, + [4293] = 4293, + [4294] = 4294, + [4295] = 4291, + [4296] = 4157, + [4297] = 4297, + [4298] = 2347, + [4299] = 2330, + [4300] = 2344, + [4301] = 4288, + [4302] = 2337, + [4303] = 4303, + [4304] = 4292, + [4305] = 4305, + [4306] = 4171, + [4307] = 4153, + [4308] = 2380, + [4309] = 2389, + [4310] = 4159, + [4311] = 2427, + [4312] = 4006, + [4313] = 4282, + [4314] = 4283, + [4315] = 2393, + [4316] = 2353, [4317] = 4150, - [4318] = 2340, - [4319] = 2339, - [4320] = 2338, - [4321] = 4192, - [4322] = 4231, - [4323] = 4121, - [4324] = 4165, - [4325] = 4190, - [4326] = 4161, - [4327] = 4190, - [4328] = 4190, - [4329] = 4165, - [4330] = 4330, - [4331] = 4192, - [4332] = 4159, - [4333] = 4231, - [4334] = 4180, - [4335] = 4335, - [4336] = 4336, - [4337] = 4337, - [4338] = 2348, - [4339] = 4339, - [4340] = 4191, - [4341] = 1051, - [4342] = 4187, - [4343] = 4231, + [4318] = 2333, + [4319] = 2323, + [4320] = 2332, + [4321] = 4159, + [4322] = 2444, + [4323] = 2433, + [4324] = 2408, + [4325] = 4159, + [4326] = 2382, + [4327] = 4158, + [4328] = 2320, + [4329] = 4329, + [4330] = 4006, + [4331] = 4331, + [4332] = 4156, + [4333] = 4153, + [4334] = 4158, + [4335] = 4281, + [4336] = 4157, + [4337] = 2383, + [4338] = 4154, + [4339] = 4171, + [4340] = 2409, + [4341] = 2331, + [4342] = 4342, + [4343] = 2420, [4344] = 4344, - [4345] = 4345, - [4346] = 4346, - [4347] = 4347, + [4345] = 2406, + [4346] = 2321, + [4347] = 4177, [4348] = 4348, [4349] = 4349, [4350] = 4350, - [4351] = 4351, - [4352] = 4346, + [4351] = 4350, + [4352] = 4352, [4353] = 4353, [4354] = 4354, - [4355] = 4346, - [4356] = 299, - [4357] = 296, - [4358] = 4346, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, [4359] = 4359, - [4360] = 4351, - [4361] = 4359, - [4362] = 4362, - [4363] = 4363, - [4364] = 4359, - [4365] = 4365, - [4366] = 4366, - [4367] = 4367, - [4368] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4349, + [4363] = 4125, + [4364] = 4349, + [4365] = 4349, + [4366] = 4350, + [4367] = 4357, + [4368] = 4356, [4369] = 4369, [4370] = 4370, [4371] = 4371, - [4372] = 4372, - [4373] = 4346, - [4374] = 4346, - [4375] = 4359, - [4376] = 4359, - [4377] = 4359, - [4378] = 4144, - [4379] = 4140, - [4380] = 4362, - [4381] = 4359, - [4382] = 4382, + [4372] = 4350, + [4373] = 4350, + [4374] = 4350, + [4375] = 4126, + [4376] = 4350, + [4377] = 4349, + [4378] = 4349, + [4379] = 4379, + [4380] = 4380, + [4381] = 296, + [4382] = 295, [4383] = 4383, - [4384] = 4384, + [4384] = 4350, [4385] = 4385, [4386] = 4386, - [4387] = 4387, + [4387] = 308, [4388] = 4388, [4389] = 4389, - [4390] = 4390, + [4390] = 4189, [4391] = 4391, [4392] = 4392, [4393] = 4393, [4394] = 4394, [4395] = 4395, [4396] = 4396, - [4397] = 4397, - [4398] = 4366, - [4399] = 4232, + [4397] = 316, + [4398] = 4398, + [4399] = 4399, [4400] = 4400, [4401] = 4401, [4402] = 4402, - [4403] = 4403, + [4403] = 4180, [4404] = 4404, [4405] = 4405, - [4406] = 4406, + [4406] = 309, [4407] = 4407, [4408] = 4408, [4409] = 4409, [4410] = 4410, [4411] = 4411, [4412] = 4412, - [4413] = 4413, + [4413] = 4197, [4414] = 4414, [4415] = 4415, [4416] = 4416, - [4417] = 4417, - [4418] = 4418, + [4417] = 4388, + [4418] = 4393, [4419] = 4419, - [4420] = 4420, - [4421] = 4411, + [4420] = 4388, + [4421] = 4395, [4422] = 4422, [4423] = 4396, - [4424] = 4424, + [4424] = 4392, [4425] = 4425, [4426] = 4426, [4427] = 4427, - [4428] = 4425, - [4429] = 4405, - [4430] = 4426, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, [4431] = 4431, [4432] = 4432, - [4433] = 4433, + [4433] = 4432, [4434] = 4434, - [4435] = 4411, + [4435] = 4392, [4436] = 4436, - [4437] = 4395, - [4438] = 4427, - [4439] = 4405, - [4440] = 4395, + [4437] = 4437, + [4438] = 4438, + [4439] = 4439, + [4440] = 4405, [4441] = 4441, - [4442] = 4102, - [4443] = 4443, - [4444] = 4396, - [4445] = 4411, - [4446] = 4396, + [4442] = 4392, + [4443] = 4294, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, [4447] = 4447, - [4448] = 4433, + [4448] = 4441, [4449] = 4449, - [4450] = 4426, + [4450] = 4450, [4451] = 4451, [4452] = 4452, - [4453] = 4453, + [4453] = 4436, [4454] = 4454, - [4455] = 4388, - [4456] = 4425, + [4455] = 4455, + [4456] = 4456, [4457] = 4457, [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 4461, + [4459] = 4056, + [4460] = 314, + [4461] = 4388, [4462] = 4462, - [4463] = 4463, + [4463] = 4405, [4464] = 4464, [4465] = 4465, [4466] = 4466, [4467] = 4467, - [4468] = 4064, - [4469] = 4425, - [4470] = 4176, + [4468] = 314, + [4469] = 4444, + [4470] = 4259, [4471] = 4471, [4472] = 4472, [4473] = 4473, @@ -8949,141 +8949,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 4392, - [4479] = 4427, - [4480] = 4405, + [4478] = 4478, + [4479] = 309, + [4480] = 4480, [4481] = 4481, - [4482] = 4426, - [4483] = 316, + [4482] = 4482, + [4483] = 4483, [4484] = 4484, [4485] = 4485, [4486] = 4486, - [4487] = 4487, + [4487] = 4441, [4488] = 4488, [4489] = 4489, - [4490] = 4395, - [4491] = 4471, + [4490] = 4490, + [4491] = 4491, [4492] = 4492, - [4493] = 4185, + [4493] = 4493, [4494] = 4494, [4495] = 4495, - [4496] = 4496, + [4496] = 4444, [4497] = 4497, - [4498] = 304, - [4499] = 4396, - [4500] = 4433, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, [4501] = 4501, - [4502] = 4427, + [4502] = 4436, [4503] = 4503, [4504] = 4504, [4505] = 4505, [4506] = 4506, - [4507] = 4488, - [4508] = 4487, + [4507] = 4405, + [4508] = 4444, [4509] = 4509, [4510] = 4510, [4511] = 4511, - [4512] = 4471, - [4513] = 4388, - [4514] = 4514, + [4512] = 4396, + [4513] = 4513, + [4514] = 4395, [4515] = 4515, - [4516] = 4395, - [4517] = 4465, - [4518] = 4392, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, [4519] = 4519, - [4520] = 4471, - [4521] = 4471, + [4520] = 4520, + [4521] = 4283, [4522] = 4522, - [4523] = 4523, + [4523] = 4393, [4524] = 4524, - [4525] = 4426, - [4526] = 4433, - [4527] = 4527, - [4528] = 4528, + [4525] = 4525, + [4526] = 4526, + [4527] = 2013, + [4528] = 4410, [4529] = 4529, - [4530] = 4530, + [4530] = 4396, [4531] = 4531, - [4532] = 307, - [4533] = 305, - [4534] = 4488, - [4535] = 4487, - [4536] = 4388, - [4537] = 4537, - [4538] = 4405, - [4539] = 4539, - [4540] = 4540, - [4541] = 4426, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 4535, + [4536] = 303, + [4537] = 322, + [4538] = 4292, + [4539] = 4416, + [4540] = 4414, + [4541] = 4541, [4542] = 4542, [4543] = 4543, [4544] = 4544, [4545] = 4545, - [4546] = 4411, - [4547] = 4547, + [4546] = 4546, + [4547] = 4458, [4548] = 4548, - [4549] = 4549, - [4550] = 4487, - [4551] = 4405, - [4552] = 4552, - [4553] = 4488, - [4554] = 4554, + [4549] = 4291, + [4550] = 4288, + [4551] = 4410, + [4552] = 4410, + [4553] = 4282, + [4554] = 4436, [4555] = 4555, [4556] = 4556, - [4557] = 4557, + [4557] = 4281, [4558] = 4558, - [4559] = 316, - [4560] = 4418, - [4561] = 4561, - [4562] = 4427, - [4563] = 4563, - [4564] = 4564, + [4559] = 4466, + [4560] = 4560, + [4561] = 4410, + [4562] = 4393, + [4563] = 4411, + [4564] = 4395, [4565] = 4565, - [4566] = 4487, + [4566] = 4396, [4567] = 4567, [4568] = 4568, - [4569] = 4182, - [4570] = 4471, - [4571] = 4571, + [4569] = 4569, + [4570] = 4570, + [4571] = 4393, [4572] = 4572, - [4573] = 4573, - [4574] = 4574, - [4575] = 4454, - [4576] = 4576, + [4573] = 4404, + [4574] = 4436, + [4575] = 4575, + [4576] = 4395, [4577] = 4577, - [4578] = 4578, - [4579] = 4579, + [4578] = 4395, + [4579] = 4396, [4580] = 4580, [4581] = 4581, - [4582] = 4392, - [4583] = 4583, + [4582] = 4369, + [4583] = 4414, [4584] = 4584, - [4585] = 4392, + [4585] = 4585, [4586] = 4586, - [4587] = 294, - [4588] = 4433, + [4587] = 4393, + [4588] = 4090, [4589] = 4589, - [4590] = 321, - [4591] = 4286, - [4592] = 4592, - [4593] = 331, + [4590] = 4590, + [4591] = 4591, + [4592] = 302, + [4593] = 4593, [4594] = 4594, - [4595] = 4425, - [4596] = 4433, - [4597] = 4597, - [4598] = 4488, - [4599] = 4599, + [4595] = 4595, + [4596] = 4416, + [4597] = 4404, + [4598] = 4404, + [4599] = 4416, [4600] = 4600, - [4601] = 304, + [4601] = 4601, [4602] = 4602, - [4603] = 4460, - [4604] = 4126, - [4605] = 4605, - [4606] = 4545, + [4603] = 4441, + [4604] = 4604, + [4605] = 4414, + [4606] = 4133, [4607] = 4607, - [4608] = 4608, - [4609] = 4427, - [4610] = 4610, + [4608] = 4405, + [4609] = 4416, + [4610] = 4414, [4611] = 4611, - [4612] = 4612, + [4612] = 4391, [4613] = 4613, [4614] = 4614, [4615] = 4392, @@ -9092,386 +9092,386 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4618] = 4618, [4619] = 4619, [4620] = 4620, - [4621] = 4621, - [4622] = 4488, - [4623] = 4618, - [4624] = 4487, - [4625] = 1971, - [4626] = 4626, + [4621] = 4444, + [4622] = 4622, + [4623] = 4436, + [4624] = 4441, + [4625] = 4625, + [4626] = 4404, [4627] = 4627, [4628] = 4628, - [4629] = 4191, - [4630] = 4411, + [4629] = 311, + [4630] = 4630, [4631] = 4631, - [4632] = 4632, + [4632] = 4405, [4633] = 4633, - [4634] = 4425, - [4635] = 334, - [4636] = 4187, - [4637] = 4396, - [4638] = 4548, - [4639] = 4199, - [4640] = 4180, - [4641] = 4641, - [4642] = 4173, + [4634] = 4577, + [4635] = 4635, + [4636] = 4410, + [4637] = 4637, + [4638] = 4416, + [4639] = 4388, + [4640] = 4414, + [4641] = 4392, + [4642] = 4642, [4643] = 4643, - [4644] = 4237, - [4645] = 4395, - [4646] = 335, - [4647] = 4277, + [4644] = 4644, + [4645] = 4645, + [4646] = 4646, + [4647] = 4449, [4648] = 4648, [4649] = 4649, - [4650] = 4650, - [4651] = 4388, - [4652] = 4652, - [4653] = 4652, - [4654] = 4654, - [4655] = 4654, - [4656] = 4656, + [4650] = 4444, + [4651] = 4441, + [4652] = 4388, + [4653] = 334, + [4654] = 4155, + [4655] = 4655, + [4656] = 4478, [4657] = 4657, - [4658] = 4658, - [4659] = 4656, - [4660] = 4104, - [4661] = 4661, - [4662] = 1987, - [4663] = 4451, + [4658] = 4655, + [4659] = 4659, + [4660] = 4660, + [4661] = 4477, + [4662] = 4662, + [4663] = 4663, [4664] = 4664, [4665] = 4665, - [4666] = 321, + [4666] = 4666, [4667] = 4667, - [4668] = 4121, + [4668] = 4668, [4669] = 4669, - [4670] = 4656, - [4671] = 4572, + [4670] = 4670, + [4671] = 4663, [4672] = 4672, [4673] = 4673, [4674] = 4674, - [4675] = 930, - [4676] = 4676, - [4677] = 4577, - [4678] = 4678, - [4679] = 4578, - [4680] = 4672, - [4681] = 4661, - [4682] = 4682, - [4683] = 4683, - [4684] = 4684, - [4685] = 4474, + [4675] = 4150, + [4676] = 4670, + [4677] = 4568, + [4678] = 1987, + [4679] = 4662, + [4680] = 4680, + [4681] = 4655, + [4682] = 4455, + [4683] = 4664, + [4684] = 4666, + [4685] = 4465, [4686] = 4686, - [4687] = 4654, - [4688] = 4561, + [4687] = 4687, + [4688] = 4672, [4689] = 4689, - [4690] = 4661, - [4691] = 4658, - [4692] = 4692, - [4693] = 4693, - [4694] = 4652, - [4695] = 4667, - [4696] = 4390, - [4697] = 4664, - [4698] = 4674, - [4699] = 4699, - [4700] = 4700, - [4701] = 4503, - [4702] = 4702, + [4690] = 4117, + [4691] = 4691, + [4692] = 4456, + [4693] = 4662, + [4694] = 4663, + [4695] = 4695, + [4696] = 4696, + [4697] = 4697, + [4698] = 4698, + [4699] = 4667, + [4700] = 4667, + [4701] = 4662, + [4702] = 4663, [4703] = 4703, - [4704] = 4633, - [4705] = 4467, - [4706] = 4686, - [4707] = 4661, - [4708] = 4708, - [4709] = 4555, - [4710] = 4710, + [4704] = 4556, + [4705] = 4567, + [4706] = 4558, + [4707] = 4707, + [4708] = 4593, + [4709] = 4594, + [4710] = 4480, [4711] = 4711, - [4712] = 4712, + [4712] = 4595, [4713] = 4713, - [4714] = 4708, - [4715] = 1997, - [4716] = 4683, - [4717] = 4664, - [4718] = 4718, - [4719] = 4661, - [4720] = 4673, - [4721] = 4664, - [4722] = 4703, - [4723] = 4708, - [4724] = 4686, - [4725] = 4397, - [4726] = 4673, - [4727] = 4699, - [4728] = 4728, - [4729] = 4654, - [4730] = 4597, - [4731] = 4731, - [4732] = 4732, + [4714] = 4668, + [4715] = 4655, + [4716] = 4457, + [4717] = 4717, + [4718] = 4668, + [4719] = 4555, + [4720] = 4357, + [4721] = 4721, + [4722] = 4722, + [4723] = 4723, + [4724] = 4703, + [4725] = 4601, + [4726] = 4659, + [4727] = 4484, + [4728] = 4672, + [4729] = 4586, + [4730] = 4723, + [4731] = 4691, + [4732] = 4722, [4733] = 4733, [4734] = 4734, - [4735] = 4699, - [4736] = 4664, - [4737] = 4661, - [4738] = 4594, - [4739] = 4739, - [4740] = 4674, - [4741] = 4684, - [4742] = 4742, - [4743] = 4676, - [4744] = 4656, - [4745] = 4710, - [4746] = 4574, - [4747] = 4673, - [4748] = 4748, - [4749] = 4708, - [4750] = 4674, - [4751] = 4699, - [4752] = 4686, - [4753] = 4674, - [4754] = 4693, - [4755] = 4733, - [4756] = 4602, + [4735] = 4734, + [4736] = 4663, + [4737] = 4660, + [4738] = 4662, + [4739] = 4600, + [4740] = 4740, + [4741] = 4741, + [4742] = 4666, + [4743] = 4584, + [4744] = 4580, + [4745] = 4668, + [4746] = 4673, + [4747] = 4747, + [4748] = 4664, + [4749] = 4520, + [4750] = 4668, + [4751] = 4672, + [4752] = 4667, + [4753] = 308, + [4754] = 4664, + [4755] = 4655, + [4756] = 4415, [4757] = 4757, - [4758] = 4658, - [4759] = 4627, - [4760] = 4703, - [4761] = 4734, - [4762] = 4731, - [4763] = 4733, - [4764] = 4764, - [4765] = 4524, - [4766] = 331, - [4767] = 4718, - [4768] = 4389, - [4769] = 4769, - [4770] = 4770, - [4771] = 4605, - [4772] = 4731, - [4773] = 4673, - [4774] = 4652, - [4775] = 4654, - [4776] = 4656, - [4777] = 4669, - [4778] = 4678, + [4758] = 4758, + [4759] = 4723, + [4760] = 4672, + [4761] = 4672, + [4762] = 4703, + [4763] = 4655, + [4764] = 4733, + [4765] = 4734, + [4766] = 4655, + [4767] = 4667, + [4768] = 4669, + [4769] = 4666, + [4770] = 4722, + [4771] = 4668, + [4772] = 935, + [4773] = 4689, + [4774] = 4774, + [4775] = 316, + [4776] = 4776, + [4777] = 4777, + [4778] = 4778, [4779] = 4779, [4780] = 4780, - [4781] = 4664, + [4781] = 4668, [4782] = 4782, - [4783] = 4657, - [4784] = 4784, - [4785] = 4674, - [4786] = 4673, - [4787] = 4703, - [4788] = 4674, - [4789] = 4789, - [4790] = 4673, - [4791] = 4366, - [4792] = 4792, - [4793] = 4654, - [4794] = 4711, - [4795] = 4731, - [4796] = 4733, - [4797] = 4656, - [4798] = 4475, - [4799] = 4708, - [4800] = 4403, - [4801] = 4497, - [4802] = 4703, - [4803] = 4673, - [4804] = 4804, - [4805] = 4805, - [4806] = 4686, - [4807] = 4731, - [4808] = 4808, - [4809] = 4656, - [4810] = 4351, - [4811] = 4654, - [4812] = 4674, - [4813] = 4658, - [4814] = 4814, - [4815] = 4128, - [4816] = 4686, - [4817] = 4658, - [4818] = 4703, - [4819] = 4391, + [4783] = 4680, + [4784] = 4733, + [4785] = 4722, + [4786] = 4703, + [4787] = 4723, + [4788] = 4581, + [4789] = 4703, + [4790] = 4790, + [4791] = 4722, + [4792] = 4672, + [4793] = 4663, + [4794] = 4662, + [4795] = 4655, + [4796] = 4664, + [4797] = 4733, + [4798] = 4734, + [4799] = 4670, + [4800] = 4666, + [4801] = 4722, + [4802] = 4667, + [4803] = 4687, + [4804] = 4703, + [4805] = 4667, + [4806] = 4488, + [4807] = 4807, + [4808] = 4723, + [4809] = 4733, + [4810] = 4672, + [4811] = 4733, + [4812] = 4812, + [4813] = 4813, + [4814] = 4667, + [4815] = 4670, + [4816] = 4672, + [4817] = 4119, + [4818] = 4734, + [4819] = 4819, [4820] = 4820, - [4821] = 4708, - [4822] = 4656, - [4823] = 4673, - [4824] = 4824, - [4825] = 4557, - [4826] = 4654, - [4827] = 4769, - [4828] = 4664, - [4829] = 4661, - [4830] = 4657, - [4831] = 4699, - [4832] = 4779, - [4833] = 4748, - [4834] = 4362, - [4835] = 4547, - [4836] = 4742, - [4837] = 4674, - [4838] = 4656, - [4839] = 4657, - [4840] = 4657, - [4841] = 4657, - [4842] = 4731, - [4843] = 4654, - [4844] = 4733, - [4845] = 4652, - [4846] = 4846, - [4847] = 4847, + [4821] = 4740, + [4822] = 4721, + [4823] = 4823, + [4824] = 4713, + [4825] = 4667, + [4826] = 4723, + [4827] = 4655, + [4828] = 4674, + [4829] = 4711, + [4830] = 4698, + [4831] = 4680, + [4832] = 4662, + [4833] = 4668, + [4834] = 4834, + [4835] = 4665, + [4836] = 4663, + [4837] = 4474, + [4838] = 4369, + [4839] = 4839, + [4840] = 4680, + [4841] = 4680, + [4842] = 4670, + [4843] = 4680, + [4844] = 4820, + [4845] = 4686, + [4846] = 4668, + [4847] = 4356, [4848] = 4848, [4849] = 4849, - [4850] = 309, - [4851] = 312, + [4850] = 333, + [4851] = 336, [4852] = 4852, - [4853] = 4853, + [4853] = 4852, [4854] = 4854, [4855] = 4855, [4856] = 4856, - [4857] = 4855, + [4857] = 4857, [4858] = 4858, [4859] = 4859, - [4860] = 4855, + [4860] = 4860, [4861] = 4861, - [4862] = 4862, - [4863] = 2361, - [4864] = 2363, - [4865] = 4865, - [4866] = 4866, + [4862] = 4852, + [4863] = 4863, + [4864] = 4864, + [4865] = 2416, + [4866] = 2425, [4867] = 4867, [4868] = 4868, [4869] = 4869, - [4870] = 1191, - [4871] = 1185, + [4870] = 4870, + [4871] = 1141, [4872] = 4872, - [4873] = 299, - [4874] = 1138, - [4875] = 1132, - [4876] = 4876, - [4877] = 4877, - [4878] = 296, - [4879] = 1055, - [4880] = 1111, - [4881] = 4881, - [4882] = 1114, - [4883] = 4883, - [4884] = 1153, - [4885] = 4855, - [4886] = 4407, + [4873] = 1060, + [4874] = 4874, + [4875] = 296, + [4876] = 1168, + [4877] = 1160, + [4878] = 4878, + [4879] = 4879, + [4880] = 295, + [4881] = 988, + [4882] = 1095, + [4883] = 1091, + [4884] = 1089, + [4885] = 4885, + [4886] = 1082, [4887] = 4887, - [4888] = 4888, - [4889] = 4889, - [4890] = 1207, - [4891] = 1168, + [4888] = 1064, + [4889] = 4852, + [4890] = 4631, + [4891] = 4891, [4892] = 4892, [4893] = 4893, - [4894] = 1000, - [4895] = 1172, - [4896] = 1187, - [4897] = 1208, - [4898] = 4855, - [4899] = 1209, - [4900] = 4900, - [4901] = 1202, - [4902] = 1200, - [4903] = 1192, - [4904] = 1059, - [4905] = 1181, - [4906] = 1144, - [4907] = 4907, - [4908] = 4908, - [4909] = 979, - [4910] = 4847, + [4894] = 1011, + [4895] = 1036, + [4896] = 4896, + [4897] = 4897, + [4898] = 1030, + [4899] = 1185, + [4900] = 1167, + [4901] = 1135, + [4902] = 4852, + [4903] = 1109, + [4904] = 4904, + [4905] = 1025, + [4906] = 1028, + [4907] = 1031, + [4908] = 1044, + [4909] = 1009, + [4910] = 1002, [4911] = 4911, [4912] = 4912, - [4913] = 974, - [4914] = 975, - [4915] = 1135, - [4916] = 1021, - [4917] = 4917, - [4918] = 1117, - [4919] = 1097, - [4920] = 1094, - [4921] = 1092, - [4922] = 1089, - [4923] = 1084, - [4924] = 1074, - [4925] = 1073, - [4926] = 1064, - [4927] = 1063, - [4928] = 1036, - [4929] = 1052, - [4930] = 1019, - [4931] = 1012, - [4932] = 1014, - [4933] = 4933, - [4934] = 4934, - [4935] = 1040, - [4936] = 4936, + [4913] = 1012, + [4914] = 4849, + [4915] = 4915, + [4916] = 4916, + [4917] = 1063, + [4918] = 1077, + [4919] = 1156, + [4920] = 1081, + [4921] = 4921, + [4922] = 1083, + [4923] = 1086, + [4924] = 1087, + [4925] = 1088, + [4926] = 1099, + [4927] = 1113, + [4928] = 1118, + [4929] = 1021, + [4930] = 1152, + [4931] = 1098, + [4932] = 1125, + [4933] = 987, + [4934] = 985, + [4935] = 1172, + [4936] = 1173, [4937] = 4937, - [4938] = 1032, - [4939] = 1028, - [4940] = 1071, - [4941] = 1077, - [4942] = 1080, - [4943] = 4943, - [4944] = 4944, - [4945] = 1088, - [4946] = 1103, + [4938] = 4938, + [4939] = 1176, + [4940] = 4940, + [4941] = 4941, + [4942] = 1177, + [4943] = 1178, + [4944] = 1180, + [4945] = 1181, + [4946] = 1191, [4947] = 4947, [4948] = 4948, - [4949] = 1154, - [4950] = 4950, + [4949] = 1206, + [4950] = 1208, [4951] = 4951, - [4952] = 1158, - [4953] = 4953, + [4952] = 4952, + [4953] = 1214, [4954] = 4954, - [4955] = 1167, - [4956] = 1182, + [4955] = 4955, + [4956] = 1048, [4957] = 4957, [4958] = 4958, - [4959] = 1043, - [4960] = 4960, - [4961] = 1195, + [4959] = 1057, + [4960] = 1054, + [4961] = 4961, [4962] = 4962, - [4963] = 1070, - [4964] = 1147, - [4965] = 4965, + [4963] = 1023, + [4964] = 4964, + [4965] = 1022, [4966] = 4966, - [4967] = 4967, - [4968] = 4614, + [4967] = 974, + [4968] = 1097, [4969] = 4969, [4970] = 4970, [4971] = 4971, - [4972] = 973, - [4973] = 1143, + [4972] = 4437, + [4973] = 4973, [4974] = 4974, - [4975] = 1142, - [4976] = 4976, - [4977] = 4977, - [4978] = 4911, - [4979] = 4979, + [4975] = 4975, + [4976] = 1101, + [4977] = 1216, + [4978] = 4978, + [4979] = 1207, [4980] = 4980, - [4981] = 1102, - [4982] = 1093, - [4983] = 1085, - [4984] = 1022, - [4985] = 1030, - [4986] = 1198, - [4987] = 1215, - [4988] = 1213, - [4989] = 4989, - [4990] = 4990, - [4991] = 1211, - [4992] = 1210, - [4993] = 1199, + [4981] = 4915, + [4982] = 4982, + [4983] = 4983, + [4984] = 4984, + [4985] = 1179, + [4986] = 1166, + [4987] = 1161, + [4988] = 1204, + [4989] = 1105, + [4990] = 1128, + [4991] = 1174, + [4992] = 1120, + [4993] = 4993, [4994] = 4994, - [4995] = 4911, - [4996] = 4996, + [4995] = 1205, + [4996] = 1043, [4997] = 4997, [4998] = 4998, - [4999] = 4999, - [5000] = 1197, + [4999] = 4915, + [5000] = 5000, [5001] = 5001, [5002] = 5002, [5003] = 5003, @@ -9479,93 +9479,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5005] = 5005, [5006] = 5006, [5007] = 5007, - [5008] = 5004, + [5008] = 5008, [5009] = 5009, - [5010] = 5010, + [5010] = 5005, [5011] = 5011, [5012] = 5012, [5013] = 5013, [5014] = 5014, - [5015] = 5013, - [5016] = 5001, + [5015] = 5015, + [5016] = 5015, [5017] = 5017, - [5018] = 5018, + [5018] = 5000, [5019] = 5019, [5020] = 5020, - [5021] = 4976, - [5022] = 4970, - [5023] = 5001, - [5024] = 5013, - [5025] = 5025, - [5026] = 5026, - [5027] = 4855, - [5028] = 5028, + [5021] = 5021, + [5022] = 5022, + [5023] = 5015, + [5024] = 4971, + [5025] = 5000, + [5026] = 4969, + [5027] = 5027, + [5028] = 4852, [5029] = 5029, [5030] = 5030, - [5031] = 4976, - [5032] = 4970, - [5033] = 5033, - [5034] = 4954, + [5031] = 5031, + [5032] = 5032, + [5033] = 4971, + [5034] = 4969, [5035] = 5035, - [5036] = 5036, - [5037] = 5030, - [5038] = 5029, - [5039] = 5007, - [5040] = 5006, - [5041] = 4960, - [5042] = 4953, - [5043] = 5043, - [5044] = 5044, + [5036] = 4954, + [5037] = 5037, + [5038] = 5038, + [5039] = 5032, + [5040] = 5031, + [5041] = 5009, + [5042] = 5008, + [5043] = 4964, + [5044] = 4957, [5045] = 5045, - [5046] = 5046, + [5046] = 4849, [5047] = 5047, - [5048] = 4979, + [5048] = 5048, [5049] = 5049, [5050] = 5050, - [5051] = 4847, - [5052] = 5052, - [5053] = 5035, - [5054] = 5036, - [5055] = 5030, - [5056] = 5029, - [5057] = 5057, - [5058] = 5007, - [5059] = 5006, - [5060] = 4960, - [5061] = 4953, - [5062] = 5004, - [5063] = 5063, - [5064] = 4847, - [5065] = 5065, - [5066] = 4868, + [5051] = 5051, + [5052] = 4983, + [5053] = 5053, + [5054] = 5005, + [5055] = 5037, + [5056] = 5038, + [5057] = 5032, + [5058] = 5031, + [5059] = 5059, + [5060] = 5009, + [5061] = 5008, + [5062] = 4964, + [5063] = 4957, + [5064] = 5064, + [5065] = 4867, + [5066] = 4849, [5067] = 5067, [5068] = 5068, - [5069] = 5004, + [5069] = 5069, [5070] = 5070, [5071] = 5071, [5072] = 5072, - [5073] = 4852, - [5074] = 5036, - [5075] = 5035, - [5076] = 5036, - [5077] = 4954, - [5078] = 5030, - [5079] = 5025, - [5080] = 4848, - [5081] = 5029, - [5082] = 5082, - [5083] = 5007, - [5084] = 5013, - [5085] = 5006, - [5086] = 5086, - [5087] = 4960, - [5088] = 4953, - [5089] = 5089, + [5073] = 5005, + [5074] = 5074, + [5075] = 4857, + [5076] = 5037, + [5077] = 5038, + [5078] = 5032, + [5079] = 5031, + [5080] = 5080, + [5081] = 4954, + [5082] = 5009, + [5083] = 5027, + [5084] = 5084, + [5085] = 5008, + [5086] = 5038, + [5087] = 4964, + [5088] = 5015, + [5089] = 4957, [5090] = 5090, - [5091] = 4853, - [5092] = 4847, - [5093] = 5093, - [5094] = 5094, + [5091] = 5091, + [5092] = 5092, + [5093] = 4859, + [5094] = 4849, [5095] = 5095, [5096] = 5096, [5097] = 5097, @@ -9578,45 +9578,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5104] = 5104, [5105] = 5105, [5106] = 5106, - [5107] = 5001, + [5107] = 5107, [5108] = 5108, [5109] = 5109, [5110] = 5110, [5111] = 5111, - [5112] = 5112, - [5113] = 4868, + [5112] = 5000, + [5113] = 5113, [5114] = 5114, - [5115] = 5035, - [5116] = 4852, - [5117] = 4848, - [5118] = 5118, - [5119] = 5119, - [5120] = 5035, - [5121] = 5036, - [5122] = 5030, - [5123] = 5029, - [5124] = 5124, - [5125] = 5007, - [5126] = 5006, - [5127] = 4960, - [5128] = 4953, - [5129] = 5129, - [5130] = 4847, - [5131] = 5131, + [5115] = 4867, + [5116] = 5116, + [5117] = 5037, + [5118] = 5074, + [5119] = 4857, + [5120] = 5120, + [5121] = 5037, + [5122] = 5038, + [5123] = 5123, + [5124] = 5032, + [5125] = 5031, + [5126] = 5126, + [5127] = 5127, + [5128] = 5009, + [5129] = 5008, + [5130] = 4964, + [5131] = 4957, [5132] = 5132, - [5133] = 5133, + [5133] = 4849, [5134] = 5134, [5135] = 5135, [5136] = 5136, [5137] = 5137, - [5138] = 4976, + [5138] = 5138, [5139] = 5139, - [5140] = 4970, + [5140] = 5140, [5141] = 5141, [5142] = 5142, - [5143] = 5143, + [5143] = 4971, [5144] = 5144, - [5145] = 5145, + [5145] = 4969, [5146] = 5146, [5147] = 5147, [5148] = 5148, @@ -9632,76 +9632,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5158] = 5158, [5159] = 5159, [5160] = 5160, - [5161] = 4954, - [5162] = 5162, + [5161] = 5161, + [5162] = 4915, [5163] = 5163, - [5164] = 4911, + [5164] = 5164, [5165] = 5165, - [5166] = 4911, + [5166] = 4954, [5167] = 5167, [5168] = 5168, - [5169] = 5159, + [5169] = 4915, [5170] = 5170, - [5171] = 5171, + [5171] = 5153, [5172] = 5172, [5173] = 5173, [5174] = 5174, - [5175] = 5162, + [5175] = 5175, [5176] = 5176, - [5177] = 5119, - [5178] = 5118, - [5179] = 5035, + [5177] = 5164, + [5178] = 5178, + [5179] = 5123, [5180] = 5180, - [5181] = 5036, - [5182] = 5182, - [5183] = 5095, - [5184] = 5097, + [5181] = 5120, + [5182] = 5037, + [5183] = 5038, + [5184] = 5184, [5185] = 5185, - [5186] = 5047, - [5187] = 5046, - [5188] = 5188, - [5189] = 5189, - [5190] = 5033, - [5191] = 5030, - [5192] = 5192, - [5193] = 5193, - [5194] = 5029, + [5186] = 5050, + [5187] = 5187, + [5188] = 5097, + [5189] = 5099, + [5190] = 5045, + [5191] = 5191, + [5192] = 5035, + [5193] = 5032, + [5194] = 5031, [5195] = 5195, [5196] = 5196, - [5197] = 4868, + [5197] = 5197, [5198] = 5198, [5199] = 5199, [5200] = 5200, [5201] = 5201, - [5202] = 5007, - [5203] = 5203, + [5202] = 4867, + [5203] = 5009, [5204] = 5204, - [5205] = 5006, - [5206] = 5206, + [5205] = 5205, + [5206] = 5008, [5207] = 5207, - [5208] = 4461, - [5209] = 5209, - [5210] = 4852, - [5211] = 4974, + [5208] = 5208, + [5209] = 4394, + [5210] = 5210, + [5211] = 4978, [5212] = 5212, [5213] = 5213, - [5214] = 4848, - [5215] = 4960, - [5216] = 4953, - [5217] = 5217, - [5218] = 4853, - [5219] = 5219, + [5214] = 5214, + [5215] = 5074, + [5216] = 5216, + [5217] = 4964, + [5218] = 4957, + [5219] = 4857, [5220] = 5220, - [5221] = 5221, - [5222] = 5173, + [5221] = 4859, + [5222] = 5222, [5223] = 5223, [5224] = 5224, - [5225] = 5137, - [5226] = 5226, - [5227] = 5227, + [5225] = 5225, + [5226] = 5175, + [5227] = 5074, [5228] = 5228, [5229] = 5229, - [5230] = 5230, + [5230] = 5141, [5231] = 5231, [5232] = 5232, [5233] = 5233, @@ -9712,131 +9712,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5238] = 5238, [5239] = 5239, [5240] = 5240, - [5241] = 5155, + [5241] = 5241, [5242] = 5242, [5243] = 5243, [5244] = 5244, [5245] = 5245, - [5246] = 5246, + [5246] = 5158, [5247] = 5247, [5248] = 5248, [5249] = 5249, - [5250] = 5004, - [5251] = 5251, + [5250] = 5250, + [5251] = 5005, [5252] = 5252, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5013, - [5257] = 5257, - [5258] = 5001, - [5259] = 5259, - [5260] = 5168, + [5256] = 5256, + [5257] = 5015, + [5258] = 5258, + [5259] = 5000, + [5260] = 5260, [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 4976, - [5266] = 5266, - [5267] = 5267, + [5265] = 5172, + [5266] = 4971, + [5267] = 4819, [5268] = 5268, [5269] = 5269, [5270] = 5270, - [5271] = 4970, - [5272] = 4954, + [5271] = 4969, + [5272] = 5272, [5273] = 5273, - [5274] = 4853, + [5274] = 5274, [5275] = 5275, - [5276] = 4782, + [5276] = 5276, [5277] = 5277, - [5278] = 5278, - [5279] = 5279, - [5280] = 5280, - [5281] = 5226, - [5282] = 4784, + [5278] = 4954, + [5279] = 4859, + [5280] = 4823, + [5281] = 4834, + [5282] = 5282, [5283] = 5283, [5284] = 5284, [5285] = 5285, - [5286] = 4789, + [5286] = 5269, [5287] = 5287, [5288] = 5288, - [5289] = 5158, + [5289] = 5289, [5290] = 5290, [5291] = 5291, - [5292] = 4854, + [5292] = 5292, [5293] = 5293, - [5294] = 5294, + [5294] = 5147, [5295] = 5295, [5296] = 5296, - [5297] = 5297, + [5297] = 4858, [5298] = 5298, - [5299] = 5170, + [5299] = 5299, [5300] = 5300, - [5301] = 5301, + [5301] = 5173, [5302] = 5302, [5303] = 5303, - [5304] = 4868, - [5305] = 5305, + [5304] = 5304, + [5305] = 4867, [5306] = 5306, - [5307] = 4852, - [5308] = 4848, + [5307] = 5307, + [5308] = 5074, [5309] = 5309, - [5310] = 4522, - [5311] = 4523, + [5310] = 4857, + [5311] = 5311, [5312] = 5312, - [5313] = 5285, - [5314] = 5314, - [5315] = 5315, + [5313] = 4386, + [5314] = 4522, + [5315] = 5290, [5316] = 5316, [5317] = 5317, - [5318] = 4665, + [5318] = 5318, [5319] = 5319, [5320] = 5320, - [5321] = 5321, + [5321] = 4717, [5322] = 5322, [5323] = 5323, [5324] = 5324, [5325] = 5325, [5326] = 5326, - [5327] = 4853, - [5328] = 5328, + [5327] = 5327, + [5328] = 4859, [5329] = 5329, [5330] = 5330, [5331] = 5331, [5332] = 5332, [5333] = 5333, - [5334] = 981, + [5334] = 5334, [5335] = 5335, - [5336] = 4853, - [5337] = 998, - [5338] = 999, - [5339] = 5339, - [5340] = 1006, + [5336] = 4859, + [5337] = 5337, + [5338] = 5338, + [5339] = 994, + [5340] = 4857, [5341] = 5341, - [5342] = 5342, - [5343] = 4848, - [5344] = 4852, - [5345] = 5345, - [5346] = 4868, + [5342] = 983, + [5343] = 982, + [5344] = 5074, + [5345] = 981, + [5346] = 5346, [5347] = 5347, - [5348] = 5348, + [5348] = 4867, [5349] = 5349, [5350] = 5350, [5351] = 5351, - [5352] = 4954, - [5353] = 5353, - [5354] = 4970, - [5355] = 4976, + [5352] = 5352, + [5353] = 4954, + [5354] = 5354, + [5355] = 4969, [5356] = 5356, [5357] = 5357, - [5358] = 5001, + [5358] = 4971, [5359] = 5359, - [5360] = 5360, + [5360] = 5000, [5361] = 5361, [5362] = 5362, - [5363] = 5004, + [5363] = 5363, [5364] = 5364, - [5365] = 5365, + [5365] = 5005, [5366] = 5366, [5367] = 5367, [5368] = 5368, @@ -9854,273 +9854,273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5380] = 5380, [5381] = 5381, [5382] = 5382, - [5383] = 5374, + [5383] = 5383, [5384] = 5384, - [5385] = 5375, - [5386] = 5375, - [5387] = 5374, - [5388] = 5382, - [5389] = 5381, - [5390] = 5378, - [5391] = 5391, - [5392] = 5376, - [5393] = 5373, - [5394] = 5379, - [5395] = 5380, - [5396] = 5384, - [5397] = 5397, - [5398] = 5374, - [5399] = 5375, + [5385] = 5379, + [5386] = 5386, + [5387] = 5380, + [5388] = 5380, + [5389] = 5379, + [5390] = 5384, + [5391] = 5383, + [5392] = 5381, + [5393] = 5377, + [5394] = 5394, + [5395] = 5375, + [5396] = 5378, + [5397] = 5382, + [5398] = 5398, + [5399] = 5399, [5400] = 5400, - [5401] = 5401, - [5402] = 5378, - [5403] = 5376, - [5404] = 954, - [5405] = 5405, + [5401] = 5386, + [5402] = 5379, + [5403] = 5380, + [5404] = 5404, + [5405] = 970, [5406] = 5406, - [5407] = 5374, - [5408] = 5375, - [5409] = 5378, - [5410] = 5376, - [5411] = 5391, - [5412] = 5374, - [5413] = 5413, - [5414] = 5375, - [5415] = 5378, - [5416] = 5376, - [5417] = 5374, - [5418] = 5418, - [5419] = 5419, - [5420] = 5382, + [5407] = 5381, + [5408] = 5377, + [5409] = 5379, + [5410] = 5380, + [5411] = 5381, + [5412] = 5377, + [5413] = 5394, + [5414] = 5379, + [5415] = 5380, + [5416] = 5381, + [5417] = 5417, + [5418] = 5377, + [5419] = 5379, + [5420] = 5380, [5421] = 5381, - [5422] = 5375, - [5423] = 5378, - [5424] = 5376, - [5425] = 5374, - [5426] = 5375, - [5427] = 5378, - [5428] = 5376, - [5429] = 5429, - [5430] = 5374, - [5431] = 5375, - [5432] = 5432, - [5433] = 5378, - [5434] = 5376, - [5435] = 5378, - [5436] = 5376, + [5422] = 5377, + [5423] = 5423, + [5424] = 5424, + [5425] = 5384, + [5426] = 5383, + [5427] = 5379, + [5428] = 5380, + [5429] = 5381, + [5430] = 5377, + [5431] = 5431, + [5432] = 5379, + [5433] = 5380, + [5434] = 5381, + [5435] = 5435, + [5436] = 5377, [5437] = 5437, - [5438] = 5380, - [5439] = 5379, - [5440] = 5440, - [5441] = 5441, + [5438] = 5382, + [5439] = 5378, + [5440] = 5381, + [5441] = 5377, [5442] = 5442, [5443] = 5443, [5444] = 5444, [5445] = 5445, [5446] = 5446, - [5447] = 5377, - [5448] = 5448, - [5449] = 5391, + [5447] = 5447, + [5448] = 5376, + [5449] = 5449, [5450] = 5450, - [5451] = 5451, - [5452] = 5405, - [5453] = 995, - [5454] = 5373, - [5455] = 5455, - [5456] = 5456, + [5451] = 5394, + [5452] = 5452, + [5453] = 5453, + [5454] = 5406, + [5455] = 5375, + [5456] = 999, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5373, - [5462] = 5413, - [5463] = 5463, + [5461] = 5461, + [5462] = 5462, + [5463] = 5417, [5464] = 5464, - [5465] = 5376, - [5466] = 5378, - [5467] = 5445, - [5468] = 5381, - [5469] = 5382, - [5470] = 5419, - [5471] = 5418, - [5472] = 5450, - [5473] = 5384, - [5474] = 5377, - [5475] = 5475, - [5476] = 5476, - [5477] = 5451, - [5478] = 5375, - [5479] = 5374, - [5480] = 5405, - [5481] = 5481, - [5482] = 5482, - [5483] = 5443, - [5484] = 5441, - [5485] = 5440, + [5465] = 5465, + [5466] = 5375, + [5467] = 5447, + [5468] = 5377, + [5469] = 5381, + [5470] = 5470, + [5471] = 5383, + [5472] = 5384, + [5473] = 5424, + [5474] = 5423, + [5475] = 5452, + [5476] = 2078, + [5477] = 5386, + [5478] = 5478, + [5479] = 5376, + [5480] = 5453, + [5481] = 5406, + [5482] = 5380, + [5483] = 5379, + [5484] = 5484, + [5485] = 5485, [5486] = 5486, [5487] = 5487, - [5488] = 5379, - [5489] = 5380, - [5490] = 5490, - [5491] = 5445, - [5492] = 5391, - [5493] = 5493, - [5494] = 5450, - [5495] = 5429, + [5488] = 5445, + [5489] = 5444, + [5490] = 5443, + [5491] = 5491, + [5492] = 5447, + [5493] = 5378, + [5494] = 5382, + [5495] = 5394, [5496] = 5496, - [5497] = 5432, - [5498] = 5498, - [5499] = 5405, - [5500] = 5445, + [5497] = 5431, + [5498] = 5452, + [5499] = 5435, + [5500] = 5500, [5501] = 5501, - [5502] = 5450, - [5503] = 5432, - [5504] = 5413, - [5505] = 5380, - [5506] = 5379, - [5507] = 5440, - [5508] = 5441, - [5509] = 5443, - [5510] = 5429, - [5511] = 5511, - [5512] = 5377, - [5513] = 5413, - [5514] = 4996, - [5515] = 5515, - [5516] = 2021, - [5517] = 5486, - [5518] = 5450, - [5519] = 5481, - [5520] = 5520, - [5521] = 5429, - [5522] = 5522, - [5523] = 5429, - [5524] = 5432, - [5525] = 5525, - [5526] = 5432, - [5527] = 5527, + [5502] = 5502, + [5503] = 5447, + [5504] = 5406, + [5505] = 5452, + [5506] = 5382, + [5507] = 5378, + [5508] = 5435, + [5509] = 5417, + [5510] = 5443, + [5511] = 5444, + [5512] = 5445, + [5513] = 5513, + [5514] = 5376, + [5515] = 5431, + [5516] = 5417, + [5517] = 4998, + [5518] = 5518, + [5519] = 2027, + [5520] = 5485, + [5521] = 5452, + [5522] = 5484, + [5523] = 5523, + [5524] = 5524, + [5525] = 5431, + [5526] = 5431, + [5527] = 5435, [5528] = 5528, [5529] = 5529, [5530] = 5530, - [5531] = 5380, - [5532] = 5373, - [5533] = 5379, - [5534] = 5534, - [5535] = 5440, - [5536] = 5441, + [5531] = 5435, + [5532] = 5375, + [5533] = 5533, + [5534] = 5382, + [5535] = 5378, + [5536] = 5536, [5537] = 5443, - [5538] = 5377, - [5539] = 5539, - [5540] = 5380, - [5541] = 5373, - [5542] = 5379, - [5543] = 5440, - [5544] = 5441, + [5538] = 5538, + [5539] = 5444, + [5540] = 5445, + [5541] = 5541, + [5542] = 5376, + [5543] = 5382, + [5544] = 5378, [5545] = 5443, - [5546] = 5376, - [5547] = 5378, - [5548] = 5413, - [5549] = 5549, - [5550] = 5550, + [5546] = 5375, + [5547] = 5444, + [5548] = 5445, + [5549] = 5377, + [5550] = 5381, [5551] = 5551, - [5552] = 5376, - [5553] = 5378, - [5554] = 5445, - [5555] = 5555, + [5552] = 5552, + [5553] = 5553, + [5554] = 5417, + [5555] = 5377, [5556] = 5381, - [5557] = 5382, - [5558] = 5377, - [5559] = 5419, - [5560] = 5397, - [5561] = 5418, - [5562] = 5381, - [5563] = 5382, - [5564] = 5419, - [5565] = 5384, - [5566] = 5418, - [5567] = 4999, - [5568] = 5522, - [5569] = 2083, - [5570] = 5570, - [5571] = 5375, - [5572] = 5384, - [5573] = 5374, - [5574] = 5373, - [5575] = 5376, - [5576] = 5576, - [5577] = 5378, - [5578] = 5375, - [5579] = 5374, - [5580] = 5549, - [5581] = 5481, - [5582] = 5381, - [5583] = 5382, - [5584] = 294, - [5585] = 5405, - [5586] = 5419, - [5587] = 305, - [5588] = 307, - [5589] = 5418, - [5590] = 5481, - [5591] = 1015, - [5592] = 1018, - [5593] = 5444, - [5594] = 5481, - [5595] = 5384, - [5596] = 2040, - [5597] = 5576, - [5598] = 5391, - [5599] = 4407, - [5600] = 5375, - [5601] = 5374, - [5602] = 5602, - [5603] = 5603, - [5604] = 5604, + [5557] = 5447, + [5558] = 5558, + [5559] = 5383, + [5560] = 5384, + [5561] = 5376, + [5562] = 5424, + [5563] = 5423, + [5564] = 5398, + [5565] = 5383, + [5566] = 5384, + [5567] = 5386, + [5568] = 5424, + [5569] = 5423, + [5570] = 5002, + [5571] = 5524, + [5572] = 2083, + [5573] = 5573, + [5574] = 5386, + [5575] = 5380, + [5576] = 5379, + [5577] = 5375, + [5578] = 5377, + [5579] = 5579, + [5580] = 5381, + [5581] = 5380, + [5582] = 5379, + [5583] = 5551, + [5584] = 5484, + [5585] = 5383, + [5586] = 5384, + [5587] = 302, + [5588] = 5424, + [5589] = 322, + [5590] = 303, + [5591] = 5406, + [5592] = 5423, + [5593] = 5484, + [5594] = 5446, + [5595] = 1008, + [5596] = 973, + [5597] = 5484, + [5598] = 5386, + [5599] = 2057, + [5600] = 5394, + [5601] = 5579, + [5602] = 4631, + [5603] = 5380, + [5604] = 5379, [5605] = 5605, [5606] = 5606, [5607] = 5607, [5608] = 5608, [5609] = 5609, - [5610] = 2104, - [5611] = 5611, - [5612] = 2109, - [5613] = 2110, - [5614] = 2126, + [5610] = 5610, + [5611] = 2095, + [5612] = 5612, + [5613] = 5613, + [5614] = 2097, [5615] = 5615, - [5616] = 5616, - [5617] = 5617, - [5618] = 2108, - [5619] = 2107, + [5616] = 2098, + [5617] = 2109, + [5618] = 5618, + [5619] = 5619, [5620] = 5620, - [5621] = 2106, - [5622] = 2103, - [5623] = 5623, - [5624] = 5624, - [5625] = 5625, + [5621] = 2111, + [5622] = 2113, + [5623] = 2115, + [5624] = 2116, + [5625] = 5620, [5626] = 5626, - [5627] = 5617, - [5628] = 2089, + [5627] = 2120, + [5628] = 5628, [5629] = 5629, [5630] = 5630, [5631] = 5631, [5632] = 5632, [5633] = 5633, [5634] = 5634, - [5635] = 5617, - [5636] = 2088, - [5637] = 2387, - [5638] = 2402, - [5639] = 5634, - [5640] = 5605, - [5641] = 5634, - [5642] = 5617, - [5643] = 4451, - [5644] = 5644, - [5645] = 5607, - [5646] = 5646, + [5635] = 5635, + [5636] = 5636, + [5637] = 5620, + [5638] = 2119, + [5639] = 5639, + [5640] = 2398, + [5641] = 2436, + [5642] = 5636, + [5643] = 5608, + [5644] = 5636, + [5645] = 5620, + [5646] = 4520, [5647] = 5647, - [5648] = 5608, - [5649] = 5649, + [5648] = 5609, + [5649] = 5610, [5650] = 5650, [5651] = 5651, [5652] = 5652, @@ -10129,11 +10129,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5655] = 5655, [5656] = 5656, [5657] = 5657, - [5658] = 4407, + [5658] = 4631, [5659] = 5659, - [5660] = 5634, - [5661] = 5661, - [5662] = 5662, + [5660] = 5660, + [5661] = 5636, + [5662] = 5620, [5663] = 5663, [5664] = 5664, [5665] = 5665, @@ -10142,7 +10142,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5668] = 5668, [5669] = 5669, [5670] = 5670, - [5671] = 5617, + [5671] = 5671, [5672] = 5672, [5673] = 5673, [5674] = 5674, @@ -10165,34 +10165,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5691] = 5691, [5692] = 5692, [5693] = 5693, - [5694] = 5605, + [5694] = 5694, [5695] = 5695, [5696] = 5696, - [5697] = 5630, - [5698] = 5607, - [5699] = 5608, - [5700] = 5700, + [5697] = 5697, + [5698] = 5698, + [5699] = 5699, + [5700] = 5608, [5701] = 5701, - [5702] = 5702, + [5702] = 5628, [5703] = 5703, - [5704] = 5704, - [5705] = 5705, - [5706] = 5706, + [5704] = 5609, + [5705] = 5610, + [5706] = 5633, [5707] = 5707, - [5708] = 5631, + [5708] = 5708, [5709] = 5709, [5710] = 5710, - [5711] = 5711, - [5712] = 5649, + [5711] = 5650, + [5712] = 5712, [5713] = 5713, [5714] = 5714, - [5715] = 5632, - [5716] = 5716, + [5715] = 5715, + [5716] = 5634, [5717] = 5717, [5718] = 5718, [5719] = 5719, - [5720] = 5644, - [5721] = 5721, + [5720] = 5720, + [5721] = 5647, [5722] = 5722, [5723] = 5723, [5724] = 5724, @@ -10202,24 +10202,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5728] = 5728, [5729] = 5729, [5730] = 5730, - [5731] = 5654, + [5731] = 5731, [5732] = 5732, - [5733] = 5733, + [5733] = 5653, [5734] = 5734, [5735] = 5735, - [5736] = 5656, - [5737] = 5657, + [5736] = 5736, + [5737] = 5737, [5738] = 5738, - [5739] = 5659, - [5740] = 5740, - [5741] = 5741, - [5742] = 5742, + [5739] = 5739, + [5740] = 5654, + [5741] = 5655, + [5742] = 5660, [5743] = 5743, [5744] = 5744, [5745] = 5745, [5746] = 5746, - [5747] = 5747, - [5748] = 5611, + [5747] = 5613, + [5748] = 5748, [5749] = 5749, [5750] = 5750, [5751] = 5751, @@ -10231,16 +10231,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5757] = 5757, [5758] = 5758, [5759] = 5759, - [5760] = 5760, + [5760] = 5605, [5761] = 5761, [5762] = 5762, [5763] = 5763, - [5764] = 4561, + [5764] = 5764, [5765] = 5765, - [5766] = 5696, - [5767] = 5767, + [5766] = 5766, + [5767] = 4488, [5768] = 5768, - [5769] = 5769, + [5769] = 5698, [5770] = 5770, [5771] = 5771, [5772] = 5772, @@ -10255,196 +10255,196 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5781] = 5781, [5782] = 5782, [5783] = 5783, - [5784] = 5700, + [5784] = 5784, [5785] = 5785, [5786] = 5786, [5787] = 5787, [5788] = 5788, [5789] = 5789, - [5790] = 5790, - [5791] = 5716, + [5790] = 5703, + [5791] = 5791, [5792] = 5792, [5793] = 5793, [5794] = 5794, [5795] = 5795, [5796] = 5796, - [5797] = 5797, - [5798] = 5767, + [5797] = 5719, + [5798] = 5798, [5799] = 5799, [5800] = 5800, - [5801] = 5775, + [5801] = 5801, [5802] = 5802, - [5803] = 978, - [5804] = 5804, - [5805] = 5805, + [5803] = 5778, + [5804] = 5770, + [5805] = 978, [5806] = 5806, - [5807] = 5807, - [5808] = 5799, - [5809] = 5809, + [5807] = 5798, + [5808] = 5808, + [5809] = 5793, [5810] = 5810, - [5811] = 5797, - [5812] = 5800, - [5813] = 5786, - [5814] = 5792, - [5815] = 5789, - [5816] = 5816, - [5817] = 5794, - [5818] = 5634, - [5819] = 5819, - [5820] = 5796, - [5821] = 5821, - [5822] = 5797, - [5823] = 5823, - [5824] = 5799, + [5811] = 5811, + [5812] = 5802, + [5813] = 5813, + [5814] = 5800, + [5815] = 5815, + [5816] = 5788, + [5817] = 5817, + [5818] = 5818, + [5819] = 5791, + [5820] = 5636, + [5821] = 5799, + [5822] = 5822, + [5823] = 5796, + [5824] = 5620, [5825] = 5825, - [5826] = 5826, + [5826] = 5799, [5827] = 5827, [5828] = 5800, - [5829] = 5796, - [5830] = 5830, - [5831] = 5617, - [5832] = 5792, - [5833] = 5789, - [5834] = 5834, + [5829] = 5829, + [5830] = 5802, + [5831] = 5831, + [5832] = 5832, + [5833] = 5833, + [5834] = 5798, [5835] = 5835, [5836] = 5836, [5837] = 5837, - [5838] = 5838, - [5839] = 5732, - [5840] = 5734, - [5841] = 5841, - [5842] = 5741, + [5838] = 5793, + [5839] = 5788, + [5840] = 5840, + [5841] = 980, + [5842] = 5842, [5843] = 5843, - [5844] = 5794, - [5845] = 5845, - [5846] = 5743, - [5847] = 1016, - [5848] = 5751, - [5849] = 5745, - [5850] = 1000, - [5851] = 1006, - [5852] = 5852, - [5853] = 5616, - [5854] = 5786, - [5855] = 5615, - [5856] = 5856, + [5844] = 5737, + [5845] = 5738, + [5846] = 5846, + [5847] = 5796, + [5848] = 5745, + [5849] = 5849, + [5850] = 1011, + [5851] = 5791, + [5852] = 981, + [5853] = 5619, + [5854] = 5639, + [5855] = 5746, + [5856] = 5618, [5857] = 5857, [5858] = 5858, [5859] = 5859, [5860] = 5860, [5861] = 5861, - [5862] = 5751, + [5862] = 5862, [5863] = 5863, [5864] = 5864, [5865] = 5865, - [5866] = 5866, + [5866] = 5639, [5867] = 5867, - [5868] = 5868, - [5869] = 5745, + [5868] = 5746, + [5869] = 5869, [5870] = 5870, - [5871] = 5686, + [5871] = 5871, [5872] = 5872, - [5873] = 5765, + [5873] = 5873, [5874] = 5874, - [5875] = 5875, + [5875] = 5768, [5876] = 5876, - [5877] = 5877, - [5878] = 5767, - [5879] = 5879, - [5880] = 5663, - [5881] = 5758, - [5882] = 5662, - [5883] = 5661, + [5877] = 5686, + [5878] = 5770, + [5879] = 5605, + [5880] = 5880, + [5881] = 5881, + [5882] = 5882, + [5883] = 5883, [5884] = 5884, - [5885] = 5772, - [5886] = 5886, - [5887] = 5774, - [5888] = 5888, - [5889] = 5889, + [5885] = 5885, + [5886] = 5664, + [5887] = 5887, + [5888] = 5663, + [5889] = 5659, [5890] = 5890, - [5891] = 5891, + [5891] = 5776, [5892] = 5892, - [5893] = 4557, - [5894] = 5894, - [5895] = 5767, + [5893] = 5777, + [5894] = 4474, + [5895] = 5895, [5896] = 5896, - [5897] = 5897, - [5898] = 5616, - [5899] = 5615, + [5897] = 5770, + [5898] = 5619, + [5899] = 5618, [5900] = 5900, [5901] = 5901, [5902] = 5902, [5903] = 5903, [5904] = 5904, - [5905] = 5872, - [5906] = 5786, - [5907] = 5794, - [5908] = 5758, - [5909] = 5796, - [5910] = 5725, - [5911] = 5721, - [5912] = 5912, - [5913] = 5717, - [5914] = 5616, - [5915] = 5615, - [5916] = 5624, - [5917] = 5917, - [5918] = 5626, + [5905] = 5867, + [5906] = 5906, + [5907] = 5768, + [5908] = 5791, + [5909] = 5605, + [5910] = 5796, + [5911] = 5743, + [5912] = 5799, + [5913] = 5726, + [5914] = 5718, + [5915] = 5713, + [5916] = 5619, + [5917] = 5618, + [5918] = 5918, [5919] = 5710, - [5920] = 5797, - [5921] = 5765, - [5922] = 5799, - [5923] = 5804, - [5924] = 5686, - [5925] = 5925, - [5926] = 979, - [5927] = 974, - [5928] = 999, - [5929] = 998, - [5930] = 5930, - [5931] = 5800, - [5932] = 5932, - [5933] = 975, - [5934] = 5792, - [5935] = 5789, - [5936] = 2087, - [5937] = 5937, - [5938] = 5938, - [5939] = 5662, - [5940] = 5661, - [5941] = 5941, + [5920] = 5800, + [5921] = 5921, + [5922] = 5630, + [5923] = 5923, + [5924] = 5632, + [5925] = 1009, + [5926] = 5802, + [5927] = 5927, + [5928] = 1002, + [5929] = 5686, + [5930] = 5806, + [5931] = 982, + [5932] = 1012, + [5933] = 5933, + [5934] = 5934, + [5935] = 5798, + [5936] = 5936, + [5937] = 5793, + [5938] = 5664, + [5939] = 5788, + [5940] = 5663, + [5941] = 5659, [5942] = 5942, [5943] = 5943, [5944] = 5944, - [5945] = 5872, - [5946] = 5946, - [5947] = 5947, + [5945] = 5867, + [5946] = 5159, + [5947] = 2118, [5948] = 5948, - [5949] = 5156, + [5949] = 5745, [5950] = 5950, - [5951] = 5605, - [5952] = 5743, - [5953] = 5663, - [5954] = 5954, - [5955] = 5607, - [5956] = 5608, - [5957] = 5758, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5737, + [5955] = 5955, + [5956] = 5956, + [5957] = 5608, [5958] = 5958, - [5959] = 5732, + [5959] = 983, [5960] = 5960, - [5961] = 5961, - [5962] = 5962, + [5961] = 5609, + [5962] = 5610, [5963] = 5963, [5964] = 5964, [5965] = 5965, - [5966] = 5966, - [5967] = 5967, + [5966] = 5619, + [5967] = 5618, [5968] = 5968, - [5969] = 5616, - [5970] = 5615, - [5971] = 5971, - [5972] = 4555, - [5973] = 5872, + [5969] = 5969, + [5970] = 5970, + [5971] = 4581, + [5972] = 5972, + [5973] = 5867, [5974] = 5974, [5975] = 5975, [5976] = 5976, @@ -10466,34 +10466,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5992] = 5992, [5993] = 5993, [5994] = 5994, - [5995] = 5751, + [5995] = 5995, [5996] = 5996, - [5997] = 5997, - [5998] = 5998, - [5999] = 5999, - [6000] = 5745, - [6001] = 1019, + [5997] = 5639, + [5998] = 5746, + [5999] = 988, + [6000] = 6000, + [6001] = 6001, [6002] = 6002, [6003] = 6003, [6004] = 6004, [6005] = 6005, [6006] = 6006, - [6007] = 981, + [6007] = 994, [6008] = 6008, - [6009] = 1012, - [6010] = 1014, - [6011] = 5624, - [6012] = 5626, - [6013] = 6013, - [6014] = 5696, + [6009] = 6009, + [6010] = 6010, + [6011] = 987, + [6012] = 985, + [6013] = 5630, + [6014] = 5632, [6015] = 6015, [6016] = 6016, [6017] = 6017, - [6018] = 6018, + [6018] = 5698, [6019] = 6019, [6020] = 6020, [6021] = 6021, - [6022] = 5109, + [6022] = 5110, [6023] = 6023, [6024] = 6024, [6025] = 6025, @@ -10506,125 +10506,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6032] = 6032, [6033] = 6033, [6034] = 6034, - [6035] = 6035, + [6035] = 5867, [6036] = 6036, - [6037] = 5872, + [6037] = 6037, [6038] = 6038, [6039] = 6039, [6040] = 6040, [6041] = 6041, - [6042] = 992, - [6043] = 6043, + [6042] = 6042, + [6043] = 998, [6044] = 5686, [6045] = 6045, [6046] = 6046, - [6047] = 5663, + [6047] = 6047, [6048] = 6048, - [6049] = 5662, - [6050] = 6050, - [6051] = 5767, - [6052] = 5661, - [6053] = 6053, + [6049] = 6049, + [6050] = 5664, + [6051] = 6051, + [6052] = 6052, + [6053] = 5663, [6054] = 6054, - [6055] = 6055, - [6056] = 6056, - [6057] = 6057, - [6058] = 5758, + [6055] = 5659, + [6056] = 5605, + [6057] = 5770, + [6058] = 6058, [6059] = 6059, [6060] = 6060, [6061] = 6061, - [6062] = 6062, + [6062] = 5681, [6063] = 6063, [6064] = 6064, - [6065] = 5684, - [6066] = 5786, + [6065] = 6065, + [6066] = 6066, [6067] = 6067, [6068] = 6068, [6069] = 6069, - [6070] = 5794, + [6070] = 6070, [6071] = 6071, - [6072] = 6072, - [6073] = 5796, - [6074] = 6074, - [6075] = 5797, - [6076] = 6076, - [6077] = 5799, - [6078] = 6078, - [6079] = 5616, + [6072] = 5791, + [6073] = 6073, + [6074] = 5647, + [6075] = 6075, + [6076] = 5796, + [6077] = 5619, + [6078] = 5618, + [6079] = 5799, [6080] = 6080, [6081] = 5800, - [6082] = 5644, - [6083] = 6083, + [6082] = 6082, + [6083] = 5802, [6084] = 6084, - [6085] = 5792, - [6086] = 5789, - [6087] = 6087, - [6088] = 5615, + [6085] = 6085, + [6086] = 6086, + [6087] = 5798, + [6088] = 6088, [6089] = 6089, [6090] = 6090, - [6091] = 6091, - [6092] = 6092, + [6091] = 5793, + [6092] = 5788, [6093] = 6093, [6094] = 6094, [6095] = 6095, [6096] = 6096, [6097] = 6097, - [6098] = 5649, + [6098] = 6098, [6099] = 6099, [6100] = 6100, - [6101] = 5751, - [6102] = 5745, - [6103] = 6103, + [6101] = 6101, + [6102] = 6102, + [6103] = 5650, [6104] = 6104, [6105] = 6105, [6106] = 6106, - [6107] = 6107, - [6108] = 6108, - [6109] = 5631, - [6110] = 6110, + [6107] = 5639, + [6108] = 5746, + [6109] = 6109, + [6110] = 5633, [6111] = 6111, [6112] = 6112, - [6113] = 5725, + [6113] = 6113, [6114] = 6114, - [6115] = 5721, + [6115] = 6115, [6116] = 6116, - [6117] = 5717, + [6117] = 6117, [6118] = 6118, - [6119] = 5710, + [6119] = 5726, [6120] = 6120, - [6121] = 6121, - [6122] = 5686, - [6123] = 6123, + [6121] = 5718, + [6122] = 6122, + [6123] = 5713, [6124] = 6124, - [6125] = 6125, + [6125] = 5710, [6126] = 6126, [6127] = 6127, - [6128] = 6128, + [6128] = 5686, [6129] = 6129, [6130] = 6130, - [6131] = 5663, + [6131] = 6131, [6132] = 6132, - [6133] = 5662, - [6134] = 5661, + [6133] = 6133, + [6134] = 6134, [6135] = 6135, - [6136] = 5624, - [6137] = 6137, + [6136] = 6136, + [6137] = 5664, [6138] = 6138, - [6139] = 6139, - [6140] = 6140, - [6141] = 973, + [6139] = 5663, + [6140] = 5659, + [6141] = 974, [6142] = 6142, [6143] = 6143, - [6144] = 5626, + [6144] = 6144, [6145] = 6145, [6146] = 6146, [6147] = 6147, [6148] = 6148, [6149] = 6149, - [6150] = 6150, + [6150] = 5630, [6151] = 6151, [6152] = 6152, - [6153] = 6153, + [6153] = 5632, [6154] = 6154, [6155] = 6155, [6156] = 6156, @@ -10638,41 +10638,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6164] = 6164, [6165] = 6165, [6166] = 6166, - [6167] = 5624, + [6167] = 6167, [6168] = 6168, - [6169] = 5626, + [6169] = 6169, [6170] = 6170, [6171] = 6171, [6172] = 6172, - [6173] = 6173, - [6174] = 4996, - [6175] = 5020, - [6176] = 5763, - [6177] = 994, + [6173] = 5630, + [6174] = 4998, + [6175] = 5632, + [6176] = 6176, + [6177] = 6177, [6178] = 6178, [6179] = 6179, - [6180] = 5661, - [6181] = 6181, - [6182] = 6182, - [6183] = 6183, + [6180] = 5022, + [6181] = 5764, + [6182] = 975, + [6183] = 5659, [6184] = 6184, [6185] = 6185, - [6186] = 5789, - [6187] = 5792, - [6188] = 5799, - [6189] = 6189, - [6190] = 6190, - [6191] = 5797, - [6192] = 6192, + [6186] = 6186, + [6187] = 6187, + [6188] = 6188, + [6189] = 5788, + [6190] = 5793, + [6191] = 6191, + [6192] = 5802, [6193] = 6193, - [6194] = 5796, - [6195] = 4999, - [6196] = 6196, + [6194] = 5800, + [6195] = 6195, + [6196] = 5799, [6197] = 6197, [6198] = 6198, [6199] = 6199, [6200] = 6200, - [6201] = 6201, + [6201] = 5002, [6202] = 6202, [6203] = 6203, [6204] = 6204, @@ -10683,8 +10683,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6209] = 6209, [6210] = 6210, [6211] = 6211, - [6212] = 5611, - [6213] = 6213, + [6212] = 6212, + [6213] = 5613, [6214] = 6214, [6215] = 6215, [6216] = 6216, @@ -10696,78 +10696,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6222] = 6222, [6223] = 6223, [6224] = 6224, - [6225] = 6225, - [6226] = 5608, + [6225] = 5610, + [6226] = 5609, [6227] = 6227, [6228] = 6228, [6229] = 6229, - [6230] = 5607, + [6230] = 6230, [6231] = 6231, [6232] = 6232, [6233] = 6233, [6234] = 6234, [6235] = 6235, [6236] = 6236, - [6237] = 6237, + [6237] = 5608, [6238] = 6238, [6239] = 6239, [6240] = 6240, - [6241] = 5605, + [6241] = 6241, [6242] = 6242, [6243] = 6243, - [6244] = 6244, - [6245] = 5626, - [6246] = 6246, + [6244] = 5632, + [6245] = 6245, + [6246] = 5630, [6247] = 6247, [6248] = 6248, [6249] = 6249, [6250] = 6250, [6251] = 6251, - [6252] = 5624, + [6252] = 6252, [6253] = 6253, - [6254] = 5796, + [6254] = 6254, [6255] = 6255, - [6256] = 5797, + [6256] = 6256, [6257] = 6257, - [6258] = 5799, + [6258] = 6258, [6259] = 6259, - [6260] = 5800, + [6260] = 5799, [6261] = 6261, - [6262] = 6262, + [6262] = 5800, [6263] = 6263, - [6264] = 5792, - [6265] = 5789, - [6266] = 6266, + [6264] = 5802, + [6265] = 6265, + [6266] = 5798, [6267] = 6267, [6268] = 6268, [6269] = 6269, - [6270] = 6270, - [6271] = 5751, - [6272] = 5745, + [6270] = 5793, + [6271] = 5788, + [6272] = 6272, [6273] = 6273, [6274] = 6274, [6275] = 6275, [6276] = 6276, - [6277] = 6277, - [6278] = 6278, + [6277] = 5639, + [6278] = 5746, [6279] = 6279, [6280] = 6280, [6281] = 6281, - [6282] = 5663, + [6282] = 6282, [6283] = 6283, - [6284] = 5662, - [6285] = 5661, + [6284] = 6284, + [6285] = 6285, [6286] = 6286, [6287] = 6287, - [6288] = 6288, + [6288] = 5664, [6289] = 6289, - [6290] = 6290, - [6291] = 6291, + [6290] = 5663, + [6291] = 5659, [6292] = 6292, [6293] = 6293, - [6294] = 1144, + [6294] = 6294, [6295] = 6295, - [6296] = 6296, + [6296] = 1054, [6297] = 6297, [6298] = 6298, [6299] = 6299, @@ -10778,9 +10778,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6304] = 6304, [6305] = 6305, [6306] = 6306, - [6307] = 1031, - [6308] = 6306, - [6309] = 6309, + [6307] = 6307, + [6308] = 6308, + [6309] = 1078, [6310] = 6310, [6311] = 6311, [6312] = 6312, @@ -10789,633 +10789,633 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6315] = 6315, [6316] = 6316, [6317] = 6317, - [6318] = 6318, - [6319] = 6319, - [6320] = 6318, - [6321] = 6321, + [6318] = 6310, + [6319] = 6297, + [6320] = 6313, + [6321] = 6304, [6322] = 6322, - [6323] = 1196, + [6323] = 6323, [6324] = 6324, - [6325] = 6321, - [6326] = 1190, - [6327] = 1197, - [6328] = 1198, - [6329] = 6302, - [6330] = 6330, - [6331] = 1199, - [6332] = 6332, - [6333] = 6333, - [6334] = 1113, + [6325] = 6325, + [6326] = 6322, + [6327] = 6327, + [6328] = 1203, + [6329] = 1115, + [6330] = 1204, + [6331] = 6331, + [6332] = 1043, + [6333] = 1205, + [6334] = 6334, [6335] = 6335, - [6336] = 1110, - [6337] = 1106, - [6338] = 6338, - [6339] = 6335, - [6340] = 6340, - [6341] = 1210, - [6342] = 1211, - [6343] = 334, - [6344] = 6344, + [6336] = 6335, + [6337] = 1035, + [6338] = 1039, + [6339] = 6339, + [6340] = 1051, + [6341] = 6341, + [6342] = 1120, + [6343] = 6343, + [6344] = 6305, [6345] = 6345, - [6346] = 6346, - [6347] = 6347, - [6348] = 1212, - [6349] = 6345, - [6350] = 6350, + [6346] = 6341, + [6347] = 1174, + [6348] = 1129, + [6349] = 6349, + [6350] = 334, [6351] = 6351, [6352] = 6352, - [6353] = 6353, + [6353] = 3512, [6354] = 6354, - [6355] = 6319, - [6356] = 6345, - [6357] = 1213, - [6358] = 6346, - [6359] = 3471, + [6355] = 1128, + [6356] = 6308, + [6357] = 6357, + [6358] = 6325, + [6359] = 1061, [6360] = 6360, - [6361] = 6352, - [6362] = 1119, - [6363] = 6305, - [6364] = 6310, - [6365] = 6311, - [6366] = 1215, - [6367] = 6313, - [6368] = 6351, - [6369] = 6314, - [6370] = 1023, - [6371] = 1020, - [6372] = 1025, - [6373] = 1132, - [6374] = 1138, - [6375] = 6375, - [6376] = 6352, - [6377] = 1026, - [6378] = 6378, - [6379] = 1152, - [6380] = 1029, - [6381] = 312, - [6382] = 309, - [6383] = 6351, - [6384] = 6384, - [6385] = 6385, - [6386] = 1033, - [6387] = 3483, - [6388] = 6388, - [6389] = 3485, - [6390] = 1034, - [6391] = 1116, - [6392] = 1038, - [6393] = 6393, - [6394] = 1036, - [6395] = 1030, - [6396] = 1022, - [6397] = 6397, - [6398] = 6375, - [6399] = 6399, - [6400] = 6314, + [6361] = 6351, + [6362] = 6351, + [6363] = 6363, + [6364] = 6364, + [6365] = 6365, + [6366] = 1105, + [6367] = 6367, + [6368] = 6365, + [6369] = 6311, + [6370] = 1065, + [6371] = 6364, + [6372] = 6316, + [6373] = 6317, + [6374] = 1066, + [6375] = 1067, + [6376] = 1160, + [6377] = 1168, + [6378] = 6297, + [6379] = 1069, + [6380] = 6363, + [6381] = 1070, + [6382] = 6313, + [6383] = 1072, + [6384] = 1074, + [6385] = 1034, + [6386] = 6386, + [6387] = 6387, + [6388] = 6365, + [6389] = 6389, + [6390] = 336, + [6391] = 3507, + [6392] = 6392, + [6393] = 3506, + [6394] = 1079, + [6395] = 1080, + [6396] = 6387, + [6397] = 1125, + [6398] = 6398, + [6399] = 1161, + [6400] = 6400, [6401] = 6401, - [6402] = 6306, - [6403] = 6313, - [6404] = 6385, - [6405] = 6388, - [6406] = 6406, - [6407] = 6354, - [6408] = 6318, - [6409] = 6321, - [6410] = 6352, - [6411] = 6311, + [6402] = 6402, + [6403] = 1166, + [6404] = 6386, + [6405] = 6392, + [6406] = 6297, + [6407] = 6407, + [6408] = 333, + [6409] = 6317, + [6410] = 6316, + [6411] = 6357, [6412] = 6412, - [6413] = 6310, - [6414] = 6414, + [6413] = 6413, + [6414] = 6364, [6415] = 6415, - [6416] = 6305, - [6417] = 6417, + [6416] = 6310, + [6417] = 6311, [6418] = 6418, - [6419] = 6319, - [6420] = 6420, + [6419] = 6419, + [6420] = 6322, [6421] = 6421, - [6422] = 1085, - [6423] = 6298, - [6424] = 6296, - [6425] = 6319, - [6426] = 6354, + [6422] = 6335, + [6423] = 6325, + [6424] = 6365, + [6425] = 6425, + [6426] = 6426, [6427] = 6427, - [6428] = 6428, - [6429] = 6335, - [6430] = 6304, - [6431] = 6431, + [6428] = 6299, + [6429] = 6429, + [6430] = 6430, + [6431] = 6341, [6432] = 6432, - [6433] = 6351, - [6434] = 3475, - [6435] = 6435, - [6436] = 3476, + [6433] = 6433, + [6434] = 6364, + [6435] = 6325, + [6436] = 6302, [6437] = 6437, - [6438] = 6438, - [6439] = 1093, - [6440] = 6440, - [6441] = 6303, - [6442] = 335, - [6443] = 1102, - [6444] = 6352, - [6445] = 6375, - [6446] = 6446, - [6447] = 6447, - [6448] = 6306, + [6438] = 3509, + [6439] = 6398, + [6440] = 3518, + [6441] = 1179, + [6442] = 6442, + [6443] = 6387, + [6444] = 6444, + [6445] = 6445, + [6446] = 6298, + [6447] = 311, + [6448] = 6365, [6449] = 6449, [6450] = 6450, [6451] = 6451, - [6452] = 6318, - [6453] = 6345, - [6454] = 6454, - [6455] = 6455, - [6456] = 6314, - [6457] = 6313, - [6458] = 6458, - [6459] = 1035, - [6460] = 6311, - [6461] = 6310, - [6462] = 6302, - [6463] = 1143, - [6464] = 6346, - [6465] = 6435, - [6466] = 6299, - [6467] = 6298, - [6468] = 6296, - [6469] = 6304, - [6470] = 6470, - [6471] = 6321, - [6472] = 1147, - [6473] = 6437, - [6474] = 6305, - [6475] = 6303, + [6452] = 6452, + [6453] = 6453, + [6454] = 6310, + [6455] = 6313, + [6456] = 6297, + [6457] = 1075, + [6458] = 6351, + [6459] = 6459, + [6460] = 6460, + [6461] = 6317, + [6462] = 6316, + [6463] = 1216, + [6464] = 6308, + [6465] = 6363, + [6466] = 1101, + [6467] = 6345, + [6468] = 6305, + [6469] = 1097, + [6470] = 6304, + [6471] = 6311, + [6472] = 6302, + [6473] = 6473, + [6474] = 6322, + [6475] = 6299, [6476] = 6335, - [6477] = 6477, - [6478] = 6393, - [6479] = 6428, - [6480] = 1070, - [6481] = 6481, + [6477] = 6437, + [6478] = 1022, + [6479] = 6298, + [6480] = 6480, + [6481] = 6341, [6482] = 6482, - [6483] = 1195, - [6484] = 6293, - [6485] = 6338, + [6483] = 6482, + [6484] = 6339, + [6485] = 6485, [6486] = 6486, - [6487] = 6332, - [6488] = 6297, + [6487] = 6331, + [6488] = 6430, [6489] = 6489, [6490] = 6490, - [6491] = 6491, - [6492] = 6492, + [6491] = 6485, + [6492] = 6303, [6493] = 6493, - [6494] = 6494, + [6494] = 6300, [6495] = 6495, - [6496] = 6345, - [6497] = 6309, - [6498] = 6316, + [6496] = 6496, + [6497] = 6497, + [6498] = 6426, [6499] = 6499, [6500] = 6500, - [6501] = 6301, - [6502] = 6300, - [6503] = 6481, - [6504] = 6418, + [6501] = 6501, + [6502] = 6502, + [6503] = 6312, + [6504] = 6314, [6505] = 6505, - [6506] = 6295, - [6507] = 6420, - [6508] = 6418, - [6509] = 6420, - [6510] = 4665, - [6511] = 6511, - [6512] = 6293, - [6513] = 6486, - [6514] = 6360, - [6515] = 6299, - [6516] = 6330, - [6517] = 6428, - [6518] = 6458, - [6519] = 6297, - [6520] = 6431, - [6521] = 6490, - [6522] = 1043, - [6523] = 1142, - [6524] = 6418, - [6525] = 6302, - [6526] = 6378, - [6527] = 6354, - [6528] = 6351, - [6529] = 6432, - [6530] = 6530, - [6531] = 6324, - [6532] = 6322, - [6533] = 6420, - [6534] = 6397, - [6535] = 1056, - [6536] = 6428, + [6506] = 6306, + [6507] = 6301, + [6508] = 6427, + [6509] = 4717, + [6510] = 6351, + [6511] = 6402, + [6512] = 6426, + [6513] = 6427, + [6514] = 6327, + [6515] = 6515, + [6516] = 1023, + [6517] = 1191, + [6518] = 6430, + [6519] = 6460, + [6520] = 6367, + [6521] = 6308, + [6522] = 6490, + [6523] = 6432, + [6524] = 6303, + [6525] = 6300, + [6526] = 1057, + [6527] = 6364, + [6528] = 6433, + [6529] = 6324, + [6530] = 6357, + [6531] = 6323, + [6532] = 6389, + [6533] = 6357, + [6534] = 6427, + [6535] = 6535, + [6536] = 6536, [6537] = 6537, - [6538] = 6538, - [6539] = 6477, - [6540] = 6412, - [6541] = 1057, - [6542] = 3500, - [6543] = 6415, - [6544] = 6458, - [6545] = 3503, - [6546] = 6319, - [6547] = 6458, - [6548] = 6548, - [6549] = 6435, - [6550] = 1060, - [6551] = 6551, + [6538] = 6460, + [6539] = 6413, + [6540] = 6540, + [6541] = 1207, + [6542] = 6345, + [6543] = 1102, + [6544] = 6496, + [6545] = 6480, + [6546] = 3496, + [6547] = 6419, + [6548] = 3495, + [6549] = 6325, + [6550] = 6430, + [6551] = 6432, [6552] = 6552, [6553] = 6553, [6554] = 6554, - [6555] = 6431, - [6556] = 6432, - [6557] = 6492, - [6558] = 6451, - [6559] = 6559, - [6560] = 6560, - [6561] = 6495, - [6562] = 6562, + [6555] = 6307, + [6556] = 6556, + [6557] = 6557, + [6558] = 6558, + [6559] = 6460, + [6560] = 6432, + [6561] = 6433, + [6562] = 6499, [6563] = 6563, - [6564] = 6564, - [6565] = 6499, + [6564] = 6501, + [6565] = 6565, [6566] = 6566, - [6567] = 6454, + [6567] = 6505, [6568] = 6568, [6569] = 6569, - [6570] = 1065, - [6571] = 6299, - [6572] = 6563, - [6573] = 6431, - [6574] = 6298, - [6575] = 6296, - [6576] = 6576, - [6577] = 1185, - [6578] = 6304, - [6579] = 1191, - [6580] = 6580, - [6581] = 6581, - [6582] = 1182, - [6583] = 6437, - [6584] = 6432, - [6585] = 6585, - [6586] = 6315, + [6570] = 1103, + [6571] = 6426, + [6572] = 6459, + [6573] = 6305, + [6574] = 6304, + [6575] = 6302, + [6576] = 1104, + [6577] = 6577, + [6578] = 6565, + [6579] = 6579, + [6580] = 1106, + [6581] = 6299, + [6582] = 6582, + [6583] = 6583, + [6584] = 1060, + [6585] = 6437, + [6586] = 6586, [6587] = 6587, - [6588] = 6588, + [6588] = 6315, [6589] = 6589, - [6590] = 6590, - [6591] = 6591, - [6592] = 6317, - [6593] = 6593, - [6594] = 6301, + [6590] = 6433, + [6591] = 6587, + [6592] = 6592, + [6593] = 6583, + [6594] = 6594, [6595] = 6595, - [6596] = 1072, - [6597] = 6303, - [6598] = 6317, - [6599] = 1075, - [6600] = 1076, + [6596] = 1141, + [6597] = 6298, + [6598] = 6598, + [6599] = 1048, + [6600] = 6600, [6601] = 6601, - [6602] = 6300, - [6603] = 6590, - [6604] = 6338, - [6605] = 6581, - [6606] = 6580, - [6607] = 1081, - [6608] = 6608, - [6609] = 6587, - [6610] = 6610, - [6611] = 1083, - [6612] = 1170, - [6613] = 1167, + [6602] = 1108, + [6603] = 1110, + [6604] = 6315, + [6605] = 6306, + [6606] = 6453, + [6607] = 6607, + [6608] = 6586, + [6609] = 1111, + [6610] = 6579, + [6611] = 6323, + [6612] = 1116, + [6613] = 1117, [6614] = 6614, - [6615] = 1158, - [6616] = 6295, + [6615] = 6324, + [6616] = 6616, [6617] = 6617, - [6618] = 1154, - [6619] = 6322, - [6620] = 6620, - [6621] = 6324, - [6622] = 6330, - [6623] = 6332, + [6618] = 1138, + [6619] = 1214, + [6620] = 1208, + [6621] = 1206, + [6622] = 6622, + [6623] = 6327, [6624] = 6624, - [6625] = 6332, - [6626] = 6338, - [6627] = 6330, - [6628] = 6324, - [6629] = 1103, - [6630] = 6322, - [6631] = 2635, - [6632] = 1088, - [6633] = 2633, - [6634] = 6393, - [6635] = 6315, - [6636] = 6481, - [6637] = 1128, - [6638] = 2460, - [6639] = 6639, - [6640] = 6640, - [6641] = 6486, - [6642] = 6338, - [6643] = 1080, - [6644] = 1077, - [6645] = 1071, - [6646] = 1028, - [6647] = 1032, - [6648] = 6648, - [6649] = 6375, - [6650] = 6297, - [6651] = 6651, + [6625] = 6331, + [6626] = 6339, + [6627] = 6627, + [6628] = 6301, + [6629] = 6339, + [6630] = 6630, + [6631] = 6331, + [6632] = 6482, + [6633] = 6327, + [6634] = 6324, + [6635] = 2574, + [6636] = 2568, + [6637] = 6485, + [6638] = 6402, + [6639] = 6323, + [6640] = 6490, + [6641] = 6307, + [6642] = 2620, + [6643] = 1148, + [6644] = 6644, + [6645] = 6645, + [6646] = 1181, + [6647] = 1180, + [6648] = 1178, + [6649] = 1177, + [6650] = 6303, + [6651] = 1176, [6652] = 6652, - [6653] = 6653, - [6654] = 6654, - [6655] = 6332, + [6653] = 6387, + [6654] = 1173, + [6655] = 6655, [6656] = 6656, - [6657] = 6657, - [6658] = 1200, - [6659] = 6446, - [6660] = 6449, - [6661] = 6450, - [6662] = 1040, - [6663] = 3461, - [6664] = 6455, - [6665] = 3466, - [6666] = 6314, - [6667] = 6313, - [6668] = 6428, - [6669] = 6669, - [6670] = 6311, - [6671] = 6310, - [6672] = 3480, - [6673] = 6401, - [6674] = 6674, - [6675] = 6491, - [6676] = 6676, - [6677] = 6494, - [6678] = 6490, - [6679] = 6305, - [6680] = 3479, - [6681] = 3470, - [6682] = 3512, - [6683] = 6399, - [6684] = 6338, - [6685] = 6685, - [6686] = 6686, - [6687] = 6588, - [6688] = 6688, + [6657] = 1025, + [6658] = 6658, + [6659] = 6659, + [6660] = 6339, + [6661] = 6661, + [6662] = 6445, + [6663] = 6444, + [6664] = 3470, + [6665] = 6451, + [6666] = 6666, + [6667] = 3490, + [6668] = 6452, + [6669] = 3511, + [6670] = 6313, + [6671] = 6297, + [6672] = 6427, + [6673] = 6673, + [6674] = 6317, + [6675] = 6316, + [6676] = 3514, + [6677] = 6401, + [6678] = 6678, + [6679] = 1172, + [6680] = 6300, + [6681] = 3515, + [6682] = 6331, + [6683] = 6311, + [6684] = 6400, + [6685] = 3463, + [6686] = 6489, + [6687] = 6495, + [6688] = 6594, [6689] = 6689, [6690] = 6690, - [6691] = 6580, - [6692] = 6589, - [6693] = 6581, - [6694] = 1052, - [6695] = 3462, - [6696] = 6696, - [6697] = 6317, - [6698] = 3493, - [6699] = 1054, - [6700] = 6492, - [6701] = 3489, - [6702] = 6702, - [6703] = 6703, - [6704] = 6495, - [6705] = 6499, - [6706] = 1121, - [6707] = 6707, - [6708] = 6302, - [6709] = 6432, - [6710] = 1123, - [6711] = 6711, - [6712] = 6431, - [6713] = 6713, - [6714] = 6458, + [6691] = 6433, + [6692] = 6692, + [6693] = 6693, + [6694] = 6694, + [6695] = 6595, + [6696] = 6583, + [6697] = 3505, + [6698] = 6698, + [6699] = 3497, + [6700] = 6700, + [6701] = 6587, + [6702] = 3492, + [6703] = 6496, + [6704] = 6432, + [6705] = 6331, + [6706] = 6706, + [6707] = 6499, + [6708] = 6501, + [6709] = 1098, + [6710] = 6710, + [6711] = 1100, + [6712] = 6308, + [6713] = 6460, + [6714] = 6714, [6715] = 6715, - [6716] = 6590, + [6716] = 6430, [6717] = 6717, - [6718] = 6420, - [6719] = 6418, - [6720] = 6330, - [6721] = 6721, - [6722] = 6587, + [6718] = 6718, + [6719] = 6719, + [6720] = 6426, + [6721] = 1143, + [6722] = 6327, [6723] = 6723, - [6724] = 6315, - [6725] = 6330, - [6726] = 1111, - [6727] = 1112, - [6728] = 6351, - [6729] = 1125, - [6730] = 6324, - [6731] = 1055, - [6732] = 6732, - [6733] = 1126, - [6734] = 6301, - [6735] = 6552, - [6736] = 1114, - [6737] = 6737, - [6738] = 6738, - [6739] = 6739, - [6740] = 6300, - [6741] = 6345, - [6742] = 6742, - [6743] = 6295, - [6744] = 6309, - [6745] = 6316, - [6746] = 6721, - [6747] = 1153, - [6748] = 1127, - [6749] = 6749, - [6750] = 1207, - [6751] = 4784, - [6752] = 6752, - [6753] = 4782, - [6754] = 6752, - [6755] = 6715, - [6756] = 6295, - [6757] = 1168, - [6758] = 6360, - [6759] = 6759, - [6760] = 6322, - [6761] = 6378, - [6762] = 6352, - [6763] = 6300, - [6764] = 4789, - [6765] = 6295, + [6724] = 6351, + [6725] = 6725, + [6726] = 6315, + [6727] = 6727, + [6728] = 6586, + [6729] = 1144, + [6730] = 6579, + [6731] = 1095, + [6732] = 6307, + [6733] = 1094, + [6734] = 6718, + [6735] = 1145, + [6736] = 6736, + [6737] = 6505, + [6738] = 6306, + [6739] = 6301, + [6740] = 6556, + [6741] = 6741, + [6742] = 6327, + [6743] = 6743, + [6744] = 1152, + [6745] = 6324, + [6746] = 6746, + [6747] = 6747, + [6748] = 6364, + [6749] = 1091, + [6750] = 6312, + [6751] = 6314, + [6752] = 1146, + [6753] = 1147, + [6754] = 6727, + [6755] = 1089, + [6756] = 6756, + [6757] = 1082, + [6758] = 4823, + [6759] = 4819, + [6760] = 6323, + [6761] = 6761, + [6762] = 6747, + [6763] = 1064, + [6764] = 6367, + [6765] = 6341, [6766] = 6766, - [6767] = 1130, - [6768] = 6768, - [6769] = 6477, - [6770] = 3484, - [6771] = 6595, + [6767] = 6389, + [6768] = 6365, + [6769] = 6301, + [6770] = 4834, + [6771] = 6335, [6772] = 6772, - [6773] = 6301, - [6774] = 1131, - [6775] = 6309, - [6776] = 1058, - [6777] = 6324, + [6773] = 1149, + [6774] = 6725, + [6775] = 6480, + [6776] = 3503, + [6777] = 6322, [6778] = 6778, - [6779] = 6563, - [6780] = 6322, - [6781] = 6781, - [6782] = 6749, - [6783] = 1194, - [6784] = 6335, - [6785] = 6435, - [6786] = 6321, - [6787] = 6589, - [6788] = 1063, - [6789] = 3516, - [6790] = 6595, - [6791] = 1064, - [6792] = 1073, - [6793] = 6553, + [6779] = 6779, + [6780] = 6756, + [6781] = 6601, + [6782] = 1150, + [6783] = 6505, + [6784] = 6312, + [6785] = 6565, + [6786] = 6310, + [6787] = 6345, + [6788] = 1137, + [6789] = 1130, + [6790] = 6553, + [6791] = 6554, + [6792] = 1140, + [6793] = 6595, [6794] = 1118, - [6795] = 6610, - [6796] = 6318, - [6797] = 6306, - [6798] = 6554, - [6799] = 1084, - [6800] = 6562, - [6801] = 3510, - [6802] = 6564, - [6803] = 1089, - [6804] = 6717, - [6805] = 3513, - [6806] = 6569, - [6807] = 1092, - [6808] = 6299, - [6809] = 6298, - [6810] = 1094, - [6811] = 1097, - [6812] = 6296, - [6813] = 6813, - [6814] = 6580, - [6815] = 6815, - [6816] = 6581, - [6817] = 6301, - [6818] = 6576, - [6819] = 6304, - [6820] = 6820, - [6821] = 6703, - [6822] = 6437, - [6823] = 6354, - [6824] = 6319, - [6825] = 1117, - [6826] = 6826, - [6827] = 1021, - [6828] = 6303, - [6829] = 6499, - [6830] = 1122, - [6831] = 6332, - [6832] = 6495, - [6833] = 6833, - [6834] = 6595, - [6835] = 1135, - [6836] = 6713, - [6837] = 6492, - [6838] = 1189, - [6839] = 3474, - [6840] = 6580, - [6841] = 6610, - [6842] = 6711, - [6843] = 6843, - [6844] = 6581, - [6845] = 6317, - [6846] = 6715, - [6847] = 6490, - [6848] = 6707, - [6849] = 6360, - [6850] = 6297, - [6851] = 1172, - [6852] = 6499, - [6853] = 6495, - [6854] = 6486, - [6855] = 6855, - [6856] = 6856, - [6857] = 6293, - [6858] = 6858, - [6859] = 6375, + [6795] = 3501, + [6796] = 6601, + [6797] = 1113, + [6798] = 1099, + [6799] = 6357, + [6800] = 1088, + [6801] = 6616, + [6802] = 1087, + [6803] = 6325, + [6804] = 6557, + [6805] = 3519, + [6806] = 6558, + [6807] = 1086, + [6808] = 3516, + [6809] = 6568, + [6810] = 6301, + [6811] = 6324, + [6812] = 6305, + [6813] = 6304, + [6814] = 1083, + [6815] = 1081, + [6816] = 6302, + [6817] = 6817, + [6818] = 6339, + [6819] = 6819, + [6820] = 6587, + [6821] = 1156, + [6822] = 6577, + [6823] = 6299, + [6824] = 6323, + [6825] = 1196, + [6826] = 6437, + [6827] = 6315, + [6828] = 6717, + [6829] = 6306, + [6830] = 6830, + [6831] = 6831, + [6832] = 6298, + [6833] = 6505, + [6834] = 6601, + [6835] = 1077, + [6836] = 6563, + [6837] = 1076, + [6838] = 6838, + [6839] = 6715, + [6840] = 1063, + [6841] = 6718, + [6842] = 6501, + [6843] = 6499, + [6844] = 3480, + [6845] = 6714, + [6846] = 6616, + [6847] = 1036, + [6848] = 6848, + [6849] = 6719, + [6850] = 6583, + [6851] = 6587, + [6852] = 6367, + [6853] = 6710, + [6854] = 6496, + [6855] = 6315, + [6856] = 6501, + [6857] = 6499, + [6858] = 6300, + [6859] = 6387, [6860] = 6860, - [6861] = 6490, - [6862] = 6608, - [6863] = 6314, - [6864] = 6309, - [6865] = 6316, - [6866] = 1169, - [6867] = 6313, - [6868] = 6868, - [6869] = 6300, - [6870] = 6393, - [6871] = 6317, - [6872] = 6311, - [6873] = 6310, - [6874] = 6590, - [6875] = 6393, - [6876] = 6305, - [6877] = 6610, - [6878] = 6360, - [6879] = 6481, - [6880] = 1187, - [6881] = 6378, - [6882] = 6293, - [6883] = 6492, - [6884] = 6303, - [6885] = 6721, - [6886] = 6590, - [6887] = 1171, - [6888] = 6595, - [6889] = 6477, - [6890] = 6315, - [6891] = 6486, - [6892] = 6589, - [6893] = 6559, - [6894] = 1175, - [6895] = 6895, - [6896] = 6587, + [6861] = 6861, + [6862] = 6862, + [6863] = 6303, + [6864] = 6313, + [6865] = 6505, + [6866] = 6317, + [6867] = 6614, + [6868] = 6316, + [6869] = 6727, + [6870] = 6312, + [6871] = 6314, + [6872] = 1044, + [6873] = 6873, + [6874] = 6311, + [6875] = 6875, + [6876] = 6719, + [6877] = 6402, + [6878] = 6482, + [6879] = 6485, + [6880] = 6482, + [6881] = 1030, + [6882] = 6485, + [6883] = 6616, + [6884] = 6367, + [6885] = 1026, + [6886] = 6402, + [6887] = 6389, + [6888] = 6583, + [6889] = 1132, + [6890] = 6601, + [6891] = 6595, + [6892] = 6490, + [6893] = 6725, + [6894] = 6496, + [6895] = 6480, + [6896] = 6586, [6897] = 1188, - [6898] = 6703, - [6899] = 6563, - [6900] = 6437, - [6901] = 6676, - [6902] = 6563, - [6903] = 6304, - [6904] = 6297, - [6905] = 6589, - [6906] = 6296, - [6907] = 6587, - [6908] = 6595, - [6909] = 6481, - [6910] = 6298, - [6911] = 3495, - [6912] = 1149, - [6913] = 6610, - [6914] = 1181, - [6915] = 1206, - [6916] = 6477, - [6917] = 1059, - [6918] = 6315, - [6919] = 1192, - [6920] = 6490, - [6921] = 1074, - [6922] = 1208, - [6923] = 6299, - [6924] = 6924, - [6925] = 6378, - [6926] = 6435, - [6927] = 1202, - [6928] = 1209, - [6929] = 6653, - [6930] = 6316, - [6931] = 6931, - [6932] = 6932, - [6933] = 6648, - [6934] = 6934, - [6935] = 6360, - [6936] = 6639, + [6898] = 6898, + [6899] = 6298, + [6900] = 6565, + [6901] = 6579, + [6902] = 1185, + [6903] = 6307, + [6904] = 6437, + [6905] = 6565, + [6906] = 6480, + [6907] = 6303, + [6908] = 6299, + [6909] = 6579, + [6910] = 1189, + [6911] = 6595, + [6912] = 1190, + [6913] = 1167, + [6914] = 6601, + [6915] = 3479, + [6916] = 1040, + [6917] = 6666, + [6918] = 1031, + [6919] = 6616, + [6920] = 1028, + [6921] = 6490, + [6922] = 6308, + [6923] = 6389, + [6924] = 1021, + [6925] = 6300, + [6926] = 1109, + [6927] = 6345, + [6928] = 6306, + [6929] = 6929, + [6930] = 6302, + [6931] = 6367, + [6932] = 6659, + [6933] = 6652, + [6934] = 6645, + [6935] = 6935, + [6936] = 6314, [6937] = 6937, - [6938] = 6302, + [6938] = 1135, [6939] = 6939, [6940] = 6940, - [6941] = 6941, - [6942] = 6942, - [6943] = 6943, - [6944] = 6944, + [6941] = 6304, + [6942] = 6305, + [6943] = 6307, + [6944] = 6586, [6945] = 6945, [6946] = 6946, [6947] = 6947, @@ -11438,466 +11438,472 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6964] = 6964, [6965] = 6965, [6966] = 6966, - [6967] = 6962, - [6968] = 6968, - [6969] = 6940, + [6967] = 6946, + [6968] = 6964, + [6969] = 6969, [6970] = 6970, - [6971] = 6955, - [6972] = 6958, - [6973] = 6953, - [6974] = 6974, - [6975] = 6949, + [6971] = 6971, + [6972] = 6972, + [6973] = 6973, + [6974] = 6961, + [6975] = 6959, [6976] = 6976, [6977] = 6977, - [6978] = 6942, - [6979] = 6979, - [6980] = 6980, + [6978] = 6956, + [6979] = 6955, + [6980] = 6954, [6981] = 6981, [6982] = 6982, [6983] = 6983, - [6984] = 6943, - [6985] = 6944, + [6984] = 6948, + [6985] = 6985, [6986] = 6986, - [6987] = 6950, + [6987] = 6987, [6988] = 6988, [6989] = 6989, [6990] = 6990, [6991] = 6991, - [6992] = 6981, - [6993] = 6993, + [6992] = 6947, + [6993] = 6951, [6994] = 6994, [6995] = 6995, - [6996] = 6943, - [6997] = 6983, - [6998] = 6957, - [6999] = 6999, + [6996] = 6977, + [6997] = 6997, + [6998] = 6981, + [6999] = 6966, [7000] = 7000, - [7001] = 6942, - [7002] = 6960, - [7003] = 6939, - [7004] = 6948, - [7005] = 7005, - [7006] = 6953, - [7007] = 6955, + [7001] = 7001, + [7002] = 6990, + [7003] = 6989, + [7004] = 6957, + [7005] = 6945, + [7006] = 7006, + [7007] = 6948, [7008] = 7008, [7009] = 7009, - [7010] = 6980, + [7010] = 6954, [7011] = 7011, - [7012] = 6940, - [7013] = 6959, - [7014] = 6962, + [7012] = 6959, + [7013] = 6961, + [7014] = 6973, [7015] = 7015, [7016] = 7016, [7017] = 7017, - [7018] = 7018, - [7019] = 6958, - [7020] = 7020, + [7018] = 6946, + [7019] = 7019, + [7020] = 6964, [7021] = 7021, - [7022] = 6979, - [7023] = 7023, - [7024] = 6961, - [7025] = 7025, - [7026] = 6963, + [7022] = 7022, + [7023] = 6963, + [7024] = 6965, + [7025] = 6956, + [7026] = 7026, [7027] = 7027, - [7028] = 6950, + [7028] = 7028, [7029] = 7029, [7030] = 7030, - [7031] = 6958, + [7031] = 7031, [7032] = 7032, - [7033] = 6962, - [7034] = 6940, - [7035] = 7035, - [7036] = 7030, - [7037] = 7037, - [7038] = 6955, - [7039] = 6953, - [7040] = 7009, - [7041] = 7041, - [7042] = 7042, - [7043] = 6949, - [7044] = 7008, - [7045] = 6948, - [7046] = 7046, - [7047] = 7047, - [7048] = 7009, - [7049] = 6942, - [7050] = 6968, - [7051] = 7051, + [7033] = 7033, + [7034] = 7034, + [7035] = 6962, + [7036] = 7036, + [7037] = 6951, + [7038] = 6956, + [7039] = 7039, + [7040] = 7040, + [7041] = 6964, + [7042] = 6946, + [7043] = 6961, + [7044] = 6995, + [7045] = 6972, + [7046] = 7011, + [7047] = 6959, + [7048] = 7048, + [7049] = 6955, + [7050] = 7009, + [7051] = 6954, [7052] = 7052, - [7053] = 6988, + [7053] = 7053, [7054] = 7054, - [7055] = 6958, - [7056] = 7005, - [7057] = 7008, - [7058] = 6939, - [7059] = 6960, - [7060] = 7046, - [7061] = 6983, - [7062] = 6943, - [7063] = 6968, - [7064] = 6944, - [7065] = 7065, - [7066] = 7027, - [7067] = 6961, - [7068] = 6990, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, - [7072] = 6941, - [7073] = 6990, - [7074] = 7074, - [7075] = 6960, + [7055] = 6948, + [7056] = 6997, + [7057] = 6972, + [7058] = 7058, + [7059] = 6965, + [7060] = 6956, + [7061] = 7032, + [7062] = 7006, + [7063] = 7011, + [7064] = 6945, + [7065] = 6966, + [7066] = 7066, + [7067] = 6989, + [7068] = 6963, + [7069] = 6990, + [7070] = 6947, + [7071] = 7036, + [7072] = 6957, + [7073] = 7073, + [7074] = 6995, + [7075] = 7075, [7076] = 7076, [7077] = 7077, - [7078] = 6959, - [7079] = 6939, + [7078] = 7078, + [7079] = 6997, [7080] = 7080, - [7081] = 7005, - [7082] = 7041, + [7081] = 6952, + [7082] = 7082, [7083] = 7083, - [7084] = 6957, + [7084] = 6995, [7085] = 7085, - [7086] = 6988, - [7087] = 6988, - [7088] = 7041, - [7089] = 7046, - [7090] = 7008, + [7086] = 6966, + [7087] = 6945, + [7088] = 7017, + [7089] = 7089, + [7090] = 7006, [7091] = 7009, - [7092] = 7035, - [7093] = 7093, - [7094] = 7029, - [7095] = 6968, - [7096] = 7005, - [7097] = 6939, - [7098] = 7098, - [7099] = 7023, - [7100] = 6979, - [7101] = 6947, - [7102] = 6952, - [7103] = 6961, - [7104] = 6954, - [7105] = 7032, - [7106] = 6964, - [7107] = 6959, - [7108] = 6965, - [7109] = 6970, - [7110] = 6974, - [7111] = 6957, - [7112] = 6960, - [7113] = 6977, - [7114] = 7114, - [7115] = 6990, - [7116] = 7116, - [7117] = 6956, - [7118] = 7118, - [7119] = 7119, - [7120] = 7120, - [7121] = 1015, - [7122] = 6950, - [7123] = 7123, + [7092] = 7017, + [7093] = 6997, + [7094] = 7052, + [7095] = 7009, + [7096] = 6981, + [7097] = 7011, + [7098] = 7039, + [7099] = 7099, + [7100] = 7052, + [7101] = 6972, + [7102] = 7031, + [7103] = 7103, + [7104] = 7040, + [7105] = 7028, + [7106] = 6958, + [7107] = 6970, + [7108] = 6971, + [7109] = 6965, + [7110] = 6976, + [7111] = 7111, + [7112] = 6983, + [7113] = 6963, + [7114] = 7031, + [7115] = 6985, + [7116] = 6986, + [7117] = 6957, + [7118] = 7006, + [7119] = 6945, + [7120] = 6988, + [7121] = 6966, + [7122] = 7122, + [7123] = 6960, [7124] = 7124, [7125] = 7125, - [7126] = 7021, + [7126] = 7126, [7127] = 7127, - [7128] = 7128, - [7129] = 7021, - [7130] = 7029, + [7128] = 6951, + [7129] = 973, + [7130] = 7130, [7131] = 7131, - [7132] = 1018, - [7133] = 7030, - [7134] = 7114, - [7135] = 7127, - [7136] = 6950, + [7132] = 7132, + [7133] = 7133, + [7134] = 7134, + [7135] = 7032, + [7136] = 7136, [7137] = 7137, - [7138] = 7116, - [7139] = 6990, - [7140] = 7030, - [7141] = 7029, - [7142] = 6960, - [7143] = 6939, - [7144] = 6981, - [7145] = 7114, - [7146] = 6980, - [7147] = 7005, - [7148] = 6958, - [7149] = 7005, - [7150] = 7114, - [7151] = 6979, - [7152] = 7127, - [7153] = 7021, - [7154] = 6979, - [7155] = 7137, - [7156] = 7127, - [7157] = 7116, - [7158] = 6990, - [7159] = 7137, - [7160] = 7160, - [7161] = 7009, - [7162] = 7008, - [7163] = 7163, - [7164] = 7046, - [7165] = 7005, - [7166] = 6939, - [7167] = 6960, - [7168] = 7098, - [7169] = 7025, - [7170] = 7077, - [7171] = 6963, - [7172] = 6991, - [7173] = 6993, - [7174] = 7093, - [7175] = 6990, - [7176] = 6994, - [7177] = 6962, - [7178] = 7178, - [7179] = 7116, - [7180] = 7180, - [7181] = 6948, - [7182] = 6983, - [7183] = 7183, - [7184] = 6940, - [7185] = 6990, - [7186] = 6999, - [7187] = 7187, - [7188] = 7011, - [7189] = 6960, - [7190] = 6939, - [7191] = 7015, - [7192] = 7016, - [7193] = 7005, - [7194] = 7017, - [7195] = 7018, - [7196] = 7020, - [7197] = 6955, - [7198] = 6953, - [7199] = 7199, - [7200] = 6941, - [7201] = 6957, - [7202] = 6959, - [7203] = 7029, - [7204] = 7030, + [7138] = 7027, + [7139] = 7139, + [7140] = 7122, + [7141] = 6951, + [7142] = 7139, + [7143] = 7027, + [7144] = 7136, + [7145] = 7122, + [7146] = 7133, + [7147] = 6995, + [7148] = 7032, + [7149] = 7122, + [7150] = 7031, + [7151] = 7136, + [7152] = 7136, + [7153] = 6966, + [7154] = 7027, + [7155] = 6977, + [7156] = 6973, + [7157] = 6981, + [7158] = 7139, + [7159] = 7139, + [7160] = 6945, + [7161] = 1008, + [7162] = 6956, + [7163] = 7133, + [7164] = 6995, + [7165] = 7133, + [7166] = 7006, + [7167] = 7011, + [7168] = 7009, + [7169] = 7169, + [7170] = 7052, + [7171] = 7006, + [7172] = 6945, + [7173] = 6966, + [7174] = 6989, + [7175] = 6981, + [7176] = 7083, + [7177] = 7034, + [7178] = 6962, + [7179] = 7008, + [7180] = 6964, + [7181] = 6995, + [7182] = 6946, + [7183] = 7015, + [7184] = 7184, + [7185] = 7016, + [7186] = 7186, + [7187] = 7111, + [7188] = 6990, + [7189] = 7189, + [7190] = 7019, + [7191] = 7021, + [7192] = 6966, + [7193] = 7193, + [7194] = 7006, + [7195] = 6945, + [7196] = 7006, + [7197] = 7022, + [7198] = 7026, + [7199] = 7029, + [7200] = 7030, + [7201] = 7033, + [7202] = 6961, + [7203] = 6959, + [7204] = 6955, [7205] = 7205, - [7206] = 6962, - [7207] = 7207, - [7208] = 6949, - [7209] = 7209, - [7210] = 7076, - [7211] = 6948, - [7212] = 7074, - [7213] = 7046, - [7214] = 7214, - [7215] = 7137, - [7216] = 6961, - [7217] = 6968, - [7218] = 7218, - [7219] = 7093, - [7220] = 6940, - [7221] = 7098, - [7222] = 7093, - [7223] = 6947, - [7224] = 6952, - [7225] = 6942, - [7226] = 7071, - [7227] = 6988, - [7228] = 6956, - [7229] = 6983, - [7230] = 6943, - [7231] = 6944, - [7232] = 7032, - [7233] = 6964, - [7234] = 7046, - [7235] = 6965, + [7206] = 7206, + [7207] = 7103, + [7208] = 6954, + [7209] = 7031, + [7210] = 7032, + [7211] = 7211, + [7212] = 6964, + [7213] = 7213, + [7214] = 6952, + [7215] = 7215, + [7216] = 7082, + [7217] = 6995, + [7218] = 7080, + [7219] = 7052, + [7220] = 7103, + [7221] = 6957, + [7222] = 6963, + [7223] = 6965, + [7224] = 7224, + [7225] = 6972, + [7226] = 6946, + [7227] = 6948, + [7228] = 7103, + [7229] = 6997, + [7230] = 6989, + [7231] = 6990, + [7232] = 7077, + [7233] = 6947, + [7234] = 6958, + [7235] = 6960, [7236] = 6970, - [7237] = 6955, - [7238] = 6974, - [7239] = 7070, - [7240] = 7008, - [7241] = 6981, - [7242] = 7009, - [7243] = 6980, - [7244] = 6977, - [7245] = 7114, - [7246] = 6953, - [7247] = 6963, - [7248] = 7021, - [7249] = 7009, - [7250] = 7008, - [7251] = 7127, - [7252] = 7005, - [7253] = 6939, - [7254] = 6960, - [7255] = 7069, - [7256] = 6941, - [7257] = 7137, - [7258] = 7098, - [7259] = 7116, - [7260] = 6990, - [7261] = 7183, - [7262] = 6990, - [7263] = 6947, - [7264] = 7029, - [7265] = 6960, - [7266] = 6939, - [7267] = 7005, - [7268] = 7268, - [7269] = 7030, - [7270] = 6952, - [7271] = 6954, - [7272] = 7046, - [7273] = 6981, - [7274] = 7008, - [7275] = 6980, - [7276] = 7042, - [7277] = 7047, - [7278] = 6956, - [7279] = 7029, - [7280] = 7030, - [7281] = 6991, - [7282] = 7032, - [7283] = 6963, - [7284] = 6993, - [7285] = 7009, - [7286] = 7069, - [7287] = 7070, - [7288] = 7071, - [7289] = 6994, - [7290] = 6999, - [7291] = 7074, - [7292] = 6964, + [7237] = 7052, + [7238] = 7009, + [7239] = 6971, + [7240] = 6976, + [7241] = 7111, + [7242] = 6983, + [7243] = 6961, + [7244] = 6985, + [7245] = 7076, + [7246] = 7011, + [7247] = 6977, + [7248] = 6973, + [7249] = 6986, + [7250] = 6962, + [7251] = 7122, + [7252] = 6959, + [7253] = 6988, + [7254] = 7136, + [7255] = 7011, + [7256] = 7009, + [7257] = 7027, + [7258] = 7006, + [7259] = 6945, + [7260] = 6966, + [7261] = 7075, + [7262] = 6952, + [7263] = 7139, + [7264] = 7040, + [7265] = 7133, + [7266] = 6995, + [7267] = 7189, + [7268] = 6995, + [7269] = 7031, + [7270] = 7032, + [7271] = 6966, + [7272] = 6945, + [7273] = 7006, + [7274] = 7274, + [7275] = 6958, + [7276] = 6960, + [7277] = 6977, + [7278] = 7052, + [7279] = 6973, + [7280] = 7009, + [7281] = 6970, + [7282] = 7048, + [7283] = 7053, + [7284] = 7031, + [7285] = 7032, + [7286] = 6971, + [7287] = 7008, + [7288] = 6976, + [7289] = 7015, + [7290] = 7016, + [7291] = 7011, + [7292] = 7075, [7293] = 7076, [7294] = 7077, - [7295] = 7011, - [7296] = 7035, - [7297] = 6965, - [7298] = 7029, - [7299] = 7030, - [7300] = 7023, - [7301] = 7015, - [7302] = 6949, - [7303] = 7016, - [7304] = 7017, - [7305] = 7093, - [7306] = 6970, - [7307] = 7018, - [7308] = 7020, - [7309] = 7046, - [7310] = 6974, - [7311] = 6977, - [7312] = 7042, - [7313] = 7047, - [7314] = 6979, - [7315] = 7029, - [7316] = 7020, - [7317] = 7018, - [7318] = 6948, - [7319] = 7030, - [7320] = 7017, - [7321] = 7069, - [7322] = 7070, - [7323] = 7071, - [7324] = 7093, - [7325] = 6979, - [7326] = 7074, - [7327] = 7029, + [7295] = 7031, + [7296] = 7032, + [7297] = 7080, + [7298] = 7019, + [7299] = 7082, + [7300] = 7083, + [7301] = 7021, + [7302] = 7039, + [7303] = 7022, + [7304] = 6962, + [7305] = 7111, + [7306] = 7028, + [7307] = 7026, + [7308] = 6955, + [7309] = 7029, + [7310] = 7030, + [7311] = 7103, + [7312] = 7033, + [7313] = 7030, + [7314] = 7029, + [7315] = 7052, + [7316] = 6983, + [7317] = 7033, + [7318] = 7048, + [7319] = 7053, + [7320] = 6985, + [7321] = 6986, + [7322] = 7026, + [7323] = 7022, + [7324] = 6954, + [7325] = 6988, + [7326] = 7021, + [7327] = 7075, [7328] = 7076, [7329] = 7077, - [7330] = 7030, - [7331] = 7035, - [7332] = 7332, - [7333] = 6954, - [7334] = 7023, - [7335] = 6991, - [7336] = 7016, - [7337] = 7337, - [7338] = 7015, - [7339] = 7011, - [7340] = 7042, - [7341] = 7047, - [7342] = 7093, - [7343] = 6999, - [7344] = 6994, - [7345] = 6993, - [7346] = 6991, - [7347] = 7080, - [7348] = 6993, - [7349] = 7069, - [7350] = 7070, - [7351] = 7071, - [7352] = 7352, - [7353] = 6994, - [7354] = 7074, - [7355] = 6999, + [7330] = 6981, + [7331] = 7031, + [7332] = 7080, + [7333] = 7032, + [7334] = 7082, + [7335] = 7083, + [7336] = 7103, + [7337] = 7039, + [7338] = 7338, + [7339] = 6981, + [7340] = 7028, + [7341] = 7031, + [7342] = 7019, + [7343] = 7343, + [7344] = 7016, + [7345] = 7015, + [7346] = 7048, + [7347] = 7053, + [7348] = 7032, + [7349] = 7008, + [7350] = 7040, + [7351] = 7103, + [7352] = 7008, + [7353] = 7085, + [7354] = 7015, + [7355] = 7075, [7356] = 7076, [7357] = 7077, - [7358] = 7011, - [7359] = 7035, - [7360] = 7015, - [7361] = 7016, - [7362] = 7023, - [7363] = 7017, - [7364] = 6977, - [7365] = 7042, - [7366] = 7047, - [7367] = 7018, - [7368] = 6974, - [7369] = 6970, - [7370] = 7020, - [7371] = 7046, - [7372] = 7070, - [7373] = 7071, - [7374] = 7374, - [7375] = 6942, - [7376] = 7074, - [7377] = 7008, + [7358] = 7358, + [7359] = 7016, + [7360] = 7080, + [7361] = 7019, + [7362] = 7082, + [7363] = 7083, + [7364] = 7021, + [7365] = 7039, + [7366] = 6988, + [7367] = 6986, + [7368] = 7028, + [7369] = 6985, + [7370] = 6983, + [7371] = 7048, + [7372] = 7053, + [7373] = 7022, + [7374] = 7111, + [7375] = 6976, + [7376] = 7026, + [7377] = 7029, [7378] = 7076, [7379] = 7077, [7380] = 7380, - [7381] = 7035, - [7382] = 7023, - [7383] = 7047, - [7384] = 6965, - [7385] = 6964, - [7386] = 7093, - [7387] = 7380, - [7388] = 7374, - [7389] = 7032, - [7390] = 7009, - [7391] = 7046, - [7392] = 7008, - [7393] = 6956, - [7394] = 7394, - [7395] = 6983, - [7396] = 6954, - [7397] = 6943, - [7398] = 7042, - [7399] = 6952, - [7400] = 7080, - [7401] = 7009, - [7402] = 6944, - [7403] = 6947, - [7404] = 6979, - [7405] = 7029, - [7406] = 7030, - [7407] = 7098, - [7408] = 7380, - [7409] = 7374, - [7410] = 7093, - [7411] = 7030, - [7412] = 7080, - [7413] = 7380, - [7414] = 7374, - [7415] = 7029, - [7416] = 6941, - [7417] = 7080, - [7418] = 7380, - [7419] = 7374, - [7420] = 6979, - [7421] = 6961, - [7422] = 7080, - [7423] = 7380, - [7424] = 7374, - [7425] = 6968, - [7426] = 7426, + [7381] = 6948, + [7382] = 7080, + [7383] = 7030, + [7384] = 7082, + [7385] = 7083, + [7386] = 7386, + [7387] = 7039, + [7388] = 7028, + [7389] = 7053, + [7390] = 6971, + [7391] = 6970, + [7392] = 7033, + [7393] = 7386, + [7394] = 7380, + [7395] = 6960, + [7396] = 7052, + [7397] = 7052, + [7398] = 7009, + [7399] = 6958, + [7400] = 7400, + [7401] = 6989, + [7402] = 7040, + [7403] = 6990, + [7404] = 7048, + [7405] = 7009, + [7406] = 7085, + [7407] = 7011, + [7408] = 6947, + [7409] = 6952, + [7410] = 7011, + [7411] = 6981, + [7412] = 7031, + [7413] = 7032, + [7414] = 7386, + [7415] = 7380, + [7416] = 7103, + [7417] = 7103, + [7418] = 7085, + [7419] = 7386, + [7420] = 7380, + [7421] = 7032, + [7422] = 7031, + [7423] = 7085, + [7424] = 7386, + [7425] = 7380, + [7426] = 6981, + [7427] = 6965, + [7428] = 7085, + [7429] = 7386, + [7430] = 7380, + [7431] = 6972, + [7432] = 7432, }; static TSCharacterRange extras_character_set_1[] = { @@ -14793,7 +14799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 218: if (lookahead == 'n') ADVANCE(293); - if (lookahead == 'x') ADVANCE(286); + if (lookahead == 'x') ADVANCE(242); END_STATE(); case 219: if (lookahead == 'n') ADVANCE(124); @@ -20383,19 +20389,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 351, .external_lex_state = 2}, [121] = {.lex_state = 351, .external_lex_state = 2}, [122] = {.lex_state = 351, .external_lex_state = 2}, - [123] = {.lex_state = 3, .external_lex_state = 4}, + [123] = {.lex_state = 32, .external_lex_state = 2}, [124] = {.lex_state = 32, .external_lex_state = 2}, - [125] = {.lex_state = 32, .external_lex_state = 2}, + [125] = {.lex_state = 3, .external_lex_state = 4}, [126] = {.lex_state = 32, .external_lex_state = 2}, - [127] = {.lex_state = 32, .external_lex_state = 2}, + [127] = {.lex_state = 3, .external_lex_state = 4}, [128] = {.lex_state = 32, .external_lex_state = 2}, - [129] = {.lex_state = 3, .external_lex_state = 4}, + [129] = {.lex_state = 32, .external_lex_state = 2}, [130] = {.lex_state = 32, .external_lex_state = 2}, [131] = {.lex_state = 32, .external_lex_state = 2}, - [132] = {.lex_state = 3, .external_lex_state = 4}, + [132] = {.lex_state = 32, .external_lex_state = 2}, [133] = {.lex_state = 32, .external_lex_state = 2}, [134] = {.lex_state = 32, .external_lex_state = 2}, - [135] = {.lex_state = 32, .external_lex_state = 2}, + [135] = {.lex_state = 3, .external_lex_state = 4}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, @@ -20411,26 +20417,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 32, .external_lex_state = 2}, [149] = {.lex_state = 32, .external_lex_state = 2}, [150] = {.lex_state = 3, .external_lex_state = 3}, - [151] = {.lex_state = 32, .external_lex_state = 2}, - [152] = {.lex_state = 3, .external_lex_state = 3}, - [153] = {.lex_state = 3, .external_lex_state = 3}, - [154] = {.lex_state = 3, .external_lex_state = 4}, - [155] = {.lex_state = 7, .external_lex_state = 4}, - [156] = {.lex_state = 7, .external_lex_state = 4}, + [151] = {.lex_state = 3, .external_lex_state = 4}, + [152] = {.lex_state = 3, .external_lex_state = 4}, + [153] = {.lex_state = 3, .external_lex_state = 4}, + [154] = {.lex_state = 7, .external_lex_state = 4}, + [155] = {.lex_state = 3, .external_lex_state = 4}, + [156] = {.lex_state = 3, .external_lex_state = 3}, [157] = {.lex_state = 3, .external_lex_state = 4}, [158] = {.lex_state = 32, .external_lex_state = 2}, - [159] = {.lex_state = 3, .external_lex_state = 4}, - [160] = {.lex_state = 32, .external_lex_state = 2}, - [161] = {.lex_state = 7, .external_lex_state = 4}, - [162] = {.lex_state = 3, .external_lex_state = 4}, - [163] = {.lex_state = 3, .external_lex_state = 4}, - [164] = {.lex_state = 3, .external_lex_state = 4}, - [165] = {.lex_state = 32, .external_lex_state = 2}, - [166] = {.lex_state = 3, .external_lex_state = 3}, - [167] = {.lex_state = 3, .external_lex_state = 3}, - [168] = {.lex_state = 3, .external_lex_state = 4}, + [159] = {.lex_state = 32, .external_lex_state = 2}, + [160] = {.lex_state = 7, .external_lex_state = 4}, + [161] = {.lex_state = 3, .external_lex_state = 4}, + [162] = {.lex_state = 3, .external_lex_state = 3}, + [163] = {.lex_state = 3, .external_lex_state = 3}, + [164] = {.lex_state = 7, .external_lex_state = 4}, + [165] = {.lex_state = 3, .external_lex_state = 3}, + [166] = {.lex_state = 3, .external_lex_state = 4}, + [167] = {.lex_state = 32, .external_lex_state = 2}, + [168] = {.lex_state = 7, .external_lex_state = 4}, [169] = {.lex_state = 3, .external_lex_state = 4}, - [170] = {.lex_state = 7, .external_lex_state = 4}, + [170] = {.lex_state = 32, .external_lex_state = 2}, [171] = {.lex_state = 3, .external_lex_state = 3}, [172] = {.lex_state = 3, .external_lex_state = 3}, [173] = {.lex_state = 3, .external_lex_state = 3}, @@ -20439,30 +20445,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 3, .external_lex_state = 3}, [177] = {.lex_state = 3, .external_lex_state = 3}, [178] = {.lex_state = 3, .external_lex_state = 3}, - [179] = {.lex_state = 3, .external_lex_state = 4}, + [179] = {.lex_state = 8, .external_lex_state = 3}, [180] = {.lex_state = 3, .external_lex_state = 3}, - [181] = {.lex_state = 3, .external_lex_state = 3}, + [181] = {.lex_state = 8, .external_lex_state = 3}, [182] = {.lex_state = 3, .external_lex_state = 3}, - [183] = {.lex_state = 8, .external_lex_state = 3}, + [183] = {.lex_state = 3, .external_lex_state = 4}, [184] = {.lex_state = 3, .external_lex_state = 4}, [185] = {.lex_state = 3, .external_lex_state = 3}, - [186] = {.lex_state = 3, .external_lex_state = 4}, + [186] = {.lex_state = 3, .external_lex_state = 3}, [187] = {.lex_state = 8, .external_lex_state = 3}, [188] = {.lex_state = 3, .external_lex_state = 3}, - [189] = {.lex_state = 8, .external_lex_state = 3}, - [190] = {.lex_state = 7, .external_lex_state = 3}, - [191] = {.lex_state = 3, .external_lex_state = 3}, + [189] = {.lex_state = 3, .external_lex_state = 4}, + [190] = {.lex_state = 3, .external_lex_state = 3}, + [191] = {.lex_state = 7, .external_lex_state = 3}, [192] = {.lex_state = 3, .external_lex_state = 3}, [193] = {.lex_state = 7, .external_lex_state = 3}, - [194] = {.lex_state = 7, .external_lex_state = 3}, - [195] = {.lex_state = 3, .external_lex_state = 3}, + [194] = {.lex_state = 3, .external_lex_state = 3}, + [195] = {.lex_state = 7, .external_lex_state = 3}, [196] = {.lex_state = 3, .external_lex_state = 3}, - [197] = {.lex_state = 3, .external_lex_state = 3}, + [197] = {.lex_state = 7, .external_lex_state = 3}, [198] = {.lex_state = 3, .external_lex_state = 3}, - [199] = {.lex_state = 7, .external_lex_state = 3}, + [199] = {.lex_state = 3, .external_lex_state = 3}, [200] = {.lex_state = 3, .external_lex_state = 3}, [201] = {.lex_state = 3, .external_lex_state = 3}, - [202] = {.lex_state = 3, .external_lex_state = 3}, + [202] = {.lex_state = 32, .external_lex_state = 2}, [203] = {.lex_state = 3, .external_lex_state = 3}, [204] = {.lex_state = 3, .external_lex_state = 3}, [205] = {.lex_state = 3, .external_lex_state = 3}, @@ -20473,7 +20479,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [210] = {.lex_state = 3, .external_lex_state = 3}, [211] = {.lex_state = 3, .external_lex_state = 3}, [212] = {.lex_state = 3, .external_lex_state = 3}, - [213] = {.lex_state = 32, .external_lex_state = 2}, + [213] = {.lex_state = 3, .external_lex_state = 3}, [214] = {.lex_state = 32, .external_lex_state = 2}, [215] = {.lex_state = 32, .external_lex_state = 2}, [216] = {.lex_state = 32, .external_lex_state = 2}, @@ -20488,14 +20494,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 32, .external_lex_state = 2}, [226] = {.lex_state = 32, .external_lex_state = 2}, [227] = {.lex_state = 10, .external_lex_state = 4}, - [228] = {.lex_state = 9, .external_lex_state = 3}, - [229] = {.lex_state = 9, .external_lex_state = 4}, + [228] = {.lex_state = 9, .external_lex_state = 4}, + [229] = {.lex_state = 9, .external_lex_state = 3}, [230] = {.lex_state = 9, .external_lex_state = 3}, [231] = {.lex_state = 13, .external_lex_state = 3}, [232] = {.lex_state = 9, .external_lex_state = 4}, [233] = {.lex_state = 9, .external_lex_state = 3}, - [234] = {.lex_state = 9, .external_lex_state = 3}, - [235] = {.lex_state = 10, .external_lex_state = 3}, + [234] = {.lex_state = 10, .external_lex_state = 3}, + [235] = {.lex_state = 9, .external_lex_state = 3}, [236] = {.lex_state = 9, .external_lex_state = 3}, [237] = {.lex_state = 44, .external_lex_state = 2}, [238] = {.lex_state = 44, .external_lex_state = 2}, @@ -20509,31 +20515,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [246] = {.lex_state = 44, .external_lex_state = 2}, [247] = {.lex_state = 44, .external_lex_state = 2}, [248] = {.lex_state = 44, .external_lex_state = 2}, - [249] = {.lex_state = 14, .external_lex_state = 4}, - [250] = {.lex_state = 16, .external_lex_state = 4}, + [249] = {.lex_state = 16, .external_lex_state = 4}, + [250] = {.lex_state = 14, .external_lex_state = 4}, [251] = {.lex_state = 14, .external_lex_state = 3}, [252] = {.lex_state = 14, .external_lex_state = 3}, [253] = {.lex_state = 14, .external_lex_state = 3}, [254] = {.lex_state = 14, .external_lex_state = 3}, - [255] = {.lex_state = 14, .external_lex_state = 3}, - [256] = {.lex_state = 14, .external_lex_state = 4}, + [255] = {.lex_state = 14, .external_lex_state = 4}, + [256] = {.lex_state = 14, .external_lex_state = 3}, [257] = {.lex_state = 14, .external_lex_state = 3}, [258] = {.lex_state = 17, .external_lex_state = 3}, [259] = {.lex_state = 14, .external_lex_state = 3}, - [260] = {.lex_state = 16, .external_lex_state = 3}, + [260] = {.lex_state = 34, .external_lex_state = 2}, [261] = {.lex_state = 14, .external_lex_state = 3}, [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 14, .external_lex_state = 3}, + [263] = {.lex_state = 14, .external_lex_state = 3}, + [264] = {.lex_state = 16, .external_lex_state = 3}, [265] = {.lex_state = 34, .external_lex_state = 2}, [266] = {.lex_state = 34, .external_lex_state = 2}, [267] = {.lex_state = 34, .external_lex_state = 2}, [268] = {.lex_state = 34, .external_lex_state = 2}, - [269] = {.lex_state = 14, .external_lex_state = 3}, + [269] = {.lex_state = 34, .external_lex_state = 2}, [270] = {.lex_state = 34, .external_lex_state = 2}, [271] = {.lex_state = 34, .external_lex_state = 2}, [272] = {.lex_state = 34, .external_lex_state = 2}, - [273] = {.lex_state = 34, .external_lex_state = 2}, + [273] = {.lex_state = 14, .external_lex_state = 3}, [274] = {.lex_state = 34, .external_lex_state = 2}, [275] = {.lex_state = 34, .external_lex_state = 2}, [276] = {.lex_state = 34, .external_lex_state = 2}, @@ -20545,134 +20551,134 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 34, .external_lex_state = 2}, [283] = {.lex_state = 34, .external_lex_state = 2}, [284] = {.lex_state = 33, .external_lex_state = 5}, - [285] = {.lex_state = 33, .external_lex_state = 2}, - [286] = {.lex_state = 43, .external_lex_state = 2}, + [285] = {.lex_state = 43, .external_lex_state = 2}, + [286] = {.lex_state = 33, .external_lex_state = 2}, [287] = {.lex_state = 43, .external_lex_state = 2}, - [288] = {.lex_state = 43, .external_lex_state = 2}, + [288] = {.lex_state = 34, .external_lex_state = 2}, [289] = {.lex_state = 43, .external_lex_state = 2}, [290] = {.lex_state = 43, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, + [291] = {.lex_state = 43, .external_lex_state = 2}, [292] = {.lex_state = 34, .external_lex_state = 2}, [293] = {.lex_state = 34, .external_lex_state = 2}, - [294] = {.lex_state = 12, .external_lex_state = 4}, - [295] = {.lex_state = 34, .external_lex_state = 2}, + [294] = {.lex_state = 33, .external_lex_state = 2}, + [295] = {.lex_state = 12, .external_lex_state = 4}, [296] = {.lex_state = 12, .external_lex_state = 4}, [297] = {.lex_state = 34, .external_lex_state = 2}, [298] = {.lex_state = 34, .external_lex_state = 2}, [299] = {.lex_state = 12, .external_lex_state = 4}, [300] = {.lex_state = 34, .external_lex_state = 2}, - [301] = {.lex_state = 12, .external_lex_state = 4}, - [302] = {.lex_state = 33, .external_lex_state = 2}, + [301] = {.lex_state = 34, .external_lex_state = 2}, + [302] = {.lex_state = 12, .external_lex_state = 4}, [303] = {.lex_state = 12, .external_lex_state = 4}, [304] = {.lex_state = 12, .external_lex_state = 4}, [305] = {.lex_state = 12, .external_lex_state = 4}, - [306] = {.lex_state = 34, .external_lex_state = 2}, + [306] = {.lex_state = 12, .external_lex_state = 4}, [307] = {.lex_state = 12, .external_lex_state = 4}, - [308] = {.lex_state = 11, .external_lex_state = 4}, + [308] = {.lex_state = 12, .external_lex_state = 4}, [309] = {.lex_state = 12, .external_lex_state = 4}, [310] = {.lex_state = 12, .external_lex_state = 4}, [311] = {.lex_state = 12, .external_lex_state = 4}, - [312] = {.lex_state = 12, .external_lex_state = 4}, - [313] = {.lex_state = 348, .external_lex_state = 4}, + [312] = {.lex_state = 11, .external_lex_state = 4}, + [313] = {.lex_state = 34, .external_lex_state = 2}, [314] = {.lex_state = 12, .external_lex_state = 4}, - [315] = {.lex_state = 12, .external_lex_state = 4}, + [315] = {.lex_state = 33, .external_lex_state = 2}, [316] = {.lex_state = 12, .external_lex_state = 4}, - [317] = {.lex_state = 348, .external_lex_state = 4}, - [318] = {.lex_state = 348, .external_lex_state = 4}, + [317] = {.lex_state = 12, .external_lex_state = 4}, + [318] = {.lex_state = 12, .external_lex_state = 4}, [319] = {.lex_state = 12, .external_lex_state = 4}, [320] = {.lex_state = 12, .external_lex_state = 4}, - [321] = {.lex_state = 12, .external_lex_state = 4}, + [321] = {.lex_state = 11, .external_lex_state = 4}, [322] = {.lex_state = 12, .external_lex_state = 4}, [323] = {.lex_state = 12, .external_lex_state = 4}, - [324] = {.lex_state = 11, .external_lex_state = 4}, + [324] = {.lex_state = 348, .external_lex_state = 4}, [325] = {.lex_state = 11, .external_lex_state = 4}, - [326] = {.lex_state = 11, .external_lex_state = 4}, - [327] = {.lex_state = 12, .external_lex_state = 4}, + [326] = {.lex_state = 348, .external_lex_state = 4}, + [327] = {.lex_state = 11, .external_lex_state = 4}, [328] = {.lex_state = 12, .external_lex_state = 4}, - [329] = {.lex_state = 12, .external_lex_state = 4}, + [329] = {.lex_state = 348, .external_lex_state = 4}, [330] = {.lex_state = 12, .external_lex_state = 4}, [331] = {.lex_state = 12, .external_lex_state = 4}, - [332] = {.lex_state = 12, .external_lex_state = 4}, - [333] = {.lex_state = 33, .external_lex_state = 2}, + [332] = {.lex_state = 348, .external_lex_state = 4}, + [333] = {.lex_state = 12, .external_lex_state = 4}, [334] = {.lex_state = 12, .external_lex_state = 4}, [335] = {.lex_state = 12, .external_lex_state = 4}, [336] = {.lex_state = 12, .external_lex_state = 4}, - [337] = {.lex_state = 348, .external_lex_state = 4}, - [338] = {.lex_state = 11, .external_lex_state = 4}, - [339] = {.lex_state = 11, .external_lex_state = 4}, - [340] = {.lex_state = 11, .external_lex_state = 4}, - [341] = {.lex_state = 11, .external_lex_state = 4}, - [342] = {.lex_state = 348, .external_lex_state = 4}, - [343] = {.lex_state = 348, .external_lex_state = 4}, - [344] = {.lex_state = 348, .external_lex_state = 4}, - [345] = {.lex_state = 34, .external_lex_state = 2}, - [346] = {.lex_state = 34, .external_lex_state = 2}, - [347] = {.lex_state = 34, .external_lex_state = 2}, - [348] = {.lex_state = 33, .external_lex_state = 2}, - [349] = {.lex_state = 34, .external_lex_state = 2}, - [350] = {.lex_state = 11, .external_lex_state = 4}, - [351] = {.lex_state = 347, .external_lex_state = 4}, - [352] = {.lex_state = 11, .external_lex_state = 4}, - [353] = {.lex_state = 348, .external_lex_state = 4}, + [337] = {.lex_state = 12, .external_lex_state = 4}, + [338] = {.lex_state = 348, .external_lex_state = 4}, + [339] = {.lex_state = 34, .external_lex_state = 2}, + [340] = {.lex_state = 348, .external_lex_state = 4}, + [341] = {.lex_state = 348, .external_lex_state = 4}, + [342] = {.lex_state = 11, .external_lex_state = 4}, + [343] = {.lex_state = 11, .external_lex_state = 4}, + [344] = {.lex_state = 33, .external_lex_state = 2}, + [345] = {.lex_state = 11, .external_lex_state = 4}, + [346] = {.lex_state = 11, .external_lex_state = 4}, + [347] = {.lex_state = 347, .external_lex_state = 4}, + [348] = {.lex_state = 348, .external_lex_state = 4}, + [349] = {.lex_state = 347, .external_lex_state = 4}, + [350] = {.lex_state = 347, .external_lex_state = 4}, + [351] = {.lex_state = 11, .external_lex_state = 4}, + [352] = {.lex_state = 348, .external_lex_state = 4}, + [353] = {.lex_state = 33, .external_lex_state = 2}, [354] = {.lex_state = 348, .external_lex_state = 4}, - [355] = {.lex_state = 348, .external_lex_state = 4}, - [356] = {.lex_state = 348, .external_lex_state = 4}, - [357] = {.lex_state = 347, .external_lex_state = 4}, + [355] = {.lex_state = 34, .external_lex_state = 2}, + [356] = {.lex_state = 11, .external_lex_state = 4}, + [357] = {.lex_state = 348, .external_lex_state = 4}, [358] = {.lex_state = 348, .external_lex_state = 4}, - [359] = {.lex_state = 348, .external_lex_state = 4}, + [359] = {.lex_state = 347, .external_lex_state = 4}, [360] = {.lex_state = 348, .external_lex_state = 4}, - [361] = {.lex_state = 33, .external_lex_state = 2}, + [361] = {.lex_state = 34, .external_lex_state = 2}, [362] = {.lex_state = 348, .external_lex_state = 4}, [363] = {.lex_state = 348, .external_lex_state = 4}, [364] = {.lex_state = 348, .external_lex_state = 4}, - [365] = {.lex_state = 11, .external_lex_state = 4}, + [365] = {.lex_state = 348, .external_lex_state = 4}, [366] = {.lex_state = 11, .external_lex_state = 4}, - [367] = {.lex_state = 347, .external_lex_state = 4}, + [367] = {.lex_state = 348, .external_lex_state = 4}, [368] = {.lex_state = 348, .external_lex_state = 4}, - [369] = {.lex_state = 348, .external_lex_state = 4}, + [369] = {.lex_state = 34, .external_lex_state = 2}, [370] = {.lex_state = 11, .external_lex_state = 4}, - [371] = {.lex_state = 11, .external_lex_state = 4}, + [371] = {.lex_state = 34, .external_lex_state = 2}, [372] = {.lex_state = 11, .external_lex_state = 4}, - [373] = {.lex_state = 348, .external_lex_state = 4}, + [373] = {.lex_state = 11, .external_lex_state = 4}, [374] = {.lex_state = 348, .external_lex_state = 4}, - [375] = {.lex_state = 11, .external_lex_state = 4}, - [376] = {.lex_state = 347, .external_lex_state = 4}, + [375] = {.lex_state = 34, .external_lex_state = 2}, + [376] = {.lex_state = 11, .external_lex_state = 4}, [377] = {.lex_state = 11, .external_lex_state = 4}, [378] = {.lex_state = 348, .external_lex_state = 4}, - [379] = {.lex_state = 348, .external_lex_state = 4}, - [380] = {.lex_state = 348, .external_lex_state = 4}, - [381] = {.lex_state = 34, .external_lex_state = 2}, + [379] = {.lex_state = 11, .external_lex_state = 4}, + [380] = {.lex_state = 33, .external_lex_state = 2}, + [381] = {.lex_state = 33, .external_lex_state = 2}, [382] = {.lex_state = 11, .external_lex_state = 4}, - [383] = {.lex_state = 348, .external_lex_state = 4}, - [384] = {.lex_state = 33, .external_lex_state = 2}, - [385] = {.lex_state = 11, .external_lex_state = 4}, - [386] = {.lex_state = 11, .external_lex_state = 4}, - [387] = {.lex_state = 11, .external_lex_state = 4}, - [388] = {.lex_state = 11, .external_lex_state = 4}, + [383] = {.lex_state = 11, .external_lex_state = 4}, + [384] = {.lex_state = 11, .external_lex_state = 4}, + [385] = {.lex_state = 33, .external_lex_state = 2}, + [386] = {.lex_state = 348, .external_lex_state = 4}, + [387] = {.lex_state = 348, .external_lex_state = 4}, + [388] = {.lex_state = 348, .external_lex_state = 4}, [389] = {.lex_state = 11, .external_lex_state = 4}, [390] = {.lex_state = 11, .external_lex_state = 4}, - [391] = {.lex_state = 34, .external_lex_state = 2}, - [392] = {.lex_state = 11, .external_lex_state = 4}, + [391] = {.lex_state = 11, .external_lex_state = 4}, + [392] = {.lex_state = 34, .external_lex_state = 2}, [393] = {.lex_state = 11, .external_lex_state = 4}, - [394] = {.lex_state = 11, .external_lex_state = 4}, - [395] = {.lex_state = 33, .external_lex_state = 2}, - [396] = {.lex_state = 34, .external_lex_state = 2}, - [397] = {.lex_state = 34, .external_lex_state = 2}, - [398] = {.lex_state = 11, .external_lex_state = 4}, - [399] = {.lex_state = 348, .external_lex_state = 4}, - [400] = {.lex_state = 33, .external_lex_state = 2}, + [394] = {.lex_state = 348, .external_lex_state = 4}, + [395] = {.lex_state = 11, .external_lex_state = 4}, + [396] = {.lex_state = 11, .external_lex_state = 4}, + [397] = {.lex_state = 348, .external_lex_state = 4}, + [398] = {.lex_state = 348, .external_lex_state = 4}, + [399] = {.lex_state = 33, .external_lex_state = 2}, + [400] = {.lex_state = 348, .external_lex_state = 4}, [401] = {.lex_state = 33, .external_lex_state = 2}, - [402] = {.lex_state = 348, .external_lex_state = 4}, + [402] = {.lex_state = 11, .external_lex_state = 4}, [403] = {.lex_state = 11, .external_lex_state = 4}, - [404] = {.lex_state = 348, .external_lex_state = 4}, - [405] = {.lex_state = 33, .external_lex_state = 2}, - [406] = {.lex_state = 348, .external_lex_state = 4}, - [407] = {.lex_state = 34, .external_lex_state = 2}, + [404] = {.lex_state = 34, .external_lex_state = 2}, + [405] = {.lex_state = 348, .external_lex_state = 4}, + [406] = {.lex_state = 11, .external_lex_state = 4}, + [407] = {.lex_state = 347, .external_lex_state = 4}, [408] = {.lex_state = 347, .external_lex_state = 4}, - [409] = {.lex_state = 347, .external_lex_state = 4}, - [410] = {.lex_state = 347, .external_lex_state = 4}, - [411] = {.lex_state = 34, .external_lex_state = 2}, - [412] = {.lex_state = 34, .external_lex_state = 2}, + [409] = {.lex_state = 34, .external_lex_state = 2}, + [410] = {.lex_state = 34, .external_lex_state = 2}, + [411] = {.lex_state = 347, .external_lex_state = 4}, + [412] = {.lex_state = 347, .external_lex_state = 4}, [413] = {.lex_state = 347, .external_lex_state = 4}, [414] = {.lex_state = 347, .external_lex_state = 4}, [415] = {.lex_state = 34, .external_lex_state = 2}, @@ -20681,62 +20687,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [418] = {.lex_state = 34, .external_lex_state = 2}, [419] = {.lex_state = 34, .external_lex_state = 2}, [420] = {.lex_state = 34, .external_lex_state = 2}, - [421] = {.lex_state = 3, .external_lex_state = 3}, + [421] = {.lex_state = 34, .external_lex_state = 2}, [422] = {.lex_state = 34, .external_lex_state = 2}, - [423] = {.lex_state = 34, .external_lex_state = 2}, - [424] = {.lex_state = 34, .external_lex_state = 2}, - [425] = {.lex_state = 3, .external_lex_state = 3}, - [426] = {.lex_state = 347, .external_lex_state = 4}, - [427] = {.lex_state = 34, .external_lex_state = 2}, + [423] = {.lex_state = 347, .external_lex_state = 4}, + [424] = {.lex_state = 347, .external_lex_state = 4}, + [425] = {.lex_state = 347, .external_lex_state = 4}, + [426] = {.lex_state = 34, .external_lex_state = 2}, + [427] = {.lex_state = 347, .external_lex_state = 4}, [428] = {.lex_state = 347, .external_lex_state = 4}, - [429] = {.lex_state = 34, .external_lex_state = 2}, - [430] = {.lex_state = 347, .external_lex_state = 4}, + [429] = {.lex_state = 347, .external_lex_state = 4}, + [430] = {.lex_state = 34, .external_lex_state = 2}, [431] = {.lex_state = 34, .external_lex_state = 2}, [432] = {.lex_state = 347, .external_lex_state = 4}, - [433] = {.lex_state = 347, .external_lex_state = 4}, + [433] = {.lex_state = 34, .external_lex_state = 2}, [434] = {.lex_state = 347, .external_lex_state = 4}, [435] = {.lex_state = 347, .external_lex_state = 4}, - [436] = {.lex_state = 3, .external_lex_state = 3}, - [437] = {.lex_state = 347, .external_lex_state = 4}, + [436] = {.lex_state = 34, .external_lex_state = 2}, + [437] = {.lex_state = 34, .external_lex_state = 2}, [438] = {.lex_state = 34, .external_lex_state = 2}, [439] = {.lex_state = 34, .external_lex_state = 2}, - [440] = {.lex_state = 347, .external_lex_state = 4}, - [441] = {.lex_state = 34, .external_lex_state = 2}, - [442] = {.lex_state = 347, .external_lex_state = 4}, + [440] = {.lex_state = 34, .external_lex_state = 2}, + [441] = {.lex_state = 347, .external_lex_state = 4}, + [442] = {.lex_state = 34, .external_lex_state = 2}, [443] = {.lex_state = 347, .external_lex_state = 4}, - [444] = {.lex_state = 34, .external_lex_state = 2}, + [444] = {.lex_state = 347, .external_lex_state = 4}, [445] = {.lex_state = 347, .external_lex_state = 4}, [446] = {.lex_state = 347, .external_lex_state = 4}, - [447] = {.lex_state = 34, .external_lex_state = 2}, - [448] = {.lex_state = 34, .external_lex_state = 2}, + [447] = {.lex_state = 347, .external_lex_state = 4}, + [448] = {.lex_state = 3, .external_lex_state = 3}, [449] = {.lex_state = 347, .external_lex_state = 4}, [450] = {.lex_state = 347, .external_lex_state = 4}, - [451] = {.lex_state = 34, .external_lex_state = 2}, - [452] = {.lex_state = 347, .external_lex_state = 4}, - [453] = {.lex_state = 347, .external_lex_state = 4}, + [451] = {.lex_state = 3, .external_lex_state = 3}, + [452] = {.lex_state = 3, .external_lex_state = 3}, + [453] = {.lex_state = 34, .external_lex_state = 2}, [454] = {.lex_state = 347, .external_lex_state = 4}, [455] = {.lex_state = 34, .external_lex_state = 2}, [456] = {.lex_state = 34, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 3}, - [458] = {.lex_state = 34, .external_lex_state = 2}, + [457] = {.lex_state = 34, .external_lex_state = 2}, + [458] = {.lex_state = 3, .external_lex_state = 3}, [459] = {.lex_state = 34, .external_lex_state = 2}, [460] = {.lex_state = 34, .external_lex_state = 2}, [461] = {.lex_state = 34, .external_lex_state = 2}, - [462] = {.lex_state = 347, .external_lex_state = 4}, + [462] = {.lex_state = 34, .external_lex_state = 2}, [463] = {.lex_state = 34, .external_lex_state = 2}, [464] = {.lex_state = 34, .external_lex_state = 2}, - [465] = {.lex_state = 34, .external_lex_state = 5}, + [465] = {.lex_state = 34, .external_lex_state = 2}, [466] = {.lex_state = 34, .external_lex_state = 5}, - [467] = {.lex_state = 34, .external_lex_state = 2}, - [468] = {.lex_state = 34, .external_lex_state = 5}, + [467] = {.lex_state = 34, .external_lex_state = 5}, + [468] = {.lex_state = 34, .external_lex_state = 2}, [469] = {.lex_state = 34, .external_lex_state = 5}, [470] = {.lex_state = 34, .external_lex_state = 5}, - [471] = {.lex_state = 34, .external_lex_state = 2}, + [471] = {.lex_state = 34, .external_lex_state = 5}, [472] = {.lex_state = 34, .external_lex_state = 2}, [473] = {.lex_state = 34, .external_lex_state = 2}, - [474] = {.lex_state = 34, .external_lex_state = 2}, + [474] = {.lex_state = 43, .external_lex_state = 2}, [475] = {.lex_state = 34, .external_lex_state = 2}, - [476] = {.lex_state = 43, .external_lex_state = 2}, + [476] = {.lex_state = 34, .external_lex_state = 2}, [477] = {.lex_state = 34, .external_lex_state = 2}, [478] = {.lex_state = 34, .external_lex_state = 2}, [479] = {.lex_state = 34, .external_lex_state = 2}, @@ -21151,136 +21157,136 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [888] = {.lex_state = 349, .external_lex_state = 4}, [889] = {.lex_state = 349, .external_lex_state = 4}, [890] = {.lex_state = 349, .external_lex_state = 4}, - [891] = {.lex_state = 349, .external_lex_state = 4}, - [892] = {.lex_state = 6, .external_lex_state = 4}, - [893] = {.lex_state = 349, .external_lex_state = 4}, + [891] = {.lex_state = 6, .external_lex_state = 4}, + [892] = {.lex_state = 349, .external_lex_state = 4}, + [893] = {.lex_state = 6, .external_lex_state = 4}, [894] = {.lex_state = 349, .external_lex_state = 4}, [895] = {.lex_state = 6, .external_lex_state = 4}, [896] = {.lex_state = 6, .external_lex_state = 4}, [897] = {.lex_state = 349, .external_lex_state = 4}, - [898] = {.lex_state = 6, .external_lex_state = 4}, - [899] = {.lex_state = 349, .external_lex_state = 4}, - [900] = {.lex_state = 6, .external_lex_state = 4}, + [898] = {.lex_state = 349, .external_lex_state = 4}, + [899] = {.lex_state = 6, .external_lex_state = 4}, + [900] = {.lex_state = 349, .external_lex_state = 4}, [901] = {.lex_state = 6, .external_lex_state = 4}, [902] = {.lex_state = 20, .external_lex_state = 3}, [903] = {.lex_state = 20, .external_lex_state = 3}, [904] = {.lex_state = 20, .external_lex_state = 4}, [905] = {.lex_state = 20, .external_lex_state = 3}, - [906] = {.lex_state = 22, .external_lex_state = 4}, - [907] = {.lex_state = 22, .external_lex_state = 4}, + [906] = {.lex_state = 20, .external_lex_state = 4}, + [907] = {.lex_state = 20, .external_lex_state = 4}, [908] = {.lex_state = 22, .external_lex_state = 4}, [909] = {.lex_state = 20, .external_lex_state = 3}, - [910] = {.lex_state = 20, .external_lex_state = 4}, - [911] = {.lex_state = 20, .external_lex_state = 3}, + [910] = {.lex_state = 22, .external_lex_state = 4}, + [911] = {.lex_state = 20, .external_lex_state = 4}, [912] = {.lex_state = 20, .external_lex_state = 4}, - [913] = {.lex_state = 20, .external_lex_state = 3}, + [913] = {.lex_state = 22, .external_lex_state = 4}, [914] = {.lex_state = 20, .external_lex_state = 4}, - [915] = {.lex_state = 20, .external_lex_state = 4}, + [915] = {.lex_state = 20, .external_lex_state = 3}, [916] = {.lex_state = 20, .external_lex_state = 4}, - [917] = {.lex_state = 20, .external_lex_state = 4}, - [918] = {.lex_state = 23, .external_lex_state = 3}, - [919] = {.lex_state = 23, .external_lex_state = 3}, - [920] = {.lex_state = 20, .external_lex_state = 3}, - [921] = {.lex_state = 20, .external_lex_state = 3}, + [917] = {.lex_state = 20, .external_lex_state = 3}, + [918] = {.lex_state = 20, .external_lex_state = 3}, + [919] = {.lex_state = 20, .external_lex_state = 3}, + [920] = {.lex_state = 23, .external_lex_state = 3}, + [921] = {.lex_state = 23, .external_lex_state = 3}, [922] = {.lex_state = 20, .external_lex_state = 3}, [923] = {.lex_state = 20, .external_lex_state = 3}, [924] = {.lex_state = 20, .external_lex_state = 4}, [925] = {.lex_state = 20, .external_lex_state = 4}, - [926] = {.lex_state = 20, .external_lex_state = 4}, + [926] = {.lex_state = 20, .external_lex_state = 3}, [927] = {.lex_state = 20, .external_lex_state = 4}, [928] = {.lex_state = 20, .external_lex_state = 4}, - [929] = {.lex_state = 20, .external_lex_state = 3}, - [930] = {.lex_state = 40, .external_lex_state = 2}, - [931] = {.lex_state = 20, .external_lex_state = 3}, + [929] = {.lex_state = 20, .external_lex_state = 4}, + [930] = {.lex_state = 20, .external_lex_state = 4}, + [931] = {.lex_state = 20, .external_lex_state = 4}, [932] = {.lex_state = 20, .external_lex_state = 3}, [933] = {.lex_state = 20, .external_lex_state = 4}, - [934] = {.lex_state = 20, .external_lex_state = 4}, - [935] = {.lex_state = 20, .external_lex_state = 4}, - [936] = {.lex_state = 22, .external_lex_state = 3}, - [937] = {.lex_state = 20, .external_lex_state = 3}, - [938] = {.lex_state = 40, .external_lex_state = 5}, - [939] = {.lex_state = 20, .external_lex_state = 3}, - [940] = {.lex_state = 20, .external_lex_state = 3}, - [941] = {.lex_state = 40, .external_lex_state = 5}, - [942] = {.lex_state = 22, .external_lex_state = 3}, - [943] = {.lex_state = 22, .external_lex_state = 3}, + [934] = {.lex_state = 20, .external_lex_state = 3}, + [935] = {.lex_state = 40, .external_lex_state = 2}, + [936] = {.lex_state = 39, .external_lex_state = 2}, + [937] = {.lex_state = 22, .external_lex_state = 3}, + [938] = {.lex_state = 22, .external_lex_state = 3}, + [939] = {.lex_state = 40, .external_lex_state = 5}, + [940] = {.lex_state = 22, .external_lex_state = 3}, + [941] = {.lex_state = 20, .external_lex_state = 3}, + [942] = {.lex_state = 20, .external_lex_state = 3}, + [943] = {.lex_state = 20, .external_lex_state = 3}, [944] = {.lex_state = 20, .external_lex_state = 3}, - [945] = {.lex_state = 20, .external_lex_state = 3}, - [946] = {.lex_state = 356, .external_lex_state = 2}, - [947] = {.lex_state = 39, .external_lex_state = 2}, - [948] = {.lex_state = 20, .external_lex_state = 3}, - [949] = {.lex_state = 355, .external_lex_state = 2}, - [950] = {.lex_state = 42, .external_lex_state = 5}, + [945] = {.lex_state = 40, .external_lex_state = 5}, + [946] = {.lex_state = 20, .external_lex_state = 3}, + [947] = {.lex_state = 356, .external_lex_state = 2}, + [948] = {.lex_state = 38, .external_lex_state = 2}, + [949] = {.lex_state = 356, .external_lex_state = 5}, + [950] = {.lex_state = 20, .external_lex_state = 3}, [951] = {.lex_state = 20, .external_lex_state = 3}, - [952] = {.lex_state = 40, .external_lex_state = 2}, - [953] = {.lex_state = 38, .external_lex_state = 2}, - [954] = {.lex_state = 42, .external_lex_state = 2}, - [955] = {.lex_state = 39, .external_lex_state = 5}, + [952] = {.lex_state = 39, .external_lex_state = 5}, + [953] = {.lex_state = 40, .external_lex_state = 2}, + [954] = {.lex_state = 39, .external_lex_state = 5}, + [955] = {.lex_state = 356, .external_lex_state = 5}, [956] = {.lex_state = 20, .external_lex_state = 3}, [957] = {.lex_state = 20, .external_lex_state = 3}, - [958] = {.lex_state = 20, .external_lex_state = 3}, - [959] = {.lex_state = 39, .external_lex_state = 5}, - [960] = {.lex_state = 356, .external_lex_state = 5}, - [961] = {.lex_state = 40, .external_lex_state = 2}, + [958] = {.lex_state = 38, .external_lex_state = 2}, + [959] = {.lex_state = 20, .external_lex_state = 3}, + [960] = {.lex_state = 355, .external_lex_state = 2}, + [961] = {.lex_state = 20, .external_lex_state = 3}, [962] = {.lex_state = 20, .external_lex_state = 3}, [963] = {.lex_state = 20, .external_lex_state = 3}, - [964] = {.lex_state = 20, .external_lex_state = 3}, - [965] = {.lex_state = 20, .external_lex_state = 3}, + [964] = {.lex_state = 42, .external_lex_state = 5}, + [965] = {.lex_state = 40, .external_lex_state = 2}, [966] = {.lex_state = 20, .external_lex_state = 3}, - [967] = {.lex_state = 42, .external_lex_state = 5}, - [968] = {.lex_state = 356, .external_lex_state = 5}, - [969] = {.lex_state = 20, .external_lex_state = 3}, - [970] = {.lex_state = 38, .external_lex_state = 2}, - [971] = {.lex_state = 354, .external_lex_state = 5}, + [967] = {.lex_state = 20, .external_lex_state = 3}, + [968] = {.lex_state = 20, .external_lex_state = 3}, + [969] = {.lex_state = 42, .external_lex_state = 5}, + [970] = {.lex_state = 42, .external_lex_state = 2}, + [971] = {.lex_state = 356, .external_lex_state = 2}, [972] = {.lex_state = 37, .external_lex_state = 2}, [973] = {.lex_state = 38, .external_lex_state = 5}, [974] = {.lex_state = 38, .external_lex_state = 5}, - [975] = {.lex_state = 38, .external_lex_state = 5}, - [976] = {.lex_state = 38, .external_lex_state = 2}, - [977] = {.lex_state = 354, .external_lex_state = 5}, + [975] = {.lex_state = 38, .external_lex_state = 2}, + [976] = {.lex_state = 38, .external_lex_state = 5}, + [977] = {.lex_state = 38, .external_lex_state = 5}, [978] = {.lex_state = 42, .external_lex_state = 2}, - [979] = {.lex_state = 38, .external_lex_state = 5}, - [980] = {.lex_state = 356, .external_lex_state = 2}, + [979] = {.lex_state = 41, .external_lex_state = 5}, + [980] = {.lex_state = 42, .external_lex_state = 2}, [981] = {.lex_state = 38, .external_lex_state = 5}, - [982] = {.lex_state = 352, .external_lex_state = 2}, - [983] = {.lex_state = 38, .external_lex_state = 2}, + [982] = {.lex_state = 38, .external_lex_state = 5}, + [983] = {.lex_state = 38, .external_lex_state = 5}, [984] = {.lex_state = 352, .external_lex_state = 2}, - [985] = {.lex_state = 38, .external_lex_state = 2}, - [986] = {.lex_state = 41, .external_lex_state = 5}, - [987] = {.lex_state = 39, .external_lex_state = 2}, + [985] = {.lex_state = 38, .external_lex_state = 5}, + [986] = {.lex_state = 354, .external_lex_state = 5}, + [987] = {.lex_state = 38, .external_lex_state = 5}, [988] = {.lex_state = 38, .external_lex_state = 5}, - [989] = {.lex_state = 41, .external_lex_state = 2}, - [990] = {.lex_state = 37, .external_lex_state = 2}, - [991] = {.lex_state = 354, .external_lex_state = 2}, - [992] = {.lex_state = 42, .external_lex_state = 2}, - [993] = {.lex_state = 355, .external_lex_state = 5}, - [994] = {.lex_state = 38, .external_lex_state = 2}, - [995] = {.lex_state = 38, .external_lex_state = 5}, - [996] = {.lex_state = 41, .external_lex_state = 5}, - [997] = {.lex_state = 355, .external_lex_state = 5}, - [998] = {.lex_state = 38, .external_lex_state = 5}, + [989] = {.lex_state = 41, .external_lex_state = 5}, + [990] = {.lex_state = 355, .external_lex_state = 5}, + [991] = {.lex_state = 38, .external_lex_state = 5}, + [992] = {.lex_state = 38, .external_lex_state = 2}, + [993] = {.lex_state = 352, .external_lex_state = 2}, + [994] = {.lex_state = 38, .external_lex_state = 5}, + [995] = {.lex_state = 38, .external_lex_state = 2}, + [996] = {.lex_state = 354, .external_lex_state = 2}, + [997] = {.lex_state = 38, .external_lex_state = 2}, + [998] = {.lex_state = 42, .external_lex_state = 2}, [999] = {.lex_state = 38, .external_lex_state = 5}, - [1000] = {.lex_state = 38, .external_lex_state = 5}, - [1001] = {.lex_state = 38, .external_lex_state = 5}, - [1002] = {.lex_state = 356, .external_lex_state = 2}, - [1003] = {.lex_state = 38, .external_lex_state = 2}, + [1000] = {.lex_state = 39, .external_lex_state = 2}, + [1001] = {.lex_state = 354, .external_lex_state = 5}, + [1002] = {.lex_state = 38, .external_lex_state = 5}, + [1003] = {.lex_state = 38, .external_lex_state = 5}, [1004] = {.lex_state = 38, .external_lex_state = 5}, - [1005] = {.lex_state = 38, .external_lex_state = 5}, - [1006] = {.lex_state = 38, .external_lex_state = 5}, - [1007] = {.lex_state = 39, .external_lex_state = 2}, + [1005] = {.lex_state = 42, .external_lex_state = 2}, + [1006] = {.lex_state = 42, .external_lex_state = 2}, + [1007] = {.lex_state = 38, .external_lex_state = 5}, [1008] = {.lex_state = 38, .external_lex_state = 5}, [1009] = {.lex_state = 38, .external_lex_state = 5}, - [1010] = {.lex_state = 38, .external_lex_state = 5}, - [1011] = {.lex_state = 42, .external_lex_state = 2}, + [1010] = {.lex_state = 37, .external_lex_state = 2}, + [1011] = {.lex_state = 38, .external_lex_state = 5}, [1012] = {.lex_state = 38, .external_lex_state = 5}, - [1013] = {.lex_state = 42, .external_lex_state = 2}, - [1014] = {.lex_state = 38, .external_lex_state = 5}, - [1015] = {.lex_state = 38, .external_lex_state = 5}, - [1016] = {.lex_state = 42, .external_lex_state = 2}, - [1017] = {.lex_state = 38, .external_lex_state = 5}, + [1013] = {.lex_state = 38, .external_lex_state = 2}, + [1014] = {.lex_state = 356, .external_lex_state = 2}, + [1015] = {.lex_state = 39, .external_lex_state = 2}, + [1016] = {.lex_state = 41, .external_lex_state = 2}, + [1017] = {.lex_state = 355, .external_lex_state = 5}, [1018] = {.lex_state = 38, .external_lex_state = 5}, [1019] = {.lex_state = 38, .external_lex_state = 5}, - [1020] = {.lex_state = 38, .external_lex_state = 2}, + [1020] = {.lex_state = 37, .external_lex_state = 5}, [1021] = {.lex_state = 38, .external_lex_state = 2}, [1022] = {.lex_state = 38, .external_lex_state = 2}, [1023] = {.lex_state = 38, .external_lex_state = 2}, @@ -21292,356 +21298,356 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1029] = {.lex_state = 38, .external_lex_state = 2}, [1030] = {.lex_state = 38, .external_lex_state = 2}, [1031] = {.lex_state = 38, .external_lex_state = 2}, - [1032] = {.lex_state = 38, .external_lex_state = 2}, - [1033] = {.lex_state = 38, .external_lex_state = 2}, + [1032] = {.lex_state = 37, .external_lex_state = 5}, + [1033] = {.lex_state = 352, .external_lex_state = 5}, [1034] = {.lex_state = 38, .external_lex_state = 2}, [1035] = {.lex_state = 38, .external_lex_state = 2}, [1036] = {.lex_state = 38, .external_lex_state = 2}, - [1037] = {.lex_state = 352, .external_lex_state = 2}, + [1037] = {.lex_state = 352, .external_lex_state = 5}, [1038] = {.lex_state = 38, .external_lex_state = 2}, - [1039] = {.lex_state = 352, .external_lex_state = 2}, + [1039] = {.lex_state = 38, .external_lex_state = 2}, [1040] = {.lex_state = 38, .external_lex_state = 2}, - [1041] = {.lex_state = 37, .external_lex_state = 5}, - [1042] = {.lex_state = 352, .external_lex_state = 2}, + [1041] = {.lex_state = 38, .external_lex_state = 2}, + [1042] = {.lex_state = 38, .external_lex_state = 2}, [1043] = {.lex_state = 38, .external_lex_state = 2}, - [1044] = {.lex_state = 352, .external_lex_state = 5}, - [1045] = {.lex_state = 41, .external_lex_state = 2}, - [1046] = {.lex_state = 37, .external_lex_state = 5}, - [1047] = {.lex_state = 351, .external_lex_state = 2}, - [1048] = {.lex_state = 351, .external_lex_state = 2}, - [1049] = {.lex_state = 37, .external_lex_state = 5}, + [1044] = {.lex_state = 38, .external_lex_state = 2}, + [1045] = {.lex_state = 352, .external_lex_state = 5}, + [1046] = {.lex_state = 41, .external_lex_state = 2}, + [1047] = {.lex_state = 37, .external_lex_state = 5}, + [1048] = {.lex_state = 38, .external_lex_state = 2}, + [1049] = {.lex_state = 352, .external_lex_state = 5}, [1050] = {.lex_state = 352, .external_lex_state = 5}, [1051] = {.lex_state = 38, .external_lex_state = 2}, - [1052] = {.lex_state = 38, .external_lex_state = 2}, - [1053] = {.lex_state = 37, .external_lex_state = 5}, + [1052] = {.lex_state = 352, .external_lex_state = 5}, + [1053] = {.lex_state = 37, .external_lex_state = 2}, [1054] = {.lex_state = 38, .external_lex_state = 2}, - [1055] = {.lex_state = 38, .external_lex_state = 2}, - [1056] = {.lex_state = 38, .external_lex_state = 2}, + [1055] = {.lex_state = 37, .external_lex_state = 2}, + [1056] = {.lex_state = 352, .external_lex_state = 5}, [1057] = {.lex_state = 38, .external_lex_state = 2}, - [1058] = {.lex_state = 38, .external_lex_state = 2}, - [1059] = {.lex_state = 38, .external_lex_state = 2}, + [1058] = {.lex_state = 37, .external_lex_state = 5}, + [1059] = {.lex_state = 352, .external_lex_state = 5}, [1060] = {.lex_state = 38, .external_lex_state = 2}, - [1061] = {.lex_state = 352, .external_lex_state = 5}, - [1062] = {.lex_state = 38, .external_lex_state = 2}, + [1061] = {.lex_state = 38, .external_lex_state = 2}, + [1062] = {.lex_state = 352, .external_lex_state = 5}, [1063] = {.lex_state = 38, .external_lex_state = 2}, [1064] = {.lex_state = 38, .external_lex_state = 2}, [1065] = {.lex_state = 38, .external_lex_state = 2}, [1066] = {.lex_state = 38, .external_lex_state = 2}, [1067] = {.lex_state = 38, .external_lex_state = 2}, - [1068] = {.lex_state = 355, .external_lex_state = 2}, + [1068] = {.lex_state = 352, .external_lex_state = 2}, [1069] = {.lex_state = 38, .external_lex_state = 2}, [1070] = {.lex_state = 38, .external_lex_state = 2}, - [1071] = {.lex_state = 38, .external_lex_state = 2}, + [1071] = {.lex_state = 355, .external_lex_state = 2}, [1072] = {.lex_state = 38, .external_lex_state = 2}, - [1073] = {.lex_state = 38, .external_lex_state = 2}, + [1073] = {.lex_state = 352, .external_lex_state = 5}, [1074] = {.lex_state = 38, .external_lex_state = 2}, [1075] = {.lex_state = 38, .external_lex_state = 2}, [1076] = {.lex_state = 38, .external_lex_state = 2}, [1077] = {.lex_state = 38, .external_lex_state = 2}, - [1078] = {.lex_state = 353, .external_lex_state = 5}, - [1079] = {.lex_state = 37, .external_lex_state = 5}, + [1078] = {.lex_state = 38, .external_lex_state = 2}, + [1079] = {.lex_state = 38, .external_lex_state = 2}, [1080] = {.lex_state = 38, .external_lex_state = 2}, [1081] = {.lex_state = 38, .external_lex_state = 2}, - [1082] = {.lex_state = 353, .external_lex_state = 5}, + [1082] = {.lex_state = 38, .external_lex_state = 2}, [1083] = {.lex_state = 38, .external_lex_state = 2}, - [1084] = {.lex_state = 38, .external_lex_state = 2}, - [1085] = {.lex_state = 38, .external_lex_state = 2}, - [1086] = {.lex_state = 37, .external_lex_state = 2}, - [1087] = {.lex_state = 37, .external_lex_state = 2}, + [1084] = {.lex_state = 352, .external_lex_state = 2}, + [1085] = {.lex_state = 353, .external_lex_state = 2}, + [1086] = {.lex_state = 38, .external_lex_state = 2}, + [1087] = {.lex_state = 38, .external_lex_state = 2}, [1088] = {.lex_state = 38, .external_lex_state = 2}, [1089] = {.lex_state = 38, .external_lex_state = 2}, [1090] = {.lex_state = 37, .external_lex_state = 5}, - [1091] = {.lex_state = 37, .external_lex_state = 5}, - [1092] = {.lex_state = 38, .external_lex_state = 2}, - [1093] = {.lex_state = 38, .external_lex_state = 2}, + [1091] = {.lex_state = 38, .external_lex_state = 2}, + [1092] = {.lex_state = 352, .external_lex_state = 5}, + [1093] = {.lex_state = 37, .external_lex_state = 5}, [1094] = {.lex_state = 38, .external_lex_state = 2}, - [1095] = {.lex_state = 352, .external_lex_state = 2}, - [1096] = {.lex_state = 37, .external_lex_state = 2}, + [1095] = {.lex_state = 38, .external_lex_state = 2}, + [1096] = {.lex_state = 354, .external_lex_state = 2}, [1097] = {.lex_state = 38, .external_lex_state = 2}, [1098] = {.lex_state = 38, .external_lex_state = 2}, - [1099] = {.lex_state = 352, .external_lex_state = 5}, - [1100] = {.lex_state = 355, .external_lex_state = 2}, - [1101] = {.lex_state = 37, .external_lex_state = 5}, + [1099] = {.lex_state = 38, .external_lex_state = 2}, + [1100] = {.lex_state = 38, .external_lex_state = 2}, + [1101] = {.lex_state = 38, .external_lex_state = 2}, [1102] = {.lex_state = 38, .external_lex_state = 2}, [1103] = {.lex_state = 38, .external_lex_state = 2}, - [1104] = {.lex_state = 352, .external_lex_state = 5}, - [1105] = {.lex_state = 354, .external_lex_state = 2}, + [1104] = {.lex_state = 38, .external_lex_state = 2}, + [1105] = {.lex_state = 38, .external_lex_state = 2}, [1106] = {.lex_state = 38, .external_lex_state = 2}, [1107] = {.lex_state = 37, .external_lex_state = 5}, - [1108] = {.lex_state = 37, .external_lex_state = 5}, - [1109] = {.lex_state = 37, .external_lex_state = 5}, + [1108] = {.lex_state = 38, .external_lex_state = 2}, + [1109] = {.lex_state = 38, .external_lex_state = 2}, [1110] = {.lex_state = 38, .external_lex_state = 2}, [1111] = {.lex_state = 38, .external_lex_state = 2}, - [1112] = {.lex_state = 38, .external_lex_state = 2}, + [1112] = {.lex_state = 41, .external_lex_state = 2}, [1113] = {.lex_state = 38, .external_lex_state = 2}, - [1114] = {.lex_state = 38, .external_lex_state = 2}, - [1115] = {.lex_state = 352, .external_lex_state = 5}, + [1114] = {.lex_state = 352, .external_lex_state = 5}, + [1115] = {.lex_state = 38, .external_lex_state = 2}, [1116] = {.lex_state = 38, .external_lex_state = 2}, [1117] = {.lex_state = 38, .external_lex_state = 2}, [1118] = {.lex_state = 38, .external_lex_state = 2}, [1119] = {.lex_state = 38, .external_lex_state = 2}, - [1120] = {.lex_state = 41, .external_lex_state = 2}, - [1121] = {.lex_state = 38, .external_lex_state = 2}, + [1120] = {.lex_state = 38, .external_lex_state = 2}, + [1121] = {.lex_state = 352, .external_lex_state = 2}, [1122] = {.lex_state = 38, .external_lex_state = 2}, - [1123] = {.lex_state = 38, .external_lex_state = 2}, - [1124] = {.lex_state = 37, .external_lex_state = 5}, + [1123] = {.lex_state = 41, .external_lex_state = 2}, + [1124] = {.lex_state = 38, .external_lex_state = 2}, [1125] = {.lex_state = 38, .external_lex_state = 2}, - [1126] = {.lex_state = 38, .external_lex_state = 2}, - [1127] = {.lex_state = 38, .external_lex_state = 2}, + [1126] = {.lex_state = 37, .external_lex_state = 5}, + [1127] = {.lex_state = 352, .external_lex_state = 5}, [1128] = {.lex_state = 38, .external_lex_state = 2}, - [1129] = {.lex_state = 37, .external_lex_state = 5}, + [1129] = {.lex_state = 38, .external_lex_state = 2}, [1130] = {.lex_state = 38, .external_lex_state = 2}, [1131] = {.lex_state = 38, .external_lex_state = 2}, [1132] = {.lex_state = 38, .external_lex_state = 2}, - [1133] = {.lex_state = 38, .external_lex_state = 2}, - [1134] = {.lex_state = 38, .external_lex_state = 2}, + [1133] = {.lex_state = 37, .external_lex_state = 5}, + [1134] = {.lex_state = 37, .external_lex_state = 5}, [1135] = {.lex_state = 38, .external_lex_state = 2}, [1136] = {.lex_state = 352, .external_lex_state = 5}, - [1137] = {.lex_state = 352, .external_lex_state = 5}, + [1137] = {.lex_state = 38, .external_lex_state = 2}, [1138] = {.lex_state = 38, .external_lex_state = 2}, - [1139] = {.lex_state = 352, .external_lex_state = 5}, + [1139] = {.lex_state = 37, .external_lex_state = 5}, [1140] = {.lex_state = 38, .external_lex_state = 2}, - [1141] = {.lex_state = 37, .external_lex_state = 5}, - [1142] = {.lex_state = 38, .external_lex_state = 2}, + [1141] = {.lex_state = 38, .external_lex_state = 2}, + [1142] = {.lex_state = 352, .external_lex_state = 5}, [1143] = {.lex_state = 38, .external_lex_state = 2}, [1144] = {.lex_state = 38, .external_lex_state = 2}, - [1145] = {.lex_state = 352, .external_lex_state = 5}, - [1146] = {.lex_state = 37, .external_lex_state = 5}, + [1145] = {.lex_state = 38, .external_lex_state = 2}, + [1146] = {.lex_state = 38, .external_lex_state = 2}, [1147] = {.lex_state = 38, .external_lex_state = 2}, - [1148] = {.lex_state = 352, .external_lex_state = 5}, + [1148] = {.lex_state = 38, .external_lex_state = 2}, [1149] = {.lex_state = 38, .external_lex_state = 2}, - [1150] = {.lex_state = 352, .external_lex_state = 5}, - [1151] = {.lex_state = 37, .external_lex_state = 5}, + [1150] = {.lex_state = 38, .external_lex_state = 2}, + [1151] = {.lex_state = 352, .external_lex_state = 5}, [1152] = {.lex_state = 38, .external_lex_state = 2}, - [1153] = {.lex_state = 38, .external_lex_state = 2}, + [1153] = {.lex_state = 37, .external_lex_state = 2}, [1154] = {.lex_state = 38, .external_lex_state = 2}, - [1155] = {.lex_state = 38, .external_lex_state = 2}, - [1156] = {.lex_state = 37, .external_lex_state = 5}, - [1157] = {.lex_state = 38, .external_lex_state = 2}, - [1158] = {.lex_state = 38, .external_lex_state = 2}, - [1159] = {.lex_state = 353, .external_lex_state = 2}, - [1160] = {.lex_state = 354, .external_lex_state = 2}, - [1161] = {.lex_state = 37, .external_lex_state = 5}, - [1162] = {.lex_state = 37, .external_lex_state = 5}, - [1163] = {.lex_state = 41, .external_lex_state = 2}, + [1155] = {.lex_state = 37, .external_lex_state = 5}, + [1156] = {.lex_state = 38, .external_lex_state = 2}, + [1157] = {.lex_state = 352, .external_lex_state = 2}, + [1158] = {.lex_state = 352, .external_lex_state = 2}, + [1159] = {.lex_state = 355, .external_lex_state = 2}, + [1160] = {.lex_state = 38, .external_lex_state = 2}, + [1161] = {.lex_state = 38, .external_lex_state = 2}, + [1162] = {.lex_state = 41, .external_lex_state = 2}, + [1163] = {.lex_state = 352, .external_lex_state = 5}, [1164] = {.lex_state = 37, .external_lex_state = 5}, - [1165] = {.lex_state = 37, .external_lex_state = 5}, - [1166] = {.lex_state = 354, .external_lex_state = 2}, + [1165] = {.lex_state = 38, .external_lex_state = 2}, + [1166] = {.lex_state = 38, .external_lex_state = 2}, [1167] = {.lex_state = 38, .external_lex_state = 2}, [1168] = {.lex_state = 38, .external_lex_state = 2}, - [1169] = {.lex_state = 38, .external_lex_state = 2}, - [1170] = {.lex_state = 38, .external_lex_state = 2}, + [1169] = {.lex_state = 352, .external_lex_state = 5}, + [1170] = {.lex_state = 352, .external_lex_state = 5}, [1171] = {.lex_state = 38, .external_lex_state = 2}, [1172] = {.lex_state = 38, .external_lex_state = 2}, - [1173] = {.lex_state = 352, .external_lex_state = 5}, - [1174] = {.lex_state = 352, .external_lex_state = 5}, - [1175] = {.lex_state = 38, .external_lex_state = 2}, - [1176] = {.lex_state = 41, .external_lex_state = 2}, - [1177] = {.lex_state = 352, .external_lex_state = 5}, - [1178] = {.lex_state = 352, .external_lex_state = 5}, - [1179] = {.lex_state = 352, .external_lex_state = 5}, - [1180] = {.lex_state = 352, .external_lex_state = 2}, + [1173] = {.lex_state = 38, .external_lex_state = 2}, + [1174] = {.lex_state = 38, .external_lex_state = 2}, + [1175] = {.lex_state = 41, .external_lex_state = 2}, + [1176] = {.lex_state = 38, .external_lex_state = 2}, + [1177] = {.lex_state = 38, .external_lex_state = 2}, + [1178] = {.lex_state = 38, .external_lex_state = 2}, + [1179] = {.lex_state = 38, .external_lex_state = 2}, + [1180] = {.lex_state = 38, .external_lex_state = 2}, [1181] = {.lex_state = 38, .external_lex_state = 2}, [1182] = {.lex_state = 38, .external_lex_state = 2}, - [1183] = {.lex_state = 41, .external_lex_state = 2}, - [1184] = {.lex_state = 352, .external_lex_state = 5}, + [1183] = {.lex_state = 37, .external_lex_state = 5}, + [1184] = {.lex_state = 354, .external_lex_state = 2}, [1185] = {.lex_state = 38, .external_lex_state = 2}, [1186] = {.lex_state = 37, .external_lex_state = 5}, - [1187] = {.lex_state = 38, .external_lex_state = 2}, + [1187] = {.lex_state = 37, .external_lex_state = 5}, [1188] = {.lex_state = 38, .external_lex_state = 2}, [1189] = {.lex_state = 38, .external_lex_state = 2}, [1190] = {.lex_state = 38, .external_lex_state = 2}, [1191] = {.lex_state = 38, .external_lex_state = 2}, - [1192] = {.lex_state = 38, .external_lex_state = 2}, - [1193] = {.lex_state = 352, .external_lex_state = 5}, - [1194] = {.lex_state = 38, .external_lex_state = 2}, - [1195] = {.lex_state = 38, .external_lex_state = 2}, + [1192] = {.lex_state = 353, .external_lex_state = 5}, + [1193] = {.lex_state = 37, .external_lex_state = 5}, + [1194] = {.lex_state = 37, .external_lex_state = 5}, + [1195] = {.lex_state = 37, .external_lex_state = 5}, [1196] = {.lex_state = 38, .external_lex_state = 2}, - [1197] = {.lex_state = 38, .external_lex_state = 2}, + [1197] = {.lex_state = 351, .external_lex_state = 2}, [1198] = {.lex_state = 38, .external_lex_state = 2}, - [1199] = {.lex_state = 38, .external_lex_state = 2}, - [1200] = {.lex_state = 38, .external_lex_state = 2}, - [1201] = {.lex_state = 352, .external_lex_state = 5}, - [1202] = {.lex_state = 38, .external_lex_state = 2}, + [1199] = {.lex_state = 351, .external_lex_state = 2}, + [1200] = {.lex_state = 37, .external_lex_state = 5}, + [1201] = {.lex_state = 37, .external_lex_state = 5}, + [1202] = {.lex_state = 354, .external_lex_state = 2}, [1203] = {.lex_state = 38, .external_lex_state = 2}, [1204] = {.lex_state = 38, .external_lex_state = 2}, - [1205] = {.lex_state = 352, .external_lex_state = 5}, + [1205] = {.lex_state = 38, .external_lex_state = 2}, [1206] = {.lex_state = 38, .external_lex_state = 2}, [1207] = {.lex_state = 38, .external_lex_state = 2}, [1208] = {.lex_state = 38, .external_lex_state = 2}, - [1209] = {.lex_state = 38, .external_lex_state = 2}, - [1210] = {.lex_state = 38, .external_lex_state = 2}, - [1211] = {.lex_state = 38, .external_lex_state = 2}, - [1212] = {.lex_state = 38, .external_lex_state = 2}, - [1213] = {.lex_state = 38, .external_lex_state = 2}, - [1214] = {.lex_state = 354, .external_lex_state = 2}, - [1215] = {.lex_state = 38, .external_lex_state = 2}, - [1216] = {.lex_state = 354, .external_lex_state = 2}, + [1209] = {.lex_state = 354, .external_lex_state = 2}, + [1210] = {.lex_state = 353, .external_lex_state = 5}, + [1211] = {.lex_state = 352, .external_lex_state = 5}, + [1212] = {.lex_state = 37, .external_lex_state = 5}, + [1213] = {.lex_state = 352, .external_lex_state = 5}, + [1214] = {.lex_state = 38, .external_lex_state = 2}, + [1215] = {.lex_state = 354, .external_lex_state = 2}, + [1216] = {.lex_state = 38, .external_lex_state = 2}, [1217] = {.lex_state = 352, .external_lex_state = 5}, - [1218] = {.lex_state = 352, .external_lex_state = 2}, - [1219] = {.lex_state = 37, .external_lex_state = 2}, - [1220] = {.lex_state = 352, .external_lex_state = 2}, + [1218] = {.lex_state = 351, .external_lex_state = 5}, + [1219] = {.lex_state = 352, .external_lex_state = 2}, + [1220] = {.lex_state = 351, .external_lex_state = 5}, [1221] = {.lex_state = 352, .external_lex_state = 2}, [1222] = {.lex_state = 37, .external_lex_state = 2}, - [1223] = {.lex_state = 352, .external_lex_state = 2}, - [1224] = {.lex_state = 37, .external_lex_state = 2}, - [1225] = {.lex_state = 37, .external_lex_state = 2}, - [1226] = {.lex_state = 352, .external_lex_state = 2}, + [1223] = {.lex_state = 351, .external_lex_state = 5}, + [1224] = {.lex_state = 352, .external_lex_state = 2}, + [1225] = {.lex_state = 352, .external_lex_state = 2}, + [1226] = {.lex_state = 37, .external_lex_state = 2}, [1227] = {.lex_state = 37, .external_lex_state = 2}, - [1228] = {.lex_state = 37, .external_lex_state = 2}, + [1228] = {.lex_state = 352, .external_lex_state = 2}, [1229] = {.lex_state = 37, .external_lex_state = 2}, - [1230] = {.lex_state = 37, .external_lex_state = 2}, + [1230] = {.lex_state = 351, .external_lex_state = 5}, [1231] = {.lex_state = 37, .external_lex_state = 2}, - [1232] = {.lex_state = 352, .external_lex_state = 2}, - [1233] = {.lex_state = 37, .external_lex_state = 2}, - [1234] = {.lex_state = 352, .external_lex_state = 2}, + [1232] = {.lex_state = 351, .external_lex_state = 2}, + [1233] = {.lex_state = 351, .external_lex_state = 2}, + [1234] = {.lex_state = 351, .external_lex_state = 5}, [1235] = {.lex_state = 352, .external_lex_state = 2}, - [1236] = {.lex_state = 37, .external_lex_state = 2}, - [1237] = {.lex_state = 37, .external_lex_state = 2}, + [1236] = {.lex_state = 352, .external_lex_state = 2}, + [1237] = {.lex_state = 352, .external_lex_state = 2}, [1238] = {.lex_state = 37, .external_lex_state = 2}, - [1239] = {.lex_state = 37, .external_lex_state = 2}, - [1240] = {.lex_state = 37, .external_lex_state = 2}, - [1241] = {.lex_state = 37, .external_lex_state = 2}, + [1239] = {.lex_state = 352, .external_lex_state = 2}, + [1240] = {.lex_state = 352, .external_lex_state = 2}, + [1241] = {.lex_state = 352, .external_lex_state = 2}, [1242] = {.lex_state = 352, .external_lex_state = 2}, - [1243] = {.lex_state = 37, .external_lex_state = 2}, + [1243] = {.lex_state = 352, .external_lex_state = 2}, [1244] = {.lex_state = 37, .external_lex_state = 2}, - [1245] = {.lex_state = 352, .external_lex_state = 2}, - [1246] = {.lex_state = 352, .external_lex_state = 2}, + [1245] = {.lex_state = 37, .external_lex_state = 2}, + [1246] = {.lex_state = 37, .external_lex_state = 2}, [1247] = {.lex_state = 37, .external_lex_state = 2}, [1248] = {.lex_state = 352, .external_lex_state = 2}, [1249] = {.lex_state = 352, .external_lex_state = 2}, [1250] = {.lex_state = 352, .external_lex_state = 2}, [1251] = {.lex_state = 352, .external_lex_state = 2}, [1252] = {.lex_state = 352, .external_lex_state = 2}, - [1253] = {.lex_state = 37, .external_lex_state = 2}, - [1254] = {.lex_state = 37, .external_lex_state = 2}, - [1255] = {.lex_state = 352, .external_lex_state = 2}, - [1256] = {.lex_state = 351, .external_lex_state = 5}, - [1257] = {.lex_state = 37, .external_lex_state = 2}, + [1253] = {.lex_state = 352, .external_lex_state = 2}, + [1254] = {.lex_state = 353, .external_lex_state = 2}, + [1255] = {.lex_state = 37, .external_lex_state = 2}, + [1256] = {.lex_state = 37, .external_lex_state = 2}, + [1257] = {.lex_state = 352, .external_lex_state = 2}, [1258] = {.lex_state = 37, .external_lex_state = 2}, - [1259] = {.lex_state = 352, .external_lex_state = 2}, + [1259] = {.lex_state = 37, .external_lex_state = 2}, [1260] = {.lex_state = 352, .external_lex_state = 2}, - [1261] = {.lex_state = 353, .external_lex_state = 2}, - [1262] = {.lex_state = 351, .external_lex_state = 5}, + [1261] = {.lex_state = 37, .external_lex_state = 2}, + [1262] = {.lex_state = 352, .external_lex_state = 2}, [1263] = {.lex_state = 37, .external_lex_state = 2}, - [1264] = {.lex_state = 352, .external_lex_state = 2}, + [1264] = {.lex_state = 37, .external_lex_state = 2}, [1265] = {.lex_state = 37, .external_lex_state = 2}, - [1266] = {.lex_state = 351, .external_lex_state = 5}, - [1267] = {.lex_state = 351, .external_lex_state = 5}, - [1268] = {.lex_state = 352, .external_lex_state = 2}, + [1266] = {.lex_state = 352, .external_lex_state = 2}, + [1267] = {.lex_state = 352, .external_lex_state = 2}, + [1268] = {.lex_state = 351, .external_lex_state = 5}, [1269] = {.lex_state = 352, .external_lex_state = 2}, [1270] = {.lex_state = 352, .external_lex_state = 2}, [1271] = {.lex_state = 37, .external_lex_state = 2}, - [1272] = {.lex_state = 352, .external_lex_state = 2}, - [1273] = {.lex_state = 352, .external_lex_state = 2}, + [1272] = {.lex_state = 37, .external_lex_state = 2}, + [1273] = {.lex_state = 37, .external_lex_state = 2}, [1274] = {.lex_state = 37, .external_lex_state = 2}, [1275] = {.lex_state = 37, .external_lex_state = 2}, [1276] = {.lex_state = 37, .external_lex_state = 2}, [1277] = {.lex_state = 37, .external_lex_state = 2}, [1278] = {.lex_state = 37, .external_lex_state = 2}, [1279] = {.lex_state = 37, .external_lex_state = 2}, - [1280] = {.lex_state = 37, .external_lex_state = 2}, - [1281] = {.lex_state = 352, .external_lex_state = 2}, - [1282] = {.lex_state = 37, .external_lex_state = 2}, - [1283] = {.lex_state = 352, .external_lex_state = 2}, - [1284] = {.lex_state = 37, .external_lex_state = 2}, - [1285] = {.lex_state = 37, .external_lex_state = 2}, + [1280] = {.lex_state = 352, .external_lex_state = 2}, + [1281] = {.lex_state = 37, .external_lex_state = 2}, + [1282] = {.lex_state = 352, .external_lex_state = 2}, + [1283] = {.lex_state = 37, .external_lex_state = 2}, + [1284] = {.lex_state = 352, .external_lex_state = 2}, + [1285] = {.lex_state = 351, .external_lex_state = 5}, [1286] = {.lex_state = 352, .external_lex_state = 2}, - [1287] = {.lex_state = 352, .external_lex_state = 2}, - [1288] = {.lex_state = 352, .external_lex_state = 2}, + [1287] = {.lex_state = 351, .external_lex_state = 5}, + [1288] = {.lex_state = 351, .external_lex_state = 5}, [1289] = {.lex_state = 37, .external_lex_state = 2}, [1290] = {.lex_state = 37, .external_lex_state = 2}, [1291] = {.lex_state = 37, .external_lex_state = 2}, - [1292] = {.lex_state = 37, .external_lex_state = 2}, - [1293] = {.lex_state = 37, .external_lex_state = 2}, - [1294] = {.lex_state = 37, .external_lex_state = 2}, + [1292] = {.lex_state = 352, .external_lex_state = 2}, + [1293] = {.lex_state = 352, .external_lex_state = 2}, + [1294] = {.lex_state = 352, .external_lex_state = 2}, [1295] = {.lex_state = 37, .external_lex_state = 2}, - [1296] = {.lex_state = 352, .external_lex_state = 2}, - [1297] = {.lex_state = 352, .external_lex_state = 2}, + [1296] = {.lex_state = 37, .external_lex_state = 2}, + [1297] = {.lex_state = 351, .external_lex_state = 5}, [1298] = {.lex_state = 352, .external_lex_state = 2}, [1299] = {.lex_state = 352, .external_lex_state = 2}, - [1300] = {.lex_state = 352, .external_lex_state = 2}, + [1300] = {.lex_state = 37, .external_lex_state = 2}, [1301] = {.lex_state = 37, .external_lex_state = 2}, - [1302] = {.lex_state = 37, .external_lex_state = 2}, - [1303] = {.lex_state = 352, .external_lex_state = 2}, - [1304] = {.lex_state = 351, .external_lex_state = 5}, - [1305] = {.lex_state = 37, .external_lex_state = 2}, + [1302] = {.lex_state = 352, .external_lex_state = 2}, + [1303] = {.lex_state = 37, .external_lex_state = 2}, + [1304] = {.lex_state = 37, .external_lex_state = 2}, + [1305] = {.lex_state = 352, .external_lex_state = 2}, [1306] = {.lex_state = 352, .external_lex_state = 2}, [1307] = {.lex_state = 352, .external_lex_state = 2}, [1308] = {.lex_state = 352, .external_lex_state = 2}, - [1309] = {.lex_state = 352, .external_lex_state = 2}, + [1309] = {.lex_state = 37, .external_lex_state = 2}, [1310] = {.lex_state = 37, .external_lex_state = 2}, - [1311] = {.lex_state = 37, .external_lex_state = 2}, - [1312] = {.lex_state = 351, .external_lex_state = 5}, - [1313] = {.lex_state = 37, .external_lex_state = 2}, - [1314] = {.lex_state = 352, .external_lex_state = 2}, - [1315] = {.lex_state = 352, .external_lex_state = 2}, - [1316] = {.lex_state = 37, .external_lex_state = 2}, - [1317] = {.lex_state = 352, .external_lex_state = 2}, + [1311] = {.lex_state = 352, .external_lex_state = 2}, + [1312] = {.lex_state = 352, .external_lex_state = 2}, + [1313] = {.lex_state = 352, .external_lex_state = 2}, + [1314] = {.lex_state = 37, .external_lex_state = 2}, + [1315] = {.lex_state = 37, .external_lex_state = 2}, + [1316] = {.lex_state = 353, .external_lex_state = 2}, + [1317] = {.lex_state = 351, .external_lex_state = 2}, [1318] = {.lex_state = 352, .external_lex_state = 2}, [1319] = {.lex_state = 352, .external_lex_state = 2}, - [1320] = {.lex_state = 37, .external_lex_state = 2}, + [1320] = {.lex_state = 352, .external_lex_state = 2}, [1321] = {.lex_state = 352, .external_lex_state = 2}, - [1322] = {.lex_state = 352, .external_lex_state = 2}, + [1322] = {.lex_state = 37, .external_lex_state = 2}, [1323] = {.lex_state = 352, .external_lex_state = 2}, [1324] = {.lex_state = 352, .external_lex_state = 2}, - [1325] = {.lex_state = 37, .external_lex_state = 2}, - [1326] = {.lex_state = 37, .external_lex_state = 2}, + [1325] = {.lex_state = 352, .external_lex_state = 2}, + [1326] = {.lex_state = 352, .external_lex_state = 2}, [1327] = {.lex_state = 37, .external_lex_state = 2}, [1328] = {.lex_state = 352, .external_lex_state = 2}, - [1329] = {.lex_state = 37, .external_lex_state = 2}, - [1330] = {.lex_state = 37, .external_lex_state = 2}, + [1329] = {.lex_state = 352, .external_lex_state = 2}, + [1330] = {.lex_state = 352, .external_lex_state = 2}, [1331] = {.lex_state = 352, .external_lex_state = 2}, [1332] = {.lex_state = 37, .external_lex_state = 2}, [1333] = {.lex_state = 37, .external_lex_state = 2}, [1334] = {.lex_state = 37, .external_lex_state = 2}, - [1335] = {.lex_state = 37, .external_lex_state = 2}, + [1335] = {.lex_state = 353, .external_lex_state = 2}, [1336] = {.lex_state = 37, .external_lex_state = 2}, - [1337] = {.lex_state = 37, .external_lex_state = 2}, + [1337] = {.lex_state = 352, .external_lex_state = 2}, [1338] = {.lex_state = 352, .external_lex_state = 2}, [1339] = {.lex_state = 352, .external_lex_state = 2}, - [1340] = {.lex_state = 352, .external_lex_state = 2}, + [1340] = {.lex_state = 351, .external_lex_state = 5}, [1341] = {.lex_state = 352, .external_lex_state = 2}, - [1342] = {.lex_state = 352, .external_lex_state = 2}, - [1343] = {.lex_state = 37, .external_lex_state = 2}, - [1344] = {.lex_state = 351, .external_lex_state = 5}, - [1345] = {.lex_state = 37, .external_lex_state = 2}, + [1342] = {.lex_state = 353, .external_lex_state = 2}, + [1343] = {.lex_state = 352, .external_lex_state = 2}, + [1344] = {.lex_state = 37, .external_lex_state = 2}, + [1345] = {.lex_state = 352, .external_lex_state = 2}, [1346] = {.lex_state = 352, .external_lex_state = 2}, [1347] = {.lex_state = 352, .external_lex_state = 2}, [1348] = {.lex_state = 352, .external_lex_state = 2}, - [1349] = {.lex_state = 352, .external_lex_state = 2}, + [1349] = {.lex_state = 37, .external_lex_state = 2}, [1350] = {.lex_state = 37, .external_lex_state = 2}, - [1351] = {.lex_state = 351, .external_lex_state = 5}, + [1351] = {.lex_state = 352, .external_lex_state = 2}, [1352] = {.lex_state = 37, .external_lex_state = 2}, - [1353] = {.lex_state = 353, .external_lex_state = 2}, + [1353] = {.lex_state = 352, .external_lex_state = 2}, [1354] = {.lex_state = 37, .external_lex_state = 2}, - [1355] = {.lex_state = 37, .external_lex_state = 2}, - [1356] = {.lex_state = 352, .external_lex_state = 2}, + [1355] = {.lex_state = 352, .external_lex_state = 2}, + [1356] = {.lex_state = 351, .external_lex_state = 5}, [1357] = {.lex_state = 352, .external_lex_state = 2}, [1358] = {.lex_state = 352, .external_lex_state = 2}, - [1359] = {.lex_state = 37, .external_lex_state = 2}, + [1359] = {.lex_state = 352, .external_lex_state = 2}, [1360] = {.lex_state = 352, .external_lex_state = 2}, - [1361] = {.lex_state = 37, .external_lex_state = 2}, - [1362] = {.lex_state = 352, .external_lex_state = 2}, + [1361] = {.lex_state = 352, .external_lex_state = 2}, + [1362] = {.lex_state = 37, .external_lex_state = 2}, [1363] = {.lex_state = 352, .external_lex_state = 2}, - [1364] = {.lex_state = 37, .external_lex_state = 2}, - [1365] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 352, .external_lex_state = 2}, + [1365] = {.lex_state = 352, .external_lex_state = 2}, [1366] = {.lex_state = 37, .external_lex_state = 2}, [1367] = {.lex_state = 37, .external_lex_state = 2}, [1368] = {.lex_state = 37, .external_lex_state = 2}, - [1369] = {.lex_state = 352, .external_lex_state = 2}, - [1370] = {.lex_state = 37, .external_lex_state = 2}, - [1371] = {.lex_state = 37, .external_lex_state = 2}, + [1369] = {.lex_state = 37, .external_lex_state = 2}, + [1370] = {.lex_state = 351, .external_lex_state = 5}, + [1371] = {.lex_state = 351, .external_lex_state = 5}, [1372] = {.lex_state = 352, .external_lex_state = 2}, - [1373] = {.lex_state = 37, .external_lex_state = 2}, - [1374] = {.lex_state = 37, .external_lex_state = 2}, - [1375] = {.lex_state = 352, .external_lex_state = 2}, - [1376] = {.lex_state = 353, .external_lex_state = 2}, + [1373] = {.lex_state = 352, .external_lex_state = 2}, + [1374] = {.lex_state = 352, .external_lex_state = 2}, + [1375] = {.lex_state = 351, .external_lex_state = 5}, + [1376] = {.lex_state = 352, .external_lex_state = 2}, [1377] = {.lex_state = 37, .external_lex_state = 2}, [1378] = {.lex_state = 37, .external_lex_state = 2}, - [1379] = {.lex_state = 352, .external_lex_state = 2}, - [1380] = {.lex_state = 352, .external_lex_state = 2}, - [1381] = {.lex_state = 351, .external_lex_state = 2}, + [1379] = {.lex_state = 37, .external_lex_state = 2}, + [1380] = {.lex_state = 351, .external_lex_state = 5}, + [1381] = {.lex_state = 37, .external_lex_state = 2}, [1382] = {.lex_state = 352, .external_lex_state = 2}, [1383] = {.lex_state = 352, .external_lex_state = 2}, [1384] = {.lex_state = 352, .external_lex_state = 2}, @@ -21659,9 +21665,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1396] = {.lex_state = 352, .external_lex_state = 2}, [1397] = {.lex_state = 352, .external_lex_state = 2}, [1398] = {.lex_state = 352, .external_lex_state = 2}, - [1399] = {.lex_state = 352, .external_lex_state = 2}, + [1399] = {.lex_state = 37, .external_lex_state = 2}, [1400] = {.lex_state = 37, .external_lex_state = 2}, - [1401] = {.lex_state = 353, .external_lex_state = 2}, + [1401] = {.lex_state = 352, .external_lex_state = 2}, [1402] = {.lex_state = 352, .external_lex_state = 2}, [1403] = {.lex_state = 37, .external_lex_state = 2}, [1404] = {.lex_state = 352, .external_lex_state = 2}, @@ -21671,11 +21677,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1408] = {.lex_state = 37, .external_lex_state = 2}, [1409] = {.lex_state = 37, .external_lex_state = 2}, [1410] = {.lex_state = 37, .external_lex_state = 2}, - [1411] = {.lex_state = 351, .external_lex_state = 5}, - [1412] = {.lex_state = 351, .external_lex_state = 5}, - [1413] = {.lex_state = 351, .external_lex_state = 5}, - [1414] = {.lex_state = 37, .external_lex_state = 2}, - [1415] = {.lex_state = 351, .external_lex_state = 5}, + [1411] = {.lex_state = 37, .external_lex_state = 2}, + [1412] = {.lex_state = 37, .external_lex_state = 2}, + [1413] = {.lex_state = 37, .external_lex_state = 2}, + [1414] = {.lex_state = 351, .external_lex_state = 5}, + [1415] = {.lex_state = 37, .external_lex_state = 2}, [1416] = {.lex_state = 37, .external_lex_state = 2}, [1417] = {.lex_state = 37, .external_lex_state = 2}, [1418] = {.lex_state = 37, .external_lex_state = 2}, @@ -21692,78 +21698,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1429] = {.lex_state = 352, .external_lex_state = 2}, [1430] = {.lex_state = 352, .external_lex_state = 2}, [1431] = {.lex_state = 37, .external_lex_state = 2}, - [1432] = {.lex_state = 37, .external_lex_state = 2}, - [1433] = {.lex_state = 352, .external_lex_state = 2}, - [1434] = {.lex_state = 351, .external_lex_state = 5}, + [1432] = {.lex_state = 352, .external_lex_state = 2}, + [1433] = {.lex_state = 37, .external_lex_state = 2}, + [1434] = {.lex_state = 37, .external_lex_state = 2}, [1435] = {.lex_state = 352, .external_lex_state = 2}, [1436] = {.lex_state = 352, .external_lex_state = 2}, [1437] = {.lex_state = 37, .external_lex_state = 2}, [1438] = {.lex_state = 352, .external_lex_state = 2}, [1439] = {.lex_state = 352, .external_lex_state = 2}, - [1440] = {.lex_state = 351, .external_lex_state = 5}, - [1441] = {.lex_state = 352, .external_lex_state = 2}, - [1442] = {.lex_state = 352, .external_lex_state = 2}, - [1443] = {.lex_state = 352, .external_lex_state = 2}, + [1440] = {.lex_state = 352, .external_lex_state = 2}, + [1441] = {.lex_state = 37, .external_lex_state = 2}, + [1442] = {.lex_state = 37, .external_lex_state = 2}, + [1443] = {.lex_state = 37, .external_lex_state = 2}, [1444] = {.lex_state = 352, .external_lex_state = 2}, - [1445] = {.lex_state = 37, .external_lex_state = 2}, + [1445] = {.lex_state = 352, .external_lex_state = 2}, [1446] = {.lex_state = 352, .external_lex_state = 2}, - [1447] = {.lex_state = 352, .external_lex_state = 2}, - [1448] = {.lex_state = 352, .external_lex_state = 2}, - [1449] = {.lex_state = 352, .external_lex_state = 2}, + [1447] = {.lex_state = 37, .external_lex_state = 2}, + [1448] = {.lex_state = 37, .external_lex_state = 2}, + [1449] = {.lex_state = 37, .external_lex_state = 2}, [1450] = {.lex_state = 37, .external_lex_state = 2}, - [1451] = {.lex_state = 351, .external_lex_state = 2}, - [1452] = {.lex_state = 351, .external_lex_state = 2}, - [1453] = {.lex_state = 352, .external_lex_state = 2}, + [1451] = {.lex_state = 37, .external_lex_state = 2}, + [1452] = {.lex_state = 37, .external_lex_state = 2}, + [1453] = {.lex_state = 37, .external_lex_state = 2}, [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 351, .external_lex_state = 5}, - [1456] = {.lex_state = 353, .external_lex_state = 2}, + [1455] = {.lex_state = 37, .external_lex_state = 2}, + [1456] = {.lex_state = 37, .external_lex_state = 2}, [1457] = {.lex_state = 37, .external_lex_state = 2}, [1458] = {.lex_state = 37, .external_lex_state = 2}, - [1459] = {.lex_state = 351, .external_lex_state = 5}, + [1459] = {.lex_state = 37, .external_lex_state = 2}, [1460] = {.lex_state = 37, .external_lex_state = 2}, - [1461] = {.lex_state = 352, .external_lex_state = 2}, - [1462] = {.lex_state = 37, .external_lex_state = 2}, + [1461] = {.lex_state = 37, .external_lex_state = 2}, + [1462] = {.lex_state = 351, .external_lex_state = 5}, [1463] = {.lex_state = 37, .external_lex_state = 2}, [1464] = {.lex_state = 37, .external_lex_state = 2}, - [1465] = {.lex_state = 352, .external_lex_state = 2}, + [1465] = {.lex_state = 37, .external_lex_state = 2}, [1466] = {.lex_state = 37, .external_lex_state = 2}, - [1467] = {.lex_state = 352, .external_lex_state = 2}, - [1468] = {.lex_state = 352, .external_lex_state = 2}, + [1467] = {.lex_state = 37, .external_lex_state = 2}, + [1468] = {.lex_state = 37, .external_lex_state = 2}, [1469] = {.lex_state = 37, .external_lex_state = 2}, - [1470] = {.lex_state = 37, .external_lex_state = 2}, - [1471] = {.lex_state = 37, .external_lex_state = 2}, - [1472] = {.lex_state = 37, .external_lex_state = 2}, + [1470] = {.lex_state = 352, .external_lex_state = 2}, + [1471] = {.lex_state = 352, .external_lex_state = 2}, + [1472] = {.lex_state = 352, .external_lex_state = 2}, [1473] = {.lex_state = 37, .external_lex_state = 2}, [1474] = {.lex_state = 37, .external_lex_state = 2}, [1475] = {.lex_state = 37, .external_lex_state = 2}, - [1476] = {.lex_state = 352, .external_lex_state = 2}, - [1477] = {.lex_state = 352, .external_lex_state = 2}, + [1476] = {.lex_state = 37, .external_lex_state = 2}, + [1477] = {.lex_state = 37, .external_lex_state = 2}, [1478] = {.lex_state = 37, .external_lex_state = 2}, [1479] = {.lex_state = 37, .external_lex_state = 2}, - [1480] = {.lex_state = 352, .external_lex_state = 2}, - [1481] = {.lex_state = 352, .external_lex_state = 2}, - [1482] = {.lex_state = 352, .external_lex_state = 2}, - [1483] = {.lex_state = 352, .external_lex_state = 2}, + [1480] = {.lex_state = 37, .external_lex_state = 2}, + [1481] = {.lex_state = 37, .external_lex_state = 2}, + [1482] = {.lex_state = 37, .external_lex_state = 2}, + [1483] = {.lex_state = 37, .external_lex_state = 2}, [1484] = {.lex_state = 37, .external_lex_state = 2}, - [1485] = {.lex_state = 37, .external_lex_state = 2}, + [1485] = {.lex_state = 352, .external_lex_state = 2}, [1486] = {.lex_state = 351, .external_lex_state = 5}, - [1487] = {.lex_state = 37, .external_lex_state = 2}, - [1488] = {.lex_state = 37, .external_lex_state = 2}, - [1489] = {.lex_state = 37, .external_lex_state = 2}, - [1490] = {.lex_state = 37, .external_lex_state = 2}, + [1487] = {.lex_state = 353, .external_lex_state = 2}, + [1488] = {.lex_state = 351, .external_lex_state = 5}, + [1489] = {.lex_state = 351, .external_lex_state = 5}, + [1490] = {.lex_state = 351, .external_lex_state = 5}, [1491] = {.lex_state = 37, .external_lex_state = 2}, - [1492] = {.lex_state = 37, .external_lex_state = 2}, - [1493] = {.lex_state = 352, .external_lex_state = 2}, + [1492] = {.lex_state = 351, .external_lex_state = 5}, + [1493] = {.lex_state = 37, .external_lex_state = 2}, [1494] = {.lex_state = 352, .external_lex_state = 2}, [1495] = {.lex_state = 352, .external_lex_state = 2}, - [1496] = {.lex_state = 352, .external_lex_state = 2}, + [1496] = {.lex_state = 37, .external_lex_state = 2}, [1497] = {.lex_state = 37, .external_lex_state = 2}, - [1498] = {.lex_state = 351, .external_lex_state = 5}, - [1499] = {.lex_state = 351, .external_lex_state = 5}, - [1500] = {.lex_state = 351, .external_lex_state = 5}, - [1501] = {.lex_state = 351, .external_lex_state = 5}, - [1502] = {.lex_state = 351, .external_lex_state = 5}, - [1503] = {.lex_state = 351, .external_lex_state = 5}, + [1498] = {.lex_state = 37, .external_lex_state = 2}, + [1499] = {.lex_state = 352, .external_lex_state = 2}, + [1500] = {.lex_state = 352, .external_lex_state = 2}, + [1501] = {.lex_state = 352, .external_lex_state = 2}, + [1502] = {.lex_state = 352, .external_lex_state = 2}, + [1503] = {.lex_state = 352, .external_lex_state = 2}, [1504] = {.lex_state = 351, .external_lex_state = 2}, [1505] = {.lex_state = 351, .external_lex_state = 2}, [1506] = {.lex_state = 351, .external_lex_state = 2}, @@ -21897,31 +21903,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1634] = {.lex_state = 48, .external_lex_state = 2}, [1635] = {.lex_state = 48, .external_lex_state = 2}, [1636] = {.lex_state = 48, .external_lex_state = 2}, - [1637] = {.lex_state = 48, .external_lex_state = 2}, - [1638] = {.lex_state = 48, .external_lex_state = 2}, + [1637] = {.lex_state = 351, .external_lex_state = 2}, + [1638] = {.lex_state = 351, .external_lex_state = 2}, [1639] = {.lex_state = 48, .external_lex_state = 2}, [1640] = {.lex_state = 48, .external_lex_state = 2}, - [1641] = {.lex_state = 351, .external_lex_state = 2}, + [1641] = {.lex_state = 48, .external_lex_state = 2}, [1642] = {.lex_state = 48, .external_lex_state = 2}, - [1643] = {.lex_state = 351, .external_lex_state = 2}, - [1644] = {.lex_state = 48, .external_lex_state = 2}, - [1645] = {.lex_state = 351, .external_lex_state = 2}, - [1646] = {.lex_state = 48, .external_lex_state = 2}, + [1643] = {.lex_state = 48, .external_lex_state = 2}, + [1644] = {.lex_state = 351, .external_lex_state = 2}, + [1645] = {.lex_state = 48, .external_lex_state = 2}, + [1646] = {.lex_state = 351, .external_lex_state = 2}, [1647] = {.lex_state = 351, .external_lex_state = 2}, - [1648] = {.lex_state = 48, .external_lex_state = 2}, + [1648] = {.lex_state = 351, .external_lex_state = 2}, [1649] = {.lex_state = 351, .external_lex_state = 2}, - [1650] = {.lex_state = 351, .external_lex_state = 2}, + [1650] = {.lex_state = 48, .external_lex_state = 2}, [1651] = {.lex_state = 351, .external_lex_state = 2}, [1652] = {.lex_state = 351, .external_lex_state = 2}, - [1653] = {.lex_state = 351, .external_lex_state = 2}, - [1654] = {.lex_state = 351, .external_lex_state = 2}, + [1653] = {.lex_state = 48, .external_lex_state = 2}, + [1654] = {.lex_state = 48, .external_lex_state = 2}, [1655] = {.lex_state = 351, .external_lex_state = 2}, [1656] = {.lex_state = 351, .external_lex_state = 2}, - [1657] = {.lex_state = 351, .external_lex_state = 2}, - [1658] = {.lex_state = 48, .external_lex_state = 2}, - [1659] = {.lex_state = 48, .external_lex_state = 2}, - [1660] = {.lex_state = 49, .external_lex_state = 2}, - [1661] = {.lex_state = 48, .external_lex_state = 2}, + [1657] = {.lex_state = 48, .external_lex_state = 2}, + [1658] = {.lex_state = 351, .external_lex_state = 2}, + [1659] = {.lex_state = 351, .external_lex_state = 2}, + [1660] = {.lex_state = 48, .external_lex_state = 2}, + [1661] = {.lex_state = 49, .external_lex_state = 2}, [1662] = {.lex_state = 49, .external_lex_state = 2}, [1663] = {.lex_state = 49, .external_lex_state = 2}, [1664] = {.lex_state = 49, .external_lex_state = 2}, @@ -21999,19 +22005,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1736] = {.lex_state = 35, .external_lex_state = 2}, [1737] = {.lex_state = 35, .external_lex_state = 2}, [1738] = {.lex_state = 15, .external_lex_state = 4}, - [1739] = {.lex_state = 15, .external_lex_state = 4}, + [1739] = {.lex_state = 48, .external_lex_state = 2}, [1740] = {.lex_state = 15, .external_lex_state = 4}, - [1741] = {.lex_state = 48, .external_lex_state = 2}, + [1741] = {.lex_state = 15, .external_lex_state = 4}, [1742] = {.lex_state = 15, .external_lex_state = 4}, - [1743] = {.lex_state = 15, .external_lex_state = 4}, + [1743] = {.lex_state = 48, .external_lex_state = 2}, [1744] = {.lex_state = 15, .external_lex_state = 4}, - [1745] = {.lex_state = 15, .external_lex_state = 4}, - [1746] = {.lex_state = 48, .external_lex_state = 2}, + [1745] = {.lex_state = 48, .external_lex_state = 2}, + [1746] = {.lex_state = 15, .external_lex_state = 4}, [1747] = {.lex_state = 48, .external_lex_state = 2}, [1748] = {.lex_state = 15, .external_lex_state = 4}, - [1749] = {.lex_state = 15, .external_lex_state = 4}, - [1750] = {.lex_state = 48, .external_lex_state = 2}, - [1751] = {.lex_state = 48, .external_lex_state = 2}, + [1749] = {.lex_state = 48, .external_lex_state = 2}, + [1750] = {.lex_state = 15, .external_lex_state = 4}, + [1751] = {.lex_state = 15, .external_lex_state = 4}, [1752] = {.lex_state = 48, .external_lex_state = 2}, [1753] = {.lex_state = 48, .external_lex_state = 2}, [1754] = {.lex_state = 48, .external_lex_state = 2}, @@ -22140,277 +22146,277 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1877] = {.lex_state = 35, .external_lex_state = 2}, [1878] = {.lex_state = 35, .external_lex_state = 2}, [1879] = {.lex_state = 15, .external_lex_state = 4}, - [1880] = {.lex_state = 18, .external_lex_state = 4}, - [1881] = {.lex_state = 15, .external_lex_state = 4}, + [1880] = {.lex_state = 15, .external_lex_state = 4}, + [1881] = {.lex_state = 15, .external_lex_state = 3}, [1882] = {.lex_state = 15, .external_lex_state = 4}, - [1883] = {.lex_state = 15, .external_lex_state = 4}, - [1884] = {.lex_state = 15, .external_lex_state = 3}, + [1883] = {.lex_state = 18, .external_lex_state = 4}, + [1884] = {.lex_state = 15, .external_lex_state = 4}, [1885] = {.lex_state = 15, .external_lex_state = 4}, - [1886] = {.lex_state = 15, .external_lex_state = 4}, - [1887] = {.lex_state = 15, .external_lex_state = 4}, - [1888] = {.lex_state = 15, .external_lex_state = 4}, - [1889] = {.lex_state = 18, .external_lex_state = 4}, + [1886] = {.lex_state = 18, .external_lex_state = 4}, + [1887] = {.lex_state = 18, .external_lex_state = 4}, + [1888] = {.lex_state = 18, .external_lex_state = 4}, + [1889] = {.lex_state = 15, .external_lex_state = 3}, [1890] = {.lex_state = 15, .external_lex_state = 4}, [1891] = {.lex_state = 15, .external_lex_state = 4}, [1892] = {.lex_state = 15, .external_lex_state = 4}, - [1893] = {.lex_state = 18, .external_lex_state = 4}, - [1894] = {.lex_state = 18, .external_lex_state = 4}, + [1893] = {.lex_state = 15, .external_lex_state = 3}, + [1894] = {.lex_state = 15, .external_lex_state = 4}, [1895] = {.lex_state = 15, .external_lex_state = 4}, [1896] = {.lex_state = 15, .external_lex_state = 4}, - [1897] = {.lex_state = 15, .external_lex_state = 3}, - [1898] = {.lex_state = 15, .external_lex_state = 4}, + [1897] = {.lex_state = 15, .external_lex_state = 4}, + [1898] = {.lex_state = 15, .external_lex_state = 3}, [1899] = {.lex_state = 15, .external_lex_state = 4}, [1900] = {.lex_state = 15, .external_lex_state = 4}, [1901] = {.lex_state = 15, .external_lex_state = 4}, - [1902] = {.lex_state = 15, .external_lex_state = 3}, - [1903] = {.lex_state = 15, .external_lex_state = 3}, - [1904] = {.lex_state = 15, .external_lex_state = 3}, + [1902] = {.lex_state = 15, .external_lex_state = 4}, + [1903] = {.lex_state = 15, .external_lex_state = 4}, + [1904] = {.lex_state = 19, .external_lex_state = 3}, [1905] = {.lex_state = 15, .external_lex_state = 4}, [1906] = {.lex_state = 15, .external_lex_state = 4}, [1907] = {.lex_state = 15, .external_lex_state = 3}, - [1908] = {.lex_state = 19, .external_lex_state = 3}, - [1909] = {.lex_state = 15, .external_lex_state = 4}, + [1908] = {.lex_state = 15, .external_lex_state = 3}, + [1909] = {.lex_state = 19, .external_lex_state = 3}, [1910] = {.lex_state = 15, .external_lex_state = 3}, - [1911] = {.lex_state = 19, .external_lex_state = 3}, + [1911] = {.lex_state = 15, .external_lex_state = 4}, [1912] = {.lex_state = 15, .external_lex_state = 3}, [1913] = {.lex_state = 15, .external_lex_state = 4}, - [1914] = {.lex_state = 15, .external_lex_state = 3}, + [1914] = {.lex_state = 21, .external_lex_state = 4}, [1915] = {.lex_state = 15, .external_lex_state = 4}, - [1916] = {.lex_state = 21, .external_lex_state = 3}, - [1917] = {.lex_state = 21, .external_lex_state = 3}, - [1918] = {.lex_state = 21, .external_lex_state = 3}, + [1916] = {.lex_state = 15, .external_lex_state = 4}, + [1917] = {.lex_state = 15, .external_lex_state = 4}, + [1918] = {.lex_state = 15, .external_lex_state = 4}, [1919] = {.lex_state = 15, .external_lex_state = 4}, - [1920] = {.lex_state = 21, .external_lex_state = 4}, - [1921] = {.lex_state = 21, .external_lex_state = 3}, - [1922] = {.lex_state = 15, .external_lex_state = 4}, - [1923] = {.lex_state = 15, .external_lex_state = 4}, + [1920] = {.lex_state = 21, .external_lex_state = 3}, + [1921] = {.lex_state = 21, .external_lex_state = 4}, + [1922] = {.lex_state = 15, .external_lex_state = 3}, + [1923] = {.lex_state = 21, .external_lex_state = 3}, [1924] = {.lex_state = 15, .external_lex_state = 4}, - [1925] = {.lex_state = 21, .external_lex_state = 3}, - [1926] = {.lex_state = 21, .external_lex_state = 4}, + [1925] = {.lex_state = 15, .external_lex_state = 4}, + [1926] = {.lex_state = 21, .external_lex_state = 3}, [1927] = {.lex_state = 21, .external_lex_state = 4}, - [1928] = {.lex_state = 21, .external_lex_state = 3}, - [1929] = {.lex_state = 15, .external_lex_state = 3}, + [1928] = {.lex_state = 21, .external_lex_state = 4}, + [1929] = {.lex_state = 15, .external_lex_state = 4}, [1930] = {.lex_state = 15, .external_lex_state = 4}, - [1931] = {.lex_state = 15, .external_lex_state = 4}, - [1932] = {.lex_state = 15, .external_lex_state = 4}, + [1931] = {.lex_state = 21, .external_lex_state = 3}, + [1932] = {.lex_state = 21, .external_lex_state = 3}, [1933] = {.lex_state = 15, .external_lex_state = 4}, [1934] = {.lex_state = 15, .external_lex_state = 4}, - [1935] = {.lex_state = 21, .external_lex_state = 4}, + [1935] = {.lex_state = 15, .external_lex_state = 4}, [1936] = {.lex_state = 15, .external_lex_state = 4}, - [1937] = {.lex_state = 15, .external_lex_state = 4}, - [1938] = {.lex_state = 21, .external_lex_state = 4}, - [1939] = {.lex_state = 15, .external_lex_state = 4}, - [1940] = {.lex_state = 15, .external_lex_state = 3}, - [1941] = {.lex_state = 15, .external_lex_state = 4}, + [1937] = {.lex_state = 21, .external_lex_state = 3}, + [1938] = {.lex_state = 15, .external_lex_state = 4}, + [1939] = {.lex_state = 21, .external_lex_state = 4}, + [1940] = {.lex_state = 15, .external_lex_state = 4}, + [1941] = {.lex_state = 15, .external_lex_state = 3}, [1942] = {.lex_state = 21, .external_lex_state = 4}, [1943] = {.lex_state = 15, .external_lex_state = 4}, - [1944] = {.lex_state = 15, .external_lex_state = 4}, - [1945] = {.lex_state = 21, .external_lex_state = 4}, - [1946] = {.lex_state = 21, .external_lex_state = 3}, + [1944] = {.lex_state = 15, .external_lex_state = 3}, + [1945] = {.lex_state = 21, .external_lex_state = 3}, + [1946] = {.lex_state = 21, .external_lex_state = 4}, [1947] = {.lex_state = 15, .external_lex_state = 4}, - [1948] = {.lex_state = 21, .external_lex_state = 4}, + [1948] = {.lex_state = 21, .external_lex_state = 3}, [1949] = {.lex_state = 21, .external_lex_state = 3}, - [1950] = {.lex_state = 15, .external_lex_state = 3}, - [1951] = {.lex_state = 18, .external_lex_state = 3}, - [1952] = {.lex_state = 18, .external_lex_state = 3}, - [1953] = {.lex_state = 21, .external_lex_state = 3}, - [1954] = {.lex_state = 15, .external_lex_state = 3}, - [1955] = {.lex_state = 15, .external_lex_state = 3}, - [1956] = {.lex_state = 21, .external_lex_state = 3}, - [1957] = {.lex_state = 15, .external_lex_state = 3}, - [1958] = {.lex_state = 21, .external_lex_state = 3}, - [1959] = {.lex_state = 21, .external_lex_state = 4}, - [1960] = {.lex_state = 15, .external_lex_state = 3}, + [1950] = {.lex_state = 21, .external_lex_state = 4}, + [1951] = {.lex_state = 34, .external_lex_state = 2}, + [1952] = {.lex_state = 15, .external_lex_state = 3}, + [1953] = {.lex_state = 15, .external_lex_state = 3}, + [1954] = {.lex_state = 18, .external_lex_state = 3}, + [1955] = {.lex_state = 18, .external_lex_state = 3}, + [1956] = {.lex_state = 15, .external_lex_state = 3}, + [1957] = {.lex_state = 21, .external_lex_state = 3}, + [1958] = {.lex_state = 15, .external_lex_state = 3}, + [1959] = {.lex_state = 21, .external_lex_state = 3}, + [1960] = {.lex_state = 21, .external_lex_state = 4}, [1961] = {.lex_state = 18, .external_lex_state = 3}, - [1962] = {.lex_state = 21, .external_lex_state = 3}, - [1963] = {.lex_state = 21, .external_lex_state = 4}, - [1964] = {.lex_state = 21, .external_lex_state = 4}, - [1965] = {.lex_state = 21, .external_lex_state = 3}, - [1966] = {.lex_state = 15, .external_lex_state = 3}, - [1967] = {.lex_state = 21, .external_lex_state = 4}, - [1968] = {.lex_state = 21, .external_lex_state = 3}, + [1962] = {.lex_state = 21, .external_lex_state = 4}, + [1963] = {.lex_state = 15, .external_lex_state = 3}, + [1964] = {.lex_state = 21, .external_lex_state = 3}, + [1965] = {.lex_state = 15, .external_lex_state = 3}, + [1966] = {.lex_state = 21, .external_lex_state = 3}, + [1967] = {.lex_state = 21, .external_lex_state = 3}, + [1968] = {.lex_state = 15, .external_lex_state = 3}, [1969] = {.lex_state = 21, .external_lex_state = 3}, - [1970] = {.lex_state = 15, .external_lex_state = 3}, - [1971] = {.lex_state = 34, .external_lex_state = 2}, - [1972] = {.lex_state = 21, .external_lex_state = 3}, + [1970] = {.lex_state = 21, .external_lex_state = 3}, + [1971] = {.lex_state = 15, .external_lex_state = 3}, + [1972] = {.lex_state = 15, .external_lex_state = 3}, [1973] = {.lex_state = 15, .external_lex_state = 3}, - [1974] = {.lex_state = 34, .external_lex_state = 2}, - [1975] = {.lex_state = 21, .external_lex_state = 3}, - [1976] = {.lex_state = 15, .external_lex_state = 3}, - [1977] = {.lex_state = 21, .external_lex_state = 3}, - [1978] = {.lex_state = 15, .external_lex_state = 3}, - [1979] = {.lex_state = 18, .external_lex_state = 3}, + [1974] = {.lex_state = 15, .external_lex_state = 3}, + [1975] = {.lex_state = 18, .external_lex_state = 3}, + [1976] = {.lex_state = 21, .external_lex_state = 3}, + [1977] = {.lex_state = 21, .external_lex_state = 4}, + [1978] = {.lex_state = 21, .external_lex_state = 3}, + [1979] = {.lex_state = 21, .external_lex_state = 3}, [1980] = {.lex_state = 21, .external_lex_state = 3}, [1981] = {.lex_state = 21, .external_lex_state = 4}, - [1982] = {.lex_state = 15, .external_lex_state = 3}, + [1982] = {.lex_state = 21, .external_lex_state = 3}, [1983] = {.lex_state = 21, .external_lex_state = 4}, [1984] = {.lex_state = 15, .external_lex_state = 3}, - [1985] = {.lex_state = 15, .external_lex_state = 3}, - [1986] = {.lex_state = 21, .external_lex_state = 3}, + [1985] = {.lex_state = 21, .external_lex_state = 3}, + [1986] = {.lex_state = 15, .external_lex_state = 3}, [1987] = {.lex_state = 34, .external_lex_state = 2}, [1988] = {.lex_state = 21, .external_lex_state = 3}, - [1989] = {.lex_state = 15, .external_lex_state = 3}, - [1990] = {.lex_state = 21, .external_lex_state = 3}, + [1989] = {.lex_state = 21, .external_lex_state = 3}, + [1990] = {.lex_state = 15, .external_lex_state = 3}, [1991] = {.lex_state = 21, .external_lex_state = 3}, [1992] = {.lex_state = 15, .external_lex_state = 3}, - [1993] = {.lex_state = 21, .external_lex_state = 3}, - [1994] = {.lex_state = 15, .external_lex_state = 3}, - [1995] = {.lex_state = 21, .external_lex_state = 3}, - [1996] = {.lex_state = 21, .external_lex_state = 3}, - [1997] = {.lex_state = 34, .external_lex_state = 2}, - [1998] = {.lex_state = 21, .external_lex_state = 4}, - [1999] = {.lex_state = 21, .external_lex_state = 3}, - [2000] = {.lex_state = 15, .external_lex_state = 4}, - [2001] = {.lex_state = 15, .external_lex_state = 4}, - [2002] = {.lex_state = 21, .external_lex_state = 4}, - [2003] = {.lex_state = 21, .external_lex_state = 3}, + [1993] = {.lex_state = 15, .external_lex_state = 3}, + [1994] = {.lex_state = 34, .external_lex_state = 2}, + [1995] = {.lex_state = 21, .external_lex_state = 4}, + [1996] = {.lex_state = 15, .external_lex_state = 4}, + [1997] = {.lex_state = 21, .external_lex_state = 3}, + [1998] = {.lex_state = 21, .external_lex_state = 3}, + [1999] = {.lex_state = 15, .external_lex_state = 4}, + [2000] = {.lex_state = 21, .external_lex_state = 4}, + [2001] = {.lex_state = 21, .external_lex_state = 3}, + [2002] = {.lex_state = 21, .external_lex_state = 3}, + [2003] = {.lex_state = 15, .external_lex_state = 4}, [2004] = {.lex_state = 21, .external_lex_state = 3}, [2005] = {.lex_state = 21, .external_lex_state = 3}, - [2006] = {.lex_state = 21, .external_lex_state = 4}, - [2007] = {.lex_state = 21, .external_lex_state = 3}, - [2008] = {.lex_state = 21, .external_lex_state = 3}, + [2006] = {.lex_state = 21, .external_lex_state = 3}, + [2007] = {.lex_state = 21, .external_lex_state = 4}, + [2008] = {.lex_state = 34, .external_lex_state = 2}, [2009] = {.lex_state = 15, .external_lex_state = 4}, - [2010] = {.lex_state = 15, .external_lex_state = 4}, - [2011] = {.lex_state = 34, .external_lex_state = 2}, - [2012] = {.lex_state = 21, .external_lex_state = 3}, - [2013] = {.lex_state = 21, .external_lex_state = 3}, - [2014] = {.lex_state = 15, .external_lex_state = 4}, - [2015] = {.lex_state = 21, .external_lex_state = 3}, - [2016] = {.lex_state = 21, .external_lex_state = 3}, + [2010] = {.lex_state = 21, .external_lex_state = 3}, + [2011] = {.lex_state = 21, .external_lex_state = 3}, + [2012] = {.lex_state = 15, .external_lex_state = 4}, + [2013] = {.lex_state = 34, .external_lex_state = 2}, + [2014] = {.lex_state = 21, .external_lex_state = 3}, + [2015] = {.lex_state = 21, .external_lex_state = 4}, + [2016] = {.lex_state = 34, .external_lex_state = 2}, [2017] = {.lex_state = 21, .external_lex_state = 3}, [2018] = {.lex_state = 21, .external_lex_state = 3}, [2019] = {.lex_state = 21, .external_lex_state = 3}, - [2020] = {.lex_state = 34, .external_lex_state = 2}, - [2021] = {.lex_state = 34, .external_lex_state = 2}, - [2022] = {.lex_state = 21, .external_lex_state = 3}, + [2020] = {.lex_state = 21, .external_lex_state = 3}, + [2021] = {.lex_state = 21, .external_lex_state = 4}, + [2022] = {.lex_state = 34, .external_lex_state = 2}, [2023] = {.lex_state = 21, .external_lex_state = 4}, - [2024] = {.lex_state = 21, .external_lex_state = 4}, - [2025] = {.lex_state = 21, .external_lex_state = 3}, + [2024] = {.lex_state = 21, .external_lex_state = 3}, + [2025] = {.lex_state = 21, .external_lex_state = 4}, [2026] = {.lex_state = 21, .external_lex_state = 4}, - [2027] = {.lex_state = 21, .external_lex_state = 3}, - [2028] = {.lex_state = 21, .external_lex_state = 4}, + [2027] = {.lex_state = 34, .external_lex_state = 2}, + [2028] = {.lex_state = 21, .external_lex_state = 3}, [2029] = {.lex_state = 21, .external_lex_state = 4}, - [2030] = {.lex_state = 34, .external_lex_state = 2}, + [2030] = {.lex_state = 21, .external_lex_state = 4}, [2031] = {.lex_state = 21, .external_lex_state = 4}, - [2032] = {.lex_state = 21, .external_lex_state = 4}, + [2032] = {.lex_state = 21, .external_lex_state = 3}, [2033] = {.lex_state = 21, .external_lex_state = 4}, - [2034] = {.lex_state = 21, .external_lex_state = 3}, + [2034] = {.lex_state = 34, .external_lex_state = 2}, [2035] = {.lex_state = 21, .external_lex_state = 4}, [2036] = {.lex_state = 21, .external_lex_state = 3}, [2037] = {.lex_state = 21, .external_lex_state = 4}, - [2038] = {.lex_state = 34, .external_lex_state = 2}, - [2039] = {.lex_state = 34, .external_lex_state = 2}, - [2040] = {.lex_state = 34, .external_lex_state = 2}, - [2041] = {.lex_state = 21, .external_lex_state = 4}, + [2038] = {.lex_state = 21, .external_lex_state = 4}, + [2039] = {.lex_state = 21, .external_lex_state = 4}, + [2040] = {.lex_state = 21, .external_lex_state = 4}, + [2041] = {.lex_state = 21, .external_lex_state = 3}, [2042] = {.lex_state = 21, .external_lex_state = 4}, - [2043] = {.lex_state = 21, .external_lex_state = 3}, - [2044] = {.lex_state = 21, .external_lex_state = 3}, - [2045] = {.lex_state = 34, .external_lex_state = 2}, - [2046] = {.lex_state = 21, .external_lex_state = 3}, - [2047] = {.lex_state = 21, .external_lex_state = 3}, - [2048] = {.lex_state = 21, .external_lex_state = 4}, - [2049] = {.lex_state = 21, .external_lex_state = 3}, - [2050] = {.lex_state = 21, .external_lex_state = 3}, - [2051] = {.lex_state = 21, .external_lex_state = 3}, + [2043] = {.lex_state = 21, .external_lex_state = 4}, + [2044] = {.lex_state = 21, .external_lex_state = 4}, + [2045] = {.lex_state = 21, .external_lex_state = 3}, + [2046] = {.lex_state = 21, .external_lex_state = 4}, + [2047] = {.lex_state = 21, .external_lex_state = 4}, + [2048] = {.lex_state = 21, .external_lex_state = 3}, + [2049] = {.lex_state = 34, .external_lex_state = 2}, + [2050] = {.lex_state = 21, .external_lex_state = 4}, + [2051] = {.lex_state = 21, .external_lex_state = 4}, [2052] = {.lex_state = 21, .external_lex_state = 4}, [2053] = {.lex_state = 21, .external_lex_state = 3}, - [2054] = {.lex_state = 21, .external_lex_state = 4}, - [2055] = {.lex_state = 21, .external_lex_state = 3}, + [2054] = {.lex_state = 21, .external_lex_state = 3}, + [2055] = {.lex_state = 21, .external_lex_state = 4}, [2056] = {.lex_state = 21, .external_lex_state = 3}, - [2057] = {.lex_state = 21, .external_lex_state = 4}, - [2058] = {.lex_state = 21, .external_lex_state = 4}, - [2059] = {.lex_state = 34, .external_lex_state = 2}, - [2060] = {.lex_state = 34, .external_lex_state = 2}, + [2057] = {.lex_state = 34, .external_lex_state = 2}, + [2058] = {.lex_state = 21, .external_lex_state = 3}, + [2059] = {.lex_state = 21, .external_lex_state = 3}, + [2060] = {.lex_state = 21, .external_lex_state = 4}, [2061] = {.lex_state = 21, .external_lex_state = 4}, - [2062] = {.lex_state = 21, .external_lex_state = 4}, + [2062] = {.lex_state = 21, .external_lex_state = 3}, [2063] = {.lex_state = 21, .external_lex_state = 4}, [2064] = {.lex_state = 34, .external_lex_state = 2}, - [2065] = {.lex_state = 21, .external_lex_state = 3}, - [2066] = {.lex_state = 21, .external_lex_state = 4}, - [2067] = {.lex_state = 21, .external_lex_state = 4}, - [2068] = {.lex_state = 21, .external_lex_state = 3}, + [2065] = {.lex_state = 21, .external_lex_state = 4}, + [2066] = {.lex_state = 21, .external_lex_state = 3}, + [2067] = {.lex_state = 21, .external_lex_state = 3}, + [2068] = {.lex_state = 21, .external_lex_state = 4}, [2069] = {.lex_state = 21, .external_lex_state = 4}, - [2070] = {.lex_state = 21, .external_lex_state = 4}, + [2070] = {.lex_state = 21, .external_lex_state = 3}, [2071] = {.lex_state = 21, .external_lex_state = 4}, [2072] = {.lex_state = 21, .external_lex_state = 4}, [2073] = {.lex_state = 21, .external_lex_state = 4}, - [2074] = {.lex_state = 21, .external_lex_state = 4}, + [2074] = {.lex_state = 21, .external_lex_state = 3}, [2075] = {.lex_state = 21, .external_lex_state = 4}, - [2076] = {.lex_state = 21, .external_lex_state = 4}, - [2077] = {.lex_state = 21, .external_lex_state = 4}, - [2078] = {.lex_state = 21, .external_lex_state = 4}, + [2076] = {.lex_state = 34, .external_lex_state = 2}, + [2077] = {.lex_state = 34, .external_lex_state = 2}, + [2078] = {.lex_state = 34, .external_lex_state = 2}, [2079] = {.lex_state = 21, .external_lex_state = 3}, [2080] = {.lex_state = 21, .external_lex_state = 4}, [2081] = {.lex_state = 21, .external_lex_state = 4}, [2082] = {.lex_state = 21, .external_lex_state = 4}, [2083] = {.lex_state = 34, .external_lex_state = 2}, - [2084] = {.lex_state = 21, .external_lex_state = 3}, + [2084] = {.lex_state = 34, .external_lex_state = 2}, [2085] = {.lex_state = 21, .external_lex_state = 3}, - [2086] = {.lex_state = 21, .external_lex_state = 3}, - [2087] = {.lex_state = 34, .external_lex_state = 2}, - [2088] = {.lex_state = 34, .external_lex_state = 2}, - [2089] = {.lex_state = 34, .external_lex_state = 2}, + [2086] = {.lex_state = 15, .external_lex_state = 4}, + [2087] = {.lex_state = 21, .external_lex_state = 3}, + [2088] = {.lex_state = 21, .external_lex_state = 3}, + [2089] = {.lex_state = 21, .external_lex_state = 3}, [2090] = {.lex_state = 21, .external_lex_state = 3}, - [2091] = {.lex_state = 21, .external_lex_state = 4}, + [2091] = {.lex_state = 21, .external_lex_state = 3}, [2092] = {.lex_state = 21, .external_lex_state = 3}, - [2093] = {.lex_state = 21, .external_lex_state = 4}, - [2094] = {.lex_state = 15, .external_lex_state = 4}, - [2095] = {.lex_state = 21, .external_lex_state = 3}, + [2093] = {.lex_state = 21, .external_lex_state = 3}, + [2094] = {.lex_state = 21, .external_lex_state = 3}, + [2095] = {.lex_state = 34, .external_lex_state = 2}, [2096] = {.lex_state = 21, .external_lex_state = 4}, - [2097] = {.lex_state = 21, .external_lex_state = 3}, - [2098] = {.lex_state = 21, .external_lex_state = 3}, - [2099] = {.lex_state = 21, .external_lex_state = 3}, + [2097] = {.lex_state = 34, .external_lex_state = 2}, + [2098] = {.lex_state = 34, .external_lex_state = 2}, + [2099] = {.lex_state = 15, .external_lex_state = 4}, [2100] = {.lex_state = 21, .external_lex_state = 3}, [2101] = {.lex_state = 21, .external_lex_state = 3}, [2102] = {.lex_state = 21, .external_lex_state = 3}, - [2103] = {.lex_state = 34, .external_lex_state = 2}, - [2104] = {.lex_state = 34, .external_lex_state = 2}, - [2105] = {.lex_state = 15, .external_lex_state = 4}, - [2106] = {.lex_state = 34, .external_lex_state = 2}, - [2107] = {.lex_state = 34, .external_lex_state = 2}, - [2108] = {.lex_state = 34, .external_lex_state = 2}, + [2103] = {.lex_state = 21, .external_lex_state = 3}, + [2104] = {.lex_state = 21, .external_lex_state = 3}, + [2105] = {.lex_state = 21, .external_lex_state = 3}, + [2106] = {.lex_state = 21, .external_lex_state = 3}, + [2107] = {.lex_state = 15, .external_lex_state = 4}, + [2108] = {.lex_state = 21, .external_lex_state = 4}, [2109] = {.lex_state = 34, .external_lex_state = 2}, - [2110] = {.lex_state = 34, .external_lex_state = 2}, - [2111] = {.lex_state = 21, .external_lex_state = 3}, - [2112] = {.lex_state = 15, .external_lex_state = 4}, - [2113] = {.lex_state = 21, .external_lex_state = 3}, - [2114] = {.lex_state = 21, .external_lex_state = 3}, - [2115] = {.lex_state = 21, .external_lex_state = 3}, - [2116] = {.lex_state = 21, .external_lex_state = 3}, - [2117] = {.lex_state = 15, .external_lex_state = 4}, - [2118] = {.lex_state = 21, .external_lex_state = 3}, - [2119] = {.lex_state = 21, .external_lex_state = 3}, - [2120] = {.lex_state = 15, .external_lex_state = 4}, + [2110] = {.lex_state = 21, .external_lex_state = 4}, + [2111] = {.lex_state = 34, .external_lex_state = 2}, + [2112] = {.lex_state = 21, .external_lex_state = 3}, + [2113] = {.lex_state = 34, .external_lex_state = 2}, + [2114] = {.lex_state = 15, .external_lex_state = 4}, + [2115] = {.lex_state = 34, .external_lex_state = 2}, + [2116] = {.lex_state = 34, .external_lex_state = 2}, + [2117] = {.lex_state = 21, .external_lex_state = 3}, + [2118] = {.lex_state = 34, .external_lex_state = 2}, + [2119] = {.lex_state = 34, .external_lex_state = 2}, + [2120] = {.lex_state = 34, .external_lex_state = 2}, [2121] = {.lex_state = 21, .external_lex_state = 3}, - [2122] = {.lex_state = 15, .external_lex_state = 4}, + [2122] = {.lex_state = 21, .external_lex_state = 3}, [2123] = {.lex_state = 21, .external_lex_state = 3}, - [2124] = {.lex_state = 21, .external_lex_state = 3}, + [2124] = {.lex_state = 15, .external_lex_state = 4}, [2125] = {.lex_state = 21, .external_lex_state = 3}, - [2126] = {.lex_state = 34, .external_lex_state = 2}, + [2126] = {.lex_state = 15, .external_lex_state = 4}, [2127] = {.lex_state = 21, .external_lex_state = 3}, [2128] = {.lex_state = 21, .external_lex_state = 3}, - [2129] = {.lex_state = 21, .external_lex_state = 4}, + [2129] = {.lex_state = 35, .external_lex_state = 2}, [2130] = {.lex_state = 35, .external_lex_state = 2}, - [2131] = {.lex_state = 35, .external_lex_state = 2}, - [2132] = {.lex_state = 21, .external_lex_state = 4}, - [2133] = {.lex_state = 21, .external_lex_state = 3}, - [2134] = {.lex_state = 21, .external_lex_state = 4}, - [2135] = {.lex_state = 35, .external_lex_state = 2}, - [2136] = {.lex_state = 35, .external_lex_state = 2}, + [2131] = {.lex_state = 21, .external_lex_state = 3}, + [2132] = {.lex_state = 21, .external_lex_state = 3}, + [2133] = {.lex_state = 21, .external_lex_state = 4}, + [2134] = {.lex_state = 35, .external_lex_state = 2}, + [2135] = {.lex_state = 21, .external_lex_state = 3}, + [2136] = {.lex_state = 21, .external_lex_state = 3}, [2137] = {.lex_state = 21, .external_lex_state = 4}, - [2138] = {.lex_state = 21, .external_lex_state = 4}, - [2139] = {.lex_state = 35, .external_lex_state = 2}, - [2140] = {.lex_state = 21, .external_lex_state = 4}, - [2141] = {.lex_state = 35, .external_lex_state = 2}, + [2138] = {.lex_state = 35, .external_lex_state = 2}, + [2139] = {.lex_state = 21, .external_lex_state = 4}, + [2140] = {.lex_state = 35, .external_lex_state = 2}, + [2141] = {.lex_state = 21, .external_lex_state = 3}, [2142] = {.lex_state = 35, .external_lex_state = 2}, - [2143] = {.lex_state = 35, .external_lex_state = 2}, + [2143] = {.lex_state = 21, .external_lex_state = 4}, [2144] = {.lex_state = 21, .external_lex_state = 3}, [2145] = {.lex_state = 21, .external_lex_state = 3}, [2146] = {.lex_state = 21, .external_lex_state = 3}, - [2147] = {.lex_state = 21, .external_lex_state = 3}, - [2148] = {.lex_state = 21, .external_lex_state = 3}, - [2149] = {.lex_state = 21, .external_lex_state = 3}, - [2150] = {.lex_state = 21, .external_lex_state = 3}, + [2147] = {.lex_state = 35, .external_lex_state = 2}, + [2148] = {.lex_state = 21, .external_lex_state = 4}, + [2149] = {.lex_state = 35, .external_lex_state = 2}, + [2150] = {.lex_state = 21, .external_lex_state = 4}, [2151] = {.lex_state = 35, .external_lex_state = 2}, [2152] = {.lex_state = 21, .external_lex_state = 3}, [2153] = {.lex_state = 21, .external_lex_state = 3}, @@ -22419,71 +22425,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2156] = {.lex_state = 21, .external_lex_state = 3}, [2157] = {.lex_state = 21, .external_lex_state = 3}, [2158] = {.lex_state = 21, .external_lex_state = 3}, - [2159] = {.lex_state = 21, .external_lex_state = 4}, + [2159] = {.lex_state = 21, .external_lex_state = 3}, [2160] = {.lex_state = 21, .external_lex_state = 3}, [2161] = {.lex_state = 21, .external_lex_state = 3}, - [2162] = {.lex_state = 21, .external_lex_state = 3}, + [2162] = {.lex_state = 21, .external_lex_state = 4}, [2163] = {.lex_state = 21, .external_lex_state = 3}, [2164] = {.lex_state = 21, .external_lex_state = 3}, [2165] = {.lex_state = 21, .external_lex_state = 3}, [2166] = {.lex_state = 21, .external_lex_state = 3}, [2167] = {.lex_state = 21, .external_lex_state = 3}, [2168] = {.lex_state = 21, .external_lex_state = 3}, - [2169] = {.lex_state = 35, .external_lex_state = 2}, + [2169] = {.lex_state = 21, .external_lex_state = 3}, [2170] = {.lex_state = 21, .external_lex_state = 3}, - [2171] = {.lex_state = 21, .external_lex_state = 3}, - [2172] = {.lex_state = 21, .external_lex_state = 3}, - [2173] = {.lex_state = 35, .external_lex_state = 2}, - [2174] = {.lex_state = 21, .external_lex_state = 3}, - [2175] = {.lex_state = 21, .external_lex_state = 3}, - [2176] = {.lex_state = 35, .external_lex_state = 2}, + [2171] = {.lex_state = 35, .external_lex_state = 2}, + [2172] = {.lex_state = 35, .external_lex_state = 2}, + [2173] = {.lex_state = 21, .external_lex_state = 3}, + [2174] = {.lex_state = 35, .external_lex_state = 2}, + [2175] = {.lex_state = 35, .external_lex_state = 2}, + [2176] = {.lex_state = 21, .external_lex_state = 3}, [2177] = {.lex_state = 21, .external_lex_state = 3}, [2178] = {.lex_state = 21, .external_lex_state = 3}, - [2179] = {.lex_state = 35, .external_lex_state = 2}, - [2180] = {.lex_state = 35, .external_lex_state = 2}, - [2181] = {.lex_state = 35, .external_lex_state = 2}, - [2182] = {.lex_state = 21, .external_lex_state = 3}, - [2183] = {.lex_state = 35, .external_lex_state = 2}, - [2184] = {.lex_state = 35, .external_lex_state = 2}, + [2179] = {.lex_state = 21, .external_lex_state = 3}, + [2180] = {.lex_state = 21, .external_lex_state = 3}, + [2181] = {.lex_state = 21, .external_lex_state = 3}, + [2182] = {.lex_state = 35, .external_lex_state = 2}, + [2183] = {.lex_state = 21, .external_lex_state = 3}, + [2184] = {.lex_state = 21, .external_lex_state = 3}, [2185] = {.lex_state = 35, .external_lex_state = 2}, - [2186] = {.lex_state = 21, .external_lex_state = 3}, + [2186] = {.lex_state = 35, .external_lex_state = 2}, [2187] = {.lex_state = 21, .external_lex_state = 3}, - [2188] = {.lex_state = 35, .external_lex_state = 2}, + [2188] = {.lex_state = 21, .external_lex_state = 3}, [2189] = {.lex_state = 21, .external_lex_state = 3}, - [2190] = {.lex_state = 35, .external_lex_state = 2}, + [2190] = {.lex_state = 21, .external_lex_state = 3}, [2191] = {.lex_state = 21, .external_lex_state = 3}, [2192] = {.lex_state = 35, .external_lex_state = 2}, - [2193] = {.lex_state = 21, .external_lex_state = 3}, - [2194] = {.lex_state = 35, .external_lex_state = 2}, + [2193] = {.lex_state = 35, .external_lex_state = 2}, + [2194] = {.lex_state = 21, .external_lex_state = 3}, [2195] = {.lex_state = 21, .external_lex_state = 3}, - [2196] = {.lex_state = 21, .external_lex_state = 3}, + [2196] = {.lex_state = 35, .external_lex_state = 2}, [2197] = {.lex_state = 35, .external_lex_state = 2}, [2198] = {.lex_state = 35, .external_lex_state = 2}, [2199] = {.lex_state = 35, .external_lex_state = 2}, - [2200] = {.lex_state = 35, .external_lex_state = 2}, - [2201] = {.lex_state = 35, .external_lex_state = 2}, - [2202] = {.lex_state = 35, .external_lex_state = 2}, + [2200] = {.lex_state = 21, .external_lex_state = 3}, + [2201] = {.lex_state = 21, .external_lex_state = 3}, + [2202] = {.lex_state = 21, .external_lex_state = 3}, [2203] = {.lex_state = 21, .external_lex_state = 3}, [2204] = {.lex_state = 35, .external_lex_state = 2}, - [2205] = {.lex_state = 21, .external_lex_state = 3}, + [2205] = {.lex_state = 35, .external_lex_state = 2}, [2206] = {.lex_state = 35, .external_lex_state = 2}, [2207] = {.lex_state = 35, .external_lex_state = 2}, - [2208] = {.lex_state = 35, .external_lex_state = 2}, - [2209] = {.lex_state = 21, .external_lex_state = 3}, - [2210] = {.lex_state = 21, .external_lex_state = 3}, + [2208] = {.lex_state = 21, .external_lex_state = 3}, + [2209] = {.lex_state = 35, .external_lex_state = 2}, + [2210] = {.lex_state = 35, .external_lex_state = 2}, [2211] = {.lex_state = 21, .external_lex_state = 3}, [2212] = {.lex_state = 21, .external_lex_state = 3}, [2213] = {.lex_state = 21, .external_lex_state = 3}, - [2214] = {.lex_state = 21, .external_lex_state = 3}, + [2214] = {.lex_state = 35, .external_lex_state = 2}, [2215] = {.lex_state = 35, .external_lex_state = 2}, - [2216] = {.lex_state = 35, .external_lex_state = 2}, - [2217] = {.lex_state = 21, .external_lex_state = 3}, + [2216] = {.lex_state = 21, .external_lex_state = 3}, + [2217] = {.lex_state = 35, .external_lex_state = 2}, [2218] = {.lex_state = 35, .external_lex_state = 2}, - [2219] = {.lex_state = 21, .external_lex_state = 3}, + [2219] = {.lex_state = 35, .external_lex_state = 2}, [2220] = {.lex_state = 35, .external_lex_state = 2}, - [2221] = {.lex_state = 21, .external_lex_state = 3}, + [2221] = {.lex_state = 35, .external_lex_state = 2}, [2222] = {.lex_state = 21, .external_lex_state = 3}, - [2223] = {.lex_state = 21, .external_lex_state = 3}, + [2223] = {.lex_state = 35, .external_lex_state = 2}, [2224] = {.lex_state = 21, .external_lex_state = 3}, [2225] = {.lex_state = 21, .external_lex_state = 3}, [2226] = {.lex_state = 21, .external_lex_state = 3}, @@ -22493,7 +22499,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2230] = {.lex_state = 21, .external_lex_state = 3}, [2231] = {.lex_state = 21, .external_lex_state = 3}, [2232] = {.lex_state = 21, .external_lex_state = 3}, - [2233] = {.lex_state = 35, .external_lex_state = 2}, + [2233] = {.lex_state = 21, .external_lex_state = 3}, [2234] = {.lex_state = 35, .external_lex_state = 2}, [2235] = {.lex_state = 35, .external_lex_state = 2}, [2236] = {.lex_state = 35, .external_lex_state = 2}, @@ -22503,78 +22509,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2240] = {.lex_state = 35, .external_lex_state = 2}, [2241] = {.lex_state = 35, .external_lex_state = 2}, [2242] = {.lex_state = 35, .external_lex_state = 2}, - [2243] = {.lex_state = 45, .external_lex_state = 5}, + [2243] = {.lex_state = 35, .external_lex_state = 2}, [2244] = {.lex_state = 45, .external_lex_state = 5}, [2245] = {.lex_state = 45, .external_lex_state = 5}, [2246] = {.lex_state = 45, .external_lex_state = 5}, [2247] = {.lex_state = 45, .external_lex_state = 5}, - [2248] = {.lex_state = 35, .external_lex_state = 2}, + [2248] = {.lex_state = 45, .external_lex_state = 5}, [2249] = {.lex_state = 35, .external_lex_state = 2}, [2250] = {.lex_state = 35, .external_lex_state = 2}, - [2251] = {.lex_state = 36, .external_lex_state = 2}, + [2251] = {.lex_state = 35, .external_lex_state = 2}, [2252] = {.lex_state = 35, .external_lex_state = 2}, [2253] = {.lex_state = 35, .external_lex_state = 2}, [2254] = {.lex_state = 35, .external_lex_state = 2}, [2255] = {.lex_state = 35, .external_lex_state = 2}, - [2256] = {.lex_state = 35, .external_lex_state = 2}, + [2256] = {.lex_state = 36, .external_lex_state = 2}, [2257] = {.lex_state = 35, .external_lex_state = 2}, - [2258] = {.lex_state = 35, .external_lex_state = 2}, - [2259] = {.lex_state = 35, .external_lex_state = 2}, - [2260] = {.lex_state = 36, .external_lex_state = 2}, + [2258] = {.lex_state = 36, .external_lex_state = 2}, + [2259] = {.lex_state = 36, .external_lex_state = 2}, + [2260] = {.lex_state = 35, .external_lex_state = 2}, [2261] = {.lex_state = 35, .external_lex_state = 2}, - [2262] = {.lex_state = 36, .external_lex_state = 2}, + [2262] = {.lex_state = 35, .external_lex_state = 2}, [2263] = {.lex_state = 35, .external_lex_state = 2}, - [2264] = {.lex_state = 35, .external_lex_state = 2}, + [2264] = {.lex_state = 36, .external_lex_state = 2}, [2265] = {.lex_state = 35, .external_lex_state = 2}, [2266] = {.lex_state = 35, .external_lex_state = 2}, [2267] = {.lex_state = 35, .external_lex_state = 2}, [2268] = {.lex_state = 35, .external_lex_state = 2}, [2269] = {.lex_state = 35, .external_lex_state = 2}, - [2270] = {.lex_state = 36, .external_lex_state = 2}, + [2270] = {.lex_state = 35, .external_lex_state = 2}, [2271] = {.lex_state = 35, .external_lex_state = 2}, [2272] = {.lex_state = 35, .external_lex_state = 2}, - [2273] = {.lex_state = 35, .external_lex_state = 2}, - [2274] = {.lex_state = 35, .external_lex_state = 2}, - [2275] = {.lex_state = 36, .external_lex_state = 2}, + [2273] = {.lex_state = 36, .external_lex_state = 2}, + [2274] = {.lex_state = 36, .external_lex_state = 2}, + [2275] = {.lex_state = 35, .external_lex_state = 2}, [2276] = {.lex_state = 35, .external_lex_state = 2}, [2277] = {.lex_state = 35, .external_lex_state = 2}, [2278] = {.lex_state = 35, .external_lex_state = 2}, - [2279] = {.lex_state = 35, .external_lex_state = 2}, + [2279] = {.lex_state = 36, .external_lex_state = 2}, [2280] = {.lex_state = 35, .external_lex_state = 2}, [2281] = {.lex_state = 35, .external_lex_state = 2}, [2282] = {.lex_state = 35, .external_lex_state = 2}, - [2283] = {.lex_state = 36, .external_lex_state = 2}, - [2284] = {.lex_state = 36, .external_lex_state = 2}, + [2283] = {.lex_state = 35, .external_lex_state = 2}, + [2284] = {.lex_state = 35, .external_lex_state = 2}, [2285] = {.lex_state = 35, .external_lex_state = 2}, [2286] = {.lex_state = 35, .external_lex_state = 2}, [2287] = {.lex_state = 35, .external_lex_state = 2}, - [2288] = {.lex_state = 26, .external_lex_state = 4}, + [2288] = {.lex_state = 35, .external_lex_state = 2}, [2289] = {.lex_state = 45, .external_lex_state = 5}, - [2290] = {.lex_state = 45, .external_lex_state = 5}, - [2291] = {.lex_state = 26, .external_lex_state = 4}, - [2292] = {.lex_state = 26, .external_lex_state = 3}, + [2290] = {.lex_state = 26, .external_lex_state = 4}, + [2291] = {.lex_state = 45, .external_lex_state = 5}, + [2292] = {.lex_state = 26, .external_lex_state = 4}, [2293] = {.lex_state = 26, .external_lex_state = 3}, - [2294] = {.lex_state = 36, .external_lex_state = 2}, + [2294] = {.lex_state = 26, .external_lex_state = 3}, [2295] = {.lex_state = 26, .external_lex_state = 3}, - [2296] = {.lex_state = 26, .external_lex_state = 3}, + [2296] = {.lex_state = 36, .external_lex_state = 2}, [2297] = {.lex_state = 26, .external_lex_state = 3}, [2298] = {.lex_state = 26, .external_lex_state = 3}, [2299] = {.lex_state = 26, .external_lex_state = 3}, - [2300] = {.lex_state = 26, .external_lex_state = 4}, - [2301] = {.lex_state = 26, .external_lex_state = 4}, + [2300] = {.lex_state = 26, .external_lex_state = 3}, + [2301] = {.lex_state = 26, .external_lex_state = 3}, [2302] = {.lex_state = 26, .external_lex_state = 3}, [2303] = {.lex_state = 26, .external_lex_state = 3}, - [2304] = {.lex_state = 26, .external_lex_state = 4}, + [2304] = {.lex_state = 26, .external_lex_state = 3}, [2305] = {.lex_state = 26, .external_lex_state = 3}, [2306] = {.lex_state = 26, .external_lex_state = 3}, - [2307] = {.lex_state = 26, .external_lex_state = 3}, - [2308] = {.lex_state = 26, .external_lex_state = 4}, - [2309] = {.lex_state = 26, .external_lex_state = 3}, + [2307] = {.lex_state = 26, .external_lex_state = 4}, + [2308] = {.lex_state = 26, .external_lex_state = 3}, + [2309] = {.lex_state = 26, .external_lex_state = 4}, [2310] = {.lex_state = 26, .external_lex_state = 3}, [2311] = {.lex_state = 26, .external_lex_state = 3}, - [2312] = {.lex_state = 26, .external_lex_state = 3}, + [2312] = {.lex_state = 26, .external_lex_state = 4}, [2313] = {.lex_state = 26, .external_lex_state = 3}, - [2314] = {.lex_state = 26, .external_lex_state = 3}, + [2314] = {.lex_state = 26, .external_lex_state = 4}, [2315] = {.lex_state = 26, .external_lex_state = 3}, [2316] = {.lex_state = 26, .external_lex_state = 3}, [2317] = {.lex_state = 26, .external_lex_state = 3}, @@ -22588,20 +22594,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2325] = {.lex_state = 26, .external_lex_state = 3}, [2326] = {.lex_state = 26, .external_lex_state = 3}, [2327] = {.lex_state = 26, .external_lex_state = 3}, - [2328] = {.lex_state = 36, .external_lex_state = 5}, + [2328] = {.lex_state = 26, .external_lex_state = 3}, [2329] = {.lex_state = 26, .external_lex_state = 3}, [2330] = {.lex_state = 26, .external_lex_state = 3}, [2331] = {.lex_state = 26, .external_lex_state = 3}, [2332] = {.lex_state = 26, .external_lex_state = 3}, [2333] = {.lex_state = 26, .external_lex_state = 3}, - [2334] = {.lex_state = 26, .external_lex_state = 4}, + [2334] = {.lex_state = 26, .external_lex_state = 3}, [2335] = {.lex_state = 26, .external_lex_state = 3}, [2336] = {.lex_state = 26, .external_lex_state = 3}, [2337] = {.lex_state = 26, .external_lex_state = 3}, - [2338] = {.lex_state = 26, .external_lex_state = 3}, + [2338] = {.lex_state = 36, .external_lex_state = 5}, [2339] = {.lex_state = 26, .external_lex_state = 3}, [2340] = {.lex_state = 26, .external_lex_state = 3}, - [2341] = {.lex_state = 26, .external_lex_state = 3}, + [2341] = {.lex_state = 26, .external_lex_state = 4}, [2342] = {.lex_state = 26, .external_lex_state = 3}, [2343] = {.lex_state = 26, .external_lex_state = 3}, [2344] = {.lex_state = 26, .external_lex_state = 3}, @@ -22615,7 +22621,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2352] = {.lex_state = 26, .external_lex_state = 3}, [2353] = {.lex_state = 26, .external_lex_state = 3}, [2354] = {.lex_state = 26, .external_lex_state = 3}, - [2355] = {.lex_state = 26, .external_lex_state = 3}, + [2355] = {.lex_state = 26, .external_lex_state = 4}, [2356] = {.lex_state = 26, .external_lex_state = 3}, [2357] = {.lex_state = 26, .external_lex_state = 3}, [2358] = {.lex_state = 26, .external_lex_state = 3}, @@ -22638,7 +22644,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2375] = {.lex_state = 26, .external_lex_state = 3}, [2376] = {.lex_state = 26, .external_lex_state = 3}, [2377] = {.lex_state = 26, .external_lex_state = 3}, - [2378] = {.lex_state = 36, .external_lex_state = 5}, + [2378] = {.lex_state = 26, .external_lex_state = 3}, [2379] = {.lex_state = 26, .external_lex_state = 3}, [2380] = {.lex_state = 26, .external_lex_state = 3}, [2381] = {.lex_state = 26, .external_lex_state = 3}, @@ -22651,7 +22657,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2388] = {.lex_state = 26, .external_lex_state = 3}, [2389] = {.lex_state = 26, .external_lex_state = 3}, [2390] = {.lex_state = 26, .external_lex_state = 3}, - [2391] = {.lex_state = 26, .external_lex_state = 3}, + [2391] = {.lex_state = 36, .external_lex_state = 5}, [2392] = {.lex_state = 26, .external_lex_state = 3}, [2393] = {.lex_state = 26, .external_lex_state = 3}, [2394] = {.lex_state = 26, .external_lex_state = 3}, @@ -22667,7 +22673,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2404] = {.lex_state = 26, .external_lex_state = 3}, [2405] = {.lex_state = 26, .external_lex_state = 3}, [2406] = {.lex_state = 26, .external_lex_state = 3}, - [2407] = {.lex_state = 26, .external_lex_state = 3}, + [2407] = {.lex_state = 26, .external_lex_state = 4}, [2408] = {.lex_state = 26, .external_lex_state = 3}, [2409] = {.lex_state = 26, .external_lex_state = 3}, [2410] = {.lex_state = 26, .external_lex_state = 3}, @@ -22677,8 +22683,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2414] = {.lex_state = 26, .external_lex_state = 3}, [2415] = {.lex_state = 26, .external_lex_state = 3}, [2416] = {.lex_state = 26, .external_lex_state = 3}, - [2417] = {.lex_state = 26, .external_lex_state = 3}, - [2418] = {.lex_state = 26, .external_lex_state = 3}, + [2417] = {.lex_state = 36, .external_lex_state = 5}, + [2418] = {.lex_state = 36, .external_lex_state = 5}, [2419] = {.lex_state = 26, .external_lex_state = 3}, [2420] = {.lex_state = 26, .external_lex_state = 3}, [2421] = {.lex_state = 26, .external_lex_state = 3}, @@ -22691,124 +22697,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2428] = {.lex_state = 26, .external_lex_state = 3}, [2429] = {.lex_state = 26, .external_lex_state = 3}, [2430] = {.lex_state = 26, .external_lex_state = 3}, - [2431] = {.lex_state = 36, .external_lex_state = 5}, + [2431] = {.lex_state = 26, .external_lex_state = 3}, [2432] = {.lex_state = 26, .external_lex_state = 3}, - [2433] = {.lex_state = 26, .external_lex_state = 4}, + [2433] = {.lex_state = 26, .external_lex_state = 3}, [2434] = {.lex_state = 26, .external_lex_state = 3}, [2435] = {.lex_state = 26, .external_lex_state = 3}, - [2436] = {.lex_state = 36, .external_lex_state = 5}, - [2437] = {.lex_state = 36, .external_lex_state = 5}, + [2436] = {.lex_state = 26, .external_lex_state = 3}, + [2437] = {.lex_state = 26, .external_lex_state = 3}, [2438] = {.lex_state = 26, .external_lex_state = 3}, [2439] = {.lex_state = 26, .external_lex_state = 3}, [2440] = {.lex_state = 26, .external_lex_state = 3}, [2441] = {.lex_state = 26, .external_lex_state = 3}, [2442] = {.lex_state = 26, .external_lex_state = 3}, [2443] = {.lex_state = 26, .external_lex_state = 4}, - [2444] = {.lex_state = 26, .external_lex_state = 4}, + [2444] = {.lex_state = 26, .external_lex_state = 3}, [2445] = {.lex_state = 26, .external_lex_state = 3}, - [2446] = {.lex_state = 26, .external_lex_state = 3}, - [2447] = {.lex_state = 26, .external_lex_state = 3}, + [2446] = {.lex_state = 36, .external_lex_state = 5}, + [2447] = {.lex_state = 26, .external_lex_state = 4}, [2448] = {.lex_state = 26, .external_lex_state = 4}, - [2449] = {.lex_state = 26, .external_lex_state = 4}, - [2450] = {.lex_state = 26, .external_lex_state = 3}, - [2451] = {.lex_state = 26, .external_lex_state = 3}, + [2449] = {.lex_state = 26, .external_lex_state = 3}, + [2450] = {.lex_state = 26, .external_lex_state = 4}, + [2451] = {.lex_state = 36, .external_lex_state = 5}, [2452] = {.lex_state = 26, .external_lex_state = 4}, - [2453] = {.lex_state = 36, .external_lex_state = 5}, + [2453] = {.lex_state = 26, .external_lex_state = 4}, [2454] = {.lex_state = 26, .external_lex_state = 3}, - [2455] = {.lex_state = 26, .external_lex_state = 3}, + [2455] = {.lex_state = 26, .external_lex_state = 4}, [2456] = {.lex_state = 26, .external_lex_state = 3}, [2457] = {.lex_state = 26, .external_lex_state = 3}, [2458] = {.lex_state = 26, .external_lex_state = 3}, [2459] = {.lex_state = 26, .external_lex_state = 3}, [2460] = {.lex_state = 26, .external_lex_state = 3}, - [2461] = {.lex_state = 26, .external_lex_state = 4}, + [2461] = {.lex_state = 26, .external_lex_state = 3}, [2462] = {.lex_state = 26, .external_lex_state = 4}, - [2463] = {.lex_state = 26, .external_lex_state = 4}, + [2463] = {.lex_state = 26, .external_lex_state = 3}, [2464] = {.lex_state = 26, .external_lex_state = 4}, [2465] = {.lex_state = 26, .external_lex_state = 3}, [2466] = {.lex_state = 26, .external_lex_state = 3}, - [2467] = {.lex_state = 36, .external_lex_state = 5}, - [2468] = {.lex_state = 26, .external_lex_state = 4}, - [2469] = {.lex_state = 26, .external_lex_state = 4}, - [2470] = {.lex_state = 26, .external_lex_state = 3}, - [2471] = {.lex_state = 26, .external_lex_state = 3}, + [2467] = {.lex_state = 26, .external_lex_state = 3}, + [2468] = {.lex_state = 26, .external_lex_state = 3}, + [2469] = {.lex_state = 36, .external_lex_state = 5}, + [2470] = {.lex_state = 26, .external_lex_state = 4}, + [2471] = {.lex_state = 26, .external_lex_state = 4}, [2472] = {.lex_state = 26, .external_lex_state = 4}, [2473] = {.lex_state = 26, .external_lex_state = 4}, [2474] = {.lex_state = 26, .external_lex_state = 4}, - [2475] = {.lex_state = 26, .external_lex_state = 3}, - [2476] = {.lex_state = 26, .external_lex_state = 3}, - [2477] = {.lex_state = 26, .external_lex_state = 3}, + [2475] = {.lex_state = 26, .external_lex_state = 4}, + [2476] = {.lex_state = 26, .external_lex_state = 4}, + [2477] = {.lex_state = 26, .external_lex_state = 4}, [2478] = {.lex_state = 26, .external_lex_state = 4}, - [2479] = {.lex_state = 26, .external_lex_state = 3}, - [2480] = {.lex_state = 26, .external_lex_state = 3}, - [2481] = {.lex_state = 26, .external_lex_state = 3}, + [2479] = {.lex_state = 26, .external_lex_state = 4}, + [2480] = {.lex_state = 26, .external_lex_state = 4}, + [2481] = {.lex_state = 26, .external_lex_state = 4}, [2482] = {.lex_state = 26, .external_lex_state = 4}, - [2483] = {.lex_state = 26, .external_lex_state = 3}, - [2484] = {.lex_state = 26, .external_lex_state = 4}, + [2483] = {.lex_state = 26, .external_lex_state = 4}, + [2484] = {.lex_state = 26, .external_lex_state = 3}, [2485] = {.lex_state = 26, .external_lex_state = 4}, - [2486] = {.lex_state = 26, .external_lex_state = 3}, - [2487] = {.lex_state = 26, .external_lex_state = 3}, - [2488] = {.lex_state = 26, .external_lex_state = 3}, + [2486] = {.lex_state = 26, .external_lex_state = 4}, + [2487] = {.lex_state = 36, .external_lex_state = 5}, + [2488] = {.lex_state = 26, .external_lex_state = 4}, [2489] = {.lex_state = 26, .external_lex_state = 4}, [2490] = {.lex_state = 26, .external_lex_state = 4}, - [2491] = {.lex_state = 26, .external_lex_state = 3}, - [2492] = {.lex_state = 26, .external_lex_state = 3}, + [2491] = {.lex_state = 26, .external_lex_state = 4}, + [2492] = {.lex_state = 26, .external_lex_state = 4}, [2493] = {.lex_state = 26, .external_lex_state = 4}, [2494] = {.lex_state = 26, .external_lex_state = 4}, - [2495] = {.lex_state = 26, .external_lex_state = 3}, - [2496] = {.lex_state = 26, .external_lex_state = 4}, - [2497] = {.lex_state = 26, .external_lex_state = 3}, - [2498] = {.lex_state = 26, .external_lex_state = 3}, - [2499] = {.lex_state = 26, .external_lex_state = 3}, - [2500] = {.lex_state = 26, .external_lex_state = 3}, - [2501] = {.lex_state = 26, .external_lex_state = 3}, - [2502] = {.lex_state = 26, .external_lex_state = 4}, + [2495] = {.lex_state = 26, .external_lex_state = 4}, + [2496] = {.lex_state = 36, .external_lex_state = 5}, + [2497] = {.lex_state = 26, .external_lex_state = 4}, + [2498] = {.lex_state = 26, .external_lex_state = 4}, + [2499] = {.lex_state = 26, .external_lex_state = 4}, + [2500] = {.lex_state = 26, .external_lex_state = 4}, + [2501] = {.lex_state = 26, .external_lex_state = 4}, + [2502] = {.lex_state = 26, .external_lex_state = 3}, [2503] = {.lex_state = 26, .external_lex_state = 4}, [2504] = {.lex_state = 26, .external_lex_state = 4}, - [2505] = {.lex_state = 36, .external_lex_state = 5}, + [2505] = {.lex_state = 26, .external_lex_state = 4}, [2506] = {.lex_state = 26, .external_lex_state = 4}, - [2507] = {.lex_state = 26, .external_lex_state = 4}, - [2508] = {.lex_state = 26, .external_lex_state = 3}, - [2509] = {.lex_state = 26, .external_lex_state = 3}, - [2510] = {.lex_state = 36, .external_lex_state = 5}, - [2511] = {.lex_state = 26, .external_lex_state = 3}, + [2507] = {.lex_state = 36, .external_lex_state = 5}, + [2508] = {.lex_state = 36, .external_lex_state = 5}, + [2509] = {.lex_state = 26, .external_lex_state = 4}, + [2510] = {.lex_state = 26, .external_lex_state = 3}, + [2511] = {.lex_state = 26, .external_lex_state = 4}, [2512] = {.lex_state = 26, .external_lex_state = 3}, - [2513] = {.lex_state = 26, .external_lex_state = 4}, - [2514] = {.lex_state = 26, .external_lex_state = 4}, - [2515] = {.lex_state = 26, .external_lex_state = 4}, - [2516] = {.lex_state = 26, .external_lex_state = 4}, + [2513] = {.lex_state = 26, .external_lex_state = 3}, + [2514] = {.lex_state = 26, .external_lex_state = 3}, + [2515] = {.lex_state = 36, .external_lex_state = 5}, + [2516] = {.lex_state = 26, .external_lex_state = 3}, [2517] = {.lex_state = 26, .external_lex_state = 3}, [2518] = {.lex_state = 26, .external_lex_state = 3}, - [2519] = {.lex_state = 26, .external_lex_state = 4}, + [2519] = {.lex_state = 26, .external_lex_state = 3}, [2520] = {.lex_state = 26, .external_lex_state = 3}, - [2521] = {.lex_state = 26, .external_lex_state = 4}, - [2522] = {.lex_state = 26, .external_lex_state = 3}, + [2521] = {.lex_state = 26, .external_lex_state = 3}, + [2522] = {.lex_state = 26, .external_lex_state = 4}, [2523] = {.lex_state = 26, .external_lex_state = 3}, - [2524] = {.lex_state = 26, .external_lex_state = 3}, + [2524] = {.lex_state = 26, .external_lex_state = 4}, [2525] = {.lex_state = 26, .external_lex_state = 3}, [2526] = {.lex_state = 26, .external_lex_state = 4}, [2527] = {.lex_state = 26, .external_lex_state = 3}, [2528] = {.lex_state = 26, .external_lex_state = 3}, [2529] = {.lex_state = 26, .external_lex_state = 4}, [2530] = {.lex_state = 26, .external_lex_state = 4}, - [2531] = {.lex_state = 26, .external_lex_state = 4}, - [2532] = {.lex_state = 26, .external_lex_state = 4}, - [2533] = {.lex_state = 26, .external_lex_state = 4}, - [2534] = {.lex_state = 26, .external_lex_state = 4}, + [2531] = {.lex_state = 26, .external_lex_state = 3}, + [2532] = {.lex_state = 26, .external_lex_state = 3}, + [2533] = {.lex_state = 36, .external_lex_state = 5}, + [2534] = {.lex_state = 26, .external_lex_state = 3}, [2535] = {.lex_state = 26, .external_lex_state = 3}, [2536] = {.lex_state = 26, .external_lex_state = 3}, [2537] = {.lex_state = 26, .external_lex_state = 3}, [2538] = {.lex_state = 26, .external_lex_state = 3}, - [2539] = {.lex_state = 26, .external_lex_state = 4}, - [2540] = {.lex_state = 26, .external_lex_state = 3}, - [2541] = {.lex_state = 26, .external_lex_state = 3}, - [2542] = {.lex_state = 26, .external_lex_state = 3}, + [2539] = {.lex_state = 26, .external_lex_state = 3}, + [2540] = {.lex_state = 26, .external_lex_state = 4}, + [2541] = {.lex_state = 26, .external_lex_state = 4}, + [2542] = {.lex_state = 26, .external_lex_state = 4}, [2543] = {.lex_state = 26, .external_lex_state = 3}, [2544] = {.lex_state = 26, .external_lex_state = 3}, - [2545] = {.lex_state = 26, .external_lex_state = 3}, - [2546] = {.lex_state = 26, .external_lex_state = 4}, + [2545] = {.lex_state = 26, .external_lex_state = 4}, + [2546] = {.lex_state = 26, .external_lex_state = 3}, [2547] = {.lex_state = 26, .external_lex_state = 4}, - [2548] = {.lex_state = 26, .external_lex_state = 4}, + [2548] = {.lex_state = 26, .external_lex_state = 3}, [2549] = {.lex_state = 26, .external_lex_state = 3}, [2550] = {.lex_state = 26, .external_lex_state = 3}, [2551] = {.lex_state = 26, .external_lex_state = 4}, @@ -22818,199 +22824,199 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2555] = {.lex_state = 26, .external_lex_state = 4}, [2556] = {.lex_state = 26, .external_lex_state = 3}, [2557] = {.lex_state = 26, .external_lex_state = 4}, - [2558] = {.lex_state = 26, .external_lex_state = 4}, - [2559] = {.lex_state = 26, .external_lex_state = 4}, + [2558] = {.lex_state = 26, .external_lex_state = 3}, + [2559] = {.lex_state = 26, .external_lex_state = 3}, [2560] = {.lex_state = 26, .external_lex_state = 4}, [2561] = {.lex_state = 26, .external_lex_state = 4}, [2562] = {.lex_state = 26, .external_lex_state = 3}, [2563] = {.lex_state = 26, .external_lex_state = 3}, - [2564] = {.lex_state = 26, .external_lex_state = 3}, + [2564] = {.lex_state = 26, .external_lex_state = 4}, [2565] = {.lex_state = 26, .external_lex_state = 3}, - [2566] = {.lex_state = 26, .external_lex_state = 4}, + [2566] = {.lex_state = 26, .external_lex_state = 3}, [2567] = {.lex_state = 26, .external_lex_state = 3}, [2568] = {.lex_state = 26, .external_lex_state = 3}, [2569] = {.lex_state = 26, .external_lex_state = 3}, [2570] = {.lex_state = 26, .external_lex_state = 4}, [2571] = {.lex_state = 26, .external_lex_state = 4}, - [2572] = {.lex_state = 26, .external_lex_state = 4}, - [2573] = {.lex_state = 26, .external_lex_state = 4}, + [2572] = {.lex_state = 26, .external_lex_state = 3}, + [2573] = {.lex_state = 26, .external_lex_state = 3}, [2574] = {.lex_state = 26, .external_lex_state = 3}, [2575] = {.lex_state = 26, .external_lex_state = 3}, - [2576] = {.lex_state = 26, .external_lex_state = 4}, - [2577] = {.lex_state = 26, .external_lex_state = 4}, + [2576] = {.lex_state = 26, .external_lex_state = 3}, + [2577] = {.lex_state = 26, .external_lex_state = 3}, [2578] = {.lex_state = 26, .external_lex_state = 3}, [2579] = {.lex_state = 26, .external_lex_state = 4}, [2580] = {.lex_state = 26, .external_lex_state = 4}, [2581] = {.lex_state = 26, .external_lex_state = 4}, - [2582] = {.lex_state = 36, .external_lex_state = 5}, + [2582] = {.lex_state = 26, .external_lex_state = 4}, [2583] = {.lex_state = 26, .external_lex_state = 4}, [2584] = {.lex_state = 26, .external_lex_state = 4}, [2585] = {.lex_state = 26, .external_lex_state = 4}, - [2586] = {.lex_state = 36, .external_lex_state = 5}, - [2587] = {.lex_state = 26, .external_lex_state = 4}, - [2588] = {.lex_state = 26, .external_lex_state = 3}, - [2589] = {.lex_state = 26, .external_lex_state = 3}, + [2586] = {.lex_state = 26, .external_lex_state = 4}, + [2587] = {.lex_state = 26, .external_lex_state = 3}, + [2588] = {.lex_state = 26, .external_lex_state = 4}, + [2589] = {.lex_state = 26, .external_lex_state = 4}, [2590] = {.lex_state = 26, .external_lex_state = 4}, - [2591] = {.lex_state = 26, .external_lex_state = 3}, - [2592] = {.lex_state = 26, .external_lex_state = 4}, + [2591] = {.lex_state = 36, .external_lex_state = 5}, + [2592] = {.lex_state = 26, .external_lex_state = 3}, [2593] = {.lex_state = 26, .external_lex_state = 4}, [2594] = {.lex_state = 26, .external_lex_state = 4}, - [2595] = {.lex_state = 36, .external_lex_state = 5}, + [2595] = {.lex_state = 26, .external_lex_state = 4}, [2596] = {.lex_state = 26, .external_lex_state = 4}, - [2597] = {.lex_state = 26, .external_lex_state = 3}, - [2598] = {.lex_state = 26, .external_lex_state = 4}, + [2597] = {.lex_state = 26, .external_lex_state = 4}, + [2598] = {.lex_state = 26, .external_lex_state = 3}, [2599] = {.lex_state = 26, .external_lex_state = 4}, [2600] = {.lex_state = 26, .external_lex_state = 4}, [2601] = {.lex_state = 26, .external_lex_state = 3}, - [2602] = {.lex_state = 26, .external_lex_state = 4}, - [2603] = {.lex_state = 26, .external_lex_state = 3}, - [2604] = {.lex_state = 26, .external_lex_state = 3}, - [2605] = {.lex_state = 26, .external_lex_state = 4}, + [2602] = {.lex_state = 26, .external_lex_state = 3}, + [2603] = {.lex_state = 26, .external_lex_state = 4}, + [2604] = {.lex_state = 36, .external_lex_state = 5}, + [2605] = {.lex_state = 36, .external_lex_state = 5}, [2606] = {.lex_state = 26, .external_lex_state = 3}, [2607] = {.lex_state = 26, .external_lex_state = 4}, [2608] = {.lex_state = 26, .external_lex_state = 3}, - [2609] = {.lex_state = 36, .external_lex_state = 5}, - [2610] = {.lex_state = 36, .external_lex_state = 5}, + [2609] = {.lex_state = 26, .external_lex_state = 3}, + [2610] = {.lex_state = 26, .external_lex_state = 3}, [2611] = {.lex_state = 26, .external_lex_state = 3}, - [2612] = {.lex_state = 26, .external_lex_state = 4}, - [2613] = {.lex_state = 36, .external_lex_state = 5}, - [2614] = {.lex_state = 26, .external_lex_state = 4}, - [2615] = {.lex_state = 26, .external_lex_state = 4}, + [2612] = {.lex_state = 26, .external_lex_state = 3}, + [2613] = {.lex_state = 26, .external_lex_state = 3}, + [2614] = {.lex_state = 26, .external_lex_state = 3}, + [2615] = {.lex_state = 26, .external_lex_state = 3}, [2616] = {.lex_state = 26, .external_lex_state = 3}, [2617] = {.lex_state = 26, .external_lex_state = 3}, [2618] = {.lex_state = 26, .external_lex_state = 3}, - [2619] = {.lex_state = 26, .external_lex_state = 4}, + [2619] = {.lex_state = 26, .external_lex_state = 3}, [2620] = {.lex_state = 26, .external_lex_state = 3}, [2621] = {.lex_state = 26, .external_lex_state = 3}, - [2622] = {.lex_state = 26, .external_lex_state = 4}, + [2622] = {.lex_state = 26, .external_lex_state = 3}, [2623] = {.lex_state = 26, .external_lex_state = 4}, [2624] = {.lex_state = 26, .external_lex_state = 4}, [2625] = {.lex_state = 26, .external_lex_state = 3}, [2626] = {.lex_state = 26, .external_lex_state = 4}, - [2627] = {.lex_state = 26, .external_lex_state = 4}, - [2628] = {.lex_state = 26, .external_lex_state = 3}, - [2629] = {.lex_state = 26, .external_lex_state = 4}, + [2627] = {.lex_state = 26, .external_lex_state = 3}, + [2628] = {.lex_state = 26, .external_lex_state = 4}, + [2629] = {.lex_state = 26, .external_lex_state = 3}, [2630] = {.lex_state = 26, .external_lex_state = 3}, - [2631] = {.lex_state = 26, .external_lex_state = 4}, + [2631] = {.lex_state = 26, .external_lex_state = 3}, [2632] = {.lex_state = 26, .external_lex_state = 4}, - [2633] = {.lex_state = 26, .external_lex_state = 3}, - [2634] = {.lex_state = 26, .external_lex_state = 3}, + [2633] = {.lex_state = 26, .external_lex_state = 4}, + [2634] = {.lex_state = 26, .external_lex_state = 4}, [2635] = {.lex_state = 26, .external_lex_state = 3}, - [2636] = {.lex_state = 36, .external_lex_state = 5}, - [2637] = {.lex_state = 26, .external_lex_state = 4}, + [2636] = {.lex_state = 26, .external_lex_state = 4}, + [2637] = {.lex_state = 26, .external_lex_state = 3}, [2638] = {.lex_state = 26, .external_lex_state = 3}, [2639] = {.lex_state = 26, .external_lex_state = 4}, [2640] = {.lex_state = 26, .external_lex_state = 3}, - [2641] = {.lex_state = 26, .external_lex_state = 3}, + [2641] = {.lex_state = 26, .external_lex_state = 4}, [2642] = {.lex_state = 26, .external_lex_state = 3}, - [2643] = {.lex_state = 26, .external_lex_state = 4}, + [2643] = {.lex_state = 26, .external_lex_state = 3}, [2644] = {.lex_state = 26, .external_lex_state = 3}, [2645] = {.lex_state = 26, .external_lex_state = 3}, [2646] = {.lex_state = 26, .external_lex_state = 3}, - [2647] = {.lex_state = 26, .external_lex_state = 4}, + [2647] = {.lex_state = 26, .external_lex_state = 3}, [2648] = {.lex_state = 26, .external_lex_state = 3}, [2649] = {.lex_state = 26, .external_lex_state = 3}, - [2650] = {.lex_state = 26, .external_lex_state = 4}, + [2650] = {.lex_state = 26, .external_lex_state = 3}, [2651] = {.lex_state = 26, .external_lex_state = 4}, - [2652] = {.lex_state = 26, .external_lex_state = 3}, + [2652] = {.lex_state = 26, .external_lex_state = 4}, [2653] = {.lex_state = 26, .external_lex_state = 3}, [2654] = {.lex_state = 26, .external_lex_state = 3}, [2655] = {.lex_state = 26, .external_lex_state = 3}, - [2656] = {.lex_state = 26, .external_lex_state = 4}, + [2656] = {.lex_state = 26, .external_lex_state = 3}, [2657] = {.lex_state = 26, .external_lex_state = 3}, [2658] = {.lex_state = 26, .external_lex_state = 3}, [2659] = {.lex_state = 26, .external_lex_state = 3}, [2660] = {.lex_state = 26, .external_lex_state = 3}, [2661] = {.lex_state = 26, .external_lex_state = 3}, [2662] = {.lex_state = 26, .external_lex_state = 3}, - [2663] = {.lex_state = 35, .external_lex_state = 5}, + [2663] = {.lex_state = 26, .external_lex_state = 3}, [2664] = {.lex_state = 26, .external_lex_state = 3}, [2665] = {.lex_state = 26, .external_lex_state = 3}, [2666] = {.lex_state = 26, .external_lex_state = 3}, - [2667] = {.lex_state = 26, .external_lex_state = 3}, - [2668] = {.lex_state = 26, .external_lex_state = 3}, + [2667] = {.lex_state = 26, .external_lex_state = 4}, + [2668] = {.lex_state = 26, .external_lex_state = 4}, [2669] = {.lex_state = 26, .external_lex_state = 3}, [2670] = {.lex_state = 26, .external_lex_state = 3}, - [2671] = {.lex_state = 26, .external_lex_state = 3}, + [2671] = {.lex_state = 26, .external_lex_state = 4}, [2672] = {.lex_state = 26, .external_lex_state = 3}, - [2673] = {.lex_state = 26, .external_lex_state = 3}, + [2673] = {.lex_state = 26, .external_lex_state = 4}, [2674] = {.lex_state = 26, .external_lex_state = 4}, [2675] = {.lex_state = 26, .external_lex_state = 3}, - [2676] = {.lex_state = 35, .external_lex_state = 5}, + [2676] = {.lex_state = 36, .external_lex_state = 5}, [2677] = {.lex_state = 26, .external_lex_state = 3}, [2678] = {.lex_state = 26, .external_lex_state = 3}, [2679] = {.lex_state = 26, .external_lex_state = 3}, [2680] = {.lex_state = 26, .external_lex_state = 3}, [2681] = {.lex_state = 26, .external_lex_state = 3}, - [2682] = {.lex_state = 36, .external_lex_state = 5}, + [2682] = {.lex_state = 26, .external_lex_state = 3}, [2683] = {.lex_state = 26, .external_lex_state = 3}, [2684] = {.lex_state = 26, .external_lex_state = 3}, - [2685] = {.lex_state = 36, .external_lex_state = 5}, - [2686] = {.lex_state = 26, .external_lex_state = 3}, + [2685] = {.lex_state = 26, .external_lex_state = 3}, + [2686] = {.lex_state = 36, .external_lex_state = 5}, [2687] = {.lex_state = 26, .external_lex_state = 3}, - [2688] = {.lex_state = 26, .external_lex_state = 3}, + [2688] = {.lex_state = 26, .external_lex_state = 4}, [2689] = {.lex_state = 26, .external_lex_state = 3}, [2690] = {.lex_state = 26, .external_lex_state = 3}, - [2691] = {.lex_state = 26, .external_lex_state = 3}, - [2692] = {.lex_state = 26, .external_lex_state = 3}, + [2691] = {.lex_state = 36, .external_lex_state = 5}, + [2692] = {.lex_state = 35, .external_lex_state = 5}, [2693] = {.lex_state = 26, .external_lex_state = 3}, [2694] = {.lex_state = 26, .external_lex_state = 4}, - [2695] = {.lex_state = 26, .external_lex_state = 3}, + [2695] = {.lex_state = 26, .external_lex_state = 4}, [2696] = {.lex_state = 26, .external_lex_state = 3}, - [2697] = {.lex_state = 26, .external_lex_state = 4}, + [2697] = {.lex_state = 26, .external_lex_state = 3}, [2698] = {.lex_state = 26, .external_lex_state = 3}, - [2699] = {.lex_state = 26, .external_lex_state = 3}, + [2699] = {.lex_state = 26, .external_lex_state = 4}, [2700] = {.lex_state = 26, .external_lex_state = 3}, - [2701] = {.lex_state = 26, .external_lex_state = 4}, + [2701] = {.lex_state = 26, .external_lex_state = 3}, [2702] = {.lex_state = 26, .external_lex_state = 3}, [2703] = {.lex_state = 26, .external_lex_state = 3}, [2704] = {.lex_state = 26, .external_lex_state = 4}, - [2705] = {.lex_state = 26, .external_lex_state = 4}, + [2705] = {.lex_state = 26, .external_lex_state = 3}, [2706] = {.lex_state = 26, .external_lex_state = 3}, - [2707] = {.lex_state = 36, .external_lex_state = 5}, + [2707] = {.lex_state = 26, .external_lex_state = 4}, [2708] = {.lex_state = 26, .external_lex_state = 3}, [2709] = {.lex_state = 26, .external_lex_state = 3}, - [2710] = {.lex_state = 26, .external_lex_state = 4}, - [2711] = {.lex_state = 26, .external_lex_state = 4}, + [2710] = {.lex_state = 26, .external_lex_state = 3}, + [2711] = {.lex_state = 26, .external_lex_state = 3}, [2712] = {.lex_state = 26, .external_lex_state = 3}, [2713] = {.lex_state = 26, .external_lex_state = 4}, - [2714] = {.lex_state = 26, .external_lex_state = 3}, + [2714] = {.lex_state = 26, .external_lex_state = 4}, [2715] = {.lex_state = 26, .external_lex_state = 3}, [2716] = {.lex_state = 26, .external_lex_state = 3}, - [2717] = {.lex_state = 26, .external_lex_state = 3}, + [2717] = {.lex_state = 36, .external_lex_state = 5}, [2718] = {.lex_state = 26, .external_lex_state = 3}, - [2719] = {.lex_state = 26, .external_lex_state = 4}, + [2719] = {.lex_state = 36, .external_lex_state = 5}, [2720] = {.lex_state = 26, .external_lex_state = 3}, [2721] = {.lex_state = 26, .external_lex_state = 3}, - [2722] = {.lex_state = 26, .external_lex_state = 3}, + [2722] = {.lex_state = 26, .external_lex_state = 4}, [2723] = {.lex_state = 26, .external_lex_state = 3}, [2724] = {.lex_state = 26, .external_lex_state = 4}, [2725] = {.lex_state = 26, .external_lex_state = 3}, - [2726] = {.lex_state = 26, .external_lex_state = 4}, - [2727] = {.lex_state = 26, .external_lex_state = 4}, - [2728] = {.lex_state = 26, .external_lex_state = 3}, + [2726] = {.lex_state = 26, .external_lex_state = 3}, + [2727] = {.lex_state = 26, .external_lex_state = 3}, + [2728] = {.lex_state = 26, .external_lex_state = 4}, [2729] = {.lex_state = 26, .external_lex_state = 3}, [2730] = {.lex_state = 26, .external_lex_state = 3}, [2731] = {.lex_state = 26, .external_lex_state = 3}, [2732] = {.lex_state = 26, .external_lex_state = 3}, [2733] = {.lex_state = 26, .external_lex_state = 3}, [2734] = {.lex_state = 26, .external_lex_state = 3}, - [2735] = {.lex_state = 26, .external_lex_state = 3}, - [2736] = {.lex_state = 26, .external_lex_state = 3}, + [2735] = {.lex_state = 26, .external_lex_state = 4}, + [2736] = {.lex_state = 26, .external_lex_state = 4}, [2737] = {.lex_state = 26, .external_lex_state = 3}, - [2738] = {.lex_state = 26, .external_lex_state = 3}, + [2738] = {.lex_state = 26, .external_lex_state = 4}, [2739] = {.lex_state = 26, .external_lex_state = 3}, [2740] = {.lex_state = 26, .external_lex_state = 3}, - [2741] = {.lex_state = 26, .external_lex_state = 4}, - [2742] = {.lex_state = 26, .external_lex_state = 3}, + [2741] = {.lex_state = 26, .external_lex_state = 3}, + [2742] = {.lex_state = 26, .external_lex_state = 4}, [2743] = {.lex_state = 26, .external_lex_state = 3}, - [2744] = {.lex_state = 26, .external_lex_state = 3}, + [2744] = {.lex_state = 36, .external_lex_state = 5}, [2745] = {.lex_state = 26, .external_lex_state = 3}, - [2746] = {.lex_state = 26, .external_lex_state = 4}, - [2747] = {.lex_state = 26, .external_lex_state = 4}, + [2746] = {.lex_state = 26, .external_lex_state = 3}, + [2747] = {.lex_state = 26, .external_lex_state = 3}, [2748] = {.lex_state = 26, .external_lex_state = 3}, [2749] = {.lex_state = 26, .external_lex_state = 3}, - [2750] = {.lex_state = 36, .external_lex_state = 5}, + [2750] = {.lex_state = 26, .external_lex_state = 3}, [2751] = {.lex_state = 26, .external_lex_state = 3}, [2752] = {.lex_state = 26, .external_lex_state = 3}, [2753] = {.lex_state = 26, .external_lex_state = 3}, @@ -23026,56 +23032,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2763] = {.lex_state = 26, .external_lex_state = 3}, [2764] = {.lex_state = 26, .external_lex_state = 3}, [2765] = {.lex_state = 26, .external_lex_state = 3}, - [2766] = {.lex_state = 36, .external_lex_state = 5}, - [2767] = {.lex_state = 26, .external_lex_state = 3}, - [2768] = {.lex_state = 26, .external_lex_state = 4}, - [2769] = {.lex_state = 26, .external_lex_state = 4}, + [2766] = {.lex_state = 26, .external_lex_state = 4}, + [2767] = {.lex_state = 26, .external_lex_state = 4}, + [2768] = {.lex_state = 26, .external_lex_state = 3}, + [2769] = {.lex_state = 26, .external_lex_state = 3}, [2770] = {.lex_state = 26, .external_lex_state = 3}, [2771] = {.lex_state = 26, .external_lex_state = 3}, [2772] = {.lex_state = 26, .external_lex_state = 3}, - [2773] = {.lex_state = 26, .external_lex_state = 4}, + [2773] = {.lex_state = 35, .external_lex_state = 5}, [2774] = {.lex_state = 26, .external_lex_state = 3}, - [2775] = {.lex_state = 26, .external_lex_state = 4}, - [2776] = {.lex_state = 36, .external_lex_state = 5}, + [2775] = {.lex_state = 26, .external_lex_state = 3}, + [2776] = {.lex_state = 26, .external_lex_state = 3}, [2777] = {.lex_state = 26, .external_lex_state = 3}, - [2778] = {.lex_state = 26, .external_lex_state = 4}, - [2779] = {.lex_state = 35, .external_lex_state = 5}, - [2780] = {.lex_state = 26, .external_lex_state = 3}, + [2778] = {.lex_state = 26, .external_lex_state = 3}, + [2779] = {.lex_state = 26, .external_lex_state = 3}, + [2780] = {.lex_state = 26, .external_lex_state = 4}, [2781] = {.lex_state = 26, .external_lex_state = 4}, [2782] = {.lex_state = 26, .external_lex_state = 4}, [2783] = {.lex_state = 26, .external_lex_state = 4}, - [2784] = {.lex_state = 36, .external_lex_state = 2}, + [2784] = {.lex_state = 26, .external_lex_state = 4}, [2785] = {.lex_state = 26, .external_lex_state = 4}, [2786] = {.lex_state = 26, .external_lex_state = 4}, - [2787] = {.lex_state = 36, .external_lex_state = 5}, - [2788] = {.lex_state = 26, .external_lex_state = 4}, + [2787] = {.lex_state = 36, .external_lex_state = 2}, + [2788] = {.lex_state = 35, .external_lex_state = 5}, [2789] = {.lex_state = 26, .external_lex_state = 4}, - [2790] = {.lex_state = 26, .external_lex_state = 3}, - [2791] = {.lex_state = 26, .external_lex_state = 3}, + [2790] = {.lex_state = 26, .external_lex_state = 4}, + [2791] = {.lex_state = 36, .external_lex_state = 2}, [2792] = {.lex_state = 26, .external_lex_state = 4}, - [2793] = {.lex_state = 36, .external_lex_state = 2}, + [2793] = {.lex_state = 26, .external_lex_state = 3}, [2794] = {.lex_state = 26, .external_lex_state = 4}, [2795] = {.lex_state = 26, .external_lex_state = 4}, [2796] = {.lex_state = 26, .external_lex_state = 4}, [2797] = {.lex_state = 26, .external_lex_state = 4}, - [2798] = {.lex_state = 26, .external_lex_state = 4}, + [2798] = {.lex_state = 35, .external_lex_state = 5}, [2799] = {.lex_state = 26, .external_lex_state = 4}, - [2800] = {.lex_state = 26, .external_lex_state = 3}, - [2801] = {.lex_state = 26, .external_lex_state = 4}, - [2802] = {.lex_state = 26, .external_lex_state = 4}, + [2800] = {.lex_state = 26, .external_lex_state = 4}, + [2801] = {.lex_state = 35, .external_lex_state = 5}, + [2802] = {.lex_state = 36, .external_lex_state = 5}, [2803] = {.lex_state = 26, .external_lex_state = 4}, - [2804] = {.lex_state = 26, .external_lex_state = 4}, - [2805] = {.lex_state = 26, .external_lex_state = 4}, - [2806] = {.lex_state = 36, .external_lex_state = 2}, - [2807] = {.lex_state = 26, .external_lex_state = 4}, + [2804] = {.lex_state = 36, .external_lex_state = 2}, + [2805] = {.lex_state = 36, .external_lex_state = 5}, + [2806] = {.lex_state = 36, .external_lex_state = 5}, + [2807] = {.lex_state = 36, .external_lex_state = 2}, [2808] = {.lex_state = 26, .external_lex_state = 4}, [2809] = {.lex_state = 26, .external_lex_state = 4}, - [2810] = {.lex_state = 36, .external_lex_state = 5}, - [2811] = {.lex_state = 36, .external_lex_state = 5}, + [2810] = {.lex_state = 26, .external_lex_state = 4}, + [2811] = {.lex_state = 26, .external_lex_state = 4}, [2812] = {.lex_state = 26, .external_lex_state = 4}, - [2813] = {.lex_state = 26, .external_lex_state = 3}, + [2813] = {.lex_state = 26, .external_lex_state = 4}, [2814] = {.lex_state = 26, .external_lex_state = 4}, - [2815] = {.lex_state = 26, .external_lex_state = 4}, + [2815] = {.lex_state = 36, .external_lex_state = 5}, [2816] = {.lex_state = 26, .external_lex_state = 4}, [2817] = {.lex_state = 26, .external_lex_state = 4}, [2818] = {.lex_state = 26, .external_lex_state = 4}, @@ -23084,24 +23090,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2821] = {.lex_state = 26, .external_lex_state = 4}, [2822] = {.lex_state = 26, .external_lex_state = 4}, [2823] = {.lex_state = 26, .external_lex_state = 4}, - [2824] = {.lex_state = 36, .external_lex_state = 5}, - [2825] = {.lex_state = 26, .external_lex_state = 4}, + [2824] = {.lex_state = 36, .external_lex_state = 2}, + [2825] = {.lex_state = 26, .external_lex_state = 3}, [2826] = {.lex_state = 26, .external_lex_state = 4}, [2827] = {.lex_state = 26, .external_lex_state = 4}, [2828] = {.lex_state = 26, .external_lex_state = 4}, - [2829] = {.lex_state = 26, .external_lex_state = 4}, - [2830] = {.lex_state = 26, .external_lex_state = 4}, - [2831] = {.lex_state = 26, .external_lex_state = 4}, + [2829] = {.lex_state = 26, .external_lex_state = 3}, + [2830] = {.lex_state = 26, .external_lex_state = 3}, + [2831] = {.lex_state = 26, .external_lex_state = 3}, [2832] = {.lex_state = 26, .external_lex_state = 4}, - [2833] = {.lex_state = 36, .external_lex_state = 2}, + [2833] = {.lex_state = 26, .external_lex_state = 4}, [2834] = {.lex_state = 26, .external_lex_state = 4}, [2835] = {.lex_state = 26, .external_lex_state = 4}, - [2836] = {.lex_state = 26, .external_lex_state = 3}, - [2837] = {.lex_state = 26, .external_lex_state = 3}, + [2836] = {.lex_state = 26, .external_lex_state = 4}, + [2837] = {.lex_state = 26, .external_lex_state = 4}, [2838] = {.lex_state = 26, .external_lex_state = 4}, - [2839] = {.lex_state = 24, .external_lex_state = 3}, + [2839] = {.lex_state = 26, .external_lex_state = 4}, [2840] = {.lex_state = 26, .external_lex_state = 4}, - [2841] = {.lex_state = 26, .external_lex_state = 4}, + [2841] = {.lex_state = 24, .external_lex_state = 3}, [2842] = {.lex_state = 26, .external_lex_state = 4}, [2843] = {.lex_state = 26, .external_lex_state = 4}, [2844] = {.lex_state = 26, .external_lex_state = 4}, @@ -23109,14 +23115,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2846] = {.lex_state = 26, .external_lex_state = 4}, [2847] = {.lex_state = 26, .external_lex_state = 4}, [2848] = {.lex_state = 26, .external_lex_state = 4}, - [2849] = {.lex_state = 36, .external_lex_state = 2}, + [2849] = {.lex_state = 26, .external_lex_state = 4}, [2850] = {.lex_state = 26, .external_lex_state = 4}, [2851] = {.lex_state = 26, .external_lex_state = 4}, [2852] = {.lex_state = 26, .external_lex_state = 4}, - [2853] = {.lex_state = 26, .external_lex_state = 3}, - [2854] = {.lex_state = 26, .external_lex_state = 3}, - [2855] = {.lex_state = 36, .external_lex_state = 2}, - [2856] = {.lex_state = 26, .external_lex_state = 4}, + [2853] = {.lex_state = 26, .external_lex_state = 4}, + [2854] = {.lex_state = 35, .external_lex_state = 5}, + [2855] = {.lex_state = 26, .external_lex_state = 3}, + [2856] = {.lex_state = 26, .external_lex_state = 3}, [2857] = {.lex_state = 26, .external_lex_state = 4}, [2858] = {.lex_state = 26, .external_lex_state = 4}, [2859] = {.lex_state = 26, .external_lex_state = 4}, @@ -23128,22 +23134,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2865] = {.lex_state = 26, .external_lex_state = 4}, [2866] = {.lex_state = 26, .external_lex_state = 4}, [2867] = {.lex_state = 26, .external_lex_state = 4}, - [2868] = {.lex_state = 26, .external_lex_state = 3}, + [2868] = {.lex_state = 26, .external_lex_state = 4}, [2869] = {.lex_state = 26, .external_lex_state = 4}, [2870] = {.lex_state = 26, .external_lex_state = 4}, [2871] = {.lex_state = 26, .external_lex_state = 4}, - [2872] = {.lex_state = 26, .external_lex_state = 3}, + [2872] = {.lex_state = 26, .external_lex_state = 4}, [2873] = {.lex_state = 26, .external_lex_state = 4}, - [2874] = {.lex_state = 26, .external_lex_state = 4}, + [2874] = {.lex_state = 35, .external_lex_state = 5}, [2875] = {.lex_state = 26, .external_lex_state = 4}, - [2876] = {.lex_state = 26, .external_lex_state = 4}, + [2876] = {.lex_state = 36, .external_lex_state = 5}, [2877] = {.lex_state = 26, .external_lex_state = 4}, [2878] = {.lex_state = 26, .external_lex_state = 4}, - [2879] = {.lex_state = 26, .external_lex_state = 4}, - [2880] = {.lex_state = 26, .external_lex_state = 3}, - [2881] = {.lex_state = 26, .external_lex_state = 3}, + [2879] = {.lex_state = 26, .external_lex_state = 3}, + [2880] = {.lex_state = 26, .external_lex_state = 4}, + [2881] = {.lex_state = 26, .external_lex_state = 4}, [2882] = {.lex_state = 26, .external_lex_state = 4}, - [2883] = {.lex_state = 26, .external_lex_state = 4}, + [2883] = {.lex_state = 36, .external_lex_state = 2}, [2884] = {.lex_state = 26, .external_lex_state = 4}, [2885] = {.lex_state = 26, .external_lex_state = 4}, [2886] = {.lex_state = 26, .external_lex_state = 4}, @@ -23152,43 +23158,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2889] = {.lex_state = 26, .external_lex_state = 4}, [2890] = {.lex_state = 26, .external_lex_state = 4}, [2891] = {.lex_state = 26, .external_lex_state = 4}, - [2892] = {.lex_state = 36, .external_lex_state = 2}, + [2892] = {.lex_state = 26, .external_lex_state = 4}, [2893] = {.lex_state = 26, .external_lex_state = 4}, [2894] = {.lex_state = 26, .external_lex_state = 4}, [2895] = {.lex_state = 26, .external_lex_state = 4}, - [2896] = {.lex_state = 26, .external_lex_state = 3}, + [2896] = {.lex_state = 26, .external_lex_state = 4}, [2897] = {.lex_state = 26, .external_lex_state = 4}, - [2898] = {.lex_state = 26, .external_lex_state = 4}, + [2898] = {.lex_state = 26, .external_lex_state = 3}, [2899] = {.lex_state = 26, .external_lex_state = 4}, [2900] = {.lex_state = 26, .external_lex_state = 4}, - [2901] = {.lex_state = 35, .external_lex_state = 5}, - [2902] = {.lex_state = 26, .external_lex_state = 4}, + [2901] = {.lex_state = 26, .external_lex_state = 3}, + [2902] = {.lex_state = 36, .external_lex_state = 2}, [2903] = {.lex_state = 26, .external_lex_state = 4}, [2904] = {.lex_state = 26, .external_lex_state = 4}, [2905] = {.lex_state = 26, .external_lex_state = 4}, [2906] = {.lex_state = 26, .external_lex_state = 4}, - [2907] = {.lex_state = 26, .external_lex_state = 4}, + [2907] = {.lex_state = 36, .external_lex_state = 5}, [2908] = {.lex_state = 26, .external_lex_state = 4}, - [2909] = {.lex_state = 26, .external_lex_state = 4}, + [2909] = {.lex_state = 26, .external_lex_state = 3}, [2910] = {.lex_state = 26, .external_lex_state = 4}, [2911] = {.lex_state = 26, .external_lex_state = 3}, - [2912] = {.lex_state = 36, .external_lex_state = 2}, + [2912] = {.lex_state = 26, .external_lex_state = 4}, [2913] = {.lex_state = 26, .external_lex_state = 4}, [2914] = {.lex_state = 26, .external_lex_state = 4}, [2915] = {.lex_state = 26, .external_lex_state = 4}, - [2916] = {.lex_state = 26, .external_lex_state = 4}, + [2916] = {.lex_state = 26, .external_lex_state = 3}, [2917] = {.lex_state = 26, .external_lex_state = 4}, [2918] = {.lex_state = 26, .external_lex_state = 4}, [2919] = {.lex_state = 26, .external_lex_state = 4}, [2920] = {.lex_state = 26, .external_lex_state = 4}, - [2921] = {.lex_state = 26, .external_lex_state = 4}, - [2922] = {.lex_state = 26, .external_lex_state = 4}, - [2923] = {.lex_state = 35, .external_lex_state = 5}, - [2924] = {.lex_state = 36, .external_lex_state = 5}, + [2921] = {.lex_state = 26, .external_lex_state = 3}, + [2922] = {.lex_state = 26, .external_lex_state = 3}, + [2923] = {.lex_state = 26, .external_lex_state = 4}, + [2924] = {.lex_state = 26, .external_lex_state = 4}, [2925] = {.lex_state = 26, .external_lex_state = 4}, [2926] = {.lex_state = 26, .external_lex_state = 4}, - [2927] = {.lex_state = 36, .external_lex_state = 2}, - [2928] = {.lex_state = 26, .external_lex_state = 4}, + [2927] = {.lex_state = 26, .external_lex_state = 4}, + [2928] = {.lex_state = 26, .external_lex_state = 3}, [2929] = {.lex_state = 26, .external_lex_state = 4}, [2930] = {.lex_state = 26, .external_lex_state = 4}, [2931] = {.lex_state = 26, .external_lex_state = 4}, @@ -23196,7 +23202,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2933] = {.lex_state = 26, .external_lex_state = 4}, [2934] = {.lex_state = 26, .external_lex_state = 4}, [2935] = {.lex_state = 26, .external_lex_state = 4}, - [2936] = {.lex_state = 26, .external_lex_state = 4}, + [2936] = {.lex_state = 36, .external_lex_state = 2}, [2937] = {.lex_state = 26, .external_lex_state = 4}, [2938] = {.lex_state = 26, .external_lex_state = 4}, [2939] = {.lex_state = 26, .external_lex_state = 4}, @@ -23208,21 +23214,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2945] = {.lex_state = 26, .external_lex_state = 4}, [2946] = {.lex_state = 26, .external_lex_state = 4}, [2947] = {.lex_state = 26, .external_lex_state = 4}, - [2948] = {.lex_state = 36, .external_lex_state = 5}, - [2949] = {.lex_state = 26, .external_lex_state = 4}, - [2950] = {.lex_state = 26, .external_lex_state = 4}, - [2951] = {.lex_state = 26, .external_lex_state = 4}, - [2952] = {.lex_state = 26, .external_lex_state = 4}, + [2948] = {.lex_state = 26, .external_lex_state = 3}, + [2949] = {.lex_state = 36, .external_lex_state = 5}, + [2950] = {.lex_state = 36, .external_lex_state = 2}, + [2951] = {.lex_state = 36, .external_lex_state = 5}, + [2952] = {.lex_state = 26, .external_lex_state = 3}, [2953] = {.lex_state = 26, .external_lex_state = 4}, [2954] = {.lex_state = 26, .external_lex_state = 3}, - [2955] = {.lex_state = 26, .external_lex_state = 3}, + [2955] = {.lex_state = 26, .external_lex_state = 4}, [2956] = {.lex_state = 26, .external_lex_state = 4}, [2957] = {.lex_state = 26, .external_lex_state = 4}, - [2958] = {.lex_state = 26, .external_lex_state = 3}, - [2959] = {.lex_state = 26, .external_lex_state = 4}, - [2960] = {.lex_state = 26, .external_lex_state = 4}, - [2961] = {.lex_state = 26, .external_lex_state = 4}, - [2962] = {.lex_state = 26, .external_lex_state = 4}, + [2958] = {.lex_state = 26, .external_lex_state = 4}, + [2959] = {.lex_state = 26, .external_lex_state = 3}, + [2960] = {.lex_state = 26, .external_lex_state = 3}, + [2961] = {.lex_state = 26, .external_lex_state = 3}, + [2962] = {.lex_state = 35, .external_lex_state = 5}, [2963] = {.lex_state = 26, .external_lex_state = 4}, [2964] = {.lex_state = 26, .external_lex_state = 4}, [2965] = {.lex_state = 26, .external_lex_state = 4}, @@ -23231,8 +23237,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2968] = {.lex_state = 26, .external_lex_state = 4}, [2969] = {.lex_state = 26, .external_lex_state = 4}, [2970] = {.lex_state = 26, .external_lex_state = 4}, - [2971] = {.lex_state = 36, .external_lex_state = 5}, - [2972] = {.lex_state = 26, .external_lex_state = 3}, + [2971] = {.lex_state = 26, .external_lex_state = 4}, + [2972] = {.lex_state = 26, .external_lex_state = 4}, [2973] = {.lex_state = 26, .external_lex_state = 3}, [2974] = {.lex_state = 26, .external_lex_state = 4}, [2975] = {.lex_state = 26, .external_lex_state = 4}, @@ -23241,476 +23247,476 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2978] = {.lex_state = 26, .external_lex_state = 4}, [2979] = {.lex_state = 26, .external_lex_state = 4}, [2980] = {.lex_state = 26, .external_lex_state = 4}, - [2981] = {.lex_state = 26, .external_lex_state = 3}, + [2981] = {.lex_state = 26, .external_lex_state = 4}, [2982] = {.lex_state = 26, .external_lex_state = 4}, [2983] = {.lex_state = 26, .external_lex_state = 4}, - [2984] = {.lex_state = 26, .external_lex_state = 3}, + [2984] = {.lex_state = 26, .external_lex_state = 4}, [2985] = {.lex_state = 26, .external_lex_state = 4}, [2986] = {.lex_state = 26, .external_lex_state = 4}, - [2987] = {.lex_state = 26, .external_lex_state = 3}, - [2988] = {.lex_state = 35, .external_lex_state = 5}, - [2989] = {.lex_state = 35, .external_lex_state = 5}, - [2990] = {.lex_state = 35, .external_lex_state = 5}, - [2991] = {.lex_state = 36, .external_lex_state = 5}, + [2987] = {.lex_state = 26, .external_lex_state = 4}, + [2988] = {.lex_state = 26, .external_lex_state = 4}, + [2989] = {.lex_state = 26, .external_lex_state = 4}, + [2990] = {.lex_state = 26, .external_lex_state = 4}, + [2991] = {.lex_state = 26, .external_lex_state = 4}, [2992] = {.lex_state = 26, .external_lex_state = 4}, - [2993] = {.lex_state = 26, .external_lex_state = 3}, - [2994] = {.lex_state = 26, .external_lex_state = 4}, - [2995] = {.lex_state = 26, .external_lex_state = 4}, - [2996] = {.lex_state = 36, .external_lex_state = 5}, + [2993] = {.lex_state = 36, .external_lex_state = 2}, + [2994] = {.lex_state = 26, .external_lex_state = 3}, + [2995] = {.lex_state = 26, .external_lex_state = 3}, + [2996] = {.lex_state = 26, .external_lex_state = 3}, [2997] = {.lex_state = 26, .external_lex_state = 3}, - [2998] = {.lex_state = 26, .external_lex_state = 3}, - [2999] = {.lex_state = 26, .external_lex_state = 4}, + [2998] = {.lex_state = 26, .external_lex_state = 4}, + [2999] = {.lex_state = 26, .external_lex_state = 3}, [3000] = {.lex_state = 26, .external_lex_state = 4}, [3001] = {.lex_state = 26, .external_lex_state = 3}, - [3002] = {.lex_state = 26, .external_lex_state = 4}, + [3002] = {.lex_state = 26, .external_lex_state = 3}, [3003] = {.lex_state = 26, .external_lex_state = 3}, - [3004] = {.lex_state = 26, .external_lex_state = 4}, - [3005] = {.lex_state = 36, .external_lex_state = 5}, - [3006] = {.lex_state = 26, .external_lex_state = 4}, + [3004] = {.lex_state = 26, .external_lex_state = 3}, + [3005] = {.lex_state = 26, .external_lex_state = 3}, + [3006] = {.lex_state = 26, .external_lex_state = 3}, [3007] = {.lex_state = 26, .external_lex_state = 3}, - [3008] = {.lex_state = 26, .external_lex_state = 3}, + [3008] = {.lex_state = 26, .external_lex_state = 4}, [3009] = {.lex_state = 26, .external_lex_state = 3}, [3010] = {.lex_state = 26, .external_lex_state = 4}, [3011] = {.lex_state = 26, .external_lex_state = 4}, [3012] = {.lex_state = 26, .external_lex_state = 3}, - [3013] = {.lex_state = 36, .external_lex_state = 5}, + [3013] = {.lex_state = 26, .external_lex_state = 4}, [3014] = {.lex_state = 26, .external_lex_state = 3}, [3015] = {.lex_state = 26, .external_lex_state = 3}, [3016] = {.lex_state = 26, .external_lex_state = 3}, - [3017] = {.lex_state = 26, .external_lex_state = 3}, - [3018] = {.lex_state = 26, .external_lex_state = 3}, - [3019] = {.lex_state = 26, .external_lex_state = 3}, - [3020] = {.lex_state = 26, .external_lex_state = 3}, - [3021] = {.lex_state = 26, .external_lex_state = 3}, - [3022] = {.lex_state = 36, .external_lex_state = 5}, + [3017] = {.lex_state = 26, .external_lex_state = 4}, + [3018] = {.lex_state = 36, .external_lex_state = 5}, + [3019] = {.lex_state = 26, .external_lex_state = 4}, + [3020] = {.lex_state = 26, .external_lex_state = 4}, + [3021] = {.lex_state = 26, .external_lex_state = 4}, + [3022] = {.lex_state = 26, .external_lex_state = 3}, [3023] = {.lex_state = 26, .external_lex_state = 4}, - [3024] = {.lex_state = 26, .external_lex_state = 4}, - [3025] = {.lex_state = 26, .external_lex_state = 4}, - [3026] = {.lex_state = 36, .external_lex_state = 5}, - [3027] = {.lex_state = 26, .external_lex_state = 4}, - [3028] = {.lex_state = 26, .external_lex_state = 3}, - [3029] = {.lex_state = 26, .external_lex_state = 4}, - [3030] = {.lex_state = 26, .external_lex_state = 4}, - [3031] = {.lex_state = 36, .external_lex_state = 5}, - [3032] = {.lex_state = 26, .external_lex_state = 4}, - [3033] = {.lex_state = 36, .external_lex_state = 5}, - [3034] = {.lex_state = 26, .external_lex_state = 4}, + [3024] = {.lex_state = 26, .external_lex_state = 3}, + [3025] = {.lex_state = 36, .external_lex_state = 5}, + [3026] = {.lex_state = 26, .external_lex_state = 3}, + [3027] = {.lex_state = 26, .external_lex_state = 3}, + [3028] = {.lex_state = 36, .external_lex_state = 5}, + [3029] = {.lex_state = 26, .external_lex_state = 3}, + [3030] = {.lex_state = 36, .external_lex_state = 5}, + [3031] = {.lex_state = 26, .external_lex_state = 3}, + [3032] = {.lex_state = 26, .external_lex_state = 3}, + [3033] = {.lex_state = 26, .external_lex_state = 3}, + [3034] = {.lex_state = 26, .external_lex_state = 3}, [3035] = {.lex_state = 26, .external_lex_state = 3}, - [3036] = {.lex_state = 36, .external_lex_state = 5}, + [3036] = {.lex_state = 26, .external_lex_state = 3}, [3037] = {.lex_state = 26, .external_lex_state = 3}, - [3038] = {.lex_state = 26, .external_lex_state = 4}, + [3038] = {.lex_state = 26, .external_lex_state = 3}, [3039] = {.lex_state = 36, .external_lex_state = 5}, - [3040] = {.lex_state = 26, .external_lex_state = 4}, + [3040] = {.lex_state = 26, .external_lex_state = 3}, [3041] = {.lex_state = 36, .external_lex_state = 5}, [3042] = {.lex_state = 26, .external_lex_state = 3}, - [3043] = {.lex_state = 26, .external_lex_state = 4}, + [3043] = {.lex_state = 26, .external_lex_state = 3}, [3044] = {.lex_state = 26, .external_lex_state = 3}, [3045] = {.lex_state = 26, .external_lex_state = 3}, - [3046] = {.lex_state = 26, .external_lex_state = 4}, - [3047] = {.lex_state = 26, .external_lex_state = 4}, - [3048] = {.lex_state = 26, .external_lex_state = 4}, - [3049] = {.lex_state = 26, .external_lex_state = 4}, + [3046] = {.lex_state = 26, .external_lex_state = 3}, + [3047] = {.lex_state = 26, .external_lex_state = 3}, + [3048] = {.lex_state = 26, .external_lex_state = 3}, + [3049] = {.lex_state = 26, .external_lex_state = 3}, [3050] = {.lex_state = 26, .external_lex_state = 3}, - [3051] = {.lex_state = 26, .external_lex_state = 4}, - [3052] = {.lex_state = 26, .external_lex_state = 3}, - [3053] = {.lex_state = 26, .external_lex_state = 4}, + [3051] = {.lex_state = 26, .external_lex_state = 3}, + [3052] = {.lex_state = 26, .external_lex_state = 4}, + [3053] = {.lex_state = 26, .external_lex_state = 3}, [3054] = {.lex_state = 26, .external_lex_state = 3}, - [3055] = {.lex_state = 26, .external_lex_state = 4}, - [3056] = {.lex_state = 26, .external_lex_state = 4}, - [3057] = {.lex_state = 26, .external_lex_state = 4}, + [3055] = {.lex_state = 36, .external_lex_state = 5}, + [3056] = {.lex_state = 26, .external_lex_state = 3}, + [3057] = {.lex_state = 26, .external_lex_state = 3}, [3058] = {.lex_state = 26, .external_lex_state = 3}, - [3059] = {.lex_state = 36, .external_lex_state = 5}, - [3060] = {.lex_state = 26, .external_lex_state = 4}, - [3061] = {.lex_state = 36, .external_lex_state = 5}, + [3059] = {.lex_state = 26, .external_lex_state = 3}, + [3060] = {.lex_state = 36, .external_lex_state = 5}, + [3061] = {.lex_state = 26, .external_lex_state = 3}, [3062] = {.lex_state = 36, .external_lex_state = 5}, [3063] = {.lex_state = 26, .external_lex_state = 4}, - [3064] = {.lex_state = 36, .external_lex_state = 2}, - [3065] = {.lex_state = 36, .external_lex_state = 5}, - [3066] = {.lex_state = 26, .external_lex_state = 4}, - [3067] = {.lex_state = 36, .external_lex_state = 2}, - [3068] = {.lex_state = 26, .external_lex_state = 4}, - [3069] = {.lex_state = 36, .external_lex_state = 5}, + [3064] = {.lex_state = 26, .external_lex_state = 3}, + [3065] = {.lex_state = 26, .external_lex_state = 3}, + [3066] = {.lex_state = 26, .external_lex_state = 3}, + [3067] = {.lex_state = 26, .external_lex_state = 4}, + [3068] = {.lex_state = 36, .external_lex_state = 5}, + [3069] = {.lex_state = 26, .external_lex_state = 3}, [3070] = {.lex_state = 26, .external_lex_state = 3}, [3071] = {.lex_state = 26, .external_lex_state = 4}, - [3072] = {.lex_state = 26, .external_lex_state = 4}, - [3073] = {.lex_state = 36, .external_lex_state = 5}, - [3074] = {.lex_state = 36, .external_lex_state = 5}, - [3075] = {.lex_state = 26, .external_lex_state = 4}, - [3076] = {.lex_state = 26, .external_lex_state = 4}, - [3077] = {.lex_state = 26, .external_lex_state = 3}, - [3078] = {.lex_state = 26, .external_lex_state = 4}, - [3079] = {.lex_state = 26, .external_lex_state = 4}, - [3080] = {.lex_state = 36, .external_lex_state = 5}, - [3081] = {.lex_state = 36, .external_lex_state = 5}, + [3072] = {.lex_state = 26, .external_lex_state = 3}, + [3073] = {.lex_state = 26, .external_lex_state = 3}, + [3074] = {.lex_state = 26, .external_lex_state = 3}, + [3075] = {.lex_state = 26, .external_lex_state = 3}, + [3076] = {.lex_state = 26, .external_lex_state = 3}, + [3077] = {.lex_state = 36, .external_lex_state = 5}, + [3078] = {.lex_state = 26, .external_lex_state = 3}, + [3079] = {.lex_state = 26, .external_lex_state = 3}, + [3080] = {.lex_state = 36, .external_lex_state = 2}, + [3081] = {.lex_state = 26, .external_lex_state = 3}, [3082] = {.lex_state = 26, .external_lex_state = 3}, - [3083] = {.lex_state = 36, .external_lex_state = 5}, - [3084] = {.lex_state = 26, .external_lex_state = 4}, + [3083] = {.lex_state = 26, .external_lex_state = 3}, + [3084] = {.lex_state = 26, .external_lex_state = 3}, [3085] = {.lex_state = 26, .external_lex_state = 4}, - [3086] = {.lex_state = 24, .external_lex_state = 4}, - [3087] = {.lex_state = 26, .external_lex_state = 4}, - [3088] = {.lex_state = 26, .external_lex_state = 4}, + [3086] = {.lex_state = 26, .external_lex_state = 4}, + [3087] = {.lex_state = 26, .external_lex_state = 3}, + [3088] = {.lex_state = 26, .external_lex_state = 3}, [3089] = {.lex_state = 26, .external_lex_state = 4}, - [3090] = {.lex_state = 26, .external_lex_state = 4}, - [3091] = {.lex_state = 26, .external_lex_state = 4}, - [3092] = {.lex_state = 26, .external_lex_state = 3}, + [3090] = {.lex_state = 36, .external_lex_state = 5}, + [3091] = {.lex_state = 36, .external_lex_state = 5}, + [3092] = {.lex_state = 26, .external_lex_state = 4}, [3093] = {.lex_state = 36, .external_lex_state = 5}, - [3094] = {.lex_state = 36, .external_lex_state = 5}, - [3095] = {.lex_state = 26, .external_lex_state = 3}, - [3096] = {.lex_state = 26, .external_lex_state = 3}, - [3097] = {.lex_state = 26, .external_lex_state = 4}, - [3098] = {.lex_state = 26, .external_lex_state = 4}, - [3099] = {.lex_state = 26, .external_lex_state = 3}, + [3094] = {.lex_state = 26, .external_lex_state = 4}, + [3095] = {.lex_state = 36, .external_lex_state = 2}, + [3096] = {.lex_state = 36, .external_lex_state = 2}, + [3097] = {.lex_state = 26, .external_lex_state = 3}, + [3098] = {.lex_state = 26, .external_lex_state = 3}, + [3099] = {.lex_state = 27, .external_lex_state = 4}, [3100] = {.lex_state = 26, .external_lex_state = 3}, - [3101] = {.lex_state = 26, .external_lex_state = 3}, - [3102] = {.lex_state = 26, .external_lex_state = 3}, + [3101] = {.lex_state = 26, .external_lex_state = 4}, + [3102] = {.lex_state = 36, .external_lex_state = 5}, [3103] = {.lex_state = 26, .external_lex_state = 4}, - [3104] = {.lex_state = 26, .external_lex_state = 4}, + [3104] = {.lex_state = 36, .external_lex_state = 5}, [3105] = {.lex_state = 26, .external_lex_state = 4}, - [3106] = {.lex_state = 26, .external_lex_state = 3}, - [3107] = {.lex_state = 26, .external_lex_state = 3}, + [3106] = {.lex_state = 36, .external_lex_state = 5}, + [3107] = {.lex_state = 26, .external_lex_state = 4}, [3108] = {.lex_state = 26, .external_lex_state = 4}, - [3109] = {.lex_state = 36, .external_lex_state = 5}, - [3110] = {.lex_state = 26, .external_lex_state = 4}, - [3111] = {.lex_state = 26, .external_lex_state = 3}, + [3109] = {.lex_state = 26, .external_lex_state = 4}, + [3110] = {.lex_state = 26, .external_lex_state = 3}, + [3111] = {.lex_state = 26, .external_lex_state = 4}, [3112] = {.lex_state = 26, .external_lex_state = 4}, - [3113] = {.lex_state = 36, .external_lex_state = 5}, + [3113] = {.lex_state = 26, .external_lex_state = 3}, [3114] = {.lex_state = 26, .external_lex_state = 4}, [3115] = {.lex_state = 26, .external_lex_state = 4}, - [3116] = {.lex_state = 26, .external_lex_state = 3}, + [3116] = {.lex_state = 36, .external_lex_state = 5}, [3117] = {.lex_state = 26, .external_lex_state = 3}, - [3118] = {.lex_state = 36, .external_lex_state = 2}, - [3119] = {.lex_state = 26, .external_lex_state = 4}, - [3120] = {.lex_state = 36, .external_lex_state = 5}, - [3121] = {.lex_state = 36, .external_lex_state = 2}, + [3118] = {.lex_state = 26, .external_lex_state = 3}, + [3119] = {.lex_state = 26, .external_lex_state = 3}, + [3120] = {.lex_state = 26, .external_lex_state = 3}, + [3121] = {.lex_state = 26, .external_lex_state = 4}, [3122] = {.lex_state = 26, .external_lex_state = 3}, - [3123] = {.lex_state = 26, .external_lex_state = 3}, - [3124] = {.lex_state = 36, .external_lex_state = 5}, - [3125] = {.lex_state = 26, .external_lex_state = 3}, - [3126] = {.lex_state = 26, .external_lex_state = 3}, - [3127] = {.lex_state = 26, .external_lex_state = 3}, - [3128] = {.lex_state = 26, .external_lex_state = 3}, + [3123] = {.lex_state = 26, .external_lex_state = 4}, + [3124] = {.lex_state = 26, .external_lex_state = 4}, + [3125] = {.lex_state = 26, .external_lex_state = 4}, + [3126] = {.lex_state = 36, .external_lex_state = 2}, + [3127] = {.lex_state = 26, .external_lex_state = 4}, + [3128] = {.lex_state = 26, .external_lex_state = 4}, [3129] = {.lex_state = 26, .external_lex_state = 3}, - [3130] = {.lex_state = 26, .external_lex_state = 3}, - [3131] = {.lex_state = 26, .external_lex_state = 4}, - [3132] = {.lex_state = 26, .external_lex_state = 3}, - [3133] = {.lex_state = 36, .external_lex_state = 5}, + [3130] = {.lex_state = 36, .external_lex_state = 5}, + [3131] = {.lex_state = 36, .external_lex_state = 5}, + [3132] = {.lex_state = 26, .external_lex_state = 4}, + [3133] = {.lex_state = 26, .external_lex_state = 3}, [3134] = {.lex_state = 26, .external_lex_state = 3}, - [3135] = {.lex_state = 36, .external_lex_state = 5}, - [3136] = {.lex_state = 26, .external_lex_state = 3}, - [3137] = {.lex_state = 26, .external_lex_state = 4}, - [3138] = {.lex_state = 26, .external_lex_state = 4}, + [3135] = {.lex_state = 26, .external_lex_state = 3}, + [3136] = {.lex_state = 36, .external_lex_state = 5}, + [3137] = {.lex_state = 26, .external_lex_state = 3}, + [3138] = {.lex_state = 26, .external_lex_state = 3}, [3139] = {.lex_state = 26, .external_lex_state = 3}, - [3140] = {.lex_state = 36, .external_lex_state = 2}, - [3141] = {.lex_state = 26, .external_lex_state = 3}, - [3142] = {.lex_state = 26, .external_lex_state = 3}, + [3140] = {.lex_state = 26, .external_lex_state = 4}, + [3141] = {.lex_state = 36, .external_lex_state = 5}, + [3142] = {.lex_state = 36, .external_lex_state = 2}, [3143] = {.lex_state = 26, .external_lex_state = 3}, [3144] = {.lex_state = 26, .external_lex_state = 3}, - [3145] = {.lex_state = 26, .external_lex_state = 3}, + [3145] = {.lex_state = 26, .external_lex_state = 4}, [3146] = {.lex_state = 36, .external_lex_state = 2}, - [3147] = {.lex_state = 26, .external_lex_state = 3}, - [3148] = {.lex_state = 36, .external_lex_state = 5}, + [3147] = {.lex_state = 36, .external_lex_state = 5}, + [3148] = {.lex_state = 26, .external_lex_state = 3}, [3149] = {.lex_state = 36, .external_lex_state = 5}, - [3150] = {.lex_state = 26, .external_lex_state = 3}, - [3151] = {.lex_state = 26, .external_lex_state = 4}, - [3152] = {.lex_state = 26, .external_lex_state = 3}, - [3153] = {.lex_state = 26, .external_lex_state = 4}, - [3154] = {.lex_state = 26, .external_lex_state = 3}, - [3155] = {.lex_state = 26, .external_lex_state = 3}, - [3156] = {.lex_state = 36, .external_lex_state = 2}, - [3157] = {.lex_state = 26, .external_lex_state = 3}, - [3158] = {.lex_state = 26, .external_lex_state = 3}, + [3150] = {.lex_state = 36, .external_lex_state = 5}, + [3151] = {.lex_state = 26, .external_lex_state = 3}, + [3152] = {.lex_state = 26, .external_lex_state = 4}, + [3153] = {.lex_state = 26, .external_lex_state = 3}, + [3154] = {.lex_state = 26, .external_lex_state = 4}, + [3155] = {.lex_state = 36, .external_lex_state = 5}, + [3156] = {.lex_state = 26, .external_lex_state = 4}, + [3157] = {.lex_state = 24, .external_lex_state = 4}, + [3158] = {.lex_state = 26, .external_lex_state = 4}, [3159] = {.lex_state = 36, .external_lex_state = 5}, - [3160] = {.lex_state = 26, .external_lex_state = 3}, - [3161] = {.lex_state = 36, .external_lex_state = 5}, - [3162] = {.lex_state = 26, .external_lex_state = 3}, - [3163] = {.lex_state = 26, .external_lex_state = 3}, + [3160] = {.lex_state = 36, .external_lex_state = 5}, + [3161] = {.lex_state = 36, .external_lex_state = 2}, + [3162] = {.lex_state = 36, .external_lex_state = 2}, + [3163] = {.lex_state = 26, .external_lex_state = 4}, [3164] = {.lex_state = 26, .external_lex_state = 4}, - [3165] = {.lex_state = 36, .external_lex_state = 5}, - [3166] = {.lex_state = 26, .external_lex_state = 3}, - [3167] = {.lex_state = 26, .external_lex_state = 3}, - [3168] = {.lex_state = 26, .external_lex_state = 4}, - [3169] = {.lex_state = 26, .external_lex_state = 3}, - [3170] = {.lex_state = 26, .external_lex_state = 3}, - [3171] = {.lex_state = 26, .external_lex_state = 3}, + [3165] = {.lex_state = 36, .external_lex_state = 2}, + [3166] = {.lex_state = 26, .external_lex_state = 4}, + [3167] = {.lex_state = 36, .external_lex_state = 5}, + [3168] = {.lex_state = 36, .external_lex_state = 5}, + [3169] = {.lex_state = 26, .external_lex_state = 4}, + [3170] = {.lex_state = 26, .external_lex_state = 4}, + [3171] = {.lex_state = 26, .external_lex_state = 4}, [3172] = {.lex_state = 26, .external_lex_state = 3}, - [3173] = {.lex_state = 26, .external_lex_state = 3}, - [3174] = {.lex_state = 26, .external_lex_state = 4}, + [3173] = {.lex_state = 26, .external_lex_state = 4}, + [3174] = {.lex_state = 36, .external_lex_state = 2}, [3175] = {.lex_state = 26, .external_lex_state = 3}, [3176] = {.lex_state = 26, .external_lex_state = 4}, [3177] = {.lex_state = 26, .external_lex_state = 3}, - [3178] = {.lex_state = 36, .external_lex_state = 2}, + [3178] = {.lex_state = 26, .external_lex_state = 3}, [3179] = {.lex_state = 26, .external_lex_state = 4}, [3180] = {.lex_state = 26, .external_lex_state = 4}, - [3181] = {.lex_state = 26, .external_lex_state = 3}, - [3182] = {.lex_state = 26, .external_lex_state = 4}, - [3183] = {.lex_state = 26, .external_lex_state = 4}, + [3181] = {.lex_state = 36, .external_lex_state = 5}, + [3182] = {.lex_state = 26, .external_lex_state = 3}, + [3183] = {.lex_state = 26, .external_lex_state = 3}, [3184] = {.lex_state = 26, .external_lex_state = 3}, - [3185] = {.lex_state = 36, .external_lex_state = 2}, - [3186] = {.lex_state = 26, .external_lex_state = 3}, - [3187] = {.lex_state = 26, .external_lex_state = 4}, + [3185] = {.lex_state = 26, .external_lex_state = 4}, + [3186] = {.lex_state = 26, .external_lex_state = 4}, + [3187] = {.lex_state = 36, .external_lex_state = 5}, [3188] = {.lex_state = 36, .external_lex_state = 5}, [3189] = {.lex_state = 36, .external_lex_state = 5}, [3190] = {.lex_state = 26, .external_lex_state = 4}, - [3191] = {.lex_state = 26, .external_lex_state = 4}, - [3192] = {.lex_state = 26, .external_lex_state = 3}, - [3193] = {.lex_state = 26, .external_lex_state = 4}, + [3191] = {.lex_state = 36, .external_lex_state = 5}, + [3192] = {.lex_state = 26, .external_lex_state = 4}, + [3193] = {.lex_state = 26, .external_lex_state = 3}, [3194] = {.lex_state = 26, .external_lex_state = 3}, - [3195] = {.lex_state = 36, .external_lex_state = 5}, - [3196] = {.lex_state = 26, .external_lex_state = 3}, - [3197] = {.lex_state = 26, .external_lex_state = 3}, - [3198] = {.lex_state = 26, .external_lex_state = 3}, + [3195] = {.lex_state = 26, .external_lex_state = 3}, + [3196] = {.lex_state = 36, .external_lex_state = 5}, + [3197] = {.lex_state = 36, .external_lex_state = 5}, + [3198] = {.lex_state = 26, .external_lex_state = 4}, [3199] = {.lex_state = 26, .external_lex_state = 4}, - [3200] = {.lex_state = 26, .external_lex_state = 4}, + [3200] = {.lex_state = 26, .external_lex_state = 3}, [3201] = {.lex_state = 26, .external_lex_state = 3}, - [3202] = {.lex_state = 26, .external_lex_state = 3}, + [3202] = {.lex_state = 26, .external_lex_state = 4}, [3203] = {.lex_state = 26, .external_lex_state = 3}, [3204] = {.lex_state = 26, .external_lex_state = 3}, - [3205] = {.lex_state = 26, .external_lex_state = 3}, - [3206] = {.lex_state = 26, .external_lex_state = 3}, - [3207] = {.lex_state = 26, .external_lex_state = 4}, + [3205] = {.lex_state = 26, .external_lex_state = 4}, + [3206] = {.lex_state = 36, .external_lex_state = 2}, + [3207] = {.lex_state = 36, .external_lex_state = 5}, [3208] = {.lex_state = 36, .external_lex_state = 5}, - [3209] = {.lex_state = 26, .external_lex_state = 4}, - [3210] = {.lex_state = 26, .external_lex_state = 3}, - [3211] = {.lex_state = 26, .external_lex_state = 3}, - [3212] = {.lex_state = 26, .external_lex_state = 3}, - [3213] = {.lex_state = 27, .external_lex_state = 4}, - [3214] = {.lex_state = 26, .external_lex_state = 3}, - [3215] = {.lex_state = 26, .external_lex_state = 3}, - [3216] = {.lex_state = 26, .external_lex_state = 3}, + [3209] = {.lex_state = 36, .external_lex_state = 2}, + [3210] = {.lex_state = 26, .external_lex_state = 4}, + [3211] = {.lex_state = 26, .external_lex_state = 4}, + [3212] = {.lex_state = 36, .external_lex_state = 5}, + [3213] = {.lex_state = 36, .external_lex_state = 5}, + [3214] = {.lex_state = 36, .external_lex_state = 5}, + [3215] = {.lex_state = 26, .external_lex_state = 4}, + [3216] = {.lex_state = 26, .external_lex_state = 4}, [3217] = {.lex_state = 26, .external_lex_state = 3}, - [3218] = {.lex_state = 26, .external_lex_state = 3}, - [3219] = {.lex_state = 36, .external_lex_state = 5}, + [3218] = {.lex_state = 26, .external_lex_state = 4}, + [3219] = {.lex_state = 26, .external_lex_state = 4}, [3220] = {.lex_state = 26, .external_lex_state = 3}, - [3221] = {.lex_state = 26, .external_lex_state = 3}, - [3222] = {.lex_state = 36, .external_lex_state = 2}, - [3223] = {.lex_state = 36, .external_lex_state = 5}, - [3224] = {.lex_state = 36, .external_lex_state = 2}, + [3221] = {.lex_state = 26, .external_lex_state = 4}, + [3222] = {.lex_state = 26, .external_lex_state = 4}, + [3223] = {.lex_state = 26, .external_lex_state = 3}, + [3224] = {.lex_state = 26, .external_lex_state = 3}, [3225] = {.lex_state = 26, .external_lex_state = 3}, [3226] = {.lex_state = 26, .external_lex_state = 3}, - [3227] = {.lex_state = 36, .external_lex_state = 5}, - [3228] = {.lex_state = 36, .external_lex_state = 2}, - [3229] = {.lex_state = 26, .external_lex_state = 4}, - [3230] = {.lex_state = 26, .external_lex_state = 3}, + [3227] = {.lex_state = 26, .external_lex_state = 3}, + [3228] = {.lex_state = 26, .external_lex_state = 3}, + [3229] = {.lex_state = 26, .external_lex_state = 3}, + [3230] = {.lex_state = 36, .external_lex_state = 5}, [3231] = {.lex_state = 26, .external_lex_state = 3}, [3232] = {.lex_state = 26, .external_lex_state = 3}, [3233] = {.lex_state = 26, .external_lex_state = 3}, - [3234] = {.lex_state = 26, .external_lex_state = 3}, - [3235] = {.lex_state = 26, .external_lex_state = 3}, - [3236] = {.lex_state = 26, .external_lex_state = 3}, - [3237] = {.lex_state = 36, .external_lex_state = 5}, - [3238] = {.lex_state = 36, .external_lex_state = 2}, - [3239] = {.lex_state = 36, .external_lex_state = 2}, - [3240] = {.lex_state = 26, .external_lex_state = 3}, - [3241] = {.lex_state = 26, .external_lex_state = 3}, - [3242] = {.lex_state = 26, .external_lex_state = 3}, - [3243] = {.lex_state = 26, .external_lex_state = 3}, + [3234] = {.lex_state = 26, .external_lex_state = 4}, + [3235] = {.lex_state = 26, .external_lex_state = 4}, + [3236] = {.lex_state = 26, .external_lex_state = 4}, + [3237] = {.lex_state = 26, .external_lex_state = 4}, + [3238] = {.lex_state = 26, .external_lex_state = 4}, + [3239] = {.lex_state = 26, .external_lex_state = 4}, + [3240] = {.lex_state = 26, .external_lex_state = 4}, + [3241] = {.lex_state = 36, .external_lex_state = 5}, + [3242] = {.lex_state = 36, .external_lex_state = 2}, + [3243] = {.lex_state = 26, .external_lex_state = 4}, [3244] = {.lex_state = 26, .external_lex_state = 3}, [3245] = {.lex_state = 26, .external_lex_state = 3}, [3246] = {.lex_state = 26, .external_lex_state = 3}, - [3247] = {.lex_state = 26, .external_lex_state = 3}, - [3248] = {.lex_state = 26, .external_lex_state = 3}, - [3249] = {.lex_state = 26, .external_lex_state = 3}, - [3250] = {.lex_state = 26, .external_lex_state = 3}, + [3247] = {.lex_state = 26, .external_lex_state = 4}, + [3248] = {.lex_state = 26, .external_lex_state = 4}, + [3249] = {.lex_state = 26, .external_lex_state = 4}, + [3250] = {.lex_state = 26, .external_lex_state = 4}, [3251] = {.lex_state = 26, .external_lex_state = 3}, - [3252] = {.lex_state = 26, .external_lex_state = 4}, - [3253] = {.lex_state = 36, .external_lex_state = 5}, - [3254] = {.lex_state = 36, .external_lex_state = 5}, + [3252] = {.lex_state = 26, .external_lex_state = 3}, + [3253] = {.lex_state = 26, .external_lex_state = 3}, + [3254] = {.lex_state = 26, .external_lex_state = 3}, [3255] = {.lex_state = 26, .external_lex_state = 3}, - [3256] = {.lex_state = 36, .external_lex_state = 5}, + [3256] = {.lex_state = 26, .external_lex_state = 3}, [3257] = {.lex_state = 26, .external_lex_state = 3}, [3258] = {.lex_state = 26, .external_lex_state = 3}, [3259] = {.lex_state = 26, .external_lex_state = 3}, - [3260] = {.lex_state = 26, .external_lex_state = 3}, - [3261] = {.lex_state = 26, .external_lex_state = 3}, - [3262] = {.lex_state = 26, .external_lex_state = 3}, + [3260] = {.lex_state = 26, .external_lex_state = 4}, + [3261] = {.lex_state = 26, .external_lex_state = 4}, + [3262] = {.lex_state = 26, .external_lex_state = 4}, [3263] = {.lex_state = 26, .external_lex_state = 4}, [3264] = {.lex_state = 26, .external_lex_state = 3}, [3265] = {.lex_state = 26, .external_lex_state = 4}, - [3266] = {.lex_state = 26, .external_lex_state = 4}, - [3267] = {.lex_state = 26, .external_lex_state = 4}, + [3266] = {.lex_state = 36, .external_lex_state = 5}, + [3267] = {.lex_state = 36, .external_lex_state = 2}, [3268] = {.lex_state = 26, .external_lex_state = 4}, [3269] = {.lex_state = 36, .external_lex_state = 5}, - [3270] = {.lex_state = 36, .external_lex_state = 5}, - [3271] = {.lex_state = 26, .external_lex_state = 3}, - [3272] = {.lex_state = 36, .external_lex_state = 2}, + [3270] = {.lex_state = 26, .external_lex_state = 3}, + [3271] = {.lex_state = 36, .external_lex_state = 2}, + [3272] = {.lex_state = 26, .external_lex_state = 3}, [3273] = {.lex_state = 26, .external_lex_state = 4}, - [3274] = {.lex_state = 36, .external_lex_state = 2}, + [3274] = {.lex_state = 26, .external_lex_state = 3}, [3275] = {.lex_state = 26, .external_lex_state = 3}, [3276] = {.lex_state = 26, .external_lex_state = 3}, [3277] = {.lex_state = 26, .external_lex_state = 3}, - [3278] = {.lex_state = 26, .external_lex_state = 4}, - [3279] = {.lex_state = 26, .external_lex_state = 4}, + [3278] = {.lex_state = 26, .external_lex_state = 3}, + [3279] = {.lex_state = 26, .external_lex_state = 3}, [3280] = {.lex_state = 26, .external_lex_state = 4}, - [3281] = {.lex_state = 36, .external_lex_state = 5}, - [3282] = {.lex_state = 26, .external_lex_state = 3}, - [3283] = {.lex_state = 36, .external_lex_state = 5}, - [3284] = {.lex_state = 36, .external_lex_state = 5}, - [3285] = {.lex_state = 26, .external_lex_state = 3}, - [3286] = {.lex_state = 26, .external_lex_state = 3}, - [3287] = {.lex_state = 36, .external_lex_state = 5}, + [3281] = {.lex_state = 26, .external_lex_state = 4}, + [3282] = {.lex_state = 26, .external_lex_state = 4}, + [3283] = {.lex_state = 26, .external_lex_state = 3}, + [3284] = {.lex_state = 26, .external_lex_state = 3}, + [3285] = {.lex_state = 36, .external_lex_state = 2}, + [3286] = {.lex_state = 36, .external_lex_state = 5}, + [3287] = {.lex_state = 36, .external_lex_state = 2}, [3288] = {.lex_state = 36, .external_lex_state = 5}, - [3289] = {.lex_state = 36, .external_lex_state = 2}, - [3290] = {.lex_state = 36, .external_lex_state = 5}, - [3291] = {.lex_state = 36, .external_lex_state = 5}, - [3292] = {.lex_state = 36, .external_lex_state = 5}, - [3293] = {.lex_state = 36, .external_lex_state = 5}, - [3294] = {.lex_state = 36, .external_lex_state = 5}, + [3289] = {.lex_state = 36, .external_lex_state = 5}, + [3290] = {.lex_state = 26, .external_lex_state = 3}, + [3291] = {.lex_state = 26, .external_lex_state = 4}, + [3292] = {.lex_state = 26, .external_lex_state = 3}, + [3293] = {.lex_state = 26, .external_lex_state = 3}, + [3294] = {.lex_state = 36, .external_lex_state = 2}, [3295] = {.lex_state = 26, .external_lex_state = 3}, [3296] = {.lex_state = 26, .external_lex_state = 3}, - [3297] = {.lex_state = 26, .external_lex_state = 3}, - [3298] = {.lex_state = 36, .external_lex_state = 5}, - [3299] = {.lex_state = 26, .external_lex_state = 4}, - [3300] = {.lex_state = 26, .external_lex_state = 3}, - [3301] = {.lex_state = 36, .external_lex_state = 5}, - [3302] = {.lex_state = 36, .external_lex_state = 5}, + [3297] = {.lex_state = 36, .external_lex_state = 5}, + [3298] = {.lex_state = 26, .external_lex_state = 4}, + [3299] = {.lex_state = 26, .external_lex_state = 3}, + [3300] = {.lex_state = 36, .external_lex_state = 2}, + [3301] = {.lex_state = 36, .external_lex_state = 2}, + [3302] = {.lex_state = 26, .external_lex_state = 3}, [3303] = {.lex_state = 26, .external_lex_state = 3}, [3304] = {.lex_state = 36, .external_lex_state = 5}, [3305] = {.lex_state = 26, .external_lex_state = 3}, [3306] = {.lex_state = 26, .external_lex_state = 3}, - [3307] = {.lex_state = 36, .external_lex_state = 2}, - [3308] = {.lex_state = 26, .external_lex_state = 3}, - [3309] = {.lex_state = 36, .external_lex_state = 5}, + [3307] = {.lex_state = 26, .external_lex_state = 3}, + [3308] = {.lex_state = 29, .external_lex_state = 3}, + [3309] = {.lex_state = 26, .external_lex_state = 3}, [3310] = {.lex_state = 26, .external_lex_state = 3}, [3311] = {.lex_state = 26, .external_lex_state = 3}, - [3312] = {.lex_state = 36, .external_lex_state = 5}, + [3312] = {.lex_state = 26, .external_lex_state = 3}, [3313] = {.lex_state = 26, .external_lex_state = 3}, - [3314] = {.lex_state = 36, .external_lex_state = 5}, + [3314] = {.lex_state = 26, .external_lex_state = 3}, [3315] = {.lex_state = 26, .external_lex_state = 3}, [3316] = {.lex_state = 26, .external_lex_state = 3}, - [3317] = {.lex_state = 26, .external_lex_state = 3}, - [3318] = {.lex_state = 26, .external_lex_state = 3}, - [3319] = {.lex_state = 36, .external_lex_state = 5}, - [3320] = {.lex_state = 36, .external_lex_state = 5}, - [3321] = {.lex_state = 26, .external_lex_state = 3}, - [3322] = {.lex_state = 36, .external_lex_state = 5}, + [3317] = {.lex_state = 36, .external_lex_state = 5}, + [3318] = {.lex_state = 36, .external_lex_state = 5}, + [3319] = {.lex_state = 26, .external_lex_state = 3}, + [3320] = {.lex_state = 26, .external_lex_state = 3}, + [3321] = {.lex_state = 26, .external_lex_state = 4}, + [3322] = {.lex_state = 26, .external_lex_state = 3}, [3323] = {.lex_state = 26, .external_lex_state = 3}, [3324] = {.lex_state = 26, .external_lex_state = 3}, [3325] = {.lex_state = 26, .external_lex_state = 3}, - [3326] = {.lex_state = 36, .external_lex_state = 5}, - [3327] = {.lex_state = 29, .external_lex_state = 3}, - [3328] = {.lex_state = 26, .external_lex_state = 3}, - [3329] = {.lex_state = 26, .external_lex_state = 3}, - [3330] = {.lex_state = 36, .external_lex_state = 2}, - [3331] = {.lex_state = 26, .external_lex_state = 3}, - [3332] = {.lex_state = 36, .external_lex_state = 2}, + [3326] = {.lex_state = 26, .external_lex_state = 3}, + [3327] = {.lex_state = 26, .external_lex_state = 3}, + [3328] = {.lex_state = 36, .external_lex_state = 2}, + [3329] = {.lex_state = 36, .external_lex_state = 5}, + [3330] = {.lex_state = 36, .external_lex_state = 5}, + [3331] = {.lex_state = 36, .external_lex_state = 5}, + [3332] = {.lex_state = 26, .external_lex_state = 3}, [3333] = {.lex_state = 26, .external_lex_state = 3}, - [3334] = {.lex_state = 26, .external_lex_state = 4}, + [3334] = {.lex_state = 36, .external_lex_state = 5}, [3335] = {.lex_state = 26, .external_lex_state = 3}, - [3336] = {.lex_state = 26, .external_lex_state = 4}, - [3337] = {.lex_state = 26, .external_lex_state = 3}, - [3338] = {.lex_state = 26, .external_lex_state = 3}, + [3336] = {.lex_state = 36, .external_lex_state = 2}, + [3337] = {.lex_state = 36, .external_lex_state = 5}, + [3338] = {.lex_state = 36, .external_lex_state = 5}, [3339] = {.lex_state = 26, .external_lex_state = 3}, - [3340] = {.lex_state = 26, .external_lex_state = 4}, + [3340] = {.lex_state = 36, .external_lex_state = 2}, [3341] = {.lex_state = 26, .external_lex_state = 3}, - [3342] = {.lex_state = 36, .external_lex_state = 2}, + [3342] = {.lex_state = 36, .external_lex_state = 5}, [3343] = {.lex_state = 26, .external_lex_state = 3}, - [3344] = {.lex_state = 36, .external_lex_state = 2}, + [3344] = {.lex_state = 26, .external_lex_state = 3}, [3345] = {.lex_state = 26, .external_lex_state = 3}, [3346] = {.lex_state = 26, .external_lex_state = 3}, - [3347] = {.lex_state = 26, .external_lex_state = 3}, - [3348] = {.lex_state = 26, .external_lex_state = 3}, + [3347] = {.lex_state = 36, .external_lex_state = 5}, + [3348] = {.lex_state = 36, .external_lex_state = 5}, [3349] = {.lex_state = 26, .external_lex_state = 3}, [3350] = {.lex_state = 26, .external_lex_state = 3}, - [3351] = {.lex_state = 36, .external_lex_state = 2}, - [3352] = {.lex_state = 36, .external_lex_state = 5}, - [3353] = {.lex_state = 36, .external_lex_state = 2}, - [3354] = {.lex_state = 36, .external_lex_state = 2}, - [3355] = {.lex_state = 26, .external_lex_state = 3}, - [3356] = {.lex_state = 36, .external_lex_state = 5}, - [3357] = {.lex_state = 26, .external_lex_state = 3}, + [3351] = {.lex_state = 26, .external_lex_state = 3}, + [3352] = {.lex_state = 26, .external_lex_state = 3}, + [3353] = {.lex_state = 36, .external_lex_state = 5}, + [3354] = {.lex_state = 36, .external_lex_state = 5}, + [3355] = {.lex_state = 36, .external_lex_state = 5}, + [3356] = {.lex_state = 26, .external_lex_state = 3}, + [3357] = {.lex_state = 36, .external_lex_state = 5}, [3358] = {.lex_state = 26, .external_lex_state = 3}, - [3359] = {.lex_state = 26, .external_lex_state = 3}, - [3360] = {.lex_state = 26, .external_lex_state = 3}, - [3361] = {.lex_state = 36, .external_lex_state = 2}, - [3362] = {.lex_state = 26, .external_lex_state = 3}, + [3359] = {.lex_state = 36, .external_lex_state = 2}, + [3360] = {.lex_state = 36, .external_lex_state = 5}, + [3361] = {.lex_state = 36, .external_lex_state = 5}, + [3362] = {.lex_state = 36, .external_lex_state = 5}, [3363] = {.lex_state = 26, .external_lex_state = 3}, - [3364] = {.lex_state = 26, .external_lex_state = 3}, + [3364] = {.lex_state = 36, .external_lex_state = 5}, [3365] = {.lex_state = 26, .external_lex_state = 3}, - [3366] = {.lex_state = 36, .external_lex_state = 5}, - [3367] = {.lex_state = 36, .external_lex_state = 5}, - [3368] = {.lex_state = 35, .external_lex_state = 2}, + [3366] = {.lex_state = 36, .external_lex_state = 2}, + [3367] = {.lex_state = 26, .external_lex_state = 3}, + [3368] = {.lex_state = 26, .external_lex_state = 3}, [3369] = {.lex_state = 26, .external_lex_state = 3}, - [3370] = {.lex_state = 26, .external_lex_state = 3}, - [3371] = {.lex_state = 26, .external_lex_state = 4}, - [3372] = {.lex_state = 35, .external_lex_state = 5}, - [3373] = {.lex_state = 36, .external_lex_state = 2}, - [3374] = {.lex_state = 36, .external_lex_state = 5}, - [3375] = {.lex_state = 26, .external_lex_state = 3}, - [3376] = {.lex_state = 36, .external_lex_state = 2}, - [3377] = {.lex_state = 36, .external_lex_state = 5}, - [3378] = {.lex_state = 36, .external_lex_state = 5}, - [3379] = {.lex_state = 35, .external_lex_state = 5}, + [3370] = {.lex_state = 36, .external_lex_state = 5}, + [3371] = {.lex_state = 26, .external_lex_state = 3}, + [3372] = {.lex_state = 26, .external_lex_state = 3}, + [3373] = {.lex_state = 36, .external_lex_state = 5}, + [3374] = {.lex_state = 35, .external_lex_state = 5}, + [3375] = {.lex_state = 36, .external_lex_state = 5}, + [3376] = {.lex_state = 36, .external_lex_state = 5}, + [3377] = {.lex_state = 35, .external_lex_state = 5}, + [3378] = {.lex_state = 35, .external_lex_state = 5}, + [3379] = {.lex_state = 36, .external_lex_state = 5}, [3380] = {.lex_state = 36, .external_lex_state = 2}, [3381] = {.lex_state = 36, .external_lex_state = 5}, - [3382] = {.lex_state = 26, .external_lex_state = 3}, + [3382] = {.lex_state = 36, .external_lex_state = 2}, [3383] = {.lex_state = 26, .external_lex_state = 3}, - [3384] = {.lex_state = 26, .external_lex_state = 3}, - [3385] = {.lex_state = 26, .external_lex_state = 3}, - [3386] = {.lex_state = 26, .external_lex_state = 3}, - [3387] = {.lex_state = 26, .external_lex_state = 3}, - [3388] = {.lex_state = 36, .external_lex_state = 2}, - [3389] = {.lex_state = 36, .external_lex_state = 2}, - [3390] = {.lex_state = 26, .external_lex_state = 3}, - [3391] = {.lex_state = 36, .external_lex_state = 5}, + [3384] = {.lex_state = 36, .external_lex_state = 5}, + [3385] = {.lex_state = 26, .external_lex_state = 4}, + [3386] = {.lex_state = 35, .external_lex_state = 5}, + [3387] = {.lex_state = 35, .external_lex_state = 2}, + [3388] = {.lex_state = 26, .external_lex_state = 3}, + [3389] = {.lex_state = 35, .external_lex_state = 5}, + [3390] = {.lex_state = 36, .external_lex_state = 2}, + [3391] = {.lex_state = 26, .external_lex_state = 3}, [3392] = {.lex_state = 26, .external_lex_state = 3}, - [3393] = {.lex_state = 35, .external_lex_state = 5}, - [3394] = {.lex_state = 26, .external_lex_state = 3}, + [3393] = {.lex_state = 26, .external_lex_state = 3}, + [3394] = {.lex_state = 26, .external_lex_state = 4}, [3395] = {.lex_state = 26, .external_lex_state = 3}, - [3396] = {.lex_state = 26, .external_lex_state = 4}, + [3396] = {.lex_state = 26, .external_lex_state = 3}, [3397] = {.lex_state = 26, .external_lex_state = 3}, - [3398] = {.lex_state = 35, .external_lex_state = 5}, + [3398] = {.lex_state = 26, .external_lex_state = 3}, [3399] = {.lex_state = 26, .external_lex_state = 3}, - [3400] = {.lex_state = 35, .external_lex_state = 5}, - [3401] = {.lex_state = 36, .external_lex_state = 5}, + [3400] = {.lex_state = 26, .external_lex_state = 3}, + [3401] = {.lex_state = 36, .external_lex_state = 2}, [3402] = {.lex_state = 26, .external_lex_state = 3}, [3403] = {.lex_state = 26, .external_lex_state = 3}, [3404] = {.lex_state = 26, .external_lex_state = 3}, - [3405] = {.lex_state = 35, .external_lex_state = 5}, - [3406] = {.lex_state = 36, .external_lex_state = 5}, - [3407] = {.lex_state = 36, .external_lex_state = 5}, + [3405] = {.lex_state = 36, .external_lex_state = 2}, + [3406] = {.lex_state = 35, .external_lex_state = 5}, + [3407] = {.lex_state = 26, .external_lex_state = 3}, [3408] = {.lex_state = 36, .external_lex_state = 2}, - [3409] = {.lex_state = 36, .external_lex_state = 2}, + [3409] = {.lex_state = 36, .external_lex_state = 5}, [3410] = {.lex_state = 36, .external_lex_state = 2}, [3411] = {.lex_state = 36, .external_lex_state = 2}, - [3412] = {.lex_state = 36, .external_lex_state = 2}, + [3412] = {.lex_state = 36, .external_lex_state = 5}, [3413] = {.lex_state = 36, .external_lex_state = 2}, - [3414] = {.lex_state = 36, .external_lex_state = 5}, + [3414] = {.lex_state = 36, .external_lex_state = 2}, [3415] = {.lex_state = 36, .external_lex_state = 5}, - [3416] = {.lex_state = 36, .external_lex_state = 2}, + [3416] = {.lex_state = 36, .external_lex_state = 5}, [3417] = {.lex_state = 36, .external_lex_state = 2}, [3418] = {.lex_state = 26, .external_lex_state = 3}, [3419] = {.lex_state = 36, .external_lex_state = 2}, - [3420] = {.lex_state = 36, .external_lex_state = 2}, - [3421] = {.lex_state = 36, .external_lex_state = 2}, - [3422] = {.lex_state = 36, .external_lex_state = 5}, - [3423] = {.lex_state = 36, .external_lex_state = 5}, + [3420] = {.lex_state = 36, .external_lex_state = 5}, + [3421] = {.lex_state = 26, .external_lex_state = 3}, + [3422] = {.lex_state = 36, .external_lex_state = 2}, + [3423] = {.lex_state = 36, .external_lex_state = 2}, [3424] = {.lex_state = 36, .external_lex_state = 2}, - [3425] = {.lex_state = 26, .external_lex_state = 3}, - [3426] = {.lex_state = 36, .external_lex_state = 5}, - [3427] = {.lex_state = 36, .external_lex_state = 5}, + [3425] = {.lex_state = 36, .external_lex_state = 2}, + [3426] = {.lex_state = 26, .external_lex_state = 3}, + [3427] = {.lex_state = 36, .external_lex_state = 2}, [3428] = {.lex_state = 36, .external_lex_state = 2}, - [3429] = {.lex_state = 36, .external_lex_state = 5}, - [3430] = {.lex_state = 36, .external_lex_state = 5}, + [3429] = {.lex_state = 36, .external_lex_state = 2}, + [3430] = {.lex_state = 26, .external_lex_state = 3}, [3431] = {.lex_state = 36, .external_lex_state = 2}, - [3432] = {.lex_state = 36, .external_lex_state = 5}, + [3432] = {.lex_state = 36, .external_lex_state = 2}, [3433] = {.lex_state = 26, .external_lex_state = 3}, - [3434] = {.lex_state = 26, .external_lex_state = 3}, - [3435] = {.lex_state = 36, .external_lex_state = 5}, - [3436] = {.lex_state = 36, .external_lex_state = 2}, + [3434] = {.lex_state = 36, .external_lex_state = 5}, + [3435] = {.lex_state = 26, .external_lex_state = 3}, + [3436] = {.lex_state = 36, .external_lex_state = 5}, [3437] = {.lex_state = 36, .external_lex_state = 5}, - [3438] = {.lex_state = 36, .external_lex_state = 2}, - [3439] = {.lex_state = 36, .external_lex_state = 5}, + [3438] = {.lex_state = 36, .external_lex_state = 5}, + [3439] = {.lex_state = 27, .external_lex_state = 3}, [3440] = {.lex_state = 36, .external_lex_state = 5}, - [3441] = {.lex_state = 26, .external_lex_state = 3}, - [3442] = {.lex_state = 26, .external_lex_state = 3}, + [3441] = {.lex_state = 36, .external_lex_state = 5}, + [3442] = {.lex_state = 36, .external_lex_state = 2}, [3443] = {.lex_state = 36, .external_lex_state = 5}, - [3444] = {.lex_state = 27, .external_lex_state = 3}, + [3444] = {.lex_state = 36, .external_lex_state = 5}, [3445] = {.lex_state = 26, .external_lex_state = 3}, - [3446] = {.lex_state = 26, .external_lex_state = 3}, + [3446] = {.lex_state = 36, .external_lex_state = 5}, [3447] = {.lex_state = 36, .external_lex_state = 5}, - [3448] = {.lex_state = 36, .external_lex_state = 2}, - [3449] = {.lex_state = 36, .external_lex_state = 2}, - [3450] = {.lex_state = 26, .external_lex_state = 3}, + [3448] = {.lex_state = 36, .external_lex_state = 5}, + [3449] = {.lex_state = 36, .external_lex_state = 5}, + [3450] = {.lex_state = 36, .external_lex_state = 2}, [3451] = {.lex_state = 36, .external_lex_state = 2}, [3452] = {.lex_state = 26, .external_lex_state = 3}, [3453] = {.lex_state = 26, .external_lex_state = 3}, @@ -23721,15 +23727,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3458] = {.lex_state = 26, .external_lex_state = 3}, [3459] = {.lex_state = 26, .external_lex_state = 3}, [3460] = {.lex_state = 26, .external_lex_state = 3}, - [3461] = {.lex_state = 35, .external_lex_state = 5}, + [3461] = {.lex_state = 26, .external_lex_state = 3}, [3462] = {.lex_state = 35, .external_lex_state = 5}, [3463] = {.lex_state = 35, .external_lex_state = 5}, [3464] = {.lex_state = 35, .external_lex_state = 5}, [3465] = {.lex_state = 35, .external_lex_state = 5}, [3466] = {.lex_state = 35, .external_lex_state = 5}, [3467] = {.lex_state = 35, .external_lex_state = 5}, - [3468] = {.lex_state = 36, .external_lex_state = 2}, - [3469] = {.lex_state = 36, .external_lex_state = 2}, + [3468] = {.lex_state = 35, .external_lex_state = 5}, + [3469] = {.lex_state = 35, .external_lex_state = 5}, [3470] = {.lex_state = 35, .external_lex_state = 5}, [3471] = {.lex_state = 35, .external_lex_state = 5}, [3472] = {.lex_state = 35, .external_lex_state = 5}, @@ -23741,19 +23747,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3478] = {.lex_state = 35, .external_lex_state = 5}, [3479] = {.lex_state = 35, .external_lex_state = 5}, [3480] = {.lex_state = 35, .external_lex_state = 5}, - [3481] = {.lex_state = 35, .external_lex_state = 5}, + [3481] = {.lex_state = 35, .external_lex_state = 2}, [3482] = {.lex_state = 35, .external_lex_state = 5}, [3483] = {.lex_state = 35, .external_lex_state = 5}, [3484] = {.lex_state = 35, .external_lex_state = 5}, [3485] = {.lex_state = 35, .external_lex_state = 5}, - [3486] = {.lex_state = 36, .external_lex_state = 2}, + [3486] = {.lex_state = 35, .external_lex_state = 5}, [3487] = {.lex_state = 35, .external_lex_state = 5}, - [3488] = {.lex_state = 36, .external_lex_state = 2}, + [3488] = {.lex_state = 35, .external_lex_state = 5}, [3489] = {.lex_state = 35, .external_lex_state = 5}, [3490] = {.lex_state = 35, .external_lex_state = 5}, - [3491] = {.lex_state = 35, .external_lex_state = 5}, + [3491] = {.lex_state = 36, .external_lex_state = 2}, [3492] = {.lex_state = 35, .external_lex_state = 5}, - [3493] = {.lex_state = 35, .external_lex_state = 5}, + [3493] = {.lex_state = 36, .external_lex_state = 2}, [3494] = {.lex_state = 35, .external_lex_state = 5}, [3495] = {.lex_state = 35, .external_lex_state = 5}, [3496] = {.lex_state = 35, .external_lex_state = 5}, @@ -23762,55 +23768,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3499] = {.lex_state = 35, .external_lex_state = 5}, [3500] = {.lex_state = 35, .external_lex_state = 5}, [3501] = {.lex_state = 35, .external_lex_state = 5}, - [3502] = {.lex_state = 35, .external_lex_state = 5}, + [3502] = {.lex_state = 36, .external_lex_state = 2}, [3503] = {.lex_state = 35, .external_lex_state = 5}, [3504] = {.lex_state = 35, .external_lex_state = 5}, [3505] = {.lex_state = 35, .external_lex_state = 5}, [3506] = {.lex_state = 35, .external_lex_state = 5}, [3507] = {.lex_state = 35, .external_lex_state = 5}, - [3508] = {.lex_state = 36, .external_lex_state = 2}, + [3508] = {.lex_state = 35, .external_lex_state = 5}, [3509] = {.lex_state = 35, .external_lex_state = 5}, - [3510] = {.lex_state = 35, .external_lex_state = 5}, + [3510] = {.lex_state = 36, .external_lex_state = 2}, [3511] = {.lex_state = 35, .external_lex_state = 5}, [3512] = {.lex_state = 35, .external_lex_state = 5}, - [3513] = {.lex_state = 35, .external_lex_state = 5}, + [3513] = {.lex_state = 36, .external_lex_state = 2}, [3514] = {.lex_state = 35, .external_lex_state = 5}, [3515] = {.lex_state = 35, .external_lex_state = 5}, [3516] = {.lex_state = 35, .external_lex_state = 5}, [3517] = {.lex_state = 35, .external_lex_state = 5}, - [3518] = {.lex_state = 35, .external_lex_state = 2}, - [3519] = {.lex_state = 36, .external_lex_state = 2}, - [3520] = {.lex_state = 35, .external_lex_state = 2}, - [3521] = {.lex_state = 35, .external_lex_state = 2}, - [3522] = {.lex_state = 35, .external_lex_state = 2}, + [3518] = {.lex_state = 35, .external_lex_state = 5}, + [3519] = {.lex_state = 35, .external_lex_state = 5}, + [3520] = {.lex_state = 36, .external_lex_state = 2}, + [3521] = {.lex_state = 36, .external_lex_state = 2}, + [3522] = {.lex_state = 36, .external_lex_state = 2}, [3523] = {.lex_state = 35, .external_lex_state = 2}, [3524] = {.lex_state = 35, .external_lex_state = 2}, - [3525] = {.lex_state = 36, .external_lex_state = 2}, + [3525] = {.lex_state = 35, .external_lex_state = 2}, [3526] = {.lex_state = 35, .external_lex_state = 2}, [3527] = {.lex_state = 36, .external_lex_state = 2}, - [3528] = {.lex_state = 36, .external_lex_state = 2}, + [3528] = {.lex_state = 35, .external_lex_state = 2}, [3529] = {.lex_state = 36, .external_lex_state = 2}, [3530] = {.lex_state = 36, .external_lex_state = 2}, - [3531] = {.lex_state = 36, .external_lex_state = 2}, + [3531] = {.lex_state = 35, .external_lex_state = 2}, [3532] = {.lex_state = 36, .external_lex_state = 2}, - [3533] = {.lex_state = 35, .external_lex_state = 2}, + [3533] = {.lex_state = 36, .external_lex_state = 2}, [3534] = {.lex_state = 36, .external_lex_state = 2}, [3535] = {.lex_state = 36, .external_lex_state = 2}, - [3536] = {.lex_state = 36, .external_lex_state = 2}, - [3537] = {.lex_state = 36, .external_lex_state = 2}, + [3536] = {.lex_state = 35, .external_lex_state = 2}, + [3537] = {.lex_state = 35, .external_lex_state = 2}, [3538] = {.lex_state = 36, .external_lex_state = 2}, [3539] = {.lex_state = 36, .external_lex_state = 2}, - [3540] = {.lex_state = 36, .external_lex_state = 2}, + [3540] = {.lex_state = 35, .external_lex_state = 2}, [3541] = {.lex_state = 36, .external_lex_state = 2}, - [3542] = {.lex_state = 35, .external_lex_state = 2}, + [3542] = {.lex_state = 36, .external_lex_state = 2}, [3543] = {.lex_state = 36, .external_lex_state = 2}, - [3544] = {.lex_state = 35, .external_lex_state = 2}, + [3544] = {.lex_state = 36, .external_lex_state = 2}, [3545] = {.lex_state = 36, .external_lex_state = 2}, [3546] = {.lex_state = 36, .external_lex_state = 2}, [3547] = {.lex_state = 36, .external_lex_state = 2}, [3548] = {.lex_state = 36, .external_lex_state = 2}, - [3549] = {.lex_state = 35, .external_lex_state = 2}, - [3550] = {.lex_state = 36, .external_lex_state = 2}, + [3549] = {.lex_state = 36, .external_lex_state = 2}, + [3550] = {.lex_state = 35, .external_lex_state = 2}, [3551] = {.lex_state = 36, .external_lex_state = 2}, [3552] = {.lex_state = 36, .external_lex_state = 2}, [3553] = {.lex_state = 36, .external_lex_state = 2}, @@ -23818,7 +23824,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3555] = {.lex_state = 36, .external_lex_state = 2}, [3556] = {.lex_state = 36, .external_lex_state = 2}, [3557] = {.lex_state = 36, .external_lex_state = 2}, - [3558] = {.lex_state = 36, .external_lex_state = 2}, + [3558] = {.lex_state = 35, .external_lex_state = 2}, [3559] = {.lex_state = 36, .external_lex_state = 2}, [3560] = {.lex_state = 36, .external_lex_state = 2}, [3561] = {.lex_state = 36, .external_lex_state = 2}, @@ -23828,54 +23834,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3565] = {.lex_state = 36, .external_lex_state = 2}, [3566] = {.lex_state = 36, .external_lex_state = 2}, [3567] = {.lex_state = 36, .external_lex_state = 2}, - [3568] = {.lex_state = 35, .external_lex_state = 2}, + [3568] = {.lex_state = 36, .external_lex_state = 2}, [3569] = {.lex_state = 36, .external_lex_state = 2}, [3570] = {.lex_state = 349, .external_lex_state = 2}, - [3571] = {.lex_state = 35, .external_lex_state = 2}, - [3572] = {.lex_state = 349, .external_lex_state = 2}, + [3571] = {.lex_state = 349, .external_lex_state = 2}, + [3572] = {.lex_state = 36, .external_lex_state = 2}, [3573] = {.lex_state = 349, .external_lex_state = 2}, - [3574] = {.lex_state = 35, .external_lex_state = 2}, - [3575] = {.lex_state = 36, .external_lex_state = 2}, + [3574] = {.lex_state = 349, .external_lex_state = 2}, + [3575] = {.lex_state = 35, .external_lex_state = 2}, [3576] = {.lex_state = 36, .external_lex_state = 2}, - [3577] = {.lex_state = 36, .external_lex_state = 2}, - [3578] = {.lex_state = 349, .external_lex_state = 2}, - [3579] = {.lex_state = 36, .external_lex_state = 2}, - [3580] = {.lex_state = 35, .external_lex_state = 2}, - [3581] = {.lex_state = 349, .external_lex_state = 2}, + [3577] = {.lex_state = 349, .external_lex_state = 2}, + [3578] = {.lex_state = 36, .external_lex_state = 2}, + [3579] = {.lex_state = 35, .external_lex_state = 2}, + [3580] = {.lex_state = 36, .external_lex_state = 2}, + [3581] = {.lex_state = 36, .external_lex_state = 2}, [3582] = {.lex_state = 36, .external_lex_state = 2}, [3583] = {.lex_state = 36, .external_lex_state = 2}, [3584] = {.lex_state = 36, .external_lex_state = 2}, [3585] = {.lex_state = 36, .external_lex_state = 2}, - [3586] = {.lex_state = 36, .external_lex_state = 2}, + [3586] = {.lex_state = 349, .external_lex_state = 2}, [3587] = {.lex_state = 36, .external_lex_state = 2}, - [3588] = {.lex_state = 36, .external_lex_state = 2}, + [3588] = {.lex_state = 35, .external_lex_state = 2}, [3589] = {.lex_state = 36, .external_lex_state = 2}, - [3590] = {.lex_state = 36, .external_lex_state = 2}, + [3590] = {.lex_state = 349, .external_lex_state = 2}, [3591] = {.lex_state = 36, .external_lex_state = 2}, - [3592] = {.lex_state = 349, .external_lex_state = 2}, + [3592] = {.lex_state = 36, .external_lex_state = 2}, [3593] = {.lex_state = 36, .external_lex_state = 2}, [3594] = {.lex_state = 36, .external_lex_state = 2}, - [3595] = {.lex_state = 349, .external_lex_state = 2}, - [3596] = {.lex_state = 36, .external_lex_state = 2}, - [3597] = {.lex_state = 349, .external_lex_state = 2}, + [3595] = {.lex_state = 36, .external_lex_state = 2}, + [3596] = {.lex_state = 349, .external_lex_state = 2}, + [3597] = {.lex_state = 36, .external_lex_state = 2}, [3598] = {.lex_state = 349, .external_lex_state = 2}, [3599] = {.lex_state = 36, .external_lex_state = 2}, - [3600] = {.lex_state = 349, .external_lex_state = 2}, + [3600] = {.lex_state = 36, .external_lex_state = 2}, [3601] = {.lex_state = 36, .external_lex_state = 2}, [3602] = {.lex_state = 36, .external_lex_state = 2}, - [3603] = {.lex_state = 36, .external_lex_state = 2}, - [3604] = {.lex_state = 349, .external_lex_state = 2}, + [3603] = {.lex_state = 349, .external_lex_state = 2}, + [3604] = {.lex_state = 36, .external_lex_state = 2}, [3605] = {.lex_state = 36, .external_lex_state = 2}, [3606] = {.lex_state = 36, .external_lex_state = 2}, [3607] = {.lex_state = 36, .external_lex_state = 2}, [3608] = {.lex_state = 36, .external_lex_state = 2}, [3609] = {.lex_state = 36, .external_lex_state = 2}, - [3610] = {.lex_state = 349, .external_lex_state = 2}, - [3611] = {.lex_state = 36, .external_lex_state = 2}, + [3610] = {.lex_state = 36, .external_lex_state = 2}, + [3611] = {.lex_state = 349, .external_lex_state = 2}, [3612] = {.lex_state = 36, .external_lex_state = 2}, [3613] = {.lex_state = 36, .external_lex_state = 2}, [3614] = {.lex_state = 36, .external_lex_state = 2}, - [3615] = {.lex_state = 36, .external_lex_state = 2}, + [3615] = {.lex_state = 349, .external_lex_state = 2}, [3616] = {.lex_state = 36, .external_lex_state = 2}, [3617] = {.lex_state = 36, .external_lex_state = 2}, [3618] = {.lex_state = 36, .external_lex_state = 2}, @@ -23900,7 +23906,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3637] = {.lex_state = 36, .external_lex_state = 2}, [3638] = {.lex_state = 36, .external_lex_state = 2}, [3639] = {.lex_state = 36, .external_lex_state = 2}, - [3640] = {.lex_state = 36, .external_lex_state = 2}, + [3640] = {.lex_state = 35, .external_lex_state = 2}, [3641] = {.lex_state = 36, .external_lex_state = 2}, [3642] = {.lex_state = 36, .external_lex_state = 2}, [3643] = {.lex_state = 36, .external_lex_state = 2}, @@ -23912,8 +23918,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3649] = {.lex_state = 36, .external_lex_state = 2}, [3650] = {.lex_state = 36, .external_lex_state = 2}, [3651] = {.lex_state = 36, .external_lex_state = 2}, - [3652] = {.lex_state = 35, .external_lex_state = 2}, - [3653] = {.lex_state = 35, .external_lex_state = 2}, + [3652] = {.lex_state = 36, .external_lex_state = 2}, + [3653] = {.lex_state = 36, .external_lex_state = 2}, [3654] = {.lex_state = 36, .external_lex_state = 2}, [3655] = {.lex_state = 36, .external_lex_state = 2}, [3656] = {.lex_state = 36, .external_lex_state = 2}, @@ -23922,26 +23928,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3659] = {.lex_state = 36, .external_lex_state = 2}, [3660] = {.lex_state = 36, .external_lex_state = 2}, [3661] = {.lex_state = 36, .external_lex_state = 2}, - [3662] = {.lex_state = 35, .external_lex_state = 2}, + [3662] = {.lex_state = 36, .external_lex_state = 2}, [3663] = {.lex_state = 35, .external_lex_state = 2}, [3664] = {.lex_state = 36, .external_lex_state = 2}, [3665] = {.lex_state = 36, .external_lex_state = 2}, [3666] = {.lex_state = 36, .external_lex_state = 2}, - [3667] = {.lex_state = 36, .external_lex_state = 2}, - [3668] = {.lex_state = 35, .external_lex_state = 2}, - [3669] = {.lex_state = 36, .external_lex_state = 2}, + [3667] = {.lex_state = 35, .external_lex_state = 2}, + [3668] = {.lex_state = 36, .external_lex_state = 2}, + [3669] = {.lex_state = 35, .external_lex_state = 2}, [3670] = {.lex_state = 36, .external_lex_state = 2}, [3671] = {.lex_state = 36, .external_lex_state = 2}, [3672] = {.lex_state = 36, .external_lex_state = 2}, [3673] = {.lex_state = 36, .external_lex_state = 2}, - [3674] = {.lex_state = 36, .external_lex_state = 2}, + [3674] = {.lex_state = 35, .external_lex_state = 2}, [3675] = {.lex_state = 36, .external_lex_state = 2}, [3676] = {.lex_state = 36, .external_lex_state = 2}, [3677] = {.lex_state = 36, .external_lex_state = 2}, - [3678] = {.lex_state = 36, .external_lex_state = 2}, - [3679] = {.lex_state = 36, .external_lex_state = 2}, + [3678] = {.lex_state = 35, .external_lex_state = 2}, + [3679] = {.lex_state = 35, .external_lex_state = 2}, [3680] = {.lex_state = 36, .external_lex_state = 2}, - [3681] = {.lex_state = 35, .external_lex_state = 2}, + [3681] = {.lex_state = 36, .external_lex_state = 2}, [3682] = {.lex_state = 36, .external_lex_state = 2}, [3683] = {.lex_state = 36, .external_lex_state = 2}, [3684] = {.lex_state = 36, .external_lex_state = 2}, @@ -23958,19 +23964,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3695] = {.lex_state = 36, .external_lex_state = 2}, [3696] = {.lex_state = 36, .external_lex_state = 2}, [3697] = {.lex_state = 36, .external_lex_state = 2}, - [3698] = {.lex_state = 72, .external_lex_state = 2}, - [3699] = {.lex_state = 46, .external_lex_state = 2}, - [3700] = {.lex_state = 46, .external_lex_state = 2}, + [3698] = {.lex_state = 36, .external_lex_state = 2}, + [3699] = {.lex_state = 36, .external_lex_state = 2}, + [3700] = {.lex_state = 72, .external_lex_state = 2}, [3701] = {.lex_state = 46, .external_lex_state = 2}, [3702] = {.lex_state = 46, .external_lex_state = 2}, [3703] = {.lex_state = 46, .external_lex_state = 2}, [3704] = {.lex_state = 46, .external_lex_state = 2}, - [3705] = {.lex_state = 55, .external_lex_state = 2}, - [3706] = {.lex_state = 55, .external_lex_state = 2}, - [3707] = {.lex_state = 46, .external_lex_state = 2}, - [3708] = {.lex_state = 46, .external_lex_state = 2}, + [3705] = {.lex_state = 46, .external_lex_state = 2}, + [3706] = {.lex_state = 46, .external_lex_state = 2}, + [3707] = {.lex_state = 55, .external_lex_state = 2}, + [3708] = {.lex_state = 55, .external_lex_state = 2}, [3709] = {.lex_state = 46, .external_lex_state = 2}, - [3710] = {.lex_state = 46, .external_lex_state = 2}, + [3710] = {.lex_state = 55, .external_lex_state = 2}, [3711] = {.lex_state = 46, .external_lex_state = 2}, [3712] = {.lex_state = 46, .external_lex_state = 2}, [3713] = {.lex_state = 46, .external_lex_state = 2}, @@ -23999,129 +24005,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3736] = {.lex_state = 46, .external_lex_state = 2}, [3737] = {.lex_state = 46, .external_lex_state = 2}, [3738] = {.lex_state = 46, .external_lex_state = 2}, - [3739] = {.lex_state = 55, .external_lex_state = 2}, + [3739] = {.lex_state = 46, .external_lex_state = 2}, [3740] = {.lex_state = 46, .external_lex_state = 2}, [3741] = {.lex_state = 46, .external_lex_state = 2}, - [3742] = {.lex_state = 50, .external_lex_state = 2}, - [3743] = {.lex_state = 55, .external_lex_state = 2}, + [3742] = {.lex_state = 46, .external_lex_state = 2}, + [3743] = {.lex_state = 46, .external_lex_state = 2}, [3744] = {.lex_state = 50, .external_lex_state = 2}, - [3745] = {.lex_state = 50, .external_lex_state = 2}, + [3745] = {.lex_state = 55, .external_lex_state = 2}, [3746] = {.lex_state = 50, .external_lex_state = 2}, [3747] = {.lex_state = 50, .external_lex_state = 2}, - [3748] = {.lex_state = 55, .external_lex_state = 2}, - [3749] = {.lex_state = 55, .external_lex_state = 2}, - [3750] = {.lex_state = 46, .external_lex_state = 2}, - [3751] = {.lex_state = 46, .external_lex_state = 2}, + [3748] = {.lex_state = 50, .external_lex_state = 2}, + [3749] = {.lex_state = 50, .external_lex_state = 2}, + [3750] = {.lex_state = 55, .external_lex_state = 2}, + [3751] = {.lex_state = 55, .external_lex_state = 2}, [3752] = {.lex_state = 55, .external_lex_state = 2}, - [3753] = {.lex_state = 46, .external_lex_state = 2}, + [3753] = {.lex_state = 55, .external_lex_state = 2}, [3754] = {.lex_state = 55, .external_lex_state = 2}, [3755] = {.lex_state = 55, .external_lex_state = 2}, [3756] = {.lex_state = 55, .external_lex_state = 2}, [3757] = {.lex_state = 55, .external_lex_state = 2}, - [3758] = {.lex_state = 55, .external_lex_state = 2}, - [3759] = {.lex_state = 55, .external_lex_state = 2}, - [3760] = {.lex_state = 55, .external_lex_state = 2}, - [3761] = {.lex_state = 46, .external_lex_state = 2}, + [3758] = {.lex_state = 46, .external_lex_state = 2}, + [3759] = {.lex_state = 46, .external_lex_state = 2}, + [3760] = {.lex_state = 46, .external_lex_state = 5}, + [3761] = {.lex_state = 45, .external_lex_state = 5}, [3762] = {.lex_state = 55, .external_lex_state = 2}, - [3763] = {.lex_state = 45, .external_lex_state = 5}, - [3764] = {.lex_state = 55, .external_lex_state = 2}, - [3765] = {.lex_state = 55, .external_lex_state = 2}, + [3763] = {.lex_state = 55, .external_lex_state = 2}, + [3764] = {.lex_state = 46, .external_lex_state = 2}, + [3765] = {.lex_state = 46, .external_lex_state = 5}, [3766] = {.lex_state = 55, .external_lex_state = 2}, - [3767] = {.lex_state = 45, .external_lex_state = 5}, - [3768] = {.lex_state = 46, .external_lex_state = 5}, + [3767] = {.lex_state = 46, .external_lex_state = 2}, + [3768] = {.lex_state = 55, .external_lex_state = 2}, [3769] = {.lex_state = 55, .external_lex_state = 2}, - [3770] = {.lex_state = 55, .external_lex_state = 2}, - [3771] = {.lex_state = 46, .external_lex_state = 5}, + [3770] = {.lex_state = 45, .external_lex_state = 5}, + [3771] = {.lex_state = 55, .external_lex_state = 2}, [3772] = {.lex_state = 55, .external_lex_state = 2}, [3773] = {.lex_state = 55, .external_lex_state = 2}, - [3774] = {.lex_state = 46, .external_lex_state = 5}, + [3774] = {.lex_state = 55, .external_lex_state = 2}, [3775] = {.lex_state = 55, .external_lex_state = 2}, [3776] = {.lex_state = 55, .external_lex_state = 2}, - [3777] = {.lex_state = 55, .external_lex_state = 2}, + [3777] = {.lex_state = 46, .external_lex_state = 5}, [3778] = {.lex_state = 55, .external_lex_state = 2}, [3779] = {.lex_state = 55, .external_lex_state = 2}, [3780] = {.lex_state = 55, .external_lex_state = 2}, - [3781] = {.lex_state = 46, .external_lex_state = 5}, + [3781] = {.lex_state = 55, .external_lex_state = 2}, [3782] = {.lex_state = 55, .external_lex_state = 2}, [3783] = {.lex_state = 55, .external_lex_state = 2}, - [3784] = {.lex_state = 46, .external_lex_state = 5}, - [3785] = {.lex_state = 46, .external_lex_state = 5}, - [3786] = {.lex_state = 349, .external_lex_state = 2}, + [3784] = {.lex_state = 55, .external_lex_state = 2}, + [3785] = {.lex_state = 55, .external_lex_state = 2}, + [3786] = {.lex_state = 55, .external_lex_state = 2}, [3787] = {.lex_state = 55, .external_lex_state = 2}, [3788] = {.lex_state = 349, .external_lex_state = 2}, - [3789] = {.lex_state = 55, .external_lex_state = 2}, - [3790] = {.lex_state = 349, .external_lex_state = 2}, + [3789] = {.lex_state = 349, .external_lex_state = 2}, + [3790] = {.lex_state = 55, .external_lex_state = 2}, [3791] = {.lex_state = 55, .external_lex_state = 2}, [3792] = {.lex_state = 55, .external_lex_state = 2}, - [3793] = {.lex_state = 55, .external_lex_state = 2}, - [3794] = {.lex_state = 46, .external_lex_state = 5}, - [3795] = {.lex_state = 46, .external_lex_state = 5}, - [3796] = {.lex_state = 46, .external_lex_state = 5}, - [3797] = {.lex_state = 46, .external_lex_state = 5}, - [3798] = {.lex_state = 349, .external_lex_state = 2}, - [3799] = {.lex_state = 46, .external_lex_state = 5}, + [3793] = {.lex_state = 349, .external_lex_state = 2}, + [3794] = {.lex_state = 349, .external_lex_state = 2}, + [3795] = {.lex_state = 45, .external_lex_state = 5}, + [3796] = {.lex_state = 55, .external_lex_state = 2}, + [3797] = {.lex_state = 349, .external_lex_state = 2}, + [3798] = {.lex_state = 55, .external_lex_state = 2}, + [3799] = {.lex_state = 349, .external_lex_state = 2}, [3800] = {.lex_state = 55, .external_lex_state = 2}, [3801] = {.lex_state = 349, .external_lex_state = 2}, - [3802] = {.lex_state = 55, .external_lex_state = 2}, - [3803] = {.lex_state = 46, .external_lex_state = 5}, - [3804] = {.lex_state = 46, .external_lex_state = 5}, - [3805] = {.lex_state = 46, .external_lex_state = 5}, + [3802] = {.lex_state = 349, .external_lex_state = 2}, + [3803] = {.lex_state = 55, .external_lex_state = 2}, + [3804] = {.lex_state = 55, .external_lex_state = 2}, + [3805] = {.lex_state = 55, .external_lex_state = 2}, [3806] = {.lex_state = 349, .external_lex_state = 2}, - [3807] = {.lex_state = 46, .external_lex_state = 5}, + [3807] = {.lex_state = 55, .external_lex_state = 2}, [3808] = {.lex_state = 55, .external_lex_state = 2}, - [3809] = {.lex_state = 46, .external_lex_state = 5}, + [3809] = {.lex_state = 349, .external_lex_state = 2}, [3810] = {.lex_state = 55, .external_lex_state = 2}, - [3811] = {.lex_state = 349, .external_lex_state = 2}, - [3812] = {.lex_state = 349, .external_lex_state = 2}, - [3813] = {.lex_state = 46, .external_lex_state = 5}, - [3814] = {.lex_state = 46, .external_lex_state = 5}, - [3815] = {.lex_state = 46, .external_lex_state = 5}, + [3811] = {.lex_state = 55, .external_lex_state = 2}, + [3812] = {.lex_state = 55, .external_lex_state = 2}, + [3813] = {.lex_state = 349, .external_lex_state = 2}, + [3814] = {.lex_state = 349, .external_lex_state = 2}, + [3815] = {.lex_state = 349, .external_lex_state = 2}, [3816] = {.lex_state = 349, .external_lex_state = 2}, [3817] = {.lex_state = 55, .external_lex_state = 2}, - [3818] = {.lex_state = 46, .external_lex_state = 5}, - [3819] = {.lex_state = 46, .external_lex_state = 5}, - [3820] = {.lex_state = 46, .external_lex_state = 5}, - [3821] = {.lex_state = 55, .external_lex_state = 2}, - [3822] = {.lex_state = 349, .external_lex_state = 2}, - [3823] = {.lex_state = 55, .external_lex_state = 2}, - [3824] = {.lex_state = 55, .external_lex_state = 2}, - [3825] = {.lex_state = 349, .external_lex_state = 2}, - [3826] = {.lex_state = 349, .external_lex_state = 2}, + [3818] = {.lex_state = 349, .external_lex_state = 2}, + [3819] = {.lex_state = 349, .external_lex_state = 2}, + [3820] = {.lex_state = 349, .external_lex_state = 2}, + [3821] = {.lex_state = 349, .external_lex_state = 2}, + [3822] = {.lex_state = 46, .external_lex_state = 5}, + [3823] = {.lex_state = 349, .external_lex_state = 2}, + [3824] = {.lex_state = 349, .external_lex_state = 2}, + [3825] = {.lex_state = 46, .external_lex_state = 5}, + [3826] = {.lex_state = 55, .external_lex_state = 2}, [3827] = {.lex_state = 349, .external_lex_state = 2}, - [3828] = {.lex_state = 45, .external_lex_state = 5}, + [3828] = {.lex_state = 349, .external_lex_state = 2}, [3829] = {.lex_state = 349, .external_lex_state = 2}, - [3830] = {.lex_state = 46, .external_lex_state = 6}, - [3831] = {.lex_state = 55, .external_lex_state = 2}, - [3832] = {.lex_state = 46, .external_lex_state = 6}, - [3833] = {.lex_state = 55, .external_lex_state = 2}, - [3834] = {.lex_state = 46, .external_lex_state = 6}, - [3835] = {.lex_state = 55, .external_lex_state = 2}, - [3836] = {.lex_state = 55, .external_lex_state = 2}, - [3837] = {.lex_state = 349, .external_lex_state = 2}, - [3838] = {.lex_state = 349, .external_lex_state = 2}, - [3839] = {.lex_state = 55, .external_lex_state = 2}, - [3840] = {.lex_state = 55, .external_lex_state = 2}, - [3841] = {.lex_state = 349, .external_lex_state = 2}, - [3842] = {.lex_state = 349, .external_lex_state = 2}, - [3843] = {.lex_state = 349, .external_lex_state = 2}, - [3844] = {.lex_state = 55, .external_lex_state = 2}, + [3830] = {.lex_state = 46, .external_lex_state = 5}, + [3831] = {.lex_state = 46, .external_lex_state = 5}, + [3832] = {.lex_state = 349, .external_lex_state = 2}, + [3833] = {.lex_state = 46, .external_lex_state = 5}, + [3834] = {.lex_state = 46, .external_lex_state = 5}, + [3835] = {.lex_state = 46, .external_lex_state = 5}, + [3836] = {.lex_state = 46, .external_lex_state = 5}, + [3837] = {.lex_state = 46, .external_lex_state = 5}, + [3838] = {.lex_state = 55, .external_lex_state = 2}, + [3839] = {.lex_state = 46, .external_lex_state = 5}, + [3840] = {.lex_state = 46, .external_lex_state = 5}, + [3841] = {.lex_state = 46, .external_lex_state = 6}, + [3842] = {.lex_state = 46, .external_lex_state = 5}, + [3843] = {.lex_state = 46, .external_lex_state = 6}, + [3844] = {.lex_state = 46, .external_lex_state = 5}, [3845] = {.lex_state = 46, .external_lex_state = 5}, - [3846] = {.lex_state = 349, .external_lex_state = 2}, - [3847] = {.lex_state = 349, .external_lex_state = 2}, - [3848] = {.lex_state = 55, .external_lex_state = 2}, - [3849] = {.lex_state = 55, .external_lex_state = 2}, - [3850] = {.lex_state = 55, .external_lex_state = 2}, - [3851] = {.lex_state = 349, .external_lex_state = 2}, - [3852] = {.lex_state = 349, .external_lex_state = 2}, + [3846] = {.lex_state = 46, .external_lex_state = 5}, + [3847] = {.lex_state = 46, .external_lex_state = 5}, + [3848] = {.lex_state = 46, .external_lex_state = 5}, + [3849] = {.lex_state = 46, .external_lex_state = 5}, + [3850] = {.lex_state = 46, .external_lex_state = 5}, + [3851] = {.lex_state = 46, .external_lex_state = 5}, + [3852] = {.lex_state = 46, .external_lex_state = 5}, [3853] = {.lex_state = 55, .external_lex_state = 2}, - [3854] = {.lex_state = 349, .external_lex_state = 2}, - [3855] = {.lex_state = 349, .external_lex_state = 2}, + [3854] = {.lex_state = 46, .external_lex_state = 5}, + [3855] = {.lex_state = 46, .external_lex_state = 6}, [3856] = {.lex_state = 46, .external_lex_state = 5}, - [3857] = {.lex_state = 55, .external_lex_state = 2}, - [3858] = {.lex_state = 46, .external_lex_state = 5}, - [3859] = {.lex_state = 55, .external_lex_state = 2}, - [3860] = {.lex_state = 55, .external_lex_state = 2}, - [3861] = {.lex_state = 46, .external_lex_state = 5}, + [3857] = {.lex_state = 46, .external_lex_state = 5}, + [3858] = {.lex_state = 55, .external_lex_state = 2}, + [3859] = {.lex_state = 349, .external_lex_state = 2}, + [3860] = {.lex_state = 349, .external_lex_state = 2}, + [3861] = {.lex_state = 55, .external_lex_state = 2}, [3862] = {.lex_state = 55, .external_lex_state = 2}, [3863] = {.lex_state = 55, .external_lex_state = 2}, [3864] = {.lex_state = 55, .external_lex_state = 2}, @@ -24129,162 +24135,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3866] = {.lex_state = 55, .external_lex_state = 2}, [3867] = {.lex_state = 55, .external_lex_state = 2}, [3868] = {.lex_state = 55, .external_lex_state = 2}, - [3869] = {.lex_state = 349, .external_lex_state = 2}, + [3869] = {.lex_state = 46, .external_lex_state = 5}, [3870] = {.lex_state = 46, .external_lex_state = 5}, - [3871] = {.lex_state = 46, .external_lex_state = 5}, + [3871] = {.lex_state = 55, .external_lex_state = 2}, [3872] = {.lex_state = 46, .external_lex_state = 5}, - [3873] = {.lex_state = 349, .external_lex_state = 2}, - [3874] = {.lex_state = 46, .external_lex_state = 5}, + [3873] = {.lex_state = 46, .external_lex_state = 5}, + [3874] = {.lex_state = 55, .external_lex_state = 2}, [3875] = {.lex_state = 46, .external_lex_state = 5}, - [3876] = {.lex_state = 46, .external_lex_state = 5}, + [3876] = {.lex_state = 55, .external_lex_state = 2}, [3877] = {.lex_state = 46, .external_lex_state = 5}, - [3878] = {.lex_state = 349, .external_lex_state = 2}, - [3879] = {.lex_state = 55, .external_lex_state = 2}, + [3878] = {.lex_state = 46, .external_lex_state = 5}, + [3879] = {.lex_state = 46, .external_lex_state = 5}, [3880] = {.lex_state = 55, .external_lex_state = 2}, [3881] = {.lex_state = 46, .external_lex_state = 5}, - [3882] = {.lex_state = 46, .external_lex_state = 5}, + [3882] = {.lex_state = 55, .external_lex_state = 2}, [3883] = {.lex_state = 349, .external_lex_state = 2}, [3884] = {.lex_state = 46, .external_lex_state = 5}, [3885] = {.lex_state = 55, .external_lex_state = 2}, [3886] = {.lex_state = 55, .external_lex_state = 2}, - [3887] = {.lex_state = 55, .external_lex_state = 2}, - [3888] = {.lex_state = 46, .external_lex_state = 5}, + [3887] = {.lex_state = 349, .external_lex_state = 2}, + [3888] = {.lex_state = 349, .external_lex_state = 2}, [3889] = {.lex_state = 55, .external_lex_state = 2}, [3890] = {.lex_state = 55, .external_lex_state = 2}, [3891] = {.lex_state = 349, .external_lex_state = 2}, [3892] = {.lex_state = 55, .external_lex_state = 2}, - [3893] = {.lex_state = 45, .external_lex_state = 5}, - [3894] = {.lex_state = 45, .external_lex_state = 5}, - [3895] = {.lex_state = 45, .external_lex_state = 5}, - [3896] = {.lex_state = 51, .external_lex_state = 2}, - [3897] = {.lex_state = 51, .external_lex_state = 2}, + [3893] = {.lex_state = 55, .external_lex_state = 2}, + [3894] = {.lex_state = 55, .external_lex_state = 2}, + [3895] = {.lex_state = 51, .external_lex_state = 2}, + [3896] = {.lex_state = 45, .external_lex_state = 5}, + [3897] = {.lex_state = 45, .external_lex_state = 5}, [3898] = {.lex_state = 45, .external_lex_state = 5}, - [3899] = {.lex_state = 73, .external_lex_state = 2}, - [3900] = {.lex_state = 45, .external_lex_state = 5}, + [3899] = {.lex_state = 51, .external_lex_state = 2}, + [3900] = {.lex_state = 73, .external_lex_state = 2}, [3901] = {.lex_state = 45, .external_lex_state = 5}, - [3902] = {.lex_state = 45, .external_lex_state = 5}, + [3902] = {.lex_state = 73, .external_lex_state = 2}, [3903] = {.lex_state = 45, .external_lex_state = 5}, [3904] = {.lex_state = 45, .external_lex_state = 5}, [3905] = {.lex_state = 45, .external_lex_state = 5}, [3906] = {.lex_state = 45, .external_lex_state = 5}, - [3907] = {.lex_state = 51, .external_lex_state = 2}, - [3908] = {.lex_state = 45, .external_lex_state = 5}, + [3907] = {.lex_state = 45, .external_lex_state = 5}, + [3908] = {.lex_state = 45, .external_lex_state = 2}, [3909] = {.lex_state = 45, .external_lex_state = 5}, [3910] = {.lex_state = 45, .external_lex_state = 5}, [3911] = {.lex_state = 45, .external_lex_state = 5}, - [3912] = {.lex_state = 45, .external_lex_state = 5}, + [3912] = {.lex_state = 51, .external_lex_state = 2}, [3913] = {.lex_state = 45, .external_lex_state = 5}, - [3914] = {.lex_state = 45, .external_lex_state = 5}, + [3914] = {.lex_state = 73, .external_lex_state = 2}, [3915] = {.lex_state = 45, .external_lex_state = 5}, - [3916] = {.lex_state = 45, .external_lex_state = 2}, + [3916] = {.lex_state = 45, .external_lex_state = 5}, [3917] = {.lex_state = 45, .external_lex_state = 5}, - [3918] = {.lex_state = 73, .external_lex_state = 2}, - [3919] = {.lex_state = 51, .external_lex_state = 2}, + [3918] = {.lex_state = 45, .external_lex_state = 5}, + [3919] = {.lex_state = 73, .external_lex_state = 2}, [3920] = {.lex_state = 45, .external_lex_state = 5}, - [3921] = {.lex_state = 73, .external_lex_state = 2}, - [3922] = {.lex_state = 45, .external_lex_state = 5}, + [3921] = {.lex_state = 45, .external_lex_state = 5}, + [3922] = {.lex_state = 51, .external_lex_state = 2}, [3923] = {.lex_state = 73, .external_lex_state = 2}, [3924] = {.lex_state = 45, .external_lex_state = 5}, [3925] = {.lex_state = 45, .external_lex_state = 5}, [3926] = {.lex_state = 45, .external_lex_state = 5}, [3927] = {.lex_state = 45, .external_lex_state = 5}, [3928] = {.lex_state = 45, .external_lex_state = 5}, - [3929] = {.lex_state = 51, .external_lex_state = 2}, + [3929] = {.lex_state = 45, .external_lex_state = 5}, [3930] = {.lex_state = 45, .external_lex_state = 5}, - [3931] = {.lex_state = 73, .external_lex_state = 2}, - [3932] = {.lex_state = 45, .external_lex_state = 5}, - [3933] = {.lex_state = 46, .external_lex_state = 6}, + [3931] = {.lex_state = 45, .external_lex_state = 5}, + [3932] = {.lex_state = 51, .external_lex_state = 2}, + [3933] = {.lex_state = 45, .external_lex_state = 5}, [3934] = {.lex_state = 45, .external_lex_state = 5}, - [3935] = {.lex_state = 46, .external_lex_state = 6}, - [3936] = {.lex_state = 45, .external_lex_state = 6}, + [3935] = {.lex_state = 45, .external_lex_state = 5}, + [3936] = {.lex_state = 46, .external_lex_state = 6}, [3937] = {.lex_state = 46, .external_lex_state = 6}, [3938] = {.lex_state = 46, .external_lex_state = 6}, - [3939] = {.lex_state = 45, .external_lex_state = 5}, - [3940] = {.lex_state = 45, .external_lex_state = 5}, + [3939] = {.lex_state = 46, .external_lex_state = 6}, + [3940] = {.lex_state = 46, .external_lex_state = 6}, [3941] = {.lex_state = 46, .external_lex_state = 6}, - [3942] = {.lex_state = 45, .external_lex_state = 5}, - [3943] = {.lex_state = 45, .external_lex_state = 5}, + [3942] = {.lex_state = 46, .external_lex_state = 6}, + [3943] = {.lex_state = 45, .external_lex_state = 6}, [3944] = {.lex_state = 46, .external_lex_state = 6}, - [3945] = {.lex_state = 46, .external_lex_state = 6}, - [3946] = {.lex_state = 45, .external_lex_state = 5}, - [3947] = {.lex_state = 46, .external_lex_state = 6}, + [3945] = {.lex_state = 45, .external_lex_state = 5}, + [3946] = {.lex_state = 46, .external_lex_state = 5}, + [3947] = {.lex_state = 45, .external_lex_state = 5}, [3948] = {.lex_state = 46, .external_lex_state = 6}, - [3949] = {.lex_state = 46, .external_lex_state = 6}, - [3950] = {.lex_state = 45, .external_lex_state = 5}, - [3951] = {.lex_state = 46, .external_lex_state = 6}, - [3952] = {.lex_state = 46, .external_lex_state = 5}, + [3949] = {.lex_state = 45, .external_lex_state = 5}, + [3950] = {.lex_state = 46, .external_lex_state = 6}, + [3951] = {.lex_state = 45, .external_lex_state = 5}, + [3952] = {.lex_state = 46, .external_lex_state = 6}, [3953] = {.lex_state = 46, .external_lex_state = 5}, - [3954] = {.lex_state = 45, .external_lex_state = 2}, + [3954] = {.lex_state = 46, .external_lex_state = 6}, [3955] = {.lex_state = 46, .external_lex_state = 6}, [3956] = {.lex_state = 45, .external_lex_state = 5}, [3957] = {.lex_state = 46, .external_lex_state = 6}, [3958] = {.lex_state = 46, .external_lex_state = 6}, - [3959] = {.lex_state = 46, .external_lex_state = 5}, + [3959] = {.lex_state = 45, .external_lex_state = 5}, [3960] = {.lex_state = 46, .external_lex_state = 6}, - [3961] = {.lex_state = 46, .external_lex_state = 5}, + [3961] = {.lex_state = 46, .external_lex_state = 6}, [3962] = {.lex_state = 46, .external_lex_state = 6}, - [3963] = {.lex_state = 46, .external_lex_state = 6}, - [3964] = {.lex_state = 45, .external_lex_state = 5}, + [3963] = {.lex_state = 46, .external_lex_state = 5}, + [3964] = {.lex_state = 46, .external_lex_state = 6}, [3965] = {.lex_state = 46, .external_lex_state = 6}, [3966] = {.lex_state = 46, .external_lex_state = 6}, [3967] = {.lex_state = 46, .external_lex_state = 6}, - [3968] = {.lex_state = 46, .external_lex_state = 6}, - [3969] = {.lex_state = 46, .external_lex_state = 6}, + [3968] = {.lex_state = 46, .external_lex_state = 5}, + [3969] = {.lex_state = 45, .external_lex_state = 5}, [3970] = {.lex_state = 46, .external_lex_state = 6}, - [3971] = {.lex_state = 45, .external_lex_state = 5}, - [3972] = {.lex_state = 45, .external_lex_state = 5}, - [3973] = {.lex_state = 45, .external_lex_state = 5}, + [3971] = {.lex_state = 46, .external_lex_state = 6}, + [3972] = {.lex_state = 45, .external_lex_state = 2}, + [3973] = {.lex_state = 46, .external_lex_state = 6}, [3974] = {.lex_state = 46, .external_lex_state = 6}, [3975] = {.lex_state = 46, .external_lex_state = 6}, [3976] = {.lex_state = 46, .external_lex_state = 6}, - [3977] = {.lex_state = 46, .external_lex_state = 6}, - [3978] = {.lex_state = 45, .external_lex_state = 5}, - [3979] = {.lex_state = 46, .external_lex_state = 6}, - [3980] = {.lex_state = 46, .external_lex_state = 6}, + [3977] = {.lex_state = 45, .external_lex_state = 5}, + [3978] = {.lex_state = 46, .external_lex_state = 6}, + [3979] = {.lex_state = 46, .external_lex_state = 5}, + [3980] = {.lex_state = 45, .external_lex_state = 5}, [3981] = {.lex_state = 45, .external_lex_state = 5}, - [3982] = {.lex_state = 45, .external_lex_state = 5}, - [3983] = {.lex_state = 46, .external_lex_state = 6}, - [3984] = {.lex_state = 45, .external_lex_state = 5}, - [3985] = {.lex_state = 45, .external_lex_state = 5}, - [3986] = {.lex_state = 46, .external_lex_state = 6}, + [3982] = {.lex_state = 46, .external_lex_state = 5}, + [3983] = {.lex_state = 45, .external_lex_state = 5}, + [3984] = {.lex_state = 46, .external_lex_state = 5}, + [3985] = {.lex_state = 46, .external_lex_state = 6}, + [3986] = {.lex_state = 45, .external_lex_state = 5}, [3987] = {.lex_state = 45, .external_lex_state = 5}, [3988] = {.lex_state = 46, .external_lex_state = 6}, [3989] = {.lex_state = 45, .external_lex_state = 5}, [3990] = {.lex_state = 46, .external_lex_state = 6}, - [3991] = {.lex_state = 46, .external_lex_state = 5}, + [3991] = {.lex_state = 45, .external_lex_state = 5}, [3992] = {.lex_state = 45, .external_lex_state = 5}, [3993] = {.lex_state = 45, .external_lex_state = 5}, - [3994] = {.lex_state = 45, .external_lex_state = 5}, + [3994] = {.lex_state = 46, .external_lex_state = 6}, [3995] = {.lex_state = 45, .external_lex_state = 5}, - [3996] = {.lex_state = 46, .external_lex_state = 6}, - [3997] = {.lex_state = 46, .external_lex_state = 5}, + [3996] = {.lex_state = 45, .external_lex_state = 5}, + [3997] = {.lex_state = 45, .external_lex_state = 5}, [3998] = {.lex_state = 45, .external_lex_state = 5}, - [3999] = {.lex_state = 46, .external_lex_state = 5}, + [3999] = {.lex_state = 45, .external_lex_state = 5}, [4000] = {.lex_state = 45, .external_lex_state = 5}, - [4001] = {.lex_state = 45, .external_lex_state = 5}, + [4001] = {.lex_state = 46, .external_lex_state = 6}, [4002] = {.lex_state = 45, .external_lex_state = 5}, [4003] = {.lex_state = 45, .external_lex_state = 5}, [4004] = {.lex_state = 45, .external_lex_state = 5}, [4005] = {.lex_state = 45, .external_lex_state = 5}, [4006] = {.lex_state = 45, .external_lex_state = 5}, - [4007] = {.lex_state = 50, .external_lex_state = 2}, + [4007] = {.lex_state = 45, .external_lex_state = 5}, [4008] = {.lex_state = 45, .external_lex_state = 5}, [4009] = {.lex_state = 45, .external_lex_state = 5}, - [4010] = {.lex_state = 50, .external_lex_state = 2}, + [4010] = {.lex_state = 45, .external_lex_state = 5}, [4011] = {.lex_state = 45, .external_lex_state = 5}, [4012] = {.lex_state = 45, .external_lex_state = 5}, [4013] = {.lex_state = 45, .external_lex_state = 5}, [4014] = {.lex_state = 45, .external_lex_state = 5}, [4015] = {.lex_state = 45, .external_lex_state = 5}, [4016] = {.lex_state = 45, .external_lex_state = 5}, - [4017] = {.lex_state = 45, .external_lex_state = 5}, - [4018] = {.lex_state = 50, .external_lex_state = 2}, + [4017] = {.lex_state = 50, .external_lex_state = 2}, + [4018] = {.lex_state = 45, .external_lex_state = 5}, [4019] = {.lex_state = 45, .external_lex_state = 5}, [4020] = {.lex_state = 45, .external_lex_state = 5}, [4021] = {.lex_state = 45, .external_lex_state = 5}, - [4022] = {.lex_state = 45, .external_lex_state = 2}, + [4022] = {.lex_state = 45, .external_lex_state = 5}, [4023] = {.lex_state = 45, .external_lex_state = 5}, - [4024] = {.lex_state = 45, .external_lex_state = 5}, + [4024] = {.lex_state = 50, .external_lex_state = 2}, [4025] = {.lex_state = 45, .external_lex_state = 5}, [4026] = {.lex_state = 45, .external_lex_state = 5}, [4027] = {.lex_state = 45, .external_lex_state = 5}, @@ -24293,28 +24299,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4030] = {.lex_state = 45, .external_lex_state = 5}, [4031] = {.lex_state = 45, .external_lex_state = 5}, [4032] = {.lex_state = 45, .external_lex_state = 5}, - [4033] = {.lex_state = 45, .external_lex_state = 5}, + [4033] = {.lex_state = 45, .external_lex_state = 6}, [4034] = {.lex_state = 45, .external_lex_state = 5}, - [4035] = {.lex_state = 50, .external_lex_state = 2}, + [4035] = {.lex_state = 45, .external_lex_state = 5}, [4036] = {.lex_state = 45, .external_lex_state = 5}, [4037] = {.lex_state = 45, .external_lex_state = 5}, [4038] = {.lex_state = 45, .external_lex_state = 5}, - [4039] = {.lex_state = 45, .external_lex_state = 5}, + [4039] = {.lex_state = 50, .external_lex_state = 2}, [4040] = {.lex_state = 45, .external_lex_state = 5}, - [4041] = {.lex_state = 45, .external_lex_state = 5}, + [4041] = {.lex_state = 50, .external_lex_state = 2}, [4042] = {.lex_state = 45, .external_lex_state = 5}, [4043] = {.lex_state = 45, .external_lex_state = 5}, [4044] = {.lex_state = 45, .external_lex_state = 5}, - [4045] = {.lex_state = 45, .external_lex_state = 6}, - [4046] = {.lex_state = 45, .external_lex_state = 5}, + [4045] = {.lex_state = 45, .external_lex_state = 5}, + [4046] = {.lex_state = 45, .external_lex_state = 2}, [4047] = {.lex_state = 45, .external_lex_state = 5}, [4048] = {.lex_state = 45, .external_lex_state = 5}, - [4049] = {.lex_state = 45, .external_lex_state = 5}, - [4050] = {.lex_state = 50, .external_lex_state = 2}, + [4049] = {.lex_state = 50, .external_lex_state = 2}, + [4050] = {.lex_state = 45, .external_lex_state = 5}, [4051] = {.lex_state = 45, .external_lex_state = 5}, [4052] = {.lex_state = 45, .external_lex_state = 5}, - [4053] = {.lex_state = 46, .external_lex_state = 6}, - [4054] = {.lex_state = 46, .external_lex_state = 6}, + [4053] = {.lex_state = 45, .external_lex_state = 5}, + [4054] = {.lex_state = 45, .external_lex_state = 5}, [4055] = {.lex_state = 45, .external_lex_state = 5}, [4056] = {.lex_state = 45, .external_lex_state = 5}, [4057] = {.lex_state = 45, .external_lex_state = 5}, @@ -24322,7 +24328,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4059] = {.lex_state = 45, .external_lex_state = 5}, [4060] = {.lex_state = 45, .external_lex_state = 5}, [4061] = {.lex_state = 45, .external_lex_state = 5}, - [4062] = {.lex_state = 45, .external_lex_state = 5}, + [4062] = {.lex_state = 46, .external_lex_state = 6}, [4063] = {.lex_state = 45, .external_lex_state = 5}, [4064] = {.lex_state = 45, .external_lex_state = 5}, [4065] = {.lex_state = 45, .external_lex_state = 5}, @@ -24330,15 +24336,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4067] = {.lex_state = 45, .external_lex_state = 5}, [4068] = {.lex_state = 45, .external_lex_state = 5}, [4069] = {.lex_state = 45, .external_lex_state = 5}, - [4070] = {.lex_state = 45, .external_lex_state = 5}, - [4071] = {.lex_state = 45, .external_lex_state = 5}, + [4070] = {.lex_state = 46, .external_lex_state = 6}, + [4071] = {.lex_state = 46, .external_lex_state = 6}, [4072] = {.lex_state = 45, .external_lex_state = 5}, [4073] = {.lex_state = 45, .external_lex_state = 5}, [4074] = {.lex_state = 45, .external_lex_state = 5}, - [4075] = {.lex_state = 46, .external_lex_state = 6}, - [4076] = {.lex_state = 46, .external_lex_state = 6}, - [4077] = {.lex_state = 46, .external_lex_state = 6}, - [4078] = {.lex_state = 45, .external_lex_state = 5}, + [4075] = {.lex_state = 45, .external_lex_state = 5}, + [4076] = {.lex_state = 45, .external_lex_state = 5}, + [4077] = {.lex_state = 45, .external_lex_state = 5}, + [4078] = {.lex_state = 50, .external_lex_state = 2}, [4079] = {.lex_state = 45, .external_lex_state = 5}, [4080] = {.lex_state = 45, .external_lex_state = 5}, [4081] = {.lex_state = 45, .external_lex_state = 5}, @@ -24358,811 +24364,811 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4095] = {.lex_state = 45, .external_lex_state = 5}, [4096] = {.lex_state = 45, .external_lex_state = 5}, [4097] = {.lex_state = 45, .external_lex_state = 5}, - [4098] = {.lex_state = 45, .external_lex_state = 5}, + [4098] = {.lex_state = 46, .external_lex_state = 6}, [4099] = {.lex_state = 45, .external_lex_state = 5}, [4100] = {.lex_state = 45, .external_lex_state = 6}, - [4101] = {.lex_state = 45, .external_lex_state = 6}, - [4102] = {.lex_state = 45, .external_lex_state = 5}, - [4103] = {.lex_state = 45, .external_lex_state = 6}, + [4101] = {.lex_state = 45, .external_lex_state = 5}, + [4102] = {.lex_state = 46, .external_lex_state = 6}, + [4103] = {.lex_state = 45, .external_lex_state = 5}, [4104] = {.lex_state = 45, .external_lex_state = 5}, - [4105] = {.lex_state = 46, .external_lex_state = 6}, + [4105] = {.lex_state = 45, .external_lex_state = 5}, [4106] = {.lex_state = 45, .external_lex_state = 5}, [4107] = {.lex_state = 46, .external_lex_state = 6}, [4108] = {.lex_state = 45, .external_lex_state = 5}, [4109] = {.lex_state = 45, .external_lex_state = 5}, [4110] = {.lex_state = 45, .external_lex_state = 5}, - [4111] = {.lex_state = 50, .external_lex_state = 2}, - [4112] = {.lex_state = 45, .external_lex_state = 5}, + [4111] = {.lex_state = 46, .external_lex_state = 6}, + [4112] = {.lex_state = 45, .external_lex_state = 6}, [4113] = {.lex_state = 45, .external_lex_state = 5}, [4114] = {.lex_state = 45, .external_lex_state = 5}, [4115] = {.lex_state = 45, .external_lex_state = 5}, - [4116] = {.lex_state = 69, .external_lex_state = 2}, - [4117] = {.lex_state = 69, .external_lex_state = 2}, + [4116] = {.lex_state = 45, .external_lex_state = 6}, + [4117] = {.lex_state = 45, .external_lex_state = 5}, [4118] = {.lex_state = 69, .external_lex_state = 2}, - [4119] = {.lex_state = 69, .external_lex_state = 2}, + [4119] = {.lex_state = 349, .external_lex_state = 5}, [4120] = {.lex_state = 69, .external_lex_state = 2}, - [4121] = {.lex_state = 349, .external_lex_state = 5}, - [4122] = {.lex_state = 69, .external_lex_state = 2}, + [4121] = {.lex_state = 45, .external_lex_state = 2}, + [4122] = {.lex_state = 45, .external_lex_state = 6}, [4123] = {.lex_state = 69, .external_lex_state = 2}, [4124] = {.lex_state = 45, .external_lex_state = 6}, - [4125] = {.lex_state = 69, .external_lex_state = 2}, - [4126] = {.lex_state = 45, .external_lex_state = 5}, - [4127] = {.lex_state = 69, .external_lex_state = 2}, - [4128] = {.lex_state = 349, .external_lex_state = 5}, + [4125] = {.lex_state = 45, .external_lex_state = 5}, + [4126] = {.lex_state = 349, .external_lex_state = 5}, + [4127] = {.lex_state = 45, .external_lex_state = 6}, + [4128] = {.lex_state = 69, .external_lex_state = 2}, [4129] = {.lex_state = 69, .external_lex_state = 2}, [4130] = {.lex_state = 69, .external_lex_state = 2}, - [4131] = {.lex_state = 50, .external_lex_state = 2}, - [4132] = {.lex_state = 46, .external_lex_state = 5}, - [4133] = {.lex_state = 50, .external_lex_state = 2}, - [4134] = {.lex_state = 46, .external_lex_state = 5}, + [4131] = {.lex_state = 45, .external_lex_state = 6}, + [4132] = {.lex_state = 69, .external_lex_state = 2}, + [4133] = {.lex_state = 45, .external_lex_state = 5}, + [4134] = {.lex_state = 69, .external_lex_state = 2}, [4135] = {.lex_state = 69, .external_lex_state = 2}, - [4136] = {.lex_state = 69, .external_lex_state = 2}, - [4137] = {.lex_state = 69, .external_lex_state = 2}, - [4138] = {.lex_state = 52, .external_lex_state = 2}, - [4139] = {.lex_state = 45, .external_lex_state = 6}, - [4140] = {.lex_state = 349, .external_lex_state = 5}, - [4141] = {.lex_state = 69, .external_lex_state = 2}, - [4142] = {.lex_state = 45, .external_lex_state = 6}, + [4136] = {.lex_state = 50, .external_lex_state = 2}, + [4137] = {.lex_state = 52, .external_lex_state = 2}, + [4138] = {.lex_state = 69, .external_lex_state = 2}, + [4139] = {.lex_state = 69, .external_lex_state = 2}, + [4140] = {.lex_state = 50, .external_lex_state = 2}, + [4141] = {.lex_state = 46, .external_lex_state = 5}, + [4142] = {.lex_state = 69, .external_lex_state = 2}, [4143] = {.lex_state = 69, .external_lex_state = 2}, - [4144] = {.lex_state = 45, .external_lex_state = 5}, - [4145] = {.lex_state = 45, .external_lex_state = 6}, - [4146] = {.lex_state = 45, .external_lex_state = 2}, - [4147] = {.lex_state = 50, .external_lex_state = 2}, - [4148] = {.lex_state = 45, .external_lex_state = 6}, + [4144] = {.lex_state = 45, .external_lex_state = 6}, + [4145] = {.lex_state = 46, .external_lex_state = 5}, + [4146] = {.lex_state = 50, .external_lex_state = 2}, + [4147] = {.lex_state = 69, .external_lex_state = 2}, + [4148] = {.lex_state = 69, .external_lex_state = 2}, [4149] = {.lex_state = 69, .external_lex_state = 2}, - [4150] = {.lex_state = 45, .external_lex_state = 2}, - [4151] = {.lex_state = 45, .external_lex_state = 6}, + [4150] = {.lex_state = 349, .external_lex_state = 5}, + [4151] = {.lex_state = 69, .external_lex_state = 2}, [4152] = {.lex_state = 45, .external_lex_state = 6}, - [4153] = {.lex_state = 45, .external_lex_state = 6}, - [4154] = {.lex_state = 45, .external_lex_state = 6}, - [4155] = {.lex_state = 45, .external_lex_state = 6}, - [4156] = {.lex_state = 45, .external_lex_state = 6}, - [4157] = {.lex_state = 45, .external_lex_state = 5}, + [4153] = {.lex_state = 46, .external_lex_state = 2}, + [4154] = {.lex_state = 45, .external_lex_state = 2}, + [4155] = {.lex_state = 55, .external_lex_state = 2}, + [4156] = {.lex_state = 46, .external_lex_state = 2}, + [4157] = {.lex_state = 45, .external_lex_state = 2}, [4158] = {.lex_state = 45, .external_lex_state = 2}, - [4159] = {.lex_state = 46, .external_lex_state = 2}, - [4160] = {.lex_state = 45, .external_lex_state = 5}, - [4161] = {.lex_state = 45, .external_lex_state = 2}, - [4162] = {.lex_state = 45, .external_lex_state = 6}, + [4159] = {.lex_state = 45, .external_lex_state = 2}, + [4160] = {.lex_state = 45, .external_lex_state = 2}, + [4161] = {.lex_state = 45, .external_lex_state = 5}, + [4162] = {.lex_state = 45, .external_lex_state = 5}, [4163] = {.lex_state = 45, .external_lex_state = 5}, - [4164] = {.lex_state = 45, .external_lex_state = 2}, - [4165] = {.lex_state = 45, .external_lex_state = 2}, - [4166] = {.lex_state = 45, .external_lex_state = 6}, - [4167] = {.lex_state = 45, .external_lex_state = 2}, - [4168] = {.lex_state = 45, .external_lex_state = 6}, - [4169] = {.lex_state = 45, .external_lex_state = 6}, - [4170] = {.lex_state = 46, .external_lex_state = 2}, - [4171] = {.lex_state = 45, .external_lex_state = 5}, - [4172] = {.lex_state = 45, .external_lex_state = 5}, - [4173] = {.lex_state = 349, .external_lex_state = 5}, - [4174] = {.lex_state = 45, .external_lex_state = 2}, - [4175] = {.lex_state = 45, .external_lex_state = 5}, - [4176] = {.lex_state = 55, .external_lex_state = 2}, + [4164] = {.lex_state = 45, .external_lex_state = 5}, + [4165] = {.lex_state = 45, .external_lex_state = 5}, + [4166] = {.lex_state = 45, .external_lex_state = 5}, + [4167] = {.lex_state = 45, .external_lex_state = 5}, + [4168] = {.lex_state = 45, .external_lex_state = 5}, + [4169] = {.lex_state = 45, .external_lex_state = 5}, + [4170] = {.lex_state = 45, .external_lex_state = 6}, + [4171] = {.lex_state = 45, .external_lex_state = 2}, + [4172] = {.lex_state = 45, .external_lex_state = 2}, + [4173] = {.lex_state = 45, .external_lex_state = 5}, + [4174] = {.lex_state = 45, .external_lex_state = 6}, + [4175] = {.lex_state = 46, .external_lex_state = 5}, + [4176] = {.lex_state = 45, .external_lex_state = 5}, [4177] = {.lex_state = 45, .external_lex_state = 2}, [4178] = {.lex_state = 45, .external_lex_state = 2}, [4179] = {.lex_state = 45, .external_lex_state = 6}, - [4180] = {.lex_state = 349, .external_lex_state = 5}, - [4181] = {.lex_state = 45, .external_lex_state = 5}, - [4182] = {.lex_state = 55, .external_lex_state = 2}, - [4183] = {.lex_state = 45, .external_lex_state = 6}, + [4180] = {.lex_state = 55, .external_lex_state = 2}, + [4181] = {.lex_state = 46, .external_lex_state = 5}, + [4182] = {.lex_state = 45, .external_lex_state = 2}, + [4183] = {.lex_state = 45, .external_lex_state = 2}, [4184] = {.lex_state = 45, .external_lex_state = 2}, - [4185] = {.lex_state = 55, .external_lex_state = 2}, + [4185] = {.lex_state = 45, .external_lex_state = 2}, [4186] = {.lex_state = 45, .external_lex_state = 2}, - [4187] = {.lex_state = 45, .external_lex_state = 2}, - [4188] = {.lex_state = 45, .external_lex_state = 2}, - [4189] = {.lex_state = 50, .external_lex_state = 2}, - [4190] = {.lex_state = 45, .external_lex_state = 2}, - [4191] = {.lex_state = 45, .external_lex_state = 2}, - [4192] = {.lex_state = 46, .external_lex_state = 2}, - [4193] = {.lex_state = 45, .external_lex_state = 5}, - [4194] = {.lex_state = 45, .external_lex_state = 5}, + [4187] = {.lex_state = 45, .external_lex_state = 5}, + [4188] = {.lex_state = 45, .external_lex_state = 5}, + [4189] = {.lex_state = 55, .external_lex_state = 2}, + [4190] = {.lex_state = 45, .external_lex_state = 5}, + [4191] = {.lex_state = 45, .external_lex_state = 6}, + [4192] = {.lex_state = 45, .external_lex_state = 2}, + [4193] = {.lex_state = 45, .external_lex_state = 6}, + [4194] = {.lex_state = 45, .external_lex_state = 6}, [4195] = {.lex_state = 45, .external_lex_state = 5}, - [4196] = {.lex_state = 45, .external_lex_state = 2}, - [4197] = {.lex_state = 50, .external_lex_state = 2}, + [4196] = {.lex_state = 45, .external_lex_state = 5}, + [4197] = {.lex_state = 55, .external_lex_state = 2}, [4198] = {.lex_state = 45, .external_lex_state = 6}, - [4199] = {.lex_state = 349, .external_lex_state = 5}, - [4200] = {.lex_state = 45, .external_lex_state = 5}, + [4199] = {.lex_state = 45, .external_lex_state = 5}, + [4200] = {.lex_state = 50, .external_lex_state = 2}, [4201] = {.lex_state = 45, .external_lex_state = 5}, - [4202] = {.lex_state = 45, .external_lex_state = 2}, + [4202] = {.lex_state = 45, .external_lex_state = 6}, [4203] = {.lex_state = 45, .external_lex_state = 6}, - [4204] = {.lex_state = 45, .external_lex_state = 5}, - [4205] = {.lex_state = 45, .external_lex_state = 6}, - [4206] = {.lex_state = 45, .external_lex_state = 6}, + [4204] = {.lex_state = 46, .external_lex_state = 2}, + [4205] = {.lex_state = 45, .external_lex_state = 5}, + [4206] = {.lex_state = 45, .external_lex_state = 5}, [4207] = {.lex_state = 45, .external_lex_state = 6}, [4208] = {.lex_state = 45, .external_lex_state = 6}, - [4209] = {.lex_state = 45, .external_lex_state = 6}, + [4209] = {.lex_state = 50, .external_lex_state = 2}, [4210] = {.lex_state = 45, .external_lex_state = 6}, - [4211] = {.lex_state = 45, .external_lex_state = 6}, + [4211] = {.lex_state = 45, .external_lex_state = 2}, [4212] = {.lex_state = 45, .external_lex_state = 6}, [4213] = {.lex_state = 45, .external_lex_state = 6}, [4214] = {.lex_state = 45, .external_lex_state = 6}, - [4215] = {.lex_state = 45, .external_lex_state = 5}, + [4215] = {.lex_state = 45, .external_lex_state = 6}, [4216] = {.lex_state = 45, .external_lex_state = 6}, - [4217] = {.lex_state = 45, .external_lex_state = 5}, + [4217] = {.lex_state = 45, .external_lex_state = 6}, [4218] = {.lex_state = 45, .external_lex_state = 6}, - [4219] = {.lex_state = 45, .external_lex_state = 5}, + [4219] = {.lex_state = 45, .external_lex_state = 6}, [4220] = {.lex_state = 45, .external_lex_state = 6}, [4221] = {.lex_state = 45, .external_lex_state = 6}, [4222] = {.lex_state = 45, .external_lex_state = 6}, - [4223] = {.lex_state = 45, .external_lex_state = 5}, - [4224] = {.lex_state = 45, .external_lex_state = 2}, - [4225] = {.lex_state = 46, .external_lex_state = 2}, - [4226] = {.lex_state = 45, .external_lex_state = 2}, - [4227] = {.lex_state = 45, .external_lex_state = 6}, - [4228] = {.lex_state = 50, .external_lex_state = 2}, - [4229] = {.lex_state = 45, .external_lex_state = 2}, + [4223] = {.lex_state = 45, .external_lex_state = 6}, + [4224] = {.lex_state = 45, .external_lex_state = 6}, + [4225] = {.lex_state = 45, .external_lex_state = 6}, + [4226] = {.lex_state = 349, .external_lex_state = 6}, + [4227] = {.lex_state = 45, .external_lex_state = 5}, + [4228] = {.lex_state = 45, .external_lex_state = 2}, + [4229] = {.lex_state = 45, .external_lex_state = 5}, [4230] = {.lex_state = 46, .external_lex_state = 2}, - [4231] = {.lex_state = 45, .external_lex_state = 2}, - [4232] = {.lex_state = 55, .external_lex_state = 2}, - [4233] = {.lex_state = 46, .external_lex_state = 2}, + [4231] = {.lex_state = 45, .external_lex_state = 5}, + [4232] = {.lex_state = 45, .external_lex_state = 2}, + [4233] = {.lex_state = 45, .external_lex_state = 5}, [4234] = {.lex_state = 45, .external_lex_state = 5}, - [4235] = {.lex_state = 46, .external_lex_state = 2}, - [4236] = {.lex_state = 45, .external_lex_state = 6}, - [4237] = {.lex_state = 349, .external_lex_state = 5}, - [4238] = {.lex_state = 45, .external_lex_state = 5}, - [4239] = {.lex_state = 45, .external_lex_state = 5}, + [4235] = {.lex_state = 45, .external_lex_state = 5}, + [4236] = {.lex_state = 45, .external_lex_state = 2}, + [4237] = {.lex_state = 45, .external_lex_state = 2}, + [4238] = {.lex_state = 45, .external_lex_state = 2}, + [4239] = {.lex_state = 46, .external_lex_state = 2}, [4240] = {.lex_state = 45, .external_lex_state = 2}, [4241] = {.lex_state = 45, .external_lex_state = 2}, - [4242] = {.lex_state = 45, .external_lex_state = 5}, - [4243] = {.lex_state = 45, .external_lex_state = 5}, + [4242] = {.lex_state = 46, .external_lex_state = 2}, + [4243] = {.lex_state = 46, .external_lex_state = 2}, [4244] = {.lex_state = 45, .external_lex_state = 2}, - [4245] = {.lex_state = 45, .external_lex_state = 5}, - [4246] = {.lex_state = 45, .external_lex_state = 5}, - [4247] = {.lex_state = 45, .external_lex_state = 6}, + [4245] = {.lex_state = 45, .external_lex_state = 2}, + [4246] = {.lex_state = 45, .external_lex_state = 2}, + [4247] = {.lex_state = 45, .external_lex_state = 2}, [4248] = {.lex_state = 45, .external_lex_state = 5}, - [4249] = {.lex_state = 45, .external_lex_state = 6}, - [4250] = {.lex_state = 45, .external_lex_state = 2}, - [4251] = {.lex_state = 46, .external_lex_state = 2}, - [4252] = {.lex_state = 45, .external_lex_state = 2}, - [4253] = {.lex_state = 46, .external_lex_state = 5}, + [4249] = {.lex_state = 45, .external_lex_state = 2}, + [4250] = {.lex_state = 45, .external_lex_state = 5}, + [4251] = {.lex_state = 45, .external_lex_state = 5}, + [4252] = {.lex_state = 45, .external_lex_state = 6}, + [4253] = {.lex_state = 45, .external_lex_state = 6}, [4254] = {.lex_state = 45, .external_lex_state = 6}, - [4255] = {.lex_state = 349, .external_lex_state = 2}, - [4256] = {.lex_state = 45, .external_lex_state = 6}, - [4257] = {.lex_state = 45, .external_lex_state = 6}, - [4258] = {.lex_state = 46, .external_lex_state = 2}, - [4259] = {.lex_state = 45, .external_lex_state = 6}, - [4260] = {.lex_state = 45, .external_lex_state = 6}, - [4261] = {.lex_state = 45, .external_lex_state = 2}, - [4262] = {.lex_state = 45, .external_lex_state = 6}, - [4263] = {.lex_state = 45, .external_lex_state = 6}, - [4264] = {.lex_state = 45, .external_lex_state = 5}, + [4255] = {.lex_state = 50, .external_lex_state = 2}, + [4256] = {.lex_state = 349, .external_lex_state = 2}, + [4257] = {.lex_state = 45, .external_lex_state = 2}, + [4258] = {.lex_state = 45, .external_lex_state = 6}, + [4259] = {.lex_state = 55, .external_lex_state = 2}, + [4260] = {.lex_state = 46, .external_lex_state = 2}, + [4261] = {.lex_state = 45, .external_lex_state = 5}, + [4262] = {.lex_state = 45, .external_lex_state = 2}, + [4263] = {.lex_state = 45, .external_lex_state = 5}, + [4264] = {.lex_state = 45, .external_lex_state = 2}, [4265] = {.lex_state = 45, .external_lex_state = 6}, [4266] = {.lex_state = 45, .external_lex_state = 2}, - [4267] = {.lex_state = 46, .external_lex_state = 2}, - [4268] = {.lex_state = 45, .external_lex_state = 2}, + [4267] = {.lex_state = 45, .external_lex_state = 6}, + [4268] = {.lex_state = 45, .external_lex_state = 6}, [4269] = {.lex_state = 45, .external_lex_state = 5}, - [4270] = {.lex_state = 45, .external_lex_state = 2}, + [4270] = {.lex_state = 45, .external_lex_state = 6}, [4271] = {.lex_state = 45, .external_lex_state = 5}, [4272] = {.lex_state = 45, .external_lex_state = 6}, - [4273] = {.lex_state = 45, .external_lex_state = 6}, - [4274] = {.lex_state = 45, .external_lex_state = 5}, + [4273] = {.lex_state = 45, .external_lex_state = 5}, + [4274] = {.lex_state = 45, .external_lex_state = 2}, [4275] = {.lex_state = 45, .external_lex_state = 2}, [4276] = {.lex_state = 45, .external_lex_state = 2}, - [4277] = {.lex_state = 55, .external_lex_state = 2}, + [4277] = {.lex_state = 46, .external_lex_state = 2}, [4278] = {.lex_state = 45, .external_lex_state = 5}, [4279] = {.lex_state = 45, .external_lex_state = 5}, - [4280] = {.lex_state = 45, .external_lex_state = 5}, + [4280] = {.lex_state = 45, .external_lex_state = 2}, [4281] = {.lex_state = 45, .external_lex_state = 2}, - [4282] = {.lex_state = 45, .external_lex_state = 5}, - [4283] = {.lex_state = 45, .external_lex_state = 2}, + [4282] = {.lex_state = 45, .external_lex_state = 2}, + [4283] = {.lex_state = 349, .external_lex_state = 5}, [4284] = {.lex_state = 45, .external_lex_state = 2}, - [4285] = {.lex_state = 46, .external_lex_state = 5}, - [4286] = {.lex_state = 55, .external_lex_state = 2}, - [4287] = {.lex_state = 45, .external_lex_state = 2}, - [4288] = {.lex_state = 45, .external_lex_state = 6}, - [4289] = {.lex_state = 45, .external_lex_state = 6}, - [4290] = {.lex_state = 45, .external_lex_state = 2}, - [4291] = {.lex_state = 45, .external_lex_state = 6}, - [4292] = {.lex_state = 45, .external_lex_state = 2}, - [4293] = {.lex_state = 45, .external_lex_state = 6}, - [4294] = {.lex_state = 45, .external_lex_state = 6}, - [4295] = {.lex_state = 45, .external_lex_state = 2}, - [4296] = {.lex_state = 45, .external_lex_state = 6}, - [4297] = {.lex_state = 45, .external_lex_state = 6}, + [4285] = {.lex_state = 45, .external_lex_state = 6}, + [4286] = {.lex_state = 45, .external_lex_state = 6}, + [4287] = {.lex_state = 45, .external_lex_state = 6}, + [4288] = {.lex_state = 45, .external_lex_state = 2}, + [4289] = {.lex_state = 46, .external_lex_state = 2}, + [4290] = {.lex_state = 46, .external_lex_state = 2}, + [4291] = {.lex_state = 45, .external_lex_state = 2}, + [4292] = {.lex_state = 349, .external_lex_state = 5}, + [4293] = {.lex_state = 45, .external_lex_state = 5}, + [4294] = {.lex_state = 55, .external_lex_state = 2}, + [4295] = {.lex_state = 349, .external_lex_state = 5}, + [4296] = {.lex_state = 45, .external_lex_state = 2}, + [4297] = {.lex_state = 45, .external_lex_state = 5}, [4298] = {.lex_state = 45, .external_lex_state = 6}, - [4299] = {.lex_state = 45, .external_lex_state = 5}, - [4300] = {.lex_state = 46, .external_lex_state = 2}, - [4301] = {.lex_state = 45, .external_lex_state = 5}, - [4302] = {.lex_state = 45, .external_lex_state = 2}, - [4303] = {.lex_state = 349, .external_lex_state = 6}, - [4304] = {.lex_state = 45, .external_lex_state = 6}, - [4305] = {.lex_state = 45, .external_lex_state = 6}, + [4299] = {.lex_state = 45, .external_lex_state = 6}, + [4300] = {.lex_state = 45, .external_lex_state = 6}, + [4301] = {.lex_state = 349, .external_lex_state = 5}, + [4302] = {.lex_state = 45, .external_lex_state = 6}, + [4303] = {.lex_state = 45, .external_lex_state = 5}, + [4304] = {.lex_state = 45, .external_lex_state = 2}, + [4305] = {.lex_state = 45, .external_lex_state = 5}, [4306] = {.lex_state = 45, .external_lex_state = 2}, - [4307] = {.lex_state = 45, .external_lex_state = 6}, - [4308] = {.lex_state = 45, .external_lex_state = 5}, - [4309] = {.lex_state = 45, .external_lex_state = 5}, - [4310] = {.lex_state = 45, .external_lex_state = 6}, + [4307] = {.lex_state = 46, .external_lex_state = 2}, + [4308] = {.lex_state = 45, .external_lex_state = 6}, + [4309] = {.lex_state = 45, .external_lex_state = 6}, + [4310] = {.lex_state = 45, .external_lex_state = 2}, [4311] = {.lex_state = 45, .external_lex_state = 6}, - [4312] = {.lex_state = 45, .external_lex_state = 6}, - [4313] = {.lex_state = 45, .external_lex_state = 2}, - [4314] = {.lex_state = 45, .external_lex_state = 5}, - [4315] = {.lex_state = 45, .external_lex_state = 2}, - [4316] = {.lex_state = 45, .external_lex_state = 2}, - [4317] = {.lex_state = 45, .external_lex_state = 2}, + [4312] = {.lex_state = 45, .external_lex_state = 2}, + [4313] = {.lex_state = 349, .external_lex_state = 5}, + [4314] = {.lex_state = 45, .external_lex_state = 2}, + [4315] = {.lex_state = 45, .external_lex_state = 6}, + [4316] = {.lex_state = 45, .external_lex_state = 6}, + [4317] = {.lex_state = 349, .external_lex_state = 6}, [4318] = {.lex_state = 45, .external_lex_state = 6}, [4319] = {.lex_state = 45, .external_lex_state = 6}, [4320] = {.lex_state = 45, .external_lex_state = 6}, - [4321] = {.lex_state = 46, .external_lex_state = 2}, - [4322] = {.lex_state = 45, .external_lex_state = 2}, - [4323] = {.lex_state = 349, .external_lex_state = 6}, - [4324] = {.lex_state = 45, .external_lex_state = 2}, + [4321] = {.lex_state = 45, .external_lex_state = 2}, + [4322] = {.lex_state = 45, .external_lex_state = 6}, + [4323] = {.lex_state = 45, .external_lex_state = 6}, + [4324] = {.lex_state = 45, .external_lex_state = 6}, [4325] = {.lex_state = 45, .external_lex_state = 2}, - [4326] = {.lex_state = 45, .external_lex_state = 2}, + [4326] = {.lex_state = 45, .external_lex_state = 6}, [4327] = {.lex_state = 45, .external_lex_state = 2}, - [4328] = {.lex_state = 45, .external_lex_state = 2}, - [4329] = {.lex_state = 45, .external_lex_state = 2}, - [4330] = {.lex_state = 45, .external_lex_state = 5}, - [4331] = {.lex_state = 46, .external_lex_state = 2}, + [4328] = {.lex_state = 45, .external_lex_state = 6}, + [4329] = {.lex_state = 45, .external_lex_state = 5}, + [4330] = {.lex_state = 45, .external_lex_state = 2}, + [4331] = {.lex_state = 45, .external_lex_state = 5}, [4332] = {.lex_state = 46, .external_lex_state = 2}, - [4333] = {.lex_state = 45, .external_lex_state = 2}, + [4333] = {.lex_state = 46, .external_lex_state = 2}, [4334] = {.lex_state = 45, .external_lex_state = 2}, - [4335] = {.lex_state = 45, .external_lex_state = 5}, - [4336] = {.lex_state = 45, .external_lex_state = 5}, - [4337] = {.lex_state = 45, .external_lex_state = 5}, - [4338] = {.lex_state = 45, .external_lex_state = 6}, - [4339] = {.lex_state = 45, .external_lex_state = 5}, - [4340] = {.lex_state = 349, .external_lex_state = 5}, + [4335] = {.lex_state = 349, .external_lex_state = 5}, + [4336] = {.lex_state = 45, .external_lex_state = 2}, + [4337] = {.lex_state = 45, .external_lex_state = 6}, + [4338] = {.lex_state = 45, .external_lex_state = 2}, + [4339] = {.lex_state = 45, .external_lex_state = 2}, + [4340] = {.lex_state = 45, .external_lex_state = 6}, [4341] = {.lex_state = 45, .external_lex_state = 6}, - [4342] = {.lex_state = 349, .external_lex_state = 5}, - [4343] = {.lex_state = 45, .external_lex_state = 2}, + [4342] = {.lex_state = 45, .external_lex_state = 5}, + [4343] = {.lex_state = 45, .external_lex_state = 6}, [4344] = {.lex_state = 45, .external_lex_state = 5}, - [4345] = {.lex_state = 45, .external_lex_state = 5}, - [4346] = {.lex_state = 71, .external_lex_state = 2}, - [4347] = {.lex_state = 62, .external_lex_state = 2}, + [4345] = {.lex_state = 45, .external_lex_state = 6}, + [4346] = {.lex_state = 45, .external_lex_state = 6}, + [4347] = {.lex_state = 45, .external_lex_state = 2}, [4348] = {.lex_state = 62, .external_lex_state = 2}, - [4349] = {.lex_state = 62, .external_lex_state = 2}, - [4350] = {.lex_state = 45, .external_lex_state = 5}, - [4351] = {.lex_state = 45, .external_lex_state = 2}, - [4352] = {.lex_state = 71, .external_lex_state = 2}, - [4353] = {.lex_state = 45, .external_lex_state = 5}, + [4349] = {.lex_state = 71, .external_lex_state = 2}, + [4350] = {.lex_state = 349, .external_lex_state = 7}, + [4351] = {.lex_state = 349, .external_lex_state = 7}, + [4352] = {.lex_state = 62, .external_lex_state = 2}, + [4353] = {.lex_state = 62, .external_lex_state = 2}, [4354] = {.lex_state = 62, .external_lex_state = 2}, - [4355] = {.lex_state = 71, .external_lex_state = 2}, + [4355] = {.lex_state = 62, .external_lex_state = 2}, [4356] = {.lex_state = 349, .external_lex_state = 5}, [4357] = {.lex_state = 349, .external_lex_state = 5}, - [4358] = {.lex_state = 71, .external_lex_state = 2}, - [4359] = {.lex_state = 349, .external_lex_state = 7}, - [4360] = {.lex_state = 349, .external_lex_state = 5}, - [4361] = {.lex_state = 349, .external_lex_state = 7}, - [4362] = {.lex_state = 349, .external_lex_state = 5}, - [4363] = {.lex_state = 62, .external_lex_state = 2}, - [4364] = {.lex_state = 349, .external_lex_state = 7}, - [4365] = {.lex_state = 62, .external_lex_state = 2}, - [4366] = {.lex_state = 349, .external_lex_state = 5}, - [4367] = {.lex_state = 50, .external_lex_state = 2}, - [4368] = {.lex_state = 349, .external_lex_state = 7}, - [4369] = {.lex_state = 62, .external_lex_state = 2}, + [4358] = {.lex_state = 45, .external_lex_state = 5}, + [4359] = {.lex_state = 45, .external_lex_state = 5}, + [4360] = {.lex_state = 45, .external_lex_state = 5}, + [4361] = {.lex_state = 62, .external_lex_state = 2}, + [4362] = {.lex_state = 71, .external_lex_state = 2}, + [4363] = {.lex_state = 45, .external_lex_state = 6}, + [4364] = {.lex_state = 71, .external_lex_state = 2}, + [4365] = {.lex_state = 71, .external_lex_state = 2}, + [4366] = {.lex_state = 349, .external_lex_state = 7}, + [4367] = {.lex_state = 45, .external_lex_state = 2}, + [4368] = {.lex_state = 45, .external_lex_state = 2}, + [4369] = {.lex_state = 349, .external_lex_state = 5}, [4370] = {.lex_state = 62, .external_lex_state = 2}, [4371] = {.lex_state = 62, .external_lex_state = 2}, - [4372] = {.lex_state = 45, .external_lex_state = 5}, - [4373] = {.lex_state = 71, .external_lex_state = 2}, - [4374] = {.lex_state = 71, .external_lex_state = 2}, - [4375] = {.lex_state = 349, .external_lex_state = 7}, + [4372] = {.lex_state = 349, .external_lex_state = 7}, + [4373] = {.lex_state = 349, .external_lex_state = 7}, + [4374] = {.lex_state = 349, .external_lex_state = 7}, + [4375] = {.lex_state = 349, .external_lex_state = 6}, [4376] = {.lex_state = 349, .external_lex_state = 7}, - [4377] = {.lex_state = 349, .external_lex_state = 7}, - [4378] = {.lex_state = 45, .external_lex_state = 6}, - [4379] = {.lex_state = 349, .external_lex_state = 6}, - [4380] = {.lex_state = 45, .external_lex_state = 2}, - [4381] = {.lex_state = 349, .external_lex_state = 7}, + [4377] = {.lex_state = 71, .external_lex_state = 2}, + [4378] = {.lex_state = 71, .external_lex_state = 2}, + [4379] = {.lex_state = 50, .external_lex_state = 2}, + [4380] = {.lex_state = 62, .external_lex_state = 2}, + [4381] = {.lex_state = 349, .external_lex_state = 5}, [4382] = {.lex_state = 349, .external_lex_state = 5}, - [4383] = {.lex_state = 349, .external_lex_state = 5}, - [4384] = {.lex_state = 349, .external_lex_state = 2}, + [4383] = {.lex_state = 45, .external_lex_state = 5}, + [4384] = {.lex_state = 349, .external_lex_state = 7}, [4385] = {.lex_state = 349, .external_lex_state = 5}, - [4386] = {.lex_state = 349, .external_lex_state = 5}, + [4386] = {.lex_state = 46, .external_lex_state = 5}, [4387] = {.lex_state = 349, .external_lex_state = 5}, - [4388] = {.lex_state = 74, .external_lex_state = 2}, + [4388] = {.lex_state = 47, .external_lex_state = 2}, [4389] = {.lex_state = 349, .external_lex_state = 5}, - [4390] = {.lex_state = 349, .external_lex_state = 5}, - [4391] = {.lex_state = 349, .external_lex_state = 5}, + [4390] = {.lex_state = 46, .external_lex_state = 5}, + [4391] = {.lex_state = 349, .external_lex_state = 2}, [4392] = {.lex_state = 47, .external_lex_state = 2}, - [4393] = {.lex_state = 349, .external_lex_state = 5}, - [4394] = {.lex_state = 349, .external_lex_state = 5}, + [4393] = {.lex_state = 349, .external_lex_state = 2}, + [4394] = {.lex_state = 46, .external_lex_state = 5}, [4395] = {.lex_state = 349, .external_lex_state = 2}, [4396] = {.lex_state = 349, .external_lex_state = 2}, [4397] = {.lex_state = 349, .external_lex_state = 5}, [4398] = {.lex_state = 349, .external_lex_state = 2}, - [4399] = {.lex_state = 46, .external_lex_state = 5}, + [4399] = {.lex_state = 349, .external_lex_state = 5}, [4400] = {.lex_state = 349, .external_lex_state = 5}, [4401] = {.lex_state = 349, .external_lex_state = 5}, [4402] = {.lex_state = 349, .external_lex_state = 5}, - [4403] = {.lex_state = 349, .external_lex_state = 5}, - [4404] = {.lex_state = 349, .external_lex_state = 5}, + [4403] = {.lex_state = 46, .external_lex_state = 5}, + [4404] = {.lex_state = 74, .external_lex_state = 2}, [4405] = {.lex_state = 47, .external_lex_state = 2}, [4406] = {.lex_state = 349, .external_lex_state = 5}, - [4407] = {.lex_state = 45, .external_lex_state = 2}, + [4407] = {.lex_state = 349, .external_lex_state = 5}, [4408] = {.lex_state = 349, .external_lex_state = 5}, - [4409] = {.lex_state = 349, .external_lex_state = 5}, - [4410] = {.lex_state = 349, .external_lex_state = 5}, + [4409] = {.lex_state = 45, .external_lex_state = 2}, + [4410] = {.lex_state = 349, .external_lex_state = 2}, [4411] = {.lex_state = 349, .external_lex_state = 2}, [4412] = {.lex_state = 349, .external_lex_state = 5}, - [4413] = {.lex_state = 349, .external_lex_state = 5}, - [4414] = {.lex_state = 349, .external_lex_state = 5}, + [4413] = {.lex_state = 46, .external_lex_state = 5}, + [4414] = {.lex_state = 47, .external_lex_state = 2}, [4415] = {.lex_state = 349, .external_lex_state = 5}, - [4416] = {.lex_state = 45, .external_lex_state = 2}, - [4417] = {.lex_state = 349, .external_lex_state = 5}, + [4416] = {.lex_state = 62, .external_lex_state = 2}, + [4417] = {.lex_state = 47, .external_lex_state = 2}, [4418] = {.lex_state = 349, .external_lex_state = 2}, [4419] = {.lex_state = 349, .external_lex_state = 5}, - [4420] = {.lex_state = 349, .external_lex_state = 5}, + [4420] = {.lex_state = 47, .external_lex_state = 2}, [4421] = {.lex_state = 349, .external_lex_state = 2}, [4422] = {.lex_state = 349, .external_lex_state = 5}, [4423] = {.lex_state = 349, .external_lex_state = 2}, - [4424] = {.lex_state = 349, .external_lex_state = 5}, - [4425] = {.lex_state = 47, .external_lex_state = 2}, - [4426] = {.lex_state = 47, .external_lex_state = 2}, - [4427] = {.lex_state = 349, .external_lex_state = 2}, - [4428] = {.lex_state = 47, .external_lex_state = 2}, - [4429] = {.lex_state = 47, .external_lex_state = 2}, - [4430] = {.lex_state = 47, .external_lex_state = 2}, - [4431] = {.lex_state = 45, .external_lex_state = 2}, - [4432] = {.lex_state = 349, .external_lex_state = 5}, + [4424] = {.lex_state = 47, .external_lex_state = 2}, + [4425] = {.lex_state = 349, .external_lex_state = 5}, + [4426] = {.lex_state = 349, .external_lex_state = 5}, + [4427] = {.lex_state = 349, .external_lex_state = 5}, + [4428] = {.lex_state = 349, .external_lex_state = 5}, + [4429] = {.lex_state = 349, .external_lex_state = 5}, + [4430] = {.lex_state = 349, .external_lex_state = 5}, + [4431] = {.lex_state = 349, .external_lex_state = 5}, + [4432] = {.lex_state = 349, .external_lex_state = 2}, [4433] = {.lex_state = 349, .external_lex_state = 2}, [4434] = {.lex_state = 349, .external_lex_state = 5}, - [4435] = {.lex_state = 349, .external_lex_state = 2}, - [4436] = {.lex_state = 349, .external_lex_state = 5}, - [4437] = {.lex_state = 349, .external_lex_state = 2}, - [4438] = {.lex_state = 349, .external_lex_state = 2}, - [4439] = {.lex_state = 47, .external_lex_state = 2}, - [4440] = {.lex_state = 349, .external_lex_state = 2}, - [4441] = {.lex_state = 45, .external_lex_state = 2}, - [4442] = {.lex_state = 45, .external_lex_state = 2}, - [4443] = {.lex_state = 349, .external_lex_state = 5}, + [4435] = {.lex_state = 47, .external_lex_state = 2}, + [4436] = {.lex_state = 47, .external_lex_state = 2}, + [4437] = {.lex_state = 45, .external_lex_state = 2}, + [4438] = {.lex_state = 349, .external_lex_state = 5}, + [4439] = {.lex_state = 349, .external_lex_state = 5}, + [4440] = {.lex_state = 47, .external_lex_state = 2}, + [4441] = {.lex_state = 349, .external_lex_state = 2}, + [4442] = {.lex_state = 47, .external_lex_state = 2}, + [4443] = {.lex_state = 46, .external_lex_state = 5}, [4444] = {.lex_state = 349, .external_lex_state = 2}, - [4445] = {.lex_state = 349, .external_lex_state = 2}, - [4446] = {.lex_state = 349, .external_lex_state = 2}, - [4447] = {.lex_state = 45, .external_lex_state = 2}, + [4445] = {.lex_state = 349, .external_lex_state = 5}, + [4446] = {.lex_state = 349, .external_lex_state = 5}, + [4447] = {.lex_state = 349, .external_lex_state = 5}, [4448] = {.lex_state = 349, .external_lex_state = 2}, - [4449] = {.lex_state = 349, .external_lex_state = 5}, - [4450] = {.lex_state = 47, .external_lex_state = 2}, + [4449] = {.lex_state = 349, .external_lex_state = 2}, + [4450] = {.lex_state = 349, .external_lex_state = 5}, [4451] = {.lex_state = 349, .external_lex_state = 5}, [4452] = {.lex_state = 349, .external_lex_state = 5}, - [4453] = {.lex_state = 349, .external_lex_state = 5}, - [4454] = {.lex_state = 349, .external_lex_state = 2}, - [4455] = {.lex_state = 74, .external_lex_state = 2}, - [4456] = {.lex_state = 47, .external_lex_state = 2}, - [4457] = {.lex_state = 47, .external_lex_state = 2}, - [4458] = {.lex_state = 349, .external_lex_state = 5}, - [4459] = {.lex_state = 349, .external_lex_state = 5}, - [4460] = {.lex_state = 47, .external_lex_state = 2}, - [4461] = {.lex_state = 46, .external_lex_state = 5}, - [4462] = {.lex_state = 349, .external_lex_state = 5}, - [4463] = {.lex_state = 349, .external_lex_state = 5}, + [4453] = {.lex_state = 47, .external_lex_state = 2}, + [4454] = {.lex_state = 45, .external_lex_state = 2}, + [4455] = {.lex_state = 349, .external_lex_state = 5}, + [4456] = {.lex_state = 349, .external_lex_state = 5}, + [4457] = {.lex_state = 349, .external_lex_state = 5}, + [4458] = {.lex_state = 47, .external_lex_state = 2}, + [4459] = {.lex_state = 45, .external_lex_state = 2}, + [4460] = {.lex_state = 349, .external_lex_state = 5}, + [4461] = {.lex_state = 47, .external_lex_state = 2}, + [4462] = {.lex_state = 45, .external_lex_state = 2}, + [4463] = {.lex_state = 47, .external_lex_state = 2}, [4464] = {.lex_state = 349, .external_lex_state = 5}, - [4465] = {.lex_state = 349, .external_lex_state = 2}, - [4466] = {.lex_state = 349, .external_lex_state = 5}, + [4465] = {.lex_state = 349, .external_lex_state = 5}, + [4466] = {.lex_state = 47, .external_lex_state = 2}, [4467] = {.lex_state = 349, .external_lex_state = 5}, - [4468] = {.lex_state = 45, .external_lex_state = 2}, - [4469] = {.lex_state = 47, .external_lex_state = 2}, + [4468] = {.lex_state = 349, .external_lex_state = 5}, + [4469] = {.lex_state = 349, .external_lex_state = 2}, [4470] = {.lex_state = 46, .external_lex_state = 5}, - [4471] = {.lex_state = 349, .external_lex_state = 2}, - [4472] = {.lex_state = 45, .external_lex_state = 2}, + [4471] = {.lex_state = 45, .external_lex_state = 2}, + [4472] = {.lex_state = 349, .external_lex_state = 5}, [4473] = {.lex_state = 349, .external_lex_state = 5}, [4474] = {.lex_state = 349, .external_lex_state = 5}, [4475] = {.lex_state = 349, .external_lex_state = 5}, - [4476] = {.lex_state = 349, .external_lex_state = 2}, + [4476] = {.lex_state = 349, .external_lex_state = 5}, [4477] = {.lex_state = 349, .external_lex_state = 5}, - [4478] = {.lex_state = 47, .external_lex_state = 2}, - [4479] = {.lex_state = 349, .external_lex_state = 2}, - [4480] = {.lex_state = 47, .external_lex_state = 2}, + [4478] = {.lex_state = 349, .external_lex_state = 5}, + [4479] = {.lex_state = 349, .external_lex_state = 5}, + [4480] = {.lex_state = 349, .external_lex_state = 5}, [4481] = {.lex_state = 349, .external_lex_state = 5}, - [4482] = {.lex_state = 47, .external_lex_state = 2}, + [4482] = {.lex_state = 349, .external_lex_state = 5}, [4483] = {.lex_state = 349, .external_lex_state = 5}, [4484] = {.lex_state = 349, .external_lex_state = 5}, [4485] = {.lex_state = 349, .external_lex_state = 5}, [4486] = {.lex_state = 349, .external_lex_state = 5}, - [4487] = {.lex_state = 47, .external_lex_state = 2}, - [4488] = {.lex_state = 62, .external_lex_state = 2}, + [4487] = {.lex_state = 349, .external_lex_state = 2}, + [4488] = {.lex_state = 349, .external_lex_state = 5}, [4489] = {.lex_state = 349, .external_lex_state = 5}, - [4490] = {.lex_state = 349, .external_lex_state = 2}, - [4491] = {.lex_state = 349, .external_lex_state = 2}, + [4490] = {.lex_state = 349, .external_lex_state = 5}, + [4491] = {.lex_state = 349, .external_lex_state = 5}, [4492] = {.lex_state = 349, .external_lex_state = 5}, - [4493] = {.lex_state = 46, .external_lex_state = 5}, + [4493] = {.lex_state = 349, .external_lex_state = 5}, [4494] = {.lex_state = 349, .external_lex_state = 5}, [4495] = {.lex_state = 349, .external_lex_state = 5}, - [4496] = {.lex_state = 349, .external_lex_state = 5}, + [4496] = {.lex_state = 349, .external_lex_state = 2}, [4497] = {.lex_state = 349, .external_lex_state = 5}, [4498] = {.lex_state = 349, .external_lex_state = 5}, - [4499] = {.lex_state = 349, .external_lex_state = 2}, - [4500] = {.lex_state = 349, .external_lex_state = 2}, + [4499] = {.lex_state = 349, .external_lex_state = 5}, + [4500] = {.lex_state = 349, .external_lex_state = 5}, [4501] = {.lex_state = 349, .external_lex_state = 5}, - [4502] = {.lex_state = 349, .external_lex_state = 2}, + [4502] = {.lex_state = 47, .external_lex_state = 2}, [4503] = {.lex_state = 349, .external_lex_state = 5}, [4504] = {.lex_state = 349, .external_lex_state = 5}, [4505] = {.lex_state = 349, .external_lex_state = 5}, - [4506] = {.lex_state = 45, .external_lex_state = 2}, - [4507] = {.lex_state = 62, .external_lex_state = 2}, - [4508] = {.lex_state = 47, .external_lex_state = 2}, - [4509] = {.lex_state = 47, .external_lex_state = 2}, + [4506] = {.lex_state = 349, .external_lex_state = 5}, + [4507] = {.lex_state = 47, .external_lex_state = 2}, + [4508] = {.lex_state = 349, .external_lex_state = 2}, + [4509] = {.lex_state = 349, .external_lex_state = 5}, [4510] = {.lex_state = 47, .external_lex_state = 2}, - [4511] = {.lex_state = 45, .external_lex_state = 2}, + [4511] = {.lex_state = 47, .external_lex_state = 2}, [4512] = {.lex_state = 349, .external_lex_state = 2}, - [4513] = {.lex_state = 74, .external_lex_state = 2}, - [4514] = {.lex_state = 349, .external_lex_state = 5}, + [4513] = {.lex_state = 349, .external_lex_state = 5}, + [4514] = {.lex_state = 349, .external_lex_state = 2}, [4515] = {.lex_state = 349, .external_lex_state = 5}, - [4516] = {.lex_state = 349, .external_lex_state = 2}, - [4517] = {.lex_state = 349, .external_lex_state = 2}, - [4518] = {.lex_state = 47, .external_lex_state = 2}, - [4519] = {.lex_state = 349, .external_lex_state = 5}, - [4520] = {.lex_state = 349, .external_lex_state = 2}, - [4521] = {.lex_state = 349, .external_lex_state = 2}, + [4516] = {.lex_state = 349, .external_lex_state = 5}, + [4517] = {.lex_state = 349, .external_lex_state = 5}, + [4518] = {.lex_state = 349, .external_lex_state = 5}, + [4519] = {.lex_state = 47, .external_lex_state = 2}, + [4520] = {.lex_state = 349, .external_lex_state = 5}, + [4521] = {.lex_state = 349, .external_lex_state = 6}, [4522] = {.lex_state = 46, .external_lex_state = 5}, - [4523] = {.lex_state = 46, .external_lex_state = 5}, + [4523] = {.lex_state = 349, .external_lex_state = 2}, [4524] = {.lex_state = 349, .external_lex_state = 5}, - [4525] = {.lex_state = 47, .external_lex_state = 2}, - [4526] = {.lex_state = 349, .external_lex_state = 2}, - [4527] = {.lex_state = 349, .external_lex_state = 5}, - [4528] = {.lex_state = 62, .external_lex_state = 2}, + [4525] = {.lex_state = 349, .external_lex_state = 5}, + [4526] = {.lex_state = 349, .external_lex_state = 5}, + [4527] = {.lex_state = 45, .external_lex_state = 2}, + [4528] = {.lex_state = 349, .external_lex_state = 2}, [4529] = {.lex_state = 349, .external_lex_state = 5}, - [4530] = {.lex_state = 50, .external_lex_state = 2}, - [4531] = {.lex_state = 349, .external_lex_state = 5}, - [4532] = {.lex_state = 349, .external_lex_state = 5}, + [4530] = {.lex_state = 349, .external_lex_state = 2}, + [4531] = {.lex_state = 62, .external_lex_state = 2}, + [4532] = {.lex_state = 50, .external_lex_state = 2}, [4533] = {.lex_state = 349, .external_lex_state = 5}, - [4534] = {.lex_state = 62, .external_lex_state = 2}, - [4535] = {.lex_state = 47, .external_lex_state = 2}, - [4536] = {.lex_state = 74, .external_lex_state = 2}, + [4534] = {.lex_state = 349, .external_lex_state = 5}, + [4535] = {.lex_state = 349, .external_lex_state = 5}, + [4536] = {.lex_state = 349, .external_lex_state = 5}, [4537] = {.lex_state = 349, .external_lex_state = 5}, - [4538] = {.lex_state = 47, .external_lex_state = 2}, - [4539] = {.lex_state = 349, .external_lex_state = 5}, - [4540] = {.lex_state = 349, .external_lex_state = 5}, - [4541] = {.lex_state = 47, .external_lex_state = 2}, + [4538] = {.lex_state = 349, .external_lex_state = 6}, + [4539] = {.lex_state = 62, .external_lex_state = 2}, + [4540] = {.lex_state = 47, .external_lex_state = 2}, + [4541] = {.lex_state = 349, .external_lex_state = 5}, [4542] = {.lex_state = 349, .external_lex_state = 5}, - [4543] = {.lex_state = 349, .external_lex_state = 5}, + [4543] = {.lex_state = 45, .external_lex_state = 2}, [4544] = {.lex_state = 349, .external_lex_state = 5}, - [4545] = {.lex_state = 47, .external_lex_state = 2}, - [4546] = {.lex_state = 349, .external_lex_state = 2}, - [4547] = {.lex_state = 349, .external_lex_state = 5}, - [4548] = {.lex_state = 349, .external_lex_state = 2}, - [4549] = {.lex_state = 349, .external_lex_state = 5}, - [4550] = {.lex_state = 47, .external_lex_state = 2}, - [4551] = {.lex_state = 47, .external_lex_state = 2}, - [4552] = {.lex_state = 349, .external_lex_state = 5}, - [4553] = {.lex_state = 62, .external_lex_state = 2}, - [4554] = {.lex_state = 349, .external_lex_state = 5}, + [4545] = {.lex_state = 45, .external_lex_state = 2}, + [4546] = {.lex_state = 349, .external_lex_state = 5}, + [4547] = {.lex_state = 47, .external_lex_state = 2}, + [4548] = {.lex_state = 349, .external_lex_state = 5}, + [4549] = {.lex_state = 349, .external_lex_state = 6}, + [4550] = {.lex_state = 349, .external_lex_state = 6}, + [4551] = {.lex_state = 349, .external_lex_state = 2}, + [4552] = {.lex_state = 349, .external_lex_state = 2}, + [4553] = {.lex_state = 349, .external_lex_state = 6}, + [4554] = {.lex_state = 47, .external_lex_state = 2}, [4555] = {.lex_state = 349, .external_lex_state = 5}, [4556] = {.lex_state = 349, .external_lex_state = 5}, - [4557] = {.lex_state = 349, .external_lex_state = 5}, + [4557] = {.lex_state = 349, .external_lex_state = 6}, [4558] = {.lex_state = 349, .external_lex_state = 5}, - [4559] = {.lex_state = 349, .external_lex_state = 5}, - [4560] = {.lex_state = 349, .external_lex_state = 2}, - [4561] = {.lex_state = 349, .external_lex_state = 5}, + [4559] = {.lex_state = 47, .external_lex_state = 2}, + [4560] = {.lex_state = 349, .external_lex_state = 5}, + [4561] = {.lex_state = 349, .external_lex_state = 2}, [4562] = {.lex_state = 349, .external_lex_state = 2}, - [4563] = {.lex_state = 349, .external_lex_state = 5}, - [4564] = {.lex_state = 349, .external_lex_state = 5}, + [4563] = {.lex_state = 349, .external_lex_state = 2}, + [4564] = {.lex_state = 349, .external_lex_state = 2}, [4565] = {.lex_state = 349, .external_lex_state = 5}, - [4566] = {.lex_state = 47, .external_lex_state = 2}, + [4566] = {.lex_state = 349, .external_lex_state = 2}, [4567] = {.lex_state = 349, .external_lex_state = 5}, [4568] = {.lex_state = 349, .external_lex_state = 5}, - [4569] = {.lex_state = 46, .external_lex_state = 5}, - [4570] = {.lex_state = 349, .external_lex_state = 2}, - [4571] = {.lex_state = 349, .external_lex_state = 5}, + [4569] = {.lex_state = 349, .external_lex_state = 5}, + [4570] = {.lex_state = 349, .external_lex_state = 5}, + [4571] = {.lex_state = 349, .external_lex_state = 2}, [4572] = {.lex_state = 349, .external_lex_state = 5}, - [4573] = {.lex_state = 349, .external_lex_state = 5}, - [4574] = {.lex_state = 349, .external_lex_state = 5}, - [4575] = {.lex_state = 349, .external_lex_state = 2}, - [4576] = {.lex_state = 349, .external_lex_state = 5}, - [4577] = {.lex_state = 349, .external_lex_state = 5}, - [4578] = {.lex_state = 349, .external_lex_state = 5}, - [4579] = {.lex_state = 349, .external_lex_state = 5}, + [4573] = {.lex_state = 74, .external_lex_state = 2}, + [4574] = {.lex_state = 47, .external_lex_state = 2}, + [4575] = {.lex_state = 349, .external_lex_state = 5}, + [4576] = {.lex_state = 349, .external_lex_state = 2}, + [4577] = {.lex_state = 47, .external_lex_state = 2}, + [4578] = {.lex_state = 349, .external_lex_state = 2}, + [4579] = {.lex_state = 349, .external_lex_state = 2}, [4580] = {.lex_state = 349, .external_lex_state = 5}, [4581] = {.lex_state = 349, .external_lex_state = 5}, - [4582] = {.lex_state = 47, .external_lex_state = 2}, - [4583] = {.lex_state = 349, .external_lex_state = 5}, + [4582] = {.lex_state = 349, .external_lex_state = 2}, + [4583] = {.lex_state = 47, .external_lex_state = 2}, [4584] = {.lex_state = 349, .external_lex_state = 5}, - [4585] = {.lex_state = 47, .external_lex_state = 2}, + [4585] = {.lex_state = 349, .external_lex_state = 5}, [4586] = {.lex_state = 349, .external_lex_state = 5}, - [4587] = {.lex_state = 349, .external_lex_state = 5}, - [4588] = {.lex_state = 349, .external_lex_state = 2}, + [4587] = {.lex_state = 349, .external_lex_state = 2}, + [4588] = {.lex_state = 45, .external_lex_state = 2}, [4589] = {.lex_state = 349, .external_lex_state = 5}, [4590] = {.lex_state = 349, .external_lex_state = 5}, - [4591] = {.lex_state = 46, .external_lex_state = 5}, + [4591] = {.lex_state = 349, .external_lex_state = 5}, [4592] = {.lex_state = 349, .external_lex_state = 5}, [4593] = {.lex_state = 349, .external_lex_state = 5}, [4594] = {.lex_state = 349, .external_lex_state = 5}, - [4595] = {.lex_state = 47, .external_lex_state = 2}, - [4596] = {.lex_state = 349, .external_lex_state = 2}, - [4597] = {.lex_state = 349, .external_lex_state = 5}, - [4598] = {.lex_state = 62, .external_lex_state = 2}, - [4599] = {.lex_state = 349, .external_lex_state = 5}, + [4595] = {.lex_state = 349, .external_lex_state = 5}, + [4596] = {.lex_state = 62, .external_lex_state = 2}, + [4597] = {.lex_state = 74, .external_lex_state = 2}, + [4598] = {.lex_state = 74, .external_lex_state = 2}, + [4599] = {.lex_state = 62, .external_lex_state = 2}, [4600] = {.lex_state = 349, .external_lex_state = 5}, [4601] = {.lex_state = 349, .external_lex_state = 5}, [4602] = {.lex_state = 349, .external_lex_state = 5}, - [4603] = {.lex_state = 47, .external_lex_state = 2}, - [4604] = {.lex_state = 45, .external_lex_state = 2}, - [4605] = {.lex_state = 349, .external_lex_state = 5}, - [4606] = {.lex_state = 47, .external_lex_state = 2}, + [4603] = {.lex_state = 349, .external_lex_state = 2}, + [4604] = {.lex_state = 349, .external_lex_state = 5}, + [4605] = {.lex_state = 47, .external_lex_state = 2}, + [4606] = {.lex_state = 45, .external_lex_state = 2}, [4607] = {.lex_state = 349, .external_lex_state = 5}, - [4608] = {.lex_state = 349, .external_lex_state = 5}, - [4609] = {.lex_state = 349, .external_lex_state = 2}, - [4610] = {.lex_state = 349, .external_lex_state = 5}, + [4608] = {.lex_state = 47, .external_lex_state = 2}, + [4609] = {.lex_state = 62, .external_lex_state = 2}, + [4610] = {.lex_state = 47, .external_lex_state = 2}, [4611] = {.lex_state = 349, .external_lex_state = 5}, - [4612] = {.lex_state = 349, .external_lex_state = 5}, + [4612] = {.lex_state = 349, .external_lex_state = 2}, [4613] = {.lex_state = 349, .external_lex_state = 5}, - [4614] = {.lex_state = 45, .external_lex_state = 2}, + [4614] = {.lex_state = 349, .external_lex_state = 5}, [4615] = {.lex_state = 47, .external_lex_state = 2}, [4616] = {.lex_state = 349, .external_lex_state = 5}, [4617] = {.lex_state = 349, .external_lex_state = 5}, - [4618] = {.lex_state = 47, .external_lex_state = 2}, + [4618] = {.lex_state = 349, .external_lex_state = 5}, [4619] = {.lex_state = 349, .external_lex_state = 5}, - [4620] = {.lex_state = 349, .external_lex_state = 5}, - [4621] = {.lex_state = 349, .external_lex_state = 5}, - [4622] = {.lex_state = 62, .external_lex_state = 2}, + [4620] = {.lex_state = 45, .external_lex_state = 2}, + [4621] = {.lex_state = 349, .external_lex_state = 2}, + [4622] = {.lex_state = 349, .external_lex_state = 5}, [4623] = {.lex_state = 47, .external_lex_state = 2}, - [4624] = {.lex_state = 47, .external_lex_state = 2}, - [4625] = {.lex_state = 349, .external_lex_state = 2}, - [4626] = {.lex_state = 349, .external_lex_state = 5}, + [4624] = {.lex_state = 349, .external_lex_state = 2}, + [4625] = {.lex_state = 349, .external_lex_state = 5}, + [4626] = {.lex_state = 74, .external_lex_state = 2}, [4627] = {.lex_state = 349, .external_lex_state = 5}, [4628] = {.lex_state = 349, .external_lex_state = 5}, - [4629] = {.lex_state = 349, .external_lex_state = 6}, - [4630] = {.lex_state = 349, .external_lex_state = 2}, - [4631] = {.lex_state = 349, .external_lex_state = 5}, - [4632] = {.lex_state = 349, .external_lex_state = 5}, + [4629] = {.lex_state = 349, .external_lex_state = 5}, + [4630] = {.lex_state = 56, .external_lex_state = 2}, + [4631] = {.lex_state = 45, .external_lex_state = 2}, + [4632] = {.lex_state = 47, .external_lex_state = 2}, [4633] = {.lex_state = 349, .external_lex_state = 5}, [4634] = {.lex_state = 47, .external_lex_state = 2}, [4635] = {.lex_state = 349, .external_lex_state = 5}, - [4636] = {.lex_state = 349, .external_lex_state = 6}, - [4637] = {.lex_state = 349, .external_lex_state = 2}, - [4638] = {.lex_state = 349, .external_lex_state = 2}, - [4639] = {.lex_state = 349, .external_lex_state = 6}, - [4640] = {.lex_state = 349, .external_lex_state = 6}, - [4641] = {.lex_state = 349, .external_lex_state = 5}, - [4642] = {.lex_state = 349, .external_lex_state = 6}, + [4636] = {.lex_state = 349, .external_lex_state = 2}, + [4637] = {.lex_state = 349, .external_lex_state = 5}, + [4638] = {.lex_state = 62, .external_lex_state = 2}, + [4639] = {.lex_state = 47, .external_lex_state = 2}, + [4640] = {.lex_state = 47, .external_lex_state = 2}, + [4641] = {.lex_state = 47, .external_lex_state = 2}, + [4642] = {.lex_state = 349, .external_lex_state = 2}, [4643] = {.lex_state = 349, .external_lex_state = 5}, - [4644] = {.lex_state = 349, .external_lex_state = 6}, - [4645] = {.lex_state = 349, .external_lex_state = 2}, + [4644] = {.lex_state = 349, .external_lex_state = 5}, + [4645] = {.lex_state = 349, .external_lex_state = 5}, [4646] = {.lex_state = 349, .external_lex_state = 5}, - [4647] = {.lex_state = 46, .external_lex_state = 5}, + [4647] = {.lex_state = 349, .external_lex_state = 2}, [4648] = {.lex_state = 349, .external_lex_state = 5}, [4649] = {.lex_state = 349, .external_lex_state = 5}, - [4650] = {.lex_state = 56, .external_lex_state = 2}, - [4651] = {.lex_state = 74, .external_lex_state = 2}, - [4652] = {.lex_state = 349, .external_lex_state = 2}, - [4653] = {.lex_state = 349, .external_lex_state = 2}, - [4654] = {.lex_state = 349, .external_lex_state = 5}, + [4650] = {.lex_state = 349, .external_lex_state = 2}, + [4651] = {.lex_state = 349, .external_lex_state = 2}, + [4652] = {.lex_state = 47, .external_lex_state = 2}, + [4653] = {.lex_state = 349, .external_lex_state = 5}, + [4654] = {.lex_state = 46, .external_lex_state = 5}, [4655] = {.lex_state = 349, .external_lex_state = 5}, - [4656] = {.lex_state = 349, .external_lex_state = 5}, - [4657] = {.lex_state = 47, .external_lex_state = 2}, - [4658] = {.lex_state = 349, .external_lex_state = 2}, - [4659] = {.lex_state = 349, .external_lex_state = 5}, - [4660] = {.lex_state = 45, .external_lex_state = 2}, - [4661] = {.lex_state = 45, .external_lex_state = 2}, - [4662] = {.lex_state = 349, .external_lex_state = 2}, - [4663] = {.lex_state = 349, .external_lex_state = 6}, - [4664] = {.lex_state = 45, .external_lex_state = 2}, - [4665] = {.lex_state = 349, .external_lex_state = 5}, + [4656] = {.lex_state = 349, .external_lex_state = 6}, + [4657] = {.lex_state = 349, .external_lex_state = 2}, + [4658] = {.lex_state = 349, .external_lex_state = 5}, + [4659] = {.lex_state = 349, .external_lex_state = 7}, + [4660] = {.lex_state = 47, .external_lex_state = 2}, + [4661] = {.lex_state = 349, .external_lex_state = 6}, + [4662] = {.lex_state = 45, .external_lex_state = 2}, + [4663] = {.lex_state = 45, .external_lex_state = 2}, + [4664] = {.lex_state = 349, .external_lex_state = 2}, + [4665] = {.lex_state = 349, .external_lex_state = 7}, [4666] = {.lex_state = 349, .external_lex_state = 2}, - [4667] = {.lex_state = 45, .external_lex_state = 2}, - [4668] = {.lex_state = 349, .external_lex_state = 2}, + [4667] = {.lex_state = 349, .external_lex_state = 5}, + [4668] = {.lex_state = 349, .external_lex_state = 5}, [4669] = {.lex_state = 45, .external_lex_state = 2}, - [4670] = {.lex_state = 349, .external_lex_state = 5}, - [4671] = {.lex_state = 349, .external_lex_state = 6}, - [4672] = {.lex_state = 45, .external_lex_state = 2}, - [4673] = {.lex_state = 349, .external_lex_state = 5}, - [4674] = {.lex_state = 349, .external_lex_state = 5}, + [4670] = {.lex_state = 349, .external_lex_state = 2}, + [4671] = {.lex_state = 45, .external_lex_state = 2}, + [4672] = {.lex_state = 349, .external_lex_state = 5}, + [4673] = {.lex_state = 45, .external_lex_state = 2}, + [4674] = {.lex_state = 45, .external_lex_state = 2}, [4675] = {.lex_state = 349, .external_lex_state = 2}, - [4676] = {.lex_state = 349, .external_lex_state = 7}, + [4676] = {.lex_state = 349, .external_lex_state = 2}, [4677] = {.lex_state = 349, .external_lex_state = 6}, - [4678] = {.lex_state = 47, .external_lex_state = 2}, - [4679] = {.lex_state = 349, .external_lex_state = 6}, - [4680] = {.lex_state = 45, .external_lex_state = 2}, - [4681] = {.lex_state = 45, .external_lex_state = 2}, - [4682] = {.lex_state = 45, .external_lex_state = 2}, - [4683] = {.lex_state = 47, .external_lex_state = 2}, - [4684] = {.lex_state = 45, .external_lex_state = 2}, + [4678] = {.lex_state = 349, .external_lex_state = 2}, + [4679] = {.lex_state = 45, .external_lex_state = 2}, + [4680] = {.lex_state = 47, .external_lex_state = 2}, + [4681] = {.lex_state = 349, .external_lex_state = 5}, + [4682] = {.lex_state = 349, .external_lex_state = 6}, + [4683] = {.lex_state = 349, .external_lex_state = 2}, + [4684] = {.lex_state = 349, .external_lex_state = 2}, [4685] = {.lex_state = 349, .external_lex_state = 6}, - [4686] = {.lex_state = 47, .external_lex_state = 2}, - [4687] = {.lex_state = 349, .external_lex_state = 5}, - [4688] = {.lex_state = 349, .external_lex_state = 6}, + [4686] = {.lex_state = 45, .external_lex_state = 2}, + [4687] = {.lex_state = 45, .external_lex_state = 2}, + [4688] = {.lex_state = 349, .external_lex_state = 5}, [4689] = {.lex_state = 45, .external_lex_state = 2}, [4690] = {.lex_state = 45, .external_lex_state = 2}, - [4691] = {.lex_state = 349, .external_lex_state = 2}, - [4692] = {.lex_state = 62, .external_lex_state = 2}, + [4691] = {.lex_state = 45, .external_lex_state = 2}, + [4692] = {.lex_state = 349, .external_lex_state = 6}, [4693] = {.lex_state = 45, .external_lex_state = 2}, - [4694] = {.lex_state = 349, .external_lex_state = 2}, + [4694] = {.lex_state = 45, .external_lex_state = 2}, [4695] = {.lex_state = 45, .external_lex_state = 2}, - [4696] = {.lex_state = 349, .external_lex_state = 6}, + [4696] = {.lex_state = 45, .external_lex_state = 2}, [4697] = {.lex_state = 45, .external_lex_state = 2}, - [4698] = {.lex_state = 349, .external_lex_state = 5}, - [4699] = {.lex_state = 349, .external_lex_state = 2}, - [4700] = {.lex_state = 45, .external_lex_state = 2}, - [4701] = {.lex_state = 349, .external_lex_state = 6}, + [4698] = {.lex_state = 45, .external_lex_state = 2}, + [4699] = {.lex_state = 349, .external_lex_state = 5}, + [4700] = {.lex_state = 349, .external_lex_state = 5}, + [4701] = {.lex_state = 45, .external_lex_state = 2}, [4702] = {.lex_state = 45, .external_lex_state = 2}, [4703] = {.lex_state = 47, .external_lex_state = 2}, [4704] = {.lex_state = 349, .external_lex_state = 6}, [4705] = {.lex_state = 349, .external_lex_state = 6}, - [4706] = {.lex_state = 47, .external_lex_state = 2}, - [4707] = {.lex_state = 45, .external_lex_state = 2}, - [4708] = {.lex_state = 47, .external_lex_state = 2}, + [4706] = {.lex_state = 349, .external_lex_state = 6}, + [4707] = {.lex_state = 349, .external_lex_state = 7}, + [4708] = {.lex_state = 349, .external_lex_state = 6}, [4709] = {.lex_state = 349, .external_lex_state = 6}, - [4710] = {.lex_state = 45, .external_lex_state = 2}, + [4710] = {.lex_state = 349, .external_lex_state = 6}, [4711] = {.lex_state = 45, .external_lex_state = 2}, - [4712] = {.lex_state = 45, .external_lex_state = 2}, + [4712] = {.lex_state = 349, .external_lex_state = 6}, [4713] = {.lex_state = 45, .external_lex_state = 2}, - [4714] = {.lex_state = 47, .external_lex_state = 2}, - [4715] = {.lex_state = 349, .external_lex_state = 2}, - [4716] = {.lex_state = 47, .external_lex_state = 2}, - [4717] = {.lex_state = 45, .external_lex_state = 2}, - [4718] = {.lex_state = 45, .external_lex_state = 2}, - [4719] = {.lex_state = 45, .external_lex_state = 2}, - [4720] = {.lex_state = 349, .external_lex_state = 5}, + [4714] = {.lex_state = 349, .external_lex_state = 5}, + [4715] = {.lex_state = 349, .external_lex_state = 5}, + [4716] = {.lex_state = 349, .external_lex_state = 6}, + [4717] = {.lex_state = 349, .external_lex_state = 5}, + [4718] = {.lex_state = 349, .external_lex_state = 5}, + [4719] = {.lex_state = 349, .external_lex_state = 6}, + [4720] = {.lex_state = 349, .external_lex_state = 6}, [4721] = {.lex_state = 45, .external_lex_state = 2}, [4722] = {.lex_state = 47, .external_lex_state = 2}, [4723] = {.lex_state = 47, .external_lex_state = 2}, [4724] = {.lex_state = 47, .external_lex_state = 2}, [4725] = {.lex_state = 349, .external_lex_state = 6}, - [4726] = {.lex_state = 349, .external_lex_state = 5}, - [4727] = {.lex_state = 349, .external_lex_state = 2}, - [4728] = {.lex_state = 45, .external_lex_state = 2}, - [4729] = {.lex_state = 349, .external_lex_state = 5}, - [4730] = {.lex_state = 349, .external_lex_state = 6}, - [4731] = {.lex_state = 47, .external_lex_state = 2}, - [4732] = {.lex_state = 62, .external_lex_state = 2}, + [4726] = {.lex_state = 349, .external_lex_state = 7}, + [4727] = {.lex_state = 349, .external_lex_state = 6}, + [4728] = {.lex_state = 349, .external_lex_state = 5}, + [4729] = {.lex_state = 349, .external_lex_state = 6}, + [4730] = {.lex_state = 47, .external_lex_state = 2}, + [4731] = {.lex_state = 45, .external_lex_state = 2}, + [4732] = {.lex_state = 47, .external_lex_state = 2}, [4733] = {.lex_state = 47, .external_lex_state = 2}, - [4734] = {.lex_state = 45, .external_lex_state = 2}, - [4735] = {.lex_state = 349, .external_lex_state = 2}, + [4734] = {.lex_state = 47, .external_lex_state = 2}, + [4735] = {.lex_state = 47, .external_lex_state = 2}, [4736] = {.lex_state = 45, .external_lex_state = 2}, - [4737] = {.lex_state = 45, .external_lex_state = 2}, - [4738] = {.lex_state = 349, .external_lex_state = 6}, - [4739] = {.lex_state = 349, .external_lex_state = 2}, - [4740] = {.lex_state = 349, .external_lex_state = 5}, - [4741] = {.lex_state = 45, .external_lex_state = 2}, - [4742] = {.lex_state = 45, .external_lex_state = 2}, - [4743] = {.lex_state = 349, .external_lex_state = 7}, - [4744] = {.lex_state = 349, .external_lex_state = 5}, - [4745] = {.lex_state = 45, .external_lex_state = 2}, - [4746] = {.lex_state = 349, .external_lex_state = 6}, - [4747] = {.lex_state = 349, .external_lex_state = 5}, - [4748] = {.lex_state = 349, .external_lex_state = 7}, - [4749] = {.lex_state = 47, .external_lex_state = 2}, + [4737] = {.lex_state = 47, .external_lex_state = 2}, + [4738] = {.lex_state = 45, .external_lex_state = 2}, + [4739] = {.lex_state = 349, .external_lex_state = 6}, + [4740] = {.lex_state = 45, .external_lex_state = 2}, + [4741] = {.lex_state = 62, .external_lex_state = 2}, + [4742] = {.lex_state = 349, .external_lex_state = 2}, + [4743] = {.lex_state = 349, .external_lex_state = 6}, + [4744] = {.lex_state = 349, .external_lex_state = 6}, + [4745] = {.lex_state = 349, .external_lex_state = 5}, + [4746] = {.lex_state = 45, .external_lex_state = 2}, + [4747] = {.lex_state = 45, .external_lex_state = 2}, + [4748] = {.lex_state = 349, .external_lex_state = 2}, + [4749] = {.lex_state = 349, .external_lex_state = 6}, [4750] = {.lex_state = 349, .external_lex_state = 5}, - [4751] = {.lex_state = 349, .external_lex_state = 2}, - [4752] = {.lex_state = 47, .external_lex_state = 2}, - [4753] = {.lex_state = 349, .external_lex_state = 5}, - [4754] = {.lex_state = 45, .external_lex_state = 2}, - [4755] = {.lex_state = 47, .external_lex_state = 2}, + [4751] = {.lex_state = 349, .external_lex_state = 5}, + [4752] = {.lex_state = 349, .external_lex_state = 5}, + [4753] = {.lex_state = 349, .external_lex_state = 2}, + [4754] = {.lex_state = 349, .external_lex_state = 2}, + [4755] = {.lex_state = 349, .external_lex_state = 5}, [4756] = {.lex_state = 349, .external_lex_state = 6}, - [4757] = {.lex_state = 349, .external_lex_state = 5}, - [4758] = {.lex_state = 349, .external_lex_state = 2}, - [4759] = {.lex_state = 349, .external_lex_state = 6}, - [4760] = {.lex_state = 47, .external_lex_state = 2}, - [4761] = {.lex_state = 45, .external_lex_state = 2}, + [4757] = {.lex_state = 349, .external_lex_state = 2}, + [4758] = {.lex_state = 45, .external_lex_state = 2}, + [4759] = {.lex_state = 47, .external_lex_state = 2}, + [4760] = {.lex_state = 349, .external_lex_state = 5}, + [4761] = {.lex_state = 349, .external_lex_state = 5}, [4762] = {.lex_state = 47, .external_lex_state = 2}, - [4763] = {.lex_state = 47, .external_lex_state = 2}, + [4763] = {.lex_state = 349, .external_lex_state = 5}, [4764] = {.lex_state = 47, .external_lex_state = 2}, - [4765] = {.lex_state = 349, .external_lex_state = 6}, - [4766] = {.lex_state = 349, .external_lex_state = 2}, - [4767] = {.lex_state = 45, .external_lex_state = 2}, - [4768] = {.lex_state = 349, .external_lex_state = 6}, - [4769] = {.lex_state = 45, .external_lex_state = 2}, - [4770] = {.lex_state = 45, .external_lex_state = 2}, - [4771] = {.lex_state = 349, .external_lex_state = 6}, - [4772] = {.lex_state = 47, .external_lex_state = 2}, - [4773] = {.lex_state = 349, .external_lex_state = 5}, - [4774] = {.lex_state = 349, .external_lex_state = 2}, - [4775] = {.lex_state = 349, .external_lex_state = 5}, - [4776] = {.lex_state = 349, .external_lex_state = 5}, + [4765] = {.lex_state = 47, .external_lex_state = 2}, + [4766] = {.lex_state = 349, .external_lex_state = 5}, + [4767] = {.lex_state = 349, .external_lex_state = 5}, + [4768] = {.lex_state = 45, .external_lex_state = 2}, + [4769] = {.lex_state = 349, .external_lex_state = 2}, + [4770] = {.lex_state = 47, .external_lex_state = 2}, + [4771] = {.lex_state = 349, .external_lex_state = 5}, + [4772] = {.lex_state = 349, .external_lex_state = 2}, + [4773] = {.lex_state = 45, .external_lex_state = 2}, + [4774] = {.lex_state = 62, .external_lex_state = 2}, + [4775] = {.lex_state = 349, .external_lex_state = 2}, + [4776] = {.lex_state = 45, .external_lex_state = 2}, [4777] = {.lex_state = 45, .external_lex_state = 2}, [4778] = {.lex_state = 47, .external_lex_state = 2}, - [4779] = {.lex_state = 45, .external_lex_state = 2}, - [4780] = {.lex_state = 47, .external_lex_state = 2}, - [4781] = {.lex_state = 45, .external_lex_state = 2}, - [4782] = {.lex_state = 349, .external_lex_state = 5}, + [4779] = {.lex_state = 47, .external_lex_state = 2}, + [4780] = {.lex_state = 45, .external_lex_state = 2}, + [4781] = {.lex_state = 349, .external_lex_state = 5}, + [4782] = {.lex_state = 45, .external_lex_state = 2}, [4783] = {.lex_state = 47, .external_lex_state = 2}, - [4784] = {.lex_state = 349, .external_lex_state = 5}, - [4785] = {.lex_state = 349, .external_lex_state = 5}, - [4786] = {.lex_state = 349, .external_lex_state = 5}, + [4784] = {.lex_state = 47, .external_lex_state = 2}, + [4785] = {.lex_state = 47, .external_lex_state = 2}, + [4786] = {.lex_state = 47, .external_lex_state = 2}, [4787] = {.lex_state = 47, .external_lex_state = 2}, - [4788] = {.lex_state = 349, .external_lex_state = 5}, - [4789] = {.lex_state = 349, .external_lex_state = 5}, - [4790] = {.lex_state = 349, .external_lex_state = 5}, - [4791] = {.lex_state = 349, .external_lex_state = 6}, - [4792] = {.lex_state = 45, .external_lex_state = 2}, - [4793] = {.lex_state = 349, .external_lex_state = 5}, + [4788] = {.lex_state = 349, .external_lex_state = 6}, + [4789] = {.lex_state = 47, .external_lex_state = 2}, + [4790] = {.lex_state = 45, .external_lex_state = 2}, + [4791] = {.lex_state = 47, .external_lex_state = 2}, + [4792] = {.lex_state = 349, .external_lex_state = 5}, + [4793] = {.lex_state = 45, .external_lex_state = 2}, [4794] = {.lex_state = 45, .external_lex_state = 2}, - [4795] = {.lex_state = 47, .external_lex_state = 2}, - [4796] = {.lex_state = 47, .external_lex_state = 2}, - [4797] = {.lex_state = 349, .external_lex_state = 5}, - [4798] = {.lex_state = 349, .external_lex_state = 6}, - [4799] = {.lex_state = 47, .external_lex_state = 2}, - [4800] = {.lex_state = 349, .external_lex_state = 6}, - [4801] = {.lex_state = 349, .external_lex_state = 6}, - [4802] = {.lex_state = 47, .external_lex_state = 2}, - [4803] = {.lex_state = 349, .external_lex_state = 5}, - [4804] = {.lex_state = 45, .external_lex_state = 2}, - [4805] = {.lex_state = 45, .external_lex_state = 2}, - [4806] = {.lex_state = 47, .external_lex_state = 2}, - [4807] = {.lex_state = 47, .external_lex_state = 2}, - [4808] = {.lex_state = 349, .external_lex_state = 2}, - [4809] = {.lex_state = 349, .external_lex_state = 5}, - [4810] = {.lex_state = 349, .external_lex_state = 6}, - [4811] = {.lex_state = 349, .external_lex_state = 5}, + [4795] = {.lex_state = 349, .external_lex_state = 5}, + [4796] = {.lex_state = 349, .external_lex_state = 2}, + [4797] = {.lex_state = 47, .external_lex_state = 2}, + [4798] = {.lex_state = 47, .external_lex_state = 2}, + [4799] = {.lex_state = 349, .external_lex_state = 2}, + [4800] = {.lex_state = 349, .external_lex_state = 2}, + [4801] = {.lex_state = 47, .external_lex_state = 2}, + [4802] = {.lex_state = 349, .external_lex_state = 5}, + [4803] = {.lex_state = 45, .external_lex_state = 2}, + [4804] = {.lex_state = 47, .external_lex_state = 2}, + [4805] = {.lex_state = 349, .external_lex_state = 5}, + [4806] = {.lex_state = 349, .external_lex_state = 6}, + [4807] = {.lex_state = 45, .external_lex_state = 2}, + [4808] = {.lex_state = 47, .external_lex_state = 2}, + [4809] = {.lex_state = 47, .external_lex_state = 2}, + [4810] = {.lex_state = 349, .external_lex_state = 5}, + [4811] = {.lex_state = 47, .external_lex_state = 2}, [4812] = {.lex_state = 349, .external_lex_state = 5}, - [4813] = {.lex_state = 349, .external_lex_state = 2}, - [4814] = {.lex_state = 45, .external_lex_state = 2}, + [4813] = {.lex_state = 45, .external_lex_state = 2}, + [4814] = {.lex_state = 349, .external_lex_state = 5}, [4815] = {.lex_state = 349, .external_lex_state = 2}, - [4816] = {.lex_state = 47, .external_lex_state = 2}, + [4816] = {.lex_state = 349, .external_lex_state = 5}, [4817] = {.lex_state = 349, .external_lex_state = 2}, [4818] = {.lex_state = 47, .external_lex_state = 2}, - [4819] = {.lex_state = 349, .external_lex_state = 6}, - [4820] = {.lex_state = 349, .external_lex_state = 7}, - [4821] = {.lex_state = 47, .external_lex_state = 2}, - [4822] = {.lex_state = 349, .external_lex_state = 5}, + [4819] = {.lex_state = 349, .external_lex_state = 5}, + [4820] = {.lex_state = 47, .external_lex_state = 2}, + [4821] = {.lex_state = 45, .external_lex_state = 2}, + [4822] = {.lex_state = 45, .external_lex_state = 2}, [4823] = {.lex_state = 349, .external_lex_state = 5}, [4824] = {.lex_state = 45, .external_lex_state = 2}, - [4825] = {.lex_state = 349, .external_lex_state = 6}, - [4826] = {.lex_state = 349, .external_lex_state = 5}, - [4827] = {.lex_state = 45, .external_lex_state = 2}, + [4825] = {.lex_state = 349, .external_lex_state = 5}, + [4826] = {.lex_state = 47, .external_lex_state = 2}, + [4827] = {.lex_state = 349, .external_lex_state = 5}, [4828] = {.lex_state = 45, .external_lex_state = 2}, [4829] = {.lex_state = 45, .external_lex_state = 2}, - [4830] = {.lex_state = 47, .external_lex_state = 2}, - [4831] = {.lex_state = 349, .external_lex_state = 2}, + [4830] = {.lex_state = 45, .external_lex_state = 2}, + [4831] = {.lex_state = 47, .external_lex_state = 2}, [4832] = {.lex_state = 45, .external_lex_state = 2}, - [4833] = {.lex_state = 349, .external_lex_state = 7}, - [4834] = {.lex_state = 349, .external_lex_state = 6}, - [4835] = {.lex_state = 349, .external_lex_state = 6}, + [4833] = {.lex_state = 349, .external_lex_state = 5}, + [4834] = {.lex_state = 349, .external_lex_state = 5}, + [4835] = {.lex_state = 349, .external_lex_state = 7}, [4836] = {.lex_state = 45, .external_lex_state = 2}, - [4837] = {.lex_state = 349, .external_lex_state = 5}, - [4838] = {.lex_state = 349, .external_lex_state = 5}, - [4839] = {.lex_state = 47, .external_lex_state = 2}, + [4837] = {.lex_state = 349, .external_lex_state = 6}, + [4838] = {.lex_state = 349, .external_lex_state = 6}, + [4839] = {.lex_state = 45, .external_lex_state = 2}, [4840] = {.lex_state = 47, .external_lex_state = 2}, [4841] = {.lex_state = 47, .external_lex_state = 2}, - [4842] = {.lex_state = 47, .external_lex_state = 2}, - [4843] = {.lex_state = 349, .external_lex_state = 5}, + [4842] = {.lex_state = 349, .external_lex_state = 2}, + [4843] = {.lex_state = 47, .external_lex_state = 2}, [4844] = {.lex_state = 47, .external_lex_state = 2}, - [4845] = {.lex_state = 349, .external_lex_state = 2}, + [4845] = {.lex_state = 45, .external_lex_state = 2}, [4846] = {.lex_state = 349, .external_lex_state = 5}, - [4847] = {.lex_state = 45, .external_lex_state = 2}, - [4848] = {.lex_state = 45, .external_lex_state = 5}, - [4849] = {.lex_state = 349, .external_lex_state = 5}, + [4847] = {.lex_state = 349, .external_lex_state = 6}, + [4848] = {.lex_state = 349, .external_lex_state = 5}, + [4849] = {.lex_state = 45, .external_lex_state = 2}, [4850] = {.lex_state = 349, .external_lex_state = 5}, [4851] = {.lex_state = 349, .external_lex_state = 5}, - [4852] = {.lex_state = 349, .external_lex_state = 6}, - [4853] = {.lex_state = 45, .external_lex_state = 5}, - [4854] = {.lex_state = 45, .external_lex_state = 2}, - [4855] = {.lex_state = 349, .external_lex_state = 2}, + [4852] = {.lex_state = 349, .external_lex_state = 2}, + [4853] = {.lex_state = 349, .external_lex_state = 2}, + [4854] = {.lex_state = 55, .external_lex_state = 2}, + [4855] = {.lex_state = 349, .external_lex_state = 5}, [4856] = {.lex_state = 349, .external_lex_state = 5}, - [4857] = {.lex_state = 349, .external_lex_state = 2}, - [4858] = {.lex_state = 349, .external_lex_state = 5}, - [4859] = {.lex_state = 55, .external_lex_state = 2}, - [4860] = {.lex_state = 349, .external_lex_state = 2}, - [4861] = {.lex_state = 46, .external_lex_state = 2}, - [4862] = {.lex_state = 349, .external_lex_state = 5}, - [4863] = {.lex_state = 62, .external_lex_state = 2}, - [4864] = {.lex_state = 62, .external_lex_state = 2}, - [4865] = {.lex_state = 349, .external_lex_state = 5}, - [4866] = {.lex_state = 349, .external_lex_state = 5}, - [4867] = {.lex_state = 349, .external_lex_state = 5}, - [4868] = {.lex_state = 349, .external_lex_state = 2}, - [4869] = {.lex_state = 45, .external_lex_state = 2}, + [4857] = {.lex_state = 45, .external_lex_state = 5}, + [4858] = {.lex_state = 45, .external_lex_state = 2}, + [4859] = {.lex_state = 45, .external_lex_state = 5}, + [4860] = {.lex_state = 349, .external_lex_state = 5}, + [4861] = {.lex_state = 349, .external_lex_state = 5}, + [4862] = {.lex_state = 349, .external_lex_state = 2}, + [4863] = {.lex_state = 46, .external_lex_state = 2}, + [4864] = {.lex_state = 349, .external_lex_state = 5}, + [4865] = {.lex_state = 62, .external_lex_state = 2}, + [4866] = {.lex_state = 62, .external_lex_state = 2}, + [4867] = {.lex_state = 349, .external_lex_state = 2}, + [4868] = {.lex_state = 349, .external_lex_state = 5}, + [4869] = {.lex_state = 349, .external_lex_state = 5}, [4870] = {.lex_state = 349, .external_lex_state = 5}, [4871] = {.lex_state = 349, .external_lex_state = 5}, - [4872] = {.lex_state = 349, .external_lex_state = 5}, - [4873] = {.lex_state = 349, .external_lex_state = 2}, + [4872] = {.lex_state = 45, .external_lex_state = 2}, + [4873] = {.lex_state = 349, .external_lex_state = 5}, [4874] = {.lex_state = 349, .external_lex_state = 5}, - [4875] = {.lex_state = 349, .external_lex_state = 5}, + [4875] = {.lex_state = 349, .external_lex_state = 2}, [4876] = {.lex_state = 349, .external_lex_state = 5}, [4877] = {.lex_state = 349, .external_lex_state = 5}, - [4878] = {.lex_state = 349, .external_lex_state = 2}, + [4878] = {.lex_state = 349, .external_lex_state = 5}, [4879] = {.lex_state = 349, .external_lex_state = 5}, - [4880] = {.lex_state = 349, .external_lex_state = 5}, + [4880] = {.lex_state = 349, .external_lex_state = 2}, [4881] = {.lex_state = 349, .external_lex_state = 5}, [4882] = {.lex_state = 349, .external_lex_state = 5}, [4883] = {.lex_state = 349, .external_lex_state = 5}, [4884] = {.lex_state = 349, .external_lex_state = 5}, - [4885] = {.lex_state = 349, .external_lex_state = 2}, - [4886] = {.lex_state = 45, .external_lex_state = 2}, - [4887] = {.lex_state = 45, .external_lex_state = 2}, + [4885] = {.lex_state = 349, .external_lex_state = 5}, + [4886] = {.lex_state = 349, .external_lex_state = 5}, + [4887] = {.lex_state = 349, .external_lex_state = 5}, [4888] = {.lex_state = 349, .external_lex_state = 5}, - [4889] = {.lex_state = 349, .external_lex_state = 5}, - [4890] = {.lex_state = 349, .external_lex_state = 5}, - [4891] = {.lex_state = 349, .external_lex_state = 5}, + [4889] = {.lex_state = 349, .external_lex_state = 2}, + [4890] = {.lex_state = 45, .external_lex_state = 2}, + [4891] = {.lex_state = 45, .external_lex_state = 2}, [4892] = {.lex_state = 349, .external_lex_state = 5}, [4893] = {.lex_state = 349, .external_lex_state = 5}, [4894] = {.lex_state = 349, .external_lex_state = 5}, [4895] = {.lex_state = 349, .external_lex_state = 5}, [4896] = {.lex_state = 349, .external_lex_state = 5}, [4897] = {.lex_state = 349, .external_lex_state = 5}, - [4898] = {.lex_state = 349, .external_lex_state = 2}, + [4898] = {.lex_state = 349, .external_lex_state = 5}, [4899] = {.lex_state = 349, .external_lex_state = 5}, [4900] = {.lex_state = 349, .external_lex_state = 5}, [4901] = {.lex_state = 349, .external_lex_state = 5}, - [4902] = {.lex_state = 349, .external_lex_state = 5}, + [4902] = {.lex_state = 349, .external_lex_state = 2}, [4903] = {.lex_state = 349, .external_lex_state = 5}, [4904] = {.lex_state = 349, .external_lex_state = 5}, [4905] = {.lex_state = 349, .external_lex_state = 5}, @@ -25170,12 +25176,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4907] = {.lex_state = 349, .external_lex_state = 5}, [4908] = {.lex_state = 349, .external_lex_state = 5}, [4909] = {.lex_state = 349, .external_lex_state = 5}, - [4910] = {.lex_state = 45, .external_lex_state = 2}, - [4911] = {.lex_state = 349, .external_lex_state = 8}, + [4910] = {.lex_state = 349, .external_lex_state = 5}, + [4911] = {.lex_state = 349, .external_lex_state = 5}, [4912] = {.lex_state = 349, .external_lex_state = 5}, [4913] = {.lex_state = 349, .external_lex_state = 5}, - [4914] = {.lex_state = 349, .external_lex_state = 5}, - [4915] = {.lex_state = 349, .external_lex_state = 5}, + [4914] = {.lex_state = 45, .external_lex_state = 2}, + [4915] = {.lex_state = 349, .external_lex_state = 8}, [4916] = {.lex_state = 349, .external_lex_state = 5}, [4917] = {.lex_state = 349, .external_lex_state = 5}, [4918] = {.lex_state = 349, .external_lex_state = 5}, @@ -25211,39 +25217,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4948] = {.lex_state = 349, .external_lex_state = 5}, [4949] = {.lex_state = 349, .external_lex_state = 5}, [4950] = {.lex_state = 349, .external_lex_state = 5}, - [4951] = {.lex_state = 47, .external_lex_state = 2}, + [4951] = {.lex_state = 349, .external_lex_state = 5}, [4952] = {.lex_state = 349, .external_lex_state = 5}, - [4953] = {.lex_state = 349, .external_lex_state = 2}, + [4953] = {.lex_state = 349, .external_lex_state = 5}, [4954] = {.lex_state = 349, .external_lex_state = 6}, - [4955] = {.lex_state = 349, .external_lex_state = 5}, + [4955] = {.lex_state = 47, .external_lex_state = 2}, [4956] = {.lex_state = 349, .external_lex_state = 5}, - [4957] = {.lex_state = 47, .external_lex_state = 2}, + [4957] = {.lex_state = 349, .external_lex_state = 2}, [4958] = {.lex_state = 349, .external_lex_state = 5}, [4959] = {.lex_state = 349, .external_lex_state = 5}, - [4960] = {.lex_state = 45, .external_lex_state = 2}, - [4961] = {.lex_state = 349, .external_lex_state = 5}, + [4960] = {.lex_state = 349, .external_lex_state = 5}, + [4961] = {.lex_state = 47, .external_lex_state = 2}, [4962] = {.lex_state = 349, .external_lex_state = 5}, [4963] = {.lex_state = 349, .external_lex_state = 5}, - [4964] = {.lex_state = 349, .external_lex_state = 5}, + [4964] = {.lex_state = 45, .external_lex_state = 2}, [4965] = {.lex_state = 349, .external_lex_state = 5}, [4966] = {.lex_state = 349, .external_lex_state = 5}, [4967] = {.lex_state = 349, .external_lex_state = 5}, - [4968] = {.lex_state = 349, .external_lex_state = 2}, - [4969] = {.lex_state = 45, .external_lex_state = 2}, - [4970] = {.lex_state = 45, .external_lex_state = 5}, - [4971] = {.lex_state = 349, .external_lex_state = 5}, - [4972] = {.lex_state = 349, .external_lex_state = 5}, - [4973] = {.lex_state = 349, .external_lex_state = 5}, - [4974] = {.lex_state = 45, .external_lex_state = 2}, + [4968] = {.lex_state = 349, .external_lex_state = 5}, + [4969] = {.lex_state = 45, .external_lex_state = 5}, + [4970] = {.lex_state = 349, .external_lex_state = 5}, + [4971] = {.lex_state = 349, .external_lex_state = 6}, + [4972] = {.lex_state = 349, .external_lex_state = 2}, + [4973] = {.lex_state = 45, .external_lex_state = 2}, + [4974] = {.lex_state = 349, .external_lex_state = 5}, [4975] = {.lex_state = 349, .external_lex_state = 5}, - [4976] = {.lex_state = 349, .external_lex_state = 6}, + [4976] = {.lex_state = 349, .external_lex_state = 5}, [4977] = {.lex_state = 349, .external_lex_state = 5}, - [4978] = {.lex_state = 349, .external_lex_state = 8}, - [4979] = {.lex_state = 349, .external_lex_state = 2}, + [4978] = {.lex_state = 45, .external_lex_state = 2}, + [4979] = {.lex_state = 349, .external_lex_state = 5}, [4980] = {.lex_state = 349, .external_lex_state = 5}, - [4981] = {.lex_state = 349, .external_lex_state = 5}, + [4981] = {.lex_state = 349, .external_lex_state = 8}, [4982] = {.lex_state = 349, .external_lex_state = 5}, - [4983] = {.lex_state = 349, .external_lex_state = 5}, + [4983] = {.lex_state = 349, .external_lex_state = 2}, [4984] = {.lex_state = 349, .external_lex_state = 5}, [4985] = {.lex_state = 349, .external_lex_state = 5}, [4986] = {.lex_state = 349, .external_lex_state = 5}, @@ -25255,186 +25261,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4992] = {.lex_state = 349, .external_lex_state = 5}, [4993] = {.lex_state = 349, .external_lex_state = 5}, [4994] = {.lex_state = 349, .external_lex_state = 5}, - [4995] = {.lex_state = 349, .external_lex_state = 8}, - [4996] = {.lex_state = 349, .external_lex_state = 2}, + [4995] = {.lex_state = 349, .external_lex_state = 5}, + [4996] = {.lex_state = 349, .external_lex_state = 5}, [4997] = {.lex_state = 349, .external_lex_state = 5}, - [4998] = {.lex_state = 45, .external_lex_state = 2}, - [4999] = {.lex_state = 349, .external_lex_state = 2}, - [5000] = {.lex_state = 349, .external_lex_state = 5}, - [5001] = {.lex_state = 62, .external_lex_state = 2}, - [5002] = {.lex_state = 349, .external_lex_state = 5}, + [4998] = {.lex_state = 349, .external_lex_state = 2}, + [4999] = {.lex_state = 349, .external_lex_state = 8}, + [5000] = {.lex_state = 62, .external_lex_state = 2}, + [5001] = {.lex_state = 45, .external_lex_state = 2}, + [5002] = {.lex_state = 349, .external_lex_state = 2}, [5003] = {.lex_state = 349, .external_lex_state = 5}, - [5004] = {.lex_state = 349, .external_lex_state = 6}, - [5005] = {.lex_state = 349, .external_lex_state = 5}, - [5006] = {.lex_state = 45, .external_lex_state = 2}, - [5007] = {.lex_state = 45, .external_lex_state = 2}, - [5008] = {.lex_state = 349, .external_lex_state = 6}, - [5009] = {.lex_state = 349, .external_lex_state = 5}, - [5010] = {.lex_state = 349, .external_lex_state = 5}, + [5004] = {.lex_state = 349, .external_lex_state = 5}, + [5005] = {.lex_state = 349, .external_lex_state = 6}, + [5006] = {.lex_state = 349, .external_lex_state = 5}, + [5007] = {.lex_state = 349, .external_lex_state = 5}, + [5008] = {.lex_state = 45, .external_lex_state = 2}, + [5009] = {.lex_state = 45, .external_lex_state = 2}, + [5010] = {.lex_state = 349, .external_lex_state = 6}, [5011] = {.lex_state = 349, .external_lex_state = 5}, - [5012] = {.lex_state = 45, .external_lex_state = 2}, - [5013] = {.lex_state = 349, .external_lex_state = 8}, - [5014] = {.lex_state = 349, .external_lex_state = 5}, + [5012] = {.lex_state = 349, .external_lex_state = 5}, + [5013] = {.lex_state = 349, .external_lex_state = 5}, + [5014] = {.lex_state = 45, .external_lex_state = 2}, [5015] = {.lex_state = 349, .external_lex_state = 8}, - [5016] = {.lex_state = 62, .external_lex_state = 2}, + [5016] = {.lex_state = 349, .external_lex_state = 8}, [5017] = {.lex_state = 349, .external_lex_state = 5}, - [5018] = {.lex_state = 349, .external_lex_state = 5}, + [5018] = {.lex_state = 62, .external_lex_state = 2}, [5019] = {.lex_state = 349, .external_lex_state = 5}, - [5020] = {.lex_state = 349, .external_lex_state = 2}, - [5021] = {.lex_state = 349, .external_lex_state = 6}, - [5022] = {.lex_state = 45, .external_lex_state = 5}, - [5023] = {.lex_state = 62, .external_lex_state = 2}, - [5024] = {.lex_state = 349, .external_lex_state = 8}, - [5025] = {.lex_state = 349, .external_lex_state = 2}, - [5026] = {.lex_state = 349, .external_lex_state = 5}, + [5020] = {.lex_state = 349, .external_lex_state = 5}, + [5021] = {.lex_state = 349, .external_lex_state = 5}, + [5022] = {.lex_state = 349, .external_lex_state = 2}, + [5023] = {.lex_state = 349, .external_lex_state = 8}, + [5024] = {.lex_state = 349, .external_lex_state = 6}, + [5025] = {.lex_state = 62, .external_lex_state = 2}, + [5026] = {.lex_state = 45, .external_lex_state = 5}, [5027] = {.lex_state = 349, .external_lex_state = 2}, - [5028] = {.lex_state = 47, .external_lex_state = 2}, - [5029] = {.lex_state = 45, .external_lex_state = 2}, - [5030] = {.lex_state = 45, .external_lex_state = 2}, - [5031] = {.lex_state = 349, .external_lex_state = 6}, - [5032] = {.lex_state = 45, .external_lex_state = 5}, - [5033] = {.lex_state = 45, .external_lex_state = 2}, - [5034] = {.lex_state = 349, .external_lex_state = 6}, + [5028] = {.lex_state = 349, .external_lex_state = 2}, + [5029] = {.lex_state = 47, .external_lex_state = 2}, + [5030] = {.lex_state = 349, .external_lex_state = 5}, + [5031] = {.lex_state = 45, .external_lex_state = 2}, + [5032] = {.lex_state = 45, .external_lex_state = 2}, + [5033] = {.lex_state = 349, .external_lex_state = 6}, + [5034] = {.lex_state = 45, .external_lex_state = 5}, [5035] = {.lex_state = 45, .external_lex_state = 2}, - [5036] = {.lex_state = 45, .external_lex_state = 2}, + [5036] = {.lex_state = 349, .external_lex_state = 6}, [5037] = {.lex_state = 45, .external_lex_state = 2}, [5038] = {.lex_state = 45, .external_lex_state = 2}, [5039] = {.lex_state = 45, .external_lex_state = 2}, [5040] = {.lex_state = 45, .external_lex_state = 2}, [5041] = {.lex_state = 45, .external_lex_state = 2}, - [5042] = {.lex_state = 349, .external_lex_state = 2}, - [5043] = {.lex_state = 349, .external_lex_state = 5}, - [5044] = {.lex_state = 349, .external_lex_state = 5}, - [5045] = {.lex_state = 349, .external_lex_state = 5}, + [5042] = {.lex_state = 45, .external_lex_state = 2}, + [5043] = {.lex_state = 45, .external_lex_state = 2}, + [5044] = {.lex_state = 349, .external_lex_state = 2}, + [5045] = {.lex_state = 45, .external_lex_state = 2}, [5046] = {.lex_state = 45, .external_lex_state = 2}, - [5047] = {.lex_state = 45, .external_lex_state = 2}, - [5048] = {.lex_state = 349, .external_lex_state = 2}, + [5047] = {.lex_state = 349, .external_lex_state = 5}, + [5048] = {.lex_state = 349, .external_lex_state = 5}, [5049] = {.lex_state = 349, .external_lex_state = 5}, - [5050] = {.lex_state = 349, .external_lex_state = 5}, - [5051] = {.lex_state = 45, .external_lex_state = 2}, - [5052] = {.lex_state = 349, .external_lex_state = 5}, - [5053] = {.lex_state = 45, .external_lex_state = 2}, - [5054] = {.lex_state = 45, .external_lex_state = 2}, + [5050] = {.lex_state = 45, .external_lex_state = 2}, + [5051] = {.lex_state = 349, .external_lex_state = 5}, + [5052] = {.lex_state = 349, .external_lex_state = 2}, + [5053] = {.lex_state = 349, .external_lex_state = 5}, + [5054] = {.lex_state = 349, .external_lex_state = 6}, [5055] = {.lex_state = 45, .external_lex_state = 2}, [5056] = {.lex_state = 45, .external_lex_state = 2}, - [5057] = {.lex_state = 349, .external_lex_state = 5}, + [5057] = {.lex_state = 45, .external_lex_state = 2}, [5058] = {.lex_state = 45, .external_lex_state = 2}, - [5059] = {.lex_state = 45, .external_lex_state = 2}, + [5059] = {.lex_state = 349, .external_lex_state = 5}, [5060] = {.lex_state = 45, .external_lex_state = 2}, - [5061] = {.lex_state = 349, .external_lex_state = 2}, - [5062] = {.lex_state = 349, .external_lex_state = 6}, - [5063] = {.lex_state = 349, .external_lex_state = 5}, - [5064] = {.lex_state = 45, .external_lex_state = 2}, - [5065] = {.lex_state = 45, .external_lex_state = 2}, - [5066] = {.lex_state = 349, .external_lex_state = 2}, + [5061] = {.lex_state = 45, .external_lex_state = 2}, + [5062] = {.lex_state = 45, .external_lex_state = 2}, + [5063] = {.lex_state = 349, .external_lex_state = 2}, + [5064] = {.lex_state = 349, .external_lex_state = 5}, + [5065] = {.lex_state = 349, .external_lex_state = 2}, + [5066] = {.lex_state = 45, .external_lex_state = 2}, [5067] = {.lex_state = 45, .external_lex_state = 2}, - [5068] = {.lex_state = 45, .external_lex_state = 2}, - [5069] = {.lex_state = 349, .external_lex_state = 6}, + [5068] = {.lex_state = 349, .external_lex_state = 5}, + [5069] = {.lex_state = 45, .external_lex_state = 2}, [5070] = {.lex_state = 45, .external_lex_state = 2}, - [5071] = {.lex_state = 349, .external_lex_state = 5}, + [5071] = {.lex_state = 45, .external_lex_state = 2}, [5072] = {.lex_state = 349, .external_lex_state = 5}, [5073] = {.lex_state = 349, .external_lex_state = 6}, - [5074] = {.lex_state = 45, .external_lex_state = 2}, - [5075] = {.lex_state = 45, .external_lex_state = 2}, + [5074] = {.lex_state = 349, .external_lex_state = 6}, + [5075] = {.lex_state = 45, .external_lex_state = 5}, [5076] = {.lex_state = 45, .external_lex_state = 2}, - [5077] = {.lex_state = 349, .external_lex_state = 6}, + [5077] = {.lex_state = 45, .external_lex_state = 2}, [5078] = {.lex_state = 45, .external_lex_state = 2}, - [5079] = {.lex_state = 349, .external_lex_state = 2}, - [5080] = {.lex_state = 45, .external_lex_state = 5}, - [5081] = {.lex_state = 45, .external_lex_state = 2}, - [5082] = {.lex_state = 349, .external_lex_state = 5}, - [5083] = {.lex_state = 45, .external_lex_state = 2}, - [5084] = {.lex_state = 349, .external_lex_state = 8}, + [5079] = {.lex_state = 45, .external_lex_state = 2}, + [5080] = {.lex_state = 349, .external_lex_state = 5}, + [5081] = {.lex_state = 349, .external_lex_state = 6}, + [5082] = {.lex_state = 45, .external_lex_state = 2}, + [5083] = {.lex_state = 349, .external_lex_state = 2}, + [5084] = {.lex_state = 349, .external_lex_state = 5}, [5085] = {.lex_state = 45, .external_lex_state = 2}, - [5086] = {.lex_state = 349, .external_lex_state = 5}, + [5086] = {.lex_state = 45, .external_lex_state = 2}, [5087] = {.lex_state = 45, .external_lex_state = 2}, - [5088] = {.lex_state = 349, .external_lex_state = 2}, - [5089] = {.lex_state = 349, .external_lex_state = 5}, + [5088] = {.lex_state = 349, .external_lex_state = 8}, + [5089] = {.lex_state = 349, .external_lex_state = 2}, [5090] = {.lex_state = 349, .external_lex_state = 5}, - [5091] = {.lex_state = 45, .external_lex_state = 5}, - [5092] = {.lex_state = 45, .external_lex_state = 2}, - [5093] = {.lex_state = 349, .external_lex_state = 5}, - [5094] = {.lex_state = 349, .external_lex_state = 2}, - [5095] = {.lex_state = 349, .external_lex_state = 2}, - [5096] = {.lex_state = 349, .external_lex_state = 5}, + [5091] = {.lex_state = 349, .external_lex_state = 5}, + [5092] = {.lex_state = 349, .external_lex_state = 5}, + [5093] = {.lex_state = 45, .external_lex_state = 5}, + [5094] = {.lex_state = 45, .external_lex_state = 2}, + [5095] = {.lex_state = 349, .external_lex_state = 5}, + [5096] = {.lex_state = 349, .external_lex_state = 2}, [5097] = {.lex_state = 349, .external_lex_state = 2}, - [5098] = {.lex_state = 45, .external_lex_state = 2}, - [5099] = {.lex_state = 349, .external_lex_state = 5}, + [5098] = {.lex_state = 349, .external_lex_state = 5}, + [5099] = {.lex_state = 349, .external_lex_state = 2}, [5100] = {.lex_state = 45, .external_lex_state = 2}, - [5101] = {.lex_state = 349, .external_lex_state = 5}, - [5102] = {.lex_state = 349, .external_lex_state = 8}, - [5103] = {.lex_state = 45, .external_lex_state = 2}, - [5104] = {.lex_state = 45, .external_lex_state = 2}, + [5101] = {.lex_state = 45, .external_lex_state = 2}, + [5102] = {.lex_state = 349, .external_lex_state = 5}, + [5103] = {.lex_state = 349, .external_lex_state = 5}, + [5104] = {.lex_state = 349, .external_lex_state = 8}, [5105] = {.lex_state = 45, .external_lex_state = 2}, - [5106] = {.lex_state = 349, .external_lex_state = 5}, - [5107] = {.lex_state = 62, .external_lex_state = 2}, + [5106] = {.lex_state = 45, .external_lex_state = 2}, + [5107] = {.lex_state = 45, .external_lex_state = 2}, [5108] = {.lex_state = 349, .external_lex_state = 5}, - [5109] = {.lex_state = 349, .external_lex_state = 2}, - [5110] = {.lex_state = 349, .external_lex_state = 5}, + [5109] = {.lex_state = 349, .external_lex_state = 5}, + [5110] = {.lex_state = 349, .external_lex_state = 2}, [5111] = {.lex_state = 349, .external_lex_state = 5}, - [5112] = {.lex_state = 349, .external_lex_state = 5}, - [5113] = {.lex_state = 349, .external_lex_state = 2}, - [5114] = {.lex_state = 47, .external_lex_state = 2}, - [5115] = {.lex_state = 45, .external_lex_state = 2}, - [5116] = {.lex_state = 349, .external_lex_state = 6}, - [5117] = {.lex_state = 45, .external_lex_state = 5}, - [5118] = {.lex_state = 45, .external_lex_state = 2}, - [5119] = {.lex_state = 45, .external_lex_state = 2}, + [5112] = {.lex_state = 62, .external_lex_state = 2}, + [5113] = {.lex_state = 349, .external_lex_state = 5}, + [5114] = {.lex_state = 349, .external_lex_state = 5}, + [5115] = {.lex_state = 349, .external_lex_state = 2}, + [5116] = {.lex_state = 47, .external_lex_state = 2}, + [5117] = {.lex_state = 45, .external_lex_state = 2}, + [5118] = {.lex_state = 349, .external_lex_state = 6}, + [5119] = {.lex_state = 45, .external_lex_state = 5}, [5120] = {.lex_state = 45, .external_lex_state = 2}, [5121] = {.lex_state = 45, .external_lex_state = 2}, [5122] = {.lex_state = 45, .external_lex_state = 2}, [5123] = {.lex_state = 45, .external_lex_state = 2}, - [5124] = {.lex_state = 349, .external_lex_state = 5}, + [5124] = {.lex_state = 45, .external_lex_state = 2}, [5125] = {.lex_state = 45, .external_lex_state = 2}, - [5126] = {.lex_state = 45, .external_lex_state = 2}, - [5127] = {.lex_state = 45, .external_lex_state = 2}, - [5128] = {.lex_state = 349, .external_lex_state = 2}, - [5129] = {.lex_state = 349, .external_lex_state = 5}, + [5126] = {.lex_state = 349, .external_lex_state = 5}, + [5127] = {.lex_state = 349, .external_lex_state = 5}, + [5128] = {.lex_state = 45, .external_lex_state = 2}, + [5129] = {.lex_state = 45, .external_lex_state = 2}, [5130] = {.lex_state = 45, .external_lex_state = 2}, - [5131] = {.lex_state = 46, .external_lex_state = 5}, - [5132] = {.lex_state = 46, .external_lex_state = 5}, - [5133] = {.lex_state = 349, .external_lex_state = 5}, - [5134] = {.lex_state = 45, .external_lex_state = 2}, - [5135] = {.lex_state = 45, .external_lex_state = 2}, - [5136] = {.lex_state = 45, .external_lex_state = 2}, + [5131] = {.lex_state = 349, .external_lex_state = 2}, + [5132] = {.lex_state = 349, .external_lex_state = 5}, + [5133] = {.lex_state = 45, .external_lex_state = 2}, + [5134] = {.lex_state = 46, .external_lex_state = 5}, + [5135] = {.lex_state = 46, .external_lex_state = 5}, + [5136] = {.lex_state = 349, .external_lex_state = 5}, [5137] = {.lex_state = 45, .external_lex_state = 2}, - [5138] = {.lex_state = 349, .external_lex_state = 6}, - [5139] = {.lex_state = 349, .external_lex_state = 5}, - [5140] = {.lex_state = 45, .external_lex_state = 5}, - [5141] = {.lex_state = 349, .external_lex_state = 5}, + [5138] = {.lex_state = 45, .external_lex_state = 2}, + [5139] = {.lex_state = 45, .external_lex_state = 2}, + [5140] = {.lex_state = 45, .external_lex_state = 2}, + [5141] = {.lex_state = 45, .external_lex_state = 2}, [5142] = {.lex_state = 349, .external_lex_state = 5}, - [5143] = {.lex_state = 349, .external_lex_state = 5}, - [5144] = {.lex_state = 45, .external_lex_state = 2}, - [5145] = {.lex_state = 45, .external_lex_state = 2}, + [5143] = {.lex_state = 349, .external_lex_state = 6}, + [5144] = {.lex_state = 349, .external_lex_state = 5}, + [5145] = {.lex_state = 45, .external_lex_state = 5}, [5146] = {.lex_state = 349, .external_lex_state = 5}, - [5147] = {.lex_state = 349, .external_lex_state = 5}, - [5148] = {.lex_state = 349, .external_lex_state = 5}, - [5149] = {.lex_state = 349, .external_lex_state = 5}, + [5147] = {.lex_state = 45, .external_lex_state = 2}, + [5148] = {.lex_state = 45, .external_lex_state = 2}, + [5149] = {.lex_state = 45, .external_lex_state = 2}, [5150] = {.lex_state = 349, .external_lex_state = 5}, [5151] = {.lex_state = 349, .external_lex_state = 5}, [5152] = {.lex_state = 349, .external_lex_state = 5}, - [5153] = {.lex_state = 349, .external_lex_state = 5}, - [5154] = {.lex_state = 45, .external_lex_state = 2}, - [5155] = {.lex_state = 349, .external_lex_state = 2}, - [5156] = {.lex_state = 349, .external_lex_state = 2}, + [5153] = {.lex_state = 45, .external_lex_state = 2}, + [5154] = {.lex_state = 349, .external_lex_state = 5}, + [5155] = {.lex_state = 349, .external_lex_state = 5}, + [5156] = {.lex_state = 349, .external_lex_state = 5}, [5157] = {.lex_state = 349, .external_lex_state = 5}, - [5158] = {.lex_state = 45, .external_lex_state = 2}, - [5159] = {.lex_state = 45, .external_lex_state = 2}, + [5158] = {.lex_state = 349, .external_lex_state = 2}, + [5159] = {.lex_state = 349, .external_lex_state = 2}, [5160] = {.lex_state = 349, .external_lex_state = 5}, - [5161] = {.lex_state = 349, .external_lex_state = 6}, - [5162] = {.lex_state = 45, .external_lex_state = 2}, - [5163] = {.lex_state = 45, .external_lex_state = 2}, - [5164] = {.lex_state = 349, .external_lex_state = 8}, - [5165] = {.lex_state = 46, .external_lex_state = 2}, - [5166] = {.lex_state = 349, .external_lex_state = 8}, + [5161] = {.lex_state = 349, .external_lex_state = 5}, + [5162] = {.lex_state = 349, .external_lex_state = 8}, + [5163] = {.lex_state = 349, .external_lex_state = 5}, + [5164] = {.lex_state = 45, .external_lex_state = 2}, + [5165] = {.lex_state = 45, .external_lex_state = 2}, + [5166] = {.lex_state = 349, .external_lex_state = 6}, [5167] = {.lex_state = 349, .external_lex_state = 5}, - [5168] = {.lex_state = 45, .external_lex_state = 2}, - [5169] = {.lex_state = 45, .external_lex_state = 2}, - [5170] = {.lex_state = 45, .external_lex_state = 2}, - [5171] = {.lex_state = 349, .external_lex_state = 5}, - [5172] = {.lex_state = 349, .external_lex_state = 5}, + [5168] = {.lex_state = 46, .external_lex_state = 2}, + [5169] = {.lex_state = 349, .external_lex_state = 8}, + [5170] = {.lex_state = 349, .external_lex_state = 5}, + [5171] = {.lex_state = 45, .external_lex_state = 2}, + [5172] = {.lex_state = 45, .external_lex_state = 2}, [5173] = {.lex_state = 45, .external_lex_state = 2}, - [5174] = {.lex_state = 45, .external_lex_state = 2}, + [5174] = {.lex_state = 349, .external_lex_state = 5}, [5175] = {.lex_state = 45, .external_lex_state = 2}, [5176] = {.lex_state = 349, .external_lex_state = 5}, [5177] = {.lex_state = 45, .external_lex_state = 2}, @@ -25442,153 +25448,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5179] = {.lex_state = 45, .external_lex_state = 2}, [5180] = {.lex_state = 349, .external_lex_state = 5}, [5181] = {.lex_state = 45, .external_lex_state = 2}, - [5182] = {.lex_state = 349, .external_lex_state = 5}, - [5183] = {.lex_state = 349, .external_lex_state = 2}, - [5184] = {.lex_state = 349, .external_lex_state = 2}, + [5182] = {.lex_state = 45, .external_lex_state = 2}, + [5183] = {.lex_state = 45, .external_lex_state = 2}, + [5184] = {.lex_state = 349, .external_lex_state = 5}, [5185] = {.lex_state = 349, .external_lex_state = 5}, [5186] = {.lex_state = 45, .external_lex_state = 2}, - [5187] = {.lex_state = 45, .external_lex_state = 2}, - [5188] = {.lex_state = 349, .external_lex_state = 5}, - [5189] = {.lex_state = 349, .external_lex_state = 5}, + [5187] = {.lex_state = 349, .external_lex_state = 5}, + [5188] = {.lex_state = 349, .external_lex_state = 2}, + [5189] = {.lex_state = 349, .external_lex_state = 2}, [5190] = {.lex_state = 45, .external_lex_state = 2}, - [5191] = {.lex_state = 45, .external_lex_state = 2}, - [5192] = {.lex_state = 349, .external_lex_state = 5}, - [5193] = {.lex_state = 349, .external_lex_state = 5}, + [5191] = {.lex_state = 349, .external_lex_state = 5}, + [5192] = {.lex_state = 45, .external_lex_state = 2}, + [5193] = {.lex_state = 45, .external_lex_state = 2}, [5194] = {.lex_state = 45, .external_lex_state = 2}, [5195] = {.lex_state = 349, .external_lex_state = 5}, [5196] = {.lex_state = 349, .external_lex_state = 5}, - [5197] = {.lex_state = 349, .external_lex_state = 2}, - [5198] = {.lex_state = 349, .external_lex_state = 5}, + [5197] = {.lex_state = 349, .external_lex_state = 5}, + [5198] = {.lex_state = 45, .external_lex_state = 2}, [5199] = {.lex_state = 349, .external_lex_state = 5}, [5200] = {.lex_state = 349, .external_lex_state = 5}, - [5201] = {.lex_state = 45, .external_lex_state = 2}, - [5202] = {.lex_state = 45, .external_lex_state = 2}, - [5203] = {.lex_state = 349, .external_lex_state = 5}, + [5201] = {.lex_state = 349, .external_lex_state = 5}, + [5202] = {.lex_state = 349, .external_lex_state = 2}, + [5203] = {.lex_state = 45, .external_lex_state = 2}, [5204] = {.lex_state = 349, .external_lex_state = 5}, [5205] = {.lex_state = 45, .external_lex_state = 2}, - [5206] = {.lex_state = 349, .external_lex_state = 5}, + [5206] = {.lex_state = 45, .external_lex_state = 2}, [5207] = {.lex_state = 349, .external_lex_state = 5}, - [5208] = {.lex_state = 46, .external_lex_state = 2}, - [5209] = {.lex_state = 349, .external_lex_state = 5}, - [5210] = {.lex_state = 349, .external_lex_state = 6}, + [5208] = {.lex_state = 349, .external_lex_state = 5}, + [5209] = {.lex_state = 46, .external_lex_state = 2}, + [5210] = {.lex_state = 349, .external_lex_state = 5}, [5211] = {.lex_state = 45, .external_lex_state = 2}, [5212] = {.lex_state = 349, .external_lex_state = 5}, [5213] = {.lex_state = 349, .external_lex_state = 5}, - [5214] = {.lex_state = 45, .external_lex_state = 5}, - [5215] = {.lex_state = 45, .external_lex_state = 2}, - [5216] = {.lex_state = 349, .external_lex_state = 2}, + [5214] = {.lex_state = 349, .external_lex_state = 5}, + [5215] = {.lex_state = 349, .external_lex_state = 6}, + [5216] = {.lex_state = 349, .external_lex_state = 5}, [5217] = {.lex_state = 45, .external_lex_state = 2}, - [5218] = {.lex_state = 45, .external_lex_state = 5}, - [5219] = {.lex_state = 62, .external_lex_state = 2}, + [5218] = {.lex_state = 349, .external_lex_state = 2}, + [5219] = {.lex_state = 45, .external_lex_state = 5}, [5220] = {.lex_state = 349, .external_lex_state = 5}, - [5221] = {.lex_state = 349, .external_lex_state = 5}, - [5222] = {.lex_state = 45, .external_lex_state = 2}, + [5221] = {.lex_state = 45, .external_lex_state = 5}, + [5222] = {.lex_state = 62, .external_lex_state = 2}, [5223] = {.lex_state = 349, .external_lex_state = 5}, [5224] = {.lex_state = 349, .external_lex_state = 5}, - [5225] = {.lex_state = 45, .external_lex_state = 2}, + [5225] = {.lex_state = 349, .external_lex_state = 5}, [5226] = {.lex_state = 45, .external_lex_state = 2}, - [5227] = {.lex_state = 349, .external_lex_state = 5}, + [5227] = {.lex_state = 349, .external_lex_state = 6}, [5228] = {.lex_state = 349, .external_lex_state = 5}, [5229] = {.lex_state = 349, .external_lex_state = 5}, - [5230] = {.lex_state = 349, .external_lex_state = 5}, + [5230] = {.lex_state = 45, .external_lex_state = 2}, [5231] = {.lex_state = 349, .external_lex_state = 5}, [5232] = {.lex_state = 349, .external_lex_state = 5}, - [5233] = {.lex_state = 45, .external_lex_state = 2}, + [5233] = {.lex_state = 349, .external_lex_state = 5}, [5234] = {.lex_state = 349, .external_lex_state = 5}, - [5235] = {.lex_state = 349, .external_lex_state = 5}, + [5235] = {.lex_state = 45, .external_lex_state = 2}, [5236] = {.lex_state = 349, .external_lex_state = 5}, [5237] = {.lex_state = 349, .external_lex_state = 5}, [5238] = {.lex_state = 349, .external_lex_state = 5}, [5239] = {.lex_state = 349, .external_lex_state = 5}, [5240] = {.lex_state = 349, .external_lex_state = 5}, - [5241] = {.lex_state = 349, .external_lex_state = 2}, + [5241] = {.lex_state = 349, .external_lex_state = 5}, [5242] = {.lex_state = 349, .external_lex_state = 5}, [5243] = {.lex_state = 349, .external_lex_state = 5}, [5244] = {.lex_state = 349, .external_lex_state = 5}, [5245] = {.lex_state = 349, .external_lex_state = 5}, - [5246] = {.lex_state = 349, .external_lex_state = 5}, + [5246] = {.lex_state = 349, .external_lex_state = 2}, [5247] = {.lex_state = 349, .external_lex_state = 5}, [5248] = {.lex_state = 349, .external_lex_state = 5}, [5249] = {.lex_state = 349, .external_lex_state = 5}, - [5250] = {.lex_state = 349, .external_lex_state = 6}, - [5251] = {.lex_state = 349, .external_lex_state = 5}, + [5250] = {.lex_state = 349, .external_lex_state = 5}, + [5251] = {.lex_state = 349, .external_lex_state = 6}, [5252] = {.lex_state = 349, .external_lex_state = 5}, [5253] = {.lex_state = 349, .external_lex_state = 5}, [5254] = {.lex_state = 349, .external_lex_state = 5}, [5255] = {.lex_state = 349, .external_lex_state = 5}, - [5256] = {.lex_state = 349, .external_lex_state = 8}, - [5257] = {.lex_state = 349, .external_lex_state = 5}, - [5258] = {.lex_state = 62, .external_lex_state = 2}, - [5259] = {.lex_state = 349, .external_lex_state = 5}, - [5260] = {.lex_state = 45, .external_lex_state = 2}, + [5256] = {.lex_state = 349, .external_lex_state = 5}, + [5257] = {.lex_state = 349, .external_lex_state = 8}, + [5258] = {.lex_state = 349, .external_lex_state = 5}, + [5259] = {.lex_state = 62, .external_lex_state = 2}, + [5260] = {.lex_state = 349, .external_lex_state = 5}, [5261] = {.lex_state = 349, .external_lex_state = 5}, [5262] = {.lex_state = 349, .external_lex_state = 5}, [5263] = {.lex_state = 349, .external_lex_state = 5}, [5264] = {.lex_state = 349, .external_lex_state = 5}, - [5265] = {.lex_state = 349, .external_lex_state = 6}, - [5266] = {.lex_state = 349, .external_lex_state = 5}, - [5267] = {.lex_state = 349, .external_lex_state = 5}, + [5265] = {.lex_state = 45, .external_lex_state = 2}, + [5266] = {.lex_state = 349, .external_lex_state = 6}, + [5267] = {.lex_state = 349, .external_lex_state = 6}, [5268] = {.lex_state = 349, .external_lex_state = 5}, - [5269] = {.lex_state = 349, .external_lex_state = 5}, + [5269] = {.lex_state = 45, .external_lex_state = 2}, [5270] = {.lex_state = 349, .external_lex_state = 5}, [5271] = {.lex_state = 45, .external_lex_state = 5}, - [5272] = {.lex_state = 349, .external_lex_state = 6}, + [5272] = {.lex_state = 349, .external_lex_state = 5}, [5273] = {.lex_state = 349, .external_lex_state = 5}, - [5274] = {.lex_state = 45, .external_lex_state = 5}, + [5274] = {.lex_state = 349, .external_lex_state = 5}, [5275] = {.lex_state = 349, .external_lex_state = 5}, - [5276] = {.lex_state = 349, .external_lex_state = 6}, + [5276] = {.lex_state = 349, .external_lex_state = 5}, [5277] = {.lex_state = 349, .external_lex_state = 5}, - [5278] = {.lex_state = 349, .external_lex_state = 5}, - [5279] = {.lex_state = 349, .external_lex_state = 5}, - [5280] = {.lex_state = 349, .external_lex_state = 5}, - [5281] = {.lex_state = 45, .external_lex_state = 2}, - [5282] = {.lex_state = 349, .external_lex_state = 6}, + [5278] = {.lex_state = 349, .external_lex_state = 6}, + [5279] = {.lex_state = 45, .external_lex_state = 5}, + [5280] = {.lex_state = 349, .external_lex_state = 6}, + [5281] = {.lex_state = 349, .external_lex_state = 6}, + [5282] = {.lex_state = 349, .external_lex_state = 5}, [5283] = {.lex_state = 349, .external_lex_state = 5}, [5284] = {.lex_state = 349, .external_lex_state = 5}, - [5285] = {.lex_state = 45, .external_lex_state = 2}, - [5286] = {.lex_state = 349, .external_lex_state = 6}, + [5285] = {.lex_state = 349, .external_lex_state = 5}, + [5286] = {.lex_state = 45, .external_lex_state = 2}, [5287] = {.lex_state = 349, .external_lex_state = 5}, [5288] = {.lex_state = 349, .external_lex_state = 5}, - [5289] = {.lex_state = 45, .external_lex_state = 2}, - [5290] = {.lex_state = 349, .external_lex_state = 5}, - [5291] = {.lex_state = 45, .external_lex_state = 2}, + [5289] = {.lex_state = 349, .external_lex_state = 5}, + [5290] = {.lex_state = 45, .external_lex_state = 2}, + [5291] = {.lex_state = 349, .external_lex_state = 5}, [5292] = {.lex_state = 45, .external_lex_state = 2}, [5293] = {.lex_state = 349, .external_lex_state = 5}, - [5294] = {.lex_state = 349, .external_lex_state = 5}, + [5294] = {.lex_state = 45, .external_lex_state = 2}, [5295] = {.lex_state = 349, .external_lex_state = 5}, [5296] = {.lex_state = 349, .external_lex_state = 5}, - [5297] = {.lex_state = 349, .external_lex_state = 5}, + [5297] = {.lex_state = 45, .external_lex_state = 2}, [5298] = {.lex_state = 349, .external_lex_state = 5}, - [5299] = {.lex_state = 45, .external_lex_state = 2}, + [5299] = {.lex_state = 349, .external_lex_state = 5}, [5300] = {.lex_state = 349, .external_lex_state = 5}, - [5301] = {.lex_state = 349, .external_lex_state = 5}, + [5301] = {.lex_state = 45, .external_lex_state = 2}, [5302] = {.lex_state = 349, .external_lex_state = 5}, [5303] = {.lex_state = 349, .external_lex_state = 5}, - [5304] = {.lex_state = 349, .external_lex_state = 2}, - [5305] = {.lex_state = 349, .external_lex_state = 5}, + [5304] = {.lex_state = 349, .external_lex_state = 5}, + [5305] = {.lex_state = 349, .external_lex_state = 2}, [5306] = {.lex_state = 349, .external_lex_state = 5}, - [5307] = {.lex_state = 349, .external_lex_state = 6}, - [5308] = {.lex_state = 45, .external_lex_state = 5}, + [5307] = {.lex_state = 349, .external_lex_state = 5}, + [5308] = {.lex_state = 349, .external_lex_state = 6}, [5309] = {.lex_state = 349, .external_lex_state = 5}, - [5310] = {.lex_state = 46, .external_lex_state = 2}, - [5311] = {.lex_state = 46, .external_lex_state = 2}, + [5310] = {.lex_state = 45, .external_lex_state = 5}, + [5311] = {.lex_state = 349, .external_lex_state = 5}, [5312] = {.lex_state = 349, .external_lex_state = 5}, - [5313] = {.lex_state = 45, .external_lex_state = 2}, - [5314] = {.lex_state = 349, .external_lex_state = 5}, - [5315] = {.lex_state = 349, .external_lex_state = 5}, - [5316] = {.lex_state = 45, .external_lex_state = 2}, + [5313] = {.lex_state = 46, .external_lex_state = 2}, + [5314] = {.lex_state = 46, .external_lex_state = 2}, + [5315] = {.lex_state = 45, .external_lex_state = 2}, + [5316] = {.lex_state = 349, .external_lex_state = 5}, [5317] = {.lex_state = 349, .external_lex_state = 5}, - [5318] = {.lex_state = 349, .external_lex_state = 6}, + [5318] = {.lex_state = 45, .external_lex_state = 2}, [5319] = {.lex_state = 349, .external_lex_state = 5}, [5320] = {.lex_state = 349, .external_lex_state = 5}, - [5321] = {.lex_state = 349, .external_lex_state = 5}, - [5322] = {.lex_state = 45, .external_lex_state = 2}, - [5323] = {.lex_state = 349, .external_lex_state = 5}, + [5321] = {.lex_state = 349, .external_lex_state = 6}, + [5322] = {.lex_state = 349, .external_lex_state = 5}, + [5323] = {.lex_state = 45, .external_lex_state = 2}, [5324] = {.lex_state = 349, .external_lex_state = 5}, [5325] = {.lex_state = 349, .external_lex_state = 5}, [5326] = {.lex_state = 349, .external_lex_state = 5}, - [5327] = {.lex_state = 45, .external_lex_state = 5}, - [5328] = {.lex_state = 349, .external_lex_state = 5}, + [5327] = {.lex_state = 349, .external_lex_state = 5}, + [5328] = {.lex_state = 45, .external_lex_state = 5}, [5329] = {.lex_state = 349, .external_lex_state = 5}, [5330] = {.lex_state = 349, .external_lex_state = 5}, [5331] = {.lex_state = 349, .external_lex_state = 5}, @@ -25600,32 +25606,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5337] = {.lex_state = 349, .external_lex_state = 5}, [5338] = {.lex_state = 349, .external_lex_state = 5}, [5339] = {.lex_state = 349, .external_lex_state = 5}, - [5340] = {.lex_state = 349, .external_lex_state = 5}, + [5340] = {.lex_state = 45, .external_lex_state = 5}, [5341] = {.lex_state = 349, .external_lex_state = 5}, [5342] = {.lex_state = 349, .external_lex_state = 5}, - [5343] = {.lex_state = 45, .external_lex_state = 5}, + [5343] = {.lex_state = 349, .external_lex_state = 5}, [5344] = {.lex_state = 349, .external_lex_state = 6}, [5345] = {.lex_state = 349, .external_lex_state = 5}, - [5346] = {.lex_state = 349, .external_lex_state = 2}, + [5346] = {.lex_state = 349, .external_lex_state = 5}, [5347] = {.lex_state = 349, .external_lex_state = 5}, - [5348] = {.lex_state = 349, .external_lex_state = 5}, + [5348] = {.lex_state = 349, .external_lex_state = 2}, [5349] = {.lex_state = 349, .external_lex_state = 5}, [5350] = {.lex_state = 349, .external_lex_state = 5}, [5351] = {.lex_state = 349, .external_lex_state = 5}, - [5352] = {.lex_state = 349, .external_lex_state = 6}, - [5353] = {.lex_state = 349, .external_lex_state = 5}, - [5354] = {.lex_state = 45, .external_lex_state = 5}, - [5355] = {.lex_state = 349, .external_lex_state = 6}, + [5352] = {.lex_state = 349, .external_lex_state = 5}, + [5353] = {.lex_state = 349, .external_lex_state = 6}, + [5354] = {.lex_state = 349, .external_lex_state = 5}, + [5355] = {.lex_state = 45, .external_lex_state = 5}, [5356] = {.lex_state = 349, .external_lex_state = 5}, [5357] = {.lex_state = 349, .external_lex_state = 5}, - [5358] = {.lex_state = 62, .external_lex_state = 2}, + [5358] = {.lex_state = 349, .external_lex_state = 6}, [5359] = {.lex_state = 349, .external_lex_state = 5}, - [5360] = {.lex_state = 349, .external_lex_state = 5}, + [5360] = {.lex_state = 62, .external_lex_state = 2}, [5361] = {.lex_state = 349, .external_lex_state = 5}, [5362] = {.lex_state = 349, .external_lex_state = 5}, - [5363] = {.lex_state = 349, .external_lex_state = 6}, + [5363] = {.lex_state = 349, .external_lex_state = 5}, [5364] = {.lex_state = 349, .external_lex_state = 5}, - [5365] = {.lex_state = 349, .external_lex_state = 5}, + [5365] = {.lex_state = 349, .external_lex_state = 6}, [5366] = {.lex_state = 349, .external_lex_state = 5}, [5367] = {.lex_state = 349, .external_lex_state = 5}, [5368] = {.lex_state = 349, .external_lex_state = 5}, @@ -25633,318 +25639,318 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5370] = {.lex_state = 349, .external_lex_state = 5}, [5371] = {.lex_state = 349, .external_lex_state = 5}, [5372] = {.lex_state = 349, .external_lex_state = 5}, - [5373] = {.lex_state = 45, .external_lex_state = 2}, - [5374] = {.lex_state = 54, .external_lex_state = 9}, - [5375] = {.lex_state = 58, .external_lex_state = 9}, - [5376] = {.lex_state = 58, .external_lex_state = 9}, - [5377] = {.lex_state = 349, .external_lex_state = 5}, - [5378] = {.lex_state = 54, .external_lex_state = 9}, - [5379] = {.lex_state = 349, .external_lex_state = 5}, - [5380] = {.lex_state = 349, .external_lex_state = 5}, - [5381] = {.lex_state = 349, .external_lex_state = 5}, + [5373] = {.lex_state = 349, .external_lex_state = 5}, + [5374] = {.lex_state = 349, .external_lex_state = 5}, + [5375] = {.lex_state = 45, .external_lex_state = 2}, + [5376] = {.lex_state = 349, .external_lex_state = 5}, + [5377] = {.lex_state = 58, .external_lex_state = 9}, + [5378] = {.lex_state = 349, .external_lex_state = 5}, + [5379] = {.lex_state = 54, .external_lex_state = 9}, + [5380] = {.lex_state = 58, .external_lex_state = 9}, + [5381] = {.lex_state = 54, .external_lex_state = 9}, [5382] = {.lex_state = 349, .external_lex_state = 5}, - [5383] = {.lex_state = 54, .external_lex_state = 9}, + [5383] = {.lex_state = 349, .external_lex_state = 5}, [5384] = {.lex_state = 349, .external_lex_state = 5}, - [5385] = {.lex_state = 58, .external_lex_state = 9}, - [5386] = {.lex_state = 58, .external_lex_state = 9}, - [5387] = {.lex_state = 54, .external_lex_state = 9}, - [5388] = {.lex_state = 349, .external_lex_state = 5}, - [5389] = {.lex_state = 349, .external_lex_state = 5}, - [5390] = {.lex_state = 54, .external_lex_state = 9}, - [5391] = {.lex_state = 45, .external_lex_state = 2}, - [5392] = {.lex_state = 58, .external_lex_state = 9}, - [5393] = {.lex_state = 45, .external_lex_state = 2}, - [5394] = {.lex_state = 349, .external_lex_state = 5}, - [5395] = {.lex_state = 349, .external_lex_state = 5}, + [5385] = {.lex_state = 54, .external_lex_state = 9}, + [5386] = {.lex_state = 349, .external_lex_state = 5}, + [5387] = {.lex_state = 58, .external_lex_state = 9}, + [5388] = {.lex_state = 58, .external_lex_state = 9}, + [5389] = {.lex_state = 54, .external_lex_state = 9}, + [5390] = {.lex_state = 349, .external_lex_state = 5}, + [5391] = {.lex_state = 349, .external_lex_state = 5}, + [5392] = {.lex_state = 54, .external_lex_state = 9}, + [5393] = {.lex_state = 58, .external_lex_state = 9}, + [5394] = {.lex_state = 45, .external_lex_state = 2}, + [5395] = {.lex_state = 45, .external_lex_state = 2}, [5396] = {.lex_state = 349, .external_lex_state = 5}, - [5397] = {.lex_state = 1, .external_lex_state = 2}, - [5398] = {.lex_state = 54, .external_lex_state = 9}, - [5399] = {.lex_state = 58, .external_lex_state = 9}, + [5397] = {.lex_state = 349, .external_lex_state = 5}, + [5398] = {.lex_state = 1, .external_lex_state = 2}, + [5399] = {.lex_state = 45, .external_lex_state = 2}, [5400] = {.lex_state = 45, .external_lex_state = 2}, - [5401] = {.lex_state = 45, .external_lex_state = 2}, + [5401] = {.lex_state = 349, .external_lex_state = 5}, [5402] = {.lex_state = 54, .external_lex_state = 9}, [5403] = {.lex_state = 58, .external_lex_state = 9}, - [5404] = {.lex_state = 349, .external_lex_state = 2}, - [5405] = {.lex_state = 45, .external_lex_state = 2}, + [5404] = {.lex_state = 45, .external_lex_state = 2}, + [5405] = {.lex_state = 349, .external_lex_state = 2}, [5406] = {.lex_state = 45, .external_lex_state = 2}, [5407] = {.lex_state = 54, .external_lex_state = 9}, [5408] = {.lex_state = 58, .external_lex_state = 9}, [5409] = {.lex_state = 54, .external_lex_state = 9}, [5410] = {.lex_state = 58, .external_lex_state = 9}, - [5411] = {.lex_state = 45, .external_lex_state = 2}, - [5412] = {.lex_state = 54, .external_lex_state = 9}, - [5413] = {.lex_state = 349, .external_lex_state = 5}, - [5414] = {.lex_state = 58, .external_lex_state = 9}, - [5415] = {.lex_state = 54, .external_lex_state = 9}, - [5416] = {.lex_state = 58, .external_lex_state = 9}, - [5417] = {.lex_state = 54, .external_lex_state = 9}, - [5418] = {.lex_state = 349, .external_lex_state = 5}, - [5419] = {.lex_state = 349, .external_lex_state = 5}, - [5420] = {.lex_state = 349, .external_lex_state = 5}, - [5421] = {.lex_state = 349, .external_lex_state = 5}, + [5411] = {.lex_state = 54, .external_lex_state = 9}, + [5412] = {.lex_state = 58, .external_lex_state = 9}, + [5413] = {.lex_state = 45, .external_lex_state = 2}, + [5414] = {.lex_state = 54, .external_lex_state = 9}, + [5415] = {.lex_state = 58, .external_lex_state = 9}, + [5416] = {.lex_state = 54, .external_lex_state = 9}, + [5417] = {.lex_state = 349, .external_lex_state = 5}, + [5418] = {.lex_state = 58, .external_lex_state = 9}, + [5419] = {.lex_state = 54, .external_lex_state = 9}, + [5420] = {.lex_state = 58, .external_lex_state = 9}, + [5421] = {.lex_state = 54, .external_lex_state = 9}, [5422] = {.lex_state = 58, .external_lex_state = 9}, - [5423] = {.lex_state = 54, .external_lex_state = 9}, - [5424] = {.lex_state = 58, .external_lex_state = 9}, - [5425] = {.lex_state = 54, .external_lex_state = 9}, - [5426] = {.lex_state = 58, .external_lex_state = 9}, + [5423] = {.lex_state = 349, .external_lex_state = 5}, + [5424] = {.lex_state = 349, .external_lex_state = 5}, + [5425] = {.lex_state = 349, .external_lex_state = 5}, + [5426] = {.lex_state = 349, .external_lex_state = 5}, [5427] = {.lex_state = 54, .external_lex_state = 9}, [5428] = {.lex_state = 58, .external_lex_state = 9}, - [5429] = {.lex_state = 45, .external_lex_state = 2}, - [5430] = {.lex_state = 54, .external_lex_state = 9}, - [5431] = {.lex_state = 58, .external_lex_state = 9}, - [5432] = {.lex_state = 45, .external_lex_state = 2}, - [5433] = {.lex_state = 54, .external_lex_state = 9}, - [5434] = {.lex_state = 58, .external_lex_state = 9}, - [5435] = {.lex_state = 54, .external_lex_state = 9}, + [5429] = {.lex_state = 54, .external_lex_state = 9}, + [5430] = {.lex_state = 58, .external_lex_state = 9}, + [5431] = {.lex_state = 45, .external_lex_state = 2}, + [5432] = {.lex_state = 54, .external_lex_state = 9}, + [5433] = {.lex_state = 58, .external_lex_state = 9}, + [5434] = {.lex_state = 54, .external_lex_state = 9}, + [5435] = {.lex_state = 45, .external_lex_state = 2}, [5436] = {.lex_state = 58, .external_lex_state = 9}, [5437] = {.lex_state = 45, .external_lex_state = 2}, [5438] = {.lex_state = 349, .external_lex_state = 5}, [5439] = {.lex_state = 349, .external_lex_state = 5}, - [5440] = {.lex_state = 349, .external_lex_state = 5}, - [5441] = {.lex_state = 349, .external_lex_state = 5}, + [5440] = {.lex_state = 54, .external_lex_state = 9}, + [5441] = {.lex_state = 58, .external_lex_state = 9}, [5442] = {.lex_state = 45, .external_lex_state = 2}, [5443] = {.lex_state = 349, .external_lex_state = 5}, - [5444] = {.lex_state = 349, .external_lex_state = 2}, - [5445] = {.lex_state = 45, .external_lex_state = 2}, + [5444] = {.lex_state = 349, .external_lex_state = 5}, + [5445] = {.lex_state = 349, .external_lex_state = 5}, [5446] = {.lex_state = 349, .external_lex_state = 2}, - [5447] = {.lex_state = 349, .external_lex_state = 5}, - [5448] = {.lex_state = 24, .external_lex_state = 2}, - [5449] = {.lex_state = 45, .external_lex_state = 2}, - [5450] = {.lex_state = 45, .external_lex_state = 2}, - [5451] = {.lex_state = 70, .external_lex_state = 2}, + [5447] = {.lex_state = 45, .external_lex_state = 2}, + [5448] = {.lex_state = 349, .external_lex_state = 5}, + [5449] = {.lex_state = 349, .external_lex_state = 2}, + [5450] = {.lex_state = 24, .external_lex_state = 2}, + [5451] = {.lex_state = 45, .external_lex_state = 2}, [5452] = {.lex_state = 45, .external_lex_state = 2}, - [5453] = {.lex_state = 349, .external_lex_state = 5}, + [5453] = {.lex_state = 70, .external_lex_state = 2}, [5454] = {.lex_state = 45, .external_lex_state = 2}, [5455] = {.lex_state = 45, .external_lex_state = 2}, - [5456] = {.lex_state = 45, .external_lex_state = 2}, - [5457] = {.lex_state = 24, .external_lex_state = 2}, - [5458] = {.lex_state = 24, .external_lex_state = 2}, + [5456] = {.lex_state = 349, .external_lex_state = 5}, + [5457] = {.lex_state = 45, .external_lex_state = 2}, + [5458] = {.lex_state = 45, .external_lex_state = 2}, [5459] = {.lex_state = 24, .external_lex_state = 2}, - [5460] = {.lex_state = 47, .external_lex_state = 2}, - [5461] = {.lex_state = 45, .external_lex_state = 2}, - [5462] = {.lex_state = 349, .external_lex_state = 5}, - [5463] = {.lex_state = 349, .external_lex_state = 2}, - [5464] = {.lex_state = 46, .external_lex_state = 2}, - [5465] = {.lex_state = 58, .external_lex_state = 9}, - [5466] = {.lex_state = 54, .external_lex_state = 9}, + [5460] = {.lex_state = 24, .external_lex_state = 2}, + [5461] = {.lex_state = 24, .external_lex_state = 2}, + [5462] = {.lex_state = 47, .external_lex_state = 2}, + [5463] = {.lex_state = 349, .external_lex_state = 5}, + [5464] = {.lex_state = 349, .external_lex_state = 2}, + [5465] = {.lex_state = 46, .external_lex_state = 2}, + [5466] = {.lex_state = 45, .external_lex_state = 2}, [5467] = {.lex_state = 45, .external_lex_state = 2}, - [5468] = {.lex_state = 349, .external_lex_state = 5}, - [5469] = {.lex_state = 349, .external_lex_state = 5}, - [5470] = {.lex_state = 349, .external_lex_state = 5}, + [5468] = {.lex_state = 58, .external_lex_state = 9}, + [5469] = {.lex_state = 54, .external_lex_state = 9}, + [5470] = {.lex_state = 24, .external_lex_state = 2}, [5471] = {.lex_state = 349, .external_lex_state = 5}, - [5472] = {.lex_state = 45, .external_lex_state = 2}, + [5472] = {.lex_state = 349, .external_lex_state = 5}, [5473] = {.lex_state = 349, .external_lex_state = 5}, [5474] = {.lex_state = 349, .external_lex_state = 5}, - [5475] = {.lex_state = 24, .external_lex_state = 2}, - [5476] = {.lex_state = 349, .external_lex_state = 7}, - [5477] = {.lex_state = 70, .external_lex_state = 2}, - [5478] = {.lex_state = 58, .external_lex_state = 9}, - [5479] = {.lex_state = 54, .external_lex_state = 9}, - [5480] = {.lex_state = 45, .external_lex_state = 2}, + [5475] = {.lex_state = 45, .external_lex_state = 2}, + [5476] = {.lex_state = 349, .external_lex_state = 2}, + [5477] = {.lex_state = 349, .external_lex_state = 5}, + [5478] = {.lex_state = 349, .external_lex_state = 7}, + [5479] = {.lex_state = 349, .external_lex_state = 5}, + [5480] = {.lex_state = 70, .external_lex_state = 2}, [5481] = {.lex_state = 45, .external_lex_state = 2}, - [5482] = {.lex_state = 45, .external_lex_state = 2}, - [5483] = {.lex_state = 349, .external_lex_state = 5}, - [5484] = {.lex_state = 349, .external_lex_state = 5}, - [5485] = {.lex_state = 349, .external_lex_state = 5}, - [5486] = {.lex_state = 70, .external_lex_state = 2}, + [5482] = {.lex_state = 58, .external_lex_state = 9}, + [5483] = {.lex_state = 54, .external_lex_state = 9}, + [5484] = {.lex_state = 45, .external_lex_state = 2}, + [5485] = {.lex_state = 70, .external_lex_state = 2}, + [5486] = {.lex_state = 45, .external_lex_state = 2}, [5487] = {.lex_state = 349, .external_lex_state = 7}, [5488] = {.lex_state = 349, .external_lex_state = 5}, [5489] = {.lex_state = 349, .external_lex_state = 5}, - [5490] = {.lex_state = 45, .external_lex_state = 2}, + [5490] = {.lex_state = 349, .external_lex_state = 5}, [5491] = {.lex_state = 45, .external_lex_state = 2}, [5492] = {.lex_state = 45, .external_lex_state = 2}, - [5493] = {.lex_state = 45, .external_lex_state = 2}, - [5494] = {.lex_state = 45, .external_lex_state = 2}, + [5493] = {.lex_state = 349, .external_lex_state = 5}, + [5494] = {.lex_state = 349, .external_lex_state = 5}, [5495] = {.lex_state = 45, .external_lex_state = 2}, - [5496] = {.lex_state = 349, .external_lex_state = 2}, + [5496] = {.lex_state = 45, .external_lex_state = 2}, [5497] = {.lex_state = 45, .external_lex_state = 2}, - [5498] = {.lex_state = 349, .external_lex_state = 2}, + [5498] = {.lex_state = 45, .external_lex_state = 2}, [5499] = {.lex_state = 45, .external_lex_state = 2}, - [5500] = {.lex_state = 45, .external_lex_state = 2}, - [5501] = {.lex_state = 349, .external_lex_state = 5}, - [5502] = {.lex_state = 45, .external_lex_state = 2}, + [5500] = {.lex_state = 349, .external_lex_state = 2}, + [5501] = {.lex_state = 349, .external_lex_state = 2}, + [5502] = {.lex_state = 349, .external_lex_state = 5}, [5503] = {.lex_state = 45, .external_lex_state = 2}, - [5504] = {.lex_state = 349, .external_lex_state = 5}, - [5505] = {.lex_state = 349, .external_lex_state = 5}, + [5504] = {.lex_state = 45, .external_lex_state = 2}, + [5505] = {.lex_state = 45, .external_lex_state = 2}, [5506] = {.lex_state = 349, .external_lex_state = 5}, [5507] = {.lex_state = 349, .external_lex_state = 5}, - [5508] = {.lex_state = 349, .external_lex_state = 5}, + [5508] = {.lex_state = 45, .external_lex_state = 2}, [5509] = {.lex_state = 349, .external_lex_state = 5}, - [5510] = {.lex_state = 45, .external_lex_state = 2}, - [5511] = {.lex_state = 349, .external_lex_state = 2}, + [5510] = {.lex_state = 349, .external_lex_state = 5}, + [5511] = {.lex_state = 349, .external_lex_state = 5}, [5512] = {.lex_state = 349, .external_lex_state = 5}, - [5513] = {.lex_state = 349, .external_lex_state = 5}, + [5513] = {.lex_state = 349, .external_lex_state = 2}, [5514] = {.lex_state = 349, .external_lex_state = 5}, - [5515] = {.lex_state = 47, .external_lex_state = 2}, - [5516] = {.lex_state = 349, .external_lex_state = 2}, - [5517] = {.lex_state = 70, .external_lex_state = 2}, - [5518] = {.lex_state = 45, .external_lex_state = 2}, - [5519] = {.lex_state = 45, .external_lex_state = 2}, - [5520] = {.lex_state = 45, .external_lex_state = 2}, + [5515] = {.lex_state = 45, .external_lex_state = 2}, + [5516] = {.lex_state = 349, .external_lex_state = 5}, + [5517] = {.lex_state = 349, .external_lex_state = 5}, + [5518] = {.lex_state = 47, .external_lex_state = 2}, + [5519] = {.lex_state = 349, .external_lex_state = 2}, + [5520] = {.lex_state = 70, .external_lex_state = 2}, [5521] = {.lex_state = 45, .external_lex_state = 2}, - [5522] = {.lex_state = 349, .external_lex_state = 2}, + [5522] = {.lex_state = 45, .external_lex_state = 2}, [5523] = {.lex_state = 45, .external_lex_state = 2}, - [5524] = {.lex_state = 45, .external_lex_state = 2}, - [5525] = {.lex_state = 349, .external_lex_state = 2}, + [5524] = {.lex_state = 349, .external_lex_state = 2}, + [5525] = {.lex_state = 45, .external_lex_state = 2}, [5526] = {.lex_state = 45, .external_lex_state = 2}, - [5527] = {.lex_state = 349, .external_lex_state = 2}, - [5528] = {.lex_state = 349, .external_lex_state = 6}, - [5529] = {.lex_state = 58, .external_lex_state = 9}, - [5530] = {.lex_state = 54, .external_lex_state = 9}, - [5531] = {.lex_state = 349, .external_lex_state = 5}, + [5527] = {.lex_state = 45, .external_lex_state = 2}, + [5528] = {.lex_state = 349, .external_lex_state = 2}, + [5529] = {.lex_state = 349, .external_lex_state = 2}, + [5530] = {.lex_state = 349, .external_lex_state = 6}, + [5531] = {.lex_state = 45, .external_lex_state = 2}, [5532] = {.lex_state = 45, .external_lex_state = 2}, - [5533] = {.lex_state = 349, .external_lex_state = 5}, - [5534] = {.lex_state = 349, .external_lex_state = 2}, + [5533] = {.lex_state = 58, .external_lex_state = 9}, + [5534] = {.lex_state = 349, .external_lex_state = 5}, [5535] = {.lex_state = 349, .external_lex_state = 5}, - [5536] = {.lex_state = 349, .external_lex_state = 5}, + [5536] = {.lex_state = 54, .external_lex_state = 9}, [5537] = {.lex_state = 349, .external_lex_state = 5}, - [5538] = {.lex_state = 349, .external_lex_state = 5}, - [5539] = {.lex_state = 45, .external_lex_state = 2}, + [5538] = {.lex_state = 349, .external_lex_state = 2}, + [5539] = {.lex_state = 349, .external_lex_state = 5}, [5540] = {.lex_state = 349, .external_lex_state = 5}, [5541] = {.lex_state = 45, .external_lex_state = 2}, [5542] = {.lex_state = 349, .external_lex_state = 5}, [5543] = {.lex_state = 349, .external_lex_state = 5}, [5544] = {.lex_state = 349, .external_lex_state = 5}, [5545] = {.lex_state = 349, .external_lex_state = 5}, - [5546] = {.lex_state = 58, .external_lex_state = 9}, - [5547] = {.lex_state = 54, .external_lex_state = 9}, + [5546] = {.lex_state = 45, .external_lex_state = 2}, + [5547] = {.lex_state = 349, .external_lex_state = 5}, [5548] = {.lex_state = 349, .external_lex_state = 5}, - [5549] = {.lex_state = 349, .external_lex_state = 2}, - [5550] = {.lex_state = 45, .external_lex_state = 2}, - [5551] = {.lex_state = 45, .external_lex_state = 2}, - [5552] = {.lex_state = 58, .external_lex_state = 9}, - [5553] = {.lex_state = 54, .external_lex_state = 9}, - [5554] = {.lex_state = 45, .external_lex_state = 2}, - [5555] = {.lex_state = 21, .external_lex_state = 2}, - [5556] = {.lex_state = 349, .external_lex_state = 5}, - [5557] = {.lex_state = 349, .external_lex_state = 5}, - [5558] = {.lex_state = 349, .external_lex_state = 5}, + [5549] = {.lex_state = 58, .external_lex_state = 9}, + [5550] = {.lex_state = 54, .external_lex_state = 9}, + [5551] = {.lex_state = 349, .external_lex_state = 2}, + [5552] = {.lex_state = 45, .external_lex_state = 2}, + [5553] = {.lex_state = 45, .external_lex_state = 2}, + [5554] = {.lex_state = 349, .external_lex_state = 5}, + [5555] = {.lex_state = 58, .external_lex_state = 9}, + [5556] = {.lex_state = 54, .external_lex_state = 9}, + [5557] = {.lex_state = 45, .external_lex_state = 2}, + [5558] = {.lex_state = 21, .external_lex_state = 2}, [5559] = {.lex_state = 349, .external_lex_state = 5}, - [5560] = {.lex_state = 1, .external_lex_state = 2}, + [5560] = {.lex_state = 349, .external_lex_state = 5}, [5561] = {.lex_state = 349, .external_lex_state = 5}, [5562] = {.lex_state = 349, .external_lex_state = 5}, [5563] = {.lex_state = 349, .external_lex_state = 5}, - [5564] = {.lex_state = 349, .external_lex_state = 5}, + [5564] = {.lex_state = 1, .external_lex_state = 2}, [5565] = {.lex_state = 349, .external_lex_state = 5}, [5566] = {.lex_state = 349, .external_lex_state = 5}, [5567] = {.lex_state = 349, .external_lex_state = 5}, - [5568] = {.lex_state = 349, .external_lex_state = 2}, - [5569] = {.lex_state = 349, .external_lex_state = 2}, - [5570] = {.lex_state = 349, .external_lex_state = 7}, - [5571] = {.lex_state = 58, .external_lex_state = 9}, - [5572] = {.lex_state = 349, .external_lex_state = 5}, - [5573] = {.lex_state = 54, .external_lex_state = 9}, - [5574] = {.lex_state = 45, .external_lex_state = 2}, + [5568] = {.lex_state = 349, .external_lex_state = 5}, + [5569] = {.lex_state = 349, .external_lex_state = 5}, + [5570] = {.lex_state = 349, .external_lex_state = 5}, + [5571] = {.lex_state = 349, .external_lex_state = 2}, + [5572] = {.lex_state = 349, .external_lex_state = 2}, + [5573] = {.lex_state = 349, .external_lex_state = 7}, + [5574] = {.lex_state = 349, .external_lex_state = 5}, [5575] = {.lex_state = 58, .external_lex_state = 9}, - [5576] = {.lex_state = 1, .external_lex_state = 2}, - [5577] = {.lex_state = 54, .external_lex_state = 9}, + [5576] = {.lex_state = 54, .external_lex_state = 9}, + [5577] = {.lex_state = 45, .external_lex_state = 2}, [5578] = {.lex_state = 58, .external_lex_state = 9}, - [5579] = {.lex_state = 54, .external_lex_state = 9}, - [5580] = {.lex_state = 349, .external_lex_state = 2}, - [5581] = {.lex_state = 45, .external_lex_state = 2}, - [5582] = {.lex_state = 349, .external_lex_state = 5}, - [5583] = {.lex_state = 349, .external_lex_state = 5}, - [5584] = {.lex_state = 349, .external_lex_state = 2}, - [5585] = {.lex_state = 45, .external_lex_state = 2}, + [5579] = {.lex_state = 1, .external_lex_state = 2}, + [5580] = {.lex_state = 54, .external_lex_state = 9}, + [5581] = {.lex_state = 58, .external_lex_state = 9}, + [5582] = {.lex_state = 54, .external_lex_state = 9}, + [5583] = {.lex_state = 349, .external_lex_state = 2}, + [5584] = {.lex_state = 45, .external_lex_state = 2}, + [5585] = {.lex_state = 349, .external_lex_state = 5}, [5586] = {.lex_state = 349, .external_lex_state = 5}, [5587] = {.lex_state = 349, .external_lex_state = 2}, - [5588] = {.lex_state = 349, .external_lex_state = 2}, - [5589] = {.lex_state = 349, .external_lex_state = 5}, - [5590] = {.lex_state = 45, .external_lex_state = 2}, - [5591] = {.lex_state = 349, .external_lex_state = 5}, + [5588] = {.lex_state = 349, .external_lex_state = 5}, + [5589] = {.lex_state = 349, .external_lex_state = 2}, + [5590] = {.lex_state = 349, .external_lex_state = 2}, + [5591] = {.lex_state = 45, .external_lex_state = 2}, [5592] = {.lex_state = 349, .external_lex_state = 5}, - [5593] = {.lex_state = 349, .external_lex_state = 2}, - [5594] = {.lex_state = 45, .external_lex_state = 2}, + [5593] = {.lex_state = 45, .external_lex_state = 2}, + [5594] = {.lex_state = 349, .external_lex_state = 2}, [5595] = {.lex_state = 349, .external_lex_state = 5}, - [5596] = {.lex_state = 349, .external_lex_state = 2}, - [5597] = {.lex_state = 1, .external_lex_state = 2}, - [5598] = {.lex_state = 45, .external_lex_state = 2}, + [5596] = {.lex_state = 349, .external_lex_state = 5}, + [5597] = {.lex_state = 45, .external_lex_state = 2}, + [5598] = {.lex_state = 349, .external_lex_state = 5}, [5599] = {.lex_state = 349, .external_lex_state = 2}, - [5600] = {.lex_state = 58, .external_lex_state = 9}, - [5601] = {.lex_state = 54, .external_lex_state = 9}, - [5602] = {.lex_state = 349, .external_lex_state = 5}, - [5603] = {.lex_state = 349, .external_lex_state = 5}, - [5604] = {.lex_state = 349, .external_lex_state = 5}, - [5605] = {.lex_state = 349, .external_lex_state = 2}, + [5600] = {.lex_state = 45, .external_lex_state = 2}, + [5601] = {.lex_state = 1, .external_lex_state = 2}, + [5602] = {.lex_state = 349, .external_lex_state = 2}, + [5603] = {.lex_state = 58, .external_lex_state = 9}, + [5604] = {.lex_state = 54, .external_lex_state = 9}, + [5605] = {.lex_state = 75, .external_lex_state = 2}, [5606] = {.lex_state = 349, .external_lex_state = 5}, - [5607] = {.lex_state = 47, .external_lex_state = 5}, - [5608] = {.lex_state = 47, .external_lex_state = 5}, - [5609] = {.lex_state = 349, .external_lex_state = 5}, - [5610] = {.lex_state = 24, .external_lex_state = 2}, - [5611] = {.lex_state = 47, .external_lex_state = 2}, - [5612] = {.lex_state = 24, .external_lex_state = 2}, - [5613] = {.lex_state = 24, .external_lex_state = 2}, + [5607] = {.lex_state = 349, .external_lex_state = 5}, + [5608] = {.lex_state = 349, .external_lex_state = 2}, + [5609] = {.lex_state = 47, .external_lex_state = 5}, + [5610] = {.lex_state = 47, .external_lex_state = 5}, + [5611] = {.lex_state = 24, .external_lex_state = 2}, + [5612] = {.lex_state = 349, .external_lex_state = 5}, + [5613] = {.lex_state = 47, .external_lex_state = 2}, [5614] = {.lex_state = 24, .external_lex_state = 2}, - [5615] = {.lex_state = 21, .external_lex_state = 2}, - [5616] = {.lex_state = 47, .external_lex_state = 2}, - [5617] = {.lex_state = 45, .external_lex_state = 2}, - [5618] = {.lex_state = 24, .external_lex_state = 2}, - [5619] = {.lex_state = 24, .external_lex_state = 2}, - [5620] = {.lex_state = 349, .external_lex_state = 5}, + [5615] = {.lex_state = 349, .external_lex_state = 5}, + [5616] = {.lex_state = 24, .external_lex_state = 2}, + [5617] = {.lex_state = 24, .external_lex_state = 2}, + [5618] = {.lex_state = 21, .external_lex_state = 2}, + [5619] = {.lex_state = 47, .external_lex_state = 2}, + [5620] = {.lex_state = 45, .external_lex_state = 2}, [5621] = {.lex_state = 24, .external_lex_state = 2}, [5622] = {.lex_state = 24, .external_lex_state = 2}, - [5623] = {.lex_state = 349, .external_lex_state = 5}, - [5624] = {.lex_state = 349, .external_lex_state = 2}, - [5625] = {.lex_state = 349, .external_lex_state = 5}, - [5626] = {.lex_state = 349, .external_lex_state = 2}, - [5627] = {.lex_state = 45, .external_lex_state = 2}, - [5628] = {.lex_state = 24, .external_lex_state = 2}, + [5623] = {.lex_state = 24, .external_lex_state = 2}, + [5624] = {.lex_state = 24, .external_lex_state = 2}, + [5625] = {.lex_state = 45, .external_lex_state = 2}, + [5626] = {.lex_state = 349, .external_lex_state = 5}, + [5627] = {.lex_state = 24, .external_lex_state = 2}, + [5628] = {.lex_state = 349, .external_lex_state = 2}, [5629] = {.lex_state = 349, .external_lex_state = 5}, [5630] = {.lex_state = 349, .external_lex_state = 2}, - [5631] = {.lex_state = 349, .external_lex_state = 2}, + [5631] = {.lex_state = 349, .external_lex_state = 5}, [5632] = {.lex_state = 349, .external_lex_state = 2}, - [5633] = {.lex_state = 349, .external_lex_state = 5}, + [5633] = {.lex_state = 349, .external_lex_state = 2}, [5634] = {.lex_state = 349, .external_lex_state = 2}, - [5635] = {.lex_state = 45, .external_lex_state = 2}, - [5636] = {.lex_state = 24, .external_lex_state = 2}, - [5637] = {.lex_state = 24, .external_lex_state = 2}, + [5635] = {.lex_state = 349, .external_lex_state = 5}, + [5636] = {.lex_state = 349, .external_lex_state = 2}, + [5637] = {.lex_state = 45, .external_lex_state = 2}, [5638] = {.lex_state = 24, .external_lex_state = 2}, - [5639] = {.lex_state = 349, .external_lex_state = 2}, - [5640] = {.lex_state = 349, .external_lex_state = 2}, - [5641] = {.lex_state = 349, .external_lex_state = 2}, - [5642] = {.lex_state = 45, .external_lex_state = 2}, + [5639] = {.lex_state = 349, .external_lex_state = 5}, + [5640] = {.lex_state = 24, .external_lex_state = 2}, + [5641] = {.lex_state = 24, .external_lex_state = 2}, + [5642] = {.lex_state = 349, .external_lex_state = 2}, [5643] = {.lex_state = 349, .external_lex_state = 2}, [5644] = {.lex_state = 349, .external_lex_state = 2}, - [5645] = {.lex_state = 47, .external_lex_state = 5}, - [5646] = {.lex_state = 349, .external_lex_state = 5}, - [5647] = {.lex_state = 349, .external_lex_state = 5}, + [5645] = {.lex_state = 45, .external_lex_state = 2}, + [5646] = {.lex_state = 349, .external_lex_state = 2}, + [5647] = {.lex_state = 349, .external_lex_state = 2}, [5648] = {.lex_state = 47, .external_lex_state = 5}, - [5649] = {.lex_state = 349, .external_lex_state = 2}, - [5650] = {.lex_state = 349, .external_lex_state = 5}, + [5649] = {.lex_state = 47, .external_lex_state = 5}, + [5650] = {.lex_state = 349, .external_lex_state = 2}, [5651] = {.lex_state = 349, .external_lex_state = 5}, [5652] = {.lex_state = 349, .external_lex_state = 5}, - [5653] = {.lex_state = 349, .external_lex_state = 5}, + [5653] = {.lex_state = 349, .external_lex_state = 2}, [5654] = {.lex_state = 349, .external_lex_state = 2}, - [5655] = {.lex_state = 349, .external_lex_state = 5}, - [5656] = {.lex_state = 349, .external_lex_state = 2}, - [5657] = {.lex_state = 349, .external_lex_state = 2}, + [5655] = {.lex_state = 349, .external_lex_state = 2}, + [5656] = {.lex_state = 349, .external_lex_state = 5}, + [5657] = {.lex_state = 349, .external_lex_state = 5}, [5658] = {.lex_state = 349, .external_lex_state = 2}, [5659] = {.lex_state = 349, .external_lex_state = 2}, [5660] = {.lex_state = 349, .external_lex_state = 2}, [5661] = {.lex_state = 349, .external_lex_state = 2}, - [5662] = {.lex_state = 349, .external_lex_state = 2}, - [5663] = {.lex_state = 24, .external_lex_state = 2}, - [5664] = {.lex_state = 349, .external_lex_state = 5}, + [5662] = {.lex_state = 45, .external_lex_state = 2}, + [5663] = {.lex_state = 349, .external_lex_state = 2}, + [5664] = {.lex_state = 24, .external_lex_state = 2}, [5665] = {.lex_state = 349, .external_lex_state = 5}, - [5666] = {.lex_state = 349, .external_lex_state = 5}, + [5666] = {.lex_state = 54, .external_lex_state = 9}, [5667] = {.lex_state = 349, .external_lex_state = 5}, [5668] = {.lex_state = 349, .external_lex_state = 5}, [5669] = {.lex_state = 349, .external_lex_state = 5}, [5670] = {.lex_state = 349, .external_lex_state = 5}, - [5671] = {.lex_state = 45, .external_lex_state = 2}, - [5672] = {.lex_state = 54, .external_lex_state = 9}, + [5671] = {.lex_state = 349, .external_lex_state = 5}, + [5672] = {.lex_state = 349, .external_lex_state = 5}, [5673] = {.lex_state = 349, .external_lex_state = 5}, [5674] = {.lex_state = 349, .external_lex_state = 5}, - [5675] = {.lex_state = 349, .external_lex_state = 5}, + [5675] = {.lex_state = 58, .external_lex_state = 9}, [5676] = {.lex_state = 349, .external_lex_state = 5}, [5677] = {.lex_state = 349, .external_lex_state = 5}, [5678] = {.lex_state = 349, .external_lex_state = 5}, [5679] = {.lex_state = 349, .external_lex_state = 5}, [5680] = {.lex_state = 349, .external_lex_state = 5}, - [5681] = {.lex_state = 349, .external_lex_state = 5}, - [5682] = {.lex_state = 58, .external_lex_state = 9}, - [5683] = {.lex_state = 349, .external_lex_state = 5}, - [5684] = {.lex_state = 70, .external_lex_state = 2}, + [5681] = {.lex_state = 70, .external_lex_state = 2}, + [5682] = {.lex_state = 349, .external_lex_state = 5}, + [5683] = {.lex_state = 349, .external_lex_state = 2}, + [5684] = {.lex_state = 349, .external_lex_state = 5}, [5685] = {.lex_state = 349, .external_lex_state = 5}, [5686] = {.lex_state = 349, .external_lex_state = 2}, [5687] = {.lex_state = 349, .external_lex_state = 5}, @@ -25952,287 +25958,287 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5689] = {.lex_state = 349, .external_lex_state = 5}, [5690] = {.lex_state = 349, .external_lex_state = 5}, [5691] = {.lex_state = 349, .external_lex_state = 5}, - [5692] = {.lex_state = 349, .external_lex_state = 2}, + [5692] = {.lex_state = 349, .external_lex_state = 5}, [5693] = {.lex_state = 349, .external_lex_state = 5}, - [5694] = {.lex_state = 349, .external_lex_state = 2}, + [5694] = {.lex_state = 349, .external_lex_state = 5}, [5695] = {.lex_state = 349, .external_lex_state = 5}, - [5696] = {.lex_state = 349, .external_lex_state = 2}, - [5697] = {.lex_state = 349, .external_lex_state = 2}, - [5698] = {.lex_state = 47, .external_lex_state = 5}, - [5699] = {.lex_state = 47, .external_lex_state = 5}, - [5700] = {.lex_state = 45, .external_lex_state = 2}, + [5696] = {.lex_state = 349, .external_lex_state = 5}, + [5697] = {.lex_state = 349, .external_lex_state = 5}, + [5698] = {.lex_state = 349, .external_lex_state = 2}, + [5699] = {.lex_state = 349, .external_lex_state = 5}, + [5700] = {.lex_state = 349, .external_lex_state = 2}, [5701] = {.lex_state = 349, .external_lex_state = 5}, - [5702] = {.lex_state = 349, .external_lex_state = 5}, - [5703] = {.lex_state = 349, .external_lex_state = 5}, - [5704] = {.lex_state = 349, .external_lex_state = 5}, - [5705] = {.lex_state = 349, .external_lex_state = 5}, - [5706] = {.lex_state = 349, .external_lex_state = 5}, + [5702] = {.lex_state = 349, .external_lex_state = 2}, + [5703] = {.lex_state = 45, .external_lex_state = 2}, + [5704] = {.lex_state = 47, .external_lex_state = 5}, + [5705] = {.lex_state = 47, .external_lex_state = 5}, + [5706] = {.lex_state = 349, .external_lex_state = 2}, [5707] = {.lex_state = 349, .external_lex_state = 5}, - [5708] = {.lex_state = 349, .external_lex_state = 2}, + [5708] = {.lex_state = 349, .external_lex_state = 5}, [5709] = {.lex_state = 349, .external_lex_state = 5}, [5710] = {.lex_state = 47, .external_lex_state = 2}, - [5711] = {.lex_state = 349, .external_lex_state = 5}, - [5712] = {.lex_state = 349, .external_lex_state = 2}, + [5711] = {.lex_state = 349, .external_lex_state = 2}, + [5712] = {.lex_state = 349, .external_lex_state = 5}, [5713] = {.lex_state = 47, .external_lex_state = 2}, - [5714] = {.lex_state = 349, .external_lex_state = 5}, - [5715] = {.lex_state = 349, .external_lex_state = 2}, - [5716] = {.lex_state = 47, .external_lex_state = 2}, - [5717] = {.lex_state = 47, .external_lex_state = 2}, - [5718] = {.lex_state = 349, .external_lex_state = 5}, - [5719] = {.lex_state = 349, .external_lex_state = 5}, - [5720] = {.lex_state = 349, .external_lex_state = 2}, - [5721] = {.lex_state = 47, .external_lex_state = 2}, - [5722] = {.lex_state = 349, .external_lex_state = 5}, - [5723] = {.lex_state = 349, .external_lex_state = 2}, + [5714] = {.lex_state = 47, .external_lex_state = 2}, + [5715] = {.lex_state = 349, .external_lex_state = 5}, + [5716] = {.lex_state = 349, .external_lex_state = 2}, + [5717] = {.lex_state = 349, .external_lex_state = 5}, + [5718] = {.lex_state = 47, .external_lex_state = 2}, + [5719] = {.lex_state = 47, .external_lex_state = 2}, + [5720] = {.lex_state = 349, .external_lex_state = 5}, + [5721] = {.lex_state = 349, .external_lex_state = 2}, + [5722] = {.lex_state = 349, .external_lex_state = 2}, + [5723] = {.lex_state = 349, .external_lex_state = 5}, [5724] = {.lex_state = 349, .external_lex_state = 5}, - [5725] = {.lex_state = 47, .external_lex_state = 2}, - [5726] = {.lex_state = 349, .external_lex_state = 5}, - [5727] = {.lex_state = 349, .external_lex_state = 5}, - [5728] = {.lex_state = 349, .external_lex_state = 2}, - [5729] = {.lex_state = 21, .external_lex_state = 2}, + [5725] = {.lex_state = 349, .external_lex_state = 5}, + [5726] = {.lex_state = 47, .external_lex_state = 2}, + [5727] = {.lex_state = 349, .external_lex_state = 2}, + [5728] = {.lex_state = 349, .external_lex_state = 5}, + [5729] = {.lex_state = 349, .external_lex_state = 5}, [5730] = {.lex_state = 349, .external_lex_state = 5}, - [5731] = {.lex_state = 349, .external_lex_state = 2}, - [5732] = {.lex_state = 349, .external_lex_state = 2}, - [5733] = {.lex_state = 349, .external_lex_state = 5}, - [5734] = {.lex_state = 349, .external_lex_state = 2}, + [5731] = {.lex_state = 349, .external_lex_state = 5}, + [5732] = {.lex_state = 21, .external_lex_state = 2}, + [5733] = {.lex_state = 349, .external_lex_state = 2}, + [5734] = {.lex_state = 349, .external_lex_state = 5}, [5735] = {.lex_state = 349, .external_lex_state = 5}, - [5736] = {.lex_state = 349, .external_lex_state = 2}, + [5736] = {.lex_state = 349, .external_lex_state = 5}, [5737] = {.lex_state = 349, .external_lex_state = 2}, - [5738] = {.lex_state = 349, .external_lex_state = 5}, - [5739] = {.lex_state = 349, .external_lex_state = 2}, - [5740] = {.lex_state = 349, .external_lex_state = 5}, + [5738] = {.lex_state = 349, .external_lex_state = 2}, + [5739] = {.lex_state = 349, .external_lex_state = 5}, + [5740] = {.lex_state = 349, .external_lex_state = 2}, [5741] = {.lex_state = 349, .external_lex_state = 2}, - [5742] = {.lex_state = 349, .external_lex_state = 5}, + [5742] = {.lex_state = 349, .external_lex_state = 2}, [5743] = {.lex_state = 349, .external_lex_state = 2}, [5744] = {.lex_state = 349, .external_lex_state = 5}, - [5745] = {.lex_state = 349, .external_lex_state = 5}, - [5746] = {.lex_state = 349, .external_lex_state = 2}, - [5747] = {.lex_state = 349, .external_lex_state = 2}, - [5748] = {.lex_state = 47, .external_lex_state = 2}, - [5749] = {.lex_state = 349, .external_lex_state = 5}, + [5745] = {.lex_state = 349, .external_lex_state = 2}, + [5746] = {.lex_state = 349, .external_lex_state = 5}, + [5747] = {.lex_state = 47, .external_lex_state = 2}, + [5748] = {.lex_state = 349, .external_lex_state = 5}, + [5749] = {.lex_state = 349, .external_lex_state = 2}, [5750] = {.lex_state = 349, .external_lex_state = 5}, [5751] = {.lex_state = 349, .external_lex_state = 5}, - [5752] = {.lex_state = 349, .external_lex_state = 5}, + [5752] = {.lex_state = 349, .external_lex_state = 2}, [5753] = {.lex_state = 349, .external_lex_state = 2}, [5754] = {.lex_state = 349, .external_lex_state = 2}, - [5755] = {.lex_state = 349, .external_lex_state = 5}, - [5756] = {.lex_state = 21, .external_lex_state = 2}, + [5755] = {.lex_state = 21, .external_lex_state = 2}, + [5756] = {.lex_state = 349, .external_lex_state = 5}, [5757] = {.lex_state = 349, .external_lex_state = 2}, - [5758] = {.lex_state = 75, .external_lex_state = 2}, + [5758] = {.lex_state = 349, .external_lex_state = 5}, [5759] = {.lex_state = 349, .external_lex_state = 5}, - [5760] = {.lex_state = 349, .external_lex_state = 5}, + [5760] = {.lex_state = 75, .external_lex_state = 2}, [5761] = {.lex_state = 349, .external_lex_state = 5}, [5762] = {.lex_state = 349, .external_lex_state = 5}, - [5763] = {.lex_state = 46, .external_lex_state = 2}, - [5764] = {.lex_state = 349, .external_lex_state = 2}, - [5765] = {.lex_state = 349, .external_lex_state = 2}, - [5766] = {.lex_state = 349, .external_lex_state = 2}, + [5763] = {.lex_state = 349, .external_lex_state = 5}, + [5764] = {.lex_state = 46, .external_lex_state = 2}, + [5765] = {.lex_state = 349, .external_lex_state = 5}, + [5766] = {.lex_state = 349, .external_lex_state = 5}, [5767] = {.lex_state = 349, .external_lex_state = 2}, - [5768] = {.lex_state = 349, .external_lex_state = 5}, - [5769] = {.lex_state = 349, .external_lex_state = 5}, + [5768] = {.lex_state = 349, .external_lex_state = 2}, + [5769] = {.lex_state = 349, .external_lex_state = 2}, [5770] = {.lex_state = 349, .external_lex_state = 2}, [5771] = {.lex_state = 349, .external_lex_state = 2}, - [5772] = {.lex_state = 349, .external_lex_state = 2}, - [5773] = {.lex_state = 349, .external_lex_state = 5}, - [5774] = {.lex_state = 349, .external_lex_state = 2}, - [5775] = {.lex_state = 349, .external_lex_state = 2}, - [5776] = {.lex_state = 349, .external_lex_state = 5}, - [5777] = {.lex_state = 349, .external_lex_state = 5}, - [5778] = {.lex_state = 349, .external_lex_state = 5}, + [5772] = {.lex_state = 349, .external_lex_state = 5}, + [5773] = {.lex_state = 349, .external_lex_state = 2}, + [5774] = {.lex_state = 349, .external_lex_state = 5}, + [5775] = {.lex_state = 349, .external_lex_state = 5}, + [5776] = {.lex_state = 349, .external_lex_state = 2}, + [5777] = {.lex_state = 349, .external_lex_state = 2}, + [5778] = {.lex_state = 349, .external_lex_state = 2}, [5779] = {.lex_state = 349, .external_lex_state = 5}, [5780] = {.lex_state = 349, .external_lex_state = 5}, - [5781] = {.lex_state = 349, .external_lex_state = 5}, + [5781] = {.lex_state = 349, .external_lex_state = 2}, [5782] = {.lex_state = 349, .external_lex_state = 5}, - [5783] = {.lex_state = 349, .external_lex_state = 2}, - [5784] = {.lex_state = 45, .external_lex_state = 2}, + [5783] = {.lex_state = 349, .external_lex_state = 5}, + [5784] = {.lex_state = 349, .external_lex_state = 5}, [5785] = {.lex_state = 349, .external_lex_state = 5}, - [5786] = {.lex_state = 349, .external_lex_state = 2}, + [5786] = {.lex_state = 349, .external_lex_state = 5}, [5787] = {.lex_state = 349, .external_lex_state = 5}, - [5788] = {.lex_state = 349, .external_lex_state = 5}, - [5789] = {.lex_state = 349, .external_lex_state = 2}, - [5790] = {.lex_state = 349, .external_lex_state = 8}, - [5791] = {.lex_state = 47, .external_lex_state = 2}, - [5792] = {.lex_state = 349, .external_lex_state = 2}, - [5793] = {.lex_state = 349, .external_lex_state = 5}, - [5794] = {.lex_state = 45, .external_lex_state = 2}, + [5788] = {.lex_state = 349, .external_lex_state = 2}, + [5789] = {.lex_state = 349, .external_lex_state = 5}, + [5790] = {.lex_state = 45, .external_lex_state = 2}, + [5791] = {.lex_state = 349, .external_lex_state = 2}, + [5792] = {.lex_state = 349, .external_lex_state = 8}, + [5793] = {.lex_state = 349, .external_lex_state = 2}, + [5794] = {.lex_state = 349, .external_lex_state = 5}, [5795] = {.lex_state = 349, .external_lex_state = 5}, [5796] = {.lex_state = 45, .external_lex_state = 2}, - [5797] = {.lex_state = 45, .external_lex_state = 2}, - [5798] = {.lex_state = 349, .external_lex_state = 2}, + [5797] = {.lex_state = 47, .external_lex_state = 2}, + [5798] = {.lex_state = 24, .external_lex_state = 2}, [5799] = {.lex_state = 45, .external_lex_state = 2}, - [5800] = {.lex_state = 24, .external_lex_state = 2}, - [5801] = {.lex_state = 349, .external_lex_state = 2}, - [5802] = {.lex_state = 349, .external_lex_state = 5}, + [5800] = {.lex_state = 45, .external_lex_state = 2}, + [5801] = {.lex_state = 349, .external_lex_state = 5}, + [5802] = {.lex_state = 45, .external_lex_state = 2}, [5803] = {.lex_state = 349, .external_lex_state = 2}, - [5804] = {.lex_state = 45, .external_lex_state = 2}, - [5805] = {.lex_state = 349, .external_lex_state = 5}, - [5806] = {.lex_state = 349, .external_lex_state = 5}, - [5807] = {.lex_state = 349, .external_lex_state = 5}, - [5808] = {.lex_state = 45, .external_lex_state = 2}, - [5809] = {.lex_state = 349, .external_lex_state = 5}, + [5804] = {.lex_state = 349, .external_lex_state = 2}, + [5805] = {.lex_state = 349, .external_lex_state = 2}, + [5806] = {.lex_state = 45, .external_lex_state = 2}, + [5807] = {.lex_state = 24, .external_lex_state = 2}, + [5808] = {.lex_state = 349, .external_lex_state = 5}, + [5809] = {.lex_state = 349, .external_lex_state = 2}, [5810] = {.lex_state = 349, .external_lex_state = 5}, - [5811] = {.lex_state = 45, .external_lex_state = 2}, - [5812] = {.lex_state = 24, .external_lex_state = 2}, - [5813] = {.lex_state = 349, .external_lex_state = 2}, - [5814] = {.lex_state = 349, .external_lex_state = 2}, - [5815] = {.lex_state = 349, .external_lex_state = 2}, - [5816] = {.lex_state = 1, .external_lex_state = 2}, - [5817] = {.lex_state = 45, .external_lex_state = 2}, - [5818] = {.lex_state = 349, .external_lex_state = 2}, - [5819] = {.lex_state = 349, .external_lex_state = 5}, - [5820] = {.lex_state = 45, .external_lex_state = 2}, - [5821] = {.lex_state = 349, .external_lex_state = 5}, - [5822] = {.lex_state = 45, .external_lex_state = 2}, - [5823] = {.lex_state = 349, .external_lex_state = 5}, + [5811] = {.lex_state = 349, .external_lex_state = 5}, + [5812] = {.lex_state = 45, .external_lex_state = 2}, + [5813] = {.lex_state = 349, .external_lex_state = 5}, + [5814] = {.lex_state = 45, .external_lex_state = 2}, + [5815] = {.lex_state = 349, .external_lex_state = 5}, + [5816] = {.lex_state = 349, .external_lex_state = 2}, + [5817] = {.lex_state = 349, .external_lex_state = 5}, + [5818] = {.lex_state = 1, .external_lex_state = 2}, + [5819] = {.lex_state = 349, .external_lex_state = 2}, + [5820] = {.lex_state = 349, .external_lex_state = 2}, + [5821] = {.lex_state = 45, .external_lex_state = 2}, + [5822] = {.lex_state = 349, .external_lex_state = 5}, + [5823] = {.lex_state = 45, .external_lex_state = 2}, [5824] = {.lex_state = 45, .external_lex_state = 2}, [5825] = {.lex_state = 349, .external_lex_state = 5}, - [5826] = {.lex_state = 349, .external_lex_state = 5}, + [5826] = {.lex_state = 45, .external_lex_state = 2}, [5827] = {.lex_state = 349, .external_lex_state = 5}, - [5828] = {.lex_state = 24, .external_lex_state = 2}, - [5829] = {.lex_state = 45, .external_lex_state = 2}, - [5830] = {.lex_state = 349, .external_lex_state = 5}, - [5831] = {.lex_state = 45, .external_lex_state = 2}, - [5832] = {.lex_state = 349, .external_lex_state = 2}, - [5833] = {.lex_state = 349, .external_lex_state = 2}, - [5834] = {.lex_state = 349, .external_lex_state = 5}, + [5828] = {.lex_state = 45, .external_lex_state = 2}, + [5829] = {.lex_state = 349, .external_lex_state = 5}, + [5830] = {.lex_state = 45, .external_lex_state = 2}, + [5831] = {.lex_state = 349, .external_lex_state = 5}, + [5832] = {.lex_state = 21, .external_lex_state = 2}, + [5833] = {.lex_state = 349, .external_lex_state = 5}, + [5834] = {.lex_state = 24, .external_lex_state = 2}, [5835] = {.lex_state = 349, .external_lex_state = 5}, [5836] = {.lex_state = 349, .external_lex_state = 5}, - [5837] = {.lex_state = 349, .external_lex_state = 5}, + [5837] = {.lex_state = 349, .external_lex_state = 2}, [5838] = {.lex_state = 349, .external_lex_state = 2}, [5839] = {.lex_state = 349, .external_lex_state = 2}, - [5840] = {.lex_state = 349, .external_lex_state = 2}, - [5841] = {.lex_state = 349, .external_lex_state = 5}, - [5842] = {.lex_state = 349, .external_lex_state = 2}, + [5840] = {.lex_state = 349, .external_lex_state = 5}, + [5841] = {.lex_state = 349, .external_lex_state = 2}, + [5842] = {.lex_state = 349, .external_lex_state = 5}, [5843] = {.lex_state = 349, .external_lex_state = 5}, - [5844] = {.lex_state = 45, .external_lex_state = 2}, + [5844] = {.lex_state = 349, .external_lex_state = 2}, [5845] = {.lex_state = 349, .external_lex_state = 2}, [5846] = {.lex_state = 349, .external_lex_state = 2}, - [5847] = {.lex_state = 349, .external_lex_state = 2}, - [5848] = {.lex_state = 349, .external_lex_state = 5}, + [5847] = {.lex_state = 45, .external_lex_state = 2}, + [5848] = {.lex_state = 349, .external_lex_state = 2}, [5849] = {.lex_state = 349, .external_lex_state = 5}, [5850] = {.lex_state = 349, .external_lex_state = 5}, - [5851] = {.lex_state = 349, .external_lex_state = 5}, + [5851] = {.lex_state = 349, .external_lex_state = 2}, [5852] = {.lex_state = 349, .external_lex_state = 5}, [5853] = {.lex_state = 47, .external_lex_state = 2}, - [5854] = {.lex_state = 349, .external_lex_state = 2}, - [5855] = {.lex_state = 21, .external_lex_state = 2}, + [5854] = {.lex_state = 349, .external_lex_state = 5}, + [5855] = {.lex_state = 349, .external_lex_state = 5}, [5856] = {.lex_state = 21, .external_lex_state = 2}, - [5857] = {.lex_state = 349, .external_lex_state = 5}, + [5857] = {.lex_state = 21, .external_lex_state = 2}, [5858] = {.lex_state = 349, .external_lex_state = 5}, [5859] = {.lex_state = 50, .external_lex_state = 2}, - [5860] = {.lex_state = 50, .external_lex_state = 2}, - [5861] = {.lex_state = 349, .external_lex_state = 2}, + [5860] = {.lex_state = 349, .external_lex_state = 5}, + [5861] = {.lex_state = 50, .external_lex_state = 2}, [5862] = {.lex_state = 349, .external_lex_state = 5}, [5863] = {.lex_state = 349, .external_lex_state = 5}, [5864] = {.lex_state = 349, .external_lex_state = 5}, - [5865] = {.lex_state = 349, .external_lex_state = 5}, + [5865] = {.lex_state = 349, .external_lex_state = 2}, [5866] = {.lex_state = 349, .external_lex_state = 5}, - [5867] = {.lex_state = 349, .external_lex_state = 5}, + [5867] = {.lex_state = 349, .external_lex_state = 2}, [5868] = {.lex_state = 349, .external_lex_state = 5}, [5869] = {.lex_state = 349, .external_lex_state = 5}, [5870] = {.lex_state = 349, .external_lex_state = 5}, - [5871] = {.lex_state = 349, .external_lex_state = 2}, - [5872] = {.lex_state = 349, .external_lex_state = 2}, - [5873] = {.lex_state = 349, .external_lex_state = 2}, + [5871] = {.lex_state = 349, .external_lex_state = 5}, + [5872] = {.lex_state = 349, .external_lex_state = 5}, + [5873] = {.lex_state = 349, .external_lex_state = 5}, [5874] = {.lex_state = 349, .external_lex_state = 5}, - [5875] = {.lex_state = 349, .external_lex_state = 5}, + [5875] = {.lex_state = 349, .external_lex_state = 2}, [5876] = {.lex_state = 349, .external_lex_state = 5}, - [5877] = {.lex_state = 349, .external_lex_state = 5}, + [5877] = {.lex_state = 349, .external_lex_state = 2}, [5878] = {.lex_state = 349, .external_lex_state = 2}, - [5879] = {.lex_state = 349, .external_lex_state = 5}, - [5880] = {.lex_state = 24, .external_lex_state = 2}, - [5881] = {.lex_state = 75, .external_lex_state = 2}, - [5882] = {.lex_state = 349, .external_lex_state = 2}, - [5883] = {.lex_state = 349, .external_lex_state = 2}, + [5879] = {.lex_state = 75, .external_lex_state = 2}, + [5880] = {.lex_state = 349, .external_lex_state = 5}, + [5881] = {.lex_state = 349, .external_lex_state = 5}, + [5882] = {.lex_state = 349, .external_lex_state = 5}, + [5883] = {.lex_state = 349, .external_lex_state = 5}, [5884] = {.lex_state = 349, .external_lex_state = 5}, - [5885] = {.lex_state = 349, .external_lex_state = 2}, - [5886] = {.lex_state = 349, .external_lex_state = 5}, - [5887] = {.lex_state = 349, .external_lex_state = 2}, - [5888] = {.lex_state = 349, .external_lex_state = 5}, - [5889] = {.lex_state = 349, .external_lex_state = 5}, + [5885] = {.lex_state = 349, .external_lex_state = 5}, + [5886] = {.lex_state = 24, .external_lex_state = 2}, + [5887] = {.lex_state = 349, .external_lex_state = 5}, + [5888] = {.lex_state = 349, .external_lex_state = 2}, + [5889] = {.lex_state = 349, .external_lex_state = 2}, [5890] = {.lex_state = 349, .external_lex_state = 5}, - [5891] = {.lex_state = 349, .external_lex_state = 5}, - [5892] = {.lex_state = 21, .external_lex_state = 2}, + [5891] = {.lex_state = 349, .external_lex_state = 2}, + [5892] = {.lex_state = 349, .external_lex_state = 5}, [5893] = {.lex_state = 349, .external_lex_state = 2}, - [5894] = {.lex_state = 349, .external_lex_state = 5}, - [5895] = {.lex_state = 349, .external_lex_state = 2}, + [5894] = {.lex_state = 349, .external_lex_state = 2}, + [5895] = {.lex_state = 349, .external_lex_state = 5}, [5896] = {.lex_state = 349, .external_lex_state = 2}, - [5897] = {.lex_state = 349, .external_lex_state = 5}, + [5897] = {.lex_state = 349, .external_lex_state = 2}, [5898] = {.lex_state = 47, .external_lex_state = 2}, [5899] = {.lex_state = 21, .external_lex_state = 2}, [5900] = {.lex_state = 349, .external_lex_state = 5}, [5901] = {.lex_state = 349, .external_lex_state = 5}, - [5902] = {.lex_state = 349, .external_lex_state = 5}, - [5903] = {.lex_state = 349, .external_lex_state = 2}, + [5902] = {.lex_state = 349, .external_lex_state = 2}, + [5903] = {.lex_state = 349, .external_lex_state = 5}, [5904] = {.lex_state = 349, .external_lex_state = 2}, [5905] = {.lex_state = 349, .external_lex_state = 2}, - [5906] = {.lex_state = 349, .external_lex_state = 2}, - [5907] = {.lex_state = 45, .external_lex_state = 2}, - [5908] = {.lex_state = 75, .external_lex_state = 2}, - [5909] = {.lex_state = 45, .external_lex_state = 2}, - [5910] = {.lex_state = 47, .external_lex_state = 2}, - [5911] = {.lex_state = 47, .external_lex_state = 2}, - [5912] = {.lex_state = 349, .external_lex_state = 5}, + [5906] = {.lex_state = 349, .external_lex_state = 5}, + [5907] = {.lex_state = 349, .external_lex_state = 2}, + [5908] = {.lex_state = 349, .external_lex_state = 2}, + [5909] = {.lex_state = 75, .external_lex_state = 2}, + [5910] = {.lex_state = 45, .external_lex_state = 2}, + [5911] = {.lex_state = 349, .external_lex_state = 2}, + [5912] = {.lex_state = 45, .external_lex_state = 2}, [5913] = {.lex_state = 47, .external_lex_state = 2}, [5914] = {.lex_state = 47, .external_lex_state = 2}, - [5915] = {.lex_state = 21, .external_lex_state = 2}, - [5916] = {.lex_state = 349, .external_lex_state = 2}, - [5917] = {.lex_state = 349, .external_lex_state = 5}, - [5918] = {.lex_state = 349, .external_lex_state = 2}, + [5915] = {.lex_state = 47, .external_lex_state = 2}, + [5916] = {.lex_state = 47, .external_lex_state = 2}, + [5917] = {.lex_state = 21, .external_lex_state = 2}, + [5918] = {.lex_state = 349, .external_lex_state = 5}, [5919] = {.lex_state = 47, .external_lex_state = 2}, [5920] = {.lex_state = 45, .external_lex_state = 2}, - [5921] = {.lex_state = 349, .external_lex_state = 2}, - [5922] = {.lex_state = 45, .external_lex_state = 2}, - [5923] = {.lex_state = 45, .external_lex_state = 2}, + [5921] = {.lex_state = 349, .external_lex_state = 5}, + [5922] = {.lex_state = 349, .external_lex_state = 2}, + [5923] = {.lex_state = 349, .external_lex_state = 5}, [5924] = {.lex_state = 349, .external_lex_state = 2}, [5925] = {.lex_state = 349, .external_lex_state = 5}, - [5926] = {.lex_state = 349, .external_lex_state = 5}, + [5926] = {.lex_state = 45, .external_lex_state = 2}, [5927] = {.lex_state = 349, .external_lex_state = 5}, [5928] = {.lex_state = 349, .external_lex_state = 5}, - [5929] = {.lex_state = 349, .external_lex_state = 5}, + [5929] = {.lex_state = 349, .external_lex_state = 2}, [5930] = {.lex_state = 45, .external_lex_state = 2}, - [5931] = {.lex_state = 24, .external_lex_state = 2}, - [5932] = {.lex_state = 45, .external_lex_state = 2}, - [5933] = {.lex_state = 349, .external_lex_state = 5}, - [5934] = {.lex_state = 349, .external_lex_state = 2}, - [5935] = {.lex_state = 349, .external_lex_state = 2}, - [5936] = {.lex_state = 24, .external_lex_state = 2}, - [5937] = {.lex_state = 45, .external_lex_state = 2}, - [5938] = {.lex_state = 349, .external_lex_state = 5}, + [5931] = {.lex_state = 349, .external_lex_state = 5}, + [5932] = {.lex_state = 349, .external_lex_state = 5}, + [5933] = {.lex_state = 45, .external_lex_state = 2}, + [5934] = {.lex_state = 45, .external_lex_state = 2}, + [5935] = {.lex_state = 24, .external_lex_state = 2}, + [5936] = {.lex_state = 45, .external_lex_state = 2}, + [5937] = {.lex_state = 349, .external_lex_state = 2}, + [5938] = {.lex_state = 24, .external_lex_state = 2}, [5939] = {.lex_state = 349, .external_lex_state = 2}, [5940] = {.lex_state = 349, .external_lex_state = 2}, - [5941] = {.lex_state = 349, .external_lex_state = 5}, + [5941] = {.lex_state = 349, .external_lex_state = 2}, [5942] = {.lex_state = 349, .external_lex_state = 5}, - [5943] = {.lex_state = 349, .external_lex_state = 2}, - [5944] = {.lex_state = 349, .external_lex_state = 5}, + [5943] = {.lex_state = 349, .external_lex_state = 5}, + [5944] = {.lex_state = 349, .external_lex_state = 2}, [5945] = {.lex_state = 349, .external_lex_state = 2}, - [5946] = {.lex_state = 349, .external_lex_state = 5}, - [5947] = {.lex_state = 349, .external_lex_state = 5}, + [5946] = {.lex_state = 62, .external_lex_state = 2}, + [5947] = {.lex_state = 24, .external_lex_state = 2}, [5948] = {.lex_state = 349, .external_lex_state = 5}, - [5949] = {.lex_state = 62, .external_lex_state = 2}, + [5949] = {.lex_state = 349, .external_lex_state = 2}, [5950] = {.lex_state = 349, .external_lex_state = 5}, - [5951] = {.lex_state = 349, .external_lex_state = 2}, - [5952] = {.lex_state = 349, .external_lex_state = 2}, - [5953] = {.lex_state = 24, .external_lex_state = 2}, - [5954] = {.lex_state = 50, .external_lex_state = 2}, - [5955] = {.lex_state = 47, .external_lex_state = 5}, - [5956] = {.lex_state = 47, .external_lex_state = 5}, - [5957] = {.lex_state = 75, .external_lex_state = 2}, - [5958] = {.lex_state = 349, .external_lex_state = 5}, - [5959] = {.lex_state = 349, .external_lex_state = 2}, - [5960] = {.lex_state = 50, .external_lex_state = 2}, - [5961] = {.lex_state = 349, .external_lex_state = 2}, - [5962] = {.lex_state = 349, .external_lex_state = 5}, - [5963] = {.lex_state = 349, .external_lex_state = 5}, + [5951] = {.lex_state = 349, .external_lex_state = 5}, + [5952] = {.lex_state = 349, .external_lex_state = 5}, + [5953] = {.lex_state = 349, .external_lex_state = 5}, + [5954] = {.lex_state = 349, .external_lex_state = 2}, + [5955] = {.lex_state = 50, .external_lex_state = 2}, + [5956] = {.lex_state = 349, .external_lex_state = 5}, + [5957] = {.lex_state = 349, .external_lex_state = 2}, + [5958] = {.lex_state = 50, .external_lex_state = 2}, + [5959] = {.lex_state = 349, .external_lex_state = 5}, + [5960] = {.lex_state = 349, .external_lex_state = 2}, + [5961] = {.lex_state = 47, .external_lex_state = 5}, + [5962] = {.lex_state = 47, .external_lex_state = 5}, + [5963] = {.lex_state = 349, .external_lex_state = 2}, [5964] = {.lex_state = 349, .external_lex_state = 5}, - [5965] = {.lex_state = 349, .external_lex_state = 2}, - [5966] = {.lex_state = 349, .external_lex_state = 5}, - [5967] = {.lex_state = 349, .external_lex_state = 5}, + [5965] = {.lex_state = 349, .external_lex_state = 5}, + [5966] = {.lex_state = 47, .external_lex_state = 2}, + [5967] = {.lex_state = 21, .external_lex_state = 2}, [5968] = {.lex_state = 349, .external_lex_state = 5}, - [5969] = {.lex_state = 47, .external_lex_state = 2}, - [5970] = {.lex_state = 21, .external_lex_state = 2}, - [5971] = {.lex_state = 349, .external_lex_state = 5}, - [5972] = {.lex_state = 349, .external_lex_state = 2}, + [5969] = {.lex_state = 349, .external_lex_state = 5}, + [5970] = {.lex_state = 349, .external_lex_state = 5}, + [5971] = {.lex_state = 349, .external_lex_state = 2}, + [5972] = {.lex_state = 349, .external_lex_state = 5}, [5973] = {.lex_state = 349, .external_lex_state = 2}, [5974] = {.lex_state = 349, .external_lex_state = 5}, [5975] = {.lex_state = 349, .external_lex_state = 5}, @@ -26251,34 +26257,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5988] = {.lex_state = 349, .external_lex_state = 5}, [5989] = {.lex_state = 349, .external_lex_state = 5}, [5990] = {.lex_state = 349, .external_lex_state = 5}, - [5991] = {.lex_state = 349, .external_lex_state = 2}, + [5991] = {.lex_state = 349, .external_lex_state = 5}, [5992] = {.lex_state = 349, .external_lex_state = 5}, - [5993] = {.lex_state = 349, .external_lex_state = 2}, - [5994] = {.lex_state = 349, .external_lex_state = 5}, + [5993] = {.lex_state = 349, .external_lex_state = 5}, + [5994] = {.lex_state = 349, .external_lex_state = 2}, [5995] = {.lex_state = 349, .external_lex_state = 5}, - [5996] = {.lex_state = 349, .external_lex_state = 5}, + [5996] = {.lex_state = 349, .external_lex_state = 2}, [5997] = {.lex_state = 349, .external_lex_state = 5}, [5998] = {.lex_state = 349, .external_lex_state = 5}, [5999] = {.lex_state = 349, .external_lex_state = 5}, [6000] = {.lex_state = 349, .external_lex_state = 5}, - [6001] = {.lex_state = 349, .external_lex_state = 5}, - [6002] = {.lex_state = 349, .external_lex_state = 2}, - [6003] = {.lex_state = 349, .external_lex_state = 8}, + [6001] = {.lex_state = 349, .external_lex_state = 2}, + [6002] = {.lex_state = 349, .external_lex_state = 5}, + [6003] = {.lex_state = 349, .external_lex_state = 5}, [6004] = {.lex_state = 349, .external_lex_state = 5}, [6005] = {.lex_state = 349, .external_lex_state = 5}, - [6006] = {.lex_state = 349, .external_lex_state = 5}, + [6006] = {.lex_state = 349, .external_lex_state = 8}, [6007] = {.lex_state = 349, .external_lex_state = 5}, [6008] = {.lex_state = 70, .external_lex_state = 2}, [6009] = {.lex_state = 349, .external_lex_state = 5}, [6010] = {.lex_state = 349, .external_lex_state = 5}, - [6011] = {.lex_state = 349, .external_lex_state = 2}, - [6012] = {.lex_state = 349, .external_lex_state = 2}, - [6013] = {.lex_state = 349, .external_lex_state = 5}, + [6011] = {.lex_state = 349, .external_lex_state = 5}, + [6012] = {.lex_state = 349, .external_lex_state = 5}, + [6013] = {.lex_state = 349, .external_lex_state = 2}, [6014] = {.lex_state = 349, .external_lex_state = 2}, [6015] = {.lex_state = 349, .external_lex_state = 5}, [6016] = {.lex_state = 349, .external_lex_state = 5}, [6017] = {.lex_state = 349, .external_lex_state = 5}, - [6018] = {.lex_state = 349, .external_lex_state = 5}, + [6018] = {.lex_state = 349, .external_lex_state = 2}, [6019] = {.lex_state = 349, .external_lex_state = 5}, [6020] = {.lex_state = 349, .external_lex_state = 5}, [6021] = {.lex_state = 349, .external_lex_state = 5}, @@ -26295,125 +26301,125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6032] = {.lex_state = 349, .external_lex_state = 5}, [6033] = {.lex_state = 349, .external_lex_state = 5}, [6034] = {.lex_state = 349, .external_lex_state = 5}, - [6035] = {.lex_state = 349, .external_lex_state = 5}, + [6035] = {.lex_state = 349, .external_lex_state = 2}, [6036] = {.lex_state = 349, .external_lex_state = 5}, - [6037] = {.lex_state = 349, .external_lex_state = 2}, + [6037] = {.lex_state = 349, .external_lex_state = 5}, [6038] = {.lex_state = 349, .external_lex_state = 5}, [6039] = {.lex_state = 349, .external_lex_state = 5}, [6040] = {.lex_state = 349, .external_lex_state = 5}, [6041] = {.lex_state = 349, .external_lex_state = 5}, - [6042] = {.lex_state = 349, .external_lex_state = 2}, - [6043] = {.lex_state = 349, .external_lex_state = 5}, + [6042] = {.lex_state = 349, .external_lex_state = 5}, + [6043] = {.lex_state = 349, .external_lex_state = 2}, [6044] = {.lex_state = 349, .external_lex_state = 2}, [6045] = {.lex_state = 349, .external_lex_state = 5}, [6046] = {.lex_state = 349, .external_lex_state = 5}, - [6047] = {.lex_state = 24, .external_lex_state = 2}, + [6047] = {.lex_state = 349, .external_lex_state = 5}, [6048] = {.lex_state = 349, .external_lex_state = 5}, - [6049] = {.lex_state = 349, .external_lex_state = 2}, - [6050] = {.lex_state = 349, .external_lex_state = 5}, - [6051] = {.lex_state = 349, .external_lex_state = 2}, - [6052] = {.lex_state = 349, .external_lex_state = 2}, - [6053] = {.lex_state = 349, .external_lex_state = 5}, + [6049] = {.lex_state = 349, .external_lex_state = 5}, + [6050] = {.lex_state = 24, .external_lex_state = 2}, + [6051] = {.lex_state = 349, .external_lex_state = 5}, + [6052] = {.lex_state = 349, .external_lex_state = 5}, + [6053] = {.lex_state = 349, .external_lex_state = 2}, [6054] = {.lex_state = 349, .external_lex_state = 5}, - [6055] = {.lex_state = 349, .external_lex_state = 5}, - [6056] = {.lex_state = 349, .external_lex_state = 5}, - [6057] = {.lex_state = 349, .external_lex_state = 5}, - [6058] = {.lex_state = 75, .external_lex_state = 2}, - [6059] = {.lex_state = 24, .external_lex_state = 2}, - [6060] = {.lex_state = 349, .external_lex_state = 5}, - [6061] = {.lex_state = 349, .external_lex_state = 2}, - [6062] = {.lex_state = 349, .external_lex_state = 5}, + [6055] = {.lex_state = 349, .external_lex_state = 2}, + [6056] = {.lex_state = 75, .external_lex_state = 2}, + [6057] = {.lex_state = 349, .external_lex_state = 2}, + [6058] = {.lex_state = 24, .external_lex_state = 2}, + [6059] = {.lex_state = 349, .external_lex_state = 5}, + [6060] = {.lex_state = 349, .external_lex_state = 2}, + [6061] = {.lex_state = 349, .external_lex_state = 5}, + [6062] = {.lex_state = 70, .external_lex_state = 2}, [6063] = {.lex_state = 349, .external_lex_state = 5}, [6064] = {.lex_state = 349, .external_lex_state = 5}, - [6065] = {.lex_state = 70, .external_lex_state = 2}, - [6066] = {.lex_state = 349, .external_lex_state = 2}, + [6065] = {.lex_state = 349, .external_lex_state = 5}, + [6066] = {.lex_state = 349, .external_lex_state = 5}, [6067] = {.lex_state = 349, .external_lex_state = 5}, [6068] = {.lex_state = 349, .external_lex_state = 5}, [6069] = {.lex_state = 349, .external_lex_state = 5}, - [6070] = {.lex_state = 45, .external_lex_state = 2}, + [6070] = {.lex_state = 349, .external_lex_state = 5}, [6071] = {.lex_state = 349, .external_lex_state = 5}, - [6072] = {.lex_state = 349, .external_lex_state = 5}, - [6073] = {.lex_state = 45, .external_lex_state = 2}, - [6074] = {.lex_state = 349, .external_lex_state = 5}, - [6075] = {.lex_state = 45, .external_lex_state = 2}, - [6076] = {.lex_state = 349, .external_lex_state = 5}, - [6077] = {.lex_state = 45, .external_lex_state = 2}, - [6078] = {.lex_state = 349, .external_lex_state = 5}, - [6079] = {.lex_state = 47, .external_lex_state = 2}, + [6072] = {.lex_state = 349, .external_lex_state = 2}, + [6073] = {.lex_state = 349, .external_lex_state = 5}, + [6074] = {.lex_state = 349, .external_lex_state = 2}, + [6075] = {.lex_state = 349, .external_lex_state = 5}, + [6076] = {.lex_state = 45, .external_lex_state = 2}, + [6077] = {.lex_state = 47, .external_lex_state = 2}, + [6078] = {.lex_state = 21, .external_lex_state = 2}, + [6079] = {.lex_state = 45, .external_lex_state = 2}, [6080] = {.lex_state = 349, .external_lex_state = 5}, - [6081] = {.lex_state = 24, .external_lex_state = 2}, - [6082] = {.lex_state = 349, .external_lex_state = 2}, - [6083] = {.lex_state = 349, .external_lex_state = 5}, + [6081] = {.lex_state = 45, .external_lex_state = 2}, + [6082] = {.lex_state = 349, .external_lex_state = 5}, + [6083] = {.lex_state = 45, .external_lex_state = 2}, [6084] = {.lex_state = 349, .external_lex_state = 5}, - [6085] = {.lex_state = 349, .external_lex_state = 2}, - [6086] = {.lex_state = 349, .external_lex_state = 2}, - [6087] = {.lex_state = 349, .external_lex_state = 5}, - [6088] = {.lex_state = 21, .external_lex_state = 2}, + [6085] = {.lex_state = 349, .external_lex_state = 5}, + [6086] = {.lex_state = 349, .external_lex_state = 5}, + [6087] = {.lex_state = 24, .external_lex_state = 2}, + [6088] = {.lex_state = 349, .external_lex_state = 5}, [6089] = {.lex_state = 349, .external_lex_state = 5}, [6090] = {.lex_state = 349, .external_lex_state = 5}, - [6091] = {.lex_state = 349, .external_lex_state = 5}, - [6092] = {.lex_state = 349, .external_lex_state = 5}, + [6091] = {.lex_state = 349, .external_lex_state = 2}, + [6092] = {.lex_state = 349, .external_lex_state = 2}, [6093] = {.lex_state = 349, .external_lex_state = 5}, [6094] = {.lex_state = 349, .external_lex_state = 5}, [6095] = {.lex_state = 349, .external_lex_state = 5}, [6096] = {.lex_state = 349, .external_lex_state = 5}, [6097] = {.lex_state = 349, .external_lex_state = 5}, - [6098] = {.lex_state = 349, .external_lex_state = 2}, + [6098] = {.lex_state = 349, .external_lex_state = 5}, [6099] = {.lex_state = 349, .external_lex_state = 5}, [6100] = {.lex_state = 349, .external_lex_state = 5}, [6101] = {.lex_state = 349, .external_lex_state = 5}, [6102] = {.lex_state = 349, .external_lex_state = 5}, - [6103] = {.lex_state = 349, .external_lex_state = 5}, + [6103] = {.lex_state = 349, .external_lex_state = 2}, [6104] = {.lex_state = 349, .external_lex_state = 5}, [6105] = {.lex_state = 349, .external_lex_state = 5}, [6106] = {.lex_state = 349, .external_lex_state = 5}, [6107] = {.lex_state = 349, .external_lex_state = 5}, [6108] = {.lex_state = 349, .external_lex_state = 5}, - [6109] = {.lex_state = 349, .external_lex_state = 2}, - [6110] = {.lex_state = 349, .external_lex_state = 5}, + [6109] = {.lex_state = 349, .external_lex_state = 5}, + [6110] = {.lex_state = 349, .external_lex_state = 2}, [6111] = {.lex_state = 349, .external_lex_state = 5}, [6112] = {.lex_state = 349, .external_lex_state = 5}, - [6113] = {.lex_state = 47, .external_lex_state = 2}, + [6113] = {.lex_state = 349, .external_lex_state = 5}, [6114] = {.lex_state = 349, .external_lex_state = 5}, - [6115] = {.lex_state = 47, .external_lex_state = 2}, + [6115] = {.lex_state = 349, .external_lex_state = 5}, [6116] = {.lex_state = 349, .external_lex_state = 5}, - [6117] = {.lex_state = 47, .external_lex_state = 2}, + [6117] = {.lex_state = 349, .external_lex_state = 5}, [6118] = {.lex_state = 349, .external_lex_state = 5}, [6119] = {.lex_state = 47, .external_lex_state = 2}, [6120] = {.lex_state = 349, .external_lex_state = 5}, - [6121] = {.lex_state = 349, .external_lex_state = 5}, - [6122] = {.lex_state = 349, .external_lex_state = 2}, - [6123] = {.lex_state = 349, .external_lex_state = 5}, + [6121] = {.lex_state = 47, .external_lex_state = 2}, + [6122] = {.lex_state = 349, .external_lex_state = 5}, + [6123] = {.lex_state = 47, .external_lex_state = 2}, [6124] = {.lex_state = 349, .external_lex_state = 5}, - [6125] = {.lex_state = 349, .external_lex_state = 5}, + [6125] = {.lex_state = 47, .external_lex_state = 2}, [6126] = {.lex_state = 349, .external_lex_state = 5}, [6127] = {.lex_state = 349, .external_lex_state = 5}, - [6128] = {.lex_state = 349, .external_lex_state = 5}, + [6128] = {.lex_state = 349, .external_lex_state = 2}, [6129] = {.lex_state = 349, .external_lex_state = 5}, [6130] = {.lex_state = 349, .external_lex_state = 5}, - [6131] = {.lex_state = 24, .external_lex_state = 2}, + [6131] = {.lex_state = 349, .external_lex_state = 5}, [6132] = {.lex_state = 349, .external_lex_state = 5}, - [6133] = {.lex_state = 349, .external_lex_state = 2}, - [6134] = {.lex_state = 349, .external_lex_state = 2}, + [6133] = {.lex_state = 349, .external_lex_state = 5}, + [6134] = {.lex_state = 349, .external_lex_state = 5}, [6135] = {.lex_state = 349, .external_lex_state = 5}, - [6136] = {.lex_state = 349, .external_lex_state = 2}, - [6137] = {.lex_state = 349, .external_lex_state = 5}, + [6136] = {.lex_state = 349, .external_lex_state = 5}, + [6137] = {.lex_state = 24, .external_lex_state = 2}, [6138] = {.lex_state = 349, .external_lex_state = 5}, - [6139] = {.lex_state = 349, .external_lex_state = 5}, - [6140] = {.lex_state = 349, .external_lex_state = 5}, + [6139] = {.lex_state = 349, .external_lex_state = 2}, + [6140] = {.lex_state = 349, .external_lex_state = 2}, [6141] = {.lex_state = 349, .external_lex_state = 5}, [6142] = {.lex_state = 349, .external_lex_state = 5}, [6143] = {.lex_state = 349, .external_lex_state = 5}, - [6144] = {.lex_state = 349, .external_lex_state = 2}, + [6144] = {.lex_state = 349, .external_lex_state = 5}, [6145] = {.lex_state = 349, .external_lex_state = 5}, [6146] = {.lex_state = 349, .external_lex_state = 5}, [6147] = {.lex_state = 349, .external_lex_state = 5}, [6148] = {.lex_state = 349, .external_lex_state = 5}, [6149] = {.lex_state = 349, .external_lex_state = 5}, - [6150] = {.lex_state = 349, .external_lex_state = 5}, + [6150] = {.lex_state = 349, .external_lex_state = 2}, [6151] = {.lex_state = 349, .external_lex_state = 5}, [6152] = {.lex_state = 349, .external_lex_state = 5}, - [6153] = {.lex_state = 349, .external_lex_state = 5}, + [6153] = {.lex_state = 349, .external_lex_state = 2}, [6154] = {.lex_state = 349, .external_lex_state = 5}, [6155] = {.lex_state = 349, .external_lex_state = 5}, [6156] = {.lex_state = 349, .external_lex_state = 5}, @@ -26427,41 +26433,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6164] = {.lex_state = 349, .external_lex_state = 5}, [6165] = {.lex_state = 349, .external_lex_state = 5}, [6166] = {.lex_state = 349, .external_lex_state = 5}, - [6167] = {.lex_state = 349, .external_lex_state = 2}, + [6167] = {.lex_state = 349, .external_lex_state = 5}, [6168] = {.lex_state = 349, .external_lex_state = 5}, - [6169] = {.lex_state = 349, .external_lex_state = 2}, + [6169] = {.lex_state = 349, .external_lex_state = 5}, [6170] = {.lex_state = 349, .external_lex_state = 5}, [6171] = {.lex_state = 349, .external_lex_state = 5}, [6172] = {.lex_state = 349, .external_lex_state = 5}, - [6173] = {.lex_state = 349, .external_lex_state = 5}, + [6173] = {.lex_state = 349, .external_lex_state = 2}, [6174] = {.lex_state = 349, .external_lex_state = 2}, - [6175] = {.lex_state = 62, .external_lex_state = 2}, - [6176] = {.lex_state = 46, .external_lex_state = 2}, - [6177] = {.lex_state = 349, .external_lex_state = 2}, + [6175] = {.lex_state = 349, .external_lex_state = 2}, + [6176] = {.lex_state = 349, .external_lex_state = 5}, + [6177] = {.lex_state = 349, .external_lex_state = 5}, [6178] = {.lex_state = 349, .external_lex_state = 5}, [6179] = {.lex_state = 349, .external_lex_state = 5}, - [6180] = {.lex_state = 349, .external_lex_state = 2}, - [6181] = {.lex_state = 349, .external_lex_state = 5}, - [6182] = {.lex_state = 349, .external_lex_state = 5}, - [6183] = {.lex_state = 349, .external_lex_state = 5}, + [6180] = {.lex_state = 62, .external_lex_state = 2}, + [6181] = {.lex_state = 46, .external_lex_state = 2}, + [6182] = {.lex_state = 349, .external_lex_state = 2}, + [6183] = {.lex_state = 349, .external_lex_state = 2}, [6184] = {.lex_state = 349, .external_lex_state = 5}, [6185] = {.lex_state = 349, .external_lex_state = 5}, - [6186] = {.lex_state = 349, .external_lex_state = 2}, - [6187] = {.lex_state = 349, .external_lex_state = 2}, - [6188] = {.lex_state = 45, .external_lex_state = 2}, - [6189] = {.lex_state = 349, .external_lex_state = 5}, - [6190] = {.lex_state = 349, .external_lex_state = 5}, - [6191] = {.lex_state = 45, .external_lex_state = 2}, - [6192] = {.lex_state = 349, .external_lex_state = 5}, + [6186] = {.lex_state = 349, .external_lex_state = 5}, + [6187] = {.lex_state = 349, .external_lex_state = 5}, + [6188] = {.lex_state = 349, .external_lex_state = 5}, + [6189] = {.lex_state = 349, .external_lex_state = 2}, + [6190] = {.lex_state = 349, .external_lex_state = 2}, + [6191] = {.lex_state = 349, .external_lex_state = 5}, + [6192] = {.lex_state = 45, .external_lex_state = 2}, [6193] = {.lex_state = 349, .external_lex_state = 5}, [6194] = {.lex_state = 45, .external_lex_state = 2}, - [6195] = {.lex_state = 349, .external_lex_state = 2}, - [6196] = {.lex_state = 349, .external_lex_state = 5}, + [6195] = {.lex_state = 349, .external_lex_state = 5}, + [6196] = {.lex_state = 45, .external_lex_state = 2}, [6197] = {.lex_state = 349, .external_lex_state = 5}, [6198] = {.lex_state = 349, .external_lex_state = 5}, [6199] = {.lex_state = 349, .external_lex_state = 5}, [6200] = {.lex_state = 349, .external_lex_state = 5}, - [6201] = {.lex_state = 349, .external_lex_state = 5}, + [6201] = {.lex_state = 349, .external_lex_state = 2}, [6202] = {.lex_state = 349, .external_lex_state = 5}, [6203] = {.lex_state = 349, .external_lex_state = 5}, [6204] = {.lex_state = 349, .external_lex_state = 5}, @@ -26472,8 +26478,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6209] = {.lex_state = 349, .external_lex_state = 5}, [6210] = {.lex_state = 349, .external_lex_state = 5}, [6211] = {.lex_state = 349, .external_lex_state = 5}, - [6212] = {.lex_state = 47, .external_lex_state = 2}, - [6213] = {.lex_state = 349, .external_lex_state = 5}, + [6212] = {.lex_state = 349, .external_lex_state = 5}, + [6213] = {.lex_state = 47, .external_lex_state = 2}, [6214] = {.lex_state = 349, .external_lex_state = 5}, [6215] = {.lex_state = 349, .external_lex_state = 5}, [6216] = {.lex_state = 349, .external_lex_state = 5}, @@ -26485,53 +26491,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6222] = {.lex_state = 349, .external_lex_state = 5}, [6223] = {.lex_state = 349, .external_lex_state = 5}, [6224] = {.lex_state = 349, .external_lex_state = 5}, - [6225] = {.lex_state = 349, .external_lex_state = 5}, + [6225] = {.lex_state = 47, .external_lex_state = 5}, [6226] = {.lex_state = 47, .external_lex_state = 5}, [6227] = {.lex_state = 349, .external_lex_state = 5}, [6228] = {.lex_state = 349, .external_lex_state = 5}, [6229] = {.lex_state = 349, .external_lex_state = 5}, - [6230] = {.lex_state = 47, .external_lex_state = 5}, + [6230] = {.lex_state = 349, .external_lex_state = 5}, [6231] = {.lex_state = 349, .external_lex_state = 5}, [6232] = {.lex_state = 349, .external_lex_state = 5}, [6233] = {.lex_state = 349, .external_lex_state = 5}, [6234] = {.lex_state = 349, .external_lex_state = 5}, [6235] = {.lex_state = 349, .external_lex_state = 5}, [6236] = {.lex_state = 349, .external_lex_state = 5}, - [6237] = {.lex_state = 349, .external_lex_state = 5}, + [6237] = {.lex_state = 349, .external_lex_state = 2}, [6238] = {.lex_state = 349, .external_lex_state = 5}, [6239] = {.lex_state = 349, .external_lex_state = 5}, [6240] = {.lex_state = 349, .external_lex_state = 5}, - [6241] = {.lex_state = 349, .external_lex_state = 2}, + [6241] = {.lex_state = 349, .external_lex_state = 5}, [6242] = {.lex_state = 349, .external_lex_state = 5}, [6243] = {.lex_state = 349, .external_lex_state = 5}, - [6244] = {.lex_state = 349, .external_lex_state = 5}, - [6245] = {.lex_state = 349, .external_lex_state = 2}, - [6246] = {.lex_state = 349, .external_lex_state = 5}, + [6244] = {.lex_state = 349, .external_lex_state = 2}, + [6245] = {.lex_state = 349, .external_lex_state = 5}, + [6246] = {.lex_state = 349, .external_lex_state = 2}, [6247] = {.lex_state = 349, .external_lex_state = 5}, [6248] = {.lex_state = 349, .external_lex_state = 5}, [6249] = {.lex_state = 349, .external_lex_state = 5}, [6250] = {.lex_state = 349, .external_lex_state = 5}, [6251] = {.lex_state = 349, .external_lex_state = 5}, - [6252] = {.lex_state = 349, .external_lex_state = 2}, + [6252] = {.lex_state = 349, .external_lex_state = 5}, [6253] = {.lex_state = 349, .external_lex_state = 5}, - [6254] = {.lex_state = 45, .external_lex_state = 2}, + [6254] = {.lex_state = 349, .external_lex_state = 5}, [6255] = {.lex_state = 349, .external_lex_state = 5}, - [6256] = {.lex_state = 45, .external_lex_state = 2}, + [6256] = {.lex_state = 349, .external_lex_state = 5}, [6257] = {.lex_state = 349, .external_lex_state = 5}, - [6258] = {.lex_state = 45, .external_lex_state = 2}, + [6258] = {.lex_state = 349, .external_lex_state = 5}, [6259] = {.lex_state = 349, .external_lex_state = 5}, - [6260] = {.lex_state = 24, .external_lex_state = 2}, + [6260] = {.lex_state = 45, .external_lex_state = 2}, [6261] = {.lex_state = 349, .external_lex_state = 5}, - [6262] = {.lex_state = 349, .external_lex_state = 5}, + [6262] = {.lex_state = 45, .external_lex_state = 2}, [6263] = {.lex_state = 349, .external_lex_state = 5}, - [6264] = {.lex_state = 349, .external_lex_state = 2}, - [6265] = {.lex_state = 349, .external_lex_state = 2}, - [6266] = {.lex_state = 349, .external_lex_state = 5}, + [6264] = {.lex_state = 45, .external_lex_state = 2}, + [6265] = {.lex_state = 349, .external_lex_state = 5}, + [6266] = {.lex_state = 24, .external_lex_state = 2}, [6267] = {.lex_state = 349, .external_lex_state = 5}, [6268] = {.lex_state = 349, .external_lex_state = 5}, [6269] = {.lex_state = 349, .external_lex_state = 5}, - [6270] = {.lex_state = 349, .external_lex_state = 5}, - [6271] = {.lex_state = 349, .external_lex_state = 5}, + [6270] = {.lex_state = 349, .external_lex_state = 2}, + [6271] = {.lex_state = 349, .external_lex_state = 2}, [6272] = {.lex_state = 349, .external_lex_state = 5}, [6273] = {.lex_state = 349, .external_lex_state = 5}, [6274] = {.lex_state = 349, .external_lex_state = 5}, @@ -26542,31 +26548,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6279] = {.lex_state = 349, .external_lex_state = 5}, [6280] = {.lex_state = 349, .external_lex_state = 5}, [6281] = {.lex_state = 349, .external_lex_state = 5}, - [6282] = {.lex_state = 24, .external_lex_state = 2}, + [6282] = {.lex_state = 349, .external_lex_state = 5}, [6283] = {.lex_state = 349, .external_lex_state = 5}, - [6284] = {.lex_state = 349, .external_lex_state = 2}, - [6285] = {.lex_state = 349, .external_lex_state = 2}, + [6284] = {.lex_state = 349, .external_lex_state = 5}, + [6285] = {.lex_state = 349, .external_lex_state = 5}, [6286] = {.lex_state = 349, .external_lex_state = 5}, [6287] = {.lex_state = 349, .external_lex_state = 5}, - [6288] = {.lex_state = 349, .external_lex_state = 5}, + [6288] = {.lex_state = 24, .external_lex_state = 2}, [6289] = {.lex_state = 349, .external_lex_state = 5}, - [6290] = {.lex_state = 349, .external_lex_state = 5}, - [6291] = {.lex_state = 349, .external_lex_state = 5}, + [6290] = {.lex_state = 349, .external_lex_state = 2}, + [6291] = {.lex_state = 349, .external_lex_state = 2}, [6292] = {.lex_state = 349, .external_lex_state = 5}, - [6293] = {.lex_state = 47, .external_lex_state = 2}, - [6294] = {.lex_state = 349, .external_lex_state = 2}, + [6293] = {.lex_state = 349, .external_lex_state = 5}, + [6294] = {.lex_state = 349, .external_lex_state = 5}, [6295] = {.lex_state = 349, .external_lex_state = 5}, [6296] = {.lex_state = 349, .external_lex_state = 2}, [6297] = {.lex_state = 349, .external_lex_state = 2}, [6298] = {.lex_state = 349, .external_lex_state = 2}, [6299] = {.lex_state = 349, .external_lex_state = 2}, - [6300] = {.lex_state = 349, .external_lex_state = 5}, - [6301] = {.lex_state = 349, .external_lex_state = 2}, + [6300] = {.lex_state = 349, .external_lex_state = 2}, + [6301] = {.lex_state = 349, .external_lex_state = 5}, [6302] = {.lex_state = 349, .external_lex_state = 2}, [6303] = {.lex_state = 349, .external_lex_state = 2}, [6304] = {.lex_state = 349, .external_lex_state = 2}, [6305] = {.lex_state = 349, .external_lex_state = 2}, - [6306] = {.lex_state = 349, .external_lex_state = 2}, + [6306] = {.lex_state = 349, .external_lex_state = 5}, [6307] = {.lex_state = 349, .external_lex_state = 2}, [6308] = {.lex_state = 349, .external_lex_state = 2}, [6309] = {.lex_state = 349, .external_lex_state = 2}, @@ -26582,78 +26588,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6319] = {.lex_state = 349, .external_lex_state = 2}, [6320] = {.lex_state = 349, .external_lex_state = 2}, [6321] = {.lex_state = 349, .external_lex_state = 2}, - [6322] = {.lex_state = 349, .external_lex_state = 5}, - [6323] = {.lex_state = 349, .external_lex_state = 2}, + [6322] = {.lex_state = 349, .external_lex_state = 2}, + [6323] = {.lex_state = 349, .external_lex_state = 5}, [6324] = {.lex_state = 349, .external_lex_state = 5}, [6325] = {.lex_state = 349, .external_lex_state = 2}, [6326] = {.lex_state = 349, .external_lex_state = 2}, - [6327] = {.lex_state = 349, .external_lex_state = 2}, + [6327] = {.lex_state = 349, .external_lex_state = 5}, [6328] = {.lex_state = 349, .external_lex_state = 2}, [6329] = {.lex_state = 349, .external_lex_state = 2}, - [6330] = {.lex_state = 349, .external_lex_state = 5}, + [6330] = {.lex_state = 349, .external_lex_state = 2}, [6331] = {.lex_state = 349, .external_lex_state = 2}, [6332] = {.lex_state = 349, .external_lex_state = 2}, [6333] = {.lex_state = 349, .external_lex_state = 2}, [6334] = {.lex_state = 349, .external_lex_state = 2}, - [6335] = {.lex_state = 349, .external_lex_state = 5}, + [6335] = {.lex_state = 349, .external_lex_state = 2}, [6336] = {.lex_state = 349, .external_lex_state = 2}, [6337] = {.lex_state = 349, .external_lex_state = 2}, [6338] = {.lex_state = 349, .external_lex_state = 2}, - [6339] = {.lex_state = 349, .external_lex_state = 5}, - [6340] = {.lex_state = 1, .external_lex_state = 2}, - [6341] = {.lex_state = 349, .external_lex_state = 2}, + [6339] = {.lex_state = 349, .external_lex_state = 2}, + [6340] = {.lex_state = 349, .external_lex_state = 2}, + [6341] = {.lex_state = 349, .external_lex_state = 5}, [6342] = {.lex_state = 349, .external_lex_state = 2}, [6343] = {.lex_state = 349, .external_lex_state = 2}, [6344] = {.lex_state = 349, .external_lex_state = 2}, [6345] = {.lex_state = 349, .external_lex_state = 5}, - [6346] = {.lex_state = 349, .external_lex_state = 2}, + [6346] = {.lex_state = 349, .external_lex_state = 5}, [6347] = {.lex_state = 349, .external_lex_state = 2}, [6348] = {.lex_state = 349, .external_lex_state = 2}, - [6349] = {.lex_state = 349, .external_lex_state = 5}, + [6349] = {.lex_state = 1, .external_lex_state = 2}, [6350] = {.lex_state = 349, .external_lex_state = 2}, - [6351] = {.lex_state = 47, .external_lex_state = 2}, - [6352] = {.lex_state = 47, .external_lex_state = 2}, + [6351] = {.lex_state = 349, .external_lex_state = 5}, + [6352] = {.lex_state = 349, .external_lex_state = 2}, [6353] = {.lex_state = 349, .external_lex_state = 2}, [6354] = {.lex_state = 349, .external_lex_state = 2}, [6355] = {.lex_state = 349, .external_lex_state = 2}, - [6356] = {.lex_state = 349, .external_lex_state = 5}, + [6356] = {.lex_state = 349, .external_lex_state = 2}, [6357] = {.lex_state = 349, .external_lex_state = 2}, [6358] = {.lex_state = 349, .external_lex_state = 2}, [6359] = {.lex_state = 349, .external_lex_state = 2}, [6360] = {.lex_state = 349, .external_lex_state = 2}, - [6361] = {.lex_state = 47, .external_lex_state = 2}, - [6362] = {.lex_state = 349, .external_lex_state = 2}, + [6361] = {.lex_state = 349, .external_lex_state = 5}, + [6362] = {.lex_state = 349, .external_lex_state = 5}, [6363] = {.lex_state = 349, .external_lex_state = 2}, - [6364] = {.lex_state = 349, .external_lex_state = 2}, - [6365] = {.lex_state = 349, .external_lex_state = 2}, + [6364] = {.lex_state = 47, .external_lex_state = 2}, + [6365] = {.lex_state = 47, .external_lex_state = 2}, [6366] = {.lex_state = 349, .external_lex_state = 2}, [6367] = {.lex_state = 349, .external_lex_state = 2}, [6368] = {.lex_state = 47, .external_lex_state = 2}, [6369] = {.lex_state = 349, .external_lex_state = 2}, [6370] = {.lex_state = 349, .external_lex_state = 2}, - [6371] = {.lex_state = 349, .external_lex_state = 2}, + [6371] = {.lex_state = 47, .external_lex_state = 2}, [6372] = {.lex_state = 349, .external_lex_state = 2}, [6373] = {.lex_state = 349, .external_lex_state = 2}, [6374] = {.lex_state = 349, .external_lex_state = 2}, [6375] = {.lex_state = 349, .external_lex_state = 2}, - [6376] = {.lex_state = 47, .external_lex_state = 2}, + [6376] = {.lex_state = 349, .external_lex_state = 2}, [6377] = {.lex_state = 349, .external_lex_state = 2}, [6378] = {.lex_state = 349, .external_lex_state = 2}, [6379] = {.lex_state = 349, .external_lex_state = 2}, [6380] = {.lex_state = 349, .external_lex_state = 2}, [6381] = {.lex_state = 349, .external_lex_state = 2}, [6382] = {.lex_state = 349, .external_lex_state = 2}, - [6383] = {.lex_state = 47, .external_lex_state = 2}, + [6383] = {.lex_state = 349, .external_lex_state = 2}, [6384] = {.lex_state = 349, .external_lex_state = 2}, [6385] = {.lex_state = 349, .external_lex_state = 2}, [6386] = {.lex_state = 349, .external_lex_state = 2}, [6387] = {.lex_state = 349, .external_lex_state = 2}, - [6388] = {.lex_state = 349, .external_lex_state = 2}, + [6388] = {.lex_state = 47, .external_lex_state = 2}, [6389] = {.lex_state = 349, .external_lex_state = 2}, [6390] = {.lex_state = 349, .external_lex_state = 2}, [6391] = {.lex_state = 349, .external_lex_state = 2}, [6392] = {.lex_state = 349, .external_lex_state = 2}, - [6393] = {.lex_state = 47, .external_lex_state = 2}, + [6393] = {.lex_state = 349, .external_lex_state = 2}, [6394] = {.lex_state = 349, .external_lex_state = 2}, [6395] = {.lex_state = 349, .external_lex_state = 2}, [6396] = {.lex_state = 349, .external_lex_state = 2}, @@ -26662,7 +26668,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6399] = {.lex_state = 349, .external_lex_state = 2}, [6400] = {.lex_state = 349, .external_lex_state = 2}, [6401] = {.lex_state = 349, .external_lex_state = 2}, - [6402] = {.lex_state = 349, .external_lex_state = 2}, + [6402] = {.lex_state = 47, .external_lex_state = 2}, [6403] = {.lex_state = 349, .external_lex_state = 2}, [6404] = {.lex_state = 349, .external_lex_state = 2}, [6405] = {.lex_state = 349, .external_lex_state = 2}, @@ -26670,11 +26676,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6407] = {.lex_state = 349, .external_lex_state = 2}, [6408] = {.lex_state = 349, .external_lex_state = 2}, [6409] = {.lex_state = 349, .external_lex_state = 2}, - [6410] = {.lex_state = 47, .external_lex_state = 2}, + [6410] = {.lex_state = 349, .external_lex_state = 2}, [6411] = {.lex_state = 349, .external_lex_state = 2}, [6412] = {.lex_state = 349, .external_lex_state = 2}, [6413] = {.lex_state = 349, .external_lex_state = 2}, - [6414] = {.lex_state = 349, .external_lex_state = 2}, + [6414] = {.lex_state = 47, .external_lex_state = 2}, [6415] = {.lex_state = 349, .external_lex_state = 2}, [6416] = {.lex_state = 349, .external_lex_state = 2}, [6417] = {.lex_state = 349, .external_lex_state = 2}, @@ -26684,18 +26690,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6421] = {.lex_state = 349, .external_lex_state = 2}, [6422] = {.lex_state = 349, .external_lex_state = 2}, [6423] = {.lex_state = 349, .external_lex_state = 2}, - [6424] = {.lex_state = 349, .external_lex_state = 2}, + [6424] = {.lex_state = 47, .external_lex_state = 2}, [6425] = {.lex_state = 349, .external_lex_state = 2}, [6426] = {.lex_state = 349, .external_lex_state = 2}, [6427] = {.lex_state = 349, .external_lex_state = 2}, - [6428] = {.lex_state = 349, .external_lex_state = 5}, - [6429] = {.lex_state = 349, .external_lex_state = 5}, - [6430] = {.lex_state = 349, .external_lex_state = 2}, + [6428] = {.lex_state = 349, .external_lex_state = 2}, + [6429] = {.lex_state = 349, .external_lex_state = 2}, + [6430] = {.lex_state = 349, .external_lex_state = 5}, [6431] = {.lex_state = 349, .external_lex_state = 5}, [6432] = {.lex_state = 349, .external_lex_state = 5}, - [6433] = {.lex_state = 47, .external_lex_state = 2}, - [6434] = {.lex_state = 349, .external_lex_state = 2}, - [6435] = {.lex_state = 349, .external_lex_state = 5}, + [6433] = {.lex_state = 349, .external_lex_state = 5}, + [6434] = {.lex_state = 47, .external_lex_state = 2}, + [6435] = {.lex_state = 349, .external_lex_state = 2}, [6436] = {.lex_state = 349, .external_lex_state = 2}, [6437] = {.lex_state = 47, .external_lex_state = 2}, [6438] = {.lex_state = 349, .external_lex_state = 2}, @@ -26704,128 +26710,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6441] = {.lex_state = 349, .external_lex_state = 2}, [6442] = {.lex_state = 349, .external_lex_state = 2}, [6443] = {.lex_state = 349, .external_lex_state = 2}, - [6444] = {.lex_state = 47, .external_lex_state = 2}, + [6444] = {.lex_state = 349, .external_lex_state = 2}, [6445] = {.lex_state = 349, .external_lex_state = 2}, [6446] = {.lex_state = 349, .external_lex_state = 2}, [6447] = {.lex_state = 349, .external_lex_state = 2}, - [6448] = {.lex_state = 349, .external_lex_state = 2}, + [6448] = {.lex_state = 47, .external_lex_state = 2}, [6449] = {.lex_state = 349, .external_lex_state = 2}, [6450] = {.lex_state = 349, .external_lex_state = 2}, [6451] = {.lex_state = 349, .external_lex_state = 2}, [6452] = {.lex_state = 349, .external_lex_state = 2}, - [6453] = {.lex_state = 349, .external_lex_state = 5}, + [6453] = {.lex_state = 349, .external_lex_state = 2}, [6454] = {.lex_state = 349, .external_lex_state = 2}, [6455] = {.lex_state = 349, .external_lex_state = 2}, [6456] = {.lex_state = 349, .external_lex_state = 2}, [6457] = {.lex_state = 349, .external_lex_state = 2}, [6458] = {.lex_state = 349, .external_lex_state = 5}, [6459] = {.lex_state = 349, .external_lex_state = 2}, - [6460] = {.lex_state = 349, .external_lex_state = 2}, + [6460] = {.lex_state = 349, .external_lex_state = 5}, [6461] = {.lex_state = 349, .external_lex_state = 2}, [6462] = {.lex_state = 349, .external_lex_state = 2}, [6463] = {.lex_state = 349, .external_lex_state = 2}, [6464] = {.lex_state = 349, .external_lex_state = 2}, - [6465] = {.lex_state = 349, .external_lex_state = 5}, + [6465] = {.lex_state = 349, .external_lex_state = 2}, [6466] = {.lex_state = 349, .external_lex_state = 2}, - [6467] = {.lex_state = 349, .external_lex_state = 2}, + [6467] = {.lex_state = 349, .external_lex_state = 5}, [6468] = {.lex_state = 349, .external_lex_state = 2}, [6469] = {.lex_state = 349, .external_lex_state = 2}, [6470] = {.lex_state = 349, .external_lex_state = 2}, [6471] = {.lex_state = 349, .external_lex_state = 2}, [6472] = {.lex_state = 349, .external_lex_state = 2}, - [6473] = {.lex_state = 47, .external_lex_state = 2}, + [6473] = {.lex_state = 349, .external_lex_state = 2}, [6474] = {.lex_state = 349, .external_lex_state = 2}, [6475] = {.lex_state = 349, .external_lex_state = 2}, - [6476] = {.lex_state = 349, .external_lex_state = 5}, - [6477] = {.lex_state = 349, .external_lex_state = 2}, - [6478] = {.lex_state = 47, .external_lex_state = 2}, - [6479] = {.lex_state = 349, .external_lex_state = 5}, + [6476] = {.lex_state = 349, .external_lex_state = 2}, + [6477] = {.lex_state = 47, .external_lex_state = 2}, + [6478] = {.lex_state = 349, .external_lex_state = 2}, + [6479] = {.lex_state = 349, .external_lex_state = 2}, [6480] = {.lex_state = 349, .external_lex_state = 2}, - [6481] = {.lex_state = 47, .external_lex_state = 2}, - [6482] = {.lex_state = 349, .external_lex_state = 2}, - [6483] = {.lex_state = 349, .external_lex_state = 2}, - [6484] = {.lex_state = 47, .external_lex_state = 2}, - [6485] = {.lex_state = 349, .external_lex_state = 2}, - [6486] = {.lex_state = 47, .external_lex_state = 2}, + [6481] = {.lex_state = 349, .external_lex_state = 5}, + [6482] = {.lex_state = 47, .external_lex_state = 2}, + [6483] = {.lex_state = 47, .external_lex_state = 2}, + [6484] = {.lex_state = 349, .external_lex_state = 2}, + [6485] = {.lex_state = 47, .external_lex_state = 2}, + [6486] = {.lex_state = 349, .external_lex_state = 2}, [6487] = {.lex_state = 349, .external_lex_state = 2}, - [6488] = {.lex_state = 349, .external_lex_state = 2}, - [6489] = {.lex_state = 349, .external_lex_state = 2}, - [6490] = {.lex_state = 349, .external_lex_state = 2}, + [6488] = {.lex_state = 349, .external_lex_state = 5}, + [6489] = {.lex_state = 47, .external_lex_state = 2}, + [6490] = {.lex_state = 47, .external_lex_state = 2}, [6491] = {.lex_state = 47, .external_lex_state = 2}, - [6492] = {.lex_state = 349, .external_lex_state = 5}, + [6492] = {.lex_state = 349, .external_lex_state = 2}, [6493] = {.lex_state = 349, .external_lex_state = 2}, - [6494] = {.lex_state = 47, .external_lex_state = 2}, - [6495] = {.lex_state = 349, .external_lex_state = 5}, + [6494] = {.lex_state = 349, .external_lex_state = 2}, + [6495] = {.lex_state = 47, .external_lex_state = 2}, [6496] = {.lex_state = 349, .external_lex_state = 5}, [6497] = {.lex_state = 349, .external_lex_state = 2}, [6498] = {.lex_state = 349, .external_lex_state = 2}, [6499] = {.lex_state = 349, .external_lex_state = 5}, - [6500] = {.lex_state = 349, .external_lex_state = 2}, - [6501] = {.lex_state = 349, .external_lex_state = 2}, - [6502] = {.lex_state = 349, .external_lex_state = 5}, - [6503] = {.lex_state = 47, .external_lex_state = 2}, + [6500] = {.lex_state = 1, .external_lex_state = 2}, + [6501] = {.lex_state = 349, .external_lex_state = 5}, + [6502] = {.lex_state = 349, .external_lex_state = 2}, + [6503] = {.lex_state = 349, .external_lex_state = 2}, [6504] = {.lex_state = 349, .external_lex_state = 2}, - [6505] = {.lex_state = 1, .external_lex_state = 2}, + [6505] = {.lex_state = 349, .external_lex_state = 2}, [6506] = {.lex_state = 349, .external_lex_state = 5}, - [6507] = {.lex_state = 349, .external_lex_state = 2}, + [6507] = {.lex_state = 349, .external_lex_state = 5}, [6508] = {.lex_state = 349, .external_lex_state = 2}, [6509] = {.lex_state = 349, .external_lex_state = 2}, - [6510] = {.lex_state = 349, .external_lex_state = 2}, - [6511] = {.lex_state = 349, .external_lex_state = 2}, - [6512] = {.lex_state = 47, .external_lex_state = 2}, - [6513] = {.lex_state = 47, .external_lex_state = 2}, - [6514] = {.lex_state = 349, .external_lex_state = 2}, + [6510] = {.lex_state = 349, .external_lex_state = 5}, + [6511] = {.lex_state = 47, .external_lex_state = 2}, + [6512] = {.lex_state = 349, .external_lex_state = 2}, + [6513] = {.lex_state = 349, .external_lex_state = 2}, + [6514] = {.lex_state = 349, .external_lex_state = 5}, [6515] = {.lex_state = 349, .external_lex_state = 2}, - [6516] = {.lex_state = 349, .external_lex_state = 5}, - [6517] = {.lex_state = 349, .external_lex_state = 5}, + [6516] = {.lex_state = 349, .external_lex_state = 2}, + [6517] = {.lex_state = 349, .external_lex_state = 2}, [6518] = {.lex_state = 349, .external_lex_state = 5}, - [6519] = {.lex_state = 349, .external_lex_state = 2}, - [6520] = {.lex_state = 349, .external_lex_state = 5}, + [6519] = {.lex_state = 349, .external_lex_state = 5}, + [6520] = {.lex_state = 349, .external_lex_state = 2}, [6521] = {.lex_state = 349, .external_lex_state = 2}, - [6522] = {.lex_state = 349, .external_lex_state = 2}, - [6523] = {.lex_state = 349, .external_lex_state = 2}, + [6522] = {.lex_state = 47, .external_lex_state = 2}, + [6523] = {.lex_state = 349, .external_lex_state = 5}, [6524] = {.lex_state = 349, .external_lex_state = 2}, [6525] = {.lex_state = 349, .external_lex_state = 2}, [6526] = {.lex_state = 349, .external_lex_state = 2}, - [6527] = {.lex_state = 349, .external_lex_state = 2}, - [6528] = {.lex_state = 47, .external_lex_state = 2}, + [6527] = {.lex_state = 47, .external_lex_state = 2}, + [6528] = {.lex_state = 349, .external_lex_state = 5}, [6529] = {.lex_state = 349, .external_lex_state = 5}, [6530] = {.lex_state = 349, .external_lex_state = 2}, [6531] = {.lex_state = 349, .external_lex_state = 5}, - [6532] = {.lex_state = 349, .external_lex_state = 5}, + [6532] = {.lex_state = 349, .external_lex_state = 2}, [6533] = {.lex_state = 349, .external_lex_state = 2}, [6534] = {.lex_state = 349, .external_lex_state = 2}, [6535] = {.lex_state = 349, .external_lex_state = 2}, - [6536] = {.lex_state = 349, .external_lex_state = 5}, + [6536] = {.lex_state = 349, .external_lex_state = 2}, [6537] = {.lex_state = 349, .external_lex_state = 2}, - [6538] = {.lex_state = 349, .external_lex_state = 2}, + [6538] = {.lex_state = 349, .external_lex_state = 5}, [6539] = {.lex_state = 349, .external_lex_state = 2}, [6540] = {.lex_state = 349, .external_lex_state = 2}, [6541] = {.lex_state = 349, .external_lex_state = 2}, - [6542] = {.lex_state = 349, .external_lex_state = 2}, + [6542] = {.lex_state = 349, .external_lex_state = 5}, [6543] = {.lex_state = 349, .external_lex_state = 2}, [6544] = {.lex_state = 349, .external_lex_state = 5}, [6545] = {.lex_state = 349, .external_lex_state = 2}, [6546] = {.lex_state = 349, .external_lex_state = 2}, - [6547] = {.lex_state = 349, .external_lex_state = 5}, + [6547] = {.lex_state = 349, .external_lex_state = 2}, [6548] = {.lex_state = 349, .external_lex_state = 2}, - [6549] = {.lex_state = 349, .external_lex_state = 5}, - [6550] = {.lex_state = 349, .external_lex_state = 2}, - [6551] = {.lex_state = 349, .external_lex_state = 2}, + [6549] = {.lex_state = 349, .external_lex_state = 2}, + [6550] = {.lex_state = 349, .external_lex_state = 5}, + [6551] = {.lex_state = 349, .external_lex_state = 5}, [6552] = {.lex_state = 349, .external_lex_state = 2}, [6553] = {.lex_state = 349, .external_lex_state = 2}, [6554] = {.lex_state = 349, .external_lex_state = 2}, - [6555] = {.lex_state = 349, .external_lex_state = 5}, - [6556] = {.lex_state = 349, .external_lex_state = 5}, - [6557] = {.lex_state = 349, .external_lex_state = 5}, + [6555] = {.lex_state = 349, .external_lex_state = 2}, + [6556] = {.lex_state = 349, .external_lex_state = 2}, + [6557] = {.lex_state = 349, .external_lex_state = 2}, [6558] = {.lex_state = 349, .external_lex_state = 2}, - [6559] = {.lex_state = 349, .external_lex_state = 2}, - [6560] = {.lex_state = 349, .external_lex_state = 2}, + [6559] = {.lex_state = 349, .external_lex_state = 5}, + [6560] = {.lex_state = 349, .external_lex_state = 5}, [6561] = {.lex_state = 349, .external_lex_state = 5}, - [6562] = {.lex_state = 349, .external_lex_state = 2}, + [6562] = {.lex_state = 349, .external_lex_state = 5}, [6563] = {.lex_state = 349, .external_lex_state = 2}, - [6564] = {.lex_state = 349, .external_lex_state = 2}, - [6565] = {.lex_state = 349, .external_lex_state = 5}, + [6564] = {.lex_state = 349, .external_lex_state = 5}, + [6565] = {.lex_state = 349, .external_lex_state = 2}, [6566] = {.lex_state = 349, .external_lex_state = 2}, [6567] = {.lex_state = 349, .external_lex_state = 2}, [6568] = {.lex_state = 349, .external_lex_state = 2}, @@ -26833,78 +26839,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6570] = {.lex_state = 349, .external_lex_state = 2}, [6571] = {.lex_state = 349, .external_lex_state = 2}, [6572] = {.lex_state = 349, .external_lex_state = 2}, - [6573] = {.lex_state = 349, .external_lex_state = 5}, + [6573] = {.lex_state = 349, .external_lex_state = 2}, [6574] = {.lex_state = 349, .external_lex_state = 2}, [6575] = {.lex_state = 349, .external_lex_state = 2}, [6576] = {.lex_state = 349, .external_lex_state = 2}, [6577] = {.lex_state = 349, .external_lex_state = 2}, [6578] = {.lex_state = 349, .external_lex_state = 2}, [6579] = {.lex_state = 349, .external_lex_state = 2}, - [6580] = {.lex_state = 349, .external_lex_state = 5}, - [6581] = {.lex_state = 349, .external_lex_state = 5}, + [6580] = {.lex_state = 349, .external_lex_state = 2}, + [6581] = {.lex_state = 349, .external_lex_state = 2}, [6582] = {.lex_state = 349, .external_lex_state = 2}, - [6583] = {.lex_state = 47, .external_lex_state = 2}, - [6584] = {.lex_state = 349, .external_lex_state = 5}, - [6585] = {.lex_state = 349, .external_lex_state = 2}, + [6583] = {.lex_state = 349, .external_lex_state = 5}, + [6584] = {.lex_state = 349, .external_lex_state = 2}, + [6585] = {.lex_state = 47, .external_lex_state = 2}, [6586] = {.lex_state = 349, .external_lex_state = 2}, - [6587] = {.lex_state = 349, .external_lex_state = 2}, + [6587] = {.lex_state = 349, .external_lex_state = 5}, [6588] = {.lex_state = 349, .external_lex_state = 2}, [6589] = {.lex_state = 349, .external_lex_state = 2}, - [6590] = {.lex_state = 349, .external_lex_state = 2}, - [6591] = {.lex_state = 349, .external_lex_state = 2}, + [6590] = {.lex_state = 349, .external_lex_state = 5}, + [6591] = {.lex_state = 349, .external_lex_state = 5}, [6592] = {.lex_state = 349, .external_lex_state = 2}, - [6593] = {.lex_state = 349, .external_lex_state = 2}, + [6593] = {.lex_state = 349, .external_lex_state = 5}, [6594] = {.lex_state = 349, .external_lex_state = 2}, - [6595] = {.lex_state = 47, .external_lex_state = 2}, + [6595] = {.lex_state = 349, .external_lex_state = 2}, [6596] = {.lex_state = 349, .external_lex_state = 2}, [6597] = {.lex_state = 349, .external_lex_state = 2}, [6598] = {.lex_state = 349, .external_lex_state = 2}, [6599] = {.lex_state = 349, .external_lex_state = 2}, [6600] = {.lex_state = 349, .external_lex_state = 2}, - [6601] = {.lex_state = 349, .external_lex_state = 2}, - [6602] = {.lex_state = 349, .external_lex_state = 5}, + [6601] = {.lex_state = 47, .external_lex_state = 2}, + [6602] = {.lex_state = 349, .external_lex_state = 2}, [6603] = {.lex_state = 349, .external_lex_state = 2}, [6604] = {.lex_state = 349, .external_lex_state = 2}, [6605] = {.lex_state = 349, .external_lex_state = 5}, - [6606] = {.lex_state = 349, .external_lex_state = 5}, + [6606] = {.lex_state = 349, .external_lex_state = 2}, [6607] = {.lex_state = 349, .external_lex_state = 2}, [6608] = {.lex_state = 349, .external_lex_state = 2}, [6609] = {.lex_state = 349, .external_lex_state = 2}, [6610] = {.lex_state = 349, .external_lex_state = 2}, - [6611] = {.lex_state = 349, .external_lex_state = 2}, + [6611] = {.lex_state = 349, .external_lex_state = 5}, [6612] = {.lex_state = 349, .external_lex_state = 2}, [6613] = {.lex_state = 349, .external_lex_state = 2}, [6614] = {.lex_state = 349, .external_lex_state = 2}, - [6615] = {.lex_state = 349, .external_lex_state = 2}, - [6616] = {.lex_state = 349, .external_lex_state = 5}, + [6615] = {.lex_state = 349, .external_lex_state = 5}, + [6616] = {.lex_state = 349, .external_lex_state = 2}, [6617] = {.lex_state = 349, .external_lex_state = 2}, [6618] = {.lex_state = 349, .external_lex_state = 2}, - [6619] = {.lex_state = 349, .external_lex_state = 5}, + [6619] = {.lex_state = 349, .external_lex_state = 2}, [6620] = {.lex_state = 349, .external_lex_state = 2}, - [6621] = {.lex_state = 349, .external_lex_state = 5}, - [6622] = {.lex_state = 349, .external_lex_state = 5}, - [6623] = {.lex_state = 349, .external_lex_state = 2}, + [6621] = {.lex_state = 349, .external_lex_state = 2}, + [6622] = {.lex_state = 349, .external_lex_state = 2}, + [6623] = {.lex_state = 349, .external_lex_state = 5}, [6624] = {.lex_state = 349, .external_lex_state = 2}, [6625] = {.lex_state = 349, .external_lex_state = 2}, [6626] = {.lex_state = 349, .external_lex_state = 2}, - [6627] = {.lex_state = 349, .external_lex_state = 5}, + [6627] = {.lex_state = 349, .external_lex_state = 2}, [6628] = {.lex_state = 349, .external_lex_state = 5}, [6629] = {.lex_state = 349, .external_lex_state = 2}, - [6630] = {.lex_state = 349, .external_lex_state = 5}, - [6631] = {.lex_state = 349, .external_lex_state = 5}, - [6632] = {.lex_state = 349, .external_lex_state = 2}, + [6630] = {.lex_state = 349, .external_lex_state = 2}, + [6631] = {.lex_state = 349, .external_lex_state = 2}, + [6632] = {.lex_state = 47, .external_lex_state = 2}, [6633] = {.lex_state = 349, .external_lex_state = 5}, - [6634] = {.lex_state = 47, .external_lex_state = 2}, - [6635] = {.lex_state = 349, .external_lex_state = 2}, - [6636] = {.lex_state = 47, .external_lex_state = 2}, - [6637] = {.lex_state = 349, .external_lex_state = 2}, - [6638] = {.lex_state = 349, .external_lex_state = 5}, - [6639] = {.lex_state = 349, .external_lex_state = 2}, - [6640] = {.lex_state = 46, .external_lex_state = 2}, - [6641] = {.lex_state = 47, .external_lex_state = 2}, - [6642] = {.lex_state = 349, .external_lex_state = 2}, + [6634] = {.lex_state = 349, .external_lex_state = 5}, + [6635] = {.lex_state = 349, .external_lex_state = 5}, + [6636] = {.lex_state = 349, .external_lex_state = 5}, + [6637] = {.lex_state = 47, .external_lex_state = 2}, + [6638] = {.lex_state = 47, .external_lex_state = 2}, + [6639] = {.lex_state = 349, .external_lex_state = 5}, + [6640] = {.lex_state = 47, .external_lex_state = 2}, + [6641] = {.lex_state = 349, .external_lex_state = 2}, + [6642] = {.lex_state = 349, .external_lex_state = 5}, [6643] = {.lex_state = 349, .external_lex_state = 2}, - [6644] = {.lex_state = 349, .external_lex_state = 2}, + [6644] = {.lex_state = 46, .external_lex_state = 2}, [6645] = {.lex_state = 349, .external_lex_state = 2}, [6646] = {.lex_state = 349, .external_lex_state = 2}, [6647] = {.lex_state = 349, .external_lex_state = 2}, @@ -26912,13 +26918,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6649] = {.lex_state = 349, .external_lex_state = 2}, [6650] = {.lex_state = 349, .external_lex_state = 2}, [6651] = {.lex_state = 349, .external_lex_state = 2}, - [6652] = {.lex_state = 46, .external_lex_state = 2}, + [6652] = {.lex_state = 349, .external_lex_state = 2}, [6653] = {.lex_state = 349, .external_lex_state = 2}, - [6654] = {.lex_state = 349, .external_lex_state = 5}, + [6654] = {.lex_state = 349, .external_lex_state = 2}, [6655] = {.lex_state = 349, .external_lex_state = 2}, - [6656] = {.lex_state = 349, .external_lex_state = 2}, + [6656] = {.lex_state = 46, .external_lex_state = 2}, [6657] = {.lex_state = 349, .external_lex_state = 2}, - [6658] = {.lex_state = 349, .external_lex_state = 2}, + [6658] = {.lex_state = 349, .external_lex_state = 5}, [6659] = {.lex_state = 349, .external_lex_state = 2}, [6660] = {.lex_state = 349, .external_lex_state = 2}, [6661] = {.lex_state = 349, .external_lex_state = 2}, @@ -26928,16 +26934,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6665] = {.lex_state = 349, .external_lex_state = 2}, [6666] = {.lex_state = 349, .external_lex_state = 2}, [6667] = {.lex_state = 349, .external_lex_state = 2}, - [6668] = {.lex_state = 349, .external_lex_state = 5}, + [6668] = {.lex_state = 349, .external_lex_state = 2}, [6669] = {.lex_state = 349, .external_lex_state = 2}, [6670] = {.lex_state = 349, .external_lex_state = 2}, [6671] = {.lex_state = 349, .external_lex_state = 2}, [6672] = {.lex_state = 349, .external_lex_state = 2}, [6673] = {.lex_state = 349, .external_lex_state = 2}, [6674] = {.lex_state = 349, .external_lex_state = 2}, - [6675] = {.lex_state = 47, .external_lex_state = 2}, + [6675] = {.lex_state = 349, .external_lex_state = 2}, [6676] = {.lex_state = 349, .external_lex_state = 2}, - [6677] = {.lex_state = 47, .external_lex_state = 2}, + [6677] = {.lex_state = 349, .external_lex_state = 2}, [6678] = {.lex_state = 349, .external_lex_state = 2}, [6679] = {.lex_state = 349, .external_lex_state = 2}, [6680] = {.lex_state = 349, .external_lex_state = 2}, @@ -26946,51 +26952,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6683] = {.lex_state = 349, .external_lex_state = 2}, [6684] = {.lex_state = 349, .external_lex_state = 2}, [6685] = {.lex_state = 349, .external_lex_state = 2}, - [6686] = {.lex_state = 349, .external_lex_state = 2}, - [6687] = {.lex_state = 349, .external_lex_state = 2}, - [6688] = {.lex_state = 45, .external_lex_state = 2}, + [6686] = {.lex_state = 47, .external_lex_state = 2}, + [6687] = {.lex_state = 47, .external_lex_state = 2}, + [6688] = {.lex_state = 349, .external_lex_state = 2}, [6689] = {.lex_state = 349, .external_lex_state = 2}, [6690] = {.lex_state = 349, .external_lex_state = 2}, [6691] = {.lex_state = 349, .external_lex_state = 5}, - [6692] = {.lex_state = 349, .external_lex_state = 2}, - [6693] = {.lex_state = 349, .external_lex_state = 5}, + [6692] = {.lex_state = 45, .external_lex_state = 2}, + [6693] = {.lex_state = 349, .external_lex_state = 2}, [6694] = {.lex_state = 349, .external_lex_state = 2}, [6695] = {.lex_state = 349, .external_lex_state = 2}, - [6696] = {.lex_state = 45, .external_lex_state = 2}, + [6696] = {.lex_state = 349, .external_lex_state = 5}, [6697] = {.lex_state = 349, .external_lex_state = 2}, - [6698] = {.lex_state = 349, .external_lex_state = 2}, + [6698] = {.lex_state = 45, .external_lex_state = 2}, [6699] = {.lex_state = 349, .external_lex_state = 2}, - [6700] = {.lex_state = 349, .external_lex_state = 5}, - [6701] = {.lex_state = 349, .external_lex_state = 2}, + [6700] = {.lex_state = 349, .external_lex_state = 2}, + [6701] = {.lex_state = 349, .external_lex_state = 5}, [6702] = {.lex_state = 349, .external_lex_state = 2}, - [6703] = {.lex_state = 47, .external_lex_state = 2}, + [6703] = {.lex_state = 349, .external_lex_state = 5}, [6704] = {.lex_state = 349, .external_lex_state = 5}, - [6705] = {.lex_state = 349, .external_lex_state = 5}, + [6705] = {.lex_state = 349, .external_lex_state = 2}, [6706] = {.lex_state = 349, .external_lex_state = 2}, - [6707] = {.lex_state = 349, .external_lex_state = 2}, - [6708] = {.lex_state = 349, .external_lex_state = 2}, - [6709] = {.lex_state = 349, .external_lex_state = 5}, + [6707] = {.lex_state = 349, .external_lex_state = 5}, + [6708] = {.lex_state = 349, .external_lex_state = 5}, + [6709] = {.lex_state = 349, .external_lex_state = 2}, [6710] = {.lex_state = 349, .external_lex_state = 2}, [6711] = {.lex_state = 349, .external_lex_state = 2}, - [6712] = {.lex_state = 349, .external_lex_state = 5}, - [6713] = {.lex_state = 349, .external_lex_state = 2}, - [6714] = {.lex_state = 349, .external_lex_state = 5}, - [6715] = {.lex_state = 47, .external_lex_state = 2}, - [6716] = {.lex_state = 349, .external_lex_state = 2}, + [6712] = {.lex_state = 349, .external_lex_state = 2}, + [6713] = {.lex_state = 349, .external_lex_state = 5}, + [6714] = {.lex_state = 349, .external_lex_state = 2}, + [6715] = {.lex_state = 349, .external_lex_state = 2}, + [6716] = {.lex_state = 349, .external_lex_state = 5}, [6717] = {.lex_state = 349, .external_lex_state = 2}, [6718] = {.lex_state = 349, .external_lex_state = 2}, - [6719] = {.lex_state = 349, .external_lex_state = 2}, - [6720] = {.lex_state = 349, .external_lex_state = 5}, - [6721] = {.lex_state = 47, .external_lex_state = 2}, - [6722] = {.lex_state = 349, .external_lex_state = 2}, + [6719] = {.lex_state = 47, .external_lex_state = 2}, + [6720] = {.lex_state = 349, .external_lex_state = 2}, + [6721] = {.lex_state = 349, .external_lex_state = 2}, + [6722] = {.lex_state = 349, .external_lex_state = 5}, [6723] = {.lex_state = 349, .external_lex_state = 2}, - [6724] = {.lex_state = 349, .external_lex_state = 2}, - [6725] = {.lex_state = 349, .external_lex_state = 5}, + [6724] = {.lex_state = 349, .external_lex_state = 5}, + [6725] = {.lex_state = 47, .external_lex_state = 2}, [6726] = {.lex_state = 349, .external_lex_state = 2}, - [6727] = {.lex_state = 349, .external_lex_state = 2}, - [6728] = {.lex_state = 47, .external_lex_state = 2}, + [6727] = {.lex_state = 47, .external_lex_state = 2}, + [6728] = {.lex_state = 349, .external_lex_state = 2}, [6729] = {.lex_state = 349, .external_lex_state = 2}, - [6730] = {.lex_state = 349, .external_lex_state = 5}, + [6730] = {.lex_state = 349, .external_lex_state = 2}, [6731] = {.lex_state = 349, .external_lex_state = 2}, [6732] = {.lex_state = 349, .external_lex_state = 2}, [6733] = {.lex_state = 349, .external_lex_state = 2}, @@ -26998,65 +27004,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6735] = {.lex_state = 349, .external_lex_state = 2}, [6736] = {.lex_state = 349, .external_lex_state = 2}, [6737] = {.lex_state = 349, .external_lex_state = 2}, - [6738] = {.lex_state = 349, .external_lex_state = 2}, - [6739] = {.lex_state = 349, .external_lex_state = 2}, - [6740] = {.lex_state = 349, .external_lex_state = 5}, - [6741] = {.lex_state = 349, .external_lex_state = 5}, - [6742] = {.lex_state = 46, .external_lex_state = 2}, - [6743] = {.lex_state = 349, .external_lex_state = 5}, + [6738] = {.lex_state = 349, .external_lex_state = 5}, + [6739] = {.lex_state = 349, .external_lex_state = 5}, + [6740] = {.lex_state = 349, .external_lex_state = 2}, + [6741] = {.lex_state = 349, .external_lex_state = 2}, + [6742] = {.lex_state = 349, .external_lex_state = 5}, + [6743] = {.lex_state = 349, .external_lex_state = 2}, [6744] = {.lex_state = 349, .external_lex_state = 2}, - [6745] = {.lex_state = 349, .external_lex_state = 2}, - [6746] = {.lex_state = 47, .external_lex_state = 2}, + [6745] = {.lex_state = 349, .external_lex_state = 5}, + [6746] = {.lex_state = 46, .external_lex_state = 2}, [6747] = {.lex_state = 349, .external_lex_state = 2}, - [6748] = {.lex_state = 349, .external_lex_state = 2}, + [6748] = {.lex_state = 47, .external_lex_state = 2}, [6749] = {.lex_state = 349, .external_lex_state = 2}, [6750] = {.lex_state = 349, .external_lex_state = 2}, [6751] = {.lex_state = 349, .external_lex_state = 2}, [6752] = {.lex_state = 349, .external_lex_state = 2}, [6753] = {.lex_state = 349, .external_lex_state = 2}, - [6754] = {.lex_state = 349, .external_lex_state = 2}, - [6755] = {.lex_state = 47, .external_lex_state = 2}, - [6756] = {.lex_state = 349, .external_lex_state = 5}, + [6754] = {.lex_state = 47, .external_lex_state = 2}, + [6755] = {.lex_state = 349, .external_lex_state = 2}, + [6756] = {.lex_state = 349, .external_lex_state = 2}, [6757] = {.lex_state = 349, .external_lex_state = 2}, [6758] = {.lex_state = 349, .external_lex_state = 2}, - [6759] = {.lex_state = 349, .external_lex_state = 5}, + [6759] = {.lex_state = 349, .external_lex_state = 2}, [6760] = {.lex_state = 349, .external_lex_state = 5}, - [6761] = {.lex_state = 349, .external_lex_state = 2}, - [6762] = {.lex_state = 47, .external_lex_state = 2}, - [6763] = {.lex_state = 349, .external_lex_state = 5}, + [6761] = {.lex_state = 349, .external_lex_state = 5}, + [6762] = {.lex_state = 349, .external_lex_state = 2}, + [6763] = {.lex_state = 349, .external_lex_state = 2}, [6764] = {.lex_state = 349, .external_lex_state = 2}, [6765] = {.lex_state = 349, .external_lex_state = 5}, [6766] = {.lex_state = 349, .external_lex_state = 2}, [6767] = {.lex_state = 349, .external_lex_state = 2}, - [6768] = {.lex_state = 349, .external_lex_state = 2}, - [6769] = {.lex_state = 349, .external_lex_state = 2}, + [6768] = {.lex_state = 47, .external_lex_state = 2}, + [6769] = {.lex_state = 349, .external_lex_state = 5}, [6770] = {.lex_state = 349, .external_lex_state = 2}, - [6771] = {.lex_state = 47, .external_lex_state = 2}, + [6771] = {.lex_state = 349, .external_lex_state = 2}, [6772] = {.lex_state = 349, .external_lex_state = 2}, [6773] = {.lex_state = 349, .external_lex_state = 2}, - [6774] = {.lex_state = 349, .external_lex_state = 2}, + [6774] = {.lex_state = 47, .external_lex_state = 2}, [6775] = {.lex_state = 349, .external_lex_state = 2}, [6776] = {.lex_state = 349, .external_lex_state = 2}, - [6777] = {.lex_state = 349, .external_lex_state = 5}, + [6777] = {.lex_state = 349, .external_lex_state = 2}, [6778] = {.lex_state = 349, .external_lex_state = 2}, [6779] = {.lex_state = 349, .external_lex_state = 2}, - [6780] = {.lex_state = 349, .external_lex_state = 5}, - [6781] = {.lex_state = 349, .external_lex_state = 2}, + [6780] = {.lex_state = 349, .external_lex_state = 2}, + [6781] = {.lex_state = 47, .external_lex_state = 2}, [6782] = {.lex_state = 349, .external_lex_state = 2}, [6783] = {.lex_state = 349, .external_lex_state = 2}, - [6784] = {.lex_state = 349, .external_lex_state = 5}, - [6785] = {.lex_state = 349, .external_lex_state = 5}, + [6784] = {.lex_state = 349, .external_lex_state = 2}, + [6785] = {.lex_state = 349, .external_lex_state = 2}, [6786] = {.lex_state = 349, .external_lex_state = 2}, - [6787] = {.lex_state = 349, .external_lex_state = 2}, + [6787] = {.lex_state = 349, .external_lex_state = 5}, [6788] = {.lex_state = 349, .external_lex_state = 2}, [6789] = {.lex_state = 349, .external_lex_state = 2}, - [6790] = {.lex_state = 47, .external_lex_state = 2}, + [6790] = {.lex_state = 349, .external_lex_state = 2}, [6791] = {.lex_state = 349, .external_lex_state = 2}, [6792] = {.lex_state = 349, .external_lex_state = 2}, [6793] = {.lex_state = 349, .external_lex_state = 2}, [6794] = {.lex_state = 349, .external_lex_state = 2}, [6795] = {.lex_state = 349, .external_lex_state = 2}, - [6796] = {.lex_state = 349, .external_lex_state = 2}, + [6796] = {.lex_state = 47, .external_lex_state = 2}, [6797] = {.lex_state = 349, .external_lex_state = 2}, [6798] = {.lex_state = 349, .external_lex_state = 2}, [6799] = {.lex_state = 349, .external_lex_state = 2}, @@ -27070,54 +27076,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6807] = {.lex_state = 349, .external_lex_state = 2}, [6808] = {.lex_state = 349, .external_lex_state = 2}, [6809] = {.lex_state = 349, .external_lex_state = 2}, - [6810] = {.lex_state = 349, .external_lex_state = 2}, - [6811] = {.lex_state = 349, .external_lex_state = 2}, + [6810] = {.lex_state = 349, .external_lex_state = 5}, + [6811] = {.lex_state = 349, .external_lex_state = 5}, [6812] = {.lex_state = 349, .external_lex_state = 2}, [6813] = {.lex_state = 349, .external_lex_state = 2}, - [6814] = {.lex_state = 349, .external_lex_state = 5}, + [6814] = {.lex_state = 349, .external_lex_state = 2}, [6815] = {.lex_state = 349, .external_lex_state = 2}, - [6816] = {.lex_state = 349, .external_lex_state = 5}, + [6816] = {.lex_state = 349, .external_lex_state = 2}, [6817] = {.lex_state = 349, .external_lex_state = 2}, [6818] = {.lex_state = 349, .external_lex_state = 2}, [6819] = {.lex_state = 349, .external_lex_state = 2}, - [6820] = {.lex_state = 349, .external_lex_state = 2}, - [6821] = {.lex_state = 47, .external_lex_state = 2}, - [6822] = {.lex_state = 47, .external_lex_state = 2}, + [6820] = {.lex_state = 349, .external_lex_state = 5}, + [6821] = {.lex_state = 349, .external_lex_state = 2}, + [6822] = {.lex_state = 349, .external_lex_state = 2}, [6823] = {.lex_state = 349, .external_lex_state = 2}, - [6824] = {.lex_state = 349, .external_lex_state = 2}, + [6824] = {.lex_state = 349, .external_lex_state = 5}, [6825] = {.lex_state = 349, .external_lex_state = 2}, - [6826] = {.lex_state = 349, .external_lex_state = 2}, + [6826] = {.lex_state = 47, .external_lex_state = 2}, [6827] = {.lex_state = 349, .external_lex_state = 2}, [6828] = {.lex_state = 349, .external_lex_state = 2}, [6829] = {.lex_state = 349, .external_lex_state = 5}, [6830] = {.lex_state = 349, .external_lex_state = 2}, [6831] = {.lex_state = 349, .external_lex_state = 2}, - [6832] = {.lex_state = 349, .external_lex_state = 5}, - [6833] = {.lex_state = 45, .external_lex_state = 2}, + [6832] = {.lex_state = 349, .external_lex_state = 2}, + [6833] = {.lex_state = 349, .external_lex_state = 2}, [6834] = {.lex_state = 47, .external_lex_state = 2}, [6835] = {.lex_state = 349, .external_lex_state = 2}, [6836] = {.lex_state = 349, .external_lex_state = 2}, - [6837] = {.lex_state = 349, .external_lex_state = 5}, - [6838] = {.lex_state = 349, .external_lex_state = 2}, + [6837] = {.lex_state = 349, .external_lex_state = 2}, + [6838] = {.lex_state = 45, .external_lex_state = 2}, [6839] = {.lex_state = 349, .external_lex_state = 2}, - [6840] = {.lex_state = 349, .external_lex_state = 5}, + [6840] = {.lex_state = 349, .external_lex_state = 2}, [6841] = {.lex_state = 349, .external_lex_state = 2}, - [6842] = {.lex_state = 349, .external_lex_state = 2}, - [6843] = {.lex_state = 45, .external_lex_state = 2}, - [6844] = {.lex_state = 349, .external_lex_state = 5}, + [6842] = {.lex_state = 349, .external_lex_state = 5}, + [6843] = {.lex_state = 349, .external_lex_state = 5}, + [6844] = {.lex_state = 349, .external_lex_state = 2}, [6845] = {.lex_state = 349, .external_lex_state = 2}, - [6846] = {.lex_state = 47, .external_lex_state = 2}, + [6846] = {.lex_state = 349, .external_lex_state = 2}, [6847] = {.lex_state = 349, .external_lex_state = 2}, - [6848] = {.lex_state = 349, .external_lex_state = 2}, - [6849] = {.lex_state = 349, .external_lex_state = 2}, - [6850] = {.lex_state = 349, .external_lex_state = 2}, - [6851] = {.lex_state = 349, .external_lex_state = 2}, - [6852] = {.lex_state = 349, .external_lex_state = 5}, - [6853] = {.lex_state = 349, .external_lex_state = 5}, - [6854] = {.lex_state = 47, .external_lex_state = 2}, + [6848] = {.lex_state = 45, .external_lex_state = 2}, + [6849] = {.lex_state = 47, .external_lex_state = 2}, + [6850] = {.lex_state = 349, .external_lex_state = 5}, + [6851] = {.lex_state = 349, .external_lex_state = 5}, + [6852] = {.lex_state = 349, .external_lex_state = 2}, + [6853] = {.lex_state = 349, .external_lex_state = 2}, + [6854] = {.lex_state = 349, .external_lex_state = 5}, [6855] = {.lex_state = 349, .external_lex_state = 2}, - [6856] = {.lex_state = 349, .external_lex_state = 2}, - [6857] = {.lex_state = 47, .external_lex_state = 2}, + [6856] = {.lex_state = 349, .external_lex_state = 5}, + [6857] = {.lex_state = 349, .external_lex_state = 5}, [6858] = {.lex_state = 349, .external_lex_state = 2}, [6859] = {.lex_state = 349, .external_lex_state = 2}, [6860] = {.lex_state = 349, .external_lex_state = 2}, @@ -27128,67 +27134,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6865] = {.lex_state = 349, .external_lex_state = 2}, [6866] = {.lex_state = 349, .external_lex_state = 2}, [6867] = {.lex_state = 349, .external_lex_state = 2}, - [6868] = {.lex_state = 45, .external_lex_state = 2}, - [6869] = {.lex_state = 349, .external_lex_state = 5}, - [6870] = {.lex_state = 47, .external_lex_state = 2}, + [6868] = {.lex_state = 349, .external_lex_state = 2}, + [6869] = {.lex_state = 47, .external_lex_state = 2}, + [6870] = {.lex_state = 349, .external_lex_state = 2}, [6871] = {.lex_state = 349, .external_lex_state = 2}, [6872] = {.lex_state = 349, .external_lex_state = 2}, - [6873] = {.lex_state = 349, .external_lex_state = 2}, + [6873] = {.lex_state = 45, .external_lex_state = 2}, [6874] = {.lex_state = 349, .external_lex_state = 2}, - [6875] = {.lex_state = 47, .external_lex_state = 2}, - [6876] = {.lex_state = 349, .external_lex_state = 2}, - [6877] = {.lex_state = 349, .external_lex_state = 2}, - [6878] = {.lex_state = 349, .external_lex_state = 2}, + [6875] = {.lex_state = 349, .external_lex_state = 2}, + [6876] = {.lex_state = 47, .external_lex_state = 2}, + [6877] = {.lex_state = 47, .external_lex_state = 2}, + [6878] = {.lex_state = 47, .external_lex_state = 2}, [6879] = {.lex_state = 47, .external_lex_state = 2}, - [6880] = {.lex_state = 349, .external_lex_state = 2}, + [6880] = {.lex_state = 47, .external_lex_state = 2}, [6881] = {.lex_state = 349, .external_lex_state = 2}, [6882] = {.lex_state = 47, .external_lex_state = 2}, - [6883] = {.lex_state = 349, .external_lex_state = 5}, + [6883] = {.lex_state = 349, .external_lex_state = 2}, [6884] = {.lex_state = 349, .external_lex_state = 2}, - [6885] = {.lex_state = 47, .external_lex_state = 2}, - [6886] = {.lex_state = 349, .external_lex_state = 2}, + [6885] = {.lex_state = 349, .external_lex_state = 2}, + [6886] = {.lex_state = 47, .external_lex_state = 2}, [6887] = {.lex_state = 349, .external_lex_state = 2}, - [6888] = {.lex_state = 47, .external_lex_state = 2}, + [6888] = {.lex_state = 349, .external_lex_state = 5}, [6889] = {.lex_state = 349, .external_lex_state = 2}, - [6890] = {.lex_state = 349, .external_lex_state = 2}, - [6891] = {.lex_state = 47, .external_lex_state = 2}, - [6892] = {.lex_state = 349, .external_lex_state = 2}, - [6893] = {.lex_state = 349, .external_lex_state = 2}, - [6894] = {.lex_state = 349, .external_lex_state = 2}, - [6895] = {.lex_state = 349, .external_lex_state = 5}, + [6890] = {.lex_state = 47, .external_lex_state = 2}, + [6891] = {.lex_state = 349, .external_lex_state = 2}, + [6892] = {.lex_state = 47, .external_lex_state = 2}, + [6893] = {.lex_state = 47, .external_lex_state = 2}, + [6894] = {.lex_state = 349, .external_lex_state = 5}, + [6895] = {.lex_state = 349, .external_lex_state = 2}, [6896] = {.lex_state = 349, .external_lex_state = 2}, [6897] = {.lex_state = 349, .external_lex_state = 2}, - [6898] = {.lex_state = 47, .external_lex_state = 2}, + [6898] = {.lex_state = 349, .external_lex_state = 5}, [6899] = {.lex_state = 349, .external_lex_state = 2}, - [6900] = {.lex_state = 47, .external_lex_state = 2}, + [6900] = {.lex_state = 349, .external_lex_state = 2}, [6901] = {.lex_state = 349, .external_lex_state = 2}, [6902] = {.lex_state = 349, .external_lex_state = 2}, [6903] = {.lex_state = 349, .external_lex_state = 2}, - [6904] = {.lex_state = 349, .external_lex_state = 2}, + [6904] = {.lex_state = 47, .external_lex_state = 2}, [6905] = {.lex_state = 349, .external_lex_state = 2}, [6906] = {.lex_state = 349, .external_lex_state = 2}, [6907] = {.lex_state = 349, .external_lex_state = 2}, - [6908] = {.lex_state = 47, .external_lex_state = 2}, - [6909] = {.lex_state = 47, .external_lex_state = 2}, + [6908] = {.lex_state = 349, .external_lex_state = 2}, + [6909] = {.lex_state = 349, .external_lex_state = 2}, [6910] = {.lex_state = 349, .external_lex_state = 2}, [6911] = {.lex_state = 349, .external_lex_state = 2}, [6912] = {.lex_state = 349, .external_lex_state = 2}, [6913] = {.lex_state = 349, .external_lex_state = 2}, - [6914] = {.lex_state = 349, .external_lex_state = 2}, + [6914] = {.lex_state = 47, .external_lex_state = 2}, [6915] = {.lex_state = 349, .external_lex_state = 2}, [6916] = {.lex_state = 349, .external_lex_state = 2}, [6917] = {.lex_state = 349, .external_lex_state = 2}, [6918] = {.lex_state = 349, .external_lex_state = 2}, [6919] = {.lex_state = 349, .external_lex_state = 2}, [6920] = {.lex_state = 349, .external_lex_state = 2}, - [6921] = {.lex_state = 349, .external_lex_state = 2}, + [6921] = {.lex_state = 47, .external_lex_state = 2}, [6922] = {.lex_state = 349, .external_lex_state = 2}, [6923] = {.lex_state = 349, .external_lex_state = 2}, [6924] = {.lex_state = 349, .external_lex_state = 2}, [6925] = {.lex_state = 349, .external_lex_state = 2}, - [6926] = {.lex_state = 349, .external_lex_state = 5}, - [6927] = {.lex_state = 349, .external_lex_state = 2}, - [6928] = {.lex_state = 349, .external_lex_state = 2}, + [6926] = {.lex_state = 349, .external_lex_state = 2}, + [6927] = {.lex_state = 349, .external_lex_state = 5}, + [6928] = {.lex_state = 349, .external_lex_state = 5}, [6929] = {.lex_state = 349, .external_lex_state = 2}, [6930] = {.lex_state = 349, .external_lex_state = 2}, [6931] = {.lex_state = 349, .external_lex_state = 2}, @@ -27200,137 +27206,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6937] = {.lex_state = 349, .external_lex_state = 2}, [6938] = {.lex_state = 349, .external_lex_state = 2}, [6939] = {.lex_state = 349, .external_lex_state = 2}, - [6940] = {.lex_state = 47, .external_lex_state = 2}, + [6940] = {.lex_state = 349, .external_lex_state = 2}, [6941] = {.lex_state = 349, .external_lex_state = 2}, - [6942] = {.lex_state = 47, .external_lex_state = 2}, - [6943] = {.lex_state = 47, .external_lex_state = 2}, - [6944] = {.lex_state = 2, .external_lex_state = 10}, + [6942] = {.lex_state = 349, .external_lex_state = 2}, + [6943] = {.lex_state = 349, .external_lex_state = 2}, + [6944] = {.lex_state = 349, .external_lex_state = 2}, [6945] = {.lex_state = 349, .external_lex_state = 2}, - [6946] = {.lex_state = 349, .external_lex_state = 2}, - [6947] = {.lex_state = 349, .external_lex_state = 2}, + [6946] = {.lex_state = 47, .external_lex_state = 2}, + [6947] = {.lex_state = 2, .external_lex_state = 10}, [6948] = {.lex_state = 47, .external_lex_state = 2}, [6949] = {.lex_state = 349, .external_lex_state = 2}, [6950] = {.lex_state = 349, .external_lex_state = 2}, [6951] = {.lex_state = 349, .external_lex_state = 2}, [6952] = {.lex_state = 349, .external_lex_state = 2}, [6953] = {.lex_state = 349, .external_lex_state = 2}, - [6954] = {.lex_state = 349, .external_lex_state = 2}, - [6955] = {.lex_state = 47, .external_lex_state = 2}, - [6956] = {.lex_state = 349, .external_lex_state = 2}, + [6954] = {.lex_state = 47, .external_lex_state = 2}, + [6955] = {.lex_state = 349, .external_lex_state = 2}, + [6956] = {.lex_state = 47, .external_lex_state = 2}, [6957] = {.lex_state = 349, .external_lex_state = 2}, - [6958] = {.lex_state = 47, .external_lex_state = 2}, + [6958] = {.lex_state = 349, .external_lex_state = 2}, [6959] = {.lex_state = 349, .external_lex_state = 2}, [6960] = {.lex_state = 349, .external_lex_state = 2}, [6961] = {.lex_state = 47, .external_lex_state = 2}, - [6962] = {.lex_state = 47, .external_lex_state = 2}, + [6962] = {.lex_state = 349, .external_lex_state = 2}, [6963] = {.lex_state = 349, .external_lex_state = 2}, - [6964] = {.lex_state = 349, .external_lex_state = 2}, - [6965] = {.lex_state = 349, .external_lex_state = 2}, + [6964] = {.lex_state = 47, .external_lex_state = 2}, + [6965] = {.lex_state = 47, .external_lex_state = 2}, [6966] = {.lex_state = 349, .external_lex_state = 2}, [6967] = {.lex_state = 47, .external_lex_state = 2}, [6968] = {.lex_state = 47, .external_lex_state = 2}, - [6969] = {.lex_state = 47, .external_lex_state = 2}, + [6969] = {.lex_state = 349, .external_lex_state = 2}, [6970] = {.lex_state = 349, .external_lex_state = 2}, - [6971] = {.lex_state = 47, .external_lex_state = 2}, + [6971] = {.lex_state = 349, .external_lex_state = 2}, [6972] = {.lex_state = 47, .external_lex_state = 2}, [6973] = {.lex_state = 349, .external_lex_state = 2}, - [6974] = {.lex_state = 349, .external_lex_state = 2}, + [6974] = {.lex_state = 47, .external_lex_state = 2}, [6975] = {.lex_state = 349, .external_lex_state = 2}, [6976] = {.lex_state = 349, .external_lex_state = 2}, [6977] = {.lex_state = 349, .external_lex_state = 2}, [6978] = {.lex_state = 47, .external_lex_state = 2}, [6979] = {.lex_state = 349, .external_lex_state = 2}, - [6980] = {.lex_state = 349, .external_lex_state = 2}, + [6980] = {.lex_state = 47, .external_lex_state = 2}, [6981] = {.lex_state = 349, .external_lex_state = 2}, [6982] = {.lex_state = 349, .external_lex_state = 2}, - [6983] = {.lex_state = 47, .external_lex_state = 2}, + [6983] = {.lex_state = 349, .external_lex_state = 2}, [6984] = {.lex_state = 47, .external_lex_state = 2}, - [6985] = {.lex_state = 2, .external_lex_state = 10}, + [6985] = {.lex_state = 349, .external_lex_state = 2}, [6986] = {.lex_state = 349, .external_lex_state = 2}, [6987] = {.lex_state = 349, .external_lex_state = 2}, [6988] = {.lex_state = 349, .external_lex_state = 2}, - [6989] = {.lex_state = 21, .external_lex_state = 2}, - [6990] = {.lex_state = 349, .external_lex_state = 2}, + [6989] = {.lex_state = 47, .external_lex_state = 2}, + [6990] = {.lex_state = 47, .external_lex_state = 2}, [6991] = {.lex_state = 349, .external_lex_state = 2}, - [6992] = {.lex_state = 349, .external_lex_state = 2}, + [6992] = {.lex_state = 2, .external_lex_state = 10}, [6993] = {.lex_state = 349, .external_lex_state = 2}, - [6994] = {.lex_state = 349, .external_lex_state = 2}, + [6994] = {.lex_state = 21, .external_lex_state = 2}, [6995] = {.lex_state = 349, .external_lex_state = 2}, - [6996] = {.lex_state = 47, .external_lex_state = 2}, - [6997] = {.lex_state = 47, .external_lex_state = 2}, + [6996] = {.lex_state = 349, .external_lex_state = 2}, + [6997] = {.lex_state = 349, .external_lex_state = 2}, [6998] = {.lex_state = 349, .external_lex_state = 2}, [6999] = {.lex_state = 349, .external_lex_state = 2}, [7000] = {.lex_state = 349, .external_lex_state = 2}, - [7001] = {.lex_state = 47, .external_lex_state = 2}, - [7002] = {.lex_state = 349, .external_lex_state = 2}, - [7003] = {.lex_state = 349, .external_lex_state = 2}, - [7004] = {.lex_state = 47, .external_lex_state = 2}, + [7001] = {.lex_state = 349, .external_lex_state = 2}, + [7002] = {.lex_state = 47, .external_lex_state = 2}, + [7003] = {.lex_state = 47, .external_lex_state = 2}, + [7004] = {.lex_state = 349, .external_lex_state = 2}, [7005] = {.lex_state = 349, .external_lex_state = 2}, [7006] = {.lex_state = 349, .external_lex_state = 2}, [7007] = {.lex_state = 47, .external_lex_state = 2}, [7008] = {.lex_state = 349, .external_lex_state = 2}, - [7009] = {.lex_state = 46, .external_lex_state = 2}, - [7010] = {.lex_state = 349, .external_lex_state = 2}, - [7011] = {.lex_state = 349, .external_lex_state = 2}, - [7012] = {.lex_state = 47, .external_lex_state = 2}, - [7013] = {.lex_state = 349, .external_lex_state = 2}, - [7014] = {.lex_state = 47, .external_lex_state = 2}, + [7009] = {.lex_state = 349, .external_lex_state = 2}, + [7010] = {.lex_state = 47, .external_lex_state = 2}, + [7011] = {.lex_state = 46, .external_lex_state = 2}, + [7012] = {.lex_state = 349, .external_lex_state = 2}, + [7013] = {.lex_state = 47, .external_lex_state = 2}, + [7014] = {.lex_state = 349, .external_lex_state = 2}, [7015] = {.lex_state = 349, .external_lex_state = 2}, [7016] = {.lex_state = 349, .external_lex_state = 2}, - [7017] = {.lex_state = 349, .external_lex_state = 2}, - [7018] = {.lex_state = 349, .external_lex_state = 2}, - [7019] = {.lex_state = 47, .external_lex_state = 2}, - [7020] = {.lex_state = 349, .external_lex_state = 2}, + [7017] = {.lex_state = 47, .external_lex_state = 2}, + [7018] = {.lex_state = 47, .external_lex_state = 2}, + [7019] = {.lex_state = 349, .external_lex_state = 2}, + [7020] = {.lex_state = 47, .external_lex_state = 2}, [7021] = {.lex_state = 349, .external_lex_state = 2}, [7022] = {.lex_state = 349, .external_lex_state = 2}, [7023] = {.lex_state = 349, .external_lex_state = 2}, [7024] = {.lex_state = 47, .external_lex_state = 2}, - [7025] = {.lex_state = 349, .external_lex_state = 2}, + [7025] = {.lex_state = 47, .external_lex_state = 2}, [7026] = {.lex_state = 349, .external_lex_state = 2}, - [7027] = {.lex_state = 349, .external_lex_state = 2}, + [7027] = {.lex_state = 47, .external_lex_state = 2}, [7028] = {.lex_state = 349, .external_lex_state = 2}, - [7029] = {.lex_state = 47, .external_lex_state = 2}, - [7030] = {.lex_state = 47, .external_lex_state = 2}, + [7029] = {.lex_state = 349, .external_lex_state = 2}, + [7030] = {.lex_state = 349, .external_lex_state = 2}, [7031] = {.lex_state = 47, .external_lex_state = 2}, - [7032] = {.lex_state = 349, .external_lex_state = 2}, - [7033] = {.lex_state = 47, .external_lex_state = 2}, - [7034] = {.lex_state = 47, .external_lex_state = 2}, - [7035] = {.lex_state = 47, .external_lex_state = 2}, - [7036] = {.lex_state = 47, .external_lex_state = 2}, + [7032] = {.lex_state = 47, .external_lex_state = 2}, + [7033] = {.lex_state = 349, .external_lex_state = 2}, + [7034] = {.lex_state = 349, .external_lex_state = 2}, + [7035] = {.lex_state = 349, .external_lex_state = 2}, + [7036] = {.lex_state = 349, .external_lex_state = 2}, [7037] = {.lex_state = 349, .external_lex_state = 2}, [7038] = {.lex_state = 47, .external_lex_state = 2}, - [7039] = {.lex_state = 349, .external_lex_state = 2}, - [7040] = {.lex_state = 46, .external_lex_state = 2}, + [7039] = {.lex_state = 47, .external_lex_state = 2}, + [7040] = {.lex_state = 349, .external_lex_state = 2}, [7041] = {.lex_state = 47, .external_lex_state = 2}, - [7042] = {.lex_state = 349, .external_lex_state = 2}, - [7043] = {.lex_state = 349, .external_lex_state = 2}, + [7042] = {.lex_state = 47, .external_lex_state = 2}, + [7043] = {.lex_state = 47, .external_lex_state = 2}, [7044] = {.lex_state = 349, .external_lex_state = 2}, [7045] = {.lex_state = 47, .external_lex_state = 2}, - [7046] = {.lex_state = 349, .external_lex_state = 2}, + [7046] = {.lex_state = 46, .external_lex_state = 2}, [7047] = {.lex_state = 349, .external_lex_state = 2}, - [7048] = {.lex_state = 46, .external_lex_state = 2}, - [7049] = {.lex_state = 47, .external_lex_state = 2}, - [7050] = {.lex_state = 47, .external_lex_state = 2}, - [7051] = {.lex_state = 349, .external_lex_state = 2}, + [7048] = {.lex_state = 349, .external_lex_state = 2}, + [7049] = {.lex_state = 349, .external_lex_state = 2}, + [7050] = {.lex_state = 349, .external_lex_state = 2}, + [7051] = {.lex_state = 47, .external_lex_state = 2}, [7052] = {.lex_state = 349, .external_lex_state = 2}, [7053] = {.lex_state = 349, .external_lex_state = 2}, [7054] = {.lex_state = 349, .external_lex_state = 2}, [7055] = {.lex_state = 47, .external_lex_state = 2}, [7056] = {.lex_state = 349, .external_lex_state = 2}, - [7057] = {.lex_state = 349, .external_lex_state = 2}, + [7057] = {.lex_state = 47, .external_lex_state = 2}, [7058] = {.lex_state = 349, .external_lex_state = 2}, - [7059] = {.lex_state = 349, .external_lex_state = 2}, - [7060] = {.lex_state = 349, .external_lex_state = 2}, + [7059] = {.lex_state = 47, .external_lex_state = 2}, + [7060] = {.lex_state = 47, .external_lex_state = 2}, [7061] = {.lex_state = 47, .external_lex_state = 2}, - [7062] = {.lex_state = 47, .external_lex_state = 2}, - [7063] = {.lex_state = 47, .external_lex_state = 2}, - [7064] = {.lex_state = 2, .external_lex_state = 10}, + [7062] = {.lex_state = 349, .external_lex_state = 2}, + [7063] = {.lex_state = 46, .external_lex_state = 2}, + [7064] = {.lex_state = 349, .external_lex_state = 2}, [7065] = {.lex_state = 349, .external_lex_state = 2}, [7066] = {.lex_state = 349, .external_lex_state = 2}, [7067] = {.lex_state = 47, .external_lex_state = 2}, [7068] = {.lex_state = 349, .external_lex_state = 2}, - [7069] = {.lex_state = 349, .external_lex_state = 2}, - [7070] = {.lex_state = 47, .external_lex_state = 2}, + [7069] = {.lex_state = 47, .external_lex_state = 2}, + [7070] = {.lex_state = 2, .external_lex_state = 10}, [7071] = {.lex_state = 349, .external_lex_state = 2}, [7072] = {.lex_state = 349, .external_lex_state = 2}, [7073] = {.lex_state = 349, .external_lex_state = 2}, @@ -27340,43 +27346,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7077] = {.lex_state = 349, .external_lex_state = 2}, [7078] = {.lex_state = 349, .external_lex_state = 2}, [7079] = {.lex_state = 349, .external_lex_state = 2}, - [7080] = {.lex_state = 47, .external_lex_state = 2}, + [7080] = {.lex_state = 349, .external_lex_state = 2}, [7081] = {.lex_state = 349, .external_lex_state = 2}, [7082] = {.lex_state = 47, .external_lex_state = 2}, [7083] = {.lex_state = 349, .external_lex_state = 2}, [7084] = {.lex_state = 349, .external_lex_state = 2}, - [7085] = {.lex_state = 349, .external_lex_state = 2}, + [7085] = {.lex_state = 47, .external_lex_state = 2}, [7086] = {.lex_state = 349, .external_lex_state = 2}, [7087] = {.lex_state = 349, .external_lex_state = 2}, [7088] = {.lex_state = 47, .external_lex_state = 2}, [7089] = {.lex_state = 349, .external_lex_state = 2}, [7090] = {.lex_state = 349, .external_lex_state = 2}, - [7091] = {.lex_state = 46, .external_lex_state = 2}, + [7091] = {.lex_state = 349, .external_lex_state = 2}, [7092] = {.lex_state = 47, .external_lex_state = 2}, [7093] = {.lex_state = 349, .external_lex_state = 2}, - [7094] = {.lex_state = 47, .external_lex_state = 2}, - [7095] = {.lex_state = 47, .external_lex_state = 2}, + [7094] = {.lex_state = 349, .external_lex_state = 2}, + [7095] = {.lex_state = 349, .external_lex_state = 2}, [7096] = {.lex_state = 349, .external_lex_state = 2}, - [7097] = {.lex_state = 349, .external_lex_state = 2}, - [7098] = {.lex_state = 349, .external_lex_state = 2}, + [7097] = {.lex_state = 46, .external_lex_state = 2}, + [7098] = {.lex_state = 47, .external_lex_state = 2}, [7099] = {.lex_state = 349, .external_lex_state = 2}, [7100] = {.lex_state = 349, .external_lex_state = 2}, - [7101] = {.lex_state = 349, .external_lex_state = 2}, - [7102] = {.lex_state = 349, .external_lex_state = 2}, - [7103] = {.lex_state = 47, .external_lex_state = 2}, + [7101] = {.lex_state = 47, .external_lex_state = 2}, + [7102] = {.lex_state = 47, .external_lex_state = 2}, + [7103] = {.lex_state = 349, .external_lex_state = 2}, [7104] = {.lex_state = 349, .external_lex_state = 2}, [7105] = {.lex_state = 349, .external_lex_state = 2}, [7106] = {.lex_state = 349, .external_lex_state = 2}, [7107] = {.lex_state = 349, .external_lex_state = 2}, [7108] = {.lex_state = 349, .external_lex_state = 2}, - [7109] = {.lex_state = 349, .external_lex_state = 2}, + [7109] = {.lex_state = 47, .external_lex_state = 2}, [7110] = {.lex_state = 349, .external_lex_state = 2}, [7111] = {.lex_state = 349, .external_lex_state = 2}, [7112] = {.lex_state = 349, .external_lex_state = 2}, [7113] = {.lex_state = 349, .external_lex_state = 2}, - [7114] = {.lex_state = 349, .external_lex_state = 2}, + [7114] = {.lex_state = 47, .external_lex_state = 2}, [7115] = {.lex_state = 349, .external_lex_state = 2}, - [7116] = {.lex_state = 68, .external_lex_state = 2}, + [7116] = {.lex_state = 349, .external_lex_state = 2}, [7117] = {.lex_state = 349, .external_lex_state = 2}, [7118] = {.lex_state = 349, .external_lex_state = 2}, [7119] = {.lex_state = 349, .external_lex_state = 2}, @@ -27387,150 +27393,150 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7124] = {.lex_state = 349, .external_lex_state = 2}, [7125] = {.lex_state = 349, .external_lex_state = 2}, [7126] = {.lex_state = 349, .external_lex_state = 2}, - [7127] = {.lex_state = 47, .external_lex_state = 2}, - [7128] = {.lex_state = 47, .external_lex_state = 2}, + [7127] = {.lex_state = 349, .external_lex_state = 2}, + [7128] = {.lex_state = 349, .external_lex_state = 2}, [7129] = {.lex_state = 349, .external_lex_state = 2}, - [7130] = {.lex_state = 47, .external_lex_state = 2}, + [7130] = {.lex_state = 349, .external_lex_state = 2}, [7131] = {.lex_state = 349, .external_lex_state = 2}, [7132] = {.lex_state = 349, .external_lex_state = 2}, - [7133] = {.lex_state = 47, .external_lex_state = 2}, - [7134] = {.lex_state = 349, .external_lex_state = 2}, + [7133] = {.lex_state = 68, .external_lex_state = 2}, + [7134] = {.lex_state = 47, .external_lex_state = 2}, [7135] = {.lex_state = 47, .external_lex_state = 2}, [7136] = {.lex_state = 349, .external_lex_state = 2}, [7137] = {.lex_state = 349, .external_lex_state = 2}, - [7138] = {.lex_state = 68, .external_lex_state = 2}, + [7138] = {.lex_state = 47, .external_lex_state = 2}, [7139] = {.lex_state = 349, .external_lex_state = 2}, - [7140] = {.lex_state = 47, .external_lex_state = 2}, - [7141] = {.lex_state = 47, .external_lex_state = 2}, + [7140] = {.lex_state = 349, .external_lex_state = 2}, + [7141] = {.lex_state = 349, .external_lex_state = 2}, [7142] = {.lex_state = 349, .external_lex_state = 2}, - [7143] = {.lex_state = 349, .external_lex_state = 2}, + [7143] = {.lex_state = 47, .external_lex_state = 2}, [7144] = {.lex_state = 349, .external_lex_state = 2}, [7145] = {.lex_state = 349, .external_lex_state = 2}, - [7146] = {.lex_state = 349, .external_lex_state = 2}, + [7146] = {.lex_state = 68, .external_lex_state = 2}, [7147] = {.lex_state = 349, .external_lex_state = 2}, [7148] = {.lex_state = 47, .external_lex_state = 2}, [7149] = {.lex_state = 349, .external_lex_state = 2}, - [7150] = {.lex_state = 349, .external_lex_state = 2}, + [7150] = {.lex_state = 47, .external_lex_state = 2}, [7151] = {.lex_state = 349, .external_lex_state = 2}, - [7152] = {.lex_state = 47, .external_lex_state = 2}, + [7152] = {.lex_state = 349, .external_lex_state = 2}, [7153] = {.lex_state = 349, .external_lex_state = 2}, - [7154] = {.lex_state = 349, .external_lex_state = 2}, + [7154] = {.lex_state = 47, .external_lex_state = 2}, [7155] = {.lex_state = 349, .external_lex_state = 2}, - [7156] = {.lex_state = 47, .external_lex_state = 2}, - [7157] = {.lex_state = 68, .external_lex_state = 2}, + [7156] = {.lex_state = 349, .external_lex_state = 2}, + [7157] = {.lex_state = 349, .external_lex_state = 2}, [7158] = {.lex_state = 349, .external_lex_state = 2}, [7159] = {.lex_state = 349, .external_lex_state = 2}, [7160] = {.lex_state = 349, .external_lex_state = 2}, - [7161] = {.lex_state = 46, .external_lex_state = 2}, - [7162] = {.lex_state = 349, .external_lex_state = 2}, - [7163] = {.lex_state = 349, .external_lex_state = 2}, + [7161] = {.lex_state = 349, .external_lex_state = 2}, + [7162] = {.lex_state = 47, .external_lex_state = 2}, + [7163] = {.lex_state = 68, .external_lex_state = 2}, [7164] = {.lex_state = 349, .external_lex_state = 2}, - [7165] = {.lex_state = 349, .external_lex_state = 2}, + [7165] = {.lex_state = 68, .external_lex_state = 2}, [7166] = {.lex_state = 349, .external_lex_state = 2}, - [7167] = {.lex_state = 349, .external_lex_state = 2}, + [7167] = {.lex_state = 46, .external_lex_state = 2}, [7168] = {.lex_state = 349, .external_lex_state = 2}, [7169] = {.lex_state = 349, .external_lex_state = 2}, [7170] = {.lex_state = 349, .external_lex_state = 2}, [7171] = {.lex_state = 349, .external_lex_state = 2}, [7172] = {.lex_state = 349, .external_lex_state = 2}, [7173] = {.lex_state = 349, .external_lex_state = 2}, - [7174] = {.lex_state = 349, .external_lex_state = 2}, + [7174] = {.lex_state = 47, .external_lex_state = 2}, [7175] = {.lex_state = 349, .external_lex_state = 2}, [7176] = {.lex_state = 349, .external_lex_state = 2}, - [7177] = {.lex_state = 47, .external_lex_state = 2}, - [7178] = {.lex_state = 21, .external_lex_state = 2}, - [7179] = {.lex_state = 68, .external_lex_state = 2}, - [7180] = {.lex_state = 349, .external_lex_state = 2}, - [7181] = {.lex_state = 47, .external_lex_state = 2}, + [7177] = {.lex_state = 349, .external_lex_state = 2}, + [7178] = {.lex_state = 349, .external_lex_state = 2}, + [7179] = {.lex_state = 349, .external_lex_state = 2}, + [7180] = {.lex_state = 47, .external_lex_state = 2}, + [7181] = {.lex_state = 349, .external_lex_state = 2}, [7182] = {.lex_state = 47, .external_lex_state = 2}, [7183] = {.lex_state = 349, .external_lex_state = 2}, - [7184] = {.lex_state = 47, .external_lex_state = 2}, + [7184] = {.lex_state = 21, .external_lex_state = 2}, [7185] = {.lex_state = 349, .external_lex_state = 2}, [7186] = {.lex_state = 349, .external_lex_state = 2}, - [7187] = {.lex_state = 47, .external_lex_state = 2}, - [7188] = {.lex_state = 349, .external_lex_state = 2}, + [7187] = {.lex_state = 349, .external_lex_state = 2}, + [7188] = {.lex_state = 47, .external_lex_state = 2}, [7189] = {.lex_state = 349, .external_lex_state = 2}, [7190] = {.lex_state = 349, .external_lex_state = 2}, [7191] = {.lex_state = 349, .external_lex_state = 2}, [7192] = {.lex_state = 349, .external_lex_state = 2}, - [7193] = {.lex_state = 349, .external_lex_state = 2}, + [7193] = {.lex_state = 47, .external_lex_state = 2}, [7194] = {.lex_state = 349, .external_lex_state = 2}, [7195] = {.lex_state = 349, .external_lex_state = 2}, [7196] = {.lex_state = 349, .external_lex_state = 2}, - [7197] = {.lex_state = 47, .external_lex_state = 2}, + [7197] = {.lex_state = 349, .external_lex_state = 2}, [7198] = {.lex_state = 349, .external_lex_state = 2}, [7199] = {.lex_state = 349, .external_lex_state = 2}, [7200] = {.lex_state = 349, .external_lex_state = 2}, [7201] = {.lex_state = 349, .external_lex_state = 2}, - [7202] = {.lex_state = 349, .external_lex_state = 2}, - [7203] = {.lex_state = 47, .external_lex_state = 2}, - [7204] = {.lex_state = 47, .external_lex_state = 2}, + [7202] = {.lex_state = 47, .external_lex_state = 2}, + [7203] = {.lex_state = 349, .external_lex_state = 2}, + [7204] = {.lex_state = 349, .external_lex_state = 2}, [7205] = {.lex_state = 349, .external_lex_state = 2}, - [7206] = {.lex_state = 47, .external_lex_state = 2}, + [7206] = {.lex_state = 349, .external_lex_state = 2}, [7207] = {.lex_state = 349, .external_lex_state = 2}, - [7208] = {.lex_state = 349, .external_lex_state = 2}, - [7209] = {.lex_state = 349, .external_lex_state = 2}, + [7208] = {.lex_state = 47, .external_lex_state = 2}, + [7209] = {.lex_state = 47, .external_lex_state = 2}, [7210] = {.lex_state = 47, .external_lex_state = 2}, - [7211] = {.lex_state = 47, .external_lex_state = 2}, - [7212] = {.lex_state = 349, .external_lex_state = 2}, + [7211] = {.lex_state = 349, .external_lex_state = 2}, + [7212] = {.lex_state = 47, .external_lex_state = 2}, [7213] = {.lex_state = 349, .external_lex_state = 2}, [7214] = {.lex_state = 349, .external_lex_state = 2}, [7215] = {.lex_state = 349, .external_lex_state = 2}, [7216] = {.lex_state = 47, .external_lex_state = 2}, - [7217] = {.lex_state = 47, .external_lex_state = 2}, + [7217] = {.lex_state = 349, .external_lex_state = 2}, [7218] = {.lex_state = 349, .external_lex_state = 2}, [7219] = {.lex_state = 349, .external_lex_state = 2}, - [7220] = {.lex_state = 47, .external_lex_state = 2}, + [7220] = {.lex_state = 349, .external_lex_state = 2}, [7221] = {.lex_state = 349, .external_lex_state = 2}, [7222] = {.lex_state = 349, .external_lex_state = 2}, - [7223] = {.lex_state = 349, .external_lex_state = 2}, + [7223] = {.lex_state = 47, .external_lex_state = 2}, [7224] = {.lex_state = 349, .external_lex_state = 2}, [7225] = {.lex_state = 47, .external_lex_state = 2}, - [7226] = {.lex_state = 349, .external_lex_state = 2}, - [7227] = {.lex_state = 349, .external_lex_state = 2}, + [7226] = {.lex_state = 47, .external_lex_state = 2}, + [7227] = {.lex_state = 47, .external_lex_state = 2}, [7228] = {.lex_state = 349, .external_lex_state = 2}, - [7229] = {.lex_state = 47, .external_lex_state = 2}, + [7229] = {.lex_state = 349, .external_lex_state = 2}, [7230] = {.lex_state = 47, .external_lex_state = 2}, - [7231] = {.lex_state = 2, .external_lex_state = 10}, + [7231] = {.lex_state = 47, .external_lex_state = 2}, [7232] = {.lex_state = 349, .external_lex_state = 2}, - [7233] = {.lex_state = 349, .external_lex_state = 2}, + [7233] = {.lex_state = 2, .external_lex_state = 10}, [7234] = {.lex_state = 349, .external_lex_state = 2}, [7235] = {.lex_state = 349, .external_lex_state = 2}, [7236] = {.lex_state = 349, .external_lex_state = 2}, - [7237] = {.lex_state = 47, .external_lex_state = 2}, + [7237] = {.lex_state = 349, .external_lex_state = 2}, [7238] = {.lex_state = 349, .external_lex_state = 2}, - [7239] = {.lex_state = 47, .external_lex_state = 2}, + [7239] = {.lex_state = 349, .external_lex_state = 2}, [7240] = {.lex_state = 349, .external_lex_state = 2}, [7241] = {.lex_state = 349, .external_lex_state = 2}, - [7242] = {.lex_state = 46, .external_lex_state = 2}, - [7243] = {.lex_state = 349, .external_lex_state = 2}, + [7242] = {.lex_state = 349, .external_lex_state = 2}, + [7243] = {.lex_state = 47, .external_lex_state = 2}, [7244] = {.lex_state = 349, .external_lex_state = 2}, - [7245] = {.lex_state = 349, .external_lex_state = 2}, - [7246] = {.lex_state = 349, .external_lex_state = 2}, + [7245] = {.lex_state = 47, .external_lex_state = 2}, + [7246] = {.lex_state = 46, .external_lex_state = 2}, [7247] = {.lex_state = 349, .external_lex_state = 2}, [7248] = {.lex_state = 349, .external_lex_state = 2}, - [7249] = {.lex_state = 46, .external_lex_state = 2}, + [7249] = {.lex_state = 349, .external_lex_state = 2}, [7250] = {.lex_state = 349, .external_lex_state = 2}, - [7251] = {.lex_state = 47, .external_lex_state = 2}, + [7251] = {.lex_state = 349, .external_lex_state = 2}, [7252] = {.lex_state = 349, .external_lex_state = 2}, [7253] = {.lex_state = 349, .external_lex_state = 2}, [7254] = {.lex_state = 349, .external_lex_state = 2}, - [7255] = {.lex_state = 349, .external_lex_state = 2}, + [7255] = {.lex_state = 46, .external_lex_state = 2}, [7256] = {.lex_state = 349, .external_lex_state = 2}, - [7257] = {.lex_state = 349, .external_lex_state = 2}, + [7257] = {.lex_state = 47, .external_lex_state = 2}, [7258] = {.lex_state = 349, .external_lex_state = 2}, - [7259] = {.lex_state = 68, .external_lex_state = 2}, + [7259] = {.lex_state = 349, .external_lex_state = 2}, [7260] = {.lex_state = 349, .external_lex_state = 2}, [7261] = {.lex_state = 349, .external_lex_state = 2}, [7262] = {.lex_state = 349, .external_lex_state = 2}, [7263] = {.lex_state = 349, .external_lex_state = 2}, - [7264] = {.lex_state = 47, .external_lex_state = 2}, - [7265] = {.lex_state = 349, .external_lex_state = 2}, + [7264] = {.lex_state = 349, .external_lex_state = 2}, + [7265] = {.lex_state = 68, .external_lex_state = 2}, [7266] = {.lex_state = 349, .external_lex_state = 2}, [7267] = {.lex_state = 349, .external_lex_state = 2}, [7268] = {.lex_state = 349, .external_lex_state = 2}, [7269] = {.lex_state = 47, .external_lex_state = 2}, - [7270] = {.lex_state = 349, .external_lex_state = 2}, + [7270] = {.lex_state = 47, .external_lex_state = 2}, [7271] = {.lex_state = 349, .external_lex_state = 2}, [7272] = {.lex_state = 349, .external_lex_state = 2}, [7273] = {.lex_state = 349, .external_lex_state = 2}, @@ -27539,30 +27545,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7276] = {.lex_state = 349, .external_lex_state = 2}, [7277] = {.lex_state = 349, .external_lex_state = 2}, [7278] = {.lex_state = 349, .external_lex_state = 2}, - [7279] = {.lex_state = 47, .external_lex_state = 2}, - [7280] = {.lex_state = 47, .external_lex_state = 2}, + [7279] = {.lex_state = 349, .external_lex_state = 2}, + [7280] = {.lex_state = 349, .external_lex_state = 2}, [7281] = {.lex_state = 349, .external_lex_state = 2}, [7282] = {.lex_state = 349, .external_lex_state = 2}, [7283] = {.lex_state = 349, .external_lex_state = 2}, - [7284] = {.lex_state = 349, .external_lex_state = 2}, - [7285] = {.lex_state = 46, .external_lex_state = 2}, + [7284] = {.lex_state = 47, .external_lex_state = 2}, + [7285] = {.lex_state = 47, .external_lex_state = 2}, [7286] = {.lex_state = 349, .external_lex_state = 2}, - [7287] = {.lex_state = 47, .external_lex_state = 2}, + [7287] = {.lex_state = 349, .external_lex_state = 2}, [7288] = {.lex_state = 349, .external_lex_state = 2}, [7289] = {.lex_state = 349, .external_lex_state = 2}, [7290] = {.lex_state = 349, .external_lex_state = 2}, - [7291] = {.lex_state = 349, .external_lex_state = 2}, + [7291] = {.lex_state = 46, .external_lex_state = 2}, [7292] = {.lex_state = 349, .external_lex_state = 2}, [7293] = {.lex_state = 47, .external_lex_state = 2}, [7294] = {.lex_state = 349, .external_lex_state = 2}, - [7295] = {.lex_state = 349, .external_lex_state = 2}, + [7295] = {.lex_state = 47, .external_lex_state = 2}, [7296] = {.lex_state = 47, .external_lex_state = 2}, [7297] = {.lex_state = 349, .external_lex_state = 2}, - [7298] = {.lex_state = 47, .external_lex_state = 2}, + [7298] = {.lex_state = 349, .external_lex_state = 2}, [7299] = {.lex_state = 47, .external_lex_state = 2}, [7300] = {.lex_state = 349, .external_lex_state = 2}, [7301] = {.lex_state = 349, .external_lex_state = 2}, - [7302] = {.lex_state = 349, .external_lex_state = 2}, + [7302] = {.lex_state = 47, .external_lex_state = 2}, [7303] = {.lex_state = 349, .external_lex_state = 2}, [7304] = {.lex_state = 349, .external_lex_state = 2}, [7305] = {.lex_state = 349, .external_lex_state = 2}, @@ -27575,118 +27581,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7312] = {.lex_state = 349, .external_lex_state = 2}, [7313] = {.lex_state = 349, .external_lex_state = 2}, [7314] = {.lex_state = 349, .external_lex_state = 2}, - [7315] = {.lex_state = 47, .external_lex_state = 2}, + [7315] = {.lex_state = 349, .external_lex_state = 2}, [7316] = {.lex_state = 349, .external_lex_state = 2}, [7317] = {.lex_state = 349, .external_lex_state = 2}, - [7318] = {.lex_state = 47, .external_lex_state = 2}, - [7319] = {.lex_state = 47, .external_lex_state = 2}, + [7318] = {.lex_state = 349, .external_lex_state = 2}, + [7319] = {.lex_state = 349, .external_lex_state = 2}, [7320] = {.lex_state = 349, .external_lex_state = 2}, [7321] = {.lex_state = 349, .external_lex_state = 2}, - [7322] = {.lex_state = 47, .external_lex_state = 2}, + [7322] = {.lex_state = 349, .external_lex_state = 2}, [7323] = {.lex_state = 349, .external_lex_state = 2}, - [7324] = {.lex_state = 349, .external_lex_state = 2}, + [7324] = {.lex_state = 47, .external_lex_state = 2}, [7325] = {.lex_state = 349, .external_lex_state = 2}, [7326] = {.lex_state = 349, .external_lex_state = 2}, - [7327] = {.lex_state = 47, .external_lex_state = 2}, + [7327] = {.lex_state = 349, .external_lex_state = 2}, [7328] = {.lex_state = 47, .external_lex_state = 2}, [7329] = {.lex_state = 349, .external_lex_state = 2}, - [7330] = {.lex_state = 47, .external_lex_state = 2}, + [7330] = {.lex_state = 349, .external_lex_state = 2}, [7331] = {.lex_state = 47, .external_lex_state = 2}, [7332] = {.lex_state = 349, .external_lex_state = 2}, - [7333] = {.lex_state = 349, .external_lex_state = 2}, - [7334] = {.lex_state = 349, .external_lex_state = 2}, + [7333] = {.lex_state = 47, .external_lex_state = 2}, + [7334] = {.lex_state = 47, .external_lex_state = 2}, [7335] = {.lex_state = 349, .external_lex_state = 2}, [7336] = {.lex_state = 349, .external_lex_state = 2}, - [7337] = {.lex_state = 21, .external_lex_state = 2}, + [7337] = {.lex_state = 47, .external_lex_state = 2}, [7338] = {.lex_state = 349, .external_lex_state = 2}, [7339] = {.lex_state = 349, .external_lex_state = 2}, [7340] = {.lex_state = 349, .external_lex_state = 2}, - [7341] = {.lex_state = 349, .external_lex_state = 2}, + [7341] = {.lex_state = 47, .external_lex_state = 2}, [7342] = {.lex_state = 349, .external_lex_state = 2}, - [7343] = {.lex_state = 349, .external_lex_state = 2}, + [7343] = {.lex_state = 21, .external_lex_state = 2}, [7344] = {.lex_state = 349, .external_lex_state = 2}, [7345] = {.lex_state = 349, .external_lex_state = 2}, [7346] = {.lex_state = 349, .external_lex_state = 2}, - [7347] = {.lex_state = 47, .external_lex_state = 2}, - [7348] = {.lex_state = 349, .external_lex_state = 2}, + [7347] = {.lex_state = 349, .external_lex_state = 2}, + [7348] = {.lex_state = 47, .external_lex_state = 2}, [7349] = {.lex_state = 349, .external_lex_state = 2}, - [7350] = {.lex_state = 47, .external_lex_state = 2}, + [7350] = {.lex_state = 349, .external_lex_state = 2}, [7351] = {.lex_state = 349, .external_lex_state = 2}, [7352] = {.lex_state = 349, .external_lex_state = 2}, - [7353] = {.lex_state = 349, .external_lex_state = 2}, + [7353] = {.lex_state = 47, .external_lex_state = 2}, [7354] = {.lex_state = 349, .external_lex_state = 2}, [7355] = {.lex_state = 349, .external_lex_state = 2}, [7356] = {.lex_state = 47, .external_lex_state = 2}, [7357] = {.lex_state = 349, .external_lex_state = 2}, [7358] = {.lex_state = 349, .external_lex_state = 2}, - [7359] = {.lex_state = 47, .external_lex_state = 2}, + [7359] = {.lex_state = 349, .external_lex_state = 2}, [7360] = {.lex_state = 349, .external_lex_state = 2}, [7361] = {.lex_state = 349, .external_lex_state = 2}, - [7362] = {.lex_state = 349, .external_lex_state = 2}, + [7362] = {.lex_state = 47, .external_lex_state = 2}, [7363] = {.lex_state = 349, .external_lex_state = 2}, [7364] = {.lex_state = 349, .external_lex_state = 2}, - [7365] = {.lex_state = 349, .external_lex_state = 2}, + [7365] = {.lex_state = 47, .external_lex_state = 2}, [7366] = {.lex_state = 349, .external_lex_state = 2}, [7367] = {.lex_state = 349, .external_lex_state = 2}, [7368] = {.lex_state = 349, .external_lex_state = 2}, [7369] = {.lex_state = 349, .external_lex_state = 2}, [7370] = {.lex_state = 349, .external_lex_state = 2}, [7371] = {.lex_state = 349, .external_lex_state = 2}, - [7372] = {.lex_state = 47, .external_lex_state = 2}, + [7372] = {.lex_state = 349, .external_lex_state = 2}, [7373] = {.lex_state = 349, .external_lex_state = 2}, [7374] = {.lex_state = 349, .external_lex_state = 2}, - [7375] = {.lex_state = 47, .external_lex_state = 2}, + [7375] = {.lex_state = 349, .external_lex_state = 2}, [7376] = {.lex_state = 349, .external_lex_state = 2}, [7377] = {.lex_state = 349, .external_lex_state = 2}, [7378] = {.lex_state = 47, .external_lex_state = 2}, [7379] = {.lex_state = 349, .external_lex_state = 2}, - [7380] = {.lex_state = 47, .external_lex_state = 2}, + [7380] = {.lex_state = 349, .external_lex_state = 2}, [7381] = {.lex_state = 47, .external_lex_state = 2}, [7382] = {.lex_state = 349, .external_lex_state = 2}, [7383] = {.lex_state = 349, .external_lex_state = 2}, - [7384] = {.lex_state = 349, .external_lex_state = 2}, + [7384] = {.lex_state = 47, .external_lex_state = 2}, [7385] = {.lex_state = 349, .external_lex_state = 2}, - [7386] = {.lex_state = 349, .external_lex_state = 2}, + [7386] = {.lex_state = 47, .external_lex_state = 2}, [7387] = {.lex_state = 47, .external_lex_state = 2}, [7388] = {.lex_state = 349, .external_lex_state = 2}, [7389] = {.lex_state = 349, .external_lex_state = 2}, - [7390] = {.lex_state = 46, .external_lex_state = 2}, + [7390] = {.lex_state = 349, .external_lex_state = 2}, [7391] = {.lex_state = 349, .external_lex_state = 2}, [7392] = {.lex_state = 349, .external_lex_state = 2}, - [7393] = {.lex_state = 349, .external_lex_state = 2}, + [7393] = {.lex_state = 47, .external_lex_state = 2}, [7394] = {.lex_state = 349, .external_lex_state = 2}, - [7395] = {.lex_state = 47, .external_lex_state = 2}, + [7395] = {.lex_state = 349, .external_lex_state = 2}, [7396] = {.lex_state = 349, .external_lex_state = 2}, - [7397] = {.lex_state = 47, .external_lex_state = 2}, + [7397] = {.lex_state = 349, .external_lex_state = 2}, [7398] = {.lex_state = 349, .external_lex_state = 2}, [7399] = {.lex_state = 349, .external_lex_state = 2}, - [7400] = {.lex_state = 47, .external_lex_state = 2}, - [7401] = {.lex_state = 46, .external_lex_state = 2}, - [7402] = {.lex_state = 2, .external_lex_state = 10}, - [7403] = {.lex_state = 349, .external_lex_state = 2}, + [7400] = {.lex_state = 349, .external_lex_state = 2}, + [7401] = {.lex_state = 47, .external_lex_state = 2}, + [7402] = {.lex_state = 349, .external_lex_state = 2}, + [7403] = {.lex_state = 47, .external_lex_state = 2}, [7404] = {.lex_state = 349, .external_lex_state = 2}, - [7405] = {.lex_state = 47, .external_lex_state = 2}, + [7405] = {.lex_state = 349, .external_lex_state = 2}, [7406] = {.lex_state = 47, .external_lex_state = 2}, - [7407] = {.lex_state = 349, .external_lex_state = 2}, - [7408] = {.lex_state = 47, .external_lex_state = 2}, + [7407] = {.lex_state = 46, .external_lex_state = 2}, + [7408] = {.lex_state = 2, .external_lex_state = 10}, [7409] = {.lex_state = 349, .external_lex_state = 2}, - [7410] = {.lex_state = 349, .external_lex_state = 2}, - [7411] = {.lex_state = 47, .external_lex_state = 2}, + [7410] = {.lex_state = 46, .external_lex_state = 2}, + [7411] = {.lex_state = 349, .external_lex_state = 2}, [7412] = {.lex_state = 47, .external_lex_state = 2}, [7413] = {.lex_state = 47, .external_lex_state = 2}, - [7414] = {.lex_state = 349, .external_lex_state = 2}, - [7415] = {.lex_state = 47, .external_lex_state = 2}, + [7414] = {.lex_state = 47, .external_lex_state = 2}, + [7415] = {.lex_state = 349, .external_lex_state = 2}, [7416] = {.lex_state = 349, .external_lex_state = 2}, - [7417] = {.lex_state = 47, .external_lex_state = 2}, + [7417] = {.lex_state = 349, .external_lex_state = 2}, [7418] = {.lex_state = 47, .external_lex_state = 2}, - [7419] = {.lex_state = 349, .external_lex_state = 2}, + [7419] = {.lex_state = 47, .external_lex_state = 2}, [7420] = {.lex_state = 349, .external_lex_state = 2}, [7421] = {.lex_state = 47, .external_lex_state = 2}, [7422] = {.lex_state = 47, .external_lex_state = 2}, [7423] = {.lex_state = 47, .external_lex_state = 2}, - [7424] = {.lex_state = 349, .external_lex_state = 2}, - [7425] = {.lex_state = 47, .external_lex_state = 2}, - [7426] = {(TSStateId)(-1)}, + [7424] = {.lex_state = 47, .external_lex_state = 2}, + [7425] = {.lex_state = 349, .external_lex_state = 2}, + [7426] = {.lex_state = 349, .external_lex_state = 2}, + [7427] = {.lex_state = 47, .external_lex_state = 2}, + [7428] = {.lex_state = 47, .external_lex_state = 2}, + [7429] = {.lex_state = 47, .external_lex_state = 2}, + [7430] = {.lex_state = 349, .external_lex_state = 2}, + [7431] = {.lex_state = 47, .external_lex_state = 2}, + [7432] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -27852,88 +27864,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7394), - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_program] = STATE(7400), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(1), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4815), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -28014,78 +28026,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -28095,57 +28107,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -28157,183 +28169,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(186), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(185), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(192), + [anon_sym_readonly] = ACTIONS(191), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -28345,144 +28357,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(186), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(185), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(192), + [anon_sym_readonly] = ACTIONS(191), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(4), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -28565,99 +28577,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5708), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5706), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(5), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(263), [anon_sym_export] = ACTIONS(265), [anon_sym_STAR] = ACTIONS(223), @@ -28740,99 +28752,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(6), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -28915,99 +28927,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(7), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(51), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29090,112 +29102,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5706), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(8), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(299), + [anon_sym_export] = ACTIONS(301), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [anon_sym_type] = ACTIONS(303), + [anon_sym_namespace] = ACTIONS(305), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(307), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29218,9 +29230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(309), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(311), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -29243,121 +29255,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(313), + [anon_sym_readonly] = ACTIONS(315), + [anon_sym_get] = ACTIONS(317), + [anon_sym_set] = ACTIONS(317), + [anon_sym_declare] = ACTIONS(319), + [anon_sym_public] = ACTIONS(321), + [anon_sym_private] = ACTIONS(321), + [anon_sym_protected] = ACTIONS(321), + [anon_sym_override] = ACTIONS(323), + [anon_sym_module] = ACTIONS(325), + [anon_sym_any] = ACTIONS(327), + [anon_sym_number] = ACTIONS(327), + [anon_sym_boolean] = ACTIONS(327), + [anon_sym_string] = ACTIONS(327), + [anon_sym_symbol] = ACTIONS(327), + [anon_sym_object] = ACTIONS(327), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(9), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29365,7 +29377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -29440,99 +29452,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5631), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(10), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29540,7 +29552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -29615,112 +29627,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7352), - [sym_spread_element] = STATE(5708), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3252), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7358), + [sym_spread_element] = STATE(5633), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3052), [sym_comment] = STATE(11), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(4441), - [sym_computed_property_name] = STATE(4442), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_accessibility_modifier] = STATE(3593), - [sym_override_modifier] = STATE(3621), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_export_statement_repeat1] = STATE(4813), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(305), - [anon_sym_export] = ACTIONS(307), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(4454), + [sym_computed_property_name] = STATE(4459), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_accessibility_modifier] = STATE(3599), + [sym_override_modifier] = STATE(3625), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4815), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(219), + [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(309), - [anon_sym_namespace] = ACTIONS(311), + [anon_sym_type] = ACTIONS(225), + [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(313), + [anon_sym_let] = ACTIONS(233), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29743,9 +29755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(315), + [anon_sym_async] = ACTIONS(237), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(317), + [anon_sym_new] = ACTIONS(239), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -29768,22 +29780,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(247), + [anon_sym_readonly] = ACTIONS(249), + [anon_sym_get] = ACTIONS(251), + [anon_sym_set] = ACTIONS(251), + [anon_sym_declare] = ACTIONS(253), + [anon_sym_public] = ACTIONS(255), + [anon_sym_private] = ACTIONS(255), + [anon_sym_protected] = ACTIONS(255), + [anon_sym_override] = ACTIONS(257), + [anon_sym_module] = ACTIONS(259), + [anon_sym_any] = ACTIONS(261), + [anon_sym_number] = ACTIONS(261), + [anon_sym_boolean] = ACTIONS(261), + [anon_sym_string] = ACTIONS(261), + [anon_sym_symbol] = ACTIONS(261), + [anon_sym_object] = ACTIONS(261), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), @@ -29792,12 +29804,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [12] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1368), + [sym_statement] = STATE(1334), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -29814,101 +29826,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(12), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4842), [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_export] = ACTIONS(338), + [anon_sym_default] = ACTIONS(341), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_typeof] = ACTIONS(352), + [anon_sym_import] = ACTIONS(355), + [anon_sym_with] = ACTIONS(358), + [anon_sym_var] = ACTIONS(361), + [anon_sym_let] = ACTIONS(364), + [anon_sym_const] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(352), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(373), + [anon_sym_for] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_await] = ACTIONS(382), + [anon_sym_while] = ACTIONS(385), + [anon_sym_do] = ACTIONS(388), + [anon_sym_try] = ACTIONS(391), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_debugger] = ACTIONS(400), + [anon_sym_return] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_case] = ACTIONS(341), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_LTtemplate_GT] = ACTIONS(418), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(424), + [anon_sym_class] = ACTIONS(427), + [anon_sym_async] = ACTIONS(430), + [anon_sym_function] = ACTIONS(433), + [anon_sym_new] = ACTIONS(436), + [anon_sym_using] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(352), + [anon_sym_void] = ACTIONS(352), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(451), + [sym_number] = ACTIONS(454), + [sym_private_property_identifier] = ACTIONS(457), + [sym_this] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(460), + [anon_sym_AT] = ACTIONS(463), + [anon_sym_static] = ACTIONS(466), + [anon_sym_readonly] = ACTIONS(466), + [anon_sym_get] = ACTIONS(466), + [anon_sym_set] = ACTIONS(466), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_public] = ACTIONS(466), + [anon_sym_private] = ACTIONS(466), + [anon_sym_protected] = ACTIONS(466), + [anon_sym_override] = ACTIONS(466), + [anon_sym_module] = ACTIONS(472), + [anon_sym_any] = ACTIONS(466), + [anon_sym_number] = ACTIONS(466), + [anon_sym_boolean] = ACTIONS(466), + [anon_sym_string] = ACTIONS(466), + [anon_sym_symbol] = ACTIONS(466), + [anon_sym_object] = ACTIONS(466), + [anon_sym_abstract] = ACTIONS(475), + [anon_sym_interface] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(481), + [sym_html_comment] = ACTIONS(5), + }, + [13] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1334), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), + [sym_comment] = STATE(13), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_default] = ACTIONS(488), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_case] = ACTIONS(339), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_case] = ACTIONS(488), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29930,36 +30104,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [13] = { + [14] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1368), + [sym_statement] = STATE(1334), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -29976,101 +30150,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(13), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_default] = ACTIONS(401), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(401), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), + [sym_comment] = STATE(14), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_default] = ACTIONS(550), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(550), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_case] = ACTIONS(401), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_case] = ACTIONS(550), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30092,36 +30266,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [14] = { + [15] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1368), + [sym_statement] = STATE(1334), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -30138,101 +30312,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(14), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), + [sym_comment] = STATE(15), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_default] = ACTIONS(403), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(403), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_default] = ACTIONS(552), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(552), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_case] = ACTIONS(403), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_case] = ACTIONS(552), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30254,198 +30428,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [15] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1368), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(15), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(405), - [anon_sym_export] = ACTIONS(408), - [anon_sym_default] = ACTIONS(411), - [anon_sym_type] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_import] = ACTIONS(425), - [anon_sym_with] = ACTIONS(428), - [anon_sym_var] = ACTIONS(431), - [anon_sym_let] = ACTIONS(434), - [anon_sym_const] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_for] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_await] = ACTIONS(452), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(458), - [anon_sym_try] = ACTIONS(461), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_debugger] = ACTIONS(470), - [anon_sym_return] = ACTIONS(473), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_case] = ACTIONS(411), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(494), - [anon_sym_class] = ACTIONS(497), - [anon_sym_async] = ACTIONS(500), - [anon_sym_function] = ACTIONS(503), - [anon_sym_new] = ACTIONS(506), - [anon_sym_using] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(521), - [sym_number] = ACTIONS(524), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_null] = ACTIONS(524), - [sym_undefined] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(533), - [anon_sym_static] = ACTIONS(536), - [anon_sym_readonly] = ACTIONS(536), - [anon_sym_get] = ACTIONS(536), - [anon_sym_set] = ACTIONS(536), - [anon_sym_declare] = ACTIONS(539), - [anon_sym_public] = ACTIONS(536), - [anon_sym_private] = ACTIONS(536), - [anon_sym_protected] = ACTIONS(536), - [anon_sym_override] = ACTIONS(536), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), [anon_sym_module] = ACTIONS(542), - [anon_sym_any] = ACTIONS(536), - [anon_sym_number] = ACTIONS(536), - [anon_sym_boolean] = ACTIONS(536), - [anon_sym_string] = ACTIONS(536), - [anon_sym_symbol] = ACTIONS(536), - [anon_sym_object] = ACTIONS(536), - [anon_sym_abstract] = ACTIONS(545), - [anon_sym_interface] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(551), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [16] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1368), + [sym_statement] = STATE(1334), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -30462,101 +30474,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(16), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), [anon_sym_default] = ACTIONS(554), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_case] = ACTIONS(554), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30578,128 +30590,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(17), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [ts_builtin_sym_end] = ACTIONS(556), [sym_identifier] = ACTIONS(558), [anon_sym_export] = ACTIONS(561), [anon_sym_type] = ACTIONS(564), [anon_sym_namespace] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_typeof] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_typeof] = ACTIONS(352), [anon_sym_import] = ACTIONS(573), [anon_sym_with] = ACTIONS(576), [anon_sym_var] = ACTIONS(579), [anon_sym_let] = ACTIONS(582), [anon_sym_const] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(352), [anon_sym_if] = ACTIONS(588), [anon_sym_switch] = ACTIONS(591), [anon_sym_for] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_await] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_await] = ACTIONS(382), [anon_sym_while] = ACTIONS(597), [anon_sym_do] = ACTIONS(600), [anon_sym_try] = ACTIONS(603), @@ -30709,36 +30721,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(615), [anon_sym_throw] = ACTIONS(618), [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_LTtemplate_GT] = ACTIONS(418), + [anon_sym_DQUOTE] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(424), [anon_sym_class] = ACTIONS(624), [anon_sym_async] = ACTIONS(627), [anon_sym_function] = ACTIONS(630), [anon_sym_new] = ACTIONS(633), - [anon_sym_using] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(521), - [sym_number] = ACTIONS(524), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_null] = ACTIONS(524), - [sym_undefined] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(533), + [anon_sym_using] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(352), + [anon_sym_void] = ACTIONS(352), + [anon_sym_delete] = ACTIONS(352), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(451), + [sym_number] = ACTIONS(454), + [sym_private_property_identifier] = ACTIONS(457), + [sym_this] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(460), + [anon_sym_AT] = ACTIONS(463), [anon_sym_static] = ACTIONS(636), [anon_sym_readonly] = ACTIONS(636), [anon_sym_get] = ACTIONS(636), @@ -30761,87 +30773,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(18), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30921,87 +30933,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(19), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31081,93 +31093,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(20), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(39), - [aux_sym_export_statement_repeat1] = STATE(4813), - [ts_builtin_sym_end] = ACTIONS(658), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(658), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31241,87 +31253,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(21), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31401,87 +31413,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(22), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31561,87 +31573,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(23), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31721,87 +31733,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(24), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31881,87 +31893,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(25), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32041,87 +32053,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(26), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32201,87 +32213,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(27), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32361,87 +32373,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(28), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32521,87 +32533,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(29), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32681,87 +32693,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(30), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32841,87 +32853,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(31), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33001,87 +33013,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(32), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33161,87 +33173,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(33), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33321,87 +33333,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(34), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33481,93 +33493,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(35), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), - [ts_builtin_sym_end] = ACTIONS(658), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(688), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33641,93 +33653,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(36), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(688), + [anon_sym_RBRACE] = ACTIONS(690), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33801,93 +33813,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(37), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(690), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33961,93 +33973,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(38), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(692), + [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34121,93 +34133,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(39), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), - [ts_builtin_sym_end] = ACTIONS(694), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(696), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34281,93 +34293,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(40), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), + [ts_builtin_sym_end] = ACTIONS(698), [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(696), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34441,93 +34453,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(41), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(698), + [anon_sym_RBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34601,93 +34613,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(42), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(700), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34761,247 +34773,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(43), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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(702), - [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(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [44] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(44), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35080,94 +34932,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, + [44] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(44), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(706), + [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(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, [45] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(45), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(706), + [anon_sym_RBRACE] = ACTIONS(708), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35241,93 +35253,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(46), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(47), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(708), + [anon_sym_RBRACE] = ACTIONS(710), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35401,93 +35413,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(47), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(62), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(710), + [anon_sym_RBRACE] = ACTIONS(712), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35561,93 +35573,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(48), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(52), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(712), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35721,93 +35733,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(49), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(714), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35881,93 +35893,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(50), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(716), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36041,93 +36053,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(51), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(718), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36201,93 +36213,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(52), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(720), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36361,93 +36373,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(53), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(722), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36521,93 +36533,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(54), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(724), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36681,93 +36693,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(55), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(726), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36841,93 +36853,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(56), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(728), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37001,93 +37013,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(57), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(730), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37161,93 +37173,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(58), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(732), + [anon_sym_RBRACE] = ACTIONS(734), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37321,93 +37333,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(59), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(734), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37481,93 +37493,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(60), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(736), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37641,93 +37653,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(61), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(65), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(738), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37801,93 +37813,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(62), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(740), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37961,93 +37973,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(63), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(742), + [anon_sym_RBRACE] = ACTIONS(744), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38121,93 +38133,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(64), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(50), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(744), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38281,93 +38293,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(65), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(746), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38441,93 +38453,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(66), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(748), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38601,93 +38613,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(67), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [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(750), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38761,93 +38773,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(68), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(71), + [aux_sym_export_statement_repeat1] = STATE(4815), + [ts_builtin_sym_end] = ACTIONS(698), [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(752), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38921,87 +38933,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(69), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39081,87 +39093,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(70), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39241,93 +39253,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(71), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(70), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), + [ts_builtin_sym_end] = ACTIONS(758), [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(758), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39401,87 +39413,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1583), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(72), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_program_repeat1] = STATE(51), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39563,12 +39575,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [73] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1370), + [sym_statement] = STATE(1258), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -39585,97 +39597,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(73), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -39697,108 +39709,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1180), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1067), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), [sym_comment] = STATE(74), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -39877,86 +39889,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6372), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1571), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), [sym_comment] = STATE(75), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [76] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6912), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -40034,122 +40204,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6379), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [77] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1070), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(76), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40171,143 +40341,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1430), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [78] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6825), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(77), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40329,143 +40499,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1487), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [79] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(7049), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(78), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40487,108 +40657,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6177), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [80] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6609), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(79), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -40666,122 +40836,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1546), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [81] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1072), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(80), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [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_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40803,108 +40973,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1429), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [82] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1111), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(81), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -40982,122 +41152,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6362), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [83] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1148), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41119,108 +41289,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(7302), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [84] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1190), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [85] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1564), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(7204), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -41298,87 +41784,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1119), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [87] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1121), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -41456,122 +41942,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1470), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [88] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6383), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41593,108 +42079,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1559), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [89] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1619), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41772,245 +42258,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1025), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), - [sym_html_comment] = ACTIONS(5), - }, - [88] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1152), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [90] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1445), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(88), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -42088,87 +42416,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1542), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [91] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1563), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(89), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42246,87 +42574,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6975), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [92] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6955), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(92), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -42404,122 +42732,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1042), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [93] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1545), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(91), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(93), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [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(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42541,143 +42869,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1448), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [94] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(7308), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(92), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(94), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42699,108 +43027,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1003), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [95] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1438), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(93), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -42878,245 +43206,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1372), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(94), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), - [sym_html_comment] = ACTIONS(5), - }, - [95] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6380), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [96] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6381), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(95), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -43194,122 +43364,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1473), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [97] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(995), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(96), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43331,143 +43501,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1617), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [98] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1430), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [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_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43489,143 +43659,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1622), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [99] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1196), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(98), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(99), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [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_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43647,108 +43817,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(7043), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [100] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6375), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(99), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(100), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -43826,245 +43996,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1029), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(100), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), - [sym_html_comment] = ACTIONS(5), - }, [101] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1076), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1429), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), [sym_comment] = STATE(101), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -44143,244 +44155,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1128), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6359), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), [sym_comment] = STATE(102), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), - [sym_html_comment] = ACTIONS(5), - }, - [103] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6838), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(103), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -44458,87 +44312,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1318), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [103] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(975), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -44616,122 +44470,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, + [104] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1372), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), + [sym_html_comment] = ACTIONS(5), + }, [105] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6894), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1333), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(105), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44753,108 +44765,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1438), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1319), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), [sym_comment] = STATE(106), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), + [sym_html_comment] = ACTIONS(5), + }, + [107] = { + [sym_export_statement] = STATE(1115), + [sym_declaration] = STATE(1115), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1115), + [sym_statement] = STATE(1061), + [sym_expression_statement] = STATE(1115), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_statement_block] = STATE(1115), + [sym_if_statement] = STATE(1115), + [sym_switch_statement] = STATE(1115), + [sym_for_statement] = STATE(1115), + [sym_for_in_statement] = STATE(1115), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1115), + [sym_try_statement] = STATE(1115), + [sym_with_statement] = STATE(1115), + [sym_break_statement] = STATE(1115), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1115), + [sym_return_statement] = STATE(1115), + [sym_throw_statement] = STATE(1115), + [sym_empty_statement] = STATE(1115), + [sym_labeled_statement] = STATE(1115), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6351), + [sym_string] = STATE(3008), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4799), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -44932,122 +45102,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6637), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [108] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1560), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [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(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45069,108 +45239,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1175), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [109] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1266), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -45248,122 +45418,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(1189), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [110] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6643), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45385,36 +45555,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [111] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1517), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), + [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(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [112] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1469), + [sym_statement] = STATE(1332), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -45431,97 +45759,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45543,108 +45871,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(7208), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [113] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1310), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), + [sym_html_comment] = ACTIONS(5), + }, + [114] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6979), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -45722,87 +46208,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6949), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), + [115] = { + [sym_export_statement] = STATE(6329), + [sym_declaration] = STATE(6329), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(6329), + [sym_statement] = STATE(6182), + [sym_expression_statement] = STATE(6329), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_statement_block] = STATE(6329), + [sym_if_statement] = STATE(6329), + [sym_switch_statement] = STATE(6329), + [sym_for_statement] = STATE(6329), + [sym_for_in_statement] = STATE(6329), + [sym_while_statement] = STATE(6329), + [sym_do_statement] = STATE(6329), + [sym_try_statement] = STATE(6329), + [sym_with_statement] = STATE(6329), + [sym_break_statement] = STATE(6329), + [sym_continue_statement] = STATE(6329), + [sym_debugger_statement] = STATE(6329), + [sym_return_statement] = STATE(6329), + [sym_throw_statement] = STATE(6329), + [sym_empty_statement] = STATE(6329), + [sym_labeled_statement] = STATE(6329), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6458), + [sym_string] = STATE(3008), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4670), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -45880,245 +46366,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1416), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [114] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1624), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [116] = { + [sym_export_statement] = STATE(1616), + [sym_declaration] = STATE(1616), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1616), + [sym_statement] = STATE(1554), + [sym_expression_statement] = STATE(1616), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_statement_block] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_switch_statement] = STATE(1616), + [sym_for_statement] = STATE(1616), + [sym_for_in_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_do_statement] = STATE(1616), + [sym_try_statement] = STATE(1616), + [sym_with_statement] = STATE(1616), + [sym_break_statement] = STATE(1616), + [sym_continue_statement] = STATE(1616), + [sym_debugger_statement] = STATE(1616), + [sym_return_statement] = STATE(1616), + [sym_throw_statement] = STATE(1616), + [sym_empty_statement] = STATE(1616), + [sym_labeled_statement] = STATE(1616), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2639), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6361), + [sym_string] = STATE(3008), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -46196,280 +46524,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(6326), - [sym_declaration] = STATE(6326), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(6326), - [sym_statement] = STATE(6600), - [sym_expression_statement] = STATE(6326), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_statement_block] = STATE(6326), - [sym_if_statement] = STATE(6326), - [sym_switch_statement] = STATE(6326), - [sym_for_statement] = STATE(6326), - [sym_for_in_statement] = STATE(6326), - [sym_while_statement] = STATE(6326), - [sym_do_statement] = STATE(6326), - [sym_try_statement] = STATE(6326), - [sym_with_statement] = STATE(6326), - [sym_break_statement] = STATE(6326), - [sym_continue_statement] = STATE(6326), - [sym_debugger_statement] = STATE(6326), - [sym_return_statement] = STATE(6326), - [sym_throw_statement] = STATE(6326), - [sym_empty_statement] = STATE(6326), - [sym_labeled_statement] = STATE(6326), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2566), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6453), - [sym_string] = STATE(3280), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4691), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), - [sym_html_comment] = ACTIONS(5), - }, - [116] = { - [sym_export_statement] = STATE(1229), - [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1403), - [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_statement_block] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_switch_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_for_in_statement] = STATE(1229), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_with_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_debugger_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_statement] = STATE(1229), - [sym_empty_statement] = STATE(1229), - [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), + [117] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1084), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46491,143 +46661,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1268), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), + [118] = { + [sym_export_statement] = STATE(1328), + [sym_declaration] = STATE(1328), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1328), + [sym_statement] = STATE(1228), + [sym_expression_statement] = STATE(1328), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_statement_block] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_switch_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_for_in_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_do_statement] = STATE(1328), + [sym_try_statement] = STATE(1328), + [sym_with_statement] = STATE(1328), + [sym_break_statement] = STATE(1328), + [sym_continue_statement] = STATE(1328), + [sym_debugger_statement] = STATE(1328), + [sym_return_statement] = STATE(1328), + [sym_throw_statement] = STATE(1328), + [sym_empty_statement] = STATE(1328), + [sym_labeled_statement] = STATE(1328), + [sym_parenthesized_expression] = STATE(2096), [sym_expression] = STATE(2600), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6362), + [sym_string] = STATE(3008), + [sym_comment] = STATE(118), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46649,36 +46819,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [118] = { + [119] = { [sym_export_statement] = STATE(1229), [sym_declaration] = STATE(1229), - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_import_statement] = STATE(1229), - [sym_statement] = STATE(1355), + [sym_statement] = STATE(1245), [sym_expression_statement] = STATE(1229), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), [sym_statement_block] = STATE(1229), [sym_if_statement] = STATE(1229), [sym_switch_statement] = STATE(1229), @@ -46695,255 +46865,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(1229), [sym_empty_statement] = STATE(1229), [sym_labeled_statement] = STATE(1229), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6741), - [sym_string] = STATE(3280), - [sym_comment] = STATE(118), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4658), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [119] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1552), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(119), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [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_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46965,143 +46977,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_export_statement] = STATE(1588), - [sym_declaration] = STATE(1588), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1588), - [sym_statement] = STATE(1627), - [sym_expression_statement] = STATE(1588), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_statement_block] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_for_statement] = STATE(1588), - [sym_for_in_statement] = STATE(1588), - [sym_while_statement] = STATE(1588), - [sym_do_statement] = STATE(1588), - [sym_try_statement] = STATE(1588), - [sym_with_statement] = STATE(1588), - [sym_break_statement] = STATE(1588), - [sym_continue_statement] = STATE(1588), - [sym_debugger_statement] = STATE(1588), - [sym_return_statement] = STATE(1588), - [sym_throw_statement] = STATE(1588), - [sym_empty_statement] = STATE(1588), - [sym_labeled_statement] = STATE(1588), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2448), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1244), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6345), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(120), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4813), - [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_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [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_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47123,143 +47135,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_export_statement] = STATE(1190), - [sym_declaration] = STATE(1190), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1190), - [sym_statement] = STATE(994), - [sym_expression_statement] = STATE(1190), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_statement_block] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_for_in_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_with_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_empty_statement] = STATE(1190), - [sym_labeled_statement] = STATE(1190), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2583), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1256), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6349), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(121), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4758), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47281,143 +47293,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1467), - [sym_import] = STATE(4300), - [sym_import_statement] = STATE(1467), - [sym_statement] = STATE(1234), - [sym_expression_statement] = STATE(1467), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_statement_block] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1467), - [sym_for_in_statement] = STATE(1467), - [sym_while_statement] = STATE(1467), - [sym_do_statement] = STATE(1467), - [sym_try_statement] = STATE(1467), - [sym_with_statement] = STATE(1467), - [sym_break_statement] = STATE(1467), - [sym_continue_statement] = STATE(1467), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1467), - [sym_throw_statement] = STATE(1467), - [sym_empty_statement] = STATE(1467), - [sym_labeled_statement] = STATE(1467), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2600), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4289), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1279), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2628), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6356), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6724), + [sym_string] = STATE(3008), [sym_comment] = STATE(122), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4817), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4842), + [sym_identifier] = ACTIONS(484), + [anon_sym_export] = ACTIONS(486), + [anon_sym_type] = ACTIONS(490), + [anon_sym_namespace] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(496), + [anon_sym_with] = ACTIONS(498), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(502), + [anon_sym_const] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(506), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(512), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_function] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47439,1059 +47451,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(540), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + [anon_sym_object] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(123), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5655), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(954), [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(974), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), [anon_sym_get] = ACTIONS(956), [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(956), [anon_sym_public] = ACTIONS(956), [anon_sym_private] = ACTIONS(956), [anon_sym_protected] = ACTIONS(956), [anon_sym_override] = ACTIONS(956), [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(124), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1002), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5656), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(125), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5657), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [126] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(126), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1037), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [127] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(127), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [128] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(128), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5854), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [129] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), - [sym_comment] = STATE(129), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(125), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -48500,8 +47888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -48514,452 +47902,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [126] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(126), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), [anon_sym_get] = ACTIONS(956), [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(956), [anon_sym_public] = ACTIONS(956), [anon_sym_private] = ACTIONS(956), [anon_sym_protected] = ACTIONS(956), [anon_sym_override] = ACTIONS(956), [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [130] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(130), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [131] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(131), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1049), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(4300), + [127] = { + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), - [sym_comment] = STATE(132), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(127), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -48968,8 +48200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -48982,560 +48214,1340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [128] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(128), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5655), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), [anon_sym_get] = ACTIONS(956), [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(956), [anon_sym_public] = ACTIONS(956), [anon_sym_private] = ACTIONS(956), [anon_sym_protected] = ACTIONS(956), [anon_sym_override] = ACTIONS(956), [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(133), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), + [129] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1043), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5656), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(134), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), + [130] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(130), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5657), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(135), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(5094), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), + [131] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(131), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5851), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [132] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(132), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [133] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(133), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [134] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(134), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(5096), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(989), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACK] = ACTIONS(1055), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(978), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(996), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1033), - [anon_sym_number] = ACTIONS(1033), - [anon_sym_boolean] = ACTIONS(1033), - [anon_sym_string] = ACTIONS(1033), - [anon_sym_symbol] = ACTIONS(1033), - [anon_sym_object] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(998), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1000), + [anon_sym_number] = ACTIONS(1000), + [anon_sym_boolean] = ACTIONS(1000), + [anon_sym_string] = ACTIONS(1000), + [anon_sym_symbol] = ACTIONS(1000), + [anon_sym_object] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [135] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(135), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(136), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5138), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -49545,45 +49557,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -49592,9 +49604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -49606,27 +49618,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -49640,105 +49652,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(137), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5067), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -49747,9 +49759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -49761,27 +49773,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -49795,105 +49807,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(138), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5065), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -49902,9 +49914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -49916,27 +49928,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -49950,105 +49962,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5134), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5165), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50057,9 +50069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -50071,27 +50083,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -50105,105 +50117,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5137), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50212,9 +50224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -50226,27 +50238,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1087), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -50260,105 +50272,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5136), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5069), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50367,9 +50379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -50381,27 +50393,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1087), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1089), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -50415,105 +50427,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5154), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50522,9 +50534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -50536,27 +50548,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -50570,105 +50582,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5163), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5067), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50677,9 +50689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(132), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(1071), @@ -50691,27 +50703,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(176), + [anon_sym_DASH_DASH] = ACTIONS(176), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1091), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), @@ -50725,104 +50737,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(111), [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50831,9 +50843,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -50845,27 +50857,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), [anon_sym_readonly] = ACTIONS(1095), [anon_sym_get] = ACTIONS(1095), [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(1095), [anon_sym_public] = ACTIONS(1095), [anon_sym_private] = ACTIONS(1095), @@ -50879,55 +50891,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -50938,45 +50950,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(1117), [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(1117), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -50985,9 +50997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -50999,20 +51011,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -51033,89 +51045,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4886), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7305), - [sym_string] = STATE(3203), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2125), + [sym_subscript_expression] = STATE(2125), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4890), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7311), + [sym_string] = STATE(3051), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2111), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5521), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(775), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2125), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5525), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51123,29 +51135,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(1131), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1141), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51157,7 +51169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1153), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1153), [sym_false] = ACTIONS(1153), [sym_null] = ACTIONS(1153), @@ -51167,7 +51179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1163), [anon_sym_get] = ACTIONS(1121), [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1121), [anon_sym_public] = ACTIONS(1165), [anon_sym_private] = ACTIONS(1165), @@ -51180,95 +51192,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1169), [anon_sym_symbol] = ACTIONS(1169), [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4886), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7174), - [sym_string] = STATE(3203), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2125), + [sym_subscript_expression] = STATE(2125), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4890), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7207), + [sym_string] = STATE(3051), [sym_comment] = STATE(147), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2111), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5521), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(775), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2125), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5525), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51276,29 +51288,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(1131), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1141), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51310,7 +51322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1153), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1153), [sym_false] = ACTIONS(1153), [sym_null] = ACTIONS(1153), @@ -51320,7 +51332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1163), [anon_sym_get] = ACTIONS(1121), [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1121), [anon_sym_public] = ACTIONS(1165), [anon_sym_private] = ACTIONS(1165), @@ -51333,95 +51345,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1169), [anon_sym_symbol] = ACTIONS(1169), [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4886), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7174), - [sym_string] = STATE(3203), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2125), + [sym_subscript_expression] = STATE(2125), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4890), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7207), + [sym_string] = STATE(3051), [sym_comment] = STATE(148), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2111), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5510), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(775), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2125), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5515), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51429,29 +51441,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(1125), [anon_sym_typeof] = ACTIONS(1127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(1131), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1141), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51463,7 +51475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1153), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1153), [sym_false] = ACTIONS(1153), [sym_null] = ACTIONS(1153), @@ -51473,7 +51485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1163), [anon_sym_get] = ACTIONS(1121), [anon_sym_set] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1121), [anon_sym_public] = ACTIONS(1165), [anon_sym_private] = ACTIONS(1165), @@ -51486,564 +51498,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1169), [anon_sym_symbol] = ACTIONS(1169), [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(149), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5495), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5526), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1173), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(1175), [anon_sym_private] = ACTIONS(1175), [anon_sym_protected] = ACTIONS(1175), [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(150), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1179), [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_namespace] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [151] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(151), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5521), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [152] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(152), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52052,9 +51760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52066,136 +51774,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [151] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [152] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(153), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1199), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1203), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52204,9 +52216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52218,89 +52230,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_readonly] = ACTIONS(1199), - [anon_sym_get] = ACTIONS(1199), - [anon_sym_set] = ACTIONS(1199), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(1199), - [anon_sym_public] = ACTIONS(1199), - [anon_sym_private] = ACTIONS(1199), - [anon_sym_protected] = ACTIONS(1199), - [anon_sym_override] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_any] = ACTIONS(1199), - [anon_sym_number] = ACTIONS(1199), - [anon_sym_boolean] = ACTIONS(1199), - [anon_sym_string] = ACTIONS(1199), - [anon_sym_symbol] = ACTIONS(1199), - [anon_sym_object] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(154), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -52310,44 +52322,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52356,9 +52368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52370,20 +52382,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -52403,103 +52415,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(155), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52508,8 +52520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -52522,136 +52534,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(156), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(1216), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52660,9 +52673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52674,136 +52687,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_readonly] = ACTIONS(1216), - [anon_sym_get] = ACTIONS(1216), - [anon_sym_set] = ACTIONS(1216), - [anon_sym_declare] = ACTIONS(1216), - [anon_sym_public] = ACTIONS(1216), - [anon_sym_private] = ACTIONS(1216), - [anon_sym_protected] = ACTIONS(1216), - [anon_sym_override] = ACTIONS(1216), - [anon_sym_module] = ACTIONS(1216), - [anon_sym_any] = ACTIONS(1216), - [anon_sym_number] = ACTIONS(1216), - [anon_sym_boolean] = ACTIONS(1216), - [anon_sym_string] = ACTIONS(1216), - [anon_sym_symbol] = ACTIONS(1216), - [anon_sym_object] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(157), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -52812,8 +52824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -52826,288 +52838,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(158), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5431), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1173), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(1175), [anon_sym_private] = ACTIONS(1175), [anon_sym_protected] = ACTIONS(1175), [anon_sym_override] = ACTIONS(1177), [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5525), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [160] = { + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1207), + [anon_sym_export] = ACTIONS(1209), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53116,9 +53280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53130,288 +53294,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_readonly] = ACTIONS(1209), + [anon_sym_get] = ACTIONS(1209), + [anon_sym_set] = ACTIONS(1209), + [anon_sym_declare] = ACTIONS(1209), + [anon_sym_public] = ACTIONS(1209), + [anon_sym_private] = ACTIONS(1209), + [anon_sym_protected] = ACTIONS(1209), + [anon_sym_override] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_any] = ACTIONS(1209), + [anon_sym_number] = ACTIONS(1209), + [anon_sym_boolean] = ACTIONS(1209), + [anon_sym_string] = ACTIONS(1209), + [anon_sym_symbol] = ACTIONS(1209), + [anon_sym_object] = ACTIONS(1209), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [160] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5510), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(161), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(1216), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53420,9 +53432,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53434,136 +53446,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_readonly] = ACTIONS(1216), - [anon_sym_get] = ACTIONS(1216), - [anon_sym_set] = ACTIONS(1216), - [anon_sym_declare] = ACTIONS(1216), - [anon_sym_public] = ACTIONS(1216), - [anon_sym_private] = ACTIONS(1216), - [anon_sym_protected] = ACTIONS(1216), - [anon_sym_override] = ACTIONS(1216), - [anon_sym_module] = ACTIONS(1216), - [anon_sym_any] = ACTIONS(1216), - [anon_sym_number] = ACTIONS(1216), - [anon_sym_boolean] = ACTIONS(1216), - [anon_sym_string] = ACTIONS(1216), - [anon_sym_symbol] = ACTIONS(1216), - [anon_sym_object] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(162), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53572,9 +53585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53586,136 +53599,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(163), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53724,9 +53737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53738,136 +53751,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(4300), + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(164), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -53876,8 +53888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -53890,289 +53902,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), - [sym_comment] = STATE(165), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(5025), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym__type] = STATE(5429), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(166), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(165), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1179), [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_namespace] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54181,9 +54040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54195,26 +54054,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1181), [anon_sym_readonly] = ACTIONS(1181), [anon_sym_get] = ACTIONS(1181), [anon_sym_set] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(1181), [anon_sym_public] = ACTIONS(1181), [anon_sym_private] = ACTIONS(1181), @@ -54228,254 +54088,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1181), [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [167] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(167), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(4300), + [166] = { + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), - [sym_comment] = STATE(168), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1029), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54484,8 +54192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -54498,136 +54206,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_readonly] = ACTIONS(1006), + [anon_sym_get] = ACTIONS(1006), + [anon_sym_set] = ACTIONS(1006), + [anon_sym_declare] = ACTIONS(1006), + [anon_sym_public] = ACTIONS(1006), + [anon_sym_private] = ACTIONS(1006), + [anon_sym_protected] = ACTIONS(1006), + [anon_sym_override] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_any] = ACTIONS(1006), + [anon_sym_number] = ACTIONS(1006), + [anon_sym_boolean] = ACTIONS(1006), + [anon_sym_string] = ACTIONS(1006), + [anon_sym_symbol] = ACTIONS(1006), + [anon_sym_object] = ACTIONS(1006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(4300), + [167] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(167), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5497), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(4289), [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), [sym_member_expression] = STATE(2063), [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), - [sym_comment] = STATE(169), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), + [sym_comment] = STATE(168), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1207), + [anon_sym_export] = ACTIONS(1209), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1019), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(979), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54636,9 +54496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54650,89 +54510,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_readonly] = ACTIONS(1209), + [anon_sym_get] = ACTIONS(1209), + [anon_sym_set] = ACTIONS(1209), + [anon_sym_declare] = ACTIONS(1209), + [anon_sym_public] = ACTIONS(1209), + [anon_sym_private] = ACTIONS(1209), + [anon_sym_protected] = ACTIONS(1209), + [anon_sym_override] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_any] = ACTIONS(1209), + [anon_sym_number] = ACTIONS(1209), + [anon_sym_boolean] = ACTIONS(1209), + [anon_sym_string] = ACTIONS(1209), + [anon_sym_symbol] = ACTIONS(1209), + [anon_sym_object] = ACTIONS(1209), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [169] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(170), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(169), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -54742,44 +54602,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54788,9 +54648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54802,20 +54662,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -54835,103 +54695,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [170] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(5027), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym__type] = STATE(5515), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), + [anon_sym_object] = ACTIONS(195), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(171), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1199), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1095), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1203), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -54940,9 +54952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54954,136 +54966,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_readonly] = ACTIONS(1199), - [anon_sym_get] = ACTIONS(1199), - [anon_sym_set] = ACTIONS(1199), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(1199), - [anon_sym_public] = ACTIONS(1199), - [anon_sym_private] = ACTIONS(1199), - [anon_sym_protected] = ACTIONS(1199), - [anon_sym_override] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_any] = ACTIONS(1199), - [anon_sym_number] = ACTIONS(1199), - [anon_sym_boolean] = ACTIONS(1199), - [anon_sym_string] = ACTIONS(1199), - [anon_sym_symbol] = ACTIONS(1199), - [anon_sym_object] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(172), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), + [anon_sym_type] = ACTIONS(1223), [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55092,9 +55104,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55106,135 +55118,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(173), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55243,9 +55255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55257,135 +55269,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(174), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1243), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55394,9 +55406,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55408,135 +55420,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(175), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1179), [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1243), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_namespace] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55545,9 +55557,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55559,20 +55571,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1181), @@ -55592,102 +55604,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1181), [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(176), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1199), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1203), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55696,9 +55708,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55710,135 +55722,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_readonly] = ACTIONS(1199), - [anon_sym_get] = ACTIONS(1199), - [anon_sym_set] = ACTIONS(1199), - [anon_sym_declare] = ACTIONS(1199), - [anon_sym_public] = ACTIONS(1199), - [anon_sym_private] = ACTIONS(1199), - [anon_sym_protected] = ACTIONS(1199), - [anon_sym_override] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_any] = ACTIONS(1199), - [anon_sym_number] = ACTIONS(1199), - [anon_sym_boolean] = ACTIONS(1199), - [anon_sym_string] = ACTIONS(1199), - [anon_sym_symbol] = ACTIONS(1199), - [anon_sym_object] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(177), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1199), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1203), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55847,9 +55859,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55861,135 +55873,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_readonly] = ACTIONS(1199), - [anon_sym_get] = ACTIONS(1199), - [anon_sym_set] = ACTIONS(1199), - [anon_sym_declare] = ACTIONS(1199), - [anon_sym_public] = ACTIONS(1199), - [anon_sym_private] = ACTIONS(1199), - [anon_sym_protected] = ACTIONS(1199), - [anon_sym_override] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_any] = ACTIONS(1199), - [anon_sym_number] = ACTIONS(1199), - [anon_sym_boolean] = ACTIONS(1199), - [anon_sym_string] = ACTIONS(1199), - [anon_sym_symbol] = ACTIONS(1199), - [anon_sym_object] = ACTIONS(1199), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(178), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -55998,9 +56010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56012,133 +56024,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(179), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1273), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1277), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56147,9 +56159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56161,135 +56173,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_readonly] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1267), + [anon_sym_set] = ACTIONS(1267), + [anon_sym_declare] = ACTIONS(1267), + [anon_sym_public] = ACTIONS(1267), + [anon_sym_private] = ACTIONS(1267), + [anon_sym_protected] = ACTIONS(1267), + [anon_sym_override] = ACTIONS(1267), + [anon_sym_module] = ACTIONS(1267), + [anon_sym_any] = ACTIONS(1267), + [anon_sym_number] = ACTIONS(1267), + [anon_sym_boolean] = ACTIONS(1267), + [anon_sym_string] = ACTIONS(1267), + [anon_sym_symbol] = ACTIONS(1267), + [anon_sym_object] = ACTIONS(1267), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(180), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1269), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56298,9 +56310,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56312,134 +56324,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(181), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56448,9 +56459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56462,134 +56473,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(182), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5183), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6608), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56598,9 +56610,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56612,133 +56624,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(183), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1271), - [anon_sym_export] = ACTIONS(1273), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1287), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_namespace] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1283), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1297), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56747,9 +56759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56761,134 +56773,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1287), + [anon_sym_readonly] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(1287), + [anon_sym_set] = ACTIONS(1287), + [anon_sym_declare] = ACTIONS(1287), + [anon_sym_public] = ACTIONS(1287), + [anon_sym_private] = ACTIONS(1287), + [anon_sym_protected] = ACTIONS(1287), + [anon_sym_override] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_number] = ACTIONS(1287), + [anon_sym_boolean] = ACTIONS(1287), + [anon_sym_string] = ACTIONS(1287), + [anon_sym_symbol] = ACTIONS(1287), + [anon_sym_object] = ACTIONS(1287), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(184), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1287), - [anon_sym_export] = ACTIONS(1289), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1295), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -56897,9 +56909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56911,135 +56923,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_readonly] = ACTIONS(1289), - [anon_sym_get] = ACTIONS(1289), - [anon_sym_set] = ACTIONS(1289), - [anon_sym_declare] = ACTIONS(1289), - [anon_sym_public] = ACTIONS(1289), - [anon_sym_private] = ACTIONS(1289), - [anon_sym_protected] = ACTIONS(1289), - [anon_sym_override] = ACTIONS(1289), - [anon_sym_module] = ACTIONS(1289), - [anon_sym_any] = ACTIONS(1289), - [anon_sym_number] = ACTIONS(1289), - [anon_sym_boolean] = ACTIONS(1289), - [anon_sym_string] = ACTIONS(1289), - [anon_sym_symbol] = ACTIONS(1289), - [anon_sym_object] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57048,9 +57060,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57062,133 +57074,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2063), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2585), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2063), - [sym_subscript_expression] = STATE(2063), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(186), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2063), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1287), - [anon_sym_export] = ACTIONS(1289), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5188), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6614), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1295), - [anon_sym_function] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57197,9 +57210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57211,134 +57224,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_readonly] = ACTIONS(1289), - [anon_sym_get] = ACTIONS(1289), - [anon_sym_set] = ACTIONS(1289), - [anon_sym_declare] = ACTIONS(1289), - [anon_sym_public] = ACTIONS(1289), - [anon_sym_private] = ACTIONS(1289), - [anon_sym_protected] = ACTIONS(1289), - [anon_sym_override] = ACTIONS(1289), - [anon_sym_module] = ACTIONS(1289), - [anon_sym_any] = ACTIONS(1289), - [anon_sym_number] = ACTIONS(1289), - [anon_sym_boolean] = ACTIONS(1289), - [anon_sym_string] = ACTIONS(1289), - [anon_sym_symbol] = ACTIONS(1289), - [anon_sym_object] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(187), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1271), - [anon_sym_export] = ACTIONS(1273), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1273), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1283), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1277), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57347,9 +57359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57361,135 +57373,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1267), + [anon_sym_readonly] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1267), + [anon_sym_set] = ACTIONS(1267), + [anon_sym_declare] = ACTIONS(1267), + [anon_sym_public] = ACTIONS(1267), + [anon_sym_private] = ACTIONS(1267), + [anon_sym_protected] = ACTIONS(1267), + [anon_sym_override] = ACTIONS(1267), + [anon_sym_module] = ACTIONS(1267), + [anon_sym_any] = ACTIONS(1267), + [anon_sym_number] = ACTIONS(1267), + [anon_sym_boolean] = ACTIONS(1267), + [anon_sym_string] = ACTIONS(1267), + [anon_sym_symbol] = ACTIONS(1267), + [anon_sym_object] = ACTIONS(1267), [anon_sym_satisfies] = ACTIONS(118), [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(188), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1179), - [anon_sym_export] = ACTIONS(1181), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1181), + [anon_sym_type] = ACTIONS(1223), [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57498,9 +57510,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57512,133 +57524,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_readonly] = ACTIONS(1181), - [anon_sym_get] = ACTIONS(1181), - [anon_sym_set] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_override] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_number] = ACTIONS(1181), - [anon_sym_boolean] = ACTIONS(1181), - [anon_sym_string] = ACTIONS(1181), - [anon_sym_symbol] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(1181), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2524), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3008), [sym_comment] = STATE(189), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1287), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_namespace] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1297), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57647,9 +57659,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57661,89 +57673,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_readonly] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(1287), + [anon_sym_set] = ACTIONS(1287), + [anon_sym_declare] = ACTIONS(1287), + [anon_sym_public] = ACTIONS(1287), + [anon_sym_private] = ACTIONS(1287), + [anon_sym_protected] = ACTIONS(1287), + [anon_sym_override] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_number] = ACTIONS(1287), + [anon_sym_boolean] = ACTIONS(1287), + [anon_sym_string] = ACTIONS(1287), + [anon_sym_symbol] = ACTIONS(1287), + [anon_sym_object] = ACTIONS(1287), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(190), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -57752,43 +57764,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57797,9 +57809,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57811,20 +57823,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -57844,100 +57856,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(191), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1301), - [anon_sym_export] = ACTIONS(1303), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1309), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -57946,9 +57958,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57960,133 +57972,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1303), - [anon_sym_get] = ACTIONS(1303), - [anon_sym_set] = ACTIONS(1303), - [anon_sym_declare] = ACTIONS(1303), - [anon_sym_public] = ACTIONS(1303), - [anon_sym_private] = ACTIONS(1303), - [anon_sym_protected] = ACTIONS(1303), - [anon_sym_override] = ACTIONS(1303), - [anon_sym_module] = ACTIONS(1303), - [anon_sym_any] = ACTIONS(1303), - [anon_sym_number] = ACTIONS(1303), - [anon_sym_boolean] = ACTIONS(1303), - [anon_sym_string] = ACTIONS(1303), - [anon_sym_symbol] = ACTIONS(1303), - [anon_sym_object] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(192), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58095,9 +58107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58109,133 +58121,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(193), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1305), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1309), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58244,9 +58256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58258,133 +58270,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(1305), + [anon_sym_set] = ACTIONS(1305), + [anon_sym_declare] = ACTIONS(1305), + [anon_sym_public] = ACTIONS(1305), + [anon_sym_private] = ACTIONS(1305), + [anon_sym_protected] = ACTIONS(1305), + [anon_sym_override] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1305), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(194), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1317), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1321), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1325), + [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1325), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58393,9 +58405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58407,133 +58419,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(1317), - [anon_sym_get] = ACTIONS(1317), - [anon_sym_set] = ACTIONS(1317), - [anon_sym_declare] = ACTIONS(1317), - [anon_sym_public] = ACTIONS(1317), - [anon_sym_private] = ACTIONS(1317), - [anon_sym_protected] = ACTIONS(1317), - [anon_sym_override] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [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_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(195), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1301), - [anon_sym_export] = ACTIONS(1303), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1309), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58542,9 +58554,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58556,88 +58568,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_readonly] = ACTIONS(1303), - [anon_sym_get] = ACTIONS(1303), - [anon_sym_set] = ACTIONS(1303), - [anon_sym_declare] = ACTIONS(1303), - [anon_sym_public] = ACTIONS(1303), - [anon_sym_private] = ACTIONS(1303), - [anon_sym_protected] = ACTIONS(1303), - [anon_sym_override] = ACTIONS(1303), - [anon_sym_module] = ACTIONS(1303), - [anon_sym_any] = ACTIONS(1303), - [anon_sym_number] = ACTIONS(1303), - [anon_sym_boolean] = ACTIONS(1303), - [anon_sym_string] = ACTIONS(1303), - [anon_sym_symbol] = ACTIONS(1303), - [anon_sym_object] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(196), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -58646,43 +58658,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58691,9 +58703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58705,20 +58717,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -58738,100 +58750,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(197), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1246), - [anon_sym_export] = ACTIONS(1248), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(1305), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58840,9 +58852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58854,133 +58866,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1248), - [anon_sym_set] = ACTIONS(1248), - [anon_sym_declare] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_protected] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_module] = ACTIONS(1248), - [anon_sym_any] = ACTIONS(1248), - [anon_sym_number] = ACTIONS(1248), - [anon_sym_boolean] = ACTIONS(1248), - [anon_sym_string] = ACTIONS(1248), - [anon_sym_symbol] = ACTIONS(1248), - [anon_sym_object] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_readonly] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(1305), + [anon_sym_set] = ACTIONS(1305), + [anon_sym_declare] = ACTIONS(1305), + [anon_sym_public] = ACTIONS(1305), + [anon_sym_private] = ACTIONS(1305), + [anon_sym_protected] = ACTIONS(1305), + [anon_sym_override] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1305), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(198), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1250), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -58989,9 +59001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59003,133 +59015,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(199), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1317), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1325), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59138,9 +59150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59152,133 +59164,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(1317), - [anon_sym_get] = ACTIONS(1317), - [anon_sym_set] = ACTIONS(1317), - [anon_sym_declare] = ACTIONS(1317), - [anon_sym_public] = ACTIONS(1317), - [anon_sym_private] = ACTIONS(1317), - [anon_sym_protected] = ACTIONS(1317), - [anon_sym_override] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [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_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(200), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1321), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1325), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59287,9 +59299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59301,88 +59313,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(201), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -59391,42 +59403,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59435,9 +59447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59449,20 +59461,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -59482,99 +59494,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4230), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6830), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7047), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2800), [sym_comment] = STATE(202), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5083), + [sym_pattern] = STATE(5846), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3949), + [sym__type_query_member_expression_in_type_annotation] = STATE(4126), + [sym__type_query_call_expression_in_type_annotation] = STATE(4369), + [sym__type] = STATE(4125), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6594), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1331), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_typeof] = ACTIONS(1337), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1355), + [sym_number] = ACTIONS(1357), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(1359), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), + [sym_undefined] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_number] = ACTIONS(1367), + [anon_sym_boolean] = ACTIONS(1367), + [anon_sym_string] = ACTIONS(1367), + [anon_sym_symbol] = ACTIONS(1367), + [anon_sym_object] = ACTIONS(1367), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [203] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1381), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59583,9 +59743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59597,20 +59757,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -59630,99 +59790,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [204] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(203), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1383), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59731,9 +59891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59745,20 +59905,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -59778,99 +59938,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [205] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(205), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1385), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -59879,9 +60039,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59893,20 +60053,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -59926,99 +60086,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [206] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(205), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(206), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1387), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60027,9 +60187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60041,20 +60201,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60074,99 +60234,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [207] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(206), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(207), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5097), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6867), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60175,9 +60335,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60189,20 +60349,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60222,99 +60382,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [208] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(207), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(208), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1389), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60323,9 +60483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60337,20 +60497,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60370,99 +60530,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [209] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(208), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(209), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1391), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60471,9 +60631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60485,20 +60645,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60518,55 +60678,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [210] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(209), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5095), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6862), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(210), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -60575,42 +60735,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60619,9 +60779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60633,20 +60793,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60666,99 +60826,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [211] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(210), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(211), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1393), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60767,9 +60927,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60781,20 +60941,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60814,99 +60974,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [212] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(211), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(212), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1395), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -60915,9 +61075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60929,20 +61089,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -60962,99 +61122,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), + [213] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), [sym_primary_expression] = STATE(2295), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(212), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(213), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1397), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -61063,9 +61223,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -61077,20 +61237,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -61110,230 +61270,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [sym_import] = STATE(4321), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6820), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7039), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2950), - [sym_comment] = STATE(213), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5079), - [sym_pattern] = STATE(5845), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3972), - [sym__type_query_member_expression_in_type_annotation] = STATE(4140), - [sym__type_query_call_expression_in_type_annotation] = STATE(4366), - [sym__type] = STATE(4144), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6588), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1349), - [anon_sym_export] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_typeof] = ACTIONS(1355), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1363), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_number] = ACTIONS(1375), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1377), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [sym_null] = ACTIONS(1375), - [sym_undefined] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(1385), - [anon_sym_number] = ACTIONS(1385), - [anon_sym_boolean] = ACTIONS(1385), - [anon_sym_string] = ACTIONS(1385), - [anon_sym_symbol] = ACTIONS(1385), - [anon_sym_object] = ACTIONS(1385), - [anon_sym_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(4230), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3248), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3230), + [sym_import] = STATE(4239), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3087), [sym_comment] = STATE(214), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(600), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(623), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1399), [anon_sym_export] = ACTIONS(1401), [anon_sym_STAR] = ACTIONS(113), @@ -61341,27 +61353,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1403), [anon_sym_LBRACE] = ACTIONS(1405), [anon_sym_typeof] = ACTIONS(1407), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1419), [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1423), [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1425), @@ -61373,7 +61385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1431), [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1431), [sym_false] = ACTIONS(1431), [sym_null] = ACTIONS(1431), @@ -61383,7 +61395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1439), [anon_sym_get] = ACTIONS(1401), [anon_sym_set] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1401), [anon_sym_public] = ACTIONS(1401), [anon_sym_private] = ACTIONS(1401), @@ -61396,88 +61408,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1441), [anon_sym_symbol] = ACTIONS(1441), [anon_sym_object] = ACTIONS(1441), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4192), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2475), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2486), + [sym_import] = STATE(4153), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(2853), [sym_comment] = STATE(215), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4702), + [sym__type_query_call_expression_in_type_annotation] = STATE(5466), + [sym__type] = STATE(4701), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(715), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1443), [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(113), @@ -61485,1725 +61497,1725 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1447), [anon_sym_LBRACE] = ACTIONS(1449), [anon_sym_typeof] = ACTIONS(1451), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1455), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1457), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_number] = ACTIONS(1463), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1465), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1463), - [sym_false] = ACTIONS(1463), - [sym_null] = ACTIONS(1463), - [sym_undefined] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(1463), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1465), + [sym_number] = ACTIONS(1467), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1469), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1467), + [sym_false] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), + [sym_undefined] = ACTIONS(1471), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1469), + [anon_sym_readonly] = ACTIONS(1473), [anon_sym_get] = ACTIONS(1445), [anon_sym_set] = ACTIONS(1445), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1445), [anon_sym_public] = ACTIONS(1445), [anon_sym_private] = ACTIONS(1445), [anon_sym_protected] = ACTIONS(1445), [anon_sym_override] = ACTIONS(1445), [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_number] = ACTIONS(1471), - [anon_sym_boolean] = ACTIONS(1471), - [anon_sym_string] = ACTIONS(1471), - [anon_sym_symbol] = ACTIONS(1471), - [anon_sym_object] = ACTIONS(1471), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4192), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2486), + [sym_import] = STATE(4333), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2769), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2468), [sym_comment] = STATE(216), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(567), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1475), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(732), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1477), + [anon_sym_export] = ACTIONS(1479), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1479), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1485), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1493), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_number] = ACTIONS(1463), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(1465), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1463), - [sym_false] = ACTIONS(1463), - [sym_null] = ACTIONS(1463), - [sym_undefined] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1503), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1509), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(1513), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1515), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1503), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1505), - [anon_sym_number] = ACTIONS(1505), - [anon_sym_boolean] = ACTIONS(1505), - [anon_sym_string] = ACTIONS(1505), - [anon_sym_symbol] = ACTIONS(1505), - [anon_sym_object] = ACTIONS(1505), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1519), + [anon_sym_number] = ACTIONS(1519), + [anon_sym_boolean] = ACTIONS(1519), + [anon_sym_string] = ACTIONS(1519), + [anon_sym_symbol] = ACTIONS(1519), + [anon_sym_object] = ACTIONS(1519), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4267), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2594), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(2851), + [sym_import] = STATE(4239), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3306), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3087), [sym_comment] = STATE(217), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4736), - [sym__type_query_call_expression_in_type_annotation] = STATE(5461), - [sym__type] = STATE(4737), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(671), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1507), - [anon_sym_export] = ACTIONS(1509), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_typeof] = ACTIONS(1515), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_typeof] = ACTIONS(1525), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1527), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_number] = ACTIONS(1531), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1531), - [sym_false] = ACTIONS(1531), - [sym_null] = ACTIONS(1531), - [sym_undefined] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_number] = ACTIONS(1431), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1435), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1431), + [sym_false] = ACTIONS(1431), + [sym_null] = ACTIONS(1431), + [sym_undefined] = ACTIONS(1531), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(1539), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1533), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1535), + [anon_sym_number] = ACTIONS(1535), + [anon_sym_boolean] = ACTIONS(1535), + [anon_sym_string] = ACTIONS(1535), + [anon_sym_symbol] = ACTIONS(1535), + [anon_sym_object] = ACTIONS(1535), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4267), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(2851), + [sym_import] = STATE(4333), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2468), [sym_comment] = STATE(218), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4736), - [sym__type_query_call_expression_in_type_annotation] = STATE(5461), - [sym__type] = STATE(4737), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(583), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1541), - [anon_sym_export] = ACTIONS(1543), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1493), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1547), + [anon_sym_using] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_number] = ACTIONS(1531), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1531), - [sym_false] = ACTIONS(1531), - [sym_null] = ACTIONS(1531), - [sym_undefined] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1509), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(1513), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1551), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1571), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1573), - [anon_sym_number] = ACTIONS(1573), - [anon_sym_boolean] = ACTIONS(1573), - [anon_sym_string] = ACTIONS(1573), - [anon_sym_symbol] = ACTIONS(1573), - [anon_sym_object] = ACTIONS(1573), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1555), + [anon_sym_number] = ACTIONS(1555), + [anon_sym_boolean] = ACTIONS(1555), + [anon_sym_string] = ACTIONS(1555), + [anon_sym_symbol] = ACTIONS(1555), + [anon_sym_object] = ACTIONS(1555), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4192), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2486), + [sym_import] = STATE(4239), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3087), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(775), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1575), - [anon_sym_export] = ACTIONS(1577), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(723), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1557), + [anon_sym_export] = ACTIONS(1559), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1581), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1579), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_number] = ACTIONS(1463), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1465), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1463), - [sym_false] = ACTIONS(1463), - [sym_null] = ACTIONS(1463), - [sym_undefined] = ACTIONS(1589), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_number] = ACTIONS(1431), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(1435), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1431), + [sym_false] = ACTIONS(1431), + [sym_null] = ACTIONS(1431), + [sym_undefined] = ACTIONS(1585), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_number] = ACTIONS(1593), - [anon_sym_boolean] = ACTIONS(1593), - [anon_sym_string] = ACTIONS(1593), - [anon_sym_symbol] = ACTIONS(1593), - [anon_sym_object] = ACTIONS(1593), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1587), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_number] = ACTIONS(1589), + [anon_sym_boolean] = ACTIONS(1589), + [anon_sym_string] = ACTIONS(1589), + [anon_sym_symbol] = ACTIONS(1589), + [anon_sym_object] = ACTIONS(1589), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4331), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2846), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3334), + [sym_import] = STATE(4239), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3257), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3087), [sym_comment] = STATE(220), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4736), - [sym__type_query_call_expression_in_type_annotation] = STATE(5461), - [sym__type] = STATE(4737), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(774), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1595), - [anon_sym_export] = ACTIONS(1597), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(768), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1591), + [anon_sym_export] = ACTIONS(1593), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [sym_null] = ACTIONS(1627), - [sym_undefined] = ACTIONS(1633), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1635), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_number] = ACTIONS(1637), - [anon_sym_boolean] = ACTIONS(1637), - [anon_sym_string] = ACTIONS(1637), - [anon_sym_symbol] = ACTIONS(1637), - [anon_sym_object] = ACTIONS(1637), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [221] = { - [sym_import] = STATE(4230), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3243), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3230), - [sym_comment] = STATE(221), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(584), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1639), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1645), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), + [anon_sym_typeof] = ACTIONS(1597), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1429), [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1617), [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1431), [sym_false] = ACTIONS(1431), [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1619), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1669), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_object] = ACTIONS(1671), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1621), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1623), + [anon_sym_number] = ACTIONS(1623), + [anon_sym_boolean] = ACTIONS(1623), + [anon_sym_string] = ACTIONS(1623), + [anon_sym_symbol] = ACTIONS(1623), + [anon_sym_object] = ACTIONS(1623), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [221] = { + [sym_import] = STATE(4307), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3282), + [sym_comment] = STATE(221), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4702), + [sym__type_query_call_expression_in_type_annotation] = STATE(5466), + [sym__type] = STATE(4701), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(607), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1625), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_typeof] = ACTIONS(1633), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1655), + [sym_number] = ACTIONS(1657), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(1661), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_null] = ACTIONS(1657), + [sym_undefined] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1665), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4230), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3230), + [sym_import] = STATE(4333), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2468), [sym_comment] = STATE(222), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(618), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1673), - [anon_sym_export] = ACTIONS(1675), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1669), + [anon_sym_export] = ACTIONS(1671), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1681), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1675), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1493), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1679), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1147), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1703), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_number] = ACTIONS(1509), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(1513), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_undefined] = ACTIONS(1683), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [anon_sym_object] = ACTIONS(1707), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1685), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1687), + [anon_sym_number] = ACTIONS(1687), + [anon_sym_boolean] = ACTIONS(1687), + [anon_sym_string] = ACTIONS(1687), + [anon_sym_symbol] = ACTIONS(1687), + [anon_sym_object] = ACTIONS(1687), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4230), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3230), + [sym_import] = STATE(4153), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(2853), [sym_comment] = STATE(223), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1709), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4702), + [sym__type_query_call_expression_in_type_annotation] = STATE(5466), + [sym__type] = STATE(4701), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(594), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1691), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1711), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1455), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1465), + [sym_number] = ACTIONS(1467), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(1469), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1467), + [sym_false] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), [sym_undefined] = ACTIONS(1717), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1691), [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), [anon_sym_any] = ACTIONS(1721), [anon_sym_number] = ACTIONS(1721), [anon_sym_boolean] = ACTIONS(1721), [anon_sym_string] = ACTIONS(1721), [anon_sym_symbol] = ACTIONS(1721), [anon_sym_object] = ACTIONS(1721), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7083), - [sym_string] = STATE(3203), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7089), + [sym_string] = STATE(3051), [sym_comment] = STATE(224), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5794), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(5100), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(5482), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(5101), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(5486), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1723), - [anon_sym_export] = ACTIONS(1445), + [anon_sym_export] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), [anon_sym_LBRACE] = ACTIONS(1725), [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1457), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1547), + [anon_sym_using] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1731), [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1151), [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(1025), + [sym_private_property_identifier] = ACTIONS(992), [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(188), + [sym_super] = ACTIONS(187), [sym_true] = ACTIONS(1153), [sym_false] = ACTIONS(1153), [sym_null] = ACTIONS(1153), [sym_undefined] = ACTIONS(1735), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1469), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), [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(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4614), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3397), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2090), + [sym_subscript_expression] = STATE(2090), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4972), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3088), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2177), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5098), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(657), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2090), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5100), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1739), [anon_sym_export] = ACTIONS(1741), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(1741), [anon_sym_namespace] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_typeof] = ACTIONS(1747), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(964), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(972), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1751), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1759), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1761), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(988), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(179), + [sym_number] = ACTIONS(181), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(994), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_undefined] = ACTIONS(1751), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(1753), [anon_sym_get] = ACTIONS(1741), [anon_sym_set] = ACTIONS(1741), - [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_QMARK] = ACTIONS(193), [anon_sym_declare] = ACTIONS(1741), [anon_sym_public] = ACTIONS(1741), [anon_sym_private] = ACTIONS(1741), [anon_sym_protected] = ACTIONS(1741), [anon_sym_override] = ACTIONS(1741), [anon_sym_module] = ACTIONS(1741), - [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(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [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(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_nested_identifier] = STATE(7246), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2100), - [sym_subscript_expression] = STATE(2100), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4968), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(3154), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_nested_identifier] = STATE(7252), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2173), + [sym_subscript_expression] = STATE(2173), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(3396), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(5025), - [sym_non_null_expression] = STATE(2100), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5098), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_type_arguments] = STATE(651), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6687), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1771), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(5027), + [sym_non_null_expression] = STATE(2173), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5100), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_type_arguments] = STATE(714), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6688), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1759), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_typeof] = ACTIONS(997), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_typeof] = ACTIONS(1765), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1767), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(1027), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_number] = ACTIONS(1777), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1779), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), [sym_undefined] = ACTIONS(1781), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1759), [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(194), - [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_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), [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(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2514), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2545), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(227), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), + [anon_sym_export] = ACTIONS(1691), [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1691), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1699), [anon_sym_in] = ACTIONS(1791), [anon_sym_of] = ACTIONS(1791), [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), + [anon_sym_using] = ACTIONS(1707), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63212,9 +63224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63226,15 +63238,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -63242,104 +63254,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [anon_sym_satisfies] = ACTIONS(1791), [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(228), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(1801), [anon_sym_type] = ACTIONS(1445), [anon_sym_as] = ACTIONS(1791), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63348,9 +63359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63362,21 +63373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -63395,85 +63406,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1445), [anon_sym_object] = ACTIONS(1445), [anon_sym_satisfies] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(229), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1509), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1539), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), [anon_sym_in] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1791), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63482,9 +63495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63496,100 +63509,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2696), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(230), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), + [anon_sym_export] = ACTIONS(1671), [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1671), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(1791), @@ -63597,15 +63609,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1791), [anon_sym_COLON] = ACTIONS(1791), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), @@ -63619,7 +63631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63638,109 +63650,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2742), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(231), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1479), [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1479), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1489), [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), + [anon_sym_using] = ACTIONS(1499), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63749,9 +63761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63763,117 +63775,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [anon_sym_satisfies] = ACTIONS(1791), [anon_sym_implements] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2847), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2810), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(232), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), + [anon_sym_export] = ACTIONS(1627), [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1627), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1637), [anon_sym_in] = ACTIONS(1791), [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), + [anon_sym_using] = ACTIONS(1647), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63882,8 +63894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), @@ -63896,15 +63908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -63912,98 +63924,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [anon_sym_satisfies] = ACTIONS(1791), [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3106), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(233), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_STAR] = ACTIONS(1839), [anon_sym_type] = ACTIONS(1401), [anon_sym_as] = ACTIONS(1791), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_in] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1791), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), @@ -64017,7 +64029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64036,13 +64048,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -64066,79 +64078,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3045), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3026), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(234), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), + [anon_sym_export] = ACTIONS(1559), [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1559), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), + [anon_sym_await] = ACTIONS(1567), [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_of] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), + [anon_sym_using] = ACTIONS(1575), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64147,9 +64159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64161,116 +64173,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3212), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3182), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(235), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), + [anon_sym_export] = ACTIONS(1593), [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1593), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), + [anon_sym_await] = ACTIONS(1601), [anon_sym_in] = ACTIONS(1791), - [anon_sym_of] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1791), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), + [anon_sym_using] = ACTIONS(1609), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64279,9 +64291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64293,88 +64305,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3297), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3299), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(236), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(1861), @@ -64382,26 +64394,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1791), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), + [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), + [anon_sym_using] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64410,9 +64422,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64424,20 +64436,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -64461,101 +64473,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(1449), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2920), + [sym_declaration] = STATE(1446), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2967), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(237), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5128), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5131), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), + [anon_sym_export] = ACTIONS(1627), [anon_sym_type] = ACTIONS(1863), [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(776), + [anon_sym_var] = ACTIONS(904), [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), + [anon_sym_class] = ACTIONS(934), [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(810), + [anon_sym_function] = ACTIONS(938), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -64563,123 +64575,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(1071), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2783), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2873), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(238), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5042), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5218), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), + [anon_sym_export] = ACTIONS(1627), [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_function] = ACTIONS(938), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_function] = ACTIONS(874), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -64687,123 +64699,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1885), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1213), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2935), + [sym_declaration] = STATE(1368), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2816), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1197), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1197), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1197), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(239), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1197), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(310), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5042), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5063), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_namespace] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_function] = ACTIONS(938), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(534), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -64811,123 +64823,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(1544), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2910), + [sym_declaration] = STATE(1177), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2783), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(240), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5044), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1895), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_namespace] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1913), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [241] = { + [sym_declaration] = STATE(1562), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(241), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4957), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1921), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1923), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1925), [anon_sym_function] = ACTIONS(75), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -64935,123 +65071,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [241] = { - [sym_declaration] = STATE(4988), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(5000), - [sym_lexical_declaration] = STATE(5000), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2939), + [242] = { + [sym_declaration] = STATE(1128), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2789), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(5000), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(5000), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(5000), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(241), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(5000), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(5000), - [sym_abstract_class_declaration] = STATE(5000), - [sym_module] = STATE(5000), - [sym_internal_module] = STATE(3030), - [sym_import_alias] = STATE(5000), - [sym_interface_declaration] = STATE(5000), - [sym_enum_declaration] = STATE(5000), - [sym_type_alias_declaration] = STATE(5000), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5088), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1204), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1204), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1204), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(242), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1204), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(323), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5044), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_namespace] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), [anon_sym_import] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_function] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(810), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65059,123 +65195,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1913), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_declaration] = STATE(1419), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2799), + [243] = { + [sym_declaration] = STATE(1521), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2809), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(242), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5061), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1618), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1618), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1618), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(243), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1618), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(411), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(4957), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1935), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1921), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_function] = ACTIONS(385), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_function] = ACTIONS(75), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65183,123 +65319,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1941), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_declaration] = STATE(6645), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2959), + [244] = { + [sym_declaration] = STATE(6649), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2958), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(243), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5216), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(6330), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(6330), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(6330), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(244), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(6330), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(3198), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5218), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1947), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1879), [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1881), [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(1951), + [anon_sym_async] = ACTIONS(1883), [anon_sym_function] = ACTIONS(874), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65307,123 +65443,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1885), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [anon_sym_abstract] = ACTIONS(884), [anon_sym_interface] = ACTIONS(886), [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_declaration] = STATE(1564), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2936), + [245] = { + [sym_declaration] = STATE(4990), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(4988), + [sym_lexical_declaration] = STATE(4988), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2908), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1580), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1580), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1580), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(244), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1580), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(442), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(4988), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(4988), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(4988), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(245), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(4988), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(4988), + [sym_abstract_class_declaration] = STATE(4988), + [sym_module] = STATE(4988), + [sym_internal_module] = STATE(3261), + [sym_import_alias] = STATE(4988), + [sym_interface_declaration] = STATE(4988), + [sym_enum_declaration] = STATE(4988), + [sym_type_alias_declaration] = STATE(4988), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5089), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1933), + [anon_sym_var] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(75), + [anon_sym_class] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1943), + [anon_sym_function] = ACTIONS(1945), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65431,123 +65567,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(1951), + [anon_sym_interface] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_declaration] = STATE(6357), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2788), + [246] = { + [sym_declaration] = STATE(1428), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2796), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(6327), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(6327), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(6327), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(245), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(6327), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(3097), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5216), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1344), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1344), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1344), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(246), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1344), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(384), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5063), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_namespace] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_function] = ACTIONS(874), + [anon_sym_class] = ACTIONS(530), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(534), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65555,123 +65691,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(548), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_declaration] = STATE(1327), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2945), + [247] = { + [sym_declaration] = STATE(4942), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(4988), + [sym_lexical_declaration] = STATE(4988), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2878), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1450), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1450), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1450), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(246), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1450), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(370), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5061), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(4988), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(4988), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(4988), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(247), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(4988), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(4988), + [sym_abstract_class_declaration] = STATE(4988), + [sym_module] = STATE(4988), + [sym_internal_module] = STATE(3261), + [sym_import_alias] = STATE(4988), + [sym_interface_declaration] = STATE(4988), + [sym_enum_declaration] = STATE(4988), + [sym_type_alias_declaration] = STATE(4988), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5089), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), + [anon_sym_export] = ACTIONS(1627), [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1935), - [anon_sym_var] = ACTIONS(351), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1933), + [anon_sym_var] = ACTIONS(1935), [anon_sym_let] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_function] = ACTIONS(385), + [anon_sym_class] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1943), + [anon_sym_function] = ACTIONS(1945), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65679,247 +65815,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1941), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [sym_declaration] = STATE(4940), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(5000), - [sym_lexical_declaration] = STATE(5000), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(5000), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(5000), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(5000), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(247), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(5000), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(5000), - [sym_abstract_class_declaration] = STATE(5000), - [sym_module] = STATE(5000), - [sym_internal_module] = STATE(3030), - [sym_import_alias] = STATE(5000), - [sym_interface_declaration] = STATE(5000), - [sym_enum_declaration] = STATE(5000), - [sym_type_alias_declaration] = STATE(5000), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5088), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_var] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_function] = ACTIONS(1919), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(1951), + [anon_sym_interface] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1955), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_declaration] = STATE(1342), - [sym_import] = STATE(4300), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2834), + [sym_declaration] = STATE(1341), + [sym_import] = STATE(4289), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2981), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_class_declaration] = STATE(1468), - [sym_function_expression] = STATE(3280), - [sym_function_declaration] = STATE(1468), - [sym_generator_function] = STATE(3280), - [sym_generator_function_declaration] = STATE(1468), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_class_declaration] = STATE(1331), + [sym_function_expression] = STATE(3008), + [sym_function_declaration] = STATE(1331), + [sym_generator_function] = STATE(3008), + [sym_generator_function_declaration] = STATE(1331), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(248), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_function_signature] = STATE(1468), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(344), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5128), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_function_signature] = STATE(1331), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(405), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5131), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), + [anon_sym_export] = ACTIONS(1627), [anon_sym_type] = ACTIONS(1863), [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(776), + [anon_sym_var] = ACTIONS(904), [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), + [anon_sym_class] = ACTIONS(934), [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(810), + [anon_sym_function] = ACTIONS(938), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -65927,101 +65939,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(249), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66036,7 +66048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66048,99 +66060,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(250), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66155,7 +66167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66167,64 +66179,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), @@ -66235,32 +66247,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66275,7 +66287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66287,98 +66299,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66393,7 +66405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66405,98 +66417,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(253), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(1245), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66511,7 +66523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66523,62 +66535,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(254), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1243), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_RPAREN] = ACTIONS(118), @@ -66589,32 +66601,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66629,7 +66641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66641,97 +66653,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(255), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66746,7 +66757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66758,96 +66769,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(256), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4096), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_EQ_GT] = ACTIONS(1203), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(257), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -66862,7 +66992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -66874,100 +67004,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(257), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4089), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_EQ] = ACTIONS(1240), + [258] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(258), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -66980,108 +67108,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(258), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [259] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(259), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -67096,7 +67225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67108,97 +67237,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(259), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [260] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2125), + [sym_subscript_expression] = STATE(2125), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4890), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7207), + [sym_string] = STATE(2646), + [sym_comment] = STATE(260), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2125), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1121), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [anon_sym_declare] = ACTIONS(1121), + [anon_sym_public] = ACTIONS(1165), + [anon_sym_private] = ACTIONS(1165), + [anon_sym_protected] = ACTIONS(1165), + [anon_sym_override] = ACTIONS(1167), + [anon_sym_module] = ACTIONS(1121), + [anon_sym_any] = ACTIONS(1121), + [anon_sym_number] = ACTIONS(1121), + [anon_sym_boolean] = ACTIONS(1121), + [anon_sym_string] = ACTIONS(1121), + [anon_sym_symbol] = ACTIONS(1121), + [anon_sym_object] = ACTIONS(1121), + [sym_html_comment] = ACTIONS(5), + }, + [261] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(261), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1321), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -67213,7 +67457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67225,96 +67469,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(260), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [262] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2125), + [sym_subscript_expression] = STATE(2125), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4890), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7311), + [sym_string] = STATE(2646), + [sym_comment] = STATE(262), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2125), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1121), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [anon_sym_declare] = ACTIONS(1121), + [anon_sym_public] = ACTIONS(1165), + [anon_sym_private] = ACTIONS(1165), + [anon_sym_protected] = ACTIONS(1165), + [anon_sym_override] = ACTIONS(1167), + [anon_sym_module] = ACTIONS(1121), + [anon_sym_any] = ACTIONS(1121), + [anon_sym_number] = ACTIONS(1121), + [anon_sym_boolean] = ACTIONS(1121), + [anon_sym_string] = ACTIONS(1121), + [anon_sym_symbol] = ACTIONS(1121), + [anon_sym_object] = ACTIONS(1121), + [sym_html_comment] = ACTIONS(5), + }, + [263] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(263), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -67329,7 +67689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67341,444 +67701,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [261] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(261), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [262] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4886), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7174), - [sym_string] = STATE(2644), - [sym_comment] = STATE(262), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2111), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(1121), - [sym_html_comment] = ACTIONS(5), - }, - [263] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4886), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7305), - [sym_string] = STATE(2644), - [sym_comment] = STATE(263), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2111), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(1121), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(264), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_SLASH] = ACTIONS(118), @@ -67793,7 +67805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67805,119 +67817,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5721), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(265), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -67939,100 +67951,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(266), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68054,100 +68066,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6082), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6074), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(267), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68169,100 +68181,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5720), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(268), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68284,215 +68296,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(269), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(270), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68513,101 +68410,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(271), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [270] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(270), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68628,101 +68525,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(272), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [271] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(271), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68743,101 +68640,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(273), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [272] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(5647), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(272), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68858,101 +68755,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [273] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(273), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, [274] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(5644), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(274), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -68974,669 +68986,783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(275), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2043), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2733), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(276), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5655), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2049), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5656), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(277), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5657), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2051), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(278), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5655), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2049), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(279), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2053), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym__formal_parameter] = STATE(6934), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(280), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4887), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(467), - [sym_required_parameter] = STATE(6427), - [sym_optional_parameter] = STATE(6427), - [sym__parameter_name] = STATE(4511), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(391), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(2055), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2047), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), + [sym_html_comment] = ACTIONS(5), + }, + [281] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(281), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(4891), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(453), + [sym_override_modifier] = STATE(465), + [sym_required_parameter] = STATE(6429), + [sym_optional_parameter] = STATE(6429), + [sym__parameter_name] = STATE(4545), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2021), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), @@ -69657,632 +69783,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5656), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(281), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5657), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2057), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), - [sym_html_comment] = ACTIONS(5), - }, [282] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5656), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5654), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(282), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5657), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5655), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(283), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5737), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5741), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2059), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(284), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(2061), [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), + [anon_sym_await] = ACTIONS(968), [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [anon_sym_extends] = ACTIONS(2061), [anon_sym_PIPE_RBRACE] = ACTIONS(2061), [sym__automatic_semicolon] = ACTIONS(2063), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(285), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [286] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(448), - [sym_variable_declaration] = STATE(448), - [sym_lexical_declaration] = STATE(448), - [sym_empty_statement] = STATE(448), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2526), + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(416), + [sym_variable_declaration] = STATE(416), + [sym_lexical_declaration] = STATE(416), + [sym_empty_statement] = STATE(416), + [sym_parenthesized_expression] = STATE(2108), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(5763), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(286), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(285), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2108), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2069), [anon_sym_LBRACE] = ACTIONS(2071), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_var] = ACTIONS(2073), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2077), @@ -70295,9 +70194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), + [anon_sym_class] = ACTIONS(1021), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(975), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70338,64 +70237,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, + [286] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(286), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, [287] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(419), - [sym_variable_declaration] = STATE(419), - [sym_lexical_declaration] = STATE(419), - [sym_empty_statement] = STATE(419), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2526), + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(457), + [sym_variable_declaration] = STATE(457), + [sym_lexical_declaration] = STATE(457), + [sym_empty_statement] = STATE(457), + [sym_parenthesized_expression] = STATE(2108), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(5763), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), [sym_comment] = STATE(287), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2108), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2069), [anon_sym_LBRACE] = ACTIONS(2071), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_var] = ACTIONS(2073), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2077), @@ -70408,9 +70420,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), + [anon_sym_class] = ACTIONS(1021), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(975), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70452,63 +70464,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(423), - [sym_variable_declaration] = STATE(423), - [sym_lexical_declaration] = STATE(423), - [sym_empty_statement] = STATE(423), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(5763), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2169), + [sym_subscript_expression] = STATE(2169), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5658), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(288), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2169), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_mapped_type_clause] = STATE(6949), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_readonly] = ACTIONS(2091), + [anon_sym_get] = ACTIONS(2091), + [anon_sym_set] = ACTIONS(2091), + [anon_sym_declare] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(2091), + [anon_sym_private] = ACTIONS(2091), + [anon_sym_protected] = ACTIONS(2091), + [anon_sym_override] = ACTIONS(2091), + [anon_sym_module] = ACTIONS(2091), + [anon_sym_any] = ACTIONS(2091), + [anon_sym_number] = ACTIONS(2091), + [anon_sym_boolean] = ACTIONS(2091), + [anon_sym_string] = ACTIONS(2091), + [anon_sym_symbol] = ACTIONS(2091), + [anon_sym_object] = ACTIONS(2091), + [sym_html_comment] = ACTIONS(5), + }, + [289] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(433), + [sym_variable_declaration] = STATE(433), + [sym_lexical_declaration] = STATE(433), + [sym_empty_statement] = STATE(433), + [sym_parenthesized_expression] = STATE(2108), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(289), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2108), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2069), [anon_sym_LBRACE] = ACTIONS(2071), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_var] = ACTIONS(2073), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2077), @@ -70521,9 +70646,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), + [anon_sym_class] = ACTIONS(1021), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(975), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70564,64 +70689,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(422), - [sym_variable_declaration] = STATE(422), - [sym_lexical_declaration] = STATE(422), - [sym_empty_statement] = STATE(422), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2526), + [290] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(419), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_empty_statement] = STATE(419), + [sym_parenthesized_expression] = STATE(2108), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(5763), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(289), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(290), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2108), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2069), [anon_sym_LBRACE] = ACTIONS(2071), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_var] = ACTIONS(2073), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2077), @@ -70634,9 +70759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), + [anon_sym_class] = ACTIONS(1021), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(975), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70677,64 +70802,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(439), - [sym_variable_declaration] = STATE(439), - [sym_lexical_declaration] = STATE(439), - [sym_empty_statement] = STATE(439), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(2526), + [291] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(415), + [sym_variable_declaration] = STATE(415), + [sym_lexical_declaration] = STATE(415), + [sym_empty_statement] = STATE(415), + [sym_parenthesized_expression] = STATE(2108), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(5763), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(290), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(5764), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(291), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2108), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2069), [anon_sym_LBRACE] = ACTIONS(2071), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_var] = ACTIONS(2073), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2077), @@ -70747,9 +70872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), + [anon_sym_class] = ACTIONS(1021), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(975), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70790,547 +70915,770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3082), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5658), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(291), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2155), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_mapped_type_clause] = STATE(6945), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(1409), + [292] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6627), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5771), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(292), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(2109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2107), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_readonly] = ACTIONS(2091), - [anon_sym_get] = ACTIONS(2091), - [anon_sym_set] = ACTIONS(2091), - [anon_sym_declare] = ACTIONS(2091), - [anon_sym_public] = ACTIONS(2091), - [anon_sym_private] = ACTIONS(2091), - [anon_sym_protected] = ACTIONS(2091), - [anon_sym_override] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_any] = ACTIONS(2091), - [anon_sym_number] = ACTIONS(2091), - [anon_sym_boolean] = ACTIONS(2091), - [anon_sym_string] = ACTIONS(2091), - [anon_sym_symbol] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3202), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), + [293] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2169), + [sym_subscript_expression] = STATE(2169), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), [sym__destructuring_pattern] = STATE(5658), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(292), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2155), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_pattern_repeat1] = STATE(5659), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2113), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(293), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2169), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_pattern_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(2112), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_namespace] = ACTIONS(2116), [anon_sym_LBRACE] = ACTIONS(2095), [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), [anon_sym_LBRACK] = ACTIONS(2099), [anon_sym_RBRACK] = ACTIONS(2101), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2107), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), + [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), }, - [293] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2868), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6614), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5770), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(293), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5771), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [294] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(294), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_statement_block] = STATE(333), + [sym_comment] = STATE(295), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), + [sym_html_comment] = ACTIONS(5), + }, + [296] = { + [sym_statement_block] = STATE(333), + [sym_comment] = STATE(296), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6627), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5771), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(297), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2122), + [anon_sym_RBRACK] = ACTIONS(2132), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), - [sym_html_comment] = ACTIONS(5), - }, - [294] = { - [sym_statement_block] = STATE(309), - [sym_comment] = STATE(294), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5654), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(295), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5580), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_pattern_repeat1] = STATE(5659), + [298] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5733), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(298), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5551), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_pattern_repeat1] = STATE(5742), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_RBRACK] = ACTIONS(2136), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -71351,210 +71699,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_statement_block] = STATE(309), - [sym_comment] = STATE(296), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [299] = { + [sym_comment] = STATE(299), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_STAR_STAR] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_instanceof] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2140), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2144), + [sym__ternary_qmark] = ACTIONS(2146), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(5731), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(297), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5549), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_pattern_repeat1] = STATE(5739), + [300] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(5653), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(300), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5583), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_pattern_repeat1] = STATE(5660), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2134), + [anon_sym_RBRACK] = ACTIONS(2101), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -71575,577 +71923,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2868), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6614), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5770), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(298), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5771), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), - [sym_html_comment] = ACTIONS(5), - }, - [299] = { - [sym_statement_block] = STATE(309), - [sym_comment] = STATE(299), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), - [sym_html_comment] = ACTIONS(5), - }, - [300] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2868), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6614), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_spread_element] = STATE(5770), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(300), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5771), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [301] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6627), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_spread_element] = STATE(5771), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(301), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2138), + [anon_sym_RBRACK] = ACTIONS(2148), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(980), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), - [sym_html_comment] = ACTIONS(5), - }, - [301] = { - [sym_comment] = STATE(301), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2144), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_STAR_STAR] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_instanceof] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2148), - [sym__ternary_qmark] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_statement_block] = STATE(333), [sym_comment] = STATE(302), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_extends] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [303] = { [sym_comment] = STATE(303), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), [anon_sym_default] = ACTIONS(2152), [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), + [anon_sym_as] = ACTIONS(2152), [anon_sym_namespace] = ACTIONS(2152), [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_COMMA] = ACTIONS(2152), [anon_sym_RBRACE] = ACTIONS(2152), [anon_sym_typeof] = ACTIONS(2152), [anon_sym_import] = ACTIONS(2152), @@ -72160,7 +72172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2152), [anon_sym_LPAREN] = ACTIONS(2152), [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2152), [anon_sym_while] = ACTIONS(2152), [anon_sym_do] = ACTIONS(2152), [anon_sym_try] = ACTIONS(2152), @@ -72174,38 +72186,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_SQUOTE] = ACTIONS(2152), [anon_sym_class] = ACTIONS(2152), [anon_sym_async] = ACTIONS(2152), [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), + [anon_sym_QMARK_DOT] = ACTIONS(2152), [anon_sym_new] = ACTIONS(2152), [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2152), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), [anon_sym_PLUS] = ACTIONS(2152), [anon_sym_DASH] = ACTIONS(2152), [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_STAR_STAR] = ACTIONS(2152), [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_instanceof] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(2152), [anon_sym_void] = ACTIONS(2152), [anon_sym_delete] = ACTIONS(2152), @@ -72239,173 +72251,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2152), [anon_sym_object] = ACTIONS(2152), [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), + [anon_sym_satisfies] = ACTIONS(2152), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2156), - [sym__ternary_qmark] = ACTIONS(2158), + [sym__automatic_semicolon] = ACTIONS(2154), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, [304] = { [sym_comment] = STATE(304), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2162), - [sym__ternary_qmark] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_DOT] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2158), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2158), + [anon_sym_QMARK_QMARK] = ACTIONS(2158), + [anon_sym_instanceof] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2160), + [sym__ternary_qmark] = ACTIONS(2162), [sym_html_comment] = ACTIONS(5), }, [305] = { [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), [anon_sym_GT] = ACTIONS(2166), [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), [anon_sym_AMP_AMP] = ACTIONS(2166), [anon_sym_PIPE_PIPE] = ACTIONS(2166), [anon_sym_GT_GT] = ACTIONS(2166), @@ -72414,12 +72426,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2166), [anon_sym_CARET] = ACTIONS(2166), [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), [anon_sym_PERCENT] = ACTIONS(2166), [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2164), [anon_sym_LT_EQ] = ACTIONS(2166), [anon_sym_EQ_EQ] = ACTIONS(2166), [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), @@ -72428,159 +72440,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2166), [anon_sym_QMARK_QMARK] = ACTIONS(2166), [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), [sym__automatic_semicolon] = ACTIONS(2168), - [sym__ternary_qmark] = ACTIONS(2168), + [sym__ternary_qmark] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6614), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), [sym_comment] = STATE(306), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5771), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2170), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_comment] = STATE(307), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), [anon_sym_STAR] = ACTIONS(2172), @@ -72690,166 +72591,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_comment] = STATE(308), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2144), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_STAR_STAR] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_instanceof] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2176), - [sym__ternary_qmark] = ACTIONS(2150), - [sym_html_comment] = ACTIONS(5), - }, - [309] = { - [sym_comment] = STATE(309), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), + [307] = { + [sym_comment] = STATE(307), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), [anon_sym_GT] = ACTIONS(2178), [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), [anon_sym_AMP_AMP] = ACTIONS(2178), [anon_sym_PIPE_PIPE] = ACTIONS(2178), [anon_sym_GT_GT] = ACTIONS(2178), @@ -72858,12 +72648,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2178), [anon_sym_CARET] = ACTIONS(2178), [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), [anon_sym_PERCENT] = ACTIONS(2178), [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2176), [anon_sym_LT_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), @@ -72872,95 +72662,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2178), [anon_sym_QMARK_QMARK] = ACTIONS(2178), [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [sym__ternary_qmark] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_comment] = STATE(310), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), + [308] = { + [sym_comment] = STATE(308), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), [anon_sym_GT] = ACTIONS(2184), [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), [anon_sym_AMP_AMP] = ACTIONS(2184), [anon_sym_PIPE_PIPE] = ACTIONS(2184), [anon_sym_GT_GT] = ACTIONS(2184), @@ -72969,12 +72759,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2184), [anon_sym_CARET] = ACTIONS(2184), [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), [anon_sym_PERCENT] = ACTIONS(2184), [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2184), [anon_sym_LT_EQ] = ACTIONS(2184), [anon_sym_EQ_EQ] = ACTIONS(2184), [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), @@ -72983,1380 +72773,1491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2184), [anon_sym_QMARK_QMARK] = ACTIONS(2184), [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym__automatic_semicolon] = ACTIONS(2186), [sym__ternary_qmark] = ACTIONS(2186), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_comment] = STATE(311), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym__ternary_qmark] = ACTIONS(2194), + [309] = { + [sym_comment] = STATE(309), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_STAR_STAR] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_QMARK_QMARK] = ACTIONS(2138), + [anon_sym_instanceof] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2188), + [sym__ternary_qmark] = ACTIONS(2190), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_comment] = STATE(312), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_case] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym__automatic_semicolon] = ACTIONS(2198), + [310] = { + [sym_comment] = STATE(310), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_DOT] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_QMARK_DOT] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2194), + [anon_sym_STAR_STAR] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_LT_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2194), + [anon_sym_QMARK_QMARK] = ACTIONS(2194), + [anon_sym_instanceof] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_satisfies] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2196), [sym__ternary_qmark] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_statement_block] = STATE(383), - [sym_comment] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), + [311] = { + [sym_comment] = STATE(311), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_QMARK_DOT] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_STAR_STAR] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_instanceof] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_satisfies] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), + [sym__ternary_qmark] = ACTIONS(2202), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_DOT] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR_STAR] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_instanceof] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2208), - [sym__ternary_qmark] = ACTIONS(2210), + [312] = { + [sym_comment] = STATE(312), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_STAR_STAR] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_instanceof] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2140), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2204), + [sym__ternary_qmark] = ACTIONS(2146), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_comment] = STATE(315), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_DOT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_QMARK_DOT] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR_STAR] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_instanceof] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_satisfies] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2216), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), + [313] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6627), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(313), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5773), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2206), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [314] = { + [sym_comment] = STATE(314), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2210), + [sym__ternary_qmark] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(315), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), }, [316] = { [sym_comment] = STATE(316), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2220), - [sym__ternary_qmark] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym__ternary_qmark] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_statement_block] = STATE(383), [sym_comment] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_DOT] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_QMARK_DOT] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_STAR_STAR] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_instanceof] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_satisfies] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2218), + [sym__ternary_qmark] = ACTIONS(2220), [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_statement_block] = STATE(383), [sym_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, [319] = { [sym_comment] = STATE(319), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_QMARK_DOT] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_instanceof] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_satisfies] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2230), - [sym__ternary_qmark] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2232), + [anon_sym_PIPE_PIPE] = ACTIONS(2232), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_LT_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2232), + [anon_sym_QMARK_QMARK] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_satisfies] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2236), [sym_html_comment] = ACTIONS(5), }, [320] = { [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_STAR_STAR] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_instanceof] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_satisfies] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_QMARK_DOT] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_satisfies] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2242), + [sym__ternary_qmark] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [321] = { + [sym_statement_block] = STATE(351), [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym__ternary_qmark] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [322] = { [sym_comment] = STATE(322), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2244), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_QMARK_DOT] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2244), - [anon_sym_QMARK_QMARK] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_satisfies] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2246), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [323] = { - [sym_comment] = STATE(323), [sym_identifier] = ACTIONS(2250), [anon_sym_export] = ACTIONS(2250), [anon_sym_STAR] = ACTIONS(2250), @@ -74466,943 +74367,1165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, + [323] = { + [sym_comment] = STATE(323), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_QMARK_DOT] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_QMARK_QMARK] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_satisfies] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym__automatic_semicolon] = ACTIONS(2258), + [sym__ternary_qmark] = ACTIONS(2258), + [sym_html_comment] = ACTIONS(5), + }, [324] = { - [sym_statement_block] = STATE(388), + [sym_statement_block] = STATE(362), [sym_comment] = STATE(324), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_statement_block] = STATE(388), + [sym_statement_block] = STATE(351), [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_statement_block] = STATE(388), + [sym_statement_block] = STATE(362), [sym_comment] = STATE(326), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [327] = { + [sym_statement_block] = STATE(351), [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_in] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_DOT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_QMARK_DOT] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2260), - [anon_sym_PIPE_PIPE] = ACTIONS(2260), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PERCENT] = ACTIONS(2260), - [anon_sym_STAR_STAR] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2260), - [anon_sym_QMARK_QMARK] = ACTIONS(2260), - [anon_sym_instanceof] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_satisfies] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym__automatic_semicolon] = ACTIONS(2262), - [sym__ternary_qmark] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [328] = { [sym_comment] = STATE(328), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_QMARK_DOT] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR_STAR] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_instanceof] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_satisfies] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2268), - [sym__ternary_qmark] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2272), + [sym__ternary_qmark] = ACTIONS(2274), [sym_html_comment] = ACTIONS(5), }, [329] = { + [sym_statement_block] = STATE(362), [sym_comment] = STATE(329), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2278), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, [330] = { [sym_comment] = STATE(330), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_QMARK_DOT] = ACTIONS(2282), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_satisfies] = ACTIONS(2282), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2280), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [331] = { [sym_comment] = STATE(331), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_QMARK_QMARK] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2288), [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, [332] = { [sym_comment] = STATE(332), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_STAR_STAR] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_instanceof] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2140), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2292), + [sym__ternary_qmark] = ACTIONS(2146), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), [anon_sym_GT] = ACTIONS(2294), [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), [anon_sym_AMP_AMP] = ACTIONS(2294), [anon_sym_PIPE_PIPE] = ACTIONS(2294), [anon_sym_GT_GT] = ACTIONS(2294), @@ -75411,12 +75534,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2294), [anon_sym_CARET] = ACTIONS(2294), [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), [anon_sym_PERCENT] = ACTIONS(2294), [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), [anon_sym_LT_EQ] = ACTIONS(2294), [anon_sym_EQ_EQ] = ACTIONS(2294), [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), @@ -75425,317 +75548,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2294), [anon_sym_QMARK_QMARK] = ACTIONS(2294), [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), [sym__automatic_semicolon] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [333] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(333), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [anon_sym_extends] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, [334] = { [sym_comment] = STATE(334), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_QMARK_DOT] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2300), - [anon_sym_QMARK_QMARK] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_satisfies] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, [335] = { [sym_comment] = STATE(335), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), [anon_sym_GT] = ACTIONS(2304), [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), [anon_sym_AMP_AMP] = ACTIONS(2304), [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_GT_GT] = ACTIONS(2304), @@ -75744,12 +75756,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2304), [anon_sym_CARET] = ACTIONS(2304), [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), [anon_sym_PERCENT] = ACTIONS(2304), [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), [anon_sym_LT_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), @@ -75758,95 +75770,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2304), [anon_sym_QMARK_QMARK] = ACTIONS(2304), [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2308), [sym_html_comment] = ACTIONS(5), }, [336] = { [sym_comment] = STATE(336), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), [anon_sym_GT] = ACTIONS(2310), [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), [anon_sym_AMP_AMP] = ACTIONS(2310), [anon_sym_PIPE_PIPE] = ACTIONS(2310), [anon_sym_GT_GT] = ACTIONS(2310), @@ -75855,12 +75867,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2310), [anon_sym_CARET] = ACTIONS(2310), [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), [anon_sym_PERCENT] = ACTIONS(2310), [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2310), [anon_sym_LT_EQ] = ACTIONS(2310), [anon_sym_EQ_EQ] = ACTIONS(2310), [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), @@ -75869,1442 +75881,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2310), [anon_sym_QMARK_QMARK] = ACTIONS(2310), [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym__automatic_semicolon] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2314), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [337] = { [sym_comment] = STATE(337), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2144), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_STAR_STAR] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_instanceof] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_QMARK_QMARK] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), [sym__automatic_semicolon] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2150), + [sym__ternary_qmark] = ACTIONS(2316), [sym_html_comment] = ACTIONS(5), }, [338] = { [sym_comment] = STATE(338), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2318), - [sym__ternary_qmark] = ACTIONS(2164), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_DOT] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_QMARK_DOT] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_STAR_STAR] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_instanceof] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_satisfies] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2220), [sym_html_comment] = ACTIONS(5), }, [339] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(5793), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(339), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_QMARK_DOT] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR_STAR] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_instanceof] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_satisfies] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2320), - [sym__ternary_qmark] = ACTIONS(2270), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_comment] = STATE(340), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2244), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_QMARK_DOT] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2244), - [anon_sym_QMARK_QMARK] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_satisfies] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2322), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [341] = { - [sym_comment] = STATE(341), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), - [sym_html_comment] = ACTIONS(5), - }, - [342] = { - [sym_comment] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_in] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_DOT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_QMARK_DOT] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2260), - [anon_sym_PIPE_PIPE] = ACTIONS(2260), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PERCENT] = ACTIONS(2260), - [anon_sym_STAR_STAR] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2260), - [anon_sym_QMARK_QMARK] = ACTIONS(2260), - [anon_sym_instanceof] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_satisfies] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym__automatic_semicolon] = ACTIONS(2262), - [sym__ternary_qmark] = ACTIONS(2262), - [sym_html_comment] = ACTIONS(5), - }, - [344] = { - [sym_comment] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), - [sym_html_comment] = ACTIONS(5), - }, - [345] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(5934), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(345), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5935), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [346] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(5814), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(346), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5815), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [347] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(6264), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(347), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(6265), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [348] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(348), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(5792), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(349), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5789), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5788), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_RPAREN] = ACTIONS(2324), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -77313,369 +76225,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_comment] = STATE(350), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_QMARK_DOT] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2300), - [anon_sym_QMARK_QMARK] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_satisfies] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_statement_block] = STATE(433), - [sym_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), + [340] = { + [sym_comment] = STATE(340), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_in] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_QMARK_DOT] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_STAR_STAR] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_LT_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2178), + [anon_sym_QMARK_QMARK] = ACTIONS(2178), + [anon_sym_instanceof] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), + [anon_sym_satisfies] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_comment] = STATE(352), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2342), - [sym__ternary_qmark] = ACTIONS(2298), + [341] = { + [sym_comment] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_DOT] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_QMARK_DOT] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2194), + [anon_sym_STAR_STAR] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_LT_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2194), + [anon_sym_QMARK_QMARK] = ACTIONS(2194), + [anon_sym_instanceof] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_satisfies] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(2174), + [342] = { + [sym_comment] = STATE(342), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), [anon_sym_type] = ACTIONS(2172), [anon_sym_as] = ACTIONS(2172), [anon_sym_namespace] = ACTIONS(2172), @@ -77689,7 +76491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2172), [anon_sym_const] = ACTIONS(2172), [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), [anon_sym_if] = ACTIONS(2172), [anon_sym_switch] = ACTIONS(2172), [anon_sym_for] = ACTIONS(2172), @@ -77705,6 +76506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2172), [anon_sym_throw] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), [anon_sym_yield] = ACTIONS(2172), [anon_sym_LBRACK] = ACTIONS(2172), [anon_sym_LTtemplate_GT] = ACTIONS(2172), @@ -77780,1007 +76582,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_comment] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym__ternary_qmark] = ACTIONS(2194), - [sym_html_comment] = ACTIONS(5), - }, - [355] = { - [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_DOT] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR_STAR] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_instanceof] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2210), - [sym_html_comment] = ACTIONS(5), - }, - [356] = { - [sym_comment] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_DOT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_QMARK_DOT] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR_STAR] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_instanceof] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_satisfies] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2354), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [357] = { - [sym_statement_block] = STATE(433), - [sym_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), - [sym_html_comment] = ACTIONS(5), - }, - [358] = { - [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_QMARK_DOT] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_instanceof] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_satisfies] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym__ternary_qmark] = ACTIONS(2232), - [sym_html_comment] = ACTIONS(5), - }, - [359] = { - [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [sym__automatic_semicolon] = ACTIONS(2168), - [sym__ternary_qmark] = ACTIONS(2168), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym__automatic_semicolon] = ACTIONS(2198), - [sym__ternary_qmark] = ACTIONS(2198), + [343] = { + [sym_comment] = STATE(343), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(361), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [344] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(344), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_STAR_STAR] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_instanceof] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_satisfies] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2364), - [sym__ternary_qmark] = ACTIONS(2240), + [345] = { + [sym_comment] = STATE(345), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2336), + [sym__ternary_qmark] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2366), + [346] = { + [sym_comment] = STATE(346), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), + [anon_sym_as] = ACTIONS(2152), [anon_sym_namespace] = ACTIONS(2152), [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_COMMA] = ACTIONS(2152), [anon_sym_RBRACE] = ACTIONS(2152), [anon_sym_typeof] = ACTIONS(2152), [anon_sym_import] = ACTIONS(2152), @@ -78789,13 +76931,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2152), [anon_sym_const] = ACTIONS(2152), [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), [anon_sym_if] = ACTIONS(2152), [anon_sym_switch] = ACTIONS(2152), [anon_sym_for] = ACTIONS(2152), [anon_sym_LPAREN] = ACTIONS(2152), [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2152), [anon_sym_while] = ACTIONS(2152), [anon_sym_do] = ACTIONS(2152), [anon_sym_try] = ACTIONS(2152), @@ -78805,41 +76946,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2152), [anon_sym_throw] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_SQUOTE] = ACTIONS(2152), [anon_sym_class] = ACTIONS(2152), [anon_sym_async] = ACTIONS(2152), [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), + [anon_sym_QMARK_DOT] = ACTIONS(2152), [anon_sym_new] = ACTIONS(2152), [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2152), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), [anon_sym_PLUS] = ACTIONS(2152), [anon_sym_DASH] = ACTIONS(2152), [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_STAR_STAR] = ACTIONS(2152), [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_instanceof] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(2152), [anon_sym_void] = ACTIONS(2152), [anon_sym_delete] = ACTIONS(2152), @@ -78873,1161 +77015,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2152), [anon_sym_object] = ACTIONS(2152), [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), + [anon_sym_satisfies] = ACTIONS(2152), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2368), - [sym__ternary_qmark] = ACTIONS(2158), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2244), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_QMARK_DOT] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2244), - [anon_sym_QMARK_QMARK] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_satisfies] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [365] = { - [sym_comment] = STATE(365), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2374), - [sym__ternary_qmark] = ACTIONS(2222), - [sym_html_comment] = ACTIONS(5), - }, - [366] = { - [sym_comment] = STATE(366), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_QMARK_QMARK] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym_html_comment] = ACTIONS(5), - }, - [367] = { - [sym_statement_block] = STATE(433), - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_QMARK_DOT] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_AMP_AMP] = ACTIONS(2126), - [anon_sym_PIPE_PIPE] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_STAR_STAR] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_instanceof] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_satisfies] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym__automatic_semicolon] = ACTIONS(2130), - [sym__ternary_qmark] = ACTIONS(2130), - [sym_html_comment] = ACTIONS(5), - }, - [368] = { - [sym_comment] = STATE(368), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_QMARK_DOT] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR_STAR] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_instanceof] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_satisfies] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2378), - [sym__ternary_qmark] = ACTIONS(2270), - [sym_html_comment] = ACTIONS(5), - }, - [369] = { - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2382), - [sym__ternary_qmark] = ACTIONS(2278), + [sym__automatic_semicolon] = ACTIONS(2154), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_comment] = STATE(370), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), + [347] = { + [sym_comment] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2140), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_STAR_STAR] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_instanceof] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2140), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(2146), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_comment] = STATE(371), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym__ternary_qmark] = ACTIONS(2164), + [348] = { + [sym_comment] = STATE(348), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_comment] = STATE(372), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [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_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2384), - [sym__ternary_qmark] = ACTIONS(2158), + [349] = { + [sym_statement_block] = STATE(428), + [sym_comment] = STATE(349), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2386), - [sym__ternary_qmark] = ACTIONS(2222), + [350] = { + [sym_statement_block] = STATE(428), + [sym_comment] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), + [351] = { + [sym_comment] = STATE(351), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), [anon_sym_GT] = ACTIONS(2294), [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), [anon_sym_AMP_AMP] = ACTIONS(2294), [anon_sym_PIPE_PIPE] = ACTIONS(2294), [anon_sym_GT_GT] = ACTIONS(2294), @@ -80036,12 +77518,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2294), [anon_sym_CARET] = ACTIONS(2294), [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), [anon_sym_PERCENT] = ACTIONS(2294), [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2294), [anon_sym_LT_EQ] = ACTIONS(2294), [anon_sym_EQ_EQ] = ACTIONS(2294), [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), @@ -80050,781 +77532,1111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2294), [anon_sym_QMARK_QMARK] = ACTIONS(2294), [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2390), - [sym__ternary_qmark] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_comment] = STATE(375), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_STAR_STAR] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_instanceof] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_satisfies] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2392), - [sym__ternary_qmark] = ACTIONS(2240), + [352] = { + [sym_comment] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_DOT] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2158), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2158), + [anon_sym_QMARK_QMARK] = ACTIONS(2158), + [anon_sym_instanceof] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2346), + [sym__ternary_qmark] = ACTIONS(2162), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2144), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_STAR_STAR] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_instanceof] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2394), - [sym__ternary_qmark] = ACTIONS(2150), + [353] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(353), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_QMARK_DOT] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_instanceof] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_satisfies] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2396), - [sym__ternary_qmark] = ACTIONS(2232), + [354] = { + [sym_comment] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2350), + [sym__ternary_qmark] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2400), - [sym__ternary_qmark] = ACTIONS(2314), + [355] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(5838), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(355), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5839), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2352), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), + [356] = { + [sym_comment] = STATE(356), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_QMARK_QMARK] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2402), - [sym__ternary_qmark] = ACTIONS(2164), + [357] = { + [sym_comment] = STATE(357), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2356), + [sym__ternary_qmark] = ACTIONS(2228), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(6187), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(381), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(6186), + [358] = { + [sym_comment] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2232), + [anon_sym_PIPE_PIPE] = ACTIONS(2232), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_LT_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2232), + [anon_sym_QMARK_QMARK] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_satisfies] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2360), + [sym__ternary_qmark] = ACTIONS(2236), + [sym_html_comment] = ACTIONS(5), + }, + [359] = { + [sym_statement_block] = STATE(428), + [sym_comment] = STATE(359), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_QMARK_DOT] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PERCENT] = ACTIONS(2122), + [anon_sym_STAR_STAR] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ] = ACTIONS(2122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ] = ACTIONS(2122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2122), + [anon_sym_QMARK_QMARK] = ACTIONS(2122), + [anon_sym_instanceof] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_satisfies] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym__automatic_semicolon] = ACTIONS(2128), + [sym__ternary_qmark] = ACTIONS(2128), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_comment] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_QMARK_DOT] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_satisfies] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2366), + [sym__ternary_qmark] = ACTIONS(2244), + [sym_html_comment] = ACTIONS(5), + }, + [361] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(5809), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(361), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5816), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2368), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -80833,191 +78645,1291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_comment] = STATE(382), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_as] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_QMARK_DOT] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), + [362] = { + [sym_comment] = STATE(362), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_comment] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2372), + [sym__ternary_qmark] = ACTIONS(2274), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_QMARK_DOT] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_STAR_STAR] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_instanceof] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_satisfies] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), + [sym__ternary_qmark] = ACTIONS(2202), + [sym_html_comment] = ACTIONS(5), + }, + [365] = { + [sym_comment] = STATE(365), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_STAR_STAR] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_QMARK_QMARK] = ACTIONS(2138), + [anon_sym_instanceof] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2190), + [sym_html_comment] = ACTIONS(5), + }, + [366] = { + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_comment] = STATE(367), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2282), + [sym_html_comment] = ACTIONS(5), + }, + [368] = { + [sym_comment] = STATE(368), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2290), + [sym_html_comment] = ACTIONS(5), + }, + [369] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(369), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(2057), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5001), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_accessibility_modifier] = STATE(461), + [sym_override_modifier] = STATE(463), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(1994), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_satisfies] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2252), - [sym__ternary_qmark] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), + [370] = { + [sym_comment] = STATE(370), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2300), + [sym_html_comment] = ACTIONS(5), + }, + [371] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2743), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(6091), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(371), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(6092), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_comment] = STATE(372), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_DOT] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_QMARK_DOT] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2194), + [anon_sym_STAR_STAR] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_LT_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2194), + [anon_sym_QMARK_QMARK] = ACTIONS(2194), + [anon_sym_instanceof] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_satisfies] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2198), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_comment] = STATE(373), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), [anon_sym_GT] = ACTIONS(2178), [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), [anon_sym_AMP_AMP] = ACTIONS(2178), [anon_sym_PIPE_PIPE] = ACTIONS(2178), [anon_sym_GT_GT] = ACTIONS(2178), @@ -81026,12 +79938,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2178), [anon_sym_CARET] = ACTIONS(2178), [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), [anon_sym_PERCENT] = ACTIONS(2178), [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2176), [anon_sym_LT_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), @@ -81040,204 +79952,644 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2178), [anon_sym_QMARK_QMARK] = ACTIONS(2178), [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(384), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [374] = { + [sym_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_QMARK_QMARK] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2768), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(6270), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(375), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(6271), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [anon_sym_extends] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_comment] = STATE(385), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), + [376] = { + [sym_comment] = STATE(376), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_QMARK_DOT] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_STAR_STAR] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_instanceof] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_satisfies] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), + [sym__ternary_qmark] = ACTIONS(2202), + [sym_html_comment] = ACTIONS(5), + }, + [377] = { + [sym_comment] = STATE(377), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_DOT] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2158), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2158), + [anon_sym_QMARK_QMARK] = ACTIONS(2158), + [anon_sym_instanceof] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2162), + [sym_html_comment] = ACTIONS(5), + }, + [378] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2402), + [sym__ternary_qmark] = ACTIONS(2308), + [sym_html_comment] = ACTIONS(5), + }, + [379] = { + [sym_comment] = STATE(379), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), [anon_sym_GT] = ACTIONS(2166), [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), [anon_sym_AMP_AMP] = ACTIONS(2166), [anon_sym_PIPE_PIPE] = ACTIONS(2166), [anon_sym_GT_GT] = ACTIONS(2166), @@ -81246,12 +80598,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2166), [anon_sym_CARET] = ACTIONS(2166), [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), [anon_sym_PERCENT] = ACTIONS(2166), [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2164), [anon_sym_LT_EQ] = ACTIONS(2166), [anon_sym_EQ_EQ] = ACTIONS(2166), [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), @@ -81260,52 +80612,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2166), [anon_sym_QMARK_QMARK] = ACTIONS(2166), [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [sym__automatic_semicolon] = ACTIONS(2168), - [sym__ternary_qmark] = ACTIONS(2168), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2404), + [sym__ternary_qmark] = ACTIONS(2170), + [sym_html_comment] = ACTIONS(5), + }, + [380] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3022), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(380), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(381), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_comment] = STATE(382), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_DOT] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_QMARK_DOT] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_STAR_STAR] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_instanceof] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_satisfies] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2406), + [sym__ternary_qmark] = ACTIONS(2220), + [sym_html_comment] = ACTIONS(5), + }, + [383] = { + [sym_comment] = STATE(383), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2228), + [sym_html_comment] = ACTIONS(5), + }, + [384] = { + [sym_comment] = STATE(384), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_QMARK_DOT] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_QMARK_QMARK] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_satisfies] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym__automatic_semicolon] = ACTIONS(2258), + [sym__ternary_qmark] = ACTIONS(2258), + [sym_html_comment] = ACTIONS(5), + }, + [385] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(385), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, [386] = { [sym_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), [anon_sym_type] = ACTIONS(2172), [anon_sym_as] = ACTIONS(2172), [anon_sym_namespace] = ACTIONS(2172), @@ -81319,6 +81331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2172), [anon_sym_const] = ACTIONS(2172), [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), [anon_sym_if] = ACTIONS(2172), [anon_sym_switch] = ACTIONS(2172), [anon_sym_for] = ACTIONS(2172), @@ -81334,7 +81347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2172), [anon_sym_throw] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), [anon_sym_yield] = ACTIONS(2172), [anon_sym_LBRACK] = ACTIONS(2172), [anon_sym_LTtemplate_GT] = ACTIONS(2172), @@ -81412,1069 +81424,1949 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [387] = { [sym_comment] = STATE(387), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_in] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_DOT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_QMARK_DOT] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2260), - [anon_sym_PIPE_PIPE] = ACTIONS(2260), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PERCENT] = ACTIONS(2260), - [anon_sym_STAR_STAR] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2260), - [anon_sym_QMARK_QMARK] = ACTIONS(2260), - [anon_sym_instanceof] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_satisfies] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym__automatic_semicolon] = ACTIONS(2262), - [sym__ternary_qmark] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, [388] = { [sym_comment] = STATE(388), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, [389] = { [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_QMARK_DOT] = ACTIONS(2282), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_satisfies] = ACTIONS(2282), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2406), - [sym__ternary_qmark] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2232), + [anon_sym_PIPE_PIPE] = ACTIONS(2232), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_LT_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2232), + [anon_sym_QMARK_QMARK] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_satisfies] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2236), [sym_html_comment] = ACTIONS(5), }, [390] = { [sym_comment] = STATE(390), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_DOT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_QMARK_DOT] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR_STAR] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_instanceof] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_satisfies] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2408), - [sym__ternary_qmark] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_QMARK_DOT] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_satisfies] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2244), [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), [sym_comment] = STATE(391), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(2040), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(4998), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_accessibility_modifier] = STATE(418), - [sym_override_modifier] = STATE(471), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2274), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(6190), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(392), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(6189), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2412), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2414), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [392] = { - [sym_comment] = STATE(392), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_DOT] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR_STAR] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_instanceof] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2416), - [sym__ternary_qmark] = ACTIONS(2210), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [393] = { [sym_comment] = STATE(393), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, [394] = { [sym_comment] = STATE(394), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_case] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym__automatic_semicolon] = ACTIONS(2198), - [sym__ternary_qmark] = ACTIONS(2198), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_as] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2184), + [anon_sym_DOT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_QMARK_DOT] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_STAR_STAR] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_instanceof] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_satisfies] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), [sym_comment] = STATE(395), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2290), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_comment] = STATE(396), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_STAR_STAR] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_QMARK_QMARK] = ACTIONS(2138), + [anon_sym_instanceof] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2424), + [sym__ternary_qmark] = ACTIONS(2190), + [sym_html_comment] = ACTIONS(5), + }, + [397] = { + [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_as] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_QMARK_DOT] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2152), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_STAR_STAR] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_instanceof] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [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_abstract] = ACTIONS(2152), + [anon_sym_satisfies] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2154), + [sym__ternary_qmark] = ACTIONS(2154), + [sym_html_comment] = ACTIONS(5), + }, + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), + [sym_html_comment] = ACTIONS(5), + }, + [399] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2561), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(399), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [400] = { + [sym_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym__ternary_qmark] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [401] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(401), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2692), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(5832), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(396), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(5833), + [402] = { + [sym_comment] = STATE(402), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym__ternary_qmark] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [403] = { + [sym_comment] = STATE(403), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_as] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2184), + [anon_sym_DOT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_QMARK_DOT] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_STAR_STAR] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_instanceof] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_satisfies] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [404] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(5937), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(404), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [aux_sym_array_repeat1] = STATE(5939), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2322), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_RPAREN] = ACTIONS(2426), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -82483,108 +83375,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2706), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(6085), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(397), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [aux_sym_array_repeat1] = STATE(6086), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2326), + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_QMARK_DOT] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_QMARK_QMARK] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_satisfies] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym__automatic_semicolon] = ACTIONS(2258), + [sym__ternary_qmark] = ACTIONS(2258), + [sym_html_comment] = ACTIONS(5), + }, + [406] = { + [sym_comment] = STATE(406), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2430), + [sym__ternary_qmark] = ACTIONS(2308), + [sym_html_comment] = ACTIONS(5), + }, + [407] = { + [sym_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_QMARK_DOT] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_LT_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), + [anon_sym_GT_EQ] = ACTIONS(2270), + [anon_sym_QMARK_QMARK] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_satisfies] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2432), + [sym__ternary_qmark] = ACTIONS(2274), + [sym_html_comment] = ACTIONS(5), + }, + [408] = { + [sym_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_DOT] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_QMARK_DOT] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2194), + [anon_sym_STAR_STAR] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_LT_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ] = ACTIONS(2194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ] = ACTIONS(2194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2194), + [anon_sym_QMARK_QMARK] = ACTIONS(2194), + [anon_sym_instanceof] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_satisfies] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym__ternary_qmark] = ACTIONS(2198), + [sym_html_comment] = ACTIONS(5), + }, + [409] = { + [sym_import] = STATE(4260), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(409), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2422), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -82593,1679 +83922,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_comment] = STATE(398), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2314), - [sym_html_comment] = ACTIONS(5), - }, - [399] = { - [sym_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_QMARK_QMARK] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym_html_comment] = ACTIONS(5), - }, - [400] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2890), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(400), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [401] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(401), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [402] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_QMARK_DOT] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2300), - [anon_sym_QMARK_QMARK] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_satisfies] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym_html_comment] = ACTIONS(5), - }, - [403] = { - [sym_comment] = STATE(403), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2426), - [sym__ternary_qmark] = ACTIONS(2278), - [sym_html_comment] = ACTIONS(5), - }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_QMARK_DOT] = ACTIONS(2282), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_satisfies] = ACTIONS(2282), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(405), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [410] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3022), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(410), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym__ternary_qmark] = ACTIONS(2164), - [sym_html_comment] = ACTIONS(5), - }, - [407] = { - [sym_import] = STATE(4233), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(407), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [408] = { - [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_DOT] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR_STAR] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_instanceof] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2434), - [sym__ternary_qmark] = ACTIONS(2210), - [sym_html_comment] = ACTIONS(5), - }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_QMARK_DOT] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2310), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_satisfies] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(2314), - [sym_html_comment] = ACTIONS(5), - }, - [410] = { - [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_QMARK_QMARK] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [411] = { - [sym_import] = STATE(4251), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), [sym_comment] = STATE(411), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_QMARK_DOT] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_QMARK_QMARK] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_satisfies] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym__automatic_semicolon] = ACTIONS(2258), + [sym__ternary_qmark] = ACTIONS(2258), [sym_html_comment] = ACTIONS(5), }, [412] = { - [sym_import] = STATE(4258), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), [sym_comment] = STATE(412), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_comment] = STATE(413), [ts_builtin_sym_end] = ACTIONS(2252), [sym_identifier] = ACTIONS(2250), [anon_sym_export] = ACTIONS(2250), @@ -84373,608 +84276,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, + [413] = { + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, [414] = { [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym__ternary_qmark] = ACTIONS(2164), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_as] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2184), + [anon_sym_DOT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_QMARK_DOT] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_STAR_STAR] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_instanceof] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_satisfies] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), [sym_html_comment] = ACTIONS(5), }, [415] = { - [sym_import] = STATE(4159), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(415), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(4235), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(416), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [417] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_QMARK_DOT] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2300), - [anon_sym_QMARK_QMARK] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_satisfies] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym_html_comment] = ACTIONS(5), - }, - [418] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(418), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5068), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_override_modifier] = STATE(463), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2446), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2448), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [419] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(474), - [sym_empty_statement] = STATE(474), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2526), + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(475), + [sym_empty_statement] = STATE(475), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(419), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -84984,10 +84560,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -85009,299 +84585,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(4233), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(420), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_comment] = STATE(421), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(2452), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LTtemplate_GT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2452), - [anon_sym_void] = ACTIONS(2452), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2452), - [sym_number] = ACTIONS(2452), - [sym_private_property_identifier] = ACTIONS(2452), - [sym_this] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_true] = ACTIONS(2452), - [sym_false] = ACTIONS(2452), - [sym_null] = ACTIONS(2452), - [sym_undefined] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(473), - [sym_empty_statement] = STATE(473), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2526), + [416] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(476), + [sym_empty_statement] = STATE(476), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(422), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(416), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -85311,10 +84669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -85336,94 +84694,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(472), - [sym_empty_statement] = STATE(472), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2526), + [417] = { + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_as] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_COMMA] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_in] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_QMARK_DOT] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2208), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_STAR_STAR] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2208), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_instanceof] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_satisfies] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym__ternary_qmark] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_import] = STATE(4243), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2561), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(423), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -85445,442 +84912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6820), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(424), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5845), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_comment] = STATE(425), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(2454), - [anon_sym_import] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(2454), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LTtemplate_GT] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_using] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2454), - [anon_sym_delete] = ACTIONS(2454), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_true] = ACTIONS(2454), - [sym_false] = ACTIONS(2454), - [sym_null] = ACTIONS(2454), - [sym_undefined] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(215), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_QMARK_DOT] = ACTIONS(2282), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_satisfies] = ACTIONS(2282), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2456), - [sym__ternary_qmark] = ACTIONS(2286), - [sym_html_comment] = ACTIONS(5), - }, - [427] = { - [sym_import] = STATE(4233), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(427), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -85899,433 +84930,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_QMARK_DOT] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_instanceof] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_satisfies] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(2232), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_import] = STATE(4332), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2890), + [419] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(472), + [sym_empty_statement] = STATE(472), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(429), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(419), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2244), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_QMARK_DOT] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2244), - [anon_sym_QMARK_QMARK] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_satisfies] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2248), + [420] = { + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(420), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(431), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_override_modifier] = STATE(464), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [421] = { + [sym_import] = STATE(4260), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(421), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2446), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6830), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(422), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5846), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(111), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), [anon_sym_public] = ACTIONS(111), [anon_sym_private] = ACTIONS(111), [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1177), + [anon_sym_override] = ACTIONS(111), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -86335,162 +85366,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(2164), + [423] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_DOT] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2158), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ] = ACTIONS(2158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ] = ACTIONS(2158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2158), + [anon_sym_QMARK_QMARK] = ACTIONS(2158), + [anon_sym_instanceof] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_satisfies] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2448), + [sym__ternary_qmark] = ACTIONS(2162), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), + [424] = { + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2450), + [sym__ternary_qmark] = ACTIONS(2170), + [sym_html_comment] = ACTIONS(5), + }, + [425] = { + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_QMARK_DOT] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_satisfies] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2244), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2952), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_spread_element] = STATE(5771), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(426), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2176), [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), [anon_sym_GT] = ACTIONS(2178), [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), [anon_sym_AMP_AMP] = ACTIONS(2178), [anon_sym_PIPE_PIPE] = ACTIONS(2178), [anon_sym_GT_GT] = ACTIONS(2178), @@ -86499,12 +85857,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2178), [anon_sym_CARET] = ACTIONS(2178), [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), [anon_sym_PERCENT] = ACTIONS(2178), [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2176), [anon_sym_LT_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), @@ -86513,48 +85871,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2178), [anon_sym_QMARK_QMARK] = ACTIONS(2178), [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym__ternary_qmark] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_comment] = STATE(434), + [428] = { + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_comment] = STATE(429), [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), @@ -86662,499 +86129,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_QMARK_DOT] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_instanceof] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_satisfies] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [sym__automatic_semicolon] = ACTIONS(2168), - [sym__ternary_qmark] = ACTIONS(2168), - [sym_html_comment] = ACTIONS(5), - }, - [436] = { - [sym_comment] = STATE(436), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2452), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LTtemplate_GT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2452), - [anon_sym_void] = ACTIONS(2452), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2452), - [sym_number] = ACTIONS(2452), - [sym_private_property_identifier] = ACTIONS(2452), - [sym_this] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_true] = ACTIONS(2452), - [sym_false] = ACTIONS(2452), - [sym_null] = ACTIONS(2452), - [sym_undefined] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [437] = { - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_DOT] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_QMARK_DOT] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR_STAR] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_instanceof] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_satisfies] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [438] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_assignment_pattern] = STATE(6820), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2146), - [sym_subscript_expression] = STATE(2146), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(5599), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(438), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5845), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2146), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(999), + [430] = { + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(430), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2047), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(989), - [anon_sym_readonly] = ACTIONS(989), - [anon_sym_get] = ACTIONS(989), - [anon_sym_set] = ACTIONS(989), - [anon_sym_declare] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_override] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_any] = ACTIONS(989), - [anon_sym_number] = ACTIONS(989), - [anon_sym_boolean] = ACTIONS(989), - [anon_sym_string] = ACTIONS(989), - [anon_sym_symbol] = ACTIONS(989), - [anon_sym_object] = ACTIONS(989), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(475), - [sym_empty_statement] = STATE(475), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2526), + [431] = { + [sym_import] = STATE(4156), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(431), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2460), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_QMARK_DOT] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_STAR_STAR] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_QMARK_QMARK] = ACTIONS(2138), + [anon_sym_instanceof] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_satisfies] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2462), + [sym__ternary_qmark] = ACTIONS(2190), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(477), + [sym_empty_statement] = STATE(477), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(439), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(433), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -87164,10 +86522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -87189,224 +86547,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [440] = { - [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(2222), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2868), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_spread_element] = STATE(5770), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(441), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -87425,344 +86565,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2186), + [434] = { + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2194), + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(4235), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(444), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2480), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [436] = { + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(436), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [437] = { + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(437), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_assignment_pattern] = STATE(6830), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(5602), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(438), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5846), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2141), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(976), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_any] = ACTIONS(956), + [anon_sym_number] = ACTIONS(956), + [anon_sym_boolean] = ACTIONS(956), + [anon_sym_string] = ACTIONS(956), + [anon_sym_symbol] = ACTIONS(956), + [anon_sym_object] = ACTIONS(956), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2366), + [439] = { + [sym_import] = STATE(4204), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(439), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_import] = STATE(4243), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(440), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), + [anon_sym_as] = ACTIONS(2152), [anon_sym_namespace] = ACTIONS(2152), [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_COMMA] = ACTIONS(2152), [anon_sym_RBRACE] = ACTIONS(2152), [anon_sym_typeof] = ACTIONS(2152), [anon_sym_import] = ACTIONS(2152), @@ -87776,7 +87352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2152), [anon_sym_LPAREN] = ACTIONS(2152), [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2152), [anon_sym_while] = ACTIONS(2152), [anon_sym_do] = ACTIONS(2152), [anon_sym_try] = ACTIONS(2152), @@ -87789,38 +87365,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_SQUOTE] = ACTIONS(2152), [anon_sym_class] = ACTIONS(2152), [anon_sym_async] = ACTIONS(2152), [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), + [anon_sym_QMARK_DOT] = ACTIONS(2152), [anon_sym_new] = ACTIONS(2152), [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2152), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), [anon_sym_PLUS] = ACTIONS(2152), [anon_sym_DASH] = ACTIONS(2152), [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_STAR_STAR] = ACTIONS(2152), [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2152), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_instanceof] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(2152), [anon_sym_void] = ACTIONS(2152), [anon_sym_delete] = ACTIONS(2152), @@ -87854,647 +87430,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2152), [anon_sym_object] = ACTIONS(2152), [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), + [anon_sym_satisfies] = ACTIONS(2152), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2482), - [sym__ternary_qmark] = ACTIONS(2158), - [sym_html_comment] = ACTIONS(5), - }, - [446] = { - [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_in] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_DOT] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_QMARK_DOT] = ACTIONS(2294), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2294), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_instanceof] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_satisfies] = ACTIONS(2294), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [447] = { - [sym_import] = STATE(4233), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(447), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_import] = STATE(4300), - [sym_expression_statement] = STATE(477), - [sym_empty_statement] = STATE(477), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6496), - [sym_string] = STATE(3280), - [sym_comment] = STATE(448), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [449] = { - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_as] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_in] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_DOT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_QMARK_DOT] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2260), - [anon_sym_PIPE_PIPE] = ACTIONS(2260), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PERCENT] = ACTIONS(2260), - [anon_sym_STAR_STAR] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ] = ACTIONS(2260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2260), - [anon_sym_QMARK_QMARK] = ACTIONS(2260), - [anon_sym_instanceof] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_satisfies] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym__automatic_semicolon] = ACTIONS(2262), - [sym__ternary_qmark] = ACTIONS(2262), - [sym_html_comment] = ACTIONS(5), - }, - [450] = { - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_STAR_STAR] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_instanceof] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_satisfies] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2488), - [sym__ternary_qmark] = ACTIONS(2240), + [sym__automatic_semicolon] = ACTIONS(2154), + [sym__ternary_qmark] = ACTIONS(2154), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(4235), - [sym_parenthesized_expression] = STATE(1958), + [442] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1948), [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(451), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2490), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(442), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -88515,271 +87546,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_comment] = STATE(452), + [443] = { + [sym_comment] = STATE(443), [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_QMARK_DOT] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR_STAR] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_instanceof] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_satisfies] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_QMARK_DOT] = ACTIONS(2278), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_GT_GT_GT] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_CARET] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2278), + [anon_sym_STAR_STAR] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ] = ACTIONS(2278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ] = ACTIONS(2278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2278), + [anon_sym_GT_EQ] = ACTIONS(2278), + [anon_sym_QMARK_QMARK] = ACTIONS(2278), + [anon_sym_instanceof] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_satisfies] = ACTIONS(2278), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2282), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2278), + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_DOT] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_QMARK_DOT] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_STAR_STAR] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_instanceof] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_satisfies] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2476), + [sym__ternary_qmark] = ACTIONS(2220), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_QMARK_DOT] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_satisfies] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(2228), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2302), [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), [anon_sym_GT] = ACTIONS(2304), [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), [anon_sym_AMP_AMP] = ACTIONS(2304), [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_GT_GT] = ACTIONS(2304), @@ -88788,12 +87928,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2304), [anon_sym_CARET] = ACTIONS(2304), [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), [anon_sym_PERCENT] = ACTIONS(2304), [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2302), [anon_sym_LT_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), @@ -88802,244 +87942,1116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2304), [anon_sym_QMARK_QMARK] = ACTIONS(2304), [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2480), + [sym__ternary_qmark] = ACTIONS(2308), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_QMARK_QMARK] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym_html_comment] = ACTIONS(5), + }, + [448] = { + [sym_comment] = STATE(448), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(124), + [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(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2232), + [anon_sym_PIPE_PIPE] = ACTIONS(2232), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_LT_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2232), + [anon_sym_QMARK_QMARK] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_satisfies] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2236), + [sym_html_comment] = ACTIONS(5), + }, + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_QMARK_DOT] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2200), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_STAR_STAR] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2200), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_instanceof] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_satisfies] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), + [sym__ternary_qmark] = ACTIONS(2202), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_comment] = STATE(451), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_import] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_LTtemplate_GT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_function] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_using] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_SLASH] = ACTIONS(2486), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2486), + [anon_sym_delete] = ACTIONS(2486), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2486), + [sym_super] = ACTIONS(2486), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [sym_null] = ACTIONS(2486), + [sym_undefined] = ACTIONS(2486), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_override] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_object] = ACTIONS(2486), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_comment] = STATE(452), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(2486), + [anon_sym_import] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_LTtemplate_GT] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_function] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_using] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_SLASH] = ACTIONS(2486), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2486), + [anon_sym_delete] = ACTIONS(2486), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2486), + [sym_super] = ACTIONS(2486), + [sym_true] = ACTIONS(2486), + [sym_false] = ACTIONS(2486), + [sym_null] = ACTIONS(2486), + [sym_undefined] = ACTIONS(2486), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_override] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_object] = ACTIONS(2486), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [453] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(453), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_override_modifier] = STATE(464), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [454] = { + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_QMARK_DOT] = ACTIONS(2286), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_satisfies] = ACTIONS(2286), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, [455] = { - [sym_import] = STATE(4159), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_spread_element] = STATE(5771), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(455), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(2454), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [456] = { - [sym_import] = STATE(4233), - [sym_parenthesized_expression] = STATE(1958), + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(1948), [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(456), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2498), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2494), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -89061,184 +89073,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [457] = { - [sym_comment] = STATE(457), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2454), - [anon_sym_import] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2454), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LTtemplate_GT] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_using] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2454), - [anon_sym_delete] = ACTIONS(2454), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_true] = ACTIONS(2454), - [sym_false] = ACTIONS(2454), - [sym_null] = ACTIONS(2454), - [sym_undefined] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(215), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_import] = STATE(4258), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2474), + [sym_import] = STATE(4289), + [sym_expression_statement] = STATE(473), + [sym_empty_statement] = STATE(473), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(458), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(2500), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6510), + [sym_string] = STATE(3008), + [sym_comment] = STATE(457), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -89260,548 +89163,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_comment] = STATE(458), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(124), + [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(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [459] = { - [sym_import] = STATE(4235), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(459), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3701), - [sym__type_query_subscript_expression] = STATE(3700), - [sym__type_query_call_expression] = STATE(3761), - [sym__type_query_instantiation_expression] = STATE(3840), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3777), + [sym__type_query_subscript_expression] = STATE(3760), + [sym__type_query_call_expression] = STATE(3953), + [sym__type_query_instantiation_expression] = STATE(4072), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2496), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [460] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_spread_element] = STATE(5770), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(460), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(4170), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(461), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym__type_query_member_expression] = STATE(3774), - [sym__type_query_subscript_expression] = STATE(3771), - [sym__type_query_call_expression] = STATE(3952), - [sym__type_query_instantiation_expression] = STATE(4095), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5070), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_override_modifier] = STATE(468), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(2500), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2502), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [462] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym__automatic_semicolon] = ACTIONS(2198), - [sym__ternary_qmark] = ACTIONS(2198), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym__type_query_member_expression] = STATE(3703), + [sym__type_query_subscript_expression] = STATE(3704), + [sym__type_query_call_expression] = STATE(3759), + [sym__type_query_instantiation_expression] = STATE(3880), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(463), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5135), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5071), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -89823,93 +89835,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(464), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5065), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5067), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1091), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), @@ -89931,60 +89943,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6573), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(465), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5014), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6523), + [sym_string] = STATE(3008), + [sym_comment] = STATE(466), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -89994,10 +90114,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90019,80 +90139,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym__automatic_semicolon] = ACTIONS(2514), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2516), + [467] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2503), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6520), - [sym_string] = STATE(3280), - [sym_comment] = STATE(466), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6432), + [sym_string] = STATE(3008), + [sym_comment] = STATE(467), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -90102,10 +90222,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90127,117 +90247,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym__automatic_semicolon] = ACTIONS(2518), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(467), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5012), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [468] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2002), + [sym_subscript_expression] = STATE(2002), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4631), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(468), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_pattern] = STATE(5139), + [sym_rest_pattern] = STATE(4543), + [sym_non_null_expression] = STATE(2002), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(2520), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2522), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -90254,74 +90374,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2539), + [469] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2633), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6555), - [sym_string] = STATE(3280), - [sym_comment] = STATE(468), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6704), + [sym_string] = STATE(3008), + [sym_comment] = STATE(469), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2524), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90343,93 +90463,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym__automatic_semicolon] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(2526), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2532), + [470] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2571), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6431), - [sym_string] = STATE(3280), - [sym_comment] = STATE(469), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6551), + [sym_string] = STATE(3008), + [sym_comment] = STATE(470), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90451,93 +90571,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym__automatic_semicolon] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(2530), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2607), + [471] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2511), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3280), - [sym_comment] = STATE(470), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6560), + [sym_string] = STATE(3008), + [sym_comment] = STATE(471), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2532), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90559,205 +90679,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym__automatic_semicolon] = ACTIONS(2530), - [sym_html_comment] = ACTIONS(5), - }, - [471] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2017), - [sym_subscript_expression] = STATE(2017), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(471), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_pattern] = STATE(5070), - [sym_rest_pattern] = STATE(4506), - [sym_non_null_expression] = STATE(2017), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2532), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(2534), [sym_html_comment] = ACTIONS(5), }, [472] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7200), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7262), + [sym_string] = STATE(2646), [sym_comment] = STATE(472), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2536), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -90766,105 +90778,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7256), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2720), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(6952), + [sym_string] = STATE(2646), [sym_comment] = STATE(473), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2538), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -90873,105 +90885,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2686), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7072), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2202), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2202), + [sym_subscript_expression] = STATE(2202), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(6181), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(474), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2202), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_var] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2550), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2558), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_readonly] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_object] = ACTIONS(2542), + [sym_html_comment] = ACTIONS(5), + }, + [475] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7081), + [sym_string] = STATE(2646), + [sym_comment] = STATE(475), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2562), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -90980,105 +91099,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(6941), - [sym_string] = STATE(2644), - [sym_comment] = STATE(475), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [476] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2689), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7409), + [sym_string] = STATE(2646), + [sym_comment] = STATE(476), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_RPAREN] = ACTIONS(2564), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91087,212 +91206,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [476] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(6176), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(476), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2544), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2560), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2564), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7416), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7214), + [sym_string] = STATE(2646), [sym_comment] = STATE(477), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2566), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91301,316 +91313,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2570), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6584), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3335), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(478), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7410), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(479), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7222), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7103), + [sym_string] = STATE(2646), [sym_comment] = STATE(480), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91619,634 +91631,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7177), + [sym_string] = STATE(2646), [sym_comment] = STATE(481), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym__extends_clause_single] = STATE(5991), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3172), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(482), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [483] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2605), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3192), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2595), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6709), - [sym_string] = STATE(3280), - [sym_comment] = STATE(483), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(482), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3280), - [sym_comment] = STATE(484), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [483] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(483), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym__extends_clause_single] = STATE(5529), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3175), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(485), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [484] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3032), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(484), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3082), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(486), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_mapped_type_clause] = STATE(7085), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2570), - [anon_sym_export] = ACTIONS(2572), - [anon_sym_type] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(1187), + [485] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(485), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -92255,104 +92161,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_readonly] = ACTIONS(2572), - [anon_sym_get] = ACTIONS(2572), - [anon_sym_set] = ACTIONS(2572), - [anon_sym_declare] = ACTIONS(2572), - [anon_sym_public] = ACTIONS(2572), - [anon_sym_private] = ACTIONS(2572), - [anon_sym_protected] = ACTIONS(2572), - [anon_sym_override] = ACTIONS(2572), - [anon_sym_module] = ACTIONS(2572), - [anon_sym_any] = ACTIONS(2572), - [anon_sym_number] = ACTIONS(2572), - [anon_sym_boolean] = ACTIONS(2572), - [anon_sym_string] = ACTIONS(2572), - [anon_sym_symbol] = ACTIONS(2572), - [anon_sym_object] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7342), - [sym_string] = STATE(2644), - [sym_comment] = STATE(487), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [486] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2683), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(486), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92361,104 +92267,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7065), - [sym_string] = STATE(2644), - [sym_comment] = STATE(488), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [487] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(487), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92467,210 +92373,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [489] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3095), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(489), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), + [488] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2131), [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7052), - [sym_string] = STATE(2644), - [sym_comment] = STATE(490), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(488), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92679,326 +92479,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7051), - [sym_string] = STATE(2644), - [sym_comment] = STATE(491), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [489] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3273), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2965), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(489), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7324), - [sym_string] = STATE(2644), - [sym_comment] = STATE(492), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [490] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3180), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2964), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(490), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3119), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2807), + [491] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3166), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2963), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(493), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(491), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -93006,201 +92806,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3085), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [493] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3058), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(493), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(494), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3171), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3064), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(495), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -93209,13 +93221,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -93237,484 +93249,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [496] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3058), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(496), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, [497] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3119), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2623), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2956), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(497), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, [498] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3314), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(498), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [499] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7386), - [sym_string] = STATE(2644), - [sym_comment] = STATE(499), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [500] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2546), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2505), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6556), - [sym_string] = STATE(3280), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(499), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2572), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93723,10 +93629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -93748,423 +93654,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [501] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3052), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [502] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3057), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), - [sym_html_comment] = ACTIONS(5), - }, - [503] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3043), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3038), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2560), + [500] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2526), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(504), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -94172,95 +93760,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7219), - [sym_string] = STATE(2644), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [501] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -94269,104 +93857,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(506), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [502] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7127), + [sym_string] = STATE(2646), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -94375,220 +93963,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3006), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2840), + [503] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2570), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(507), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6590), + [sym_string] = STATE(3008), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3090), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2504), + [504] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [505] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3166), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2583), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -94596,111 +94290,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7027), - [sym_string] = STATE(2644), - [sym_comment] = STATE(509), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [506] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3180), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(506), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6433), + [sym_string] = STATE(3008), + [sym_comment] = STATE(507), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -94720,183 +94520,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3090), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2913), + [508] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3273), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2585), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6561), + [sym_string] = STATE(3008), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [510] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2701), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7036), + [sym_string] = STATE(2646), + [sym_comment] = STATE(510), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [511] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7416), + [sym_string] = STATE(2646), [sym_comment] = STATE(511), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -94905,1482 +94917,1376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [512] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7025), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7071), + [sym_string] = STATE(2646), [sym_comment] = STATE(512), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [513] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3085), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(513), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym__extends_clause_single] = STATE(5527), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, [514] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3277), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(514), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [515] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3275), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7220), + [sym_string] = STATE(2646), [sym_comment] = STATE(515), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [516] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3271), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(516), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym__extends_clause_single] = STATE(5994), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, [517] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3244), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(517), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, [518] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3006), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2462), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3192), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2877), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(518), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, [519] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3038), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2926), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2760), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(519), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [520] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3242), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(520), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_mapped_type_clause] = STATE(7099), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_namespace] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2582), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_readonly] = ACTIONS(2576), + [anon_sym_get] = ACTIONS(2576), + [anon_sym_set] = ACTIONS(2576), + [anon_sym_declare] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_protected] = ACTIONS(2576), + [anon_sym_override] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2576), + [anon_sym_any] = ACTIONS(2576), + [anon_sym_number] = ACTIONS(2576), + [anon_sym_boolean] = ACTIONS(2576), + [anon_sym_string] = ACTIONS(2576), + [anon_sym_symbol] = ACTIONS(2576), + [anon_sym_object] = ACTIONS(2576), [sym_html_comment] = ACTIONS(5), }, [521] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3043), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2928), + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6528), + [sym_string] = STATE(3008), [sym_comment] = STATE(521), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, [522] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3057), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(522), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [523] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(523), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3119), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2615), + [523] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2634), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(524), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_sequence_expression] = STATE(6691), + [sym_string] = STATE(3008), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7093), - [sym_string] = STATE(2644), - [sym_comment] = STATE(525), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [524] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7228), + [sym_string] = STATE(2646), + [sym_comment] = STATE(524), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -96389,104 +96295,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2689), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(526), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [525] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2727), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7078), + [sym_string] = STATE(2646), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -96495,104 +96401,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(527), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [526] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2726), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7073), + [sym_string] = STATE(2646), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -96601,104 +96507,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [527] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2725), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7066), + [sym_string] = STATE(2646), + [sym_comment] = STATE(527), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7120), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7417), + [sym_string] = STATE(2646), [sym_comment] = STATE(528), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -96707,316 +96719,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3198), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(529), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, [530] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7205), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3043), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(530), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3223), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(531), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [532] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7351), + [sym_string] = STATE(2646), + [sym_comment] = STATE(532), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -97025,1360 +97143,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [532] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(532), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3090), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3015), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(533), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3348), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2702), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7213), + [sym_string] = STATE(2646), [sym_comment] = STATE(534), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7336), + [sym_string] = STATE(2646), [sym_comment] = STATE(535), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [536] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7211), + [sym_string] = STATE(2646), [sym_comment] = STATE(536), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [537] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2725), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3073), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(537), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2772), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(538), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2495), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3075), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(539), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2572), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_sequence_expression] = STATE(6432), - [sym_string] = STATE(3280), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7206), + [sym_string] = STATE(2646), [sym_comment] = STATE(540), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3125), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2711), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7215), + [sym_string] = STATE(2646), [sym_comment] = STATE(541), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7083), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(542), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7209), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(543), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3043), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2637), + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3085), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2452), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), [sym_comment] = STATE(544), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2572), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98387,10 +98399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -98412,291 +98424,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [545] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3057), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(545), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(546), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [545] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7034), + [sym_string] = STATE(2646), + [sym_comment] = STATE(545), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3006), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2599), + [546] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3192), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(547), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(546), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2572), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98705,10 +98611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -98730,112 +98636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [548] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(548), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -98854,304 +98654,1258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, + [547] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_sequence_expression] = STATE(7089), + [sym_string] = STATE(2646), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [548] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, [549] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(549), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(550), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2601), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2749), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), [sym_comment] = STATE(551), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [552] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2750), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [553] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2751), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [554] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3195), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [555] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2759), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [556] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2549), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [557] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [558] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3365), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -99172,92 +99926,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [559] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2520), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3346), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -99278,198 +100032,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7066), - [sym_string] = STATE(2644), - [sym_comment] = STATE(553), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [560] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2523), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3343), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3321), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(554), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [561] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2610), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3312), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -99490,93 +100244,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [562] = { + [sym_import] = STATE(4277), + [sym_statement_block] = STATE(2519), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2765), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [563] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3180), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -99596,199 +100456,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [564] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3166), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [565] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_mapped_type_clause] = STATE(6949), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2584), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_readonly] = ACTIONS(2586), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_declare] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_override] = ACTIONS(2586), + [anon_sym_module] = ACTIONS(2586), + [anon_sym_any] = ACTIONS(2586), + [anon_sym_number] = ACTIONS(2586), + [anon_sym_boolean] = ACTIONS(2586), + [anon_sym_string] = ACTIONS(2586), + [anon_sym_symbol] = ACTIONS(2586), + [anon_sym_object] = ACTIONS(2586), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [566] = { + [sym_import] = STATE(4289), + [sym_statement_block] = STATE(3273), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -99808,92 +100774,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2646), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3325), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(558), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [567] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3006), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [sym_html_comment] = ACTIONS(5), + }, + [568] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [569] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -99914,183 +101089,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7214), - [sym_string] = STATE(2644), - [sym_comment] = STATE(559), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [570] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7207), - [sym_string] = STATE(2644), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [571] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2762), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -100099,210 +101272,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2604), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(561), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [572] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2606), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3099), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(562), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [573] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3270), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -100311,13 +101482,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -100338,410 +101509,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(4300), - [sym_statement_block] = STATE(3038), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2632), + [574] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2882), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(563), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [564] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_sequence_expression] = STATE(7169), - [sym_string] = STATE(2644), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [565] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3082), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_mapped_type_clause] = STATE(6945), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2584), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(4225), - [sym_statement_block] = STATE(2618), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [575] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -100762,165 +101719,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2774), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [568] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2552), + [576] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2494), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -100929,10 +101781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -100954,183 +101806,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [569] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2474), + [577] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2497), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101139,10 +101886,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -101164,110 +101911,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [578] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -101287,1136 +102034,1031 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3196), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [573] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [579] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3303), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2911), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [580] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2229), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2229), + [sym_subscript_expression] = STATE(2229), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7268), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2229), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2594), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2604), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [581] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [582] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [583] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [584] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2758), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2224), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2224), - [sym_subscript_expression] = STATE(2224), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7175), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2224), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(173), + [585] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2604), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2608), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_readonly] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2600), - [anon_sym_set] = ACTIONS(2600), - [anon_sym_declare] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_protected] = ACTIONS(2600), - [anon_sym_override] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_any] = ACTIONS(2600), - [anon_sym_number] = ACTIONS(2600), - [anon_sym_boolean] = ACTIONS(2600), - [anon_sym_string] = ACTIONS(2600), - [anon_sym_symbol] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [586] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [587] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2638), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2530), + [588] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2607), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -102424,619 +103066,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [589] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3216), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [590] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [591] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [592] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2688), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [593] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3201), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [594] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2597), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [595] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -103045,13 +103792,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -103072,197 +103819,932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [596] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [597] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [598] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [599] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2608), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [600] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [601] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2598), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [602] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [603] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2614), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [604] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2722), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -103282,92 +104764,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [605] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2561), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2610), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -103387,165 +104869,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3221), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [606] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2727), + [607] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2835), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [608] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -103554,10 +105141,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -103579,111 +105166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [594] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -103702,197 +105184,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2231), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2231), - [sym_subscript_expression] = STATE(2231), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7073), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2231), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2616), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_readonly] = ACTIONS(2612), - [anon_sym_get] = ACTIONS(2612), - [anon_sym_set] = ACTIONS(2612), - [anon_sym_declare] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_protected] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_module] = ACTIONS(2612), - [anon_sym_any] = ACTIONS(2612), - [anon_sym_number] = ACTIONS(2612), - [anon_sym_boolean] = ACTIONS(2612), - [anon_sym_string] = ACTIONS(2612), - [anon_sym_symbol] = ACTIONS(2612), - [anon_sym_object] = ACTIONS(2612), - [sym_html_comment] = ACTIONS(5), - }, - [596] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [609] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -103912,391 +105289,1021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [610] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3311), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3226), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [611] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [612] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3277), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3197), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [613] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2769), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [614] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [615] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2770), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [616] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [617] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [618] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [619] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3097), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -104305,13 +106312,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -104332,76 +106339,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3217), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [620] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2772), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [621] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2774), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [622] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2648), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [623] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3031), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -104410,13 +106732,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -104437,60 +106759,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2529), + [624] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2776), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [625] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2561), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(625), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -104499,10 +106926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -104524,111 +106951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -104647,706 +106969,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [626] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3033), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2473), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [627] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2614), + [anon_sym_namespace] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2618), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2622), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(2614), + [anon_sym_readonly] = ACTIONS(2614), + [anon_sym_get] = ACTIONS(2614), + [anon_sym_set] = ACTIONS(2614), + [anon_sym_declare] = ACTIONS(2614), + [anon_sym_public] = ACTIONS(2614), + [anon_sym_private] = ACTIONS(2614), + [anon_sym_protected] = ACTIONS(2614), + [anon_sym_override] = ACTIONS(2614), + [anon_sym_module] = ACTIONS(2614), + [anon_sym_any] = ACTIONS(2614), + [anon_sym_number] = ACTIONS(2614), + [anon_sym_boolean] = ACTIONS(2614), + [anon_sym_string] = ACTIONS(2614), + [anon_sym_symbol] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(2614), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [628] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2622), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2476), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [629] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3034), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2475), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [630] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3276), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [631] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [632] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -105355,13 +107677,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -105382,916 +107704,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [633] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [612] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3240), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [634] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3243), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [635] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3244), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [636] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3275), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [615] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [637] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [638] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2753), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3170), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [639] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(619), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [640] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -106300,13 +108517,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -106327,286 +108544,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2640), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(620), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3245), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(621), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [641] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2779), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3202), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(622), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [642] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -106615,13 +108727,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -106642,76 +108754,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(623), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [643] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2230), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2230), + [sym_subscript_expression] = STATE(2230), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2230), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2624), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_object] = ACTIONS(2626), + [sym_html_comment] = ACTIONS(5), + }, + [644] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3358), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [645] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3193), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(645), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [646] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3045), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -106720,13 +109147,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -106747,585 +109174,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3247), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(624), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [647] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(625), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [648] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3356), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2232), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2232), - [sym_subscript_expression] = STATE(2232), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7260), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2232), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2628), - [anon_sym_type] = ACTIONS(2628), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(173), + [649] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2636), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_readonly] = ACTIONS(2628), - [anon_sym_get] = ACTIONS(2628), - [anon_sym_set] = ACTIONS(2628), - [anon_sym_declare] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [anon_sym_override] = ACTIONS(2628), - [anon_sym_module] = ACTIONS(2628), - [anon_sym_any] = ACTIONS(2628), - [anon_sym_number] = ACTIONS(2628), - [anon_sym_boolean] = ACTIONS(2628), - [anon_sym_string] = ACTIONS(2628), - [anon_sym_symbol] = ACTIONS(2628), - [anon_sym_object] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3214), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [650] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [651] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2631), + [652] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [653] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2560), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(629), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(653), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107334,10 +109866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -107359,1233 +109891,1653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3211), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(630), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [655] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(631), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [656] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3022), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3249), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(632), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [657] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2969), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [658] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3251), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2561), + [659] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2968), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(633), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(659), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3250), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(634), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [660] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2610), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [661] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3173), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [662] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2763), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(636), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [663] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3251), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(637), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [664] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2225), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2225), - [sym_subscript_expression] = STATE(2225), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(6990), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(638), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2225), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(173), + [665] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2575), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2648), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(639), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [666] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [667] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(640), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [668] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3047), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2452), + [669] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2641), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(641), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -108594,10 +111546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -108619,214 +111571,739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(642), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [670] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [sym_html_comment] = ACTIONS(5), + }, + [671] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3049), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3365), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(643), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [672] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2756), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(672), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [673] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3050), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(673), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [sym_html_comment] = ACTIONS(5), + }, + [674] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3053), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [sym_html_comment] = ACTIONS(5), + }, + [675] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3054), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [sym_html_comment] = ACTIONS(5), + }, + [676] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -108847,375 +112324,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(644), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2622), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [645] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3001), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(645), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [646] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2548), + [677] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2470), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(646), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(677), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2778), + [678] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2668), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(647), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(678), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -109224,10 +112491,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -109249,216 +112516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [648] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [649] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(649), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), [anon_sym_get] = ACTIONS(1445), @@ -109477,1231 +112534,1441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(650), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [679] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3278), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(679), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(651), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [680] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3056), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(680), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(652), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [681] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3057), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(681), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(653), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), + [682] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(682), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(654), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [683] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(683), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [684] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(684), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3296), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(655), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [685] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3059), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(685), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(656), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [686] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(686), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3343), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(657), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [687] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(687), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [688] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(688), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3050), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(658), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [689] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3228), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(689), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3260), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(659), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [690] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(690), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3261), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(660), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [691] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(691), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(661), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [692] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3069), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -110710,13 +113977,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -110737,165 +114004,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(662), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [693] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2474), + [694] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2623), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(663), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -110904,10 +114171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -110920,7 +114187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2650), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), @@ -110929,109 +114196,739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [695] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3355), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(664), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [696] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2960), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [697] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(697), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [698] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(698), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [699] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2228), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2228), + [sym_subscript_expression] = STATE(2228), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7074), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(699), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2228), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2648), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [700] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [701] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -111052,86 +114949,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2521), + [702] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2476), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(665), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -111139,314 +115036,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2482), + [703] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2477), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(666), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [667] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7068), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(667), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2229), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2652), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_namespace] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2662), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_readonly] = ACTIONS(2654), - [anon_sym_get] = ACTIONS(2654), - [anon_sym_set] = ACTIONS(2654), - [anon_sym_declare] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_protected] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_any] = ACTIONS(2654), - [anon_sym_number] = ACTIONS(2654), - [anon_sym_boolean] = ACTIONS(2654), - [anon_sym_string] = ACTIONS(2654), - [anon_sym_symbol] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2643), + [704] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2478), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(668), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -111454,419 +115246,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3264), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [705] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2957), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(705), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(670), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [706] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(706), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2650), + [707] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2479), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(671), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(707), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2463), + [708] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2480), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(672), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -111874,419 +115666,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3152), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(673), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [709] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(709), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3070), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(674), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [710] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(710), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(675), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [711] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2233), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2233), + [sym_subscript_expression] = STATE(2233), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7266), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(711), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2233), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2650), + [anon_sym_export] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_namespace] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2660), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_get] = ACTIONS(2652), + [anon_sym_set] = ACTIONS(2652), + [anon_sym_declare] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_private] = ACTIONS(2652), + [anon_sym_protected] = ACTIONS(2652), + [anon_sym_override] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_any] = ACTIONS(2652), + [anon_sym_number] = ACTIONS(2652), + [anon_sym_boolean] = ACTIONS(2652), + [anon_sym_string] = ACTIONS(2652), + [anon_sym_symbol] = ACTIONS(2652), + [anon_sym_object] = ACTIONS(2652), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2468), + [712] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2481), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(676), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -112294,214 +116086,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(677), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [713] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2793), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(713), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(678), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [714] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3339), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(714), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -112522,191 +116314,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2469), + [715] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2626), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(679), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(715), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2472), + [716] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3274), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(716), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2482), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(680), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(717), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -112714,104 +116611,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2478), + [718] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2485), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(681), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(718), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -112819,94 +116716,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(682), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [719] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(719), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -112915,13 +116812,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -112942,296 +116839,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(683), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [720] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2490), + [721] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2738), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(684), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2493), + [722] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2495), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(685), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(722), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -113239,78 +117136,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2602), + [723] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(723), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [sym_html_comment] = ACTIONS(5), + }, + [724] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2557), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(686), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -113319,10 +117321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -113344,209 +117346,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [687] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3186), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(687), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [725] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [688] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2494), + [726] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2746), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [727] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [728] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2745), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), + [sym_html_comment] = ACTIONS(5), + }, + [729] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2501), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(688), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -113554,78 +117871,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2622), + [730] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2504), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(689), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -113634,10 +117951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -113659,209 +117976,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [731] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2734), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(690), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [732] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [691] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), + [733] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3178), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [734] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(691), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [sym_html_comment] = ACTIONS(5), + }, + [735] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_number] = ACTIONS(2610), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -113869,104 +118501,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2502), + [736] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2529), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(692), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -113974,110 +118606,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(693), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [737] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2227), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2227), + [sym_subscript_expression] = STATE(2227), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7181), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2227), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2662), + [anon_sym_export] = ACTIONS(2664), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_namespace] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2672), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_readonly] = ACTIONS(2664), + [anon_sym_get] = ACTIONS(2664), + [anon_sym_set] = ACTIONS(2664), + [anon_sym_declare] = ACTIONS(2664), + [anon_sym_public] = ACTIONS(2664), + [anon_sym_private] = ACTIONS(2664), + [anon_sym_protected] = ACTIONS(2664), + [anon_sym_override] = ACTIONS(2664), + [anon_sym_module] = ACTIONS(2664), + [anon_sym_any] = ACTIONS(2664), + [anon_sym_number] = ACTIONS(2664), + [anon_sym_boolean] = ACTIONS(2664), + [anon_sym_string] = ACTIONS(2664), + [anon_sym_symbol] = ACTIONS(2664), + [anon_sym_object] = ACTIONS(2664), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -114097,165 +118834,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [694] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), - [sym_html_comment] = ACTIONS(5), - }, - [695] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2594), + [739] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2671), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(695), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(739), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -114264,10 +118896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -114289,514 +118921,619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [740] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2231), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2231), + [sym_subscript_expression] = STATE(2231), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(6995), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(740), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2231), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2674), + [anon_sym_export] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_namespace] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2684), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_readonly] = ACTIONS(2676), + [anon_sym_get] = ACTIONS(2676), + [anon_sym_set] = ACTIONS(2676), + [anon_sym_declare] = ACTIONS(2676), + [anon_sym_public] = ACTIONS(2676), + [anon_sym_private] = ACTIONS(2676), + [anon_sym_protected] = ACTIONS(2676), + [anon_sym_override] = ACTIONS(2676), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_any] = ACTIONS(2676), + [anon_sym_number] = ACTIONS(2676), + [anon_sym_boolean] = ACTIONS(2676), + [anon_sym_string] = ACTIONS(2676), + [anon_sym_symbol] = ACTIONS(2676), + [anon_sym_object] = ACTIONS(2676), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2506), + [741] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2955), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(696), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(741), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3248), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(697), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [742] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(742), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3157), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(698), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [743] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2100), - [sym_subscript_expression] = STATE(2100), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4968), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(699), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2100), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2664), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1103), + [744] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2668), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [700] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2699), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(700), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [745] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -114805,208 +119542,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [701] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3215), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(701), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3276), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(702), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [746] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -115015,13 +119647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -115042,76 +119674,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3246), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(703), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [747] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [748] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -115120,13 +119857,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -115147,196 +119884,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(704), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [749] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2736), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [750] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [751] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(751), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3308), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(705), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [752] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3319), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(752), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -115357,301 +120304,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3194), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(706), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [753] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2947), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(753), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(707), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [754] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(754), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3357), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(708), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [755] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3333), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -115672,1036 +120619,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3008), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(709), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [710] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3044), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(710), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [711] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2932), + [756] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2540), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(711), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(712), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [713] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3139), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(713), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [714] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3241), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(714), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [715] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(715), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [716] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(716), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [717] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(717), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(718), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [757] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3351), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -116722,92 +120829,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [719] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(719), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [758] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [759] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(759), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [760] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -116827,91 +121144,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(720), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [761] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2663), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(761), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [762] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3344), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(762), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -116932,391 +121354,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [721] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2228), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2228), - [sym_subscript_expression] = STATE(2228), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7262), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(721), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2228), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2670), - [anon_sym_export] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2676), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_readonly] = ACTIONS(2672), - [anon_sym_get] = ACTIONS(2672), - [anon_sym_set] = ACTIONS(2672), - [anon_sym_declare] = ACTIONS(2672), - [anon_sym_public] = ACTIONS(2672), - [anon_sym_private] = ACTIONS(2672), - [anon_sym_protected] = ACTIONS(2672), - [anon_sym_override] = ACTIONS(2672), - [anon_sym_module] = ACTIONS(2672), - [anon_sym_any] = ACTIONS(2672), - [anon_sym_number] = ACTIONS(2672), - [anon_sym_boolean] = ACTIONS(2672), - [anon_sym_string] = ACTIONS(2672), - [anon_sym_symbol] = ACTIONS(2672), - [anon_sym_object] = ACTIONS(2672), - [sym_html_comment] = ACTIONS(5), - }, - [722] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(722), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [723] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(723), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [724] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2958), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(724), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [763] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2737), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(763), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -117325,402 +121432,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [725] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(725), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [764] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2934), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(764), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [726] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2984), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [765] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3183), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [727] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [766] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3332), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2533), + [767] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2450), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -117729,10 +121836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -117754,1055 +121861,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [729] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3236), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [730] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3235), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(730), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3082), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(731), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [768] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2643), + [769] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2943), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(732), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2650), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), - [sym_html_comment] = ACTIONS(5), - }, - [733] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(733), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [734] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(734), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [735] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3234), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(735), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2914), + [770] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2453), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(736), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(770), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [737] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3233), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(737), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [738] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(738), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -118822,270 +122194,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(739), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [740] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2547), + [771] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2780), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(740), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(771), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2513), + [772] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2491), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(741), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(772), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -119094,10 +122361,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -119119,104 +122386,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [773] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3022), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(773), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2531), + [774] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2499), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(742), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(774), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -119224,813 +122596,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3177), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(743), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [775] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(775), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [744] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(744), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(745), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [776] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3258), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(776), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), + [777] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3024), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(746), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(777), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(747), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(63), + [778] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2226), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2226), + [sym_subscript_expression] = STATE(2226), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7084), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(778), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2226), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2686), + [anon_sym_export] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_namespace] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2696), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_get] = ACTIONS(2688), + [anon_sym_set] = ACTIONS(2688), + [anon_sym_declare] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_private] = ACTIONS(2688), + [anon_sym_protected] = ACTIONS(2688), + [anon_sym_override] = ACTIONS(2688), + [anon_sym_module] = ACTIONS(2688), + [anon_sym_any] = ACTIONS(2688), + [anon_sym_number] = ACTIONS(2688), + [anon_sym_boolean] = ACTIONS(2688), + [anon_sym_string] = ACTIONS(2688), + [anon_sym_symbol] = ACTIONS(2688), + [anon_sym_object] = ACTIONS(2688), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(748), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [779] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3203), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(779), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [749] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(749), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2551), + [780] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2490), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(750), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(780), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120039,10 +123201,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -120064,209 +123226,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2731), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(751), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [781] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(781), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2934), + [782] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2884), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(752), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(782), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -120274,288 +123436,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [753] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(753), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(754), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [783] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(783), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [755] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2553), + [784] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2603), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(755), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(784), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120564,10 +123621,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -120589,314 +123646,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2223), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2223), - [sym_subscript_expression] = STATE(2223), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7139), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(756), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2223), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_readonly] = ACTIONS(2684), - [anon_sym_get] = ACTIONS(2684), - [anon_sym_set] = ACTIONS(2684), - [anon_sym_declare] = ACTIONS(2684), - [anon_sym_public] = ACTIONS(2684), - [anon_sym_private] = ACTIONS(2684), - [anon_sym_protected] = ACTIONS(2684), - [anon_sym_override] = ACTIONS(2684), - [anon_sym_module] = ACTIONS(2684), - [anon_sym_any] = ACTIONS(2684), - [anon_sym_number] = ACTIONS(2684), - [anon_sym_boolean] = ACTIONS(2684), - [anon_sym_string] = ACTIONS(2684), - [anon_sym_symbol] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2554), + [785] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2904), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(757), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(785), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [758] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2890), + [786] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2794), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(758), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(786), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2650), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -120904,78 +123856,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2713), + [787] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2464), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(759), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(787), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120984,10 +123936,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -121009,288 +123961,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [760] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(760), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [788] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(788), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [761] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2909), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(761), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2555), + [789] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2695), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(762), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121299,10 +124146,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -121324,1039 +124171,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3310), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(763), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [790] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(790), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(764), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [791] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2090), + [sym_subscript_expression] = STATE(2090), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(4972), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(791), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2090), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_namespace] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [765] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2908), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(765), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2702), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1741), + [anon_sym_readonly] = ACTIONS(1741), + [anon_sym_get] = ACTIONS(1741), + [anon_sym_set] = ACTIONS(1741), + [anon_sym_declare] = ACTIONS(1741), + [anon_sym_public] = ACTIONS(1741), + [anon_sym_private] = ACTIONS(1741), + [anon_sym_protected] = ACTIONS(1741), + [anon_sym_override] = ACTIONS(1741), + [anon_sym_module] = ACTIONS(1741), + [anon_sym_any] = ACTIONS(1741), + [anon_sym_number] = ACTIONS(1741), + [anon_sym_boolean] = ACTIONS(1741), + [anon_sym_string] = ACTIONS(1741), + [anon_sym_symbol] = ACTIONS(1741), + [anon_sym_object] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [792] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(792), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [767] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1999), - [sym_subscript_expression] = STATE(1999), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(4614), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1999), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2694), - [anon_sym_export] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(173), + [793] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3078), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(793), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2700), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2704), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(768), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [794] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2747), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(794), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [769] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2485), + [795] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2826), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(769), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(795), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(770), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [796] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(796), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [771] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(771), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [797] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(797), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [772] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(772), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [798] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(798), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -122365,218 +125107,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2227), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2227), - [sym_subscript_expression] = STATE(2227), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7158), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(773), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2227), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(173), + [799] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3257), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(799), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2716), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [774] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2786), + [800] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2844), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(774), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(800), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -122584,288 +125326,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(775), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(776), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), + [801] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(801), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2769), + [802] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2489), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(777), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(802), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -122874,10 +125511,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -122899,724 +125536,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [778] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(778), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [803] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(803), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(779), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [780] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(780), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [804] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(804), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [781] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(781), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(782), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [805] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(805), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(2608), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(783), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [806] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(806), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [sym_html_comment] = ACTIONS(5), }, - [784] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3231), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(784), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [807] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3153), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(807), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -123625,13 +126052,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -123652,91 +126079,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [785] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(785), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [808] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(808), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [sym_html_comment] = ACTIONS(5), + }, + [809] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2898), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(809), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [810] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(810), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [811] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(811), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), + [sym_html_comment] = ACTIONS(5), + }, + [812] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(812), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [813] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3324), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(813), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -123757,181 +126709,916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [786] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2557), + [814] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(814), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [815] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(815), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2704), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), + [sym_html_comment] = ACTIONS(5), + }, + [816] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3224), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(816), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [817] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2589), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(786), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(817), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1715), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), [sym_html_comment] = ACTIONS(5), }, - [787] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2212), - [sym_expression] = STATE(3021), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7250), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2212), - [sym_subscript_expression] = STATE(2212), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3852), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7309), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(787), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2212), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [818] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2110), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7238), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2110), + [sym_subscript_expression] = STATE(2110), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3819), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7237), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(818), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2110), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1715), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [819] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(819), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [820] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2180), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7256), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2180), + [sym_subscript_expression] = STATE(2180), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7315), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(820), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2180), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(768), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_namespace] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1617), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_declare] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_private] = ACTIONS(1593), + [anon_sym_protected] = ACTIONS(1593), + [anon_sym_override] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), + [sym_html_comment] = ACTIONS(5), + }, + [821] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2232), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2232), + [sym_subscript_expression] = STATE(2232), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7217), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(821), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2232), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2716), + [anon_sym_AT] = ACTIONS(95), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [822] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(822), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(129), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -123940,13 +127627,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), @@ -123967,286 +127654,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [788] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(788), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(789), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(790), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [823] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(823), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -124255,733 +127732,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2907), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(791), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [792] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(792), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [793] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(793), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [824] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(824), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [794] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(794), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [825] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2830), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7168), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3797), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7219), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(825), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2088), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(966), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(966), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(992), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1811), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1539), + [anon_sym_get] = ACTIONS(1539), + [anon_sym_set] = ACTIONS(1539), + [anon_sym_declare] = ACTIONS(1539), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_override] = ACTIONS(1539), + [anon_sym_module] = ACTIONS(1539), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [sym_html_comment] = ACTIONS(5), }, - [795] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(795), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [826] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(826), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [796] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3018), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(796), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [827] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(827), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [797] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(797), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [828] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(828), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -124990,103 +128257,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [798] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(798), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [829] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(829), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -125095,218 +128362,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(187), [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [799] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2559), + [830] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2915), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(799), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(21), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(830), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [800] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2808), + [831] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2914), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(800), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(831), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -125314,104 +128581,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [801] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2838), + [832] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(832), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), + [sym_html_comment] = ACTIONS(5), + }, + [833] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2910), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(801), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(833), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -125419,209 +128791,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [802] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(802), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), + [834] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2224), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2224), + [sym_subscript_expression] = STATE(2224), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(834), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2224), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2728), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [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), [sym_html_comment] = ACTIONS(5), }, - [803] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2890), + [835] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2131), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7280), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2131), + [sym_subscript_expression] = STATE(2131), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3860), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7094), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(835), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2131), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_get] = ACTIONS(1671), + [anon_sym_set] = ACTIONS(1671), + [anon_sym_declare] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_private] = ACTIONS(1671), + [anon_sym_protected] = ACTIONS(1671), + [anon_sym_override] = ACTIONS(1671), + [anon_sym_module] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_number] = ACTIONS(1671), + [anon_sym_boolean] = ACTIONS(1671), + [anon_sym_string] = ACTIONS(1671), + [anon_sym_symbol] = ACTIONS(1671), + [anon_sym_object] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [836] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2162), + [sym_expression] = STATE(2913), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(803), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7050), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2162), + [sym_subscript_expression] = STATE(2162), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3824), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7052), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(836), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2162), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(607), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_export] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1635), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1639), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_function] = ACTIONS(1025), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_using] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1635), + [anon_sym_delete] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), + [sym_private_property_identifier] = ACTIONS(1659), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -125629,214 +129106,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_get] = ACTIONS(1627), + [anon_sym_set] = ACTIONS(1627), + [anon_sym_declare] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_private] = ACTIONS(1627), + [anon_sym_protected] = ACTIONS(1627), + [anon_sym_override] = ACTIONS(1627), + [anon_sym_module] = ACTIONS(1627), + [anon_sym_any] = ACTIONS(1627), + [anon_sym_number] = ACTIONS(1627), + [anon_sym_boolean] = ACTIONS(1627), + [anon_sym_string] = ACTIONS(1627), + [anon_sym_symbol] = ACTIONS(1627), + [anon_sym_object] = ACTIONS(1627), [sym_html_comment] = ACTIONS(5), }, - [804] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(804), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), + [837] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2704), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(837), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [805] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(805), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [838] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3306), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(838), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -125857,165 +129334,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [806] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2846), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(806), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [839] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(839), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [807] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2719), + [840] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2486), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(807), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(840), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126024,10 +129501,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -126049,918 +129526,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [808] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(808), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [841] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3016), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(841), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [809] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(809), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [810] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2896), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(810), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [811] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2915), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(811), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [812] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(812), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [813] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2848), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(813), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [814] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(814), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [815] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3328), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(815), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [816] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2093), - [sym_expression] = STATE(2577), + [842] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2483), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7392), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2093), - [sym_subscript_expression] = STATE(2093), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3826), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7391), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(816), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2093), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(962), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(842), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126969,10 +129711,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -126994,845 +129736,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_readonly] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_override] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_object] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [817] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3329), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(817), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [843] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3014), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(843), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [818] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(818), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [819] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3341), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(819), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [844] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3012), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(844), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [820] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3333), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(820), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [845] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(845), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [821] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2226), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2226), - [sym_subscript_expression] = STATE(2226), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7115), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(821), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2226), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2718), - [anon_sym_export] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_namespace] = ACTIONS(2722), + [846] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3007), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(846), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2728), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [822] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2091), - [sym_expression] = STATE(2584), + [847] = { + [sym_import] = STATE(4289), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2555), [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7240), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2091), - [sym_subscript_expression] = STATE(2091), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3788), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(822), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2091), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(583), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1549), + [sym_yield_expression] = STATE(3021), + [sym_object] = STATE(3008), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(3008), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(3021), + [sym_glimmer_opening_tag] = STATE(5601), + [sym_class] = STATE(3008), + [sym_function_expression] = STATE(3008), + [sym_generator_function] = STATE(3008), + [sym_arrow_function] = STATE(3008), + [sym__call_signature] = STATE(7398), + [sym_call_expression] = STATE(3008), + [sym_new_expression] = STATE(3021), + [sym_await_expression] = STATE(3021), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3021), + [sym__augmented_assignment_lhs] = STATE(3809), + [sym_augmented_assignment_expression] = STATE(3021), + [sym__destructuring_pattern] = STATE(7397), + [sym_ternary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_string] = STATE(3008), + [sym_comment] = STATE(847), + [sym_template_string] = STATE(3008), + [sym_regex] = STATE(3008), + [sym_meta_property] = STATE(3008), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3021), + [sym_as_expression] = STATE(3021), + [sym_satisfies_expression] = STATE(3021), + [sym_instantiation_expression] = STATE(3021), + [sym_internal_module] = STATE(3021), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5594), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_object] = ACTIONS(1543), - [sym_html_comment] = ACTIONS(5), - }, - [823] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2954), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(823), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [824] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2086), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7162), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2086), - [sym_subscript_expression] = STATE(2086), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3812), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7213), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(824), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2086), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(651), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(999), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(999), - [anon_sym_delete] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1025), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -127852,196 +130279,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [825] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(825), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [826] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3339), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(826), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [848] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(848), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -128062,1036 +130384,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [827] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2856), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(827), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [828] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(828), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [849] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2189), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7009), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2189), + [sym_subscript_expression] = STATE(2189), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3799), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7170), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(849), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2189), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(623), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [829] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3346), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(829), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [850] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3005), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(850), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [830] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3349), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(830), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [851] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(851), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [831] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(831), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [832] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2871), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(832), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [852] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2752), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(852), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, - [833] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3350), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(833), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [853] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3004), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(853), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [834] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3166), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(834), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [854] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3002), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(854), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [835] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2905), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(835), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), + [855] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(855), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(836), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), + [856] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(1948), + [sym_expression] = STATE(3325), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(1948), + [sym_subscript_expression] = STATE(1948), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7278), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(856), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(1948), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1095), @@ -129112,2654 +131224,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [837] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2873), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(837), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [838] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2145), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7377), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3825), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7371), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(838), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2145), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(567), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_namespace] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_delete] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1499), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [sym_html_comment] = ACTIONS(5), - }, - [839] = { - [sym_import] = STATE(4300), - [sym_parenthesized_expression] = STATE(2159), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2782), - [sym_yield_expression] = STATE(3273), - [sym_object] = STATE(3280), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(3280), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(3273), - [sym_glimmer_opening_tag] = STATE(5597), - [sym_class] = STATE(3280), - [sym_function_expression] = STATE(3280), - [sym_generator_function] = STATE(3280), - [sym_arrow_function] = STATE(3280), - [sym__call_signature] = STATE(7044), - [sym_call_expression] = STATE(3280), - [sym_new_expression] = STATE(3273), - [sym_await_expression] = STATE(3273), - [sym_member_expression] = STATE(2159), - [sym_subscript_expression] = STATE(2159), - [sym_assignment_expression] = STATE(3273), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(3273), - [sym__destructuring_pattern] = STATE(7046), - [sym_ternary_expression] = STATE(3273), - [sym_binary_expression] = STATE(3273), - [sym_unary_expression] = STATE(3273), - [sym_update_expression] = STATE(3273), - [sym_string] = STATE(3280), - [sym_comment] = STATE(839), - [sym_template_string] = STATE(3280), - [sym_regex] = STATE(3280), - [sym_meta_property] = STATE(3280), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2159), - [sym_type_assertion] = STATE(3273), - [sym_as_expression] = STATE(3273), - [sym_satisfies_expression] = STATE(3273), - [sym_instantiation_expression] = STATE(3273), - [sym_internal_module] = STATE(3273), - [sym_type_arguments] = STATE(774), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5593), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(971), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(975), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1629), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_object] = ACTIONS(1597), - [sym_html_comment] = ACTIONS(5), - }, - [840] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(1958), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(1958), - [sym_subscript_expression] = STATE(1958), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7272), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(840), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(1958), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [857] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(857), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(841), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [858] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2225), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7095), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3815), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7044), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(858), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(714), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(172), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(172), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2738), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(986), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_void] = ACTIONS(172), + [anon_sym_delete] = ACTIONS(172), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(183), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(2740), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [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), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3092), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(842), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), + [859] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(859), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [843] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(843), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), + [860] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(2996), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7091), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7100), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(860), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(723), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_namespace] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1565), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1315), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_delete] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1581), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1583), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1559), + [anon_sym_set] = ACTIONS(1559), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1559), + [anon_sym_private] = ACTIONS(1559), + [anon_sym_protected] = ACTIONS(1559), + [anon_sym_override] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_any] = ACTIONS(1559), + [anon_sym_number] = ACTIONS(1559), + [anon_sym_boolean] = ACTIONS(1559), + [anon_sym_string] = ACTIONS(1559), + [anon_sym_symbol] = ACTIONS(1559), + [anon_sym_object] = ACTIONS(1559), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3096), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(844), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [861] = { + [sym_import] = STATE(4277), + [sym_parenthesized_expression] = STATE(2152), + [sym_expression] = STATE(2715), + [sym_primary_expression] = STATE(2370), + [sym_yield_expression] = STATE(2650), + [sym_object] = STATE(2646), + [sym_object_pattern] = STATE(4155), + [sym_array] = STATE(2646), + [sym_array_pattern] = STATE(4155), + [sym_glimmer_template] = STATE(2650), + [sym_glimmer_opening_tag] = STATE(5579), + [sym_class] = STATE(2646), + [sym_function_expression] = STATE(2646), + [sym_generator_function] = STATE(2646), + [sym_arrow_function] = STATE(2646), + [sym__call_signature] = STATE(7405), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(2650), + [sym_await_expression] = STATE(2650), + [sym_member_expression] = STATE(2152), + [sym_subscript_expression] = STATE(2152), + [sym_assignment_expression] = STATE(2650), + [sym__augmented_assignment_lhs] = STATE(3821), + [sym_augmented_assignment_expression] = STATE(2650), + [sym__destructuring_pattern] = STATE(7396), + [sym_ternary_expression] = STATE(2650), + [sym_binary_expression] = STATE(2650), + [sym_unary_expression] = STATE(2650), + [sym_update_expression] = STATE(2650), + [sym_string] = STATE(2646), + [sym_comment] = STATE(861), + [sym_template_string] = STATE(2646), + [sym_regex] = STATE(2646), + [sym_meta_property] = STATE(2646), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4817), + [sym_non_null_expression] = STATE(2152), + [sym_type_assertion] = STATE(2650), + [sym_as_expression] = STATE(2650), + [sym_satisfies_expression] = STATE(2650), + [sym_instantiation_expression] = STATE(2650), + [sym_internal_module] = STATE(2650), + [sym_type_arguments] = STATE(732), + [sym_type_parameters] = STATE(6363), + [aux_sym_export_statement_repeat1] = STATE(5446), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_typeof] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1187), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1279), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_delete] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1505), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_number] = ACTIONS(187), + [sym_private_property_identifier] = ACTIONS(1511), + [sym_this] = ACTIONS(187), + [sym_super] = ACTIONS(187), + [sym_true] = ACTIONS(187), + [sym_false] = ACTIONS(187), + [sym_null] = ACTIONS(187), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [845] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(845), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [846] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3100), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(846), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [847] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(847), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [848] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(848), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [849] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(849), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [850] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(850), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [851] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3009), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7008), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3801), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7164), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(851), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2221), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(584), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(1641), - [anon_sym_set] = ACTIONS(1641), - [anon_sym_declare] = ACTIONS(1641), - [anon_sym_public] = ACTIONS(1641), - [anon_sym_private] = ACTIONS(1641), - [anon_sym_protected] = ACTIONS(1641), - [anon_sym_override] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_number] = ACTIONS(1641), - [anon_sym_boolean] = ACTIONS(1641), - [anon_sym_string] = ACTIONS(1641), - [anon_sym_symbol] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(1641), - [sym_html_comment] = ACTIONS(5), - }, - [852] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(852), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [853] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3145), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(853), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [854] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3204), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(854), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [855] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(855), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [856] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2144), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7274), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2144), - [sym_subscript_expression] = STATE(2144), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3816), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7089), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(856), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2144), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(775), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_object] = ACTIONS(1577), - [sym_html_comment] = ACTIONS(5), - }, - [857] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3155), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(857), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [858] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(858), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [859] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2230), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7090), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2230), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7185), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(859), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2230), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(657), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [860] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(860), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [861] = { - [sym_import] = STATE(4225), - [sym_parenthesized_expression] = STATE(2213), - [sym_expression] = STATE(3163), - [sym_primary_expression] = STATE(2335), - [sym_yield_expression] = STATE(2645), - [sym_object] = STATE(2644), - [sym_object_pattern] = STATE(4286), - [sym_array] = STATE(2644), - [sym_array_pattern] = STATE(4286), - [sym_glimmer_template] = STATE(2645), - [sym_glimmer_opening_tag] = STATE(5576), - [sym_class] = STATE(2644), - [sym_function_expression] = STATE(2644), - [sym_generator_function] = STATE(2644), - [sym_arrow_function] = STATE(2644), - [sym__call_signature] = STATE(7057), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2645), - [sym_await_expression] = STATE(2645), - [sym_member_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2645), - [sym__augmented_assignment_lhs] = STATE(3790), - [sym_augmented_assignment_expression] = STATE(2645), - [sym__destructuring_pattern] = STATE(7060), - [sym_ternary_expression] = STATE(2645), - [sym_binary_expression] = STATE(2645), - [sym_unary_expression] = STATE(2645), - [sym_update_expression] = STATE(2645), - [sym_string] = STATE(2644), - [sym_comment] = STATE(861), - [sym_template_string] = STATE(2644), - [sym_regex] = STATE(2644), - [sym_meta_property] = STATE(2644), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4815), - [sym_non_null_expression] = STATE(2213), - [sym_type_assertion] = STATE(2645), - [sym_as_expression] = STATE(2645), - [sym_satisfies_expression] = STATE(2645), - [sym_instantiation_expression] = STATE(2645), - [sym_internal_module] = STATE(2645), - [sym_type_arguments] = STATE(618), - [sym_type_parameters] = STATE(6346), - [aux_sym_export_statement_repeat1] = STATE(5444), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1701), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_readonly] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_declare] = ACTIONS(1479), + [anon_sym_public] = ACTIONS(1479), + [anon_sym_private] = ACTIONS(1479), + [anon_sym_protected] = ACTIONS(1479), + [anon_sym_override] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_any] = ACTIONS(1479), + [anon_sym_number] = ACTIONS(1479), + [anon_sym_boolean] = ACTIONS(1479), + [anon_sym_string] = ACTIONS(1479), + [anon_sym_symbol] = ACTIONS(1479), + [anon_sym_object] = ACTIONS(1479), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym_namespace_export] = STATE(6360), - [sym_export_clause] = STATE(5595), - [sym_declaration] = STATE(1506), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_namespace_export] = STATE(6367), + [sym_export_clause] = STATE(5598), + [sym_declaration] = STATE(1586), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(862), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -131767,7 +131779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2750), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2756), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -131776,16 +131788,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -131815,53 +131827,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym_namespace_export] = STATE(6360), - [sym_export_clause] = STATE(5595), - [sym_declaration] = STATE(1506), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_namespace_export] = STATE(6367), + [sym_export_clause] = STATE(5598), + [sym_declaration] = STATE(1586), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(863), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -131869,7 +131881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2750), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2799), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -131878,16 +131890,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -131917,53 +131929,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym_namespace_export] = STATE(6360), - [sym_export_clause] = STATE(5595), - [sym_declaration] = STATE(1506), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_namespace_export] = STATE(6367), + [sym_export_clause] = STATE(5598), + [sym_declaration] = STATE(1586), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(864), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -131971,7 +131983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2750), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2801), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -131980,16 +131992,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132019,55 +132031,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7265), - [sym_string] = STATE(4442), + [sym__call_signature] = STATE(7271), + [sym_string] = STATE(4459), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4815), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_type_parameters] = STATE(6346), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_formal_parameters] = STATE(4817), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6363), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132075,24 +132087,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132125,7 +132137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132139,35 +132151,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2805), [anon_sym_object] = ACTIONS(2805), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [866] = { - [sym__call_signature] = STATE(7265), - [sym_string] = STATE(4442), + [sym__call_signature] = STATE(7271), + [sym_string] = STATE(4459), [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4815), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_type_parameters] = STATE(6346), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_formal_parameters] = STATE(4817), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6363), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132175,24 +132187,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132225,7 +132237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132239,35 +132251,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2805), [anon_sym_object] = ACTIONS(2805), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [867] = { - [sym__call_signature] = STATE(7265), - [sym_string] = STATE(4442), + [sym__call_signature] = STATE(7271), + [sym_string] = STATE(4459), [sym_comment] = STATE(867), - [sym_formal_parameters] = STATE(4815), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_type_parameters] = STATE(6346), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_formal_parameters] = STATE(4817), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_type_parameters] = STATE(6363), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132275,24 +132287,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -132325,7 +132337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132339,37 +132351,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2805), [anon_sym_object] = ACTIONS(2805), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [868] = { - [sym_declaration] = STATE(1545), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_declaration] = STATE(1556), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(868), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2801), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -132378,16 +132390,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132417,58 +132429,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(2831), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [869] = { - [sym_declaration] = STATE(1545), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_declaration] = STATE(1556), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(869), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2756), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -132477,16 +132489,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132516,58 +132528,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(2831), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym_declaration] = STATE(1545), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_declaration] = STATE(1556), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(870), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(2799), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), @@ -132576,16 +132588,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2766), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132615,52 +132627,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(2831), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym_namespace_export] = STATE(6935), - [sym_export_clause] = STATE(5473), - [sym_declaration] = STATE(1219), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_class_declaration] = STATE(1450), - [sym_function_declaration] = STATE(1450), - [sym_generator_function_declaration] = STATE(1450), + [sym_namespace_export] = STATE(6852), + [sym_export_clause] = STATE(5386), + [sym_declaration] = STATE(1043), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_class_declaration] = STATE(1204), + [sym_function_declaration] = STATE(1204), + [sym_generator_function_declaration] = STATE(1204), [sym_comment] = STATE(871), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1450), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(1445), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [aux_sym_export_statement_repeat1] = STATE(4860), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1204), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(1205), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(4852), [anon_sym_STAR] = ACTIONS(2833), [anon_sym_default] = ACTIONS(2835), [anon_sym_type] = ACTIONS(2837), @@ -132668,24 +132680,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2841), [anon_sym_namespace] = ACTIONS(2843), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2845), [anon_sym_var] = ACTIONS(2847), [anon_sym_let] = ACTIONS(2849), [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2855), [anon_sym_async] = ACTIONS(2857), [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132715,75 +132727,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2861), [anon_sym_module] = ACTIONS(2863), [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2867), [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym_namespace_export] = STATE(6360), - [sym_export_clause] = STATE(5595), - [sym_declaration] = STATE(1506), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_namespace_export] = STATE(6764), + [sym_export_clause] = STATE(5401), + [sym_declaration] = STATE(1353), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_class_declaration] = STATE(1331), + [sym_function_declaration] = STATE(1331), + [sym_generator_function_declaration] = STATE(1331), [sym_comment] = STATE(872), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2871), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1331), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(1357), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [aux_sym_export_statement_repeat1] = STATE(4902), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2881), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_var] = ACTIONS(2885), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2889), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_function] = ACTIONS(2897), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132813,75 +132825,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2899), + [anon_sym_module] = ACTIONS(2901), + [anon_sym_abstract] = ACTIONS(2903), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2907), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym_namespace_export] = STATE(6758), - [sym_export_clause] = STATE(5396), - [sym_declaration] = STATE(1476), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_class_declaration] = STATE(1468), - [sym_function_declaration] = STATE(1468), - [sym_generator_function_declaration] = STATE(1468), + [sym_namespace_export] = STATE(6367), + [sym_export_clause] = STATE(5598), + [sym_declaration] = STATE(1586), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(873), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1468), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(1477), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [aux_sym_export_statement_repeat1] = STATE(4898), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2879), - [anon_sym_EQ] = ACTIONS(2881), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_namespace] = ACTIONS(2885), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_namespace] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_function] = ACTIONS(2901), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -132911,50 +132923,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(2905), - [anon_sym_abstract] = ACTIONS(2907), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2911), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2791), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_interface] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2797), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym_namespace_export] = STATE(6514), - [sym_export_clause] = STATE(5572), - [sym_declaration] = STATE(6328), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_class_declaration] = STATE(6327), - [sym_function_declaration] = STATE(6327), - [sym_generator_function_declaration] = STATE(6327), + [sym_namespace_export] = STATE(6931), + [sym_export_clause] = STATE(5477), + [sym_declaration] = STATE(1349), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_class_declaration] = STATE(1344), + [sym_function_declaration] = STATE(1344), + [sym_generator_function_declaration] = STATE(1344), [sym_comment] = STATE(874), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(6327), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(6331), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [aux_sym_export_statement_repeat1] = STATE(5027), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1344), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(1350), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [aux_sym_export_statement_repeat1] = STATE(4862), [anon_sym_STAR] = ACTIONS(2913), [anon_sym_default] = ACTIONS(2915), [anon_sym_type] = ACTIONS(2917), @@ -132962,24 +132974,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2921), [anon_sym_namespace] = ACTIONS(2923), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2925), [anon_sym_var] = ACTIONS(2927), [anon_sym_let] = ACTIONS(2929), [anon_sym_const] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2935), [anon_sym_async] = ACTIONS(2937), [anon_sym_function] = ACTIONS(2939), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -133009,50 +133021,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2941), [anon_sym_module] = ACTIONS(2943), [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2947), [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym_namespace_export] = STATE(6849), - [sym_export_clause] = STATE(5384), - [sym_declaration] = STATE(1198), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_class_declaration] = STATE(1197), - [sym_function_declaration] = STATE(1197), - [sym_generator_function_declaration] = STATE(1197), + [sym_namespace_export] = STATE(6520), + [sym_export_clause] = STATE(5574), + [sym_declaration] = STATE(6332), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_class_declaration] = STATE(6330), + [sym_function_declaration] = STATE(6330), + [sym_generator_function_declaration] = STATE(6330), [sym_comment] = STATE(875), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1197), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(1199), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [aux_sym_export_statement_repeat1] = STATE(4855), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(6330), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(6333), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [aux_sym_export_statement_repeat1] = STATE(5028), [anon_sym_STAR] = ACTIONS(2951), [anon_sym_default] = ACTIONS(2953), [anon_sym_type] = ACTIONS(2955), @@ -133060,24 +133072,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2959), [anon_sym_namespace] = ACTIONS(2961), [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2963), [anon_sym_var] = ACTIONS(2965), [anon_sym_let] = ACTIONS(2967), [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2973), [anon_sym_async] = ACTIONS(2975), [anon_sym_function] = ACTIONS(2977), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -133107,76 +133119,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2979), [anon_sym_module] = ACTIONS(2981), [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_interface] = ACTIONS(2985), [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(876), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_override_modifier] = STATE(3632), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3627), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133209,7 +133221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133223,57 +133235,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(877), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_override_modifier] = STATE(3632), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3627), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133306,7 +133318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133320,57 +133332,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(878), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [sym_override_modifier] = STATE(3632), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [sym_override_modifier] = STATE(3627), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133403,7 +133415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133417,56 +133429,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(879), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133497,9 +133509,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_get] = ACTIONS(2995), + [anon_sym_set] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133513,56 +133525,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(880), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133593,9 +133605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133609,56 +133621,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [881] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(881), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133689,9 +133701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133705,56 +133717,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(882), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133787,7 +133799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2989), [anon_sym_get] = ACTIONS(2989), [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133801,56 +133813,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [883] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(883), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133881,9 +133893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_get] = ACTIONS(2995), + [anon_sym_set] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133897,56 +133909,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym_string] = STATE(4442), + [sym_string] = STATE(4459), [sym_comment] = STATE(884), - [sym__property_name] = STATE(4672), - [sym_computed_property_name] = STATE(4442), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym__property_name] = STATE(4691), + [sym_computed_property_name] = STATE(4459), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -133979,7 +133991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2989), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133993,147 +134005,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2989), [anon_sym_object] = ACTIONS(2989), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [885] = { - [sym_declaration] = STATE(1545), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_declaration] = STATE(6342), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_class_declaration] = STATE(6330), + [sym_function_declaration] = STATE(6330), + [sym_generator_function_declaration] = STATE(6330), [sym_comment] = STATE(885), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [886] = { - [sym_declaration] = STATE(1210), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_class_declaration] = STATE(1197), - [sym_function_declaration] = STATE(1197), - [sym_generator_function_declaration] = STATE(1197), - [sym_comment] = STATE(886), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1197), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(1199), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [aux_sym_export_statement_repeat1] = STATE(4855), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(6330), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(6333), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [aux_sym_export_statement_repeat1] = STATE(5028), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2963), [anon_sym_var] = ACTIONS(2965), [anon_sym_let] = ACTIONS(2967), [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2973), [anon_sym_async] = ACTIONS(2975), [anon_sym_function] = ACTIONS(2977), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134163,72 +134080,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2979), [anon_sym_module] = ACTIONS(3001), [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(3003), [anon_sym_interface] = ACTIONS(2985), [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [887] = { - [sym_declaration] = STATE(6341), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_class_declaration] = STATE(6327), - [sym_function_declaration] = STATE(6327), - [sym_generator_function_declaration] = STATE(6327), - [sym_comment] = STATE(887), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(6327), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(6331), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [aux_sym_export_statement_repeat1] = STATE(5027), + [886] = { + [sym_declaration] = STATE(1362), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_class_declaration] = STATE(1344), + [sym_function_declaration] = STATE(1344), + [sym_generator_function_declaration] = STATE(1344), + [sym_comment] = STATE(886), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1344), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(1350), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [aux_sym_export_statement_repeat1] = STATE(4862), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2925), [anon_sym_var] = ACTIONS(2927), [anon_sym_let] = ACTIONS(2929), [anon_sym_const] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2935), [anon_sym_async] = ACTIONS(2937), [anon_sym_function] = ACTIONS(2939), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134258,167 +134175,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2941), [anon_sym_module] = ACTIONS(3007), [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(3009), [anon_sym_interface] = ACTIONS(2947), [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [888] = { - [sym_declaration] = STATE(1483), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_class_declaration] = STATE(1468), - [sym_function_declaration] = STATE(1468), - [sym_generator_function_declaration] = STATE(1468), - [sym_comment] = STATE(888), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1468), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(1477), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [aux_sym_export_statement_repeat1] = STATE(4898), + [887] = { + [sym_declaration] = STATE(1120), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_class_declaration] = STATE(1204), + [sym_function_declaration] = STATE(1204), + [sym_generator_function_declaration] = STATE(1204), + [sym_comment] = STATE(887), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1204), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(1205), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(4852), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_function] = ACTIONS(2901), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(2907), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2911), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [889] = { - [sym_declaration] = STATE(1432), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_class_declaration] = STATE(1450), - [sym_function_declaration] = STATE(1450), - [sym_generator_function_declaration] = STATE(1450), - [sym_comment] = STATE(889), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1450), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(1445), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [aux_sym_export_statement_repeat1] = STATE(4860), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_import] = ACTIONS(2845), [anon_sym_var] = ACTIONS(2847), [anon_sym_let] = ACTIONS(2849), [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2855), [anon_sym_async] = ACTIONS(2857), [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134448,70 +134270,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(3019), + [anon_sym_module] = ACTIONS(3013), [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3021), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3015), [anon_sym_interface] = ACTIONS(2867), [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [890] = { - [sym_declaration] = STATE(1483), - [sym_variable_declaration] = STATE(1468), - [sym_lexical_declaration] = STATE(1468), - [sym_class_declaration] = STATE(1468), - [sym_function_declaration] = STATE(1468), - [sym_generator_function_declaration] = STATE(1468), - [sym_comment] = STATE(890), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1468), - [sym_ambient_declaration] = STATE(1468), - [sym_abstract_class_declaration] = STATE(1468), - [sym_module] = STATE(1468), - [sym_internal_module] = STATE(1477), - [sym_import_alias] = STATE(1468), - [sym_interface_declaration] = STATE(1468), - [sym_enum_declaration] = STATE(1468), - [sym_type_alias_declaration] = STATE(1468), - [aux_sym_export_statement_repeat1] = STATE(4898), + [888] = { + [sym_declaration] = STATE(1472), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_class_declaration] = STATE(1331), + [sym_function_declaration] = STATE(1331), + [sym_generator_function_declaration] = STATE(1331), + [sym_comment] = STATE(888), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1331), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(1357), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [aux_sym_export_statement_repeat1] = STATE(4902), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(3017), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2893), + [anon_sym_namespace] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_var] = ACTIONS(2885), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2889), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_function] = ACTIONS(2901), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_function] = ACTIONS(2897), + [anon_sym_EQ_GT] = ACTIONS(2778), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134541,70 +134365,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(2907), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2911), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2899), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_abstract] = ACTIONS(2903), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2907), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [891] = { - [sym_declaration] = STATE(6341), - [sym_variable_declaration] = STATE(6327), - [sym_lexical_declaration] = STATE(6327), - [sym_class_declaration] = STATE(6327), - [sym_function_declaration] = STATE(6327), - [sym_generator_function_declaration] = STATE(6327), - [sym_comment] = STATE(891), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(6327), - [sym_ambient_declaration] = STATE(6327), - [sym_abstract_class_declaration] = STATE(6327), - [sym_module] = STATE(6327), - [sym_internal_module] = STATE(6331), - [sym_import_alias] = STATE(6327), - [sym_interface_declaration] = STATE(6327), - [sym_enum_declaration] = STATE(6327), - [sym_type_alias_declaration] = STATE(6327), - [aux_sym_export_statement_repeat1] = STATE(5027), + [889] = { + [sym_declaration] = STATE(1556), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), + [sym_comment] = STATE(889), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_EQ_GT] = ACTIONS(2778), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134634,163 +134460,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(2945), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [892] = { - [sym_comment] = STATE(892), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2452), - [sym_private_property_identifier] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(2831), + [anon_sym_interface] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2797), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [893] = { - [sym_declaration] = STATE(1210), - [sym_variable_declaration] = STATE(1197), - [sym_lexical_declaration] = STATE(1197), - [sym_class_declaration] = STATE(1197), - [sym_function_declaration] = STATE(1197), - [sym_generator_function_declaration] = STATE(1197), - [sym_comment] = STATE(893), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1197), - [sym_ambient_declaration] = STATE(1197), - [sym_abstract_class_declaration] = STATE(1197), - [sym_module] = STATE(1197), - [sym_internal_module] = STATE(1199), - [sym_import_alias] = STATE(1197), - [sym_interface_declaration] = STATE(1197), - [sym_enum_declaration] = STATE(1197), - [sym_type_alias_declaration] = STATE(1197), - [aux_sym_export_statement_repeat1] = STATE(4855), + [890] = { + [sym_declaration] = STATE(1120), + [sym_variable_declaration] = STATE(1204), + [sym_lexical_declaration] = STATE(1204), + [sym_class_declaration] = STATE(1204), + [sym_function_declaration] = STATE(1204), + [sym_generator_function_declaration] = STATE(1204), + [sym_comment] = STATE(890), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1204), + [sym_ambient_declaration] = STATE(1204), + [sym_abstract_class_declaration] = STATE(1204), + [sym_module] = STATE(1204), + [sym_internal_module] = STATE(1205), + [sym_import_alias] = STATE(1204), + [sym_interface_declaration] = STATE(1204), + [sym_enum_declaration] = STATE(1204), + [sym_type_alias_declaration] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(4852), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2843), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134820,70 +134553,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_abstract] = ACTIONS(2983), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2987), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2861), + [anon_sym_module] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(2865), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2869), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [894] = { - [sym_declaration] = STATE(1432), - [sym_variable_declaration] = STATE(1450), - [sym_lexical_declaration] = STATE(1450), - [sym_class_declaration] = STATE(1450), - [sym_function_declaration] = STATE(1450), - [sym_generator_function_declaration] = STATE(1450), - [sym_comment] = STATE(894), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1450), - [sym_ambient_declaration] = STATE(1450), - [sym_abstract_class_declaration] = STATE(1450), - [sym_module] = STATE(1450), - [sym_internal_module] = STATE(1445), - [sym_import_alias] = STATE(1450), - [sym_interface_declaration] = STATE(1450), - [sym_enum_declaration] = STATE(1450), - [sym_type_alias_declaration] = STATE(1450), - [aux_sym_export_statement_repeat1] = STATE(4860), + [891] = { + [sym_comment] = STATE(891), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_override] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_object] = ACTIONS(2486), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [892] = { + [sym_declaration] = STATE(1472), + [sym_variable_declaration] = STATE(1331), + [sym_lexical_declaration] = STATE(1331), + [sym_class_declaration] = STATE(1331), + [sym_function_declaration] = STATE(1331), + [sym_generator_function_declaration] = STATE(1331), + [sym_comment] = STATE(892), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1331), + [sym_ambient_declaration] = STATE(1331), + [sym_abstract_class_declaration] = STATE(1331), + [sym_module] = STATE(1331), + [sym_internal_module] = STATE(1357), + [sym_import_alias] = STATE(1331), + [sym_interface_declaration] = STATE(1331), + [sym_enum_declaration] = STATE(1331), + [sym_type_alias_declaration] = STATE(1331), + [aux_sym_export_statement_repeat1] = STATE(4902), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_var] = ACTIONS(2885), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2889), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2859), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_function] = ACTIONS(2897), [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -134913,73 +134739,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2861), + [anon_sym_declare] = ACTIONS(2899), [anon_sym_module] = ACTIONS(3019), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_abstract] = ACTIONS(2903), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2869), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2907), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [893] = { + [sym_comment] = STATE(893), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_override] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_object] = ACTIONS(2486), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [894] = { + [sym_declaration] = STATE(4992), + [sym_variable_declaration] = STATE(4988), + [sym_lexical_declaration] = STATE(4988), + [sym_class_declaration] = STATE(4988), + [sym_function_declaration] = STATE(4988), + [sym_generator_function_declaration] = STATE(4988), + [sym_comment] = STATE(894), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(4988), + [sym_ambient_declaration] = STATE(4988), + [sym_abstract_class_declaration] = STATE(4988), + [sym_module] = STATE(4988), + [sym_internal_module] = STATE(4995), + [sym_import_alias] = STATE(4988), + [sym_interface_declaration] = STATE(4988), + [sym_enum_declaration] = STATE(4988), + [sym_type_alias_declaration] = STATE(4988), + [aux_sym_export_statement_repeat1] = STATE(4889), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3025), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(209), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_async] = ACTIONS(3039), + [anon_sym_function] = ACTIONS(3041), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(209), + [anon_sym_PLUS_EQ] = ACTIONS(2780), + [anon_sym_DASH_EQ] = ACTIONS(2780), + [anon_sym_STAR_EQ] = ACTIONS(2780), + [anon_sym_SLASH_EQ] = ACTIONS(2780), + [anon_sym_PERCENT_EQ] = ACTIONS(2780), + [anon_sym_CARET_EQ] = ACTIONS(2780), + [anon_sym_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_LT_LT_EQ] = ACTIONS(2780), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_declare] = ACTIONS(3043), + [anon_sym_module] = ACTIONS(3045), + [anon_sym_abstract] = ACTIONS(3047), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3053), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [895] = { [sym_comment] = STATE(895), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(958), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2482), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_let] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2482), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135006,73 +135018,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2452), - [sym_private_property_identifier] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(1035), + [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(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [896] = { [sym_comment] = STATE(896), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(958), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2482), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2482), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135099,52 +135111,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(985), - [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), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(1035), + [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(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [897] = { - [sym_declaration] = STATE(1545), - [sym_variable_declaration] = STATE(1580), - [sym_lexical_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym_generator_function_declaration] = STATE(1580), + [sym_declaration] = STATE(1556), + [sym_variable_declaration] = STATE(1618), + [sym_lexical_declaration] = STATE(1618), + [sym_class_declaration] = STATE(1618), + [sym_function_declaration] = STATE(1618), + [sym_generator_function_declaration] = STATE(1618), [sym_comment] = STATE(897), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(1580), - [sym_ambient_declaration] = STATE(1580), - [sym_abstract_class_declaration] = STATE(1580), - [sym_module] = STATE(1580), - [sym_internal_module] = STATE(1507), - [sym_import_alias] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_type_alias_declaration] = STATE(1580), - [aux_sym_export_statement_repeat1] = STATE(4857), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1618), + [sym_ambient_declaration] = STATE(1618), + [sym_abstract_class_declaration] = STATE(1618), + [sym_module] = STATE(1618), + [sym_internal_module] = STATE(1584), + [sym_import_alias] = STATE(1618), + [sym_interface_declaration] = STATE(1618), + [sym_enum_declaration] = STATE(1618), + [sym_type_alias_declaration] = STATE(1618), + [aux_sym_export_statement_repeat1] = STATE(4853), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_import] = ACTIONS(2758), @@ -135152,17 +135164,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2762), [anon_sym_const] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(209), [anon_sym_class] = ACTIONS(2772), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -135192,163 +135204,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_satisfies] = ACTIONS(209), [anon_sym_global] = ACTIONS(2831), [anon_sym_interface] = ACTIONS(2795), [anon_sym_enum] = ACTIONS(2797), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [898] = { + [sym_declaration] = STATE(6342), + [sym_variable_declaration] = STATE(6330), + [sym_lexical_declaration] = STATE(6330), + [sym_class_declaration] = STATE(6330), + [sym_function_declaration] = STATE(6330), + [sym_generator_function_declaration] = STATE(6330), [sym_comment] = STATE(898), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(985), - [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [899] = { - [sym_declaration] = STATE(4992), - [sym_variable_declaration] = STATE(5000), - [sym_lexical_declaration] = STATE(5000), - [sym_class_declaration] = STATE(5000), - [sym_function_declaration] = STATE(5000), - [sym_generator_function_declaration] = STATE(5000), - [sym_comment] = STATE(899), - [sym_decorator] = STATE(5596), - [sym_function_signature] = STATE(5000), - [sym_ambient_declaration] = STATE(5000), - [sym_abstract_class_declaration] = STATE(5000), - [sym_module] = STATE(5000), - [sym_internal_module] = STATE(4993), - [sym_import_alias] = STATE(5000), - [sym_interface_declaration] = STATE(5000), - [sym_enum_declaration] = STATE(5000), - [sym_type_alias_declaration] = STATE(5000), - [aux_sym_export_statement_repeat1] = STATE(4885), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(6330), + [sym_ambient_declaration] = STATE(6330), + [sym_abstract_class_declaration] = STATE(6330), + [sym_module] = STATE(6330), + [sym_internal_module] = STATE(6333), + [sym_import_alias] = STATE(6330), + [sym_interface_declaration] = STATE(6330), + [sym_enum_declaration] = STATE(6330), + [sym_type_alias_declaration] = STATE(6330), + [aux_sym_export_statement_repeat1] = STATE(5028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3029), - [anon_sym_var] = ACTIONS(3031), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_async] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2977), [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_QMARK_DOT] = ACTIONS(209), [anon_sym_PLUS_EQ] = ACTIONS(2780), [anon_sym_DASH_EQ] = ACTIONS(2780), [anon_sym_STAR_EQ] = ACTIONS(2780), @@ -135378,73 +135297,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(209), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(209), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3053), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_declare] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(3001), + [anon_sym_abstract] = ACTIONS(2983), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3003), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2987), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [900] = { - [sym_comment] = STATE(900), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(958), + [899] = { + [sym_comment] = STATE(899), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2486), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(2486), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2486), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135471,73 +135390,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2452), - [sym_private_property_identifier] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = ACTIONS(2486), + [anon_sym_get] = ACTIONS(2486), + [anon_sym_set] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(2486), + [anon_sym_public] = ACTIONS(2486), + [anon_sym_private] = ACTIONS(2486), + [anon_sym_protected] = ACTIONS(2486), + [anon_sym_override] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_any] = ACTIONS(2486), + [anon_sym_number] = ACTIONS(2486), + [anon_sym_boolean] = ACTIONS(2486), + [anon_sym_string] = ACTIONS(2486), + [anon_sym_symbol] = ACTIONS(2486), + [anon_sym_object] = ACTIONS(2486), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [900] = { + [sym_declaration] = STATE(1362), + [sym_variable_declaration] = STATE(1344), + [sym_lexical_declaration] = STATE(1344), + [sym_class_declaration] = STATE(1344), + [sym_function_declaration] = STATE(1344), + [sym_generator_function_declaration] = STATE(1344), + [sym_comment] = STATE(900), + [sym_decorator] = STATE(5599), + [sym_function_signature] = STATE(1344), + [sym_ambient_declaration] = STATE(1344), + [sym_abstract_class_declaration] = STATE(1344), + [sym_module] = STATE(1344), + [sym_internal_module] = STATE(1350), + [sym_import_alias] = STATE(1344), + [sym_interface_declaration] = STATE(1344), + [sym_enum_declaration] = STATE(1344), + [sym_type_alias_declaration] = STATE(1344), + [aux_sym_export_statement_repeat1] = STATE(4862), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(209), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(209), + [anon_sym_PLUS_EQ] = ACTIONS(2780), + [anon_sym_DASH_EQ] = ACTIONS(2780), + [anon_sym_STAR_EQ] = ACTIONS(2780), + [anon_sym_SLASH_EQ] = ACTIONS(2780), + [anon_sym_PERCENT_EQ] = ACTIONS(2780), + [anon_sym_CARET_EQ] = ACTIONS(2780), + [anon_sym_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_LT_LT_EQ] = ACTIONS(2780), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(209), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(209), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(209), + [anon_sym_GT_EQ] = ACTIONS(209), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(209), + [anon_sym_PLUS_PLUS] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(209), + [aux_sym_comment_token1] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_declare] = ACTIONS(2941), + [anon_sym_module] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_satisfies] = ACTIONS(209), + [anon_sym_global] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2949), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [901] = { [sym_comment] = STATE(901), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(958), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2482), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_let] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(2482), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135564,35 +135576,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(985), - [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), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(1035), + [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(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [902] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(902), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), @@ -135614,24 +135626,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135676,53 +135688,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(903), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135753,7 +135765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3057), [anon_sym_get] = ACTIONS(3057), [anon_sym_set] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(3057), [anon_sym_public] = ACTIONS(3057), [anon_sym_private] = ACTIONS(3057), @@ -135767,19 +135779,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [904] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(904), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), @@ -135788,30 +135800,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1205), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), [anon_sym_function] = ACTIONS(3071), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135855,53 +135867,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [905] = { - [sym__call_signature] = STATE(7167), + [sym__call_signature] = STATE(6966), [sym_comment] = STATE(905), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3073), [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(214), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(214), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3075), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135932,6 +135943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3075), [anon_sym_get] = ACTIONS(3075), [anon_sym_set] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(3075), [anon_sym_public] = ACTIONS(3075), [anon_sym_private] = ACTIONS(3075), @@ -135945,51 +135957,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3075), [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(906), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136033,52 +136045,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym__call_signature] = STATE(7189), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(907), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3079), - [anon_sym_export] = ACTIONS(3081), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(3069), [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136105,37 +136117,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_declare] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_any] = ACTIONS(3081), - [anon_sym_number] = ACTIONS(3081), - [anon_sym_boolean] = ACTIONS(3081), - [anon_sym_string] = ACTIONS(3081), - [anon_sym_symbol] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [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_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [908] = { - [sym__call_signature] = STATE(7189), + [sym__call_signature] = STATE(7192), [sym_comment] = STATE(908), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3079), [anon_sym_export] = ACTIONS(3081), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3081), [anon_sym_COMMA] = ACTIONS(118), @@ -136149,25 +136161,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136211,25 +136223,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3081), [anon_sym_object] = ACTIONS(3081), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym__call_signature] = STATE(7167), + [sym__call_signature] = STATE(7173), [sym_comment] = STATE(909), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3087), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3075), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -136238,26 +136250,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), + [anon_sym_async] = ACTIONS(3087), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136284,68 +136296,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7192), [sym_comment] = STATE(910), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3081), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3081), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3081), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), + [anon_sym_async] = ACTIONS(3081), [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136372,70 +136384,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [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_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym__call_signature] = STATE(7167), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(911), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3075), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136462,68 +136473,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(912), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136567,52 +136579,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym__call_signature] = STATE(6960), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(913), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136639,37 +136651,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(914), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), @@ -136683,25 +136695,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136745,52 +136757,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7173), [sym_comment] = STATE(915), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136817,37 +136830,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [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_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7271), [sym_comment] = STATE(916), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), @@ -136856,30 +136868,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136923,52 +136935,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym__call_signature] = STATE(7265), + [sym__call_signature] = STATE(7173), [sym_comment] = STATE(917), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3087), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -136995,68 +137008,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [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_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym__call_signature] = STATE(7142), + [sym__call_signature] = STATE(6966), [sym_comment] = STATE(918), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3075), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3075), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137083,68 +137096,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym__call_signature] = STATE(7142), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(919), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3093), [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3095), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137188,52 +137201,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3095), [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym__call_signature] = STATE(7167), + [sym__call_signature] = STATE(7153), [sym_comment] = STATE(920), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3073), - [anon_sym_export] = ACTIONS(3075), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3075), + [anon_sym_async] = ACTIONS(3099), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137260,68 +137271,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3075), - [anon_sym_get] = ACTIONS(3075), - [anon_sym_set] = ACTIONS(3075), - [anon_sym_declare] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_protected] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_any] = ACTIONS(3075), - [anon_sym_number] = ACTIONS(3075), - [anon_sym_boolean] = ACTIONS(3075), - [anon_sym_string] = ACTIONS(3075), - [anon_sym_symbol] = ACTIONS(3075), - [anon_sym_object] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym__call_signature] = STATE(6960), + [sym__call_signature] = STATE(7153), [sym_comment] = STATE(921), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3099), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3087), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), + [anon_sym_async] = ACTIONS(3099), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137348,68 +137359,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym__call_signature] = STATE(7254), + [sym__call_signature] = STATE(7173), [sym_comment] = STATE(922), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3087), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137436,40 +137448,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym__call_signature] = STATE(6960), + [sym__call_signature] = STATE(6966), [sym_comment] = STATE(923), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3085), - [anon_sym_export] = ACTIONS(3087), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1243), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3075), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3087), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_RPAREN] = ACTIONS(118), @@ -137478,26 +137490,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3087), + [anon_sym_async] = ACTIONS(3075), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137524,36 +137536,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_get] = ACTIONS(3087), - [anon_sym_set] = ACTIONS(3087), - [anon_sym_declare] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_any] = ACTIONS(3087), - [anon_sym_number] = ACTIONS(3087), - [anon_sym_boolean] = ACTIONS(3087), - [anon_sym_string] = ACTIONS(3087), - [anon_sym_symbol] = ACTIONS(3087), - [anon_sym_object] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym__call_signature] = STATE(7059), + [sym__call_signature] = STATE(7065), [sym_comment] = STATE(924), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137565,25 +137577,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_function] = ACTIONS(3071), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137627,20 +137639,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym__call_signature] = STATE(7059), + [sym__call_signature] = STATE(7065), [sym_comment] = STATE(925), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137653,24 +137665,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), [anon_sym_function] = ACTIONS(3083), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137714,20 +137726,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym__call_signature] = STATE(7059), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(926), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [927] = { + [sym__call_signature] = STATE(7065), + [sym_comment] = STATE(927), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137739,25 +137838,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3071), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137801,20 +137900,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [927] = { - [sym__call_signature] = STATE(7059), - [sym_comment] = STATE(927), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [928] = { + [sym__call_signature] = STATE(7065), + [sym_comment] = STATE(928), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137826,25 +137925,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137888,20 +137987,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [928] = { - [sym__call_signature] = STATE(7059), - [sym_comment] = STATE(928), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [929] = { + [sym__call_signature] = STATE(7065), + [sym_comment] = STATE(929), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137914,24 +138013,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), [anon_sym_function] = ACTIONS(3105), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -137975,51 +138074,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [929] = { - [sym__call_signature] = STATE(7254), - [sym_comment] = STATE(929), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [930] = { + [sym__call_signature] = STATE(7065), + [sym_comment] = STATE(930), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_let] = ACTIONS(3103), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138046,154 +138144,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3103), + [anon_sym_set] = ACTIONS(3103), + [anon_sym_declare] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_module] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3103), + [anon_sym_number] = ACTIONS(3103), + [anon_sym_boolean] = ACTIONS(3103), + [anon_sym_string] = ACTIONS(3103), + [anon_sym_symbol] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [930] = { - [sym_catch_clause] = STATE(954), - [sym_finally_clause] = STATE(1031), - [sym_comment] = STATE(930), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3109), - [anon_sym_finally] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [931] = { - [sym__call_signature] = STATE(7254), + [sym__call_signature] = STATE(7065), [sym_comment] = STATE(931), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_let] = ACTIONS(3103), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138220,67 +138231,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3103), + [anon_sym_set] = ACTIONS(3103), + [anon_sym_declare] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_module] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3103), + [anon_sym_number] = ACTIONS(3103), + [anon_sym_boolean] = ACTIONS(3103), + [anon_sym_string] = ACTIONS(3103), + [anon_sym_symbol] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [932] = { - [sym__call_signature] = STATE(7254), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(932), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3095), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138307,36 +138319,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym__call_signature] = STATE(7059), + [sym__call_signature] = STATE(7065), [sym_comment] = STATE(933), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1289), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -138348,25 +138360,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(1295), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138410,50 +138422,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3103), [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym__call_signature] = STATE(7059), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(934), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138480,67 +138493,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym__call_signature] = STATE(7059), + [sym_catch_clause] = STATE(970), + [sym_finally_clause] = STATE(1074), [sym_comment] = STATE(935), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3107), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_typeof] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_debugger] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_catch] = ACTIONS(3109), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_LTtemplate_GT] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_void] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3107), + [sym_number] = ACTIONS(3107), + [sym_private_property_identifier] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [sym_super] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_null] = ACTIONS(3107), + [sym_undefined] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_interface] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [sym_html_comment] = ACTIONS(5), + }, + [936] = { + [sym_catch_clause] = STATE(1016), + [sym_finally_clause] = STATE(1259), + [sym_comment] = STATE(936), + [sym_identifier] = ACTIONS(3107), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_typeof] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_debugger] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_catch] = ACTIONS(3113), + [anon_sym_finally] = ACTIONS(3115), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_LTtemplate_GT] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_void] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3107), + [sym_number] = ACTIONS(3107), + [sym_private_property_identifier] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [sym_super] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_null] = ACTIONS(3107), + [sym_undefined] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_interface] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [sym_html_comment] = ACTIONS(5), + }, + [937] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(937), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3057), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138567,40 +138752,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [936] = { - [sym__call_signature] = STATE(7112), - [sym_comment] = STATE(936), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3113), - [anon_sym_export] = ACTIONS(3115), + [938] = { + [sym__call_signature] = STATE(7121), + [sym_comment] = STATE(938), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3117), + [anon_sym_export] = ACTIONS(3119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(1307), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -138608,26 +138792,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3119), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138654,66 +138838,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_get] = ACTIONS(3115), - [anon_sym_set] = ACTIONS(3115), - [anon_sym_declare] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_module] = ACTIONS(3115), - [anon_sym_any] = ACTIONS(3115), - [anon_sym_number] = ACTIONS(3115), - [anon_sym_boolean] = ACTIONS(3115), - [anon_sym_string] = ACTIONS(3115), - [anon_sym_symbol] = ACTIONS(3115), - [anon_sym_object] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_readonly] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3119), + [anon_sym_set] = ACTIONS(3119), + [anon_sym_declare] = ACTIONS(3119), + [anon_sym_public] = ACTIONS(3119), + [anon_sym_private] = ACTIONS(3119), + [anon_sym_protected] = ACTIONS(3119), + [anon_sym_override] = ACTIONS(3119), + [anon_sym_module] = ACTIONS(3119), + [anon_sym_any] = ACTIONS(3119), + [anon_sym_number] = ACTIONS(3119), + [anon_sym_boolean] = ACTIONS(3119), + [anon_sym_string] = ACTIONS(3119), + [anon_sym_symbol] = ACTIONS(3119), + [anon_sym_object] = ACTIONS(3119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [937] = { - [sym__call_signature] = STATE(7002), - [sym_comment] = STATE(937), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [939] = { + [sym_comment] = STATE(939), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3121), + [sym_html_comment] = ACTIONS(5), + }, + [940] = { + [sym__call_signature] = STATE(7121), + [sym_comment] = STATE(940), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3117), [anon_sym_export] = ACTIONS(3119), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3119), - [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3119), [anon_sym_let] = ACTIONS(3119), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3119), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_EQ_GT] = ACTIONS(1301), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138757,100 +139027,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3119), [anon_sym_object] = ACTIONS(3119), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [938] = { - [sym_comment] = STATE(938), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3121), - [sym_html_comment] = ACTIONS(5), - }, - [939] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(939), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [941] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(941), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), @@ -138868,24 +139052,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -138929,221 +139113,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym__call_signature] = STATE(7254), - [sym_comment] = STATE(940), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_comment] = STATE(941), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3123), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(942), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(1281), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), + [anon_sym_async] = ACTIONS(3095), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139170,66 +139182,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(3057), - [anon_sym_set] = ACTIONS(3057), - [anon_sym_declare] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_override] = ACTIONS(3057), - [anon_sym_module] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(3057), - [anon_sym_number] = ACTIONS(3057), - [anon_sym_boolean] = ACTIONS(3057), - [anon_sym_string] = ACTIONS(3057), - [anon_sym_symbol] = ACTIONS(3057), - [anon_sym_object] = ACTIONS(3057), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym__call_signature] = STATE(7112), + [sym__call_signature] = STATE(6999), [sym_comment] = STATE(943), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3113), - [anon_sym_export] = ACTIONS(3115), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3125), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3125), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_let] = ACTIONS(3125), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3125), [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139256,39 +139268,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_get] = ACTIONS(3115), - [anon_sym_set] = ACTIONS(3115), - [anon_sym_declare] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_module] = ACTIONS(3115), - [anon_sym_any] = ACTIONS(3115), - [anon_sym_number] = ACTIONS(3115), - [anon_sym_boolean] = ACTIONS(3115), - [anon_sym_string] = ACTIONS(3115), - [anon_sym_symbol] = ACTIONS(3115), - [anon_sym_object] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(3125), + [anon_sym_set] = ACTIONS(3125), + [anon_sym_declare] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_module] = ACTIONS(3125), + [anon_sym_any] = ACTIONS(3125), + [anon_sym_number] = ACTIONS(3125), + [anon_sym_boolean] = ACTIONS(3125), + [anon_sym_string] = ACTIONS(3125), + [anon_sym_symbol] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym__call_signature] = STATE(7254), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(944), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3095), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -139296,26 +139308,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3095), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139342,39 +139354,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym__call_signature] = STATE(7002), [sym_comment] = STATE(945), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), - [sym_identifier] = ACTIONS(3117), - [anon_sym_export] = ACTIONS(3119), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3127), + [sym_html_comment] = ACTIONS(5), + }, + [946] = { + [sym__call_signature] = STATE(6999), + [sym_comment] = STATE(946), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), + [sym_identifier] = ACTIONS(3123), + [anon_sym_export] = ACTIONS(3125), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(1321), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_let] = ACTIONS(3125), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -139382,26 +139480,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3119), + [anon_sym_async] = ACTIONS(3125), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139428,119 +139526,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_get] = ACTIONS(3119), - [anon_sym_set] = ACTIONS(3119), - [anon_sym_declare] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_module] = ACTIONS(3119), - [anon_sym_any] = ACTIONS(3119), - [anon_sym_number] = ACTIONS(3119), - [anon_sym_boolean] = ACTIONS(3119), - [anon_sym_string] = ACTIONS(3119), - [anon_sym_symbol] = ACTIONS(3119), - [anon_sym_object] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(3125), + [anon_sym_set] = ACTIONS(3125), + [anon_sym_declare] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_protected] = ACTIONS(3125), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_module] = ACTIONS(3125), + [anon_sym_any] = ACTIONS(3125), + [anon_sym_number] = ACTIONS(3125), + [anon_sym_boolean] = ACTIONS(3125), + [anon_sym_string] = ACTIONS(3125), + [anon_sym_symbol] = ACTIONS(3125), + [anon_sym_object] = ACTIONS(3125), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_catch_clause] = STATE(991), - [sym_finally_clause] = STATE(1427), - [sym_comment] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3127), - [anon_sym_finally] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_catch_clause] = STATE(989), - [sym_finally_clause] = STATE(1418), + [sym_catch_clause] = STATE(996), + [sym_finally_clause] = STATE(1427), [sym_comment] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(3129), [sym_identifier] = ACTIONS(3107), [anon_sym_export] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), [anon_sym_type] = ACTIONS(3107), [anon_sym_namespace] = ACTIONS(3107), [anon_sym_LBRACE] = ACTIONS(3107), @@ -139552,6 +139564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3107), [anon_sym_const] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_switch] = ACTIONS(3107), [anon_sym_for] = ACTIONS(3107), @@ -139566,7 +139579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3107), [anon_sym_throw] = ACTIONS(3107), [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), [anon_sym_catch] = ACTIONS(3131), [anon_sym_finally] = ACTIONS(3133), [anon_sym_yield] = ACTIONS(3107), @@ -139621,15 +139633,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym__call_signature] = STATE(7075), + [sym_statement_block] = STATE(1124), [sym_comment] = STATE(948), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [949] = { + [sym_comment] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_html_comment] = ACTIONS(5), + }, + [950] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(950), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1389), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -139641,24 +139823,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139702,189 +139884,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [949] = { - [sym_catch_clause] = STATE(1159), - [sym_finally_clause] = STATE(1593), - [sym_comment] = STATE(949), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3135), - [anon_sym_finally] = ACTIONS(3137), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [sym_html_comment] = ACTIONS(5), - }, - [950] = { - [sym_comment] = STATE(950), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3139), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(951), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1387), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -139896,24 +139908,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -139957,359 +139969,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [952] = { [sym_comment] = STATE(952), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3141), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_statement_block] = STATE(1140), [sym_comment] = STATE(953), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_finally_clause] = STATE(1083), [sym_comment] = STATE(954), - [sym_identifier] = ACTIONS(3145), - [anon_sym_export] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_debugger] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LTtemplate_GT] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_function] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_void] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3145), - [sym_number] = ACTIONS(3145), - [sym_private_property_identifier] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - [sym_super] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_null] = ACTIONS(3145), - [sym_undefined] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_get] = ACTIONS(3145), - [anon_sym_set] = ACTIONS(3145), - [anon_sym_declare] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3145), - [anon_sym_number] = ACTIONS(3145), - [anon_sym_boolean] = ACTIONS(3145), - [anon_sym_string] = ACTIONS(3145), - [anon_sym_symbol] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3143), [sym_html_comment] = ACTIONS(5), }, [955] = { [sym_comment] = STATE(955), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3147), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(956), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140321,24 +140333,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -140382,19 +140394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym__call_signature] = STATE(7075), + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(957), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1397), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140406,24 +140418,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -140467,19 +140479,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym__call_signature] = STATE(7075), + [sym_statement_block] = STATE(1124), [sym_comment] = STATE(958), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [959] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(959), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1391), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140491,24 +140588,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -140552,274 +140649,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [959] = { - [sym_comment] = STATE(959), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3149), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [960] = { + [sym_catch_clause] = STATE(1085), + [sym_finally_clause] = STATE(1567), [sym_comment] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3151), + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3107), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_typeof] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_debugger] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_finally] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_LTtemplate_GT] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_void] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3107), + [sym_number] = ACTIONS(3107), + [sym_private_property_identifier] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [sym_super] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_null] = ACTIONS(3107), + [sym_undefined] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_interface] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), [sym_html_comment] = ACTIONS(5), }, [961] = { + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(961), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(962), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1395), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140831,24 +140758,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -140892,19 +140819,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(963), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [962] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(962), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1381), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140916,24 +140843,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -140977,19 +140904,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(964), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [963] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(963), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1393), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141001,24 +140928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -141062,19 +140989,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [964] = { + [sym_comment] = STATE(964), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym__call_signature] = STATE(7075), [sym_comment] = STATE(965), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_catch] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym_html_comment] = ACTIONS(5), + }, + [966] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(966), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1385), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141086,24 +141183,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -141147,19 +141244,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(966), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [967] = { + [sym__call_signature] = STATE(7086), + [sym_comment] = STATE(967), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1329), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141171,24 +141268,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -141232,189 +141329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [967] = { - [sym_comment] = STATE(967), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3153), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [968] = { + [sym__call_signature] = STATE(7086), [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3155), - [sym_html_comment] = ACTIONS(5), - }, - [969] = { - [sym__call_signature] = STATE(7075), - [sym_comment] = STATE(969), - [sym_formal_parameters] = STATE(4815), - [sym_type_parameters] = STATE(6346), + [sym_formal_parameters] = STATE(4817), + [sym_type_parameters] = STATE(6363), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1383), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141426,24 +141353,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -141487,684 +141414,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3057), [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [969] = { + [sym_comment] = STATE(969), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3155), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_statement_block] = STATE(1140), + [sym_finally_clause] = STATE(1117), [sym_comment] = STATE(970), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [971] = { [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3159), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_statement_block] = STATE(1345), + [sym_statement_block] = STATE(1291), [sym_comment] = STATE(972), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [973] = { [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2284), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [sym__automatic_semicolon] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, [974] = { [sym_comment] = STATE(974), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [975] = { + [sym_else_clause] = STATE(1108), [sym_comment] = STATE(975), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2238), - [sym_html_comment] = ACTIONS(5), - }, - [976] = { - [sym_statement_block] = STATE(1140), - [sym_comment] = STATE(976), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym_html_comment] = ACTIONS(5), - }, - [977] = { - [sym_comment] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3165), - [sym_html_comment] = ACTIONS(5), - }, - [978] = { - [sym_comment] = STATE(978), [sym_identifier] = ACTIONS(3167), [anon_sym_export] = ACTIONS(3167), [anon_sym_default] = ACTIONS(3167), @@ -142179,7 +141940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3167), [anon_sym_const] = ACTIONS(3167), [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3169), [anon_sym_if] = ACTIONS(3167), [anon_sym_switch] = ACTIONS(3167), [anon_sym_for] = ACTIONS(3167), @@ -142195,7 +141956,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(3167), [anon_sym_SEMI] = ACTIONS(3167), [anon_sym_case] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3167), [anon_sym_yield] = ACTIONS(3167), [anon_sym_LBRACK] = ACTIONS(3167), [anon_sym_LTtemplate_GT] = ACTIONS(3167), @@ -142247,1604 +142007,1352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, + [976] = { + [sym_comment] = STATE(976), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [977] = { + [sym_comment] = STATE(977), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2144), + [sym_html_comment] = ACTIONS(5), + }, + [978] = { + [sym_comment] = STATE(978), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_finally] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [sym_html_comment] = ACTIONS(5), + }, [979] = { [sym_comment] = STATE(979), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3173), [sym_html_comment] = ACTIONS(5), }, [980] = { [sym_comment] = STATE(980), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, [981] = { [sym_comment] = STATE(981), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2180), [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_statement_block] = STATE(1482), [sym_comment] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [983] = { [sym_comment] = STATE(983), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2226), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_statement_block] = STATE(1482), + [sym_statement_block] = STATE(1404), [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [985] = { [sym_comment] = STATE(985), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [986] = { [sym_comment] = STATE(986), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3175), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3181), [sym_html_comment] = ACTIONS(5), }, [987] = { [sym_comment] = STATE(987), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2280), [sym_html_comment] = ACTIONS(5), }, [988] = { [sym_comment] = STATE(988), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3177), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2242), [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_finally_clause] = STATE(1479), [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(3145), - [anon_sym_export] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_debugger] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LTtemplate_GT] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_function] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_void] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3145), - [sym_number] = ACTIONS(3145), - [sym_private_property_identifier] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - [sym_super] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_null] = ACTIONS(3145), - [sym_undefined] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_get] = ACTIONS(3145), - [anon_sym_set] = ACTIONS(3145), - [anon_sym_declare] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3145), - [anon_sym_number] = ACTIONS(3145), - [anon_sym_boolean] = ACTIONS(3145), - [anon_sym_string] = ACTIONS(3145), - [anon_sym_symbol] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [990] = { - [sym_statement_block] = STATE(1345), [sym_comment] = STATE(990), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [991] = { - [sym_finally_clause] = STATE(1363), [sym_comment] = STATE(991), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3145), - [anon_sym_export] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_debugger] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LTtemplate_GT] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_function] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_void] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3145), - [sym_number] = ACTIONS(3145), - [sym_private_property_identifier] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - [sym_super] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_null] = ACTIONS(3145), - [sym_undefined] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_get] = ACTIONS(3145), - [anon_sym_set] = ACTIONS(3145), - [anon_sym_declare] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3145), - [anon_sym_number] = ACTIONS(3145), - [anon_sym_boolean] = ACTIONS(3145), - [anon_sym_string] = ACTIONS(3145), - [anon_sym_symbol] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), [sym_html_comment] = ACTIONS(5), }, [992] = { [sym_comment] = STATE(992), - [sym_identifier] = ACTIONS(3183), - [anon_sym_export] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym_import] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_debugger] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_finally] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LTtemplate_GT] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_function] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_void] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3183), - [sym_number] = ACTIONS(3183), - [sym_private_property_identifier] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [sym_super] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_null] = ACTIONS(3183), - [sym_undefined] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_get] = ACTIONS(3183), - [anon_sym_set] = ACTIONS(3183), - [anon_sym_declare] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_module] = ACTIONS(3183), - [anon_sym_any] = ACTIONS(3183), - [anon_sym_number] = ACTIONS(3183), - [anon_sym_boolean] = ACTIONS(3183), - [anon_sym_string] = ACTIONS(3183), - [anon_sym_symbol] = ACTIONS(3183), - [anon_sym_object] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [sym_html_comment] = ACTIONS(5), - }, - [993] = { - [sym_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3185), - [sym_html_comment] = ACTIONS(5), - }, - [994] = { - [sym_else_clause] = STATE(1471), - [sym_comment] = STATE(994), - [sym_identifier] = ACTIONS(3187), - [anon_sym_export] = ACTIONS(3187), - [anon_sym_default] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_debugger] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_case] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LTtemplate_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_void] = ACTIONS(3187), - [anon_sym_delete] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3187), - [sym_number] = ACTIONS(3187), - [sym_private_property_identifier] = ACTIONS(3187), - [sym_this] = ACTIONS(3187), - [sym_super] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [sym_undefined] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3187), - [anon_sym_set] = ACTIONS(3187), - [anon_sym_declare] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(3187), - [anon_sym_any] = ACTIONS(3187), - [anon_sym_number] = ACTIONS(3187), - [anon_sym_boolean] = ACTIONS(3187), - [anon_sym_string] = ACTIONS(3187), - [anon_sym_symbol] = ACTIONS(3187), - [anon_sym_object] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [sym_html_comment] = ACTIONS(5), - }, - [995] = { - [sym_comment] = STATE(995), - [sym_identifier] = ACTIONS(3191), - [anon_sym_export] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_debugger] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LTtemplate_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3191), - [sym_number] = ACTIONS(3191), - [sym_private_property_identifier] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - [sym_super] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_null] = ACTIONS(3191), - [sym_undefined] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3191), - [anon_sym_set] = ACTIONS(3191), - [anon_sym_declare] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_module] = ACTIONS(3191), - [anon_sym_any] = ACTIONS(3191), - [anon_sym_number] = ACTIONS(3191), - [anon_sym_boolean] = ACTIONS(3191), - [anon_sym_string] = ACTIONS(3191), - [anon_sym_symbol] = ACTIONS(3191), - [anon_sym_object] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_html_comment] = ACTIONS(5), - }, - [996] = { - [sym_comment] = STATE(996), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3197), - [sym_html_comment] = ACTIONS(5), - }, - [997] = { - [sym_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3199), - [sym_html_comment] = ACTIONS(5), - }, - [998] = { - [sym_comment] = STATE(998), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), [anon_sym_default] = ACTIONS(2152), @@ -143878,6 +143386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_SQUOTE] = ACTIONS(2152), [anon_sym_class] = ACTIONS(2152), @@ -143924,1775 +143433,2361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2152), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2156), + [sym_html_comment] = ACTIONS(5), + }, + [993] = { + [sym_statement_block] = STATE(1404), + [sym_comment] = STATE(993), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [994] = { + [sym_comment] = STATE(994), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2272), + [sym_html_comment] = ACTIONS(5), + }, + [995] = { + [sym_else_clause] = STATE(1277), + [sym_comment] = STATE(995), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [sym_html_comment] = ACTIONS(5), + }, + [996] = { + [sym_finally_clause] = STATE(1364), + [sym_comment] = STATE(996), + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [sym_html_comment] = ACTIONS(5), + }, + [997] = { + [sym_statement_block] = STATE(1124), + [sym_comment] = STATE(997), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [998] = { + [sym_comment] = STATE(998), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [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(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [999] = { [sym_comment] = STATE(999), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2246), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3199), [sym_html_comment] = ACTIONS(5), }, [1000] = { [sym_comment] = STATE(1000), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1001] = { [sym_comment] = STATE(1001), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym__automatic_semicolon] = ACTIONS(3201), [sym_html_comment] = ACTIONS(5), }, [1002] = { [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2168), [sym_html_comment] = ACTIONS(5), }, [1003] = { - [sym_else_clause] = STATE(1072), [sym_comment] = STATE(1003), - [sym_identifier] = ACTIONS(3187), - [anon_sym_export] = ACTIONS(3187), - [anon_sym_default] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_debugger] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_case] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LTtemplate_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_void] = ACTIONS(3187), - [anon_sym_delete] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3187), - [sym_number] = ACTIONS(3187), - [sym_private_property_identifier] = ACTIONS(3187), - [sym_this] = ACTIONS(3187), - [sym_super] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [sym_undefined] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3187), - [anon_sym_set] = ACTIONS(3187), - [anon_sym_declare] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(3187), - [anon_sym_any] = ACTIONS(3187), - [anon_sym_number] = ACTIONS(3187), - [anon_sym_boolean] = ACTIONS(3187), - [anon_sym_string] = ACTIONS(3187), - [anon_sym_symbol] = ACTIONS(3187), - [anon_sym_object] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, [1004] = { [sym_comment] = STATE(1004), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3203), [sym_html_comment] = ACTIONS(5), }, [1005] = { [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1006] = { [sym_comment] = STATE(1006), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [1007] = { [sym_comment] = STATE(1007), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, [1008] = { [sym_comment] = STATE(1008), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2148), + [sym_identifier] = ACTIONS(3205), + [anon_sym_export] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_else] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_debugger] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LTtemplate_GT] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [sym_undefined] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_get] = ACTIONS(3205), + [anon_sym_set] = ACTIONS(3205), + [anon_sym_declare] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_module] = ACTIONS(3205), + [anon_sym_any] = ACTIONS(3205), + [anon_sym_number] = ACTIONS(3205), + [anon_sym_boolean] = ACTIONS(3205), + [anon_sym_string] = ACTIONS(3205), + [anon_sym_symbol] = ACTIONS(3205), + [anon_sym_object] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [sym__automatic_semicolon] = ACTIONS(3207), [sym_html_comment] = ACTIONS(5), }, [1009] = { [sym_comment] = STATE(1009), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3205), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1010] = { + [sym_statement_block] = STATE(1291), [sym_comment] = STATE(1010), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [1011] = { [sym_comment] = STATE(1011), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2196), [sym_html_comment] = ACTIONS(5), }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2234), [sym_html_comment] = ACTIONS(5), }, [1013] = { [sym_comment] = STATE(1013), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, [1014] = { [sym_comment] = STATE(1014), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2192), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_catch] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [1015] = { [sym_comment] = STATE(1015), - [sym_identifier] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_typeof] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), - [anon_sym_var] = ACTIONS(3207), - [anon_sym_let] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_debugger] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LTtemplate_GT] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_function] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3207), - [sym_number] = ACTIONS(3207), - [sym_private_property_identifier] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [sym_super] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_null] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_readonly] = ACTIONS(3207), - [anon_sym_get] = ACTIONS(3207), - [anon_sym_set] = ACTIONS(3207), - [anon_sym_declare] = ACTIONS(3207), - [anon_sym_public] = ACTIONS(3207), - [anon_sym_private] = ACTIONS(3207), - [anon_sym_protected] = ACTIONS(3207), - [anon_sym_override] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_any] = ACTIONS(3207), - [anon_sym_number] = ACTIONS(3207), - [anon_sym_boolean] = ACTIONS(3207), - [anon_sym_string] = ACTIONS(3207), - [anon_sym_symbol] = ACTIONS(3207), - [anon_sym_object] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [sym__automatic_semicolon] = ACTIONS(3209), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_catch] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [1016] = { + [sym_finally_clause] = STATE(1283), [sym_comment] = STATE(1016), - [sym_identifier] = ACTIONS(3211), - [anon_sym_export] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_typeof] = ACTIONS(3211), - [anon_sym_import] = ACTIONS(3211), - [anon_sym_with] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_await] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_debugger] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_finally] = ACTIONS(3211), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LTtemplate_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_SQUOTE] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_function] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_void] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3211), - [sym_number] = ACTIONS(3211), - [sym_private_property_identifier] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [sym_super] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_null] = ACTIONS(3211), - [sym_undefined] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_readonly] = ACTIONS(3211), - [anon_sym_get] = ACTIONS(3211), - [anon_sym_set] = ACTIONS(3211), - [anon_sym_declare] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_module] = ACTIONS(3211), - [anon_sym_any] = ACTIONS(3211), - [anon_sym_number] = ACTIONS(3211), - [anon_sym_boolean] = ACTIONS(3211), - [anon_sym_string] = ACTIONS(3211), - [anon_sym_symbol] = ACTIONS(3211), - [anon_sym_object] = ACTIONS(3211), - [anon_sym_abstract] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3115), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, [1017] = { [sym_comment] = STATE(1017), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1018] = { [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(3213), - [anon_sym_export] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_debugger] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_case] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_LTtemplate_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_function] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3213), - [sym_number] = ACTIONS(3213), - [sym_private_property_identifier] = ACTIONS(3213), - [sym_this] = ACTIONS(3213), - [sym_super] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_undefined] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_get] = ACTIONS(3213), - [anon_sym_set] = ACTIONS(3213), - [anon_sym_declare] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_module] = ACTIONS(3213), - [anon_sym_any] = ACTIONS(3213), - [anon_sym_number] = ACTIONS(3213), - [anon_sym_boolean] = ACTIONS(3213), - [anon_sym_string] = ACTIONS(3213), - [anon_sym_symbol] = ACTIONS(3213), - [anon_sym_object] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [sym__automatic_semicolon] = ACTIONS(3215), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3213), [sym_html_comment] = ACTIONS(5), }, [1019] = { [sym_comment] = STATE(1019), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1020] = { [sym_comment] = STATE(1020), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_case] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2430), + [sym_html_comment] = ACTIONS(5), + }, + [1021] = { + [sym_comment] = STATE(1021), [sym_identifier] = ACTIONS(3217), [anon_sym_export] = ACTIONS(3217), [anon_sym_default] = ACTIONS(3217), @@ -145774,8 +145869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_comment] = STATE(1021), + [1022] = { + [sym_comment] = STATE(1022), [sym_identifier] = ACTIONS(3219), [anon_sym_export] = ACTIONS(3219), [anon_sym_default] = ACTIONS(3219), @@ -145857,8 +145952,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_comment] = STATE(1022), + [1023] = { + [sym_comment] = STATE(1023), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1024] = { + [sym_comment] = STATE(1024), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_comment] = STATE(1025), [sym_identifier] = ACTIONS(3221), [anon_sym_export] = ACTIONS(3221), [anon_sym_default] = ACTIONS(3221), @@ -145940,8 +146201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_comment] = STATE(1023), + [1026] = { + [sym_comment] = STATE(1026), [sym_identifier] = ACTIONS(3223), [anon_sym_export] = ACTIONS(3223), [anon_sym_default] = ACTIONS(3223), @@ -146023,91 +146284,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_comment] = STATE(1024), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2408), + [1027] = { + [sym_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_comment] = STATE(1025), + [1028] = { + [sym_comment] = STATE(1028), [sym_identifier] = ACTIONS(3225), [anon_sym_export] = ACTIONS(3225), [anon_sym_default] = ACTIONS(3225), @@ -146189,8 +146450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_comment] = STATE(1026), + [1029] = { + [sym_comment] = STATE(1029), [sym_identifier] = ACTIONS(3227), [anon_sym_export] = ACTIONS(3227), [anon_sym_default] = ACTIONS(3227), @@ -146272,91 +146533,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3229), + [1030] = { + [sym_comment] = STATE(1030), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_default] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_case] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_comment] = STATE(1028), + [1031] = { + [sym_comment] = STATE(1031), [sym_identifier] = ACTIONS(3231), [anon_sym_export] = ACTIONS(3231), [anon_sym_default] = ACTIONS(3231), @@ -146438,8 +146699,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_comment] = STATE(1029), + [1032] = { + [sym_comment] = STATE(1032), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [1033] = { + [sym_comment] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), + [sym_html_comment] = ACTIONS(5), + }, + [1034] = { + [sym_comment] = STATE(1034), [sym_identifier] = ACTIONS(3233), [anon_sym_export] = ACTIONS(3233), [anon_sym_default] = ACTIONS(3233), @@ -146521,8 +146948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_comment] = STATE(1030), + [1035] = { + [sym_comment] = STATE(1035), [sym_identifier] = ACTIONS(3235), [anon_sym_export] = ACTIONS(3235), [anon_sym_default] = ACTIONS(3235), @@ -146604,8 +147031,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1031] = { - [sym_comment] = STATE(1031), + [1036] = { + [sym_comment] = STATE(1036), [sym_identifier] = ACTIONS(3237), [anon_sym_export] = ACTIONS(3237), [anon_sym_default] = ACTIONS(3237), @@ -146687,174 +147114,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_comment] = STATE(1032), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1033] = { - [sym_comment] = STATE(1033), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_else] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [1037] = { + [sym_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_comment] = STATE(1034), + [1038] = { + [sym_comment] = STATE(1038), [sym_identifier] = ACTIONS(3241), [anon_sym_export] = ACTIONS(3241), [anon_sym_default] = ACTIONS(3241), @@ -146936,8 +147280,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_comment] = STATE(1035), + [1039] = { + [sym_comment] = STATE(1039), [sym_identifier] = ACTIONS(3243), [anon_sym_export] = ACTIONS(3243), [anon_sym_default] = ACTIONS(3243), @@ -147019,8 +147363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_comment] = STATE(1036), + [1040] = { + [sym_comment] = STATE(1040), [sym_identifier] = ACTIONS(3245), [anon_sym_export] = ACTIONS(3245), [anon_sym_default] = ACTIONS(3245), @@ -147102,91 +147446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym_html_comment] = ACTIONS(5), - }, - [1038] = { - [sym_comment] = STATE(1038), + [1041] = { + [sym_comment] = STATE(1041), [sym_identifier] = ACTIONS(3247), [anon_sym_export] = ACTIONS(3247), [anon_sym_default] = ACTIONS(3247), @@ -147268,91 +147529,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_comment] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), + [1042] = { + [sym_comment] = STATE(1042), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, - [1040] = { - [sym_comment] = STATE(1040), + [1043] = { + [sym_comment] = STATE(1043), [sym_identifier] = ACTIONS(3249), [anon_sym_export] = ACTIONS(3249), [anon_sym_default] = ACTIONS(3249), @@ -147434,838 +147695,1419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(3213), - [anon_sym_export] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_debugger] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_case] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_LTtemplate_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_function] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3213), - [sym_number] = ACTIONS(3213), - [sym_private_property_identifier] = ACTIONS(3213), - [sym_this] = ACTIONS(3213), - [sym_super] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_undefined] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_get] = ACTIONS(3213), - [anon_sym_set] = ACTIONS(3213), - [anon_sym_declare] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_module] = ACTIONS(3213), - [anon_sym_any] = ACTIONS(3213), - [anon_sym_number] = ACTIONS(3213), - [anon_sym_boolean] = ACTIONS(3213), - [anon_sym_string] = ACTIONS(3213), - [anon_sym_symbol] = ACTIONS(3213), - [anon_sym_object] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [sym__automatic_semicolon] = ACTIONS(3215), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_else_clause] = STATE(1616), - [sym_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(3251), - [sym_identifier] = ACTIONS(3187), - [anon_sym_export] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_debugger] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LTtemplate_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_void] = ACTIONS(3187), - [anon_sym_delete] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3187), - [sym_number] = ACTIONS(3187), - [sym_private_property_identifier] = ACTIONS(3187), - [sym_this] = ACTIONS(3187), - [sym_super] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [sym_undefined] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3187), - [anon_sym_set] = ACTIONS(3187), - [anon_sym_declare] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(3187), - [anon_sym_any] = ACTIONS(3187), - [anon_sym_number] = ACTIONS(3187), - [anon_sym_boolean] = ACTIONS(3187), - [anon_sym_string] = ACTIONS(3187), - [anon_sym_symbol] = ACTIONS(3187), - [anon_sym_object] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [sym_html_comment] = ACTIONS(5), - }, - [1043] = { - [sym_comment] = STATE(1043), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, [1044] = { [sym_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, [1045] = { [sym_comment] = STATE(1045), - [sym_identifier] = ACTIONS(3183), - [anon_sym_export] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym_import] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_debugger] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_finally] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LTtemplate_GT] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_function] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_void] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3183), - [sym_number] = ACTIONS(3183), - [sym_private_property_identifier] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [sym_super] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_null] = ACTIONS(3183), - [sym_undefined] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_get] = ACTIONS(3183), - [anon_sym_set] = ACTIONS(3183), - [anon_sym_declare] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_module] = ACTIONS(3183), - [anon_sym_any] = ACTIONS(3183), - [anon_sym_number] = ACTIONS(3183), - [anon_sym_boolean] = ACTIONS(3183), - [anon_sym_string] = ACTIONS(3183), - [anon_sym_symbol] = ACTIONS(3183), - [anon_sym_object] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2360), [sym_html_comment] = ACTIONS(5), }, [1046] = { [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(3191), - [anon_sym_export] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_debugger] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LTtemplate_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3191), - [sym_number] = ACTIONS(3191), - [sym_private_property_identifier] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - [sym_super] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_null] = ACTIONS(3191), - [sym_undefined] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3191), - [anon_sym_set] = ACTIONS(3191), - [anon_sym_declare] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_module] = ACTIONS(3191), - [anon_sym_any] = ACTIONS(3191), - [anon_sym_number] = ACTIONS(3191), - [anon_sym_boolean] = ACTIONS(3191), - [anon_sym_string] = ACTIONS(3191), - [anon_sym_symbol] = ACTIONS(3191), - [anon_sym_object] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [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(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_statement_block] = STATE(1600), [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_statement_block] = STATE(1600), [sym_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1049] = { [sym_comment] = STATE(1049), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2406), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2356), [sym_html_comment] = ACTIONS(5), }, [1050] = { [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2320), [sym_html_comment] = ACTIONS(5), }, [1051] = { [sym_comment] = STATE(1051), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_comment] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2350), + [sym_html_comment] = ACTIONS(5), + }, + [1053] = { + [sym_statement_block] = STATE(1291), + [sym_comment] = STATE(1053), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [1054] = { + [sym_comment] = STATE(1054), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1055] = { + [sym_comment] = STATE(1055), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [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_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym_html_comment] = ACTIONS(5), + }, + [1056] = { + [sym_comment] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3261), + [sym_html_comment] = ACTIONS(5), + }, + [1057] = { + [sym_comment] = STATE(1057), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1058] = { + [sym_comment] = STATE(1058), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3263), + [sym_html_comment] = ACTIONS(5), + }, + [1059] = { + [sym_comment] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [1060] = { + [sym_comment] = STATE(1060), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_default] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), + [sym_html_comment] = ACTIONS(5), + }, + [1061] = { + [sym_comment] = STATE(1061), [sym_identifier] = ACTIONS(3267), [anon_sym_export] = ACTIONS(3267), [anon_sym_default] = ACTIONS(3267), @@ -148347,174 +149189,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_comment] = STATE(1052), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym_import] = ACTIONS(3269), - [anon_sym_with] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_debugger] = ACTIONS(3269), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3269), - [anon_sym_case] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_LTtemplate_GT] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_function] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(3269), - [anon_sym_delete] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3269), - [sym_number] = ACTIONS(3269), - [sym_private_property_identifier] = ACTIONS(3269), - [sym_this] = ACTIONS(3269), - [sym_super] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_null] = ACTIONS(3269), - [sym_undefined] = ACTIONS(3269), - [anon_sym_AT] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_get] = ACTIONS(3269), - [anon_sym_set] = ACTIONS(3269), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_module] = ACTIONS(3269), - [anon_sym_any] = ACTIONS(3269), - [anon_sym_number] = ACTIONS(3269), - [anon_sym_boolean] = ACTIONS(3269), - [anon_sym_string] = ACTIONS(3269), - [anon_sym_symbol] = ACTIONS(3269), - [anon_sym_object] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [sym_html_comment] = ACTIONS(5), - }, - [1053] = { - [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), + [1062] = { + [sym_comment] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3269), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_comment] = STATE(1054), + [1063] = { + [sym_comment] = STATE(1063), [sym_identifier] = ACTIONS(3271), [anon_sym_export] = ACTIONS(3271), [anon_sym_default] = ACTIONS(3271), @@ -148596,8 +149355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_comment] = STATE(1055), + [1064] = { + [sym_comment] = STATE(1064), [sym_identifier] = ACTIONS(3273), [anon_sym_export] = ACTIONS(3273), [anon_sym_default] = ACTIONS(3273), @@ -148679,8 +149438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_comment] = STATE(1056), + [1065] = { + [sym_comment] = STATE(1065), [sym_identifier] = ACTIONS(3275), [anon_sym_export] = ACTIONS(3275), [anon_sym_default] = ACTIONS(3275), @@ -148762,8 +149521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, - [1057] = { - [sym_comment] = STATE(1057), + [1066] = { + [sym_comment] = STATE(1066), [sym_identifier] = ACTIONS(3277), [anon_sym_export] = ACTIONS(3277), [anon_sym_default] = ACTIONS(3277), @@ -148845,8 +149604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_comment] = STATE(1058), + [1067] = { + [sym_comment] = STATE(1067), [sym_identifier] = ACTIONS(3279), [anon_sym_export] = ACTIONS(3279), [anon_sym_default] = ACTIONS(3279), @@ -148928,8 +149687,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_comment] = STATE(1059), + [1068] = { + [sym_statement_block] = STATE(1404), + [sym_comment] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_html_comment] = ACTIONS(5), + }, + [1069] = { + [sym_comment] = STATE(1069), [sym_identifier] = ACTIONS(3281), [anon_sym_export] = ACTIONS(3281), [anon_sym_default] = ACTIONS(3281), @@ -149011,174 +149853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_comment] = STATE(1060), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1061] = { - [sym_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym_html_comment] = ACTIONS(5), - }, - [1062] = { - [sym_comment] = STATE(1062), + [1070] = { + [sym_comment] = STATE(1070), [sym_identifier] = ACTIONS(3283), [anon_sym_export] = ACTIONS(3283), [anon_sym_default] = ACTIONS(3283), @@ -149260,91 +149936,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, - [1063] = { - [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [1071] = { + [sym_comment] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_catch] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_comment] = STATE(1064), + [1072] = { + [sym_comment] = STATE(1072), [sym_identifier] = ACTIONS(3285), [anon_sym_export] = ACTIONS(3285), [anon_sym_default] = ACTIONS(3285), @@ -149426,340 +150102,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1065] = { - [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [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(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_default] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_else] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), + [1073] = { + [sym_comment] = STATE(1073), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_case] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [sym_html_comment] = ACTIONS(5), - }, - [1068] = { - [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_comment] = STATE(1069), + [1074] = { + [sym_comment] = STATE(1074), [sym_identifier] = ACTIONS(3293), [anon_sym_export] = ACTIONS(3293), [anon_sym_default] = ACTIONS(3293), @@ -149841,91 +150268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_comment] = STATE(1070), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_comment] = STATE(1071), + [1075] = { + [sym_comment] = STATE(1075), [sym_identifier] = ACTIONS(3295), [anon_sym_export] = ACTIONS(3295), [anon_sym_default] = ACTIONS(3295), @@ -150007,8 +150351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_comment] = STATE(1072), + [1076] = { + [sym_comment] = STATE(1076), [sym_identifier] = ACTIONS(3297), [anon_sym_export] = ACTIONS(3297), [anon_sym_default] = ACTIONS(3297), @@ -150090,91 +150434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_comment] = STATE(1073), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_comment] = STATE(1074), + [1077] = { + [sym_comment] = STATE(1077), [sym_identifier] = ACTIONS(3299), [anon_sym_export] = ACTIONS(3299), [anon_sym_default] = ACTIONS(3299), @@ -150256,8 +150517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, - [1075] = { - [sym_comment] = STATE(1075), + [1078] = { + [sym_comment] = STATE(1078), [sym_identifier] = ACTIONS(3301), [anon_sym_export] = ACTIONS(3301), [anon_sym_default] = ACTIONS(3301), @@ -150339,8 +150600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, - [1076] = { - [sym_comment] = STATE(1076), + [1079] = { + [sym_comment] = STATE(1079), [sym_identifier] = ACTIONS(3303), [anon_sym_export] = ACTIONS(3303), [anon_sym_default] = ACTIONS(3303), @@ -150422,8 +150683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, - [1077] = { - [sym_comment] = STATE(1077), + [1080] = { + [sym_comment] = STATE(1080), [sym_identifier] = ACTIONS(3305), [anon_sym_export] = ACTIONS(3305), [anon_sym_default] = ACTIONS(3305), @@ -150505,174 +150766,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, - [1078] = { - [sym_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_finally] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3307), - [sym_html_comment] = ACTIONS(5), - }, - [1079] = { - [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_typeof] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), - [anon_sym_var] = ACTIONS(3207), - [anon_sym_let] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_debugger] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LTtemplate_GT] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_function] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3207), - [sym_number] = ACTIONS(3207), - [sym_private_property_identifier] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [sym_super] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_null] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_readonly] = ACTIONS(3207), - [anon_sym_get] = ACTIONS(3207), - [anon_sym_set] = ACTIONS(3207), - [anon_sym_declare] = ACTIONS(3207), - [anon_sym_public] = ACTIONS(3207), - [anon_sym_private] = ACTIONS(3207), - [anon_sym_protected] = ACTIONS(3207), - [anon_sym_override] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_any] = ACTIONS(3207), - [anon_sym_number] = ACTIONS(3207), - [anon_sym_boolean] = ACTIONS(3207), - [anon_sym_string] = ACTIONS(3207), - [anon_sym_symbol] = ACTIONS(3207), - [anon_sym_object] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [sym__automatic_semicolon] = ACTIONS(3209), + [1081] = { + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1080] = { - [sym_comment] = STATE(1080), + [1082] = { + [sym_comment] = STATE(1082), [sym_identifier] = ACTIONS(3309), [anon_sym_export] = ACTIONS(3309), [anon_sym_default] = ACTIONS(3309), @@ -150754,8 +150932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_comment] = STATE(1081), + [1083] = { + [sym_comment] = STATE(1083), [sym_identifier] = ACTIONS(3311), [anon_sym_export] = ACTIONS(3311), [anon_sym_default] = ACTIONS(3311), @@ -150837,174 +151015,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, - [1082] = { - [sym_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3313), + [1084] = { + [sym_else_clause] = STATE(1592), + [sym_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, - [1083] = { - [sym_comment] = STATE(1083), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), + [1085] = { + [sym_finally_clause] = STATE(1565), + [sym_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_debugger] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LTtemplate_GT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3157), + [sym_number] = ACTIONS(3157), + [sym_private_property_identifier] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_super] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_get] = ACTIONS(3157), + [anon_sym_set] = ACTIONS(3157), + [anon_sym_declare] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_any] = ACTIONS(3157), + [anon_sym_number] = ACTIONS(3157), + [anon_sym_boolean] = ACTIONS(3157), + [anon_sym_string] = ACTIONS(3157), + [anon_sym_symbol] = ACTIONS(3157), + [anon_sym_object] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_comment] = STATE(1084), + [1086] = { + [sym_comment] = STATE(1086), [sym_identifier] = ACTIONS(3317), [anon_sym_export] = ACTIONS(3317), [anon_sym_default] = ACTIONS(3317), @@ -151086,8 +151264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, - [1085] = { - [sym_comment] = STATE(1085), + [1087] = { + [sym_comment] = STATE(1087), [sym_identifier] = ACTIONS(3319), [anon_sym_export] = ACTIONS(3319), [anon_sym_default] = ACTIONS(3319), @@ -151169,172 +151347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_statement_block] = STATE(1345), - [sym_comment] = STATE(1086), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym_html_comment] = ACTIONS(5), - }, - [1087] = { - [sym_comment] = STATE(1087), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [sym_html_comment] = ACTIONS(5), - }, [1088] = { [sym_comment] = STATE(1088), [sym_identifier] = ACTIONS(3321), @@ -151503,172 +151515,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1090] = { [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, [1091] = { [sym_comment] = STATE(1091), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_default] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1092] = { [sym_comment] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2402), + [sym_html_comment] = ACTIONS(5), + }, + [1093] = { + [sym_comment] = STATE(1093), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2204), + [sym_html_comment] = ACTIONS(5), + }, + [1094] = { + [sym_comment] = STATE(1094), [sym_identifier] = ACTIONS(3327), [anon_sym_export] = ACTIONS(3327), [anon_sym_default] = ACTIONS(3327), @@ -151750,91 +151928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1093] = { - [sym_comment] = STATE(1093), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1094] = { - [sym_comment] = STATE(1094), + [1095] = { + [sym_comment] = STATE(1095), [sym_identifier] = ACTIONS(3329), [anon_sym_export] = ACTIONS(3329), [anon_sym_default] = ACTIONS(3329), @@ -151916,170 +152011,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, - [1095] = { - [sym_statement_block] = STATE(1482), - [sym_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [sym_html_comment] = ACTIONS(5), - }, [1096] = { [sym_comment] = STATE(1096), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, [1097] = { @@ -152167,421 +152179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1098] = { [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym_html_comment] = ACTIONS(5), - }, - [1099] = { - [sym_comment] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2430), - [sym_html_comment] = ACTIONS(5), - }, - [1100] = { - [sym_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym_html_comment] = ACTIONS(5), - }, - [1101] = { - [sym_comment] = STATE(1101), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2176), - [sym_html_comment] = ACTIONS(5), - }, - [1102] = { - [sym_comment] = STATE(1102), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1103] = { - [sym_comment] = STATE(1103), [sym_identifier] = ACTIONS(3333), [anon_sym_export] = ACTIONS(3333), [anon_sym_default] = ACTIONS(3333), @@ -152663,174 +152260,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, - [1104] = { - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(3335), - [sym_identifier] = ACTIONS(3191), - [anon_sym_export] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_debugger] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), + [1099] = { + [sym_comment] = STATE(1099), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [sym_html_comment] = ACTIONS(5), + }, + [1100] = { + [sym_comment] = STATE(1100), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LTtemplate_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3191), - [sym_number] = ACTIONS(3191), - [sym_private_property_identifier] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - [sym_super] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_null] = ACTIONS(3191), - [sym_undefined] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3191), - [anon_sym_set] = ACTIONS(3191), - [anon_sym_declare] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_module] = ACTIONS(3191), - [anon_sym_any] = ACTIONS(3191), - [anon_sym_number] = ACTIONS(3191), - [anon_sym_boolean] = ACTIONS(3191), - [anon_sym_string] = ACTIONS(3191), - [anon_sym_symbol] = ACTIONS(3191), - [anon_sym_object] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [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_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [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(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [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_abstract] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, - [1105] = { - [sym_comment] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3183), - [anon_sym_export] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym_import] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_debugger] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_finally] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LTtemplate_GT] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_function] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_void] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3183), - [sym_number] = ACTIONS(3183), - [sym_private_property_identifier] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [sym_super] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_null] = ACTIONS(3183), - [sym_undefined] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_get] = ACTIONS(3183), - [anon_sym_set] = ACTIONS(3183), - [anon_sym_declare] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_module] = ACTIONS(3183), - [anon_sym_any] = ACTIONS(3183), - [anon_sym_number] = ACTIONS(3183), - [anon_sym_boolean] = ACTIONS(3183), - [anon_sym_string] = ACTIONS(3183), - [anon_sym_symbol] = ACTIONS(3183), - [anon_sym_object] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), + [1101] = { + [sym_comment] = STATE(1101), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, - [1106] = { - [sym_comment] = STATE(1106), + [1102] = { + [sym_comment] = STATE(1102), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [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(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), + }, + [1103] = { + [sym_comment] = STATE(1103), [sym_identifier] = ACTIONS(3343), [anon_sym_export] = ACTIONS(3343), [anon_sym_default] = ACTIONS(3343), @@ -152912,257 +152675,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1107] = { - [sym_comment] = STATE(1107), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym_html_comment] = ACTIONS(5), - }, - [1108] = { - [sym_comment] = STATE(1108), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2418), - [sym_html_comment] = ACTIONS(5), - }, - [1109] = { - [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2416), + [1104] = { + [sym_comment] = STATE(1104), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_comment] = STATE(1110), + [1105] = { + [sym_comment] = STATE(1105), [sym_identifier] = ACTIONS(3345), [anon_sym_export] = ACTIONS(3345), [anon_sym_default] = ACTIONS(3345), @@ -153244,8 +152841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_comment] = STATE(1111), + [1106] = { + [sym_comment] = STATE(1106), [sym_identifier] = ACTIONS(3347), [anon_sym_export] = ACTIONS(3347), [anon_sym_default] = ACTIONS(3347), @@ -153327,8 +152924,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_comment] = STATE(1112), + [1107] = { + [sym_comment] = STATE(1107), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [1108] = { + [sym_comment] = STATE(1108), [sym_identifier] = ACTIONS(3349), [anon_sym_export] = ACTIONS(3349), [anon_sym_default] = ACTIONS(3349), @@ -153410,8 +153090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_comment] = STATE(1113), + [1109] = { + [sym_comment] = STATE(1109), [sym_identifier] = ACTIONS(3351), [anon_sym_export] = ACTIONS(3351), [anon_sym_default] = ACTIONS(3351), @@ -153493,8 +153173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_comment] = STATE(1114), + [1110] = { + [sym_comment] = STATE(1110), [sym_identifier] = ACTIONS(3353), [anon_sym_export] = ACTIONS(3353), [anon_sym_default] = ACTIONS(3353), @@ -153576,91 +153256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_comment] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym_html_comment] = ACTIONS(5), - }, - [1116] = { - [sym_comment] = STATE(1116), + [1111] = { + [sym_comment] = STATE(1111), [sym_identifier] = ACTIONS(3355), [anon_sym_export] = ACTIONS(3355), [anon_sym_default] = ACTIONS(3355), @@ -153742,91 +153339,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_comment] = STATE(1117), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1112] = { + [sym_comment] = STATE(1112), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_html_comment] = ACTIONS(5), + }, + [1113] = { + [sym_comment] = STATE(1113), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_comment] = STATE(1118), + [1114] = { + [sym_comment] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3205), + [anon_sym_export] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_else] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_debugger] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LTtemplate_GT] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [sym_undefined] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_get] = ACTIONS(3205), + [anon_sym_set] = ACTIONS(3205), + [anon_sym_declare] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_module] = ACTIONS(3205), + [anon_sym_any] = ACTIONS(3205), + [anon_sym_number] = ACTIONS(3205), + [anon_sym_boolean] = ACTIONS(3205), + [anon_sym_string] = ACTIONS(3205), + [anon_sym_symbol] = ACTIONS(3205), + [anon_sym_object] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [sym__automatic_semicolon] = ACTIONS(3207), + [sym_html_comment] = ACTIONS(5), + }, + [1115] = { + [sym_comment] = STATE(1115), [sym_identifier] = ACTIONS(3357), [anon_sym_export] = ACTIONS(3357), [anon_sym_default] = ACTIONS(3357), @@ -153908,8 +153671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_comment] = STATE(1119), + [1116] = { + [sym_comment] = STATE(1116), [sym_identifier] = ACTIONS(3359), [anon_sym_export] = ACTIONS(3359), [anon_sym_default] = ACTIONS(3359), @@ -153991,174 +153754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1120] = { - [sym_comment] = STATE(1120), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym_html_comment] = ACTIONS(5), - }, - [1121] = { - [sym_comment] = STATE(1121), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [sym_html_comment] = ACTIONS(5), - }, - [1122] = { - [sym_comment] = STATE(1122), + [1117] = { + [sym_comment] = STATE(1117), [sym_identifier] = ACTIONS(3361), [anon_sym_export] = ACTIONS(3361), [anon_sym_default] = ACTIONS(3361), @@ -154240,8 +153837,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1123] = { - [sym_comment] = STATE(1123), + [1118] = { + [sym_comment] = STATE(1118), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [sym_html_comment] = ACTIONS(5), + }, + [1119] = { + [sym_comment] = STATE(1119), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_html_comment] = ACTIONS(5), + }, + [1120] = { + [sym_comment] = STATE(1120), [sym_identifier] = ACTIONS(3363), [anon_sym_export] = ACTIONS(3363), [anon_sym_default] = ACTIONS(3363), @@ -154323,174 +154086,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, + [1121] = { + [sym_else_clause] = STATE(1374), + [sym_comment] = STATE(1121), + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [sym_html_comment] = ACTIONS(5), + }, + [1122] = { + [sym_comment] = STATE(1122), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym_html_comment] = ACTIONS(5), + }, + [1123] = { + [sym_comment] = STATE(1123), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym_html_comment] = ACTIONS(5), + }, [1124] = { [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [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_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2384), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, [1125] = { [sym_comment] = STATE(1125), - [sym_identifier] = ACTIONS(3365), - [anon_sym_export] = ACTIONS(3365), - [anon_sym_default] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym_import] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_debugger] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_case] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LTtemplate_GT] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_function] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_void] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3365), - [sym_number] = ACTIONS(3365), - [sym_private_property_identifier] = ACTIONS(3365), - [sym_this] = ACTIONS(3365), - [sym_super] = ACTIONS(3365), - [sym_true] = ACTIONS(3365), - [sym_false] = ACTIONS(3365), - [sym_null] = ACTIONS(3365), - [sym_undefined] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_get] = ACTIONS(3365), - [anon_sym_set] = ACTIONS(3365), - [anon_sym_declare] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_any] = ACTIONS(3365), - [anon_sym_number] = ACTIONS(3365), - [anon_sym_boolean] = ACTIONS(3365), - [anon_sym_string] = ACTIONS(3365), - [anon_sym_symbol] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [sym_html_comment] = ACTIONS(5), - }, - [1126] = { - [sym_comment] = STATE(1126), [sym_identifier] = ACTIONS(3367), [anon_sym_export] = ACTIONS(3367), [anon_sym_default] = ACTIONS(3367), @@ -154572,257 +154501,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, + [1126] = { + [sym_comment] = STATE(1126), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3369), + [sym_html_comment] = ACTIONS(5), + }, [1127] = { [sym_comment] = STATE(1127), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2292), [sym_html_comment] = ACTIONS(5), }, [1128] = { [sym_comment] = STATE(1128), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [sym_html_comment] = ACTIONS(5), - }, - [1129] = { - [sym_comment] = STATE(1129), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2322), - [sym_html_comment] = ACTIONS(5), - }, - [1130] = { - [sym_comment] = STATE(1130), [sym_identifier] = ACTIONS(3371), [anon_sym_export] = ACTIONS(3371), [anon_sym_default] = ACTIONS(3371), @@ -154904,8 +154750,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_comment] = STATE(1131), + [1129] = { + [sym_comment] = STATE(1129), [sym_identifier] = ACTIONS(3373), [anon_sym_export] = ACTIONS(3373), [anon_sym_default] = ACTIONS(3373), @@ -154987,8 +154833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, - [1132] = { - [sym_comment] = STATE(1132), + [1130] = { + [sym_comment] = STATE(1130), [sym_identifier] = ACTIONS(3375), [anon_sym_export] = ACTIONS(3375), [anon_sym_default] = ACTIONS(3375), @@ -155070,174 +154916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, - [1133] = { - [sym_comment] = STATE(1133), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym_html_comment] = ACTIONS(5), - }, - [1134] = { - [sym_comment] = STATE(1134), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_case] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym_html_comment] = ACTIONS(5), - }, - [1135] = { - [sym_comment] = STATE(1135), + [1131] = { + [sym_comment] = STATE(1131), [sym_identifier] = ACTIONS(3377), [anon_sym_export] = ACTIONS(3377), [anon_sym_default] = ACTIONS(3377), @@ -155319,174 +154999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, - [1136] = { - [sym_comment] = STATE(1136), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym_html_comment] = ACTIONS(5), - }, - [1137] = { - [sym_comment] = STATE(1137), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1138] = { - [sym_comment] = STATE(1138), + [1132] = { + [sym_comment] = STATE(1132), [sym_identifier] = ACTIONS(3379), [anon_sym_export] = ACTIONS(3379), [anon_sym_default] = ACTIONS(3379), @@ -155568,257 +155082,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1139] = { - [sym_comment] = STATE(1139), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2354), + [1133] = { + [sym_comment] = STATE(1133), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2422), [sym_html_comment] = ACTIONS(5), }, - [1140] = { - [sym_comment] = STATE(1140), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), + [1134] = { + [sym_comment] = STATE(1134), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2420), [sym_html_comment] = ACTIONS(5), }, - [1141] = { - [sym_comment] = STATE(1141), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3381), + [1135] = { + [sym_comment] = STATE(1135), + [sym_identifier] = ACTIONS(3381), + [anon_sym_export] = ACTIONS(3381), + [anon_sym_default] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_namespace] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_typeof] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_with] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [anon_sym_let] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_debugger] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_case] = ACTIONS(3381), + [anon_sym_yield] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LTtemplate_GT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_void] = ACTIONS(3381), + [anon_sym_delete] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3381), + [sym_number] = ACTIONS(3381), + [sym_private_property_identifier] = ACTIONS(3381), + [sym_this] = ACTIONS(3381), + [sym_super] = ACTIONS(3381), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [sym_null] = ACTIONS(3381), + [sym_undefined] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_readonly] = ACTIONS(3381), + [anon_sym_get] = ACTIONS(3381), + [anon_sym_set] = ACTIONS(3381), + [anon_sym_declare] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_protected] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3381), + [anon_sym_any] = ACTIONS(3381), + [anon_sym_number] = ACTIONS(3381), + [anon_sym_boolean] = ACTIONS(3381), + [anon_sym_string] = ACTIONS(3381), + [anon_sym_symbol] = ACTIONS(3381), + [anon_sym_object] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_comment] = STATE(1142), + [1136] = { + [sym_comment] = STATE(1136), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [1137] = { + [sym_comment] = STATE(1137), [sym_identifier] = ACTIONS(3383), [anon_sym_export] = ACTIONS(3383), [anon_sym_default] = ACTIONS(3383), @@ -155900,8 +155497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, - [1143] = { - [sym_comment] = STATE(1143), + [1138] = { + [sym_comment] = STATE(1138), [sym_identifier] = ACTIONS(3385), [anon_sym_export] = ACTIONS(3385), [anon_sym_default] = ACTIONS(3385), @@ -155983,8 +155580,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_comment] = STATE(1144), + [1139] = { + [sym_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [1140] = { + [sym_comment] = STATE(1140), [sym_identifier] = ACTIONS(3387), [anon_sym_export] = ACTIONS(3387), [anon_sym_default] = ACTIONS(3387), @@ -156066,340 +155746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1145] = { - [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2316), - [sym_html_comment] = ACTIONS(5), - }, - [1146] = { - [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym_html_comment] = ACTIONS(5), - }, - [1147] = { - [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1148] = { - [sym_comment] = STATE(1148), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym_html_comment] = ACTIONS(5), - }, - [1149] = { - [sym_comment] = STATE(1149), + [1141] = { + [sym_comment] = STATE(1141), [sym_identifier] = ACTIONS(3389), [anon_sym_export] = ACTIONS(3389), [anon_sym_default] = ACTIONS(3389), @@ -156481,174 +155829,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1150] = { - [sym_comment] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_typeof] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), - [anon_sym_var] = ACTIONS(3207), - [anon_sym_let] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_debugger] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LTtemplate_GT] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_function] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3207), - [sym_number] = ACTIONS(3207), - [sym_private_property_identifier] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [sym_super] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_null] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_readonly] = ACTIONS(3207), - [anon_sym_get] = ACTIONS(3207), - [anon_sym_set] = ACTIONS(3207), - [anon_sym_declare] = ACTIONS(3207), - [anon_sym_public] = ACTIONS(3207), - [anon_sym_private] = ACTIONS(3207), - [anon_sym_protected] = ACTIONS(3207), - [anon_sym_override] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_any] = ACTIONS(3207), - [anon_sym_number] = ACTIONS(3207), - [anon_sym_boolean] = ACTIONS(3207), - [anon_sym_string] = ACTIONS(3207), - [anon_sym_symbol] = ACTIONS(3207), - [anon_sym_object] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [sym__automatic_semicolon] = ACTIONS(3209), + [1142] = { + [sym_comment] = STATE(1142), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2378), [sym_html_comment] = ACTIONS(5), }, - [1151] = { - [sym_comment] = STATE(1151), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), + [1143] = { + [sym_comment] = STATE(1143), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1152] = { - [sym_comment] = STATE(1152), + [1144] = { + [sym_comment] = STATE(1144), [sym_identifier] = ACTIONS(3391), [anon_sym_export] = ACTIONS(3391), [anon_sym_default] = ACTIONS(3391), @@ -156730,8 +156078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, - [1153] = { - [sym_comment] = STATE(1153), + [1145] = { + [sym_comment] = STATE(1145), [sym_identifier] = ACTIONS(3393), [anon_sym_export] = ACTIONS(3393), [anon_sym_default] = ACTIONS(3393), @@ -156813,8 +156161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_comment] = STATE(1154), + [1146] = { + [sym_comment] = STATE(1146), [sym_identifier] = ACTIONS(3395), [anon_sym_export] = ACTIONS(3395), [anon_sym_default] = ACTIONS(3395), @@ -156896,257 +156244,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym_html_comment] = ACTIONS(5), - }, - [1156] = { - [sym_comment] = STATE(1156), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2342), - [sym_html_comment] = ACTIONS(5), - }, - [1157] = { - [sym_comment] = STATE(1157), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym_html_comment] = ACTIONS(5), - }, - [1158] = { - [sym_comment] = STATE(1158), + [1147] = { + [sym_comment] = STATE(1147), [sym_identifier] = ACTIONS(3395), [anon_sym_export] = ACTIONS(3395), [anon_sym_default] = ACTIONS(3395), @@ -157228,755 +156327,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_finally_clause] = STATE(1613), - [sym_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3145), - [anon_sym_export] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_debugger] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3137), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LTtemplate_GT] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_function] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_void] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3145), - [sym_number] = ACTIONS(3145), - [sym_private_property_identifier] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - [sym_super] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_null] = ACTIONS(3145), - [sym_undefined] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_get] = ACTIONS(3145), - [anon_sym_set] = ACTIONS(3145), - [anon_sym_declare] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3145), - [anon_sym_number] = ACTIONS(3145), - [anon_sym_boolean] = ACTIONS(3145), - [anon_sym_string] = ACTIONS(3145), - [anon_sym_symbol] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [sym_html_comment] = ACTIONS(5), - }, - [1160] = { - [sym_comment] = STATE(1160), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym_html_comment] = ACTIONS(5), - }, - [1161] = { - [sym_comment] = STATE(1161), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2392), - [sym_html_comment] = ACTIONS(5), - }, - [1162] = { - [sym_comment] = STATE(1162), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3397), - [sym_html_comment] = ACTIONS(5), - }, - [1163] = { - [sym_comment] = STATE(1163), - [sym_identifier] = ACTIONS(3211), - [anon_sym_export] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_typeof] = ACTIONS(3211), - [anon_sym_import] = ACTIONS(3211), - [anon_sym_with] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_await] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_debugger] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_finally] = ACTIONS(3211), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LTtemplate_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_SQUOTE] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_function] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_void] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3211), - [sym_number] = ACTIONS(3211), - [sym_private_property_identifier] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [sym_super] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_null] = ACTIONS(3211), - [sym_undefined] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_readonly] = ACTIONS(3211), - [anon_sym_get] = ACTIONS(3211), - [anon_sym_set] = ACTIONS(3211), - [anon_sym_declare] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_module] = ACTIONS(3211), - [anon_sym_any] = ACTIONS(3211), - [anon_sym_number] = ACTIONS(3211), - [anon_sym_boolean] = ACTIONS(3211), - [anon_sym_string] = ACTIONS(3211), - [anon_sym_symbol] = ACTIONS(3211), - [anon_sym_object] = ACTIONS(3211), - [anon_sym_abstract] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [sym_html_comment] = ACTIONS(5), - }, - [1164] = { - [sym_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2320), - [sym_html_comment] = ACTIONS(5), - }, - [1165] = { - [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2426), - [sym_html_comment] = ACTIONS(5), - }, - [1166] = { - [sym_comment] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym_html_comment] = ACTIONS(5), - }, - [1167] = { - [sym_comment] = STATE(1167), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [1148] = { + [sym_comment] = STATE(1148), + [sym_identifier] = ACTIONS(3397), + [anon_sym_export] = ACTIONS(3397), + [anon_sym_default] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_namespace] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_typeof] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_debugger] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_case] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LTtemplate_GT] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_void] = ACTIONS(3397), + [anon_sym_delete] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3397), + [sym_number] = ACTIONS(3397), + [sym_private_property_identifier] = ACTIONS(3397), + [sym_this] = ACTIONS(3397), + [sym_super] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_null] = ACTIONS(3397), + [sym_undefined] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3397), + [anon_sym_set] = ACTIONS(3397), + [anon_sym_declare] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_protected] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_module] = ACTIONS(3397), + [anon_sym_any] = ACTIONS(3397), + [anon_sym_number] = ACTIONS(3397), + [anon_sym_boolean] = ACTIONS(3397), + [anon_sym_string] = ACTIONS(3397), + [anon_sym_symbol] = ACTIONS(3397), + [anon_sym_object] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, - [1168] = { - [sym_comment] = STATE(1168), + [1149] = { + [sym_comment] = STATE(1149), [sym_identifier] = ACTIONS(3399), [anon_sym_export] = ACTIONS(3399), [anon_sym_default] = ACTIONS(3399), @@ -158058,8 +156493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1169] = { - [sym_comment] = STATE(1169), + [1150] = { + [sym_comment] = STATE(1150), [sym_identifier] = ACTIONS(3401), [anon_sym_export] = ACTIONS(3401), [anon_sym_default] = ACTIONS(3401), @@ -158141,8 +156576,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, - [1170] = { - [sym_comment] = STATE(1170), + [1151] = { + [sym_comment] = STATE(1151), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2372), + [sym_html_comment] = ACTIONS(5), + }, + [1152] = { + [sym_comment] = STATE(1152), [sym_identifier] = ACTIONS(3403), [anon_sym_export] = ACTIONS(3403), [anon_sym_default] = ACTIONS(3403), @@ -158224,91 +156742,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, - [1171] = { - [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [1153] = { + [sym_comment] = STATE(1153), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, - [1172] = { - [sym_comment] = STATE(1172), + [1154] = { + [sym_comment] = STATE(1154), [sym_identifier] = ACTIONS(3405), [anon_sym_export] = ACTIONS(3405), [anon_sym_default] = ACTIONS(3405), @@ -158390,92 +156908,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1173] = { - [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2364), + [1155] = { + [sym_comment] = STATE(1155), + [sym_identifier] = ACTIONS(3205), + [anon_sym_export] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_debugger] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LTtemplate_GT] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [sym_undefined] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_get] = ACTIONS(3205), + [anon_sym_set] = ACTIONS(3205), + [anon_sym_declare] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_module] = ACTIONS(3205), + [anon_sym_any] = ACTIONS(3205), + [anon_sym_number] = ACTIONS(3205), + [anon_sym_boolean] = ACTIONS(3205), + [anon_sym_string] = ACTIONS(3205), + [anon_sym_symbol] = ACTIONS(3205), + [anon_sym_object] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [sym__automatic_semicolon] = ACTIONS(3207), [sym_html_comment] = ACTIONS(5), }, - [1174] = { - [sym_comment] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(2366), + [1156] = { + [sym_comment] = STATE(1156), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1157] = { + [sym_comment] = STATE(1157), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym_html_comment] = ACTIONS(5), + }, + [1158] = { + [sym_comment] = STATE(1158), + [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), [anon_sym_type] = ACTIONS(2152), @@ -158507,6 +157191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_SQUOTE] = ACTIONS(2152), [anon_sym_class] = ACTIONS(2152), @@ -158553,11 +157238,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2152), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2368), [sym_html_comment] = ACTIONS(5), }, - [1175] = { - [sym_comment] = STATE(1175), + [1159] = { + [sym_comment] = STATE(1159), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_catch] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_html_comment] = ACTIONS(5), + }, + [1160] = { + [sym_comment] = STATE(1160), [sym_identifier] = ACTIONS(3407), [anon_sym_export] = ACTIONS(3407), [anon_sym_default] = ACTIONS(3407), @@ -158639,423 +157406,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, - [1176] = { - [sym_comment] = STATE(1176), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [1161] = { + [sym_comment] = STATE(1161), + [sym_identifier] = ACTIONS(3409), + [anon_sym_export] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_typeof] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [anon_sym_let] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_debugger] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LTtemplate_GT] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_void] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3409), + [sym_number] = ACTIONS(3409), + [sym_private_property_identifier] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), + [sym_super] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_null] = ACTIONS(3409), + [sym_undefined] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_get] = ACTIONS(3409), + [anon_sym_set] = ACTIONS(3409), + [anon_sym_declare] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_protected] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_any] = ACTIONS(3409), + [anon_sym_number] = ACTIONS(3409), + [anon_sym_boolean] = ACTIONS(3409), + [anon_sym_string] = ACTIONS(3409), + [anon_sym_symbol] = ACTIONS(3409), + [anon_sym_object] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), [sym_html_comment] = ACTIONS(5), }, - [1177] = { - [sym_comment] = STATE(1177), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2372), + [1162] = { + [sym_comment] = STATE(1162), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_finally] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, - [1178] = { - [sym_comment] = STATE(1178), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2378), + [1163] = { + [sym_comment] = STATE(1163), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [1179] = { - [sym_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3409), + [1164] = { + [sym_comment] = STATE(1164), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), [sym_html_comment] = ACTIONS(5), }, - [1180] = { - [sym_else_clause] = STATE(1380), - [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(3251), - [sym_identifier] = ACTIONS(3187), - [anon_sym_export] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), + [1165] = { + [sym_comment] = STATE(1165), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [sym_html_comment] = ACTIONS(5), + }, + [1166] = { + [sym_comment] = STATE(1166), + [sym_identifier] = ACTIONS(3411), + [anon_sym_export] = ACTIONS(3411), + [anon_sym_default] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_RBRACE] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_debugger] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LTtemplate_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_void] = ACTIONS(3187), - [anon_sym_delete] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3187), - [sym_number] = ACTIONS(3187), - [sym_private_property_identifier] = ACTIONS(3187), - [sym_this] = ACTIONS(3187), - [sym_super] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [sym_undefined] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3187), - [anon_sym_set] = ACTIONS(3187), - [anon_sym_declare] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(3187), - [anon_sym_any] = ACTIONS(3187), - [anon_sym_number] = ACTIONS(3187), - [anon_sym_boolean] = ACTIONS(3187), - [anon_sym_string] = ACTIONS(3187), - [anon_sym_symbol] = ACTIONS(3187), - [anon_sym_object] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_debugger] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_case] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_LTtemplate_GT] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_function] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_void] = ACTIONS(3411), + [anon_sym_delete] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3411), + [sym_number] = ACTIONS(3411), + [sym_private_property_identifier] = ACTIONS(3411), + [sym_this] = ACTIONS(3411), + [sym_super] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_null] = ACTIONS(3411), + [sym_undefined] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3411), + [anon_sym_set] = ACTIONS(3411), + [anon_sym_declare] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_module] = ACTIONS(3411), + [anon_sym_any] = ACTIONS(3411), + [anon_sym_number] = ACTIONS(3411), + [anon_sym_boolean] = ACTIONS(3411), + [anon_sym_string] = ACTIONS(3411), + [anon_sym_symbol] = ACTIONS(3411), + [anon_sym_object] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), [sym_html_comment] = ACTIONS(5), }, - [1181] = { - [sym_comment] = STATE(1181), + [1167] = { + [sym_comment] = STATE(1167), [sym_identifier] = ACTIONS(3413), [anon_sym_export] = ACTIONS(3413), [anon_sym_default] = ACTIONS(3413), @@ -159137,8 +157987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1182] = { - [sym_comment] = STATE(1182), + [1168] = { + [sym_comment] = STATE(1168), [sym_identifier] = ACTIONS(3415), [anon_sym_export] = ACTIONS(3415), [anon_sym_default] = ACTIONS(3415), @@ -159220,174 +158070,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3415), [sym_html_comment] = ACTIONS(5), }, - [1183] = { - [sym_comment] = STATE(1183), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [1169] = { + [sym_comment] = STATE(1169), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2366), [sym_html_comment] = ACTIONS(5), }, - [1184] = { - [sym_comment] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2382), + [1170] = { + [sym_comment] = STATE(1170), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [sym__automatic_semicolon] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, - [1185] = { - [sym_comment] = STATE(1185), + [1171] = { + [sym_comment] = STATE(1171), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym_html_comment] = ACTIONS(5), + }, + [1172] = { + [sym_comment] = STATE(1172), [sym_identifier] = ACTIONS(3417), [anon_sym_export] = ACTIONS(3417), [anon_sym_default] = ACTIONS(3417), @@ -159469,91 +158402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, - [1186] = { - [sym_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym_html_comment] = ACTIONS(5), - }, - [1187] = { - [sym_comment] = STATE(1187), + [1173] = { + [sym_comment] = STATE(1173), [sym_identifier] = ACTIONS(3419), [anon_sym_export] = ACTIONS(3419), [anon_sym_default] = ACTIONS(3419), @@ -159635,8 +158485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1188] = { - [sym_comment] = STATE(1188), + [1174] = { + [sym_comment] = STATE(1174), [sym_identifier] = ACTIONS(3421), [anon_sym_export] = ACTIONS(3421), [anon_sym_default] = ACTIONS(3421), @@ -159718,8 +158568,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1189] = { - [sym_comment] = STATE(1189), + [1175] = { + [sym_comment] = STATE(1175), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [sym_html_comment] = ACTIONS(5), + }, + [1176] = { + [sym_comment] = STATE(1176), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [sym_html_comment] = ACTIONS(5), + }, + [1177] = { + [sym_comment] = STATE(1177), [sym_identifier] = ACTIONS(3423), [anon_sym_export] = ACTIONS(3423), [anon_sym_default] = ACTIONS(3423), @@ -159801,8 +158817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, - [1190] = { - [sym_comment] = STATE(1190), + [1178] = { + [sym_comment] = STATE(1178), [sym_identifier] = ACTIONS(3425), [anon_sym_export] = ACTIONS(3425), [anon_sym_default] = ACTIONS(3425), @@ -159884,8 +158900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, - [1191] = { - [sym_comment] = STATE(1191), + [1179] = { + [sym_comment] = STATE(1179), [sym_identifier] = ACTIONS(3427), [anon_sym_export] = ACTIONS(3427), [anon_sym_default] = ACTIONS(3427), @@ -159967,8 +158983,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, - [1192] = { - [sym_comment] = STATE(1192), + [1180] = { + [sym_comment] = STATE(1180), [sym_identifier] = ACTIONS(3429), [anon_sym_export] = ACTIONS(3429), [anon_sym_default] = ACTIONS(3429), @@ -160050,91 +159066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3429), [sym_html_comment] = ACTIONS(5), }, - [1193] = { - [sym_comment] = STATE(1193), - [ts_builtin_sym_end] = ACTIONS(3215), - [sym_identifier] = ACTIONS(3213), - [anon_sym_export] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_debugger] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_LTtemplate_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_function] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3213), - [sym_number] = ACTIONS(3213), - [sym_private_property_identifier] = ACTIONS(3213), - [sym_this] = ACTIONS(3213), - [sym_super] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_undefined] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_get] = ACTIONS(3213), - [anon_sym_set] = ACTIONS(3213), - [anon_sym_declare] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_module] = ACTIONS(3213), - [anon_sym_any] = ACTIONS(3213), - [anon_sym_number] = ACTIONS(3213), - [anon_sym_boolean] = ACTIONS(3213), - [anon_sym_string] = ACTIONS(3213), - [anon_sym_symbol] = ACTIONS(3213), - [anon_sym_object] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [sym__automatic_semicolon] = ACTIONS(3215), - [sym_html_comment] = ACTIONS(5), - }, - [1194] = { - [sym_comment] = STATE(1194), + [1181] = { + [sym_comment] = STATE(1181), [sym_identifier] = ACTIONS(3431), [anon_sym_export] = ACTIONS(3431), [anon_sym_default] = ACTIONS(3431), @@ -160216,257 +159149,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3431), [sym_html_comment] = ACTIONS(5), }, - [1195] = { - [sym_comment] = STATE(1195), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1182] = { + [sym_comment] = STATE(1182), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, - [1196] = { - [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [1183] = { + [sym_comment] = STATE(1183), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2412), [sym_html_comment] = ACTIONS(5), }, - [1197] = { - [sym_comment] = STATE(1197), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1184] = { + [sym_comment] = STATE(1184), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [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(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, - [1198] = { - [sym_comment] = STATE(1198), + [1185] = { + [sym_comment] = STATE(1185), [sym_identifier] = ACTIONS(3435), [anon_sym_export] = ACTIONS(3435), [anon_sym_default] = ACTIONS(3435), @@ -160548,91 +159481,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1199] = { - [sym_comment] = STATE(1199), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1186] = { + [sym_comment] = STATE(1186), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1200] = { - [sym_comment] = STATE(1200), + [1187] = { + [sym_comment] = STATE(1187), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [1188] = { + [sym_comment] = STATE(1188), [sym_identifier] = ACTIONS(3437), [anon_sym_export] = ACTIONS(3437), [anon_sym_default] = ACTIONS(3437), @@ -160714,91 +159730,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1201] = { - [sym_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2390), + [1189] = { + [sym_comment] = STATE(1189), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1202] = { - [sym_comment] = STATE(1202), + [1190] = { + [sym_comment] = STATE(1190), [sym_identifier] = ACTIONS(3439), [anon_sym_export] = ACTIONS(3439), [anon_sym_default] = ACTIONS(3439), @@ -160880,257 +159896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1203] = { - [sym_comment] = STATE(1203), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym_html_comment] = ACTIONS(5), - }, - [1204] = { - [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym_html_comment] = ACTIONS(5), - }, - [1205] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2400), - [sym_html_comment] = ACTIONS(5), - }, - [1206] = { - [sym_comment] = STATE(1206), + [1191] = { + [sym_comment] = STATE(1191), [sym_identifier] = ACTIONS(3441), [anon_sym_export] = ACTIONS(3441), [anon_sym_default] = ACTIONS(3441), @@ -161212,174 +159979,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1207] = { - [sym_comment] = STATE(1207), - [sym_identifier] = ACTIONS(3443), - [anon_sym_export] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_debugger] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LTtemplate_GT] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_void] = ACTIONS(3443), - [anon_sym_delete] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3443), - [sym_number] = ACTIONS(3443), - [sym_private_property_identifier] = ACTIONS(3443), - [sym_this] = ACTIONS(3443), - [sym_super] = ACTIONS(3443), - [sym_true] = ACTIONS(3443), - [sym_false] = ACTIONS(3443), - [sym_null] = ACTIONS(3443), - [sym_undefined] = ACTIONS(3443), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_get] = ACTIONS(3443), - [anon_sym_set] = ACTIONS(3443), - [anon_sym_declare] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_any] = ACTIONS(3443), - [anon_sym_number] = ACTIONS(3443), - [anon_sym_boolean] = ACTIONS(3443), - [anon_sym_string] = ACTIONS(3443), - [anon_sym_symbol] = ACTIONS(3443), - [anon_sym_object] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), + [1192] = { + [sym_comment] = STATE(1192), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_finally] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, - [1208] = { - [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [1193] = { + [sym_comment] = STATE(1193), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3445), [sym_html_comment] = ACTIONS(5), }, - [1209] = { - [sym_comment] = STATE(1209), + [1194] = { + [sym_comment] = STATE(1194), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [1195] = { + [sym_comment] = STATE(1195), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_default] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2392), + [sym_html_comment] = ACTIONS(5), + }, + [1196] = { + [sym_comment] = STATE(1196), [sym_identifier] = ACTIONS(3447), [anon_sym_export] = ACTIONS(3447), [anon_sym_default] = ACTIONS(3447), @@ -161461,423 +160394,755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1210] = { - [sym_comment] = STATE(1210), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), + [1197] = { + [sym_statement_block] = STATE(1604), + [sym_comment] = STATE(1197), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, - [1211] = { - [sym_comment] = STATE(1211), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [1198] = { + [sym_comment] = STATE(1198), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, - [1212] = { - [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [1199] = { + [sym_statement_block] = STATE(1604), + [sym_comment] = STATE(1199), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, - [1213] = { - [sym_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_default] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_case] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [1200] = { + [sym_comment] = STATE(1200), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, - [1214] = { - [sym_comment] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(3457), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [1201] = { + [sym_comment] = STATE(1201), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [sym__automatic_semicolon] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, - [1215] = { - [sym_comment] = STATE(1215), + [1202] = { + [sym_comment] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_finally] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [sym_html_comment] = ACTIONS(5), + }, + [1203] = { + [sym_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3457), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_default] = ACTIONS(3457), + [anon_sym_type] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_typeof] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_else] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_debugger] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_case] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LTtemplate_GT] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_async] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_void] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3457), + [sym_number] = ACTIONS(3457), + [sym_private_property_identifier] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [sym_super] = ACTIONS(3457), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_undefined] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_readonly] = ACTIONS(3457), + [anon_sym_get] = ACTIONS(3457), + [anon_sym_set] = ACTIONS(3457), + [anon_sym_declare] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_any] = ACTIONS(3457), + [anon_sym_number] = ACTIONS(3457), + [anon_sym_boolean] = ACTIONS(3457), + [anon_sym_string] = ACTIONS(3457), + [anon_sym_symbol] = ACTIONS(3457), + [anon_sym_object] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [sym_html_comment] = ACTIONS(5), + }, + [1204] = { + [sym_comment] = STATE(1204), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym_html_comment] = ACTIONS(5), + }, + [1205] = { + [sym_comment] = STATE(1205), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym_html_comment] = ACTIONS(5), + }, + [1206] = { + [sym_comment] = STATE(1206), [sym_identifier] = ACTIONS(3459), [anon_sym_export] = ACTIONS(3459), [anon_sym_default] = ACTIONS(3459), @@ -161959,177 +161224,1826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, + [1207] = { + [sym_comment] = STATE(1207), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), + [sym_html_comment] = ACTIONS(5), + }, + [1209] = { + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [sym_html_comment] = ACTIONS(5), + }, + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3463), + [sym_html_comment] = ACTIONS(5), + }, + [1211] = { + [sym_comment] = STATE(1211), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2406), + [sym_html_comment] = ACTIONS(5), + }, + [1213] = { + [sym_comment] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym_html_comment] = ACTIONS(5), + }, + [1214] = { + [sym_comment] = STATE(1214), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), + [sym_html_comment] = ACTIONS(5), + }, + [1215] = { + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym_html_comment] = ACTIONS(5), + }, [1216] = { [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3211), - [anon_sym_export] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_typeof] = ACTIONS(3211), - [anon_sym_import] = ACTIONS(3211), - [anon_sym_with] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_await] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_debugger] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_finally] = ACTIONS(3211), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LTtemplate_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_SQUOTE] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_function] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_void] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3211), - [sym_number] = ACTIONS(3211), - [sym_private_property_identifier] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [sym_super] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_null] = ACTIONS(3211), - [sym_undefined] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_readonly] = ACTIONS(3211), - [anon_sym_get] = ACTIONS(3211), - [anon_sym_set] = ACTIONS(3211), - [anon_sym_declare] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_module] = ACTIONS(3211), - [anon_sym_any] = ACTIONS(3211), - [anon_sym_number] = ACTIONS(3211), - [anon_sym_boolean] = ACTIONS(3211), - [anon_sym_string] = ACTIONS(3211), - [anon_sym_symbol] = ACTIONS(3211), - [anon_sym_object] = ACTIONS(3211), - [anon_sym_abstract] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1217] = { [sym_comment] = STATE(1217), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3463), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2330), [sym_html_comment] = ACTIONS(5), }, [1218] = { [sym_comment] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [1219] = { + [sym_comment] = STATE(1219), [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [sym_html_comment] = ACTIONS(5), + }, + [1220] = { + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LTtemplate_GT] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_using] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2284), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2284), + [sym_number] = ACTIONS(2284), + [sym_private_property_identifier] = ACTIONS(2284), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_object] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym_html_comment] = ACTIONS(5), + }, + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [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(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [sym_html_comment] = ACTIONS(5), + }, + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [sym_html_comment] = ACTIONS(5), + }, + [1223] = { + [sym_comment] = STATE(1223), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LTtemplate_GT] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2276), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_number] = ACTIONS(2276), + [sym_private_property_identifier] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_object] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym_html_comment] = ACTIONS(5), + }, + [1224] = { + [sym_comment] = STATE(1224), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym_html_comment] = ACTIONS(5), + }, + [1225] = { + [sym_comment] = STATE(1225), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_else] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [sym_html_comment] = ACTIONS(5), + }, + [1226] = { + [sym_comment] = STATE(1226), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_default] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_case] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), + [sym_html_comment] = ACTIONS(5), + }, + [1227] = { + [sym_comment] = STATE(1227), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_case] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [sym_html_comment] = ACTIONS(5), + }, + [1228] = { + [sym_comment] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_else] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [sym_html_comment] = ACTIONS(5), + }, + [1229] = { + [sym_comment] = STATE(1229), [sym_identifier] = ACTIONS(3357), [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), [anon_sym_type] = ACTIONS(3357), [anon_sym_namespace] = ACTIONS(3357), [anon_sym_LBRACE] = ACTIONS(3357), @@ -162141,7 +163055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3357), [anon_sym_const] = ACTIONS(3357), [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), [anon_sym_if] = ACTIONS(3357), [anon_sym_switch] = ACTIONS(3357), [anon_sym_for] = ACTIONS(3357), @@ -162156,6 +163069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3357), [anon_sym_throw] = ACTIONS(3357), [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), [anon_sym_yield] = ACTIONS(3357), [anon_sym_LBRACK] = ACTIONS(3357), [anon_sym_LTtemplate_GT] = ACTIONS(3357), @@ -162207,2726 +163121,3054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1219] = { - [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [1230] = { + [sym_comment] = STATE(1230), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LTtemplate_GT] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_number] = ACTIONS(2268), + [sym_private_property_identifier] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_object] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [sym__automatic_semicolon] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, - [1220] = { - [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_default] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_case] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, - [1221] = { - [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [1232] = { + [sym_comment] = STATE(1232), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [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_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), [sym_html_comment] = ACTIONS(5), }, - [1222] = { - [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), + [1233] = { + [sym_comment] = STATE(1233), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, - [1223] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3443), - [anon_sym_export] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_debugger] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LTtemplate_GT] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_void] = ACTIONS(3443), - [anon_sym_delete] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3443), - [sym_number] = ACTIONS(3443), - [sym_private_property_identifier] = ACTIONS(3443), - [sym_this] = ACTIONS(3443), - [sym_super] = ACTIONS(3443), - [sym_true] = ACTIONS(3443), - [sym_false] = ACTIONS(3443), - [sym_null] = ACTIONS(3443), - [sym_undefined] = ACTIONS(3443), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_get] = ACTIONS(3443), - [anon_sym_set] = ACTIONS(3443), - [anon_sym_declare] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_any] = ACTIONS(3443), - [anon_sym_number] = ACTIONS(3443), - [anon_sym_boolean] = ACTIONS(3443), - [anon_sym_string] = ACTIONS(3443), - [anon_sym_symbol] = ACTIONS(3443), - [anon_sym_object] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), + [1234] = { + [sym_comment] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_with] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_debugger] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LTtemplate_GT] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2238), + [anon_sym_delete] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_private_property_identifier] = ACTIONS(2238), + [sym_this] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_undefined] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_readonly] = ACTIONS(2238), + [anon_sym_get] = ACTIONS(2238), + [anon_sym_set] = ACTIONS(2238), + [anon_sym_declare] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_protected] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_any] = ACTIONS(2238), + [anon_sym_number] = ACTIONS(2238), + [anon_sym_boolean] = ACTIONS(2238), + [anon_sym_string] = ACTIONS(2238), + [anon_sym_symbol] = ACTIONS(2238), + [anon_sym_object] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, - [1224] = { - [sym_comment] = STATE(1224), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_get] = ACTIONS(3349), - [anon_sym_set] = ACTIONS(3349), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [1235] = { + [sym_comment] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), [sym_html_comment] = ACTIONS(5), }, - [1225] = { - [sym_comment] = STATE(1225), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [1236] = { + [sym_comment] = STATE(1236), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), [sym_html_comment] = ACTIONS(5), }, - [1226] = { - [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), + [1237] = { + [sym_comment] = STATE(1237), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, - [1227] = { - [sym_comment] = STATE(1227), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [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(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, - [1228] = { - [sym_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3443), - [anon_sym_export] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_debugger] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LTtemplate_GT] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_void] = ACTIONS(3443), - [anon_sym_delete] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3443), - [sym_number] = ACTIONS(3443), - [sym_private_property_identifier] = ACTIONS(3443), - [sym_this] = ACTIONS(3443), - [sym_super] = ACTIONS(3443), - [sym_true] = ACTIONS(3443), - [sym_false] = ACTIONS(3443), - [sym_null] = ACTIONS(3443), - [sym_undefined] = ACTIONS(3443), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_get] = ACTIONS(3443), - [anon_sym_set] = ACTIONS(3443), - [anon_sym_declare] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_any] = ACTIONS(3443), - [anon_sym_number] = ACTIONS(3443), - [anon_sym_boolean] = ACTIONS(3443), - [anon_sym_string] = ACTIONS(3443), - [anon_sym_symbol] = ACTIONS(3443), - [anon_sym_object] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), + [1239] = { + [sym_comment] = STATE(1239), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1229] = { - [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_default] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), + [1240] = { + [sym_comment] = STATE(1240), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, - [1230] = { - [sym_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [1241] = { + [sym_comment] = STATE(1241), + [ts_builtin_sym_end] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), [sym_html_comment] = ACTIONS(5), }, - [1231] = { - [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), + [1242] = { + [sym_comment] = STATE(1242), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, - [1232] = { - [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [1243] = { + [sym_comment] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, - [1233] = { - [sym_comment] = STATE(1233), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [1244] = { + [sym_comment] = STATE(1244), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, - [1234] = { - [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), + [1245] = { + [sym_comment] = STATE(1245), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, - [1235] = { - [sym_comment] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), + [1246] = { + [sym_comment] = STATE(1246), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_get] = ACTIONS(3349), - [anon_sym_set] = ACTIONS(3349), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, - [1236] = { - [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [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_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), + [1247] = { + [sym_comment] = STATE(1247), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [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(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [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_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, - [1237] = { - [sym_comment] = STATE(1237), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), + [1248] = { + [sym_comment] = STATE(1248), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1238] = { - [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [1249] = { + [sym_comment] = STATE(1249), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3435), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_else] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_debugger] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LTtemplate_GT] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_function] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_delete] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_DASH_DASH] = ACTIONS(3435), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_number] = ACTIONS(3435), + [sym_private_property_identifier] = ACTIONS(3435), + [sym_this] = ACTIONS(3435), + [sym_super] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_get] = ACTIONS(3435), + [anon_sym_set] = ACTIONS(3435), + [anon_sym_declare] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_module] = ACTIONS(3435), + [anon_sym_any] = ACTIONS(3435), + [anon_sym_number] = ACTIONS(3435), + [anon_sym_boolean] = ACTIONS(3435), + [anon_sym_string] = ACTIONS(3435), + [anon_sym_symbol] = ACTIONS(3435), + [anon_sym_object] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1239] = { - [sym_comment] = STATE(1239), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [1250] = { + [sym_comment] = STATE(1250), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1240] = { - [sym_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [1251] = { + [sym_comment] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3381), + [anon_sym_export] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_namespace] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_typeof] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_with] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [anon_sym_let] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_debugger] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_yield] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LTtemplate_GT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_void] = ACTIONS(3381), + [anon_sym_delete] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3381), + [sym_number] = ACTIONS(3381), + [sym_private_property_identifier] = ACTIONS(3381), + [sym_this] = ACTIONS(3381), + [sym_super] = ACTIONS(3381), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [sym_null] = ACTIONS(3381), + [sym_undefined] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_readonly] = ACTIONS(3381), + [anon_sym_get] = ACTIONS(3381), + [anon_sym_set] = ACTIONS(3381), + [anon_sym_declare] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_protected] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3381), + [anon_sym_any] = ACTIONS(3381), + [anon_sym_number] = ACTIONS(3381), + [anon_sym_boolean] = ACTIONS(3381), + [anon_sym_string] = ACTIONS(3381), + [anon_sym_symbol] = ACTIONS(3381), + [anon_sym_object] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), [sym_html_comment] = ACTIONS(5), }, - [1241] = { - [sym_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_case] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), + [1252] = { + [sym_comment] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1242] = { - [sym_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), + [1253] = { + [sym_comment] = STATE(1253), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [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(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1243] = { - [sym_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [1254] = { + [sym_comment] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3175), + [anon_sym_export] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_typeof] = ACTIONS(3175), + [anon_sym_import] = ACTIONS(3175), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_var] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_debugger] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LTtemplate_GT] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_void] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3175), + [sym_number] = ACTIONS(3175), + [sym_private_property_identifier] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3175), + [anon_sym_get] = ACTIONS(3175), + [anon_sym_set] = ACTIONS(3175), + [anon_sym_declare] = ACTIONS(3175), + [anon_sym_public] = ACTIONS(3175), + [anon_sym_private] = ACTIONS(3175), + [anon_sym_protected] = ACTIONS(3175), + [anon_sym_override] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_any] = ACTIONS(3175), + [anon_sym_number] = ACTIONS(3175), + [anon_sym_boolean] = ACTIONS(3175), + [anon_sym_string] = ACTIONS(3175), + [anon_sym_symbol] = ACTIONS(3175), + [anon_sym_object] = ACTIONS(3175), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), [sym_html_comment] = ACTIONS(5), }, - [1244] = { - [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_default] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), + [1255] = { + [sym_comment] = STATE(1255), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1245] = { - [sym_comment] = STATE(1245), - [ts_builtin_sym_end] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [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_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), + [1256] = { + [sym_comment] = STATE(1256), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [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(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [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_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, - [1246] = { - [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), + [1257] = { + [sym_comment] = STATE(1257), + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, - [1247] = { - [sym_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_default] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_case] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [1258] = { + [sym_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [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(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1248] = { - [sym_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [1259] = { + [sym_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, - [1249] = { - [sym_comment] = STATE(1249), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [1260] = { + [sym_comment] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1250] = { - [sym_comment] = STATE(1250), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), + [1261] = { + [sym_comment] = STATE(1261), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, - [1251] = { - [sym_comment] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), + [1262] = { + [sym_comment] = STATE(1262), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_else] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1252] = { - [sym_comment] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), + [1263] = { + [sym_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [sym_html_comment] = ACTIONS(5), + }, + [1264] = { + [sym_comment] = STATE(1264), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [sym_html_comment] = ACTIONS(5), + }, + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [sym_html_comment] = ACTIONS(5), + }, + [1266] = { + [sym_comment] = STATE(1266), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [sym_html_comment] = ACTIONS(5), + }, + [1267] = { + [sym_comment] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), [anon_sym_const] = ACTIONS(3437), [anon_sym_BANG] = ACTIONS(3437), [anon_sym_else] = ACTIONS(3437), @@ -164995,1484 +166237,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1253] = { - [sym_comment] = STATE(1253), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [1268] = { + [sym_comment] = STATE(1268), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym__automatic_semicolon] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [1254] = { - [sym_comment] = STATE(1254), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_default] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), + [1269] = { + [sym_comment] = STATE(1269), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_readonly] = ACTIONS(3389), - [anon_sym_get] = ACTIONS(3389), - [anon_sym_set] = ACTIONS(3389), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1255] = { - [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [1270] = { + [sym_comment] = STATE(1270), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, - [1256] = { - [sym_comment] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_namespace] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_with] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_debugger] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LTtemplate_GT] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2226), - [anon_sym_delete] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_private_property_identifier] = ACTIONS(2226), - [sym_this] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_readonly] = ACTIONS(2226), - [anon_sym_get] = ACTIONS(2226), - [anon_sym_set] = ACTIONS(2226), - [anon_sym_declare] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_protected] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_any] = ACTIONS(2226), - [anon_sym_number] = ACTIONS(2226), - [anon_sym_boolean] = ACTIONS(2226), - [anon_sym_string] = ACTIONS(2226), - [anon_sym_symbol] = ACTIONS(2226), - [anon_sym_object] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [sym__automatic_semicolon] = ACTIONS(2460), + [1271] = { + [sym_comment] = STATE(1271), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_case] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [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_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [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(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [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_abstract] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, - [1257] = { - [sym_comment] = STATE(1257), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [1272] = { + [sym_comment] = STATE(1272), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [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(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, - [1258] = { - [sym_comment] = STATE(1258), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), + [1273] = { + [sym_comment] = STATE(1273), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1259] = { - [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1260] = { - [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), + [1275] = { + [sym_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1261] = { - [sym_comment] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(3457), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), + [1276] = { + [sym_comment] = STATE(1276), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_default] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_case] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [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(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, - [1262] = { - [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LTtemplate_GT] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2212), - [sym_number] = ACTIONS(2212), - [sym_private_property_identifier] = ACTIONS(2212), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [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_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [sym__automatic_semicolon] = ACTIONS(2470), + [1277] = { + [sym_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_default] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_case] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1263] = { - [sym_comment] = STATE(1263), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [1278] = { + [sym_comment] = STATE(1278), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_case] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, - [1264] = { - [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), + [1279] = { + [sym_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_case] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_readonly] = ACTIONS(3389), - [anon_sym_get] = ACTIONS(3389), - [anon_sym_set] = ACTIONS(3389), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, - [1265] = { - [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), + [1280] = { + [sym_comment] = STATE(1280), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, - [1266] = { - [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [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), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2434), + [1281] = { + [sym_comment] = STATE(1281), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_case] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1267] = { - [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LTtemplate_GT] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [sym_private_property_identifier] = ACTIONS(2188), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [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_abstract] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [sym__automatic_semicolon] = ACTIONS(2478), + [1282] = { + [sym_comment] = STATE(1282), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, - [1268] = { - [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [sym_html_comment] = ACTIONS(5), - }, - [1269] = { - [sym_comment] = STATE(1269), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [sym_html_comment] = ACTIONS(5), - }, - [1270] = { - [sym_comment] = STATE(1270), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [sym_html_comment] = ACTIONS(5), - }, - [1271] = { - [sym_comment] = STATE(1271), + [1283] = { + [sym_comment] = STATE(1283), [sym_identifier] = ACTIONS(3361), [anon_sym_export] = ACTIONS(3361), [anon_sym_default] = ACTIONS(3361), @@ -166553,93 +167549,913 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1272] = { - [sym_comment] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), + [1284] = { + [sym_comment] = STATE(1284), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, - [1273] = { - [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(3509), + [1285] = { + [sym_comment] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym__automatic_semicolon] = ACTIONS(2202), + [sym_html_comment] = ACTIONS(5), + }, + [1286] = { + [sym_comment] = STATE(1286), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1287] = { + [sym_comment] = STATE(1287), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2176), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_typeof] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_await] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_void] = ACTIONS(2176), + [anon_sym_delete] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_number] = ACTIONS(2176), + [sym_private_property_identifier] = ACTIONS(2176), + [sym_this] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_undefined] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [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_abstract] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1288] = { + [sym_comment] = STATE(1288), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_namespace] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_typeof] = ACTIONS(2192), + [anon_sym_import] = ACTIONS(2192), + [anon_sym_with] = ACTIONS(2192), + [anon_sym_var] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_await] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_debugger] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_throw] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LTtemplate_GT] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_class] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_function] = ACTIONS(2192), + [anon_sym_new] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_void] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [sym_private_property_identifier] = ACTIONS(2192), + [sym_this] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_true] = ACTIONS(2192), + [sym_false] = ACTIONS(2192), + [sym_null] = ACTIONS(2192), + [sym_undefined] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [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), + [anon_sym_abstract] = ACTIONS(2192), + [anon_sym_interface] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2192), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym_html_comment] = ACTIONS(5), + }, + [1289] = { + [sym_comment] = STATE(1289), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_case] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [sym_html_comment] = ACTIONS(5), + }, + [1290] = { + [sym_comment] = STATE(1290), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_default] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), + [sym_html_comment] = ACTIONS(5), + }, + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [1292] = { + [sym_comment] = STATE(1292), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [sym_html_comment] = ACTIONS(5), + }, + [1293] = { + [sym_comment] = STATE(1293), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [sym_html_comment] = ACTIONS(5), + }, + [1294] = { + [sym_comment] = STATE(1294), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [sym_html_comment] = ACTIONS(5), + }, + [1295] = { + [sym_comment] = STATE(1295), [sym_identifier] = ACTIONS(3387), [anon_sym_export] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), [anon_sym_type] = ACTIONS(3387), [anon_sym_namespace] = ACTIONS(3387), [anon_sym_LBRACE] = ACTIONS(3387), @@ -166651,7 +168467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3387), [anon_sym_const] = ACTIONS(3387), [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), [anon_sym_if] = ACTIONS(3387), [anon_sym_switch] = ACTIONS(3387), [anon_sym_for] = ACTIONS(3387), @@ -166666,6 +168481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3387), [anon_sym_throw] = ACTIONS(3387), [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3387), [anon_sym_yield] = ACTIONS(3387), [anon_sym_LBRACK] = ACTIONS(3387), [anon_sym_LTtemplate_GT] = ACTIONS(3387), @@ -166717,6897 +168533,2059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1274] = { - [sym_comment] = STATE(1274), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym_html_comment] = ACTIONS(5), - }, - [1275] = { - [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1296] = { + [sym_comment] = STATE(1296), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1276] = { - [sym_comment] = STATE(1276), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), + [1297] = { + [sym_comment] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3521), [sym_html_comment] = ACTIONS(5), }, - [1277] = { - [sym_comment] = STATE(1277), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1298] = { + [sym_comment] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, - [1278] = { - [sym_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_case] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), + [1299] = { + [sym_comment] = STATE(1299), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, - [1279] = { - [sym_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_case] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), + [1300] = { + [sym_comment] = STATE(1300), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, - [1280] = { - [sym_comment] = STATE(1280), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), + [1301] = { + [sym_comment] = STATE(1301), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1281] = { - [sym_comment] = STATE(1281), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [1302] = { + [sym_comment] = STATE(1302), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [sym_html_comment] = ACTIONS(5), + }, + [1303] = { + [sym_comment] = STATE(1303), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1282] = { - [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), + [1304] = { + [sym_comment] = STATE(1304), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, - [1283] = { - [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), + [1305] = { + [sym_comment] = STATE(1305), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3361), - [anon_sym_set] = ACTIONS(3361), - [anon_sym_declare] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_protected] = ACTIONS(3361), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_any] = ACTIONS(3361), - [anon_sym_number] = ACTIONS(3361), - [anon_sym_boolean] = ACTIONS(3361), - [anon_sym_string] = ACTIONS(3361), - [anon_sym_symbol] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1284] = { - [sym_comment] = STATE(1284), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1306] = { + [sym_comment] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1285] = { - [sym_comment] = STATE(1285), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [1307] = { + [sym_comment] = STATE(1307), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1286] = { - [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1308] = { + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, - [1287] = { - [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1309] = { + [sym_comment] = STATE(1309), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1288] = { - [sym_comment] = STATE(1288), - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_else] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [1310] = { + [sym_comment] = STATE(1310), + [sym_identifier] = ACTIONS(3397), + [anon_sym_export] = ACTIONS(3397), + [anon_sym_default] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_namespace] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_typeof] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_debugger] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_case] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LTtemplate_GT] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_void] = ACTIONS(3397), + [anon_sym_delete] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3397), + [sym_number] = ACTIONS(3397), + [sym_private_property_identifier] = ACTIONS(3397), + [sym_this] = ACTIONS(3397), + [sym_super] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_null] = ACTIONS(3397), + [sym_undefined] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3397), + [anon_sym_set] = ACTIONS(3397), + [anon_sym_declare] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_protected] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_module] = ACTIONS(3397), + [anon_sym_any] = ACTIONS(3397), + [anon_sym_number] = ACTIONS(3397), + [anon_sym_boolean] = ACTIONS(3397), + [anon_sym_string] = ACTIONS(3397), + [anon_sym_symbol] = ACTIONS(3397), + [anon_sym_object] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, - [1289] = { - [sym_comment] = STATE(1289), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_case] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), + [1311] = { + [sym_comment] = STATE(1311), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, - [1290] = { - [sym_comment] = STATE(1290), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), + [1312] = { + [sym_comment] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_get] = ACTIONS(3401), + [anon_sym_set] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_module] = ACTIONS(3401), + [anon_sym_any] = ACTIONS(3401), + [anon_sym_number] = ACTIONS(3401), + [anon_sym_boolean] = ACTIONS(3401), + [anon_sym_string] = ACTIONS(3401), + [anon_sym_symbol] = ACTIONS(3401), + [anon_sym_object] = ACTIONS(3401), + [anon_sym_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, - [1291] = { - [sym_comment] = STATE(1291), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), + [1313] = { + [sym_comment] = STATE(1313), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3457), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_type] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_typeof] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_else] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_debugger] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LTtemplate_GT] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_async] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_void] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3457), + [sym_number] = ACTIONS(3457), + [sym_private_property_identifier] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [sym_super] = ACTIONS(3457), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_undefined] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_readonly] = ACTIONS(3457), + [anon_sym_get] = ACTIONS(3457), + [anon_sym_set] = ACTIONS(3457), + [anon_sym_declare] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_any] = ACTIONS(3457), + [anon_sym_number] = ACTIONS(3457), + [anon_sym_boolean] = ACTIONS(3457), + [anon_sym_string] = ACTIONS(3457), + [anon_sym_symbol] = ACTIONS(3457), + [anon_sym_object] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), [sym_html_comment] = ACTIONS(5), }, - [1292] = { - [sym_comment] = STATE(1292), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [1314] = { + [sym_comment] = STATE(1314), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1293] = { - [sym_comment] = STATE(1293), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [1315] = { + [sym_comment] = STATE(1315), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_get] = ACTIONS(3401), + [anon_sym_set] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_module] = ACTIONS(3401), + [anon_sym_any] = ACTIONS(3401), + [anon_sym_number] = ACTIONS(3401), + [anon_sym_boolean] = ACTIONS(3401), + [anon_sym_string] = ACTIONS(3401), + [anon_sym_symbol] = ACTIONS(3401), + [anon_sym_object] = ACTIONS(3401), + [anon_sym_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, - [1294] = { - [sym_comment] = STATE(1294), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [1316] = { + [sym_comment] = STATE(1316), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_finally] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, - [1295] = { - [sym_comment] = STATE(1295), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_case] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [1317] = { + [sym_statement_block] = STATE(1604), + [sym_comment] = STATE(1317), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2122), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_debugger] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LTtemplate_GT] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_private_property_identifier] = ACTIONS(2122), + [sym_this] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [sym_undefined] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, - [1296] = { - [sym_comment] = STATE(1296), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), + [1318] = { + [sym_comment] = STATE(1318), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1297] = { - [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [1319] = { + [sym_comment] = STATE(1319), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3397), + [anon_sym_export] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_namespace] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_typeof] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_debugger] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LTtemplate_GT] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_void] = ACTIONS(3397), + [anon_sym_delete] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3397), + [sym_number] = ACTIONS(3397), + [sym_private_property_identifier] = ACTIONS(3397), + [sym_this] = ACTIONS(3397), + [sym_super] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_null] = ACTIONS(3397), + [sym_undefined] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3397), + [anon_sym_set] = ACTIONS(3397), + [anon_sym_declare] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_protected] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_module] = ACTIONS(3397), + [anon_sym_any] = ACTIONS(3397), + [anon_sym_number] = ACTIONS(3397), + [anon_sym_boolean] = ACTIONS(3397), + [anon_sym_string] = ACTIONS(3397), + [anon_sym_symbol] = ACTIONS(3397), + [anon_sym_object] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, - [1298] = { - [sym_comment] = STATE(1298), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1320] = { + [sym_comment] = STATE(1320), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1299] = { - [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [sym_html_comment] = ACTIONS(5), - }, - [1300] = { - [sym_comment] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1301] = { - [sym_comment] = STATE(1301), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [sym_html_comment] = ACTIONS(5), - }, - [1302] = { - [sym_comment] = STATE(1302), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [sym_html_comment] = ACTIONS(5), - }, - [1303] = { - [sym_comment] = STATE(1303), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [sym_html_comment] = ACTIONS(5), - }, - [1304] = { - [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym_html_comment] = ACTIONS(5), - }, - [1305] = { - [sym_comment] = STATE(1305), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), - [sym_html_comment] = ACTIONS(5), - }, - [1306] = { - [sym_comment] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), - [sym_html_comment] = ACTIONS(5), - }, - [1307] = { - [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), - [sym_html_comment] = ACTIONS(5), - }, - [1308] = { - [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), - [sym_html_comment] = ACTIONS(5), - }, - [1309] = { - [sym_comment] = STATE(1309), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [sym_html_comment] = ACTIONS(5), - }, - [1310] = { - [sym_comment] = STATE(1310), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [sym_html_comment] = ACTIONS(5), - }, - [1311] = { - [sym_comment] = STATE(1311), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [sym_html_comment] = ACTIONS(5), - }, - [1312] = { - [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym_html_comment] = ACTIONS(5), - }, - [1313] = { - [sym_comment] = STATE(1313), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym_import] = ACTIONS(3269), - [anon_sym_with] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_debugger] = ACTIONS(3269), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3269), - [anon_sym_case] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_LTtemplate_GT] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_function] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(3269), - [anon_sym_delete] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3269), - [sym_number] = ACTIONS(3269), - [sym_private_property_identifier] = ACTIONS(3269), - [sym_this] = ACTIONS(3269), - [sym_super] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_null] = ACTIONS(3269), - [sym_undefined] = ACTIONS(3269), - [anon_sym_AT] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_get] = ACTIONS(3269), - [anon_sym_set] = ACTIONS(3269), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_module] = ACTIONS(3269), - [anon_sym_any] = ACTIONS(3269), - [anon_sym_number] = ACTIONS(3269), - [anon_sym_boolean] = ACTIONS(3269), - [anon_sym_string] = ACTIONS(3269), - [anon_sym_symbol] = ACTIONS(3269), - [anon_sym_object] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [sym_html_comment] = ACTIONS(5), - }, - [1314] = { - [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [sym_html_comment] = ACTIONS(5), - }, - [1315] = { - [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [sym_html_comment] = ACTIONS(5), - }, - [1316] = { - [sym_comment] = STATE(1316), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [sym_html_comment] = ACTIONS(5), - }, - [1317] = { - [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [sym_html_comment] = ACTIONS(5), - }, - [1318] = { - [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [sym_html_comment] = ACTIONS(5), - }, - [1319] = { - [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [sym_html_comment] = ACTIONS(5), - }, - [1320] = { - [sym_comment] = STATE(1320), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [sym_html_comment] = ACTIONS(5), - }, - [1321] = { - [sym_comment] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [sym_html_comment] = ACTIONS(5), - }, - [1322] = { - [sym_comment] = STATE(1322), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), - [sym_html_comment] = ACTIONS(5), - }, - [1323] = { - [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3365), - [anon_sym_export] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym_import] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_debugger] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LTtemplate_GT] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_function] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_void] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3365), - [sym_number] = ACTIONS(3365), - [sym_private_property_identifier] = ACTIONS(3365), - [sym_this] = ACTIONS(3365), - [sym_super] = ACTIONS(3365), - [sym_true] = ACTIONS(3365), - [sym_false] = ACTIONS(3365), - [sym_null] = ACTIONS(3365), - [sym_undefined] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_get] = ACTIONS(3365), - [anon_sym_set] = ACTIONS(3365), - [anon_sym_declare] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_any] = ACTIONS(3365), - [anon_sym_number] = ACTIONS(3365), - [anon_sym_boolean] = ACTIONS(3365), - [anon_sym_string] = ACTIONS(3365), - [anon_sym_symbol] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [sym_html_comment] = ACTIONS(5), - }, - [1324] = { - [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [sym_html_comment] = ACTIONS(5), - }, - [1325] = { - [sym_comment] = STATE(1325), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1326] = { - [sym_comment] = STATE(1326), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1327] = { - [sym_comment] = STATE(1327), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_case] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [sym_html_comment] = ACTIONS(5), - }, - [1328] = { - [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [sym_html_comment] = ACTIONS(5), - }, - [1329] = { - [sym_comment] = STATE(1329), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_default] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_readonly] = ACTIONS(3305), - [anon_sym_get] = ACTIONS(3305), - [anon_sym_set] = ACTIONS(3305), - [anon_sym_declare] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_protected] = ACTIONS(3305), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_any] = ACTIONS(3305), - [anon_sym_number] = ACTIONS(3305), - [anon_sym_boolean] = ACTIONS(3305), - [anon_sym_string] = ACTIONS(3305), - [anon_sym_symbol] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), - [sym_html_comment] = ACTIONS(5), - }, - [1330] = { - [sym_comment] = STATE(1330), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [sym_html_comment] = ACTIONS(5), - }, - [1331] = { - [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3269), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym_import] = ACTIONS(3269), - [anon_sym_with] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_debugger] = ACTIONS(3269), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_LTtemplate_GT] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_function] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(3269), - [anon_sym_delete] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3269), - [sym_number] = ACTIONS(3269), - [sym_private_property_identifier] = ACTIONS(3269), - [sym_this] = ACTIONS(3269), - [sym_super] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_null] = ACTIONS(3269), - [sym_undefined] = ACTIONS(3269), - [anon_sym_AT] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_get] = ACTIONS(3269), - [anon_sym_set] = ACTIONS(3269), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_module] = ACTIONS(3269), - [anon_sym_any] = ACTIONS(3269), - [anon_sym_number] = ACTIONS(3269), - [anon_sym_boolean] = ACTIONS(3269), - [anon_sym_string] = ACTIONS(3269), - [anon_sym_symbol] = ACTIONS(3269), - [anon_sym_object] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [sym_html_comment] = ACTIONS(5), - }, - [1332] = { - [sym_comment] = STATE(1332), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_default] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [sym_html_comment] = ACTIONS(5), - }, - [1333] = { - [sym_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [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_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [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(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [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_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [sym_html_comment] = ACTIONS(5), - }, - [1334] = { - [sym_comment] = STATE(1334), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [sym_html_comment] = ACTIONS(5), - }, - [1335] = { - [sym_comment] = STATE(1335), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1336] = { - [sym_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1337] = { - [sym_comment] = STATE(1337), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1338] = { - [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [sym_html_comment] = ACTIONS(5), - }, - [1339] = { - [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1340] = { - [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1341] = { - [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym_html_comment] = ACTIONS(5), - }, - [1342] = { - [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [sym_html_comment] = ACTIONS(5), - }, - [1343] = { - [sym_comment] = STATE(1343), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [sym_html_comment] = ACTIONS(5), - }, - [1344] = { - [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(3559), - [sym_html_comment] = ACTIONS(5), - }, - [1345] = { - [sym_comment] = STATE(1345), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [sym_html_comment] = ACTIONS(5), - }, - [1346] = { - [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_readonly] = ACTIONS(3305), - [anon_sym_get] = ACTIONS(3305), - [anon_sym_set] = ACTIONS(3305), - [anon_sym_declare] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_protected] = ACTIONS(3305), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_any] = ACTIONS(3305), - [anon_sym_number] = ACTIONS(3305), - [anon_sym_boolean] = ACTIONS(3305), - [anon_sym_string] = ACTIONS(3305), - [anon_sym_symbol] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), - [sym_html_comment] = ACTIONS(5), - }, - [1347] = { - [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3563), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [sym_html_comment] = ACTIONS(5), - }, - [1348] = { - [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [sym_html_comment] = ACTIONS(5), - }, - [1349] = { - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [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_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [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(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [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_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [sym_html_comment] = ACTIONS(5), - }, - [1350] = { - [sym_comment] = STATE(1350), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_case] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym_html_comment] = ACTIONS(5), - }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(3215), - [sym_identifier] = ACTIONS(3213), - [anon_sym_export] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_debugger] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_LTtemplate_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_function] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3213), - [sym_number] = ACTIONS(3213), - [sym_private_property_identifier] = ACTIONS(3213), - [sym_this] = ACTIONS(3213), - [sym_super] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_undefined] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_get] = ACTIONS(3213), - [anon_sym_set] = ACTIONS(3213), - [anon_sym_declare] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_module] = ACTIONS(3213), - [anon_sym_any] = ACTIONS(3213), - [anon_sym_number] = ACTIONS(3213), - [anon_sym_boolean] = ACTIONS(3213), - [anon_sym_string] = ACTIONS(3213), - [anon_sym_symbol] = ACTIONS(3213), - [anon_sym_object] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [sym__automatic_semicolon] = ACTIONS(3215), - [sym_html_comment] = ACTIONS(5), - }, - [1352] = { - [sym_comment] = STATE(1352), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [sym_html_comment] = ACTIONS(5), - }, - [1353] = { - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym_html_comment] = ACTIONS(5), - }, - [1354] = { - [sym_comment] = STATE(1354), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1355] = { - [sym_comment] = STATE(1355), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_case] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [sym_html_comment] = ACTIONS(5), - }, - [1356] = { - [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1357] = { - [sym_comment] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1358] = { - [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(3569), + [1321] = { + [sym_comment] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3543), [sym_identifier] = ACTIONS(3395), [anon_sym_export] = ACTIONS(3395), [anon_sym_type] = ACTIONS(3395), @@ -173687,91 +170665,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1359] = { - [sym_comment] = STATE(1359), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [1322] = { + [sym_comment] = STATE(1322), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1360] = { - [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(3571), + [1323] = { + [sym_comment] = STATE(1323), + [ts_builtin_sym_end] = ACTIONS(3545), [sym_identifier] = ACTIONS(3403), [anon_sym_export] = ACTIONS(3403), [anon_sym_type] = ACTIONS(3403), @@ -173851,6981 +170829,7719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, - [1361] = { - [sym_comment] = STATE(1361), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1324] = { + [sym_comment] = STATE(1324), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), + [1325] = { + [sym_comment] = STATE(1325), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, - [1363] = { - [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), + [1326] = { + [sym_comment] = STATE(1326), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), + [sym_html_comment] = ACTIONS(5), + }, + [1327] = { + [sym_comment] = STATE(1327), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), + [sym_html_comment] = ACTIONS(5), + }, + [1328] = { + [sym_comment] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [1329] = { + [sym_comment] = STATE(1329), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), + [sym_html_comment] = ACTIONS(5), + }, + [1330] = { + [sym_comment] = STATE(1330), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [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_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [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(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [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_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [sym_html_comment] = ACTIONS(5), + }, + [1331] = { + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [sym_html_comment] = ACTIONS(5), + }, + [1332] = { + [sym_comment] = STATE(1332), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1364] = { - [sym_comment] = STATE(1364), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1333] = { + [sym_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1365] = { - [sym_comment] = STATE(1365), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1334] = { + [sym_comment] = STATE(1334), + [sym_identifier] = ACTIONS(3557), + [anon_sym_export] = ACTIONS(3557), + [anon_sym_default] = ACTIONS(3557), + [anon_sym_type] = ACTIONS(3557), + [anon_sym_namespace] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_RBRACE] = ACTIONS(3557), + [anon_sym_typeof] = ACTIONS(3557), + [anon_sym_import] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3557), + [anon_sym_var] = ACTIONS(3557), + [anon_sym_let] = ACTIONS(3557), + [anon_sym_const] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_if] = ACTIONS(3557), + [anon_sym_switch] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_await] = ACTIONS(3557), + [anon_sym_while] = ACTIONS(3557), + [anon_sym_do] = ACTIONS(3557), + [anon_sym_try] = ACTIONS(3557), + [anon_sym_break] = ACTIONS(3557), + [anon_sym_continue] = ACTIONS(3557), + [anon_sym_debugger] = ACTIONS(3557), + [anon_sym_return] = ACTIONS(3557), + [anon_sym_throw] = ACTIONS(3557), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_case] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3557), + [anon_sym_LTtemplate_GT] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_class] = ACTIONS(3557), + [anon_sym_async] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3557), + [anon_sym_using] = ACTIONS(3557), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_SLASH] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_void] = ACTIONS(3557), + [anon_sym_delete] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3557), + [sym_number] = ACTIONS(3557), + [sym_private_property_identifier] = ACTIONS(3557), + [sym_this] = ACTIONS(3557), + [sym_super] = ACTIONS(3557), + [sym_true] = ACTIONS(3557), + [sym_false] = ACTIONS(3557), + [sym_null] = ACTIONS(3557), + [sym_undefined] = ACTIONS(3557), + [anon_sym_AT] = ACTIONS(3557), + [anon_sym_static] = ACTIONS(3557), + [anon_sym_readonly] = ACTIONS(3557), + [anon_sym_get] = ACTIONS(3557), + [anon_sym_set] = ACTIONS(3557), + [anon_sym_declare] = ACTIONS(3557), + [anon_sym_public] = ACTIONS(3557), + [anon_sym_private] = ACTIONS(3557), + [anon_sym_protected] = ACTIONS(3557), + [anon_sym_override] = ACTIONS(3557), + [anon_sym_module] = ACTIONS(3557), + [anon_sym_any] = ACTIONS(3557), + [anon_sym_number] = ACTIONS(3557), + [anon_sym_boolean] = ACTIONS(3557), + [anon_sym_string] = ACTIONS(3557), + [anon_sym_symbol] = ACTIONS(3557), + [anon_sym_object] = ACTIONS(3557), + [anon_sym_abstract] = ACTIONS(3557), + [anon_sym_interface] = ACTIONS(3557), + [anon_sym_enum] = ACTIONS(3557), [sym_html_comment] = ACTIONS(5), }, - [1366] = { - [sym_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_default] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [1335] = { + [sym_comment] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LTtemplate_GT] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3193), + [sym_number] = ACTIONS(3193), + [sym_private_property_identifier] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [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(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, - [1367] = { - [sym_comment] = STATE(1367), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_case] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [1336] = { + [sym_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3457), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_default] = ACTIONS(3457), + [anon_sym_type] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_typeof] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_debugger] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_case] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LTtemplate_GT] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_async] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_void] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3457), + [sym_number] = ACTIONS(3457), + [sym_private_property_identifier] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [sym_super] = ACTIONS(3457), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_undefined] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_readonly] = ACTIONS(3457), + [anon_sym_get] = ACTIONS(3457), + [anon_sym_set] = ACTIONS(3457), + [anon_sym_declare] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_any] = ACTIONS(3457), + [anon_sym_number] = ACTIONS(3457), + [anon_sym_boolean] = ACTIONS(3457), + [anon_sym_string] = ACTIONS(3457), + [anon_sym_symbol] = ACTIONS(3457), + [anon_sym_object] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), [sym_html_comment] = ACTIONS(5), }, - [1368] = { - [sym_comment] = STATE(1368), - [sym_identifier] = ACTIONS(3575), - [anon_sym_export] = ACTIONS(3575), - [anon_sym_default] = ACTIONS(3575), - [anon_sym_type] = ACTIONS(3575), - [anon_sym_namespace] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_RBRACE] = ACTIONS(3575), - [anon_sym_typeof] = ACTIONS(3575), - [anon_sym_import] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3575), - [anon_sym_var] = ACTIONS(3575), - [anon_sym_let] = ACTIONS(3575), - [anon_sym_const] = ACTIONS(3575), - [anon_sym_BANG] = ACTIONS(3575), - [anon_sym_if] = ACTIONS(3575), - [anon_sym_switch] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_await] = ACTIONS(3575), - [anon_sym_while] = ACTIONS(3575), - [anon_sym_do] = ACTIONS(3575), - [anon_sym_try] = ACTIONS(3575), - [anon_sym_break] = ACTIONS(3575), - [anon_sym_continue] = ACTIONS(3575), - [anon_sym_debugger] = ACTIONS(3575), - [anon_sym_return] = ACTIONS(3575), - [anon_sym_throw] = ACTIONS(3575), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym_case] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3575), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_LTtemplate_GT] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(3575), - [anon_sym_SQUOTE] = ACTIONS(3575), - [anon_sym_class] = ACTIONS(3575), - [anon_sym_async] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3575), - [anon_sym_using] = ACTIONS(3575), - [anon_sym_PLUS] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_TILDE] = ACTIONS(3575), - [anon_sym_void] = ACTIONS(3575), - [anon_sym_delete] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3575), - [anon_sym_DASH_DASH] = ACTIONS(3575), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3575), - [sym_number] = ACTIONS(3575), - [sym_private_property_identifier] = ACTIONS(3575), - [sym_this] = ACTIONS(3575), - [sym_super] = ACTIONS(3575), - [sym_true] = ACTIONS(3575), - [sym_false] = ACTIONS(3575), - [sym_null] = ACTIONS(3575), - [sym_undefined] = ACTIONS(3575), - [anon_sym_AT] = ACTIONS(3575), - [anon_sym_static] = ACTIONS(3575), - [anon_sym_readonly] = ACTIONS(3575), - [anon_sym_get] = ACTIONS(3575), - [anon_sym_set] = ACTIONS(3575), - [anon_sym_declare] = ACTIONS(3575), - [anon_sym_public] = ACTIONS(3575), - [anon_sym_private] = ACTIONS(3575), - [anon_sym_protected] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3575), - [anon_sym_module] = ACTIONS(3575), - [anon_sym_any] = ACTIONS(3575), - [anon_sym_number] = ACTIONS(3575), - [anon_sym_boolean] = ACTIONS(3575), - [anon_sym_string] = ACTIONS(3575), - [anon_sym_symbol] = ACTIONS(3575), - [anon_sym_object] = ACTIONS(3575), - [anon_sym_abstract] = ACTIONS(3575), - [anon_sym_interface] = ACTIONS(3575), - [anon_sym_enum] = ACTIONS(3575), + [1337] = { + [sym_comment] = STATE(1337), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, - [1369] = { - [sym_comment] = STATE(1369), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), + [1338] = { + [sym_comment] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1370] = { - [sym_comment] = STATE(1370), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), + [1339] = { + [sym_comment] = STATE(1339), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1371] = { - [sym_comment] = STATE(1371), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1340] = { + [sym_comment] = STATE(1340), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3195), + [anon_sym_export] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_with] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_debugger] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LTtemplate_GT] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_null] = ACTIONS(3195), + [sym_undefined] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_readonly] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3195), + [anon_sym_set] = ACTIONS(3195), + [anon_sym_declare] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_module] = ACTIONS(3195), + [anon_sym_any] = ACTIONS(3195), + [anon_sym_number] = ACTIONS(3195), + [anon_sym_boolean] = ACTIONS(3195), + [anon_sym_string] = ACTIONS(3195), + [anon_sym_symbol] = ACTIONS(3195), + [anon_sym_object] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3565), [sym_html_comment] = ACTIONS(5), }, - [1372] = { - [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), + [1341] = { + [sym_comment] = STATE(1341), + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [sym_html_comment] = ACTIONS(5), - }, - [1373] = { - [sym_comment] = STATE(1373), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, - [1374] = { - [sym_comment] = STATE(1374), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [1342] = { + [sym_comment] = STATE(1342), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_finally] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, - [1375] = { - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_else] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [1343] = { + [sym_comment] = STATE(1343), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1376] = { - [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_finally] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [1344] = { + [sym_comment] = STATE(1344), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, - [1377] = { - [sym_comment] = STATE(1377), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), + [1345] = { + [sym_comment] = STATE(1345), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, - [1378] = { - [sym_comment] = STATE(1378), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), + [1346] = { + [sym_comment] = STATE(1346), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [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(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), [sym_html_comment] = ACTIONS(5), }, - [1379] = { - [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_else] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), + [1347] = { + [sym_comment] = STATE(1347), + [ts_builtin_sym_end] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_readonly] = ACTIONS(3301), - [anon_sym_get] = ACTIONS(3301), - [anon_sym_set] = ACTIONS(3301), - [anon_sym_declare] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_module] = ACTIONS(3301), - [anon_sym_any] = ACTIONS(3301), - [anon_sym_number] = ACTIONS(3301), - [anon_sym_boolean] = ACTIONS(3301), - [anon_sym_string] = ACTIONS(3301), - [anon_sym_symbol] = ACTIONS(3301), - [anon_sym_object] = ACTIONS(3301), - [anon_sym_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), [sym_html_comment] = ACTIONS(5), }, - [1380] = { - [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_else] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), + [1348] = { + [sym_comment] = STATE(1348), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_else] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1381] = { - [sym_statement_block] = STATE(1600), - [sym_comment] = STATE(1381), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2126), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_namespace] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_debugger] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LTtemplate_GT] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2126), - [anon_sym_delete] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_private_property_identifier] = ACTIONS(2126), - [sym_this] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_undefined] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [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), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), + [1349] = { + [sym_comment] = STATE(1349), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_default] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_case] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1382] = { - [sym_comment] = STATE(1382), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [1350] = { + [sym_comment] = STATE(1350), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, - [1383] = { - [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), + [1351] = { + [sym_comment] = STATE(1351), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [sym_html_comment] = ACTIONS(5), + }, + [1352] = { + [sym_comment] = STATE(1352), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_case] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym_html_comment] = ACTIONS(5), + }, + [1353] = { + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1384] = { - [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), + [1354] = { + [sym_comment] = STATE(1354), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [sym_html_comment] = ACTIONS(5), + }, + [1355] = { + [sym_comment] = STATE(1355), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1385] = { - [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [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(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), + [1356] = { + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(3585), [sym_html_comment] = ACTIONS(5), }, - [1386] = { - [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [1357] = { + [sym_comment] = STATE(1357), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, - [1387] = { - [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [1358] = { + [sym_comment] = STATE(1358), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1388] = { - [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), + [1359] = { + [sym_comment] = STATE(1359), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1389] = { - [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), + [1360] = { + [sym_comment] = STATE(1360), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym_html_comment] = ACTIONS(5), + }, + [1361] = { + [sym_comment] = STATE(1361), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, - [1390] = { - [sym_comment] = STATE(1390), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), + [1362] = { + [sym_comment] = STATE(1362), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, - [1391] = { - [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, - [1392] = { - [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1364] = { + [sym_comment] = STATE(1364), + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_abstract] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1393] = { - [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1365] = { + [sym_comment] = STATE(1365), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1394] = { - [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1366] = { + [sym_comment] = STATE(1366), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_default] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_case] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1395] = { - [sym_comment] = STATE(1395), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), + [1367] = { + [sym_comment] = STATE(1367), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_case] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, - [1396] = { - [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), + [1368] = { + [sym_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_case] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, - [1397] = { - [sym_comment] = STATE(1397), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), + [1369] = { + [sym_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_default] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_case] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [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(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, - [1398] = { - [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1370] = { + [sym_comment] = STATE(1370), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [sym__automatic_semicolon] = ACTIONS(3165), [sym_html_comment] = ACTIONS(5), }, - [1399] = { - [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1371] = { + [sym_comment] = STATE(1371), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2138), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_namespace] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_typeof] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_with] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_await] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_debugger] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LTtemplate_GT] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2138), + [anon_sym_void] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2138), + [sym_number] = ACTIONS(2138), + [sym_private_property_identifier] = ACTIONS(2138), + [sym_this] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_true] = ACTIONS(2138), + [sym_false] = ACTIONS(2138), + [sym_null] = ACTIONS(2138), + [sym_undefined] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [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), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [sym__automatic_semicolon] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [1400] = { - [sym_comment] = STATE(1400), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_default] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_case] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), + [1372] = { + [sym_comment] = STATE(1372), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, - [1401] = { - [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3211), - [anon_sym_export] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_typeof] = ACTIONS(3211), - [anon_sym_import] = ACTIONS(3211), - [anon_sym_with] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_await] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_debugger] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_finally] = ACTIONS(3211), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LTtemplate_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_SQUOTE] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_async] = ACTIONS(3211), - [anon_sym_function] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_void] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3211), - [sym_number] = ACTIONS(3211), - [sym_private_property_identifier] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [sym_super] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_null] = ACTIONS(3211), - [sym_undefined] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_readonly] = ACTIONS(3211), - [anon_sym_get] = ACTIONS(3211), - [anon_sym_set] = ACTIONS(3211), - [anon_sym_declare] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_module] = ACTIONS(3211), - [anon_sym_any] = ACTIONS(3211), - [anon_sym_number] = ACTIONS(3211), - [anon_sym_boolean] = ACTIONS(3211), - [anon_sym_string] = ACTIONS(3211), - [anon_sym_symbol] = ACTIONS(3211), - [anon_sym_object] = ACTIONS(3211), - [anon_sym_abstract] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), + [1373] = { + [sym_comment] = STATE(1373), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_else] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, - [1402] = { - [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), + [1374] = { + [sym_comment] = STATE(1374), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_else] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), + [sym_html_comment] = ACTIONS(5), + }, + [1375] = { + [sym_comment] = STATE(1375), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2302), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_import] = ACTIONS(2302), + [anon_sym_with] = ACTIONS(2302), + [anon_sym_var] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_switch] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_await] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_debugger] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_throw] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_class] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_function] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_void] = ACTIONS(2302), + [anon_sym_delete] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2302), + [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2302), + [sym_number] = ACTIONS(2302), + [sym_private_property_identifier] = ACTIONS(2302), + [sym_this] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_true] = ACTIONS(2302), + [sym_false] = ACTIONS(2302), + [sym_null] = ACTIONS(2302), + [sym_undefined] = ACTIONS(2302), + [anon_sym_AT] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_readonly] = ACTIONS(2302), + [anon_sym_get] = ACTIONS(2302), + [anon_sym_set] = ACTIONS(2302), + [anon_sym_declare] = ACTIONS(2302), + [anon_sym_public] = ACTIONS(2302), + [anon_sym_private] = ACTIONS(2302), + [anon_sym_protected] = ACTIONS(2302), + [anon_sym_override] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_any] = ACTIONS(2302), + [anon_sym_number] = ACTIONS(2302), + [anon_sym_boolean] = ACTIONS(2302), + [anon_sym_string] = ACTIONS(2302), + [anon_sym_symbol] = ACTIONS(2302), + [anon_sym_object] = ACTIONS(2302), + [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2480), + [sym_html_comment] = ACTIONS(5), + }, + [1376] = { + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_else] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [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(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, - [1403] = { - [sym_comment] = STATE(1403), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_case] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), + [1377] = { + [sym_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1404] = { - [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), + [1378] = { + [sym_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3409), + [anon_sym_export] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_typeof] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [anon_sym_let] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_debugger] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LTtemplate_GT] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_void] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3409), + [sym_number] = ACTIONS(3409), + [sym_private_property_identifier] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), + [sym_super] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_null] = ACTIONS(3409), + [sym_undefined] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_get] = ACTIONS(3409), + [anon_sym_set] = ACTIONS(3409), + [anon_sym_declare] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_protected] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_any] = ACTIONS(3409), + [anon_sym_number] = ACTIONS(3409), + [anon_sym_boolean] = ACTIONS(3409), + [anon_sym_string] = ACTIONS(3409), + [anon_sym_symbol] = ACTIONS(3409), + [anon_sym_object] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), [sym_html_comment] = ACTIONS(5), }, - [1405] = { - [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [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(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [1379] = { + [sym_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3411), + [anon_sym_export] = ACTIONS(3411), + [anon_sym_default] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_RBRACE] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_debugger] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_case] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_LTtemplate_GT] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_function] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_void] = ACTIONS(3411), + [anon_sym_delete] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3411), + [sym_number] = ACTIONS(3411), + [sym_private_property_identifier] = ACTIONS(3411), + [sym_this] = ACTIONS(3411), + [sym_super] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_null] = ACTIONS(3411), + [sym_undefined] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3411), + [anon_sym_set] = ACTIONS(3411), + [anon_sym_declare] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_module] = ACTIONS(3411), + [anon_sym_any] = ACTIONS(3411), + [anon_sym_number] = ACTIONS(3411), + [anon_sym_boolean] = ACTIONS(3411), + [anon_sym_string] = ACTIONS(3411), + [anon_sym_symbol] = ACTIONS(3411), + [anon_sym_object] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), [sym_html_comment] = ACTIONS(5), }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3611), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [1380] = { + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(2212), [sym_html_comment] = ACTIONS(5), }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), + [1381] = { + [sym_comment] = STATE(1381), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_case] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, - [1408] = { - [sym_comment] = STATE(1408), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), + [1382] = { + [sym_comment] = STATE(1382), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, - [1409] = { - [sym_comment] = STATE(1409), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_default] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_case] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), + [1383] = { + [sym_comment] = STATE(1383), + [ts_builtin_sym_end] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1410] = { - [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [1384] = { + [sym_comment] = STATE(1384), + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, - [1411] = { - [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2456), + [1385] = { + [sym_comment] = STATE(1385), + [ts_builtin_sym_end] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1412] = { - [sym_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2308), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_namespace] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_typeof] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_with] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LTtemplate_GT] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2308), - [anon_sym_void] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2308), - [sym_number] = ACTIONS(2308), - [sym_private_property_identifier] = ACTIONS(2308), - [sym_this] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_undefined] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_readonly] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_protected] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_any] = ACTIONS(2308), - [anon_sym_number] = ACTIONS(2308), - [anon_sym_boolean] = ACTIONS(2308), - [anon_sym_string] = ACTIONS(2308), - [anon_sym_symbol] = ACTIONS(2308), - [anon_sym_object] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2436), + [1386] = { + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1413] = { - [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LTtemplate_GT] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2292), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_object] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [sym__automatic_semicolon] = ACTIONS(2484), + [1387] = { + [sym_comment] = STATE(1387), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1414] = { - [sym_comment] = STATE(1414), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1388] = { + [sym_comment] = STATE(1388), + [ts_builtin_sym_end] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [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(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_typeof] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), - [anon_sym_var] = ACTIONS(3207), - [anon_sym_let] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_debugger] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LTtemplate_GT] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_function] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3207), - [sym_number] = ACTIONS(3207), - [sym_private_property_identifier] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [sym_super] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_null] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_readonly] = ACTIONS(3207), - [anon_sym_get] = ACTIONS(3207), - [anon_sym_set] = ACTIONS(3207), - [anon_sym_declare] = ACTIONS(3207), - [anon_sym_public] = ACTIONS(3207), - [anon_sym_private] = ACTIONS(3207), - [anon_sym_protected] = ACTIONS(3207), - [anon_sym_override] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_any] = ACTIONS(3207), - [anon_sym_number] = ACTIONS(3207), - [anon_sym_boolean] = ACTIONS(3207), - [anon_sym_string] = ACTIONS(3207), - [anon_sym_symbol] = ACTIONS(3207), - [anon_sym_object] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [sym__automatic_semicolon] = ACTIONS(3209), + [1389] = { + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [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_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [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(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [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_abstract] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), [sym_html_comment] = ACTIONS(5), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), + [1390] = { + [sym_comment] = STATE(1390), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1417] = { - [sym_comment] = STATE(1417), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), + [1391] = { + [sym_comment] = STATE(1391), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1418] = { - [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), + [1392] = { + [sym_comment] = STATE(1392), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [sym_html_comment] = ACTIONS(5), - }, - [1419] = { - [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_default] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_case] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), - [sym_html_comment] = ACTIONS(5), - }, - [1420] = { - [sym_comment] = STATE(1420), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1421] = { - [sym_comment] = STATE(1421), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [1393] = { + [sym_comment] = STATE(1393), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1422] = { - [sym_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), + [1394] = { + [sym_comment] = STATE(1394), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [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(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1423] = { - [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_else] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), + [1395] = { + [sym_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1424] = { - [sym_comment] = STATE(1424), + [1396] = { + [sym_comment] = STATE(1396), [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_else] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3331), + [anon_sym_export] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_debugger] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_LTtemplate_GT] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_delete] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [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(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [sym_this] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_get] = ACTIONS(3331), + [anon_sym_set] = ACTIONS(3331), + [anon_sym_declare] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_any] = ACTIONS(3331), + [anon_sym_number] = ACTIONS(3331), + [anon_sym_boolean] = ACTIONS(3331), + [anon_sym_string] = ACTIONS(3331), + [anon_sym_symbol] = ACTIONS(3331), + [anon_sym_object] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), [sym_html_comment] = ACTIONS(5), }, - [1425] = { - [sym_comment] = STATE(1425), + [1397] = { + [sym_comment] = STATE(1397), [ts_builtin_sym_end] = ACTIONS(3619), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [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(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, - [1426] = { - [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_else] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [1398] = { + [sym_comment] = STATE(1398), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1427] = { - [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), + [1399] = { + [sym_comment] = STATE(1399), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, - [1428] = { - [sym_comment] = STATE(1428), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), + [1400] = { + [sym_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3331), + [anon_sym_export] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_debugger] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_LTtemplate_GT] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_delete] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [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(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [sym_this] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_get] = ACTIONS(3331), + [anon_sym_set] = ACTIONS(3331), + [anon_sym_declare] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_any] = ACTIONS(3331), + [anon_sym_number] = ACTIONS(3331), + [anon_sym_boolean] = ACTIONS(3331), + [anon_sym_string] = ACTIONS(3331), + [anon_sym_symbol] = ACTIONS(3331), + [anon_sym_object] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), [sym_html_comment] = ACTIONS(5), }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), + [1401] = { + [sym_comment] = STATE(1401), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1430] = { - [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), + [1402] = { + [sym_comment] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, - [1431] = { - [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [1403] = { + [sym_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1432] = { - [sym_comment] = STATE(1432), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [1404] = { + [sym_comment] = STATE(1404), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, - [1433] = { - [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [1405] = { + [sym_comment] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3411), + [anon_sym_export] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_RBRACE] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_else] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_debugger] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_LTtemplate_GT] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_function] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_void] = ACTIONS(3411), + [anon_sym_delete] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3411), + [sym_number] = ACTIONS(3411), + [sym_private_property_identifier] = ACTIONS(3411), + [sym_this] = ACTIONS(3411), + [sym_super] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_null] = ACTIONS(3411), + [sym_undefined] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3411), + [anon_sym_set] = ACTIONS(3411), + [anon_sym_declare] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_module] = ACTIONS(3411), + [anon_sym_any] = ACTIONS(3411), + [anon_sym_number] = ACTIONS(3411), + [anon_sym_boolean] = ACTIONS(3411), + [anon_sym_string] = ACTIONS(3411), + [anon_sym_symbol] = ACTIONS(3411), + [anon_sym_object] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), [sym_html_comment] = ACTIONS(5), }, - [1434] = { - [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3409), + [anon_sym_export] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_typeof] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [anon_sym_let] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_debugger] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LTtemplate_GT] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_void] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3409), + [sym_number] = ACTIONS(3409), + [sym_private_property_identifier] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), + [sym_super] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_null] = ACTIONS(3409), + [sym_undefined] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_get] = ACTIONS(3409), + [anon_sym_set] = ACTIONS(3409), + [anon_sym_declare] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_protected] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_any] = ACTIONS(3409), + [anon_sym_number] = ACTIONS(3409), + [anon_sym_boolean] = ACTIONS(3409), + [anon_sym_string] = ACTIONS(3409), + [anon_sym_symbol] = ACTIONS(3409), + [anon_sym_object] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), [sym_html_comment] = ACTIONS(5), }, - [1435] = { - [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [1407] = { + [sym_comment] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(3627), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1436] = { - [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), + [1408] = { + [sym_comment] = STATE(1408), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1437] = { - [sym_comment] = STATE(1437), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_default] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_case] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), + [1409] = { + [sym_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1438] = { - [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), + [1410] = { + [sym_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1439] = { - [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1411] = { + [sym_comment] = STATE(1411), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), [sym_html_comment] = ACTIONS(5), }, - [1440] = { - [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2142), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_debugger] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LTtemplate_GT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_void] = ACTIONS(2142), - [anon_sym_delete] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_number] = ACTIONS(2142), - [sym_private_property_identifier] = ACTIONS(2142), - [sym_this] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_undefined] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_get] = ACTIONS(2142), - [anon_sym_set] = ACTIONS(2142), - [anon_sym_declare] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_protected] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_any] = ACTIONS(2142), - [anon_sym_number] = ACTIONS(2142), - [anon_sym_boolean] = ACTIONS(2142), - [anon_sym_string] = ACTIONS(2142), - [anon_sym_symbol] = ACTIONS(2142), - [anon_sym_object] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [sym__automatic_semicolon] = ACTIONS(2394), + [1412] = { + [sym_comment] = STATE(1412), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, - [1441] = { - [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), + [1413] = { + [sym_comment] = STATE(1413), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [1414] = { + [sym_comment] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3205), + [anon_sym_export] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_debugger] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LTtemplate_GT] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [sym_undefined] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_get] = ACTIONS(3205), + [anon_sym_set] = ACTIONS(3205), + [anon_sym_declare] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_module] = ACTIONS(3205), + [anon_sym_any] = ACTIONS(3205), + [anon_sym_number] = ACTIONS(3205), + [anon_sym_boolean] = ACTIONS(3205), + [anon_sym_string] = ACTIONS(3205), + [anon_sym_symbol] = ACTIONS(3205), + [anon_sym_object] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [sym__automatic_semicolon] = ACTIONS(3207), [sym_html_comment] = ACTIONS(5), }, - [1443] = { - [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [1415] = { + [sym_comment] = STATE(1415), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_default] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_case] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, - [1444] = { - [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_else] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), + [1416] = { + [sym_comment] = STATE(1416), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1445] = { - [sym_comment] = STATE(1445), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1417] = { + [sym_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1446] = { - [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(3643), + [1418] = { + [sym_comment] = STATE(1418), [sym_identifier] = ACTIONS(3459), [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), [anon_sym_type] = ACTIONS(3459), [anon_sym_namespace] = ACTIONS(3459), [anon_sym_LBRACE] = ACTIONS(3459), @@ -180837,7 +178553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3459), [anon_sym_const] = ACTIONS(3459), [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), [anon_sym_if] = ACTIONS(3459), [anon_sym_switch] = ACTIONS(3459), [anon_sym_for] = ACTIONS(3459), @@ -180852,6 +178567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3459), [anon_sym_throw] = ACTIONS(3459), [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), [anon_sym_yield] = ACTIONS(3459), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LTtemplate_GT] = ACTIONS(3459), @@ -180903,582 +178619,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1447] = { - [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), + [1419] = { + [sym_comment] = STATE(1419), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_default] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_case] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1448] = { - [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), + [1420] = { + [sym_comment] = STATE(1420), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_case] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [sym_html_comment] = ACTIONS(5), + }, + [1421] = { + [sym_comment] = STATE(1421), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [sym_html_comment] = ACTIONS(5), + }, + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [sym_html_comment] = ACTIONS(5), + }, + [1423] = { + [sym_comment] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [sym_html_comment] = ACTIONS(5), + }, + [1424] = { + [sym_comment] = STATE(1424), + [ts_builtin_sym_end] = ACTIONS(3631), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [sym_html_comment] = ACTIONS(5), + }, + [1425] = { + [sym_comment] = STATE(1425), + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [sym_html_comment] = ACTIONS(5), + }, + [1426] = { + [sym_comment] = STATE(1426), + [ts_builtin_sym_end] = ACTIONS(3635), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [sym_html_comment] = ACTIONS(5), + }, + [1427] = { + [sym_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [sym_html_comment] = ACTIONS(5), + }, + [1428] = { + [sym_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_default] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_case] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, - [1449] = { - [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(3639), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [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(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1450] = { - [sym_comment] = STATE(1450), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1430] = { + [sym_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_namespace] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_with] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_debugger] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LTtemplate_GT] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_void] = ACTIONS(2172), - [anon_sym_delete] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), + [1431] = { + [sym_comment] = STATE(1431), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2172), - [sym_number] = ACTIONS(2172), - [sym_private_property_identifier] = ACTIONS(2172), - [sym_this] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_null] = ACTIONS(2172), - [sym_undefined] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_readonly] = ACTIONS(2172), - [anon_sym_get] = ACTIONS(2172), - [anon_sym_set] = ACTIONS(2172), - [anon_sym_declare] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_any] = ACTIONS(2172), - [anon_sym_number] = ACTIONS(2172), - [anon_sym_boolean] = ACTIONS(2172), - [anon_sym_string] = ACTIONS(2172), - [anon_sym_symbol] = ACTIONS(2172), - [anon_sym_object] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_with] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_await] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_debugger] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LTtemplate_GT] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_void] = ACTIONS(2166), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2166), - [sym_number] = ACTIONS(2166), - [sym_private_property_identifier] = ACTIONS(2166), - [sym_this] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_undefined] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_readonly] = ACTIONS(2166), - [anon_sym_get] = ACTIONS(2166), - [anon_sym_set] = ACTIONS(2166), - [anon_sym_declare] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_module] = ACTIONS(2166), - [anon_sym_any] = ACTIONS(2166), - [anon_sym_number] = ACTIONS(2166), - [anon_sym_boolean] = ACTIONS(2166), - [anon_sym_string] = ACTIONS(2166), - [anon_sym_symbol] = ACTIONS(2166), - [anon_sym_object] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), + [1432] = { + [sym_comment] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [1433] = { + [sym_comment] = STATE(1433), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1454] = { - [sym_comment] = STATE(1454), + [1434] = { + [sym_comment] = STATE(1434), [sym_identifier] = ACTIONS(3417), [anon_sym_export] = ACTIONS(3417), [anon_sym_default] = ACTIONS(3417), @@ -181559,585 +179931,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, - [1455] = { - [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(3335), - [sym_identifier] = ACTIONS(3191), - [anon_sym_export] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_debugger] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LTtemplate_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_void] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3191), - [sym_number] = ACTIONS(3191), - [sym_private_property_identifier] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - [sym_super] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_null] = ACTIONS(3191), - [sym_undefined] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3191), - [anon_sym_set] = ACTIONS(3191), - [anon_sym_declare] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_module] = ACTIONS(3191), - [anon_sym_any] = ACTIONS(3191), - [anon_sym_number] = ACTIONS(3191), - [anon_sym_boolean] = ACTIONS(3191), - [anon_sym_string] = ACTIONS(3191), - [anon_sym_symbol] = ACTIONS(3191), - [anon_sym_object] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3653), - [sym_html_comment] = ACTIONS(5), - }, - [1456] = { - [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3183), - [anon_sym_export] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym_import] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_debugger] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_finally] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LTtemplate_GT] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_function] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_void] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3183), - [sym_number] = ACTIONS(3183), - [sym_private_property_identifier] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [sym_super] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_null] = ACTIONS(3183), - [sym_undefined] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_get] = ACTIONS(3183), - [anon_sym_set] = ACTIONS(3183), - [anon_sym_declare] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_module] = ACTIONS(3183), - [anon_sym_any] = ACTIONS(3183), - [anon_sym_number] = ACTIONS(3183), - [anon_sym_boolean] = ACTIONS(3183), - [anon_sym_string] = ACTIONS(3183), - [anon_sym_symbol] = ACTIONS(3183), - [anon_sym_object] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [sym_html_comment] = ACTIONS(5), - }, - [1457] = { - [sym_comment] = STATE(1457), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), + [1435] = { + [sym_comment] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [sym_html_comment] = ACTIONS(5), - }, - [1458] = { - [sym_comment] = STATE(1458), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), [sym_html_comment] = ACTIONS(5), }, - [1459] = { - [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3655), + [1436] = { + [sym_comment] = STATE(1436), + [ts_builtin_sym_end] = ACTIONS(3647), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, - [1460] = { - [sym_comment] = STATE(1460), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_default] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), + [1437] = { + [sym_comment] = STATE(1437), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [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_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [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(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [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_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, - [1461] = { - [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), + [1438] = { + [sym_comment] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, - [1462] = { - [sym_comment] = STATE(1462), + [1439] = { + [sym_comment] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(3651), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [sym_html_comment] = ACTIONS(5), + }, + [1440] = { + [sym_comment] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(3653), [sym_identifier] = ACTIONS(3275), [anon_sym_export] = ACTIONS(3275), - [anon_sym_default] = ACTIONS(3275), [anon_sym_type] = ACTIONS(3275), [anon_sym_namespace] = ACTIONS(3275), [anon_sym_LBRACE] = ACTIONS(3275), @@ -182149,6 +180357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3275), [anon_sym_const] = ACTIONS(3275), [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), [anon_sym_if] = ACTIONS(3275), [anon_sym_switch] = ACTIONS(3275), [anon_sym_for] = ACTIONS(3275), @@ -182163,7 +180372,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3275), [anon_sym_throw] = ACTIONS(3275), [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), [anon_sym_yield] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(3275), [anon_sym_LTtemplate_GT] = ACTIONS(3275), @@ -182215,664 +180423,1484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, - [1463] = { - [sym_comment] = STATE(1463), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [1441] = { + [sym_comment] = STATE(1441), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, - [1464] = { - [sym_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [1442] = { + [sym_comment] = STATE(1442), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_default] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_case] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), + [sym_html_comment] = ACTIONS(5), + }, + [1443] = { + [sym_comment] = STATE(1443), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [sym_html_comment] = ACTIONS(5), + }, + [1444] = { + [sym_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [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(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), + [sym_html_comment] = ACTIONS(5), + }, + [1445] = { + [sym_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [sym_html_comment] = ACTIONS(5), + }, + [1446] = { + [sym_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(3659), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [sym_html_comment] = ACTIONS(5), + }, + [1447] = { + [sym_comment] = STATE(1447), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [sym_html_comment] = ACTIONS(5), + }, + [1448] = { + [sym_comment] = STATE(1448), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [sym_html_comment] = ACTIONS(5), + }, + [1449] = { + [sym_comment] = STATE(1449), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [sym_html_comment] = ACTIONS(5), + }, + [1450] = { + [sym_comment] = STATE(1450), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [sym_html_comment] = ACTIONS(5), + }, + [1451] = { + [sym_comment] = STATE(1451), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [1452] = { + [sym_comment] = STATE(1452), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_case] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, - [1466] = { - [sym_comment] = STATE(1466), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [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(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), + [1453] = { + [sym_comment] = STATE(1453), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, - [1467] = { - [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), + [1454] = { + [sym_comment] = STATE(1454), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1455] = { + [sym_comment] = STATE(1455), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1469] = { - [sym_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), + [1456] = { + [sym_comment] = STATE(1456), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, - [1470] = { - [sym_comment] = STATE(1470), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), + [1457] = { + [sym_comment] = STATE(1457), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, - [1471] = { - [sym_comment] = STATE(1471), + [1458] = { + [sym_comment] = STATE(1458), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [sym_html_comment] = ACTIONS(5), + }, + [1459] = { + [sym_comment] = STATE(1459), [sym_identifier] = ACTIONS(3297), [anon_sym_export] = ACTIONS(3297), [anon_sym_default] = ACTIONS(3297), @@ -182936,1012 +181964,848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3297), [anon_sym_get] = ACTIONS(3297), [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), - [sym_html_comment] = ACTIONS(5), - }, - [1472] = { - [sym_comment] = STATE(1472), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_default] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_readonly] = ACTIONS(3301), - [anon_sym_get] = ACTIONS(3301), - [anon_sym_set] = ACTIONS(3301), - [anon_sym_declare] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_module] = ACTIONS(3301), - [anon_sym_any] = ACTIONS(3301), - [anon_sym_number] = ACTIONS(3301), - [anon_sym_boolean] = ACTIONS(3301), - [anon_sym_string] = ACTIONS(3301), - [anon_sym_symbol] = ACTIONS(3301), - [anon_sym_object] = ACTIONS(3301), - [anon_sym_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), - [sym_html_comment] = ACTIONS(5), - }, - [1473] = { - [sym_comment] = STATE(1473), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [sym_html_comment] = ACTIONS(5), - }, - [1474] = { - [sym_comment] = STATE(1474), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, - [1475] = { - [sym_comment] = STATE(1475), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [1460] = { + [sym_comment] = STATE(1460), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), [sym_html_comment] = ACTIONS(5), }, - [1476] = { - [sym_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), + [1461] = { + [sym_comment] = STATE(1461), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, - [1477] = { - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1462] = { + [sym_comment] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [sym__automatic_semicolon] = ACTIONS(3661), [sym_html_comment] = ACTIONS(5), }, - [1478] = { - [sym_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_case] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), + [1463] = { + [sym_comment] = STATE(1463), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym_html_comment] = ACTIONS(5), + }, + [1464] = { + [sym_comment] = STATE(1464), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_default] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_case] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1479] = { - [sym_comment] = STATE(1479), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), + [1465] = { + [sym_comment] = STATE(1465), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1480] = { - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [1466] = { + [sym_comment] = STATE(1466), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_default] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_case] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, - [1481] = { - [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [1467] = { + [sym_comment] = STATE(1467), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_case] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [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(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), + [1468] = { + [sym_comment] = STATE(1468), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_case] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [1469] = { + [sym_comment] = STATE(1469), + [sym_identifier] = ACTIONS(3381), + [anon_sym_export] = ACTIONS(3381), + [anon_sym_default] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_namespace] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_typeof] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_with] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [anon_sym_let] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_debugger] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_case] = ACTIONS(3381), + [anon_sym_yield] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LTtemplate_GT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_void] = ACTIONS(3381), + [anon_sym_delete] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3381), + [sym_number] = ACTIONS(3381), + [sym_private_property_identifier] = ACTIONS(3381), + [sym_this] = ACTIONS(3381), + [sym_super] = ACTIONS(3381), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [sym_null] = ACTIONS(3381), + [sym_undefined] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_readonly] = ACTIONS(3381), + [anon_sym_get] = ACTIONS(3381), + [anon_sym_set] = ACTIONS(3381), + [anon_sym_declare] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_protected] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3381), + [anon_sym_any] = ACTIONS(3381), + [anon_sym_number] = ACTIONS(3381), + [anon_sym_boolean] = ACTIONS(3381), + [anon_sym_string] = ACTIONS(3381), + [anon_sym_symbol] = ACTIONS(3381), + [anon_sym_object] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), [sym_html_comment] = ACTIONS(5), }, - [1484] = { - [sym_comment] = STATE(1484), + [1470] = { + [sym_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(3663), [sym_identifier] = ACTIONS(3373), [anon_sym_export] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), [anon_sym_type] = ACTIONS(3373), [anon_sym_namespace] = ACTIONS(3373), [anon_sym_LBRACE] = ACTIONS(3373), @@ -183953,6 +182817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3373), [anon_sym_const] = ACTIONS(3373), [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3373), [anon_sym_if] = ACTIONS(3373), [anon_sym_switch] = ACTIONS(3373), [anon_sym_for] = ACTIONS(3373), @@ -183967,7 +182832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3373), [anon_sym_throw] = ACTIONS(3373), [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), [anon_sym_yield] = ACTIONS(3373), [anon_sym_LBRACK] = ACTIONS(3373), [anon_sym_LTtemplate_GT] = ACTIONS(3373), @@ -184014,508 +182878,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3373), [anon_sym_symbol] = ACTIONS(3373), [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [sym_html_comment] = ACTIONS(5), - }, - [1485] = { - [sym_comment] = STATE(1485), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_case] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [sym_html_comment] = ACTIONS(5), - }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym_html_comment] = ACTIONS(5), - }, - [1487] = { - [sym_comment] = STATE(1487), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [sym_html_comment] = ACTIONS(5), - }, - [1488] = { - [sym_comment] = STATE(1488), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [sym_html_comment] = ACTIONS(5), - }, - [1489] = { - [sym_comment] = STATE(1489), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, - [1490] = { - [sym_comment] = STATE(1490), - [sym_identifier] = ACTIONS(3365), - [anon_sym_export] = ACTIONS(3365), - [anon_sym_default] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym_import] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_debugger] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_case] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LTtemplate_GT] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_function] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_void] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3365), - [sym_number] = ACTIONS(3365), - [sym_private_property_identifier] = ACTIONS(3365), - [sym_this] = ACTIONS(3365), - [sym_super] = ACTIONS(3365), - [sym_true] = ACTIONS(3365), - [sym_false] = ACTIONS(3365), - [sym_null] = ACTIONS(3365), - [sym_undefined] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_get] = ACTIONS(3365), - [anon_sym_set] = ACTIONS(3365), - [anon_sym_declare] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_any] = ACTIONS(3365), - [anon_sym_number] = ACTIONS(3365), - [anon_sym_boolean] = ACTIONS(3365), - [anon_sym_string] = ACTIONS(3365), - [anon_sym_symbol] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), + [1471] = { + [sym_comment] = STATE(1471), + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1491] = { - [sym_comment] = STATE(1491), + [1472] = { + [sym_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(3667), [sym_identifier] = ACTIONS(3363), [anon_sym_export] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), [anon_sym_type] = ACTIONS(3363), [anon_sym_namespace] = ACTIONS(3363), [anon_sym_LBRACE] = ACTIONS(3363), @@ -184527,6 +182981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3363), [anon_sym_const] = ACTIONS(3363), [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), [anon_sym_if] = ACTIONS(3363), [anon_sym_switch] = ACTIONS(3363), [anon_sym_for] = ACTIONS(3363), @@ -184541,7 +182996,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3363), [anon_sym_throw] = ACTIONS(3363), [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_case] = ACTIONS(3363), [anon_sym_yield] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(3363), [anon_sym_LTtemplate_GT] = ACTIONS(3363), @@ -184593,2937 +183047,3604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, - [1492] = { - [sym_comment] = STATE(1492), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), + [1473] = { + [sym_comment] = STATE(1473), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_case] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), + [1474] = { + [sym_comment] = STATE(1474), + [sym_identifier] = ACTIONS(3435), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_default] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_debugger] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_case] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LTtemplate_GT] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_function] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_delete] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_DASH_DASH] = ACTIONS(3435), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_number] = ACTIONS(3435), + [sym_private_property_identifier] = ACTIONS(3435), + [sym_this] = ACTIONS(3435), + [sym_super] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_get] = ACTIONS(3435), + [anon_sym_set] = ACTIONS(3435), + [anon_sym_declare] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_module] = ACTIONS(3435), + [anon_sym_any] = ACTIONS(3435), + [anon_sym_number] = ACTIONS(3435), + [anon_sym_boolean] = ACTIONS(3435), + [anon_sym_string] = ACTIONS(3435), + [anon_sym_symbol] = ACTIONS(3435), + [anon_sym_object] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1494] = { - [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), + [1475] = { + [sym_comment] = STATE(1475), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_case] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), + [1476] = { + [sym_comment] = STATE(1476), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [sym_html_comment] = ACTIONS(5), + }, + [1477] = { + [sym_comment] = STATE(1477), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_default] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_case] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [sym_html_comment] = ACTIONS(5), + }, + [1478] = { + [sym_comment] = STATE(1478), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_default] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [sym_html_comment] = ACTIONS(5), + }, + [1479] = { + [sym_comment] = STATE(1479), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_default] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_case] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [sym_html_comment] = ACTIONS(5), + }, + [1480] = { + [sym_comment] = STATE(1480), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [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(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [sym_html_comment] = ACTIONS(5), + }, + [1481] = { + [sym_comment] = STATE(1481), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, - [1496] = { - [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [1482] = { + [sym_comment] = STATE(1482), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_default] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), + [sym_html_comment] = ACTIONS(5), + }, + [1483] = { + [sym_comment] = STATE(1483), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1497] = { - [sym_comment] = STATE(1497), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), + [1484] = { + [sym_comment] = STATE(1484), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, - [1498] = { - [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(3679), + [1485] = { + [sym_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, - [1499] = { - [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LTtemplate_GT] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2272), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_number] = ACTIONS(2272), - [sym_private_property_identifier] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_object] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2494), + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_namespace] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2230), + [anon_sym_import] = ACTIONS(2230), + [anon_sym_with] = ACTIONS(2230), + [anon_sym_var] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_debugger] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_throw] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LTtemplate_GT] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_class] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_function] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2230), + [anon_sym_delete] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_private_property_identifier] = ACTIONS(2230), + [sym_this] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_undefined] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [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), + [anon_sym_abstract] = ACTIONS(2230), + [anon_sym_interface] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2484), [sym_html_comment] = ACTIONS(5), }, - [1500] = { - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LTtemplate_GT] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2264), - [anon_sym_DASH_DASH] = ACTIONS(2264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2264), - [sym_number] = ACTIONS(2264), - [sym_private_property_identifier] = ACTIONS(2264), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_object] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2492), + [1487] = { + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_typeof] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_var] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_await] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_debugger] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_finally] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LTtemplate_GT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3171), + [sym_number] = ACTIONS(3171), + [sym_private_property_identifier] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_null] = ACTIONS(3171), + [sym_undefined] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_readonly] = ACTIONS(3171), + [anon_sym_get] = ACTIONS(3171), + [anon_sym_set] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_override] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_any] = ACTIONS(3171), + [anon_sym_number] = ACTIONS(3171), + [anon_sym_boolean] = ACTIONS(3171), + [anon_sym_string] = ACTIONS(3171), + [anon_sym_symbol] = ACTIONS(3171), + [anon_sym_object] = ACTIONS(3171), + [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), [sym_html_comment] = ACTIONS(5), }, - [1501] = { - [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2242), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2242), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_with] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_throw] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LTtemplate_GT] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_class] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_using] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2242), - [anon_sym_delete] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_private_property_identifier] = ACTIONS(2242), - [sym_this] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_undefined] = ACTIONS(2242), - [anon_sym_AT] = ACTIONS(2242), - [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), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_interface] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2464), + [1488] = { + [sym_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2222), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_with] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_debugger] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LTtemplate_GT] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_private_property_identifier] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_undefined] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_readonly] = ACTIONS(2222), + [anon_sym_get] = ACTIONS(2222), + [anon_sym_set] = ACTIONS(2222), + [anon_sym_declare] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_protected] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_any] = ACTIONS(2222), + [anon_sym_number] = ACTIONS(2222), + [anon_sym_boolean] = ACTIONS(2222), + [anon_sym_string] = ACTIONS(2222), + [anon_sym_symbol] = ACTIONS(2222), + [anon_sym_object] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [sym__automatic_semicolon] = ACTIONS(2478), [sym_html_comment] = ACTIONS(5), }, - [1502] = { - [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(2366), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [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_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2482), + [1489] = { + [sym_comment] = STATE(1489), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2214), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_with] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_debugger] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LTtemplate_GT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_private_property_identifier] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_readonly] = ACTIONS(2214), + [anon_sym_get] = ACTIONS(2214), + [anon_sym_set] = ACTIONS(2214), + [anon_sym_declare] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_protected] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_any] = ACTIONS(2214), + [anon_sym_number] = ACTIONS(2214), + [anon_sym_boolean] = ACTIONS(2214), + [anon_sym_string] = ACTIONS(2214), + [anon_sym_symbol] = ACTIONS(2214), + [anon_sym_object] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [sym__automatic_semicolon] = ACTIONS(2476), [sym_html_comment] = ACTIONS(5), }, - [1503] = { - [sym_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2234), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_namespace] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_with] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_debugger] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LTtemplate_GT] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2234), - [anon_sym_delete] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_private_property_identifier] = ACTIONS(2234), - [sym_this] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_undefined] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_readonly] = ACTIONS(2234), - [anon_sym_get] = ACTIONS(2234), - [anon_sym_set] = ACTIONS(2234), - [anon_sym_declare] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_protected] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_any] = ACTIONS(2234), - [anon_sym_number] = ACTIONS(2234), - [anon_sym_boolean] = ACTIONS(2234), - [anon_sym_string] = ACTIONS(2234), - [anon_sym_symbol] = ACTIONS(2234), - [anon_sym_object] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [sym__automatic_semicolon] = ACTIONS(2488), + [1490] = { + [sym_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2164), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_typeof] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_await] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LTtemplate_GT] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_void] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2164), + [sym_number] = ACTIONS(2164), + [sym_private_property_identifier] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_undefined] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [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_abstract] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [sym__automatic_semicolon] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [1491] = { + [sym_comment] = STATE(1491), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_default] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_case] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1505] = { - [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [1492] = { + [sym_comment] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_typeof] = ACTIONS(2156), + [anon_sym_import] = ACTIONS(2156), + [anon_sym_with] = ACTIONS(2156), + [anon_sym_var] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_await] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_debugger] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LTtemplate_GT] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_void] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_number] = ACTIONS(2156), + [sym_private_property_identifier] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_readonly] = ACTIONS(2156), + [anon_sym_get] = ACTIONS(2156), + [anon_sym_set] = ACTIONS(2156), + [anon_sym_declare] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_override] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_any] = ACTIONS(2156), + [anon_sym_number] = ACTIONS(2156), + [anon_sym_boolean] = ACTIONS(2156), + [anon_sym_string] = ACTIONS(2156), + [anon_sym_symbol] = ACTIONS(2156), + [anon_sym_object] = ACTIONS(2156), + [anon_sym_abstract] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [sym__automatic_semicolon] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [1506] = { - [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), + [1493] = { + [sym_comment] = STATE(1493), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_default] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, - [1507] = { - [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [1494] = { + [sym_comment] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_else] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), [sym_html_comment] = ACTIONS(5), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [1495] = { + [sym_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, - [1509] = { - [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [1496] = { + [sym_comment] = STATE(1496), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_default] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_case] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3305), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_typeof] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_const] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_switch] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_await] = ACTIONS(3305), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_try] = ACTIONS(3305), - [anon_sym_break] = ACTIONS(3305), - [anon_sym_continue] = ACTIONS(3305), - [anon_sym_debugger] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3305), - [anon_sym_throw] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_yield] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LTtemplate_GT] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_using] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_void] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), + [1497] = { + [sym_comment] = STATE(1497), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3305), - [sym_number] = ACTIONS(3305), - [sym_private_property_identifier] = ACTIONS(3305), - [sym_this] = ACTIONS(3305), - [sym_super] = ACTIONS(3305), - [sym_true] = ACTIONS(3305), - [sym_false] = ACTIONS(3305), - [sym_null] = ACTIONS(3305), - [sym_undefined] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_readonly] = ACTIONS(3305), - [anon_sym_get] = ACTIONS(3305), - [anon_sym_set] = ACTIONS(3305), - [anon_sym_declare] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_protected] = ACTIONS(3305), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_any] = ACTIONS(3305), - [anon_sym_number] = ACTIONS(3305), - [anon_sym_boolean] = ACTIONS(3305), - [anon_sym_string] = ACTIONS(3305), - [anon_sym_symbol] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_abstract] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), [sym_html_comment] = ACTIONS(5), }, - [1511] = { - [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [1498] = { + [sym_comment] = STATE(1498), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, - [1512] = { - [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [1499] = { + [sym_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, - [1513] = { - [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [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(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, - [1514] = { - [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), + [1501] = { + [sym_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3361), - [anon_sym_set] = ACTIONS(3361), - [anon_sym_declare] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_protected] = ACTIONS(3361), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_any] = ACTIONS(3361), - [anon_sym_number] = ACTIONS(3361), - [anon_sym_boolean] = ACTIONS(3361), - [anon_sym_string] = ACTIONS(3361), - [anon_sym_symbol] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1515] = { - [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), + [1502] = { + [sym_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, - [1516] = { - [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3563), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), + [1503] = { + [sym_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(3679), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, - [1517] = { - [sym_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1518] = { - [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3321), - [anon_sym_export] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_debugger] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LTtemplate_GT] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_function] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_void] = ACTIONS(3321), - [anon_sym_delete] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [sym_html_comment] = ACTIONS(5), + }, + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3321), - [sym_number] = ACTIONS(3321), - [sym_private_property_identifier] = ACTIONS(3321), - [sym_this] = ACTIONS(3321), - [sym_super] = ACTIONS(3321), - [sym_true] = ACTIONS(3321), - [sym_false] = ACTIONS(3321), - [sym_null] = ACTIONS(3321), - [sym_undefined] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_get] = ACTIONS(3321), - [anon_sym_set] = ACTIONS(3321), - [anon_sym_declare] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_any] = ACTIONS(3321), - [anon_sym_number] = ACTIONS(3321), - [anon_sym_boolean] = ACTIONS(3321), - [anon_sym_string] = ACTIONS(3321), - [anon_sym_symbol] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1519] = { - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, - [1520] = { - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3435), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_debugger] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LTtemplate_GT] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_function] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_delete] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_DASH_DASH] = ACTIONS(3435), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [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(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_number] = ACTIONS(3435), + [sym_private_property_identifier] = ACTIONS(3435), + [sym_this] = ACTIONS(3435), + [sym_super] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_get] = ACTIONS(3435), + [anon_sym_set] = ACTIONS(3435), + [anon_sym_declare] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_module] = ACTIONS(3435), + [anon_sym_any] = ACTIONS(3435), + [anon_sym_number] = ACTIONS(3435), + [anon_sym_boolean] = ACTIONS(3435), + [anon_sym_string] = ACTIONS(3435), + [anon_sym_symbol] = ACTIONS(3435), + [anon_sym_object] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1521] = { - [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(3611), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), + [1509] = { + [sym_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, - [1522] = { - [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), + [1510] = { + [sym_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [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(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1523] = { - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1511] = { + [sym_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(3651), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, - [1524] = { - [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [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_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [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(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [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_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [sym_html_comment] = ACTIONS(5), + }, + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2298), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2298), + [anon_sym_import] = ACTIONS(2298), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_var] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_switch] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_debugger] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LTtemplate_GT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_class] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_function] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2298), + [anon_sym_using] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2298), + [anon_sym_delete] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_private_property_identifier] = ACTIONS(2298), + [sym_this] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_undefined] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_readonly] = ACTIONS(2298), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2298), + [anon_sym_public] = ACTIONS(2298), + [anon_sym_private] = ACTIONS(2298), + [anon_sym_protected] = ACTIONS(2298), + [anon_sym_override] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_any] = ACTIONS(2298), + [anon_sym_number] = ACTIONS(2298), + [anon_sym_boolean] = ACTIONS(2298), + [anon_sym_string] = ACTIONS(2298), + [anon_sym_symbol] = ACTIONS(2298), + [anon_sym_object] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_typeof] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_with] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_await] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LTtemplate_GT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_void] = ACTIONS(2304), - [anon_sym_delete] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2304), - [sym_number] = ACTIONS(2304), - [sym_private_property_identifier] = ACTIONS(2304), - [sym_this] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_undefined] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_readonly] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_declare] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_protected] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_any] = ACTIONS(2304), - [anon_sym_number] = ACTIONS(2304), - [anon_sym_boolean] = ACTIONS(2304), - [anon_sym_string] = ACTIONS(2304), - [anon_sym_symbol] = ACTIONS(2304), - [anon_sym_object] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), + [1514] = { + [sym_comment] = STATE(1514), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, - [1526] = { - [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), + [1515] = { + [sym_comment] = STATE(1515), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, - [1527] = { - [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LTtemplate_GT] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2260), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2260), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2260), - [sym_number] = ACTIONS(2260), - [sym_private_property_identifier] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [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), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3307), + [anon_sym_export] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_with] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_debugger] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LTtemplate_GT] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_delete] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3307), + [sym_number] = ACTIONS(3307), + [sym_private_property_identifier] = ACTIONS(3307), + [sym_this] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_get] = ACTIONS(3307), + [anon_sym_set] = ACTIONS(3307), + [anon_sym_declare] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_module] = ACTIONS(3307), + [anon_sym_any] = ACTIONS(3307), + [anon_sym_number] = ACTIONS(3307), + [anon_sym_boolean] = ACTIONS(3307), + [anon_sym_string] = ACTIONS(3307), + [anon_sym_symbol] = ACTIONS(3307), + [anon_sym_object] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(3535), + [1517] = { + [sym_comment] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(3649), [sym_identifier] = ACTIONS(3279), [anon_sym_export] = ACTIONS(3279), [anon_sym_type] = ACTIONS(3279), @@ -187602,657 +186723,1710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [sym_html_comment] = ACTIONS(5), + }, + [1519] = { + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3251), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_LTtemplate_GT] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_void] = ACTIONS(3251), + [anon_sym_delete] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_number] = ACTIONS(3251), + [sym_private_property_identifier] = ACTIONS(3251), + [sym_this] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_null] = ACTIONS(3251), + [sym_undefined] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3251), + [anon_sym_any] = ACTIONS(3251), + [anon_sym_number] = ACTIONS(3251), + [anon_sym_boolean] = ACTIONS(3251), + [anon_sym_string] = ACTIONS(3251), + [anon_sym_symbol] = ACTIONS(3251), + [anon_sym_object] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [sym_html_comment] = ACTIONS(5), + }, + [1520] = { + [sym_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3381), + [anon_sym_export] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_namespace] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_typeof] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_with] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [anon_sym_let] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_await] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_debugger] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_yield] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LTtemplate_GT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_void] = ACTIONS(3381), + [anon_sym_delete] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3381), + [sym_number] = ACTIONS(3381), + [sym_private_property_identifier] = ACTIONS(3381), + [sym_this] = ACTIONS(3381), + [sym_super] = ACTIONS(3381), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [sym_null] = ACTIONS(3381), + [sym_undefined] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_readonly] = ACTIONS(3381), + [anon_sym_get] = ACTIONS(3381), + [anon_sym_set] = ACTIONS(3381), + [anon_sym_declare] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_protected] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3381), + [anon_sym_any] = ACTIONS(3381), + [anon_sym_number] = ACTIONS(3381), + [anon_sym_boolean] = ACTIONS(3381), + [anon_sym_string] = ACTIONS(3381), + [anon_sym_symbol] = ACTIONS(3381), + [anon_sym_object] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), + [sym_html_comment] = ACTIONS(5), + }, + [1521] = { + [sym_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(3659), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [sym_html_comment] = ACTIONS(5), + }, + [1522] = { + [sym_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3229), + [anon_sym_export] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_typeof] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(3229), + [anon_sym_var] = ACTIONS(3229), + [anon_sym_let] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_debugger] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_throw] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_yield] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LTtemplate_GT] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_class] = ACTIONS(3229), + [anon_sym_async] = ACTIONS(3229), + [anon_sym_function] = ACTIONS(3229), + [anon_sym_new] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(3229), + [anon_sym_delete] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3229), + [sym_number] = ACTIONS(3229), + [sym_private_property_identifier] = ACTIONS(3229), + [sym_this] = ACTIONS(3229), + [sym_super] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_null] = ACTIONS(3229), + [sym_undefined] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_static] = ACTIONS(3229), + [anon_sym_readonly] = ACTIONS(3229), + [anon_sym_get] = ACTIONS(3229), + [anon_sym_set] = ACTIONS(3229), + [anon_sym_declare] = ACTIONS(3229), + [anon_sym_public] = ACTIONS(3229), + [anon_sym_private] = ACTIONS(3229), + [anon_sym_protected] = ACTIONS(3229), + [anon_sym_override] = ACTIONS(3229), + [anon_sym_module] = ACTIONS(3229), + [anon_sym_any] = ACTIONS(3229), + [anon_sym_number] = ACTIONS(3229), + [anon_sym_boolean] = ACTIONS(3229), + [anon_sym_string] = ACTIONS(3229), + [anon_sym_symbol] = ACTIONS(3229), + [anon_sym_object] = ACTIONS(3229), + [anon_sym_abstract] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [sym_html_comment] = ACTIONS(5), + }, + [1523] = { + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [sym_html_comment] = ACTIONS(5), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), + [sym_html_comment] = ACTIONS(5), + }, + [1525] = { + [sym_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(3647), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), + [sym_html_comment] = ACTIONS(5), + }, + [1526] = { + [sym_comment] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1527] = { + [sym_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1528] = { + [sym_comment] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [sym_html_comment] = ACTIONS(5), + }, [1529] = { [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_with] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_debugger] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_LTtemplate_GT] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_function] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_void] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3431), - [sym_number] = ACTIONS(3431), - [sym_private_property_identifier] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - [sym_super] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_null] = ACTIONS(3431), - [sym_undefined] = ACTIONS(3431), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_get] = ACTIONS(3431), - [anon_sym_set] = ACTIONS(3431), - [anon_sym_declare] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_any] = ACTIONS(3431), - [anon_sym_number] = ACTIONS(3431), - [anon_sym_boolean] = ACTIONS(3431), - [anon_sym_string] = ACTIONS(3431), - [anon_sym_symbol] = ACTIONS(3431), - [anon_sym_object] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1530] = { [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), [sym_html_comment] = ACTIONS(5), }, [1531] = { [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, [1532] = { [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_namespace] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2250), - [anon_sym_import] = ACTIONS(2250), - [anon_sym_with] = ACTIONS(2250), - [anon_sym_var] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_do] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_throw] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LTtemplate_GT] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2250), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_private_property_identifier] = ACTIONS(2250), - [sym_this] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_undefined] = ACTIONS(2250), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_readonly] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_declare] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_protected] = ACTIONS(2250), - [anon_sym_override] = ACTIONS(2250), - [anon_sym_module] = ACTIONS(2250), - [anon_sym_any] = ACTIONS(2250), - [anon_sym_number] = ACTIONS(2250), - [anon_sym_boolean] = ACTIONS(2250), - [anon_sym_string] = ACTIONS(2250), - [anon_sym_symbol] = ACTIONS(2250), - [anon_sym_object] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_interface] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_with] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_debugger] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_LTtemplate_GT] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_delete] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3335), + [sym_number] = ACTIONS(3335), + [sym_private_property_identifier] = ACTIONS(3335), + [sym_this] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_null] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_get] = ACTIONS(3335), + [anon_sym_set] = ACTIONS(3335), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_module] = ACTIONS(3335), + [anon_sym_any] = ACTIONS(3335), + [anon_sym_number] = ACTIONS(3335), + [anon_sym_boolean] = ACTIONS(3335), + [anon_sym_string] = ACTIONS(3335), + [anon_sym_symbol] = ACTIONS(3335), + [anon_sym_object] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), [sym_html_comment] = ACTIONS(5), }, [1533] = { [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, [1534] = { [sym_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, [1535] = { [sym_comment] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), + [sym_html_comment] = ACTIONS(5), + }, + [1536] = { + [sym_comment] = STATE(1536), [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), + [sym_html_comment] = ACTIONS(5), + }, + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1536] = { - [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [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(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [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(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1537] = { - [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3519), + [1539] = { + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(3617), [sym_identifier] = ACTIONS(3331), [anon_sym_export] = ACTIONS(3331), [anon_sym_type] = ACTIONS(3331), @@ -188331,657 +188505,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3331), [sym_html_comment] = ACTIONS(5), }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [sym_html_comment] = ACTIONS(5), - }, - [1539] = { - [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym_import] = ACTIONS(3299), - [anon_sym_with] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_debugger] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_LTtemplate_GT] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_function] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_void] = ACTIONS(3299), - [anon_sym_delete] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3299), - [sym_number] = ACTIONS(3299), - [sym_private_property_identifier] = ACTIONS(3299), - [sym_this] = ACTIONS(3299), - [sym_super] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_null] = ACTIONS(3299), - [sym_undefined] = ACTIONS(3299), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [sym_html_comment] = ACTIONS(5), - }, [1540] = { [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_typeof] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_debugger] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LTtemplate_GT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_void] = ACTIONS(2196), - [anon_sym_delete] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [sym_private_property_identifier] = ACTIONS(2196), - [sym_this] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_undefined] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_readonly] = ACTIONS(2196), - [anon_sym_get] = ACTIONS(2196), - [anon_sym_set] = ACTIONS(2196), - [anon_sym_declare] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_protected] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_any] = ACTIONS(2196), - [anon_sym_number] = ACTIONS(2196), - [anon_sym_boolean] = ACTIONS(2196), - [anon_sym_string] = ACTIONS(2196), - [anon_sym_symbol] = ACTIONS(2196), - [anon_sym_object] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3259), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_debugger] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LTtemplate_GT] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_void] = ACTIONS(3259), + [anon_sym_delete] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3259), + [sym_number] = ACTIONS(3259), + [sym_private_property_identifier] = ACTIONS(3259), + [sym_this] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_undefined] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), + [ts_builtin_sym_end] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [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(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1542] = { [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_debugger] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LTtemplate_GT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_void] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_number] = ACTIONS(3391), - [sym_private_property_identifier] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_null] = ACTIONS(3391), - [sym_undefined] = ACTIONS(3391), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_get] = ACTIONS(3391), - [anon_sym_set] = ACTIONS(3391), - [anon_sym_declare] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_any] = ACTIONS(3391), - [anon_sym_number] = ACTIONS(3391), - [anon_sym_boolean] = ACTIONS(3391), - [anon_sym_string] = ACTIONS(3391), - [anon_sym_symbol] = ACTIONS(3391), - [anon_sym_object] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [ts_builtin_sym_end] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, [1544] = { [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3457), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_type] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_typeof] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_debugger] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LTtemplate_GT] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_async] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_void] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3457), + [sym_number] = ACTIONS(3457), + [sym_private_property_identifier] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [sym_super] = ACTIONS(3457), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_undefined] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_readonly] = ACTIONS(3457), + [anon_sym_get] = ACTIONS(3457), + [anon_sym_set] = ACTIONS(3457), + [anon_sym_declare] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_any] = ACTIONS(3457), + [anon_sym_number] = ACTIONS(3457), + [anon_sym_boolean] = ACTIONS(3457), + [anon_sym_string] = ACTIONS(3457), + [anon_sym_symbol] = ACTIONS(3457), + [anon_sym_object] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), [sym_html_comment] = ACTIONS(5), }, [1545] = { [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, [1546] = { [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(3625), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [sym_html_comment] = ACTIONS(5), + }, + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(3619), + [sym_identifier] = ACTIONS(3339), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_with] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_debugger] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_LTtemplate_GT] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_delete] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3339), + [sym_number] = ACTIONS(3339), + [sym_private_property_identifier] = ACTIONS(3339), + [sym_this] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [sym_html_comment] = ACTIONS(5), + }, + [1548] = { + [sym_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(3677), [sym_identifier] = ACTIONS(3233), [anon_sym_export] = ACTIONS(3233), [anon_sym_type] = ACTIONS(3233), @@ -189060,981 +189234,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1548] = { - [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, [1549] = { [sym_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1550] = { [sym_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3383), - [anon_sym_export] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym_import] = ACTIONS(3383), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_debugger] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LTtemplate_GT] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_void] = ACTIONS(3383), - [anon_sym_delete] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3383), - [sym_number] = ACTIONS(3383), - [sym_private_property_identifier] = ACTIONS(3383), - [sym_this] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_null] = ACTIONS(3383), - [sym_undefined] = ACTIONS(3383), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_get] = ACTIONS(3383), - [anon_sym_set] = ACTIONS(3383), - [anon_sym_declare] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_any] = ACTIONS(3383), - [anon_sym_number] = ACTIONS(3383), - [anon_sym_boolean] = ACTIONS(3383), - [anon_sym_string] = ACTIONS(3383), - [anon_sym_symbol] = ACTIONS(3383), - [anon_sym_object] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1552] = { [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1553] = { [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1554] = { [sym_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, [1555] = { [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1556] = { [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [ts_builtin_sym_end] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, [1557] = { [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, [1558] = { [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_typeof] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_await] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_debugger] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LTtemplate_GT] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_void] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3385), - [sym_number] = ACTIONS(3385), - [sym_private_property_identifier] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - [sym_super] = ACTIONS(3385), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [sym_null] = ACTIONS(3385), - [sym_undefined] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3385), - [anon_sym_set] = ACTIONS(3385), - [anon_sym_declare] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_protected] = ACTIONS(3385), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_any] = ACTIONS(3385), - [anon_sym_number] = ACTIONS(3385), - [anon_sym_boolean] = ACTIONS(3385), - [anon_sym_string] = ACTIONS(3385), - [anon_sym_symbol] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_abstract] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [1559] = { [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3475), + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), + [sym_html_comment] = ACTIONS(5), + }, + [1560] = { + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [sym_html_comment] = ACTIONS(5), + }, + [1561] = { + [sym_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2310), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_typeof] = ACTIONS(2310), + [anon_sym_import] = ACTIONS(2310), + [anon_sym_with] = ACTIONS(2310), + [anon_sym_var] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_await] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_debugger] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_throw] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LTtemplate_GT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_class] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_function] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2310), + [anon_sym_using] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2310), + [anon_sym_void] = ACTIONS(2310), + [anon_sym_delete] = ACTIONS(2310), + [anon_sym_PLUS_PLUS] = ACTIONS(2310), + [anon_sym_DASH_DASH] = ACTIONS(2310), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_number] = ACTIONS(2310), + [sym_private_property_identifier] = ACTIONS(2310), + [sym_this] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_true] = ACTIONS(2310), + [sym_false] = ACTIONS(2310), + [sym_null] = ACTIONS(2310), + [sym_undefined] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [sym_html_comment] = ACTIONS(5), + }, + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(3567), [sym_identifier] = ACTIONS(3423), [anon_sym_export] = ACTIONS(3423), [anon_sym_type] = ACTIONS(3423), @@ -190113,333 +190368,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, - [1560] = { - [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), + [1563] = { + [sym_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3639), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [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(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1561] = { - [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, - [1562] = { - [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), + [1565] = { + [sym_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_abstract] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), + [sym_html_comment] = ACTIONS(5), + }, + [1566] = { + [sym_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1563] = { - [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3619), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), + [1567] = { + [sym_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [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(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, - [1564] = { - [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3557), + [1568] = { + [sym_comment] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(3635), [sym_identifier] = ACTIONS(3295), [anon_sym_export] = ACTIONS(3295), [anon_sym_type] = ACTIONS(3295), @@ -190518,495 +190854,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, - [1565] = { - [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LTtemplate_GT] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2300), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2300), - [anon_sym_DASH_DASH] = ACTIONS(2300), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2300), - [sym_number] = ACTIONS(2300), - [sym_private_property_identifier] = ACTIONS(2300), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_object] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [sym_html_comment] = ACTIONS(5), - }, - [1566] = { - [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1567] = { - [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [sym_html_comment] = ACTIONS(5), - }, - [1568] = { - [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, [1569] = { [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [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_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [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(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [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_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, [1570] = { [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), + [ts_builtin_sym_end] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [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(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, [1571] = { [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(3481), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [sym_html_comment] = ACTIONS(5), + }, + [1572] = { + [sym_comment] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(3561), [sym_identifier] = ACTIONS(3419), [anon_sym_export] = ACTIONS(3419), [anon_sym_type] = ACTIONS(3419), @@ -191085,1386 +191178,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1572] = { - [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [sym_html_comment] = ACTIONS(5), - }, [1573] = { [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1574] = { [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, [1575] = { [sym_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [ts_builtin_sym_end] = ACTIONS(3631), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1576] = { [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1577] = { [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2314), + [anon_sym_import] = ACTIONS(2314), + [anon_sym_with] = ACTIONS(2314), + [anon_sym_var] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_switch] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_throw] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LTtemplate_GT] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_using] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2314), + [anon_sym_delete] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_private_property_identifier] = ACTIONS(2314), + [sym_this] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_null] = ACTIONS(2314), + [sym_undefined] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), [sym_html_comment] = ACTIONS(5), }, [1578] = { [sym_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_debugger] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LTtemplate_GT] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_void] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3439), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3439), - [sym_number] = ACTIONS(3439), - [sym_private_property_identifier] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), - [sym_super] = ACTIONS(3439), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_undefined] = ACTIONS(3439), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_get] = ACTIONS(3439), - [anon_sym_set] = ACTIONS(3439), - [anon_sym_declare] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_any] = ACTIONS(3439), - [anon_sym_number] = ACTIONS(3439), - [anon_sym_boolean] = ACTIONS(3439), - [anon_sym_string] = ACTIONS(3439), - [anon_sym_symbol] = ACTIONS(3439), - [anon_sym_object] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1579] = { [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), + [ts_builtin_sym_end] = ACTIONS(3679), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, [1580] = { [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1581] = { [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LTtemplate_GT] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2208), + [sym_number] = ACTIONS(2208), + [sym_private_property_identifier] = ACTIONS(2208), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_object] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1582] = { [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [sym_html_comment] = ACTIONS(5), - }, - [1583] = { - [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(3681), - [sym_identifier] = ACTIONS(3575), - [anon_sym_export] = ACTIONS(3575), - [anon_sym_type] = ACTIONS(3575), - [anon_sym_namespace] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_RBRACE] = ACTIONS(3575), - [anon_sym_typeof] = ACTIONS(3575), - [anon_sym_import] = ACTIONS(3575), - [anon_sym_with] = ACTIONS(3575), - [anon_sym_var] = ACTIONS(3575), - [anon_sym_let] = ACTIONS(3575), - [anon_sym_const] = ACTIONS(3575), - [anon_sym_BANG] = ACTIONS(3575), - [anon_sym_if] = ACTIONS(3575), - [anon_sym_switch] = ACTIONS(3575), - [anon_sym_for] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_await] = ACTIONS(3575), - [anon_sym_while] = ACTIONS(3575), - [anon_sym_do] = ACTIONS(3575), - [anon_sym_try] = ACTIONS(3575), - [anon_sym_break] = ACTIONS(3575), - [anon_sym_continue] = ACTIONS(3575), - [anon_sym_debugger] = ACTIONS(3575), - [anon_sym_return] = ACTIONS(3575), - [anon_sym_throw] = ACTIONS(3575), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym_yield] = ACTIONS(3575), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_LTtemplate_GT] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(3575), - [anon_sym_SQUOTE] = ACTIONS(3575), - [anon_sym_class] = ACTIONS(3575), - [anon_sym_async] = ACTIONS(3575), - [anon_sym_function] = ACTIONS(3575), - [anon_sym_new] = ACTIONS(3575), - [anon_sym_using] = ACTIONS(3575), - [anon_sym_PLUS] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_TILDE] = ACTIONS(3575), - [anon_sym_void] = ACTIONS(3575), - [anon_sym_delete] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3575), - [anon_sym_DASH_DASH] = ACTIONS(3575), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3575), - [sym_number] = ACTIONS(3575), - [sym_private_property_identifier] = ACTIONS(3575), - [sym_this] = ACTIONS(3575), - [sym_super] = ACTIONS(3575), - [sym_true] = ACTIONS(3575), - [sym_false] = ACTIONS(3575), - [sym_null] = ACTIONS(3575), - [sym_undefined] = ACTIONS(3575), - [anon_sym_AT] = ACTIONS(3575), - [anon_sym_static] = ACTIONS(3575), - [anon_sym_readonly] = ACTIONS(3575), - [anon_sym_get] = ACTIONS(3575), - [anon_sym_set] = ACTIONS(3575), - [anon_sym_declare] = ACTIONS(3575), - [anon_sym_public] = ACTIONS(3575), - [anon_sym_private] = ACTIONS(3575), - [anon_sym_protected] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3575), - [anon_sym_module] = ACTIONS(3575), - [anon_sym_any] = ACTIONS(3575), - [anon_sym_number] = ACTIONS(3575), - [anon_sym_boolean] = ACTIONS(3575), - [anon_sym_string] = ACTIONS(3575), - [anon_sym_symbol] = ACTIONS(3575), - [anon_sym_object] = ACTIONS(3575), - [anon_sym_abstract] = ACTIONS(3575), - [anon_sym_interface] = ACTIONS(3575), - [anon_sym_enum] = ACTIONS(3575), - [sym_html_comment] = ACTIONS(5), - }, - [1584] = { - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [sym_html_comment] = ACTIONS(5), - }, - [1585] = { - [sym_comment] = STATE(1585), [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [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_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [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(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [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_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, - [1586] = { - [sym_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), + [1583] = { + [sym_comment] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, - [1587] = { - [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [1584] = { + [sym_comment] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, - [1588] = { - [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), + [1585] = { + [sym_comment] = STATE(1585), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1589] = { - [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(3553), + [1586] = { + [sym_comment] = STATE(1586), + [ts_builtin_sym_end] = ACTIONS(3581), [sym_identifier] = ACTIONS(3249), [anon_sym_export] = ACTIONS(3249), [anon_sym_type] = ACTIONS(3249), @@ -192543,1710 +192312,1467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, + [1587] = { + [sym_comment] = STATE(1587), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LTtemplate_GT] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [sym_number] = ACTIONS(2200), + [sym_private_property_identifier] = ACTIONS(2200), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [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_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [sym_html_comment] = ACTIONS(5), + }, + [1588] = { + [sym_comment] = STATE(1588), + [ts_builtin_sym_end] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3411), + [anon_sym_export] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_RBRACE] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_debugger] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_LTtemplate_GT] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_function] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_void] = ACTIONS(3411), + [anon_sym_delete] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3411), + [sym_number] = ACTIONS(3411), + [sym_private_property_identifier] = ACTIONS(3411), + [sym_this] = ACTIONS(3411), + [sym_super] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_null] = ACTIONS(3411), + [sym_undefined] = ACTIONS(3411), + [anon_sym_AT] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3411), + [anon_sym_set] = ACTIONS(3411), + [anon_sym_declare] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_module] = ACTIONS(3411), + [anon_sym_any] = ACTIONS(3411), + [anon_sym_number] = ACTIONS(3411), + [anon_sym_boolean] = ACTIONS(3411), + [anon_sym_string] = ACTIONS(3411), + [anon_sym_symbol] = ACTIONS(3411), + [anon_sym_object] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), + [sym_html_comment] = ACTIONS(5), + }, + [1589] = { + [sym_comment] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [sym_html_comment] = ACTIONS(5), + }, [1590] = { [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1591] = { [sym_comment] = STATE(1591), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1592] = { [sym_comment] = STATE(1592), [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [sym_html_comment] = ACTIONS(5), - }, - [1593] = { - [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_LTtemplate_GT] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3237), - [sym_number] = ACTIONS(3237), - [sym_private_property_identifier] = ACTIONS(3237), - [sym_this] = ACTIONS(3237), - [sym_super] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_undefined] = ACTIONS(3237), - [anon_sym_AT] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [sym_html_comment] = ACTIONS(5), - }, - [1594] = { - [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), + [sym_html_comment] = ACTIONS(5), + }, + [1593] = { + [sym_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_namespace] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_typeof] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_var] = ACTIONS(3325), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_debugger] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_throw] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LTtemplate_GT] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_function] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3325), + [sym_number] = ACTIONS(3325), + [sym_private_property_identifier] = ACTIONS(3325), + [sym_this] = ACTIONS(3325), + [sym_super] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_undefined] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3325), + [anon_sym_set] = ACTIONS(3325), + [anon_sym_declare] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3325), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_any] = ACTIONS(3325), + [anon_sym_number] = ACTIONS(3325), + [anon_sym_boolean] = ACTIONS(3325), + [anon_sym_string] = ACTIONS(3325), + [anon_sym_symbol] = ACTIONS(3325), + [anon_sym_object] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), + [sym_html_comment] = ACTIONS(5), + }, + [1594] = { + [sym_comment] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_typeof] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3257), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_var] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_debugger] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_throw] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LTtemplate_GT] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3257), + [anon_sym_class] = ACTIONS(3257), + [anon_sym_async] = ACTIONS(3257), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_void] = ACTIONS(3257), + [anon_sym_delete] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3257), + [sym_number] = ACTIONS(3257), + [sym_private_property_identifier] = ACTIONS(3257), + [sym_this] = ACTIONS(3257), + [sym_super] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_null] = ACTIONS(3257), + [sym_undefined] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_readonly] = ACTIONS(3257), + [anon_sym_get] = ACTIONS(3257), + [anon_sym_set] = ACTIONS(3257), + [anon_sym_declare] = ACTIONS(3257), + [anon_sym_public] = ACTIONS(3257), + [anon_sym_private] = ACTIONS(3257), + [anon_sym_protected] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_any] = ACTIONS(3257), + [anon_sym_number] = ACTIONS(3257), + [anon_sym_boolean] = ACTIONS(3257), + [anon_sym_string] = ACTIONS(3257), + [anon_sym_symbol] = ACTIONS(3257), + [anon_sym_object] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), [sym_html_comment] = ACTIONS(5), }, [1595] = { [sym_comment] = STATE(1595), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1596] = { [sym_comment] = STATE(1596), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [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(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1597] = { [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, [1598] = { [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3365), - [anon_sym_export] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym_import] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_debugger] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LTtemplate_GT] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_function] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_void] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3365), - [sym_number] = ACTIONS(3365), - [sym_private_property_identifier] = ACTIONS(3365), - [sym_this] = ACTIONS(3365), - [sym_super] = ACTIONS(3365), - [sym_true] = ACTIONS(3365), - [sym_false] = ACTIONS(3365), - [sym_null] = ACTIONS(3365), - [sym_undefined] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_get] = ACTIONS(3365), - [anon_sym_set] = ACTIONS(3365), - [anon_sym_declare] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_any] = ACTIONS(3365), - [anon_sym_number] = ACTIONS(3365), - [anon_sym_boolean] = ACTIONS(3365), - [anon_sym_string] = ACTIONS(3365), - [anon_sym_symbol] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_get] = ACTIONS(3401), + [anon_sym_set] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_module] = ACTIONS(3401), + [anon_sym_any] = ACTIONS(3401), + [anon_sym_number] = ACTIONS(3401), + [anon_sym_boolean] = ACTIONS(3401), + [anon_sym_string] = ACTIONS(3401), + [anon_sym_symbol] = ACTIONS(3401), + [anon_sym_object] = ACTIONS(3401), + [anon_sym_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1599] = { [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3409), + [anon_sym_export] = ACTIONS(3409), + [anon_sym_type] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_typeof] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [anon_sym_let] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_debugger] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_yield] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LTtemplate_GT] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_async] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_void] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3409), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3409), + [sym_number] = ACTIONS(3409), + [sym_private_property_identifier] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), + [sym_super] = ACTIONS(3409), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [sym_null] = ACTIONS(3409), + [sym_undefined] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_readonly] = ACTIONS(3409), + [anon_sym_get] = ACTIONS(3409), + [anon_sym_set] = ACTIONS(3409), + [anon_sym_declare] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_protected] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_any] = ACTIONS(3409), + [anon_sym_number] = ACTIONS(3409), + [anon_sym_boolean] = ACTIONS(3409), + [anon_sym_string] = ACTIONS(3409), + [anon_sym_symbol] = ACTIONS(3409), + [anon_sym_object] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), [sym_html_comment] = ACTIONS(5), }, [1600] = { [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_with] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_debugger] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LTtemplate_GT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_void] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_private_property_identifier] = ACTIONS(2178), - [sym_this] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_undefined] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_readonly] = ACTIONS(2178), - [anon_sym_get] = ACTIONS(2178), - [anon_sym_set] = ACTIONS(2178), - [anon_sym_declare] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_protected] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_any] = ACTIONS(2178), - [anon_sym_number] = ACTIONS(2178), - [anon_sym_boolean] = ACTIONS(2178), - [anon_sym_string] = ACTIONS(2178), - [anon_sym_symbol] = ACTIONS(2178), - [anon_sym_object] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [sym_html_comment] = ACTIONS(5), - }, - [1601] = { - [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3443), - [anon_sym_export] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_debugger] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LTtemplate_GT] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_void] = ACTIONS(3443), - [anon_sym_delete] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3443), - [sym_number] = ACTIONS(3443), - [sym_private_property_identifier] = ACTIONS(3443), - [sym_this] = ACTIONS(3443), - [sym_super] = ACTIONS(3443), - [sym_true] = ACTIONS(3443), - [sym_false] = ACTIONS(3443), - [sym_null] = ACTIONS(3443), - [sym_undefined] = ACTIONS(3443), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_get] = ACTIONS(3443), - [anon_sym_set] = ACTIONS(3443), - [anon_sym_declare] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_any] = ACTIONS(3443), - [anon_sym_number] = ACTIONS(3443), - [anon_sym_boolean] = ACTIONS(3443), - [anon_sym_string] = ACTIONS(3443), - [anon_sym_symbol] = ACTIONS(3443), - [anon_sym_object] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), - [sym_html_comment] = ACTIONS(5), - }, - [1602] = { - [sym_comment] = STATE(1602), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_type] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_typeof] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_await] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_debugger] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LTtemplate_GT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_void] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_number] = ACTIONS(3393), - [sym_private_property_identifier] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), - [sym_super] = ACTIONS(3393), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [sym_null] = ACTIONS(3393), - [sym_undefined] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_readonly] = ACTIONS(3393), - [anon_sym_get] = ACTIONS(3393), - [anon_sym_set] = ACTIONS(3393), - [anon_sym_declare] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_protected] = ACTIONS(3393), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_any] = ACTIONS(3393), - [anon_sym_number] = ACTIONS(3393), - [anon_sym_boolean] = ACTIONS(3393), - [anon_sym_string] = ACTIONS(3393), - [anon_sym_symbol] = ACTIONS(3393), - [anon_sym_object] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [sym_html_comment] = ACTIONS(5), - }, - [1603] = { - [sym_comment] = STATE(1603), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [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(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [sym_html_comment] = ACTIONS(5), - }, - [1604] = { - [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [sym_html_comment] = ACTIONS(5), - }, - [1605] = { - [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [sym_html_comment] = ACTIONS(5), - }, - [1606] = { - [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3283), - [anon_sym_export] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_with] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_debugger] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_LTtemplate_GT] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_function] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_void] = ACTIONS(3283), - [anon_sym_delete] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_number] = ACTIONS(3283), - [sym_private_property_identifier] = ACTIONS(3283), - [sym_this] = ACTIONS(3283), - [sym_super] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_null] = ACTIONS(3283), - [sym_undefined] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_get] = ACTIONS(3283), - [anon_sym_set] = ACTIONS(3283), - [anon_sym_declare] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_module] = ACTIONS(3283), - [anon_sym_any] = ACTIONS(3283), - [anon_sym_number] = ACTIONS(3283), - [anon_sym_boolean] = ACTIONS(3283), - [anon_sym_string] = ACTIONS(3283), - [anon_sym_symbol] = ACTIONS(3283), - [anon_sym_object] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [sym_html_comment] = ACTIONS(5), - }, - [1607] = { - [sym_comment] = STATE(1607), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), + [1601] = { + [sym_comment] = STATE(1601), + [ts_builtin_sym_end] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1609] = { - [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [1602] = { + [sym_comment] = STATE(1602), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, - [1610] = { - [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [1603] = { + [sym_comment] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3265), + [anon_sym_export] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_namespace] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_typeof] = ACTIONS(3265), + [anon_sym_import] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_var] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_debugger] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_throw] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_yield] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LTtemplate_GT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_class] = ACTIONS(3265), + [anon_sym_async] = ACTIONS(3265), + [anon_sym_function] = ACTIONS(3265), + [anon_sym_new] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_void] = ACTIONS(3265), + [anon_sym_delete] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_number] = ACTIONS(3265), + [sym_private_property_identifier] = ACTIONS(3265), + [sym_this] = ACTIONS(3265), + [sym_super] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_null] = ACTIONS(3265), + [sym_undefined] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(3265), + [anon_sym_readonly] = ACTIONS(3265), + [anon_sym_get] = ACTIONS(3265), + [anon_sym_set] = ACTIONS(3265), + [anon_sym_declare] = ACTIONS(3265), + [anon_sym_public] = ACTIONS(3265), + [anon_sym_private] = ACTIONS(3265), + [anon_sym_protected] = ACTIONS(3265), + [anon_sym_override] = ACTIONS(3265), + [anon_sym_module] = ACTIONS(3265), + [anon_sym_any] = ACTIONS(3265), + [anon_sym_number] = ACTIONS(3265), + [anon_sym_boolean] = ACTIONS(3265), + [anon_sym_string] = ACTIONS(3265), + [anon_sym_symbol] = ACTIONS(3265), + [anon_sym_object] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), [sym_html_comment] = ACTIONS(5), }, - [1611] = { - [sym_comment] = STATE(1611), - [ts_builtin_sym_end] = ACTIONS(3473), + [1604] = { + [sym_comment] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LTtemplate_GT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_class] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_using] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_private_property_identifier] = ACTIONS(2294), + [sym_this] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_true] = ACTIONS(2294), + [sym_false] = ACTIONS(2294), + [sym_null] = ACTIONS(2294), + [sym_undefined] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_readonly] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_declare] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_protected] = ACTIONS(2294), + [anon_sym_override] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_any] = ACTIONS(2294), + [anon_sym_number] = ACTIONS(2294), + [anon_sym_boolean] = ACTIONS(2294), + [anon_sym_string] = ACTIONS(2294), + [anon_sym_symbol] = ACTIONS(2294), + [anon_sym_object] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [1605] = { + [sym_comment] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(3607), [sym_identifier] = ACTIONS(3347), [anon_sym_export] = ACTIONS(3347), [anon_sym_type] = ACTIONS(3347), @@ -194325,1386 +193851,1872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, + [1606] = { + [sym_comment] = STATE(1606), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [sym_html_comment] = ACTIONS(5), + }, + [1607] = { + [sym_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [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(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), + }, + [1608] = { + [sym_comment] = STATE(1608), + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_namespace] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_typeof] = ACTIONS(3337), + [anon_sym_import] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(3337), + [anon_sym_var] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_await] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3337), + [anon_sym_do] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_debugger] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_throw] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LTtemplate_GT] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3337), + [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_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3337), + [anon_sym_delete] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3337), + [sym_number] = ACTIONS(3337), + [sym_private_property_identifier] = ACTIONS(3337), + [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(3337), + [anon_sym_static] = ACTIONS(3337), + [anon_sym_readonly] = ACTIONS(3337), + [anon_sym_get] = ACTIONS(3337), + [anon_sym_set] = ACTIONS(3337), + [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_abstract] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), + [sym_html_comment] = ACTIONS(5), + }, + [1609] = { + [sym_comment] = STATE(1609), + [ts_builtin_sym_end] = ACTIONS(3653), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [sym_html_comment] = ACTIONS(5), + }, + [1610] = { + [sym_comment] = STATE(1610), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_typeof] = ACTIONS(2184), + [anon_sym_import] = ACTIONS(2184), + [anon_sym_with] = ACTIONS(2184), + [anon_sym_var] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_await] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_do] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_debugger] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LTtemplate_GT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_class] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_function] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(2184), + [anon_sym_delete] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2184), + [sym_number] = ACTIONS(2184), + [sym_private_property_identifier] = ACTIONS(2184), + [sym_this] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_undefined] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_readonly] = ACTIONS(2184), + [anon_sym_get] = ACTIONS(2184), + [anon_sym_set] = ACTIONS(2184), + [anon_sym_declare] = ACTIONS(2184), + [anon_sym_public] = ACTIONS(2184), + [anon_sym_private] = ACTIONS(2184), + [anon_sym_protected] = ACTIONS(2184), + [anon_sym_override] = ACTIONS(2184), + [anon_sym_module] = ACTIONS(2184), + [anon_sym_any] = ACTIONS(2184), + [anon_sym_number] = ACTIONS(2184), + [anon_sym_boolean] = ACTIONS(2184), + [anon_sym_string] = ACTIONS(2184), + [anon_sym_symbol] = ACTIONS(2184), + [anon_sym_object] = ACTIONS(2184), + [anon_sym_abstract] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [sym_html_comment] = ACTIONS(5), + }, + [1611] = { + [sym_comment] = STATE(1611), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [sym_html_comment] = ACTIONS(5), + }, [1612] = { [sym_comment] = STATE(1612), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), + [ts_builtin_sym_end] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [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(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1613] = { [sym_comment] = STATE(1613), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1614] = { [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_typeof] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_await] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_debugger] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LTtemplate_GT] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_void] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3389), - [sym_number] = ACTIONS(3389), - [sym_private_property_identifier] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), - [sym_super] = ACTIONS(3389), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [sym_undefined] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_readonly] = ACTIONS(3389), - [anon_sym_get] = ACTIONS(3389), - [anon_sym_set] = ACTIONS(3389), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, [1615] = { [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, [1616] = { [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3297), - [anon_sym_export] = ACTIONS(3297), - [anon_sym_type] = ACTIONS(3297), - [anon_sym_namespace] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_typeof] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_const] = ACTIONS(3297), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3297), - [anon_sym_switch] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_await] = ACTIONS(3297), - [anon_sym_while] = ACTIONS(3297), - [anon_sym_do] = ACTIONS(3297), - [anon_sym_try] = ACTIONS(3297), - [anon_sym_break] = ACTIONS(3297), - [anon_sym_continue] = ACTIONS(3297), - [anon_sym_debugger] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3297), - [anon_sym_throw] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LTtemplate_GT] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [anon_sym_SQUOTE] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3297), - [anon_sym_using] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_void] = ACTIONS(3297), - [anon_sym_delete] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3297), - [sym_number] = ACTIONS(3297), - [sym_private_property_identifier] = ACTIONS(3297), - [sym_this] = ACTIONS(3297), - [sym_super] = ACTIONS(3297), - [sym_true] = ACTIONS(3297), - [sym_false] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [sym_undefined] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3297), - [anon_sym_set] = ACTIONS(3297), - [anon_sym_declare] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_protected] = ACTIONS(3297), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_any] = ACTIONS(3297), - [anon_sym_number] = ACTIONS(3297), - [anon_sym_boolean] = ACTIONS(3297), - [anon_sym_string] = ACTIONS(3297), - [anon_sym_symbol] = ACTIONS(3297), - [anon_sym_object] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, [1617] = { [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [ts_builtin_sym_end] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3557), + [anon_sym_export] = ACTIONS(3557), + [anon_sym_type] = ACTIONS(3557), + [anon_sym_namespace] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_RBRACE] = ACTIONS(3557), + [anon_sym_typeof] = ACTIONS(3557), + [anon_sym_import] = ACTIONS(3557), + [anon_sym_with] = ACTIONS(3557), + [anon_sym_var] = ACTIONS(3557), + [anon_sym_let] = ACTIONS(3557), + [anon_sym_const] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_if] = ACTIONS(3557), + [anon_sym_switch] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3557), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_await] = ACTIONS(3557), + [anon_sym_while] = ACTIONS(3557), + [anon_sym_do] = ACTIONS(3557), + [anon_sym_try] = ACTIONS(3557), + [anon_sym_break] = ACTIONS(3557), + [anon_sym_continue] = ACTIONS(3557), + [anon_sym_debugger] = ACTIONS(3557), + [anon_sym_return] = ACTIONS(3557), + [anon_sym_throw] = ACTIONS(3557), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3557), + [anon_sym_LTtemplate_GT] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_class] = ACTIONS(3557), + [anon_sym_async] = ACTIONS(3557), + [anon_sym_function] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3557), + [anon_sym_using] = ACTIONS(3557), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_SLASH] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_void] = ACTIONS(3557), + [anon_sym_delete] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3557), + [sym_number] = ACTIONS(3557), + [sym_private_property_identifier] = ACTIONS(3557), + [sym_this] = ACTIONS(3557), + [sym_super] = ACTIONS(3557), + [sym_true] = ACTIONS(3557), + [sym_false] = ACTIONS(3557), + [sym_null] = ACTIONS(3557), + [sym_undefined] = ACTIONS(3557), + [anon_sym_AT] = ACTIONS(3557), + [anon_sym_static] = ACTIONS(3557), + [anon_sym_readonly] = ACTIONS(3557), + [anon_sym_get] = ACTIONS(3557), + [anon_sym_set] = ACTIONS(3557), + [anon_sym_declare] = ACTIONS(3557), + [anon_sym_public] = ACTIONS(3557), + [anon_sym_private] = ACTIONS(3557), + [anon_sym_protected] = ACTIONS(3557), + [anon_sym_override] = ACTIONS(3557), + [anon_sym_module] = ACTIONS(3557), + [anon_sym_any] = ACTIONS(3557), + [anon_sym_number] = ACTIONS(3557), + [anon_sym_boolean] = ACTIONS(3557), + [anon_sym_string] = ACTIONS(3557), + [anon_sym_symbol] = ACTIONS(3557), + [anon_sym_object] = ACTIONS(3557), + [anon_sym_abstract] = ACTIONS(3557), + [anon_sym_interface] = ACTIONS(3557), + [anon_sym_enum] = ACTIONS(3557), [sym_html_comment] = ACTIONS(5), }, [1618] = { [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3301), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_type] = ACTIONS(3301), - [anon_sym_namespace] = ACTIONS(3301), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_typeof] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_with] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_const] = ACTIONS(3301), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3301), - [anon_sym_switch] = ACTIONS(3301), - [anon_sym_for] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_await] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(3301), - [anon_sym_do] = ACTIONS(3301), - [anon_sym_try] = ACTIONS(3301), - [anon_sym_break] = ACTIONS(3301), - [anon_sym_continue] = ACTIONS(3301), - [anon_sym_debugger] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3301), - [anon_sym_throw] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_yield] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LTtemplate_GT] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_SQUOTE] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_function] = ACTIONS(3301), - [anon_sym_new] = ACTIONS(3301), - [anon_sym_using] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_void] = ACTIONS(3301), - [anon_sym_delete] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3301), - [sym_number] = ACTIONS(3301), - [sym_private_property_identifier] = ACTIONS(3301), - [sym_this] = ACTIONS(3301), - [sym_super] = ACTIONS(3301), - [sym_true] = ACTIONS(3301), - [sym_false] = ACTIONS(3301), - [sym_null] = ACTIONS(3301), - [sym_undefined] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_readonly] = ACTIONS(3301), - [anon_sym_get] = ACTIONS(3301), - [anon_sym_set] = ACTIONS(3301), - [anon_sym_declare] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_module] = ACTIONS(3301), - [anon_sym_any] = ACTIONS(3301), - [anon_sym_number] = ACTIONS(3301), - [anon_sym_boolean] = ACTIONS(3301), - [anon_sym_string] = ACTIONS(3301), - [anon_sym_symbol] = ACTIONS(3301), - [anon_sym_object] = ACTIONS(3301), - [anon_sym_abstract] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2254), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_namespace] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2254), + [anon_sym_import] = ACTIONS(2254), + [anon_sym_with] = ACTIONS(2254), + [anon_sym_var] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_debugger] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_throw] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LTtemplate_GT] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_class] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_function] = ACTIONS(2254), + [anon_sym_new] = ACTIONS(2254), + [anon_sym_using] = ACTIONS(2254), + [anon_sym_PLUS] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2254), + [anon_sym_delete] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_private_property_identifier] = ACTIONS(2254), + [sym_this] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_true] = ACTIONS(2254), + [sym_false] = ACTIONS(2254), + [sym_null] = ACTIONS(2254), + [sym_undefined] = ACTIONS(2254), + [anon_sym_AT] = ACTIONS(2254), + [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), + [anon_sym_abstract] = ACTIONS(2254), + [anon_sym_interface] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), [sym_html_comment] = ACTIONS(5), }, [1619] = { [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3397), + [anon_sym_export] = ACTIONS(3397), + [anon_sym_type] = ACTIONS(3397), + [anon_sym_namespace] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_typeof] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_with] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_debugger] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_yield] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LTtemplate_GT] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_void] = ACTIONS(3397), + [anon_sym_delete] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3397), + [sym_number] = ACTIONS(3397), + [sym_private_property_identifier] = ACTIONS(3397), + [sym_this] = ACTIONS(3397), + [sym_super] = ACTIONS(3397), + [sym_true] = ACTIONS(3397), + [sym_false] = ACTIONS(3397), + [sym_null] = ACTIONS(3397), + [sym_undefined] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3397), + [anon_sym_set] = ACTIONS(3397), + [anon_sym_declare] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_protected] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_module] = ACTIONS(3397), + [anon_sym_any] = ACTIONS(3397), + [anon_sym_number] = ACTIONS(3397), + [anon_sym_boolean] = ACTIONS(3397), + [anon_sym_string] = ACTIONS(3397), + [anon_sym_symbol] = ACTIONS(3397), + [anon_sym_object] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, [1620] = { [sym_comment] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, [1621] = { [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, [1622] = { [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym_import] = ACTIONS(3303), - [anon_sym_with] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_debugger] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_LTtemplate_GT] = ACTIONS(3303), - [anon_sym_DQUOTE] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_function] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_void] = ACTIONS(3303), - [anon_sym_delete] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3303), - [sym_number] = ACTIONS(3303), - [sym_private_property_identifier] = ACTIONS(3303), - [sym_this] = ACTIONS(3303), - [sym_super] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [sym_undefined] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_get] = ACTIONS(3303), - [anon_sym_set] = ACTIONS(3303), - [anon_sym_declare] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_module] = ACTIONS(3303), - [anon_sym_any] = ACTIONS(3303), - [anon_sym_number] = ACTIONS(3303), - [anon_sym_boolean] = ACTIONS(3303), - [anon_sym_string] = ACTIONS(3303), - [anon_sym_symbol] = ACTIONS(3303), - [anon_sym_object] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1623] = { [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3267), - [anon_sym_export] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_namespace] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_typeof] = ACTIONS(3267), - [anon_sym_import] = ACTIONS(3267), - [anon_sym_with] = ACTIONS(3267), - [anon_sym_var] = ACTIONS(3267), - [anon_sym_let] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_switch] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_await] = ACTIONS(3267), - [anon_sym_while] = ACTIONS(3267), - [anon_sym_do] = ACTIONS(3267), - [anon_sym_try] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_debugger] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_throw] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LTtemplate_GT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_class] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3267), - [anon_sym_function] = ACTIONS(3267), - [anon_sym_new] = ACTIONS(3267), - [anon_sym_using] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_void] = ACTIONS(3267), - [anon_sym_delete] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3267), - [sym_number] = ACTIONS(3267), - [sym_private_property_identifier] = ACTIONS(3267), - [sym_this] = ACTIONS(3267), - [sym_super] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [sym_undefined] = ACTIONS(3267), - [anon_sym_AT] = ACTIONS(3267), - [anon_sym_static] = ACTIONS(3267), - [anon_sym_readonly] = ACTIONS(3267), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3267), - [anon_sym_public] = ACTIONS(3267), - [anon_sym_private] = ACTIONS(3267), - [anon_sym_protected] = ACTIONS(3267), - [anon_sym_override] = ACTIONS(3267), - [anon_sym_module] = ACTIONS(3267), - [anon_sym_any] = ACTIONS(3267), - [anon_sym_number] = ACTIONS(3267), - [anon_sym_boolean] = ACTIONS(3267), - [anon_sym_string] = ACTIONS(3267), - [anon_sym_symbol] = ACTIONS(3267), - [anon_sym_object] = ACTIONS(3267), - [anon_sym_abstract] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, [1624] = { [sym_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), [sym_html_comment] = ACTIONS(5), }, [1625] = { [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1626] = { [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3269), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym_import] = ACTIONS(3269), - [anon_sym_with] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_debugger] = ACTIONS(3269), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_LTtemplate_GT] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_function] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_void] = ACTIONS(3269), - [anon_sym_delete] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3269), - [sym_number] = ACTIONS(3269), - [sym_private_property_identifier] = ACTIONS(3269), - [sym_this] = ACTIONS(3269), - [sym_super] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_null] = ACTIONS(3269), - [sym_undefined] = ACTIONS(3269), - [anon_sym_AT] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_get] = ACTIONS(3269), - [anon_sym_set] = ACTIONS(3269), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_module] = ACTIONS(3269), - [anon_sym_any] = ACTIONS(3269), - [anon_sym_number] = ACTIONS(3269), - [anon_sym_boolean] = ACTIONS(3269), - [anon_sym_string] = ACTIONS(3269), - [anon_sym_symbol] = ACTIONS(3269), - [anon_sym_object] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, [1627] = { [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, [1628] = { [sym_comment] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, [1629] = { [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(3543), + [ts_builtin_sym_end] = ACTIONS(3627), [sym_identifier] = ACTIONS(3367), [anon_sym_export] = ACTIONS(3367), [anon_sym_type] = ACTIONS(3367), @@ -195785,208 +195797,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1630] = { [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1631] = { [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_get] = ACTIONS(3349), - [anon_sym_set] = ACTIONS(3349), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1632] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1632), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5786), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5819), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(3685), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3687), @@ -195994,12 +196006,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196009,64 +196021,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1633] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1633), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6066), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5908), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(3691), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3693), @@ -196074,12 +196086,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196089,64 +196101,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1634] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1634), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5813), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6072), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(3695), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3697), @@ -196154,12 +196166,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196169,64 +196181,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1635] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1635), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5854), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(3699), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3701), @@ -196234,12 +196246,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196249,64 +196261,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1636] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1636), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(5906), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(5851), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(3703), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3705), @@ -196314,12 +196326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196329,142 +196341,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1637] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), [sym_comment] = STATE(1637), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), [sym_html_comment] = ACTIONS(5), }, [1638] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), [sym_comment] = STATE(1638), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1639] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1639), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3709), @@ -196472,12 +196563,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196487,63 +196578,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1639] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1639), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1640] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1640), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3711), @@ -196551,12 +196642,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196566,63 +196657,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1640] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1640), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1641] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1641), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3713), @@ -196630,12 +196721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196645,155 +196736,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1641] = { - [sym_comment] = STATE(1641), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1642] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1642), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3717), + [anon_sym_RBRACK] = ACTIONS(3715), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196803,142 +196815,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1643] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1643), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(3683), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1644] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), [sym_comment] = STATE(1644), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1645] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1645), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3719), @@ -196946,12 +197037,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -196961,142 +197052,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1645] = { - [sym_comment] = STATE(1645), - [sym_identifier] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_typeof] = ACTIONS(3207), - [anon_sym_import] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), - [anon_sym_var] = ACTIONS(3207), - [anon_sym_let] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_debugger] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_yield] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LTtemplate_GT] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_SQUOTE] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_function] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3207), - [sym_number] = ACTIONS(3207), - [sym_private_property_identifier] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [sym_super] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_null] = ACTIONS(3207), - [sym_undefined] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_readonly] = ACTIONS(3207), - [anon_sym_get] = ACTIONS(3207), - [anon_sym_set] = ACTIONS(3207), - [anon_sym_declare] = ACTIONS(3207), - [anon_sym_public] = ACTIONS(3207), - [anon_sym_private] = ACTIONS(3207), - [anon_sym_protected] = ACTIONS(3207), - [anon_sym_override] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_any] = ACTIONS(3207), - [anon_sym_number] = ACTIONS(3207), - [anon_sym_boolean] = ACTIONS(3207), - [anon_sym_string] = ACTIONS(3207), - [anon_sym_symbol] = ACTIONS(3207), - [anon_sym_object] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1646] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), [sym_comment] = STATE(1646), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1647] = { + [sym_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1648] = { + [sym_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3205), + [anon_sym_export] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_debugger] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LTtemplate_GT] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_number] = ACTIONS(3205), + [sym_private_property_identifier] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [sym_undefined] = ACTIONS(3205), + [anon_sym_AT] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_get] = ACTIONS(3205), + [anon_sym_set] = ACTIONS(3205), + [anon_sym_declare] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_module] = ACTIONS(3205), + [anon_sym_any] = ACTIONS(3205), + [anon_sym_number] = ACTIONS(3205), + [anon_sym_boolean] = ACTIONS(3205), + [anon_sym_string] = ACTIONS(3205), + [anon_sym_symbol] = ACTIONS(3205), + [anon_sym_object] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [sym_html_comment] = ACTIONS(5), + }, + [1649] = { + [sym_comment] = STATE(1649), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1650] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1650), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3721), @@ -197104,12 +197432,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -197119,142 +197447,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1647] = { - [sym_comment] = STATE(1647), - [sym_identifier] = ACTIONS(3723), - [anon_sym_export] = ACTIONS(3723), - [anon_sym_type] = ACTIONS(3723), - [anon_sym_namespace] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3723), - [anon_sym_typeof] = ACTIONS(3723), - [anon_sym_import] = ACTIONS(3723), - [anon_sym_with] = ACTIONS(3723), - [anon_sym_var] = ACTIONS(3723), - [anon_sym_let] = ACTIONS(3723), - [anon_sym_const] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_if] = ACTIONS(3723), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_for] = ACTIONS(3723), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_await] = ACTIONS(3723), - [anon_sym_while] = ACTIONS(3723), - [anon_sym_do] = ACTIONS(3723), - [anon_sym_try] = ACTIONS(3723), - [anon_sym_break] = ACTIONS(3723), - [anon_sym_continue] = ACTIONS(3723), - [anon_sym_debugger] = ACTIONS(3723), - [anon_sym_return] = ACTIONS(3723), - [anon_sym_throw] = ACTIONS(3723), - [anon_sym_SEMI] = ACTIONS(3723), - [anon_sym_yield] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3723), - [anon_sym_LTtemplate_GT] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(3723), - [anon_sym_SQUOTE] = ACTIONS(3723), - [anon_sym_class] = ACTIONS(3723), - [anon_sym_async] = ACTIONS(3723), - [anon_sym_function] = ACTIONS(3723), - [anon_sym_new] = ACTIONS(3723), - [anon_sym_using] = ACTIONS(3723), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_TILDE] = ACTIONS(3723), - [anon_sym_void] = ACTIONS(3723), - [anon_sym_delete] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3723), - [anon_sym_DASH_DASH] = ACTIONS(3723), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3723), - [sym_number] = ACTIONS(3723), - [sym_private_property_identifier] = ACTIONS(3723), - [sym_this] = ACTIONS(3723), - [sym_super] = ACTIONS(3723), - [sym_true] = ACTIONS(3723), - [sym_false] = ACTIONS(3723), - [sym_null] = ACTIONS(3723), - [sym_undefined] = ACTIONS(3723), - [anon_sym_AT] = ACTIONS(3723), - [anon_sym_static] = ACTIONS(3723), - [anon_sym_readonly] = ACTIONS(3723), - [anon_sym_get] = ACTIONS(3723), - [anon_sym_set] = ACTIONS(3723), - [anon_sym_declare] = ACTIONS(3723), - [anon_sym_public] = ACTIONS(3723), - [anon_sym_private] = ACTIONS(3723), - [anon_sym_protected] = ACTIONS(3723), - [anon_sym_override] = ACTIONS(3723), - [anon_sym_module] = ACTIONS(3723), - [anon_sym_any] = ACTIONS(3723), - [anon_sym_number] = ACTIONS(3723), - [anon_sym_boolean] = ACTIONS(3723), - [anon_sym_string] = ACTIONS(3723), - [anon_sym_symbol] = ACTIONS(3723), - [anon_sym_object] = ACTIONS(3723), - [anon_sym_abstract] = ACTIONS(3723), - [anon_sym_interface] = ACTIONS(3723), - [anon_sym_enum] = ACTIONS(3723), + [1651] = { + [sym_comment] = STATE(1651), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), [sym_html_comment] = ACTIONS(5), }, - [1648] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1648), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1652] = { + [sym_comment] = STATE(1652), + [sym_identifier] = ACTIONS(3707), + [anon_sym_export] = ACTIONS(3707), + [anon_sym_type] = ACTIONS(3707), + [anon_sym_namespace] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_typeof] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3707), + [anon_sym_var] = ACTIONS(3707), + [anon_sym_let] = ACTIONS(3707), + [anon_sym_const] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_switch] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_await] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_do] = ACTIONS(3707), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_debugger] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_throw] = ACTIONS(3707), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LTtemplate_GT] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(3707), + [anon_sym_class] = ACTIONS(3707), + [anon_sym_async] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_using] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(3707), + [anon_sym_DASH] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_TILDE] = ACTIONS(3707), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_delete] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(3707), + [anon_sym_DASH_DASH] = ACTIONS(3707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3707), + [sym_number] = ACTIONS(3707), + [sym_private_property_identifier] = ACTIONS(3707), + [sym_this] = ACTIONS(3707), + [sym_super] = ACTIONS(3707), + [sym_true] = ACTIONS(3707), + [sym_false] = ACTIONS(3707), + [sym_null] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_static] = ACTIONS(3707), + [anon_sym_readonly] = ACTIONS(3707), + [anon_sym_get] = ACTIONS(3707), + [anon_sym_set] = ACTIONS(3707), + [anon_sym_declare] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3707), + [anon_sym_private] = ACTIONS(3707), + [anon_sym_protected] = ACTIONS(3707), + [anon_sym_override] = ACTIONS(3707), + [anon_sym_module] = ACTIONS(3707), + [anon_sym_any] = ACTIONS(3707), + [anon_sym_number] = ACTIONS(3707), + [anon_sym_boolean] = ACTIONS(3707), + [anon_sym_string] = ACTIONS(3707), + [anon_sym_symbol] = ACTIONS(3707), + [anon_sym_object] = ACTIONS(3707), + [anon_sym_abstract] = ACTIONS(3707), + [anon_sym_interface] = ACTIONS(3707), + [anon_sym_enum] = ACTIONS(3707), + [sym_html_comment] = ACTIONS(5), + }, + [1653] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1653), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(3683), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1654] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1654), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_RBRACK] = ACTIONS(3725), @@ -197262,12 +197748,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -197277,24 +197763,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1649] = { - [sym_comment] = STATE(1649), + [1655] = { + [sym_comment] = STATE(1655), + [sym_identifier] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_typeof] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_var] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_debugger] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LTtemplate_GT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_void] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3163), + [sym_number] = ACTIONS(3163), + [sym_private_property_identifier] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_undefined] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_get] = ACTIONS(3163), + [anon_sym_set] = ACTIONS(3163), + [anon_sym_declare] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_any] = ACTIONS(3163), + [anon_sym_number] = ACTIONS(3163), + [anon_sym_boolean] = ACTIONS(3163), + [anon_sym_string] = ACTIONS(3163), + [anon_sym_symbol] = ACTIONS(3163), + [anon_sym_object] = ACTIONS(3163), + [anon_sym_abstract] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [sym_html_comment] = ACTIONS(5), + }, + [1656] = { + [sym_comment] = STATE(1656), [sym_identifier] = ACTIONS(3727), [anon_sym_export] = ACTIONS(3727), [anon_sym_type] = ACTIONS(3727), @@ -197372,692 +197937,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3727), [sym_html_comment] = ACTIONS(5), }, - [1650] = { - [sym_comment] = STATE(1650), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, - [1651] = { - [sym_comment] = STATE(1651), - [sym_identifier] = ACTIONS(3729), - [anon_sym_export] = ACTIONS(3729), - [anon_sym_type] = ACTIONS(3729), - [anon_sym_namespace] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(3729), - [anon_sym_typeof] = ACTIONS(3729), - [anon_sym_import] = ACTIONS(3729), - [anon_sym_with] = ACTIONS(3729), - [anon_sym_var] = ACTIONS(3729), - [anon_sym_let] = ACTIONS(3729), - [anon_sym_const] = ACTIONS(3729), - [anon_sym_BANG] = ACTIONS(3729), - [anon_sym_if] = ACTIONS(3729), - [anon_sym_switch] = ACTIONS(3729), - [anon_sym_for] = ACTIONS(3729), - [anon_sym_LPAREN] = ACTIONS(3729), - [anon_sym_await] = ACTIONS(3729), - [anon_sym_while] = ACTIONS(3729), - [anon_sym_do] = ACTIONS(3729), - [anon_sym_try] = ACTIONS(3729), - [anon_sym_break] = ACTIONS(3729), - [anon_sym_continue] = ACTIONS(3729), - [anon_sym_debugger] = ACTIONS(3729), - [anon_sym_return] = ACTIONS(3729), - [anon_sym_throw] = ACTIONS(3729), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym_yield] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3729), - [anon_sym_LTtemplate_GT] = ACTIONS(3729), - [anon_sym_DQUOTE] = ACTIONS(3729), - [anon_sym_SQUOTE] = ACTIONS(3729), - [anon_sym_class] = ACTIONS(3729), - [anon_sym_async] = ACTIONS(3729), - [anon_sym_function] = ACTIONS(3729), - [anon_sym_new] = ACTIONS(3729), - [anon_sym_using] = ACTIONS(3729), - [anon_sym_PLUS] = ACTIONS(3729), - [anon_sym_DASH] = ACTIONS(3729), - [anon_sym_SLASH] = ACTIONS(3729), - [anon_sym_LT] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3729), - [anon_sym_void] = ACTIONS(3729), - [anon_sym_delete] = ACTIONS(3729), - [anon_sym_PLUS_PLUS] = ACTIONS(3729), - [anon_sym_DASH_DASH] = ACTIONS(3729), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3729), - [sym_number] = ACTIONS(3729), - [sym_private_property_identifier] = ACTIONS(3729), - [sym_this] = ACTIONS(3729), - [sym_super] = ACTIONS(3729), - [sym_true] = ACTIONS(3729), - [sym_false] = ACTIONS(3729), - [sym_null] = ACTIONS(3729), - [sym_undefined] = ACTIONS(3729), - [anon_sym_AT] = ACTIONS(3729), - [anon_sym_static] = ACTIONS(3729), - [anon_sym_readonly] = ACTIONS(3729), - [anon_sym_get] = ACTIONS(3729), - [anon_sym_set] = ACTIONS(3729), - [anon_sym_declare] = ACTIONS(3729), - [anon_sym_public] = ACTIONS(3729), - [anon_sym_private] = ACTIONS(3729), - [anon_sym_protected] = ACTIONS(3729), - [anon_sym_override] = ACTIONS(3729), - [anon_sym_module] = ACTIONS(3729), - [anon_sym_any] = ACTIONS(3729), - [anon_sym_number] = ACTIONS(3729), - [anon_sym_boolean] = ACTIONS(3729), - [anon_sym_string] = ACTIONS(3729), - [anon_sym_symbol] = ACTIONS(3729), - [anon_sym_object] = ACTIONS(3729), - [anon_sym_abstract] = ACTIONS(3729), - [anon_sym_interface] = ACTIONS(3729), - [anon_sym_enum] = ACTIONS(3729), - [sym_html_comment] = ACTIONS(5), - }, - [1652] = { - [sym_comment] = STATE(1652), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, - [1653] = { - [sym_comment] = STATE(1653), - [sym_identifier] = ACTIONS(3213), - [anon_sym_export] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_debugger] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_LTtemplate_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_function] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(3213), - [anon_sym_delete] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3213), - [sym_number] = ACTIONS(3213), - [sym_private_property_identifier] = ACTIONS(3213), - [sym_this] = ACTIONS(3213), - [sym_super] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_undefined] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_get] = ACTIONS(3213), - [anon_sym_set] = ACTIONS(3213), - [anon_sym_declare] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_module] = ACTIONS(3213), - [anon_sym_any] = ACTIONS(3213), - [anon_sym_number] = ACTIONS(3213), - [anon_sym_boolean] = ACTIONS(3213), - [anon_sym_string] = ACTIONS(3213), - [anon_sym_symbol] = ACTIONS(3213), - [anon_sym_object] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [sym_html_comment] = ACTIONS(5), - }, - [1654] = { - [sym_comment] = STATE(1654), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, - [1655] = { - [sym_comment] = STATE(1655), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, - [1656] = { - [sym_comment] = STATE(1656), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, [1657] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1657), - [sym_identifier] = ACTIONS(3715), - [anon_sym_export] = ACTIONS(3715), - [anon_sym_type] = ACTIONS(3715), - [anon_sym_namespace] = ACTIONS(3715), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_typeof] = ACTIONS(3715), - [anon_sym_import] = ACTIONS(3715), - [anon_sym_with] = ACTIONS(3715), - [anon_sym_var] = ACTIONS(3715), - [anon_sym_let] = ACTIONS(3715), - [anon_sym_const] = ACTIONS(3715), - [anon_sym_BANG] = ACTIONS(3715), - [anon_sym_if] = ACTIONS(3715), - [anon_sym_switch] = ACTIONS(3715), - [anon_sym_for] = ACTIONS(3715), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_await] = ACTIONS(3715), - [anon_sym_while] = ACTIONS(3715), - [anon_sym_do] = ACTIONS(3715), - [anon_sym_try] = ACTIONS(3715), - [anon_sym_break] = ACTIONS(3715), - [anon_sym_continue] = ACTIONS(3715), - [anon_sym_debugger] = ACTIONS(3715), - [anon_sym_return] = ACTIONS(3715), - [anon_sym_throw] = ACTIONS(3715), - [anon_sym_SEMI] = ACTIONS(3715), - [anon_sym_yield] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3715), - [anon_sym_LTtemplate_GT] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(3715), - [anon_sym_class] = ACTIONS(3715), - [anon_sym_async] = ACTIONS(3715), - [anon_sym_function] = ACTIONS(3715), - [anon_sym_new] = ACTIONS(3715), - [anon_sym_using] = ACTIONS(3715), - [anon_sym_PLUS] = ACTIONS(3715), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_SLASH] = ACTIONS(3715), - [anon_sym_LT] = ACTIONS(3715), - [anon_sym_TILDE] = ACTIONS(3715), - [anon_sym_void] = ACTIONS(3715), - [anon_sym_delete] = ACTIONS(3715), - [anon_sym_PLUS_PLUS] = ACTIONS(3715), - [anon_sym_DASH_DASH] = ACTIONS(3715), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3715), - [sym_number] = ACTIONS(3715), - [sym_private_property_identifier] = ACTIONS(3715), - [sym_this] = ACTIONS(3715), - [sym_super] = ACTIONS(3715), - [sym_true] = ACTIONS(3715), - [sym_false] = ACTIONS(3715), - [sym_null] = ACTIONS(3715), - [sym_undefined] = ACTIONS(3715), - [anon_sym_AT] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3715), - [anon_sym_readonly] = ACTIONS(3715), - [anon_sym_get] = ACTIONS(3715), - [anon_sym_set] = ACTIONS(3715), - [anon_sym_declare] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3715), - [anon_sym_private] = ACTIONS(3715), - [anon_sym_protected] = ACTIONS(3715), - [anon_sym_override] = ACTIONS(3715), - [anon_sym_module] = ACTIONS(3715), - [anon_sym_any] = ACTIONS(3715), - [anon_sym_number] = ACTIONS(3715), - [anon_sym_boolean] = ACTIONS(3715), - [anon_sym_string] = ACTIONS(3715), - [anon_sym_symbol] = ACTIONS(3715), - [anon_sym_object] = ACTIONS(3715), - [anon_sym_abstract] = ACTIONS(3715), - [anon_sym_interface] = ACTIONS(3715), - [anon_sym_enum] = ACTIONS(3715), - [sym_html_comment] = ACTIONS(5), - }, - [1658] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1658), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3729), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198067,76 +198000,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1658] = { + [sym_comment] = STATE(1658), + [sym_identifier] = ACTIONS(3731), + [anon_sym_export] = ACTIONS(3731), + [anon_sym_type] = ACTIONS(3731), + [anon_sym_namespace] = ACTIONS(3731), + [anon_sym_LBRACE] = ACTIONS(3731), + [anon_sym_typeof] = ACTIONS(3731), + [anon_sym_import] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [anon_sym_var] = ACTIONS(3731), + [anon_sym_let] = ACTIONS(3731), + [anon_sym_const] = ACTIONS(3731), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_if] = ACTIONS(3731), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_for] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_while] = ACTIONS(3731), + [anon_sym_do] = ACTIONS(3731), + [anon_sym_try] = ACTIONS(3731), + [anon_sym_break] = ACTIONS(3731), + [anon_sym_continue] = ACTIONS(3731), + [anon_sym_debugger] = ACTIONS(3731), + [anon_sym_return] = ACTIONS(3731), + [anon_sym_throw] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_yield] = ACTIONS(3731), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_LTtemplate_GT] = ACTIONS(3731), + [anon_sym_DQUOTE] = ACTIONS(3731), + [anon_sym_SQUOTE] = ACTIONS(3731), + [anon_sym_class] = ACTIONS(3731), + [anon_sym_async] = ACTIONS(3731), + [anon_sym_function] = ACTIONS(3731), + [anon_sym_new] = ACTIONS(3731), + [anon_sym_using] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3731), + [anon_sym_DASH] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3731), + [anon_sym_void] = ACTIONS(3731), + [anon_sym_delete] = ACTIONS(3731), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3731), + [sym_number] = ACTIONS(3731), + [sym_private_property_identifier] = ACTIONS(3731), + [sym_this] = ACTIONS(3731), + [sym_super] = ACTIONS(3731), + [sym_true] = ACTIONS(3731), + [sym_false] = ACTIONS(3731), + [sym_null] = ACTIONS(3731), + [sym_undefined] = ACTIONS(3731), + [anon_sym_AT] = ACTIONS(3731), + [anon_sym_static] = ACTIONS(3731), + [anon_sym_readonly] = ACTIONS(3731), + [anon_sym_get] = ACTIONS(3731), + [anon_sym_set] = ACTIONS(3731), + [anon_sym_declare] = ACTIONS(3731), + [anon_sym_public] = ACTIONS(3731), + [anon_sym_private] = ACTIONS(3731), + [anon_sym_protected] = ACTIONS(3731), + [anon_sym_override] = ACTIONS(3731), + [anon_sym_module] = ACTIONS(3731), + [anon_sym_any] = ACTIONS(3731), + [anon_sym_number] = ACTIONS(3731), + [anon_sym_boolean] = ACTIONS(3731), + [anon_sym_string] = ACTIONS(3731), + [anon_sym_symbol] = ACTIONS(3731), + [anon_sym_object] = ACTIONS(3731), + [anon_sym_abstract] = ACTIONS(3731), + [anon_sym_interface] = ACTIONS(3731), + [anon_sym_enum] = ACTIONS(3731), [sym_html_comment] = ACTIONS(5), }, [1659] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), [sym_comment] = STATE(1659), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3733), + [anon_sym_export] = ACTIONS(3733), + [anon_sym_type] = ACTIONS(3733), + [anon_sym_namespace] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3733), + [anon_sym_typeof] = ACTIONS(3733), + [anon_sym_import] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3733), + [anon_sym_var] = ACTIONS(3733), + [anon_sym_let] = ACTIONS(3733), + [anon_sym_const] = ACTIONS(3733), + [anon_sym_BANG] = ACTIONS(3733), + [anon_sym_if] = ACTIONS(3733), + [anon_sym_switch] = ACTIONS(3733), + [anon_sym_for] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_await] = ACTIONS(3733), + [anon_sym_while] = ACTIONS(3733), + [anon_sym_do] = ACTIONS(3733), + [anon_sym_try] = ACTIONS(3733), + [anon_sym_break] = ACTIONS(3733), + [anon_sym_continue] = ACTIONS(3733), + [anon_sym_debugger] = ACTIONS(3733), + [anon_sym_return] = ACTIONS(3733), + [anon_sym_throw] = ACTIONS(3733), + [anon_sym_SEMI] = ACTIONS(3733), + [anon_sym_yield] = ACTIONS(3733), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LTtemplate_GT] = ACTIONS(3733), + [anon_sym_DQUOTE] = ACTIONS(3733), + [anon_sym_SQUOTE] = ACTIONS(3733), + [anon_sym_class] = ACTIONS(3733), + [anon_sym_async] = ACTIONS(3733), + [anon_sym_function] = ACTIONS(3733), + [anon_sym_new] = ACTIONS(3733), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_PLUS] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_SLASH] = ACTIONS(3733), + [anon_sym_LT] = ACTIONS(3733), + [anon_sym_TILDE] = ACTIONS(3733), + [anon_sym_void] = ACTIONS(3733), + [anon_sym_delete] = ACTIONS(3733), + [anon_sym_PLUS_PLUS] = ACTIONS(3733), + [anon_sym_DASH_DASH] = ACTIONS(3733), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3733), + [sym_number] = ACTIONS(3733), + [sym_private_property_identifier] = ACTIONS(3733), + [sym_this] = ACTIONS(3733), + [sym_super] = ACTIONS(3733), + [sym_true] = ACTIONS(3733), + [sym_false] = ACTIONS(3733), + [sym_null] = ACTIONS(3733), + [sym_undefined] = ACTIONS(3733), + [anon_sym_AT] = ACTIONS(3733), + [anon_sym_static] = ACTIONS(3733), + [anon_sym_readonly] = ACTIONS(3733), + [anon_sym_get] = ACTIONS(3733), + [anon_sym_set] = ACTIONS(3733), + [anon_sym_declare] = ACTIONS(3733), + [anon_sym_public] = ACTIONS(3733), + [anon_sym_private] = ACTIONS(3733), + [anon_sym_protected] = ACTIONS(3733), + [anon_sym_override] = ACTIONS(3733), + [anon_sym_module] = ACTIONS(3733), + [anon_sym_any] = ACTIONS(3733), + [anon_sym_number] = ACTIONS(3733), + [anon_sym_boolean] = ACTIONS(3733), + [anon_sym_string] = ACTIONS(3733), + [anon_sym_symbol] = ACTIONS(3733), + [anon_sym_object] = ACTIONS(3733), + [anon_sym_abstract] = ACTIONS(3733), + [anon_sym_interface] = ACTIONS(3733), + [anon_sym_enum] = ACTIONS(3733), + [sym_html_comment] = ACTIONS(5), + }, + [1660] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1660), + [sym_formal_parameters] = STATE(7251), + [sym_rest_pattern] = STATE(6693), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4839), + [sym_tuple_parameter] = STATE(6694), + [sym_optional_tuple_parameter] = STATE(6694), + [sym_optional_type] = STATE(6694), + [sym_rest_type] = STATE(6694), + [sym__tuple_type_member] = STATE(6689), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3733), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198146,385 +198236,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1660] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1660), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4255), - [sym__type_query_call_expression_in_type_annotation] = STATE(4398), - [sym_asserts] = STATE(6764), - [sym__type] = STATE(4252), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_predicate] = STATE(6751), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3776), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1661] = { + [sym_import] = STATE(5769), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1661), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type_query_member_expression_in_type_annotation] = STATE(4126), + [sym__type_query_call_expression_in_type_annotation] = STATE(4369), + [sym_asserts] = STATE(4834), + [sym__type] = STATE(4125), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_predicate] = STATE(4823), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4019), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), [sym_this] = ACTIONS(3737), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1661] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1661), - [sym_formal_parameters] = STATE(7245), - [sym_rest_pattern] = STATE(6689), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4814), - [sym_tuple_parameter] = STATE(6690), - [sym_optional_tuple_parameter] = STATE(6690), - [sym_optional_type] = STATE(6690), - [sym_rest_type] = STATE(6690), - [sym__tuple_type_member] = STATE(6685), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(3683), + [1662] = { + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1662), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4256), + [sym__type_query_call_expression_in_type_annotation] = STATE(4582), + [sym_asserts] = STATE(6770), + [sym__type] = STATE(4246), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_predicate] = STATE(6758), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3781), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(3741), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), + [sym_this] = ACTIONS(3743), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1662] = { - [sym_import] = STATE(6014), - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1662), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type_query_member_expression_in_type_annotation] = STATE(4379), - [sym__type_query_call_expression_in_type_annotation] = STATE(4791), - [sym_asserts] = STATE(5286), - [sym__type] = STATE(4378), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_predicate] = STATE(5282), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4145), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(3773), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_asserts] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_asserts] = ACTIONS(3745), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1663] = { - [sym_import] = STATE(5766), - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_import] = STATE(6018), + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), [sym_comment] = STATE(1663), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type_query_member_expression_in_type_annotation] = STATE(4140), - [sym__type_query_call_expression_in_type_annotation] = STATE(4366), - [sym_asserts] = STATE(4789), - [sym__type] = STATE(4144), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_predicate] = STATE(4784), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4004), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type_query_member_expression_in_type_annotation] = STATE(4375), + [sym__type_query_call_expression_in_type_annotation] = STATE(4838), + [sym_asserts] = STATE(5281), + [sym__type] = STATE(4363), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_predicate] = STATE(5280), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4122), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3747), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3791), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_asserts] = ACTIONS(3793), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(3779), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_asserts] = ACTIONS(3787), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, [1664] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1664), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3795), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198534,73 +198546,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1665] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1665), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4663), + [sym__type_query_call_expression_in_type_annotation] = STATE(5577), + [sym__type] = STATE(4662), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_type_parameter] = STATE(5703), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(3797), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(3799), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3797), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198610,73 +198622,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1666] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1666), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3799), + [anon_sym_GT] = ACTIONS(3801), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198686,73 +198698,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1667] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1667), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3801), + [anon_sym_GT] = ACTIONS(3803), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198762,73 +198774,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1668] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1668), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3803), + [anon_sym_GT] = ACTIONS(3805), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198838,73 +198850,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1669] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1669), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3805), + [anon_sym_GT] = ACTIONS(3807), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198914,73 +198926,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1670] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1670), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3807), + [anon_sym_GT] = ACTIONS(3809), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -198990,73 +199002,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1671] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1671), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3809), + [anon_sym_GT] = ACTIONS(3811), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199066,73 +199078,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1672] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1672), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3813), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199142,73 +199154,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1673] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1673), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3813), + [anon_sym_GT] = ACTIONS(3815), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199218,73 +199230,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1674] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1674), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3815), + [anon_sym_GT] = ACTIONS(3817), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199294,73 +199306,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1675] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1675), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3817), + [anon_sym_GT] = ACTIONS(3819), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199370,73 +199382,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1676] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1676), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3819), + [anon_sym_GT] = ACTIONS(3821), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199446,73 +199458,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1677] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1677), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3821), + [anon_sym_GT] = ACTIONS(3823), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199522,73 +199534,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1678] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1678), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4664), - [sym__type_query_call_expression_in_type_annotation] = STATE(5574), - [sym__type] = STATE(4661), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_type_parameter] = STATE(5700), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(3823), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(3825), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(3825), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199598,73 +199610,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1679] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1679), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3827), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199674,73 +199686,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1680] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1680), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3829), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199750,73 +199762,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1681] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1681), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3831), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199826,73 +199838,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1682] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1682), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3833), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199902,73 +199914,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1683] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1683), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3835), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -199978,73 +199990,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1684] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1684), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3837), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200054,73 +200066,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1685] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1685), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3839), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200130,73 +200142,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1686] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1686), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3841), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200206,73 +200218,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1687] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1687), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3843), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200282,73 +200294,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1688] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1688), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3845), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200358,73 +200370,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1689] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1689), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3847), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200434,73 +200446,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1690] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1690), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200510,73 +200522,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1691] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1691), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3851), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200586,73 +200598,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1692] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1692), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3853), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200662,73 +200674,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1693] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1693), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3855), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200738,73 +200750,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1694] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1694), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3857), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200814,73 +200826,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1695] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1695), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3859), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200890,73 +200902,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1696] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1696), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3861), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -200966,73 +200978,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1697] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1697), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3863), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201042,73 +201054,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1698] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1698), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3865), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201118,73 +201130,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1699] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1699), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3867), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201194,73 +201206,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1700] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1700), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3869), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201270,73 +201282,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1701] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1701), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3871), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201346,73 +201358,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1702] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1702), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3873), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201422,73 +201434,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1703] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1703), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3875), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201498,73 +201510,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1704] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1704), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3877), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201574,73 +201586,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1705] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1705), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3879), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201650,73 +201662,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1706] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1706), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(3881), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201726,72 +201738,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1707] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1707), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4781), - [sym__type_query_call_expression_in_type_annotation] = STATE(5532), - [sym__type] = STATE(4707), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4702), + [sym__type_query_call_expression_in_type_annotation] = STATE(5466), + [sym__type] = STATE(4701), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201801,72 +201813,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1708] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1708), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4255), - [sym__type_query_call_expression_in_type_annotation] = STATE(4398), - [sym__type] = STATE(4252), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(5106), + [sym__type_query_call_expression_in_type_annotation] = STATE(5933), + [sym__type] = STATE(5107), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201876,72 +201888,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1709] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1709), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(5104), - [sym__type_query_call_expression_in_type_annotation] = STATE(5930), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4671), + [sym__type_query_call_expression_in_type_annotation] = STATE(5395), + [sym__type] = STATE(4679), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -201951,72 +201963,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1710] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1710), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4721), - [sym__type_query_call_expression_in_type_annotation] = STATE(5454), - [sym__type] = STATE(4681), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4694), + [sym__type_query_call_expression_in_type_annotation] = STATE(5455), + [sym__type] = STATE(4693), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -202026,72 +202038,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1711] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1711), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4828), - [sym__type_query_call_expression_in_type_annotation] = STATE(5541), - [sym__type] = STATE(4829), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4256), + [sym__type_query_call_expression_in_type_annotation] = STATE(4582), + [sym__type] = STATE(4246), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -202101,72 +202113,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1712] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1712), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4697), - [sym__type_query_call_expression_in_type_annotation] = STATE(5393), - [sym__type] = STATE(4690), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4736), + [sym__type_query_call_expression_in_type_annotation] = STATE(5375), + [sym__type] = STATE(4738), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -202176,147 +202188,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1713] = { - [sym_import] = STATE(5766), - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1713), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type_query_member_expression_in_type_annotation] = STATE(4140), - [sym__type_query_call_expression_in_type_annotation] = STATE(4366), - [sym__type] = STATE(4144), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1714] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1714), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4736), - [sym__type_query_call_expression_in_type_annotation] = STATE(5461), - [sym__type] = STATE(4737), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4793), + [sym__type_query_call_expression_in_type_annotation] = STATE(5532), + [sym__type] = STATE(4794), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -202326,72 +202263,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1714] = { + [sym_import] = STATE(5769), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1714), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type_query_member_expression_in_type_annotation] = STATE(4126), + [sym__type_query_call_expression_in_type_annotation] = STATE(4369), + [sym__type] = STATE(4125), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1715] = { - [sym_import] = STATE(5696), - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_import] = STATE(5698), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1715), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type_query_member_expression_in_type_annotation] = STATE(4717), - [sym__type_query_call_expression_in_type_annotation] = STATE(5373), - [sym__type] = STATE(4719), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4836), + [sym__type_query_call_expression_in_type_annotation] = STATE(5546), + [sym__type] = STATE(4832), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_import] = ACTIONS(128), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -202401,54 +202413,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1716] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), [sym_comment] = STATE(1716), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym_asserts] = STATE(2356), - [sym__type] = STATE(2357), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_predicate] = STATE(2356), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2299), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym_asserts] = STATE(2393), + [sym__type] = STATE(2353), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_predicate] = STATE(2393), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2304), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(3883), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -202456,8 +202468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -202492,332 +202504,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1717] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1717), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym_asserts] = STATE(4259), - [sym__type] = STATE(4257), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_predicate] = STATE(4259), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4145), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym_asserts] = STATE(3808), + [sym__type] = STATE(3812), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_predicate] = STATE(3808), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3781), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(3773), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_asserts] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1718] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1718), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym_asserts] = STATE(3791), - [sym__type] = STATE(3789), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_predicate] = STATE(3791), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3776), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(3735), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3737), + [sym_this] = ACTIONS(3743), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1719] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1719), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym_asserts] = STATE(4073), - [sym__type] = STATE(4114), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_predicate] = STATE(4073), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4004), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3791), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_asserts] = ACTIONS(3793), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1720] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1720), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym_asserts] = STATE(4311), - [sym__type] = STATE(4312), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_predicate] = STATE(4311), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4145), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(3741), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(3773), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_asserts] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_asserts] = ACTIONS(3745), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1721] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1721), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym_asserts] = STATE(2876), - [sym__type] = STATE(2875), + [1718] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1718), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym_asserts] = STATE(2918), + [sym__type] = STATE(2917), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_predicate] = STATE(2876), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2746), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_predicate] = STATE(2918), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2673), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(3927), [anon_sym_STAR] = ACTIONS(3929), @@ -202861,37 +202651,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, + [1719] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1719), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym_asserts] = STATE(4091), + [sym__type] = STATE(4095), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_predicate] = STATE(4091), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4019), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(3737), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_asserts] = ACTIONS(3739), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1720] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1720), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym_asserts] = STATE(4191), + [sym__type] = STATE(4170), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_predicate] = STATE(4191), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4122), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3747), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(3779), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_asserts] = ACTIONS(3787), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1721] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1721), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym_asserts] = STATE(4315), + [sym__type] = STATE(4316), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_predicate] = STATE(4315), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4122), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3747), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(3779), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_asserts] = ACTIONS(3787), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, [1722] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1722), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym_asserts] = STATE(2956), - [sym__type] = STATE(2953), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym_asserts] = STATE(4067), + [sym__type] = STATE(4065), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_predicate] = STATE(4067), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4019), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(3737), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_asserts] = ACTIONS(3739), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1723] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1723), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym_asserts] = STATE(2388), + [sym__type] = STATE(2358), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_predicate] = STATE(2388), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2304), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_asserts] = ACTIONS(3919), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1724] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1724), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym_asserts] = STATE(2976), + [sym__type] = STATE(2977), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_predicate] = STATE(2956), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2746), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_predicate] = STATE(2976), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2673), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(3927), [anon_sym_STAR] = ACTIONS(3929), @@ -202935,257 +203095,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1723] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1723), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym_asserts] = STATE(4066), - [sym__type] = STATE(4096), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_predicate] = STATE(4066), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4004), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3791), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_asserts] = ACTIONS(3793), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1724] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1724), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym_asserts] = STATE(3782), - [sym__type] = STATE(3831), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_predicate] = STATE(3782), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3776), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(3735), + [1725] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1725), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym_asserts] = STATE(3803), + [sym__type] = STATE(3800), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_predicate] = STATE(3803), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3781), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(3741), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3737), + [sym_this] = ACTIONS(3743), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_asserts] = ACTIONS(3739), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1725] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1725), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym_asserts] = STATE(2360), - [sym__type] = STATE(2359), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_predicate] = STATE(2360), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2299), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(3911), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_asserts] = ACTIONS(3919), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_asserts] = ACTIONS(3745), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1726] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5633), + [sym_string] = STATE(4056), [sym_comment] = STATE(1726), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(3971), [anon_sym_export] = ACTIONS(3973), [anon_sym_STAR] = ACTIONS(3975), @@ -203231,34 +203243,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1727] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5631), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1727), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(4011), [anon_sym_export] = ACTIONS(4013), [anon_sym_STAR] = ACTIONS(3975), @@ -203304,34 +203316,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1728] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1728), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(4031), [anon_sym_export] = ACTIONS(4033), [anon_sym_STAR] = ACTIONS(3975), @@ -203377,50 +203389,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1729] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1729), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4051), - [anon_sym_export] = ACTIONS(4053), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4031), + [anon_sym_export] = ACTIONS(4033), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4051), - [anon_sym_namespace] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_namespace] = ACTIONS(4031), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_let] = ACTIONS(4031), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4057), - [anon_sym_new] = ACTIONS(4059), + [anon_sym_async] = ACTIONS(4037), + [anon_sym_new] = ACTIONS(4039), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -203429,71 +203441,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4061), - [anon_sym_readonly] = ACTIONS(4063), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_declare] = ACTIONS(4051), - [anon_sym_public] = ACTIONS(4067), - [anon_sym_private] = ACTIONS(4067), - [anon_sym_protected] = ACTIONS(4067), - [anon_sym_override] = ACTIONS(4069), - [anon_sym_module] = ACTIONS(4051), - [anon_sym_any] = ACTIONS(4051), - [anon_sym_number] = ACTIONS(4051), - [anon_sym_boolean] = ACTIONS(4051), - [anon_sym_string] = ACTIONS(4051), - [anon_sym_symbol] = ACTIONS(4051), - [anon_sym_object] = ACTIONS(4051), + [anon_sym_static] = ACTIONS(4041), + [anon_sym_readonly] = ACTIONS(4043), + [anon_sym_get] = ACTIONS(4045), + [anon_sym_set] = ACTIONS(4045), + [anon_sym_declare] = ACTIONS(4031), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4049), + [anon_sym_module] = ACTIONS(4031), + [anon_sym_any] = ACTIONS(4031), + [anon_sym_number] = ACTIONS(4031), + [anon_sym_boolean] = ACTIONS(4031), + [anon_sym_string] = ACTIONS(4031), + [anon_sym_symbol] = ACTIONS(4031), + [anon_sym_object] = ACTIONS(4031), [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1730] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1730), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4071), - [anon_sym_export] = ACTIONS(4073), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4053), + [anon_sym_export] = ACTIONS(4055), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4053), + [anon_sym_namespace] = ACTIONS(4053), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4075), - [anon_sym_let] = ACTIONS(4071), + [anon_sym_RBRACE] = ACTIONS(4057), + [anon_sym_let] = ACTIONS(4053), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4077), - [anon_sym_new] = ACTIONS(4079), + [anon_sym_async] = ACTIONS(4059), + [anon_sym_new] = ACTIONS(4061), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -203502,71 +203514,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4081), - [anon_sym_readonly] = ACTIONS(4083), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_declare] = ACTIONS(4071), - [anon_sym_public] = ACTIONS(4087), - [anon_sym_private] = ACTIONS(4087), - [anon_sym_protected] = ACTIONS(4087), - [anon_sym_override] = ACTIONS(4089), - [anon_sym_module] = ACTIONS(4071), - [anon_sym_any] = ACTIONS(4071), - [anon_sym_number] = ACTIONS(4071), - [anon_sym_boolean] = ACTIONS(4071), - [anon_sym_string] = ACTIONS(4071), - [anon_sym_symbol] = ACTIONS(4071), - [anon_sym_object] = ACTIONS(4071), + [anon_sym_static] = ACTIONS(4063), + [anon_sym_readonly] = ACTIONS(4065), + [anon_sym_get] = ACTIONS(4067), + [anon_sym_set] = ACTIONS(4067), + [anon_sym_declare] = ACTIONS(4053), + [anon_sym_public] = ACTIONS(4069), + [anon_sym_private] = ACTIONS(4069), + [anon_sym_protected] = ACTIONS(4069), + [anon_sym_override] = ACTIONS(4071), + [anon_sym_module] = ACTIONS(4053), + [anon_sym_any] = ACTIONS(4053), + [anon_sym_number] = ACTIONS(4053), + [anon_sym_boolean] = ACTIONS(4053), + [anon_sym_string] = ACTIONS(4053), + [anon_sym_symbol] = ACTIONS(4053), + [anon_sym_object] = ACTIONS(4053), [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1731] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1731), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4071), - [anon_sym_export] = ACTIONS(4073), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4053), + [anon_sym_export] = ACTIONS(4055), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4053), + [anon_sym_namespace] = ACTIONS(4053), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4071), + [anon_sym_RBRACE] = ACTIONS(4073), + [anon_sym_let] = ACTIONS(4053), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4077), - [anon_sym_new] = ACTIONS(4079), + [anon_sym_async] = ACTIONS(4059), + [anon_sym_new] = ACTIONS(4061), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -203575,71 +203587,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4081), - [anon_sym_readonly] = ACTIONS(4083), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_declare] = ACTIONS(4071), - [anon_sym_public] = ACTIONS(4087), - [anon_sym_private] = ACTIONS(4087), - [anon_sym_protected] = ACTIONS(4087), - [anon_sym_override] = ACTIONS(4089), - [anon_sym_module] = ACTIONS(4071), - [anon_sym_any] = ACTIONS(4071), - [anon_sym_number] = ACTIONS(4071), - [anon_sym_boolean] = ACTIONS(4071), - [anon_sym_string] = ACTIONS(4071), - [anon_sym_symbol] = ACTIONS(4071), - [anon_sym_object] = ACTIONS(4071), + [anon_sym_static] = ACTIONS(4063), + [anon_sym_readonly] = ACTIONS(4065), + [anon_sym_get] = ACTIONS(4067), + [anon_sym_set] = ACTIONS(4067), + [anon_sym_declare] = ACTIONS(4053), + [anon_sym_public] = ACTIONS(4069), + [anon_sym_private] = ACTIONS(4069), + [anon_sym_protected] = ACTIONS(4069), + [anon_sym_override] = ACTIONS(4071), + [anon_sym_module] = ACTIONS(4053), + [anon_sym_any] = ACTIONS(4053), + [anon_sym_number] = ACTIONS(4053), + [anon_sym_boolean] = ACTIONS(4053), + [anon_sym_string] = ACTIONS(4053), + [anon_sym_symbol] = ACTIONS(4053), + [anon_sym_object] = ACTIONS(4053), [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1732] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1732), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(3971), - [anon_sym_export] = ACTIONS(3973), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4031), + [anon_sym_export] = ACTIONS(4033), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(3971), - [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_namespace] = ACTIONS(4031), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(4075), + [anon_sym_let] = ACTIONS(4031), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(3989), - [anon_sym_new] = ACTIONS(3991), + [anon_sym_async] = ACTIONS(4037), + [anon_sym_new] = ACTIONS(4039), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -203648,128 +203660,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3997), - [anon_sym_readonly] = ACTIONS(3999), - [anon_sym_get] = ACTIONS(4001), - [anon_sym_set] = ACTIONS(4001), - [anon_sym_declare] = ACTIONS(3971), - [anon_sym_public] = ACTIONS(4003), - [anon_sym_private] = ACTIONS(4003), - [anon_sym_protected] = ACTIONS(4003), - [anon_sym_override] = ACTIONS(4005), - [anon_sym_module] = ACTIONS(3971), - [anon_sym_any] = ACTIONS(3971), - [anon_sym_number] = ACTIONS(3971), - [anon_sym_boolean] = ACTIONS(3971), - [anon_sym_string] = ACTIONS(3971), - [anon_sym_symbol] = ACTIONS(3971), - [anon_sym_object] = ACTIONS(3971), + [anon_sym_static] = ACTIONS(4041), + [anon_sym_readonly] = ACTIONS(4043), + [anon_sym_get] = ACTIONS(4045), + [anon_sym_set] = ACTIONS(4045), + [anon_sym_declare] = ACTIONS(4031), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4049), + [anon_sym_module] = ACTIONS(4031), + [anon_sym_any] = ACTIONS(4031), + [anon_sym_number] = ACTIONS(4031), + [anon_sym_boolean] = ACTIONS(4031), + [anon_sym_string] = ACTIONS(4031), + [anon_sym_symbol] = ACTIONS(4031), + [anon_sym_object] = ACTIONS(4031), [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1733] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5633), + [sym_string] = STATE(4056), [sym_comment] = STATE(1733), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5633), + [sym_pair] = STATE(5633), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4071), - [anon_sym_export] = ACTIONS(4073), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_namespace] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4071), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4077), - [anon_sym_new] = ACTIONS(4079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4081), - [anon_sym_readonly] = ACTIONS(4083), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_declare] = ACTIONS(4071), - [anon_sym_public] = ACTIONS(4087), - [anon_sym_private] = ACTIONS(4087), - [anon_sym_protected] = ACTIONS(4087), - [anon_sym_override] = ACTIONS(4089), - [anon_sym_module] = ACTIONS(4071), - [anon_sym_any] = ACTIONS(4071), - [anon_sym_number] = ACTIONS(4071), - [anon_sym_boolean] = ACTIONS(4071), - [anon_sym_string] = ACTIONS(4071), - [anon_sym_symbol] = ACTIONS(4071), - [anon_sym_object] = ACTIONS(4071), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4009), - [sym_html_comment] = ACTIONS(5), - }, - [1734] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), - [sym_comment] = STATE(1734), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5650), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(3971), [anon_sym_export] = ACTIONS(3973), [anon_sym_STAR] = ACTIONS(3975), @@ -203777,7 +203716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3971), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_RBRACE] = ACTIONS(4077), [anon_sym_let] = ACTIONS(3971), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), @@ -203814,51 +203753,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1735] = { - [sym_export_statement] = STATE(4837), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), - [sym_comment] = STATE(1735), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4837), - [sym_accessibility_modifier] = STATE(3566), + [1734] = { + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), + [sym_comment] = STATE(1734), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4837), - [sym_property_signature] = STATE(4837), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4837), - [sym_index_signature] = STATE(4837), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4071), - [anon_sym_export] = ACTIONS(4073), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4011), + [anon_sym_export] = ACTIONS(4013), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_namespace] = ACTIONS(4011), [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4095), - [anon_sym_RBRACE] = ACTIONS(4097), - [anon_sym_let] = ACTIONS(4071), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_let] = ACTIONS(4011), [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4077), - [anon_sym_new] = ACTIONS(4079), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4019), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -203867,66 +203806,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4081), - [anon_sym_readonly] = ACTIONS(4083), - [anon_sym_get] = ACTIONS(4085), - [anon_sym_set] = ACTIONS(4085), - [anon_sym_declare] = ACTIONS(4071), - [anon_sym_public] = ACTIONS(4087), - [anon_sym_private] = ACTIONS(4087), - [anon_sym_protected] = ACTIONS(4087), - [anon_sym_override] = ACTIONS(4089), - [anon_sym_module] = ACTIONS(4071), - [anon_sym_any] = ACTIONS(4071), - [anon_sym_number] = ACTIONS(4071), - [anon_sym_boolean] = ACTIONS(4071), - [anon_sym_string] = ACTIONS(4071), - [anon_sym_symbol] = ACTIONS(4071), - [anon_sym_object] = ACTIONS(4071), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_get] = ACTIONS(4025), + [anon_sym_set] = ACTIONS(4025), + [anon_sym_declare] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_private] = ACTIONS(4027), + [anon_sym_protected] = ACTIONS(4027), + [anon_sym_override] = ACTIONS(4029), + [anon_sym_module] = ACTIONS(4011), + [anon_sym_any] = ACTIONS(4011), + [anon_sym_number] = ACTIONS(4011), + [anon_sym_boolean] = ACTIONS(4011), + [anon_sym_string] = ACTIONS(4011), + [anon_sym_symbol] = ACTIONS(4011), + [anon_sym_object] = ACTIONS(4011), [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_PIPE_RBRACE] = ACTIONS(4101), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1736] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5631), - [sym_string] = STATE(4102), - [sym_comment] = STATE(1736), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5631), - [sym_pair] = STATE(5631), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [1735] = { + [sym_export_statement] = STATE(4795), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), + [sym_comment] = STATE(1735), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4795), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5649), - [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_call_signature] = STATE(4795), + [sym_property_signature] = STATE(4795), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4795), + [sym_index_signature] = STATE(4795), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), [sym_identifier] = ACTIONS(4011), [anon_sym_export] = ACTIONS(4013), [anon_sym_STAR] = ACTIONS(3975), [anon_sym_type] = ACTIONS(4011), [anon_sym_namespace] = ACTIONS(4011), [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_COMMA] = ACTIONS(4081), + [anon_sym_RBRACE] = ACTIONS(4083), [anon_sym_let] = ACTIONS(4011), [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(4085), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), @@ -203957,54 +203896,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(4011), [anon_sym_object] = ACTIONS(4011), [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4087), + [sym_html_comment] = ACTIONS(5), + }, + [1736] = { + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), + [sym_comment] = STATE(1736), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4089), + [anon_sym_export] = ACTIONS(4091), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4089), + [anon_sym_namespace] = ACTIONS(4089), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_let] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(4093), + [anon_sym_new] = ACTIONS(4095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_LT] = ACTIONS(1973), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4097), + [anon_sym_readonly] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4101), + [anon_sym_set] = ACTIONS(4101), + [anon_sym_declare] = ACTIONS(4089), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4105), + [anon_sym_module] = ACTIONS(4089), + [anon_sym_any] = ACTIONS(4089), + [anon_sym_number] = ACTIONS(4089), + [anon_sym_boolean] = ACTIONS(4089), + [anon_sym_string] = ACTIONS(4089), + [anon_sym_symbol] = ACTIONS(4089), + [anon_sym_object] = ACTIONS(4089), + [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1737] = { - [sym_export_statement] = STATE(4788), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(5630), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(5708), - [sym_string] = STATE(4102), + [sym_export_statement] = STATE(4827), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(5628), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(5706), + [sym_string] = STATE(4056), [sym_comment] = STATE(1737), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(5630), - [sym_method_definition] = STATE(5708), - [sym_pair] = STATE(5708), - [sym_pair_pattern] = STATE(5630), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4788), - [sym_accessibility_modifier] = STATE(3566), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(5628), + [sym_method_definition] = STATE(5706), + [sym_pair] = STATE(5706), + [sym_pair_pattern] = STATE(5628), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4827), + [sym_accessibility_modifier] = STATE(3610), [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4788), - [sym_property_signature] = STATE(4788), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4788), - [sym_index_signature] = STATE(4788), - [aux_sym_export_statement_repeat1] = STATE(5525), - [aux_sym_object_repeat1] = STATE(5712), - [aux_sym_object_pattern_repeat1] = STATE(5632), - [sym_identifier] = ACTIONS(4051), - [anon_sym_export] = ACTIONS(4053), + [sym_call_signature] = STATE(4827), + [sym_property_signature] = STATE(4827), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4827), + [sym_index_signature] = STATE(4827), + [aux_sym_export_statement_repeat1] = STATE(5528), + [aux_sym_object_repeat1] = STATE(5711), + [aux_sym_object_pattern_repeat1] = STATE(5634), + [sym_identifier] = ACTIONS(4011), + [anon_sym_export] = ACTIONS(4013), [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4051), - [anon_sym_namespace] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_namespace] = ACTIONS(4011), [anon_sym_LBRACE] = ACTIONS(3977), [anon_sym_COMMA] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(4105), - [anon_sym_let] = ACTIONS(4051), + [anon_sym_RBRACE] = ACTIONS(4075), + [anon_sym_let] = ACTIONS(4011), [anon_sym_LPAREN] = ACTIONS(3983), [anon_sym_SEMI] = ACTIONS(3985), [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4057), - [anon_sym_new] = ACTIONS(4059), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4019), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(3993), [anon_sym_DASH] = ACTIONS(3993), @@ -204013,66 +204025,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(3995), [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4061), - [anon_sym_readonly] = ACTIONS(4063), - [anon_sym_get] = ACTIONS(4065), - [anon_sym_set] = ACTIONS(4065), - [anon_sym_declare] = ACTIONS(4051), - [anon_sym_public] = ACTIONS(4067), - [anon_sym_private] = ACTIONS(4067), - [anon_sym_protected] = ACTIONS(4067), - [anon_sym_override] = ACTIONS(4069), - [anon_sym_module] = ACTIONS(4051), - [anon_sym_any] = ACTIONS(4051), - [anon_sym_number] = ACTIONS(4051), - [anon_sym_boolean] = ACTIONS(4051), - [anon_sym_string] = ACTIONS(4051), - [anon_sym_symbol] = ACTIONS(4051), - [anon_sym_object] = ACTIONS(4051), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_get] = ACTIONS(4025), + [anon_sym_set] = ACTIONS(4025), + [anon_sym_declare] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_private] = ACTIONS(4027), + [anon_sym_protected] = ACTIONS(4027), + [anon_sym_override] = ACTIONS(4029), + [anon_sym_module] = ACTIONS(4011), + [anon_sym_any] = ACTIONS(4011), + [anon_sym_number] = ACTIONS(4011), + [anon_sym_boolean] = ACTIONS(4011), + [anon_sym_string] = ACTIONS(4011), + [anon_sym_symbol] = ACTIONS(4011), + [anon_sym_object] = ACTIONS(4011), [anon_sym_abstract] = ACTIONS(4007), [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, [1738] = { - [sym_nested_identifier] = STATE(1047), - [sym_string] = STATE(1381), + [sym_variable_declarator] = STATE(5585), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1738), - [sym__module] = STATE(1543), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4111), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204099,52 +204111,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1739] = { - [sym_nested_identifier] = STATE(357), - [sym_string] = STATE(367), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1739), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4113), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5406), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1740] = { + [sym_variable_declarator] = STATE(5585), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), + [sym_comment] = STATE(1740), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204171,52 +204255,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1740] = { - [sym_variable_declarator] = STATE(5582), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), - [sym_comment] = STATE(1740), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4119), + [1741] = { + [sym_nested_identifier] = STATE(1197), + [sym_string] = STATE(1317), + [sym_comment] = STATE(1741), + [sym__module] = STATE(1559), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204243,124 +204327,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1741] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1741), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5585), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4125), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1742] = { - [sym_nested_identifier] = STATE(1047), - [sym_string] = STATE(1381), + [sym_nested_identifier] = STATE(350), + [sym_string] = STATE(349), [sym_comment] = STATE(1742), - [sym__module] = STATE(1543), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4107), + [sym__module] = STATE(434), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4111), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204387,52 +204399,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1743] = { - [sym_variable_declarator] = STATE(5582), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1743), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4119), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5504), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1744] = { + [sym_nested_identifier] = STATE(350), + [sym_string] = STATE(349), + [sym_comment] = STATE(1744), + [sym__module] = STATE(434), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204459,52 +204543,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1744] = { - [sym_nested_identifier] = STATE(357), - [sym_string] = STATE(367), - [sym_comment] = STATE(1744), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4113), + [1745] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1745), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5454), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1746] = { + [sym_nested_identifier] = STATE(1197), + [sym_string] = STATE(1317), + [sym_comment] = STATE(1746), + [sym__module] = STATE(1559), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204531,52 +204687,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1745] = { - [sym_nested_identifier] = STATE(1047), - [sym_string] = STATE(1381), - [sym_comment] = STATE(1745), - [sym__module] = STATE(1543), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4107), + [1747] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1747), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5481), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1748] = { + [sym_nested_identifier] = STATE(350), + [sym_string] = STATE(349), + [sym_comment] = STATE(1748), + [sym__module] = STATE(434), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4111), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204599,135 +204827,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1746] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1746), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5405), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1747] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1747), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5452), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1749] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1749), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5591), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4133), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -204737,62 +204893,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1748] = { - [sym_nested_identifier] = STATE(357), - [sym_string] = STATE(367), - [sym_comment] = STATE(1748), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4113), + [1750] = { + [sym_nested_identifier] = STATE(1197), + [sym_string] = STATE(1317), + [sym_comment] = STATE(1750), + [sym__module] = STATE(1559), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204819,52 +204975,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1749] = { - [sym_variable_declarator] = STATE(5582), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), - [sym_comment] = STATE(1749), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4119), + [1751] = { + [sym_variable_declarator] = STATE(5585), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), + [sym_comment] = STATE(1751), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -204891,273 +205047,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1750] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1750), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5480), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4131), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1751] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1751), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5499), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1752] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), [sym_comment] = STATE(1752), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5401), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2382), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, [1753] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1753), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4853), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5328), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -205167,68 +205179,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1754] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1754), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5117), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4084), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -205238,139 +205250,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1755] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1755), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3889), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4101), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1756] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1756), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5581), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5457), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -205380,68 +205392,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1757] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1757), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5449), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5522), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -205451,68 +205463,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1758] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1758), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5411), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5168), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -205522,265 +205534,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1759] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), [sym_comment] = STATE(1759), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4345), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2836), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, [1760] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), [sym_comment] = STATE(1760), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4353), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1761] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1761), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4350), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1762] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1762), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2339), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2351), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -205788,8 +205658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -205822,107 +205692,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1763] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1763), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5218), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1764] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1764), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2416), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1761] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1761), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2404), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -205930,8 +205729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -205964,52 +205763,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1765] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1765), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3849), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1762] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1762), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5442), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -206019,210 +205818,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1766] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1766), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2815), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), + [1763] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1763), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4094), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1767] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1767), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2816), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), + [1764] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1764), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5437), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1768] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1768), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3783), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1765] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1765), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5458), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -206232,52 +206031,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1769] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1769), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(5907), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(2866), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(3865), + [1766] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1766), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5221), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1767] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1767), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5279), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1768] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1768), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(5910), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(2868), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), [anon_sym_LBRACE] = ACTIONS(3931), @@ -206310,8 +206251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3949), [anon_sym_symbol] = ACTIONS(3949), [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), [anon_sym_keyof] = ACTIONS(3967), [anon_sym_unique] = ACTIONS(3969), [anon_sym_unknown] = ACTIONS(3949), @@ -206319,36 +206260,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1770] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1770), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(5907), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(2864), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(3865), + [1769] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1769), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(5910), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(2866), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), [anon_sym_LBRACE] = ACTIONS(3931), @@ -206381,8 +206322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3949), [anon_sym_symbol] = ACTIONS(3949), [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), [anon_sym_keyof] = ACTIONS(3967), [anon_sym_unique] = ACTIONS(3969), [anon_sym_unknown] = ACTIONS(3949), @@ -206390,52 +206331,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1771] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1771), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5794), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3863), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1770] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1770), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5451), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -206445,51 +206386,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1771] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1771), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5847), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(4113), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1772] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), [sym_comment] = STATE(1772), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2863), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2865), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -206533,51 +206545,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1773] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1773), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5794), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(5100), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(5482), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3811), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -206587,51 +206599,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, [1774] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), [sym_comment] = STATE(1774), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2859), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2861), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -206675,34 +206687,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1775] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1775), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2858), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5597), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1776] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1776), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2860), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -206745,123 +206828,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1776] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1776), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4062), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, [1777] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1777), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4061), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4360), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -206871,352 +206883,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1778] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), [sym_comment] = STATE(1778), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4318), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1779] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1779), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4079), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1780] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5590), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1781] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3864), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1782] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3790), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -207226,68 +206954,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1783] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5091), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1779] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1779), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5026), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -207297,620 +207025,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1784] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5406), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1785] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1785), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4166), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1786] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1786), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5492), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1787] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1787), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4183), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1788] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5103), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1789] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1789), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4700), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1790] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5400), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1791] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4206), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1792] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2424), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1780] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1780), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2433), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -207918,8 +207078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -207952,320 +207112,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1793] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1793), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4168), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1794] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1794), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2324), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), + [1781] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1781), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2971), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1795] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1795), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2420), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), + [1782] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1782), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2974), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1796] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1796), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2325), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), + [1783] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1783), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2972), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1797] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2395), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1784] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1784), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2444), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -208273,8 +207362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -208307,123 +207396,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1798] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1798), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4319), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1799] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1799), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3821), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1785] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1785), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5404), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -208433,281 +207451,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1800] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2393), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), - [sym_html_comment] = ACTIONS(5), - }, - [1801] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1801), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4179), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1802] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1802), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4970), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1786] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1786), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4319), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, - [1803] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1803), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5336), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1787] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1787), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5075), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -208717,122 +207593,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1804] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5022), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1788] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1788), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5413), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1805] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2785), + [1789] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1789), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2885), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -208875,52 +207751,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1806] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3886), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1790] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1790), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5148), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -208930,139 +207806,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1807] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2878), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), + [1791] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1791), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5400), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1808] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3844), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1792] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1792), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5399), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -209072,68 +207948,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1809] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5343), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1793] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1793), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4359), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -209143,68 +208019,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1810] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5354), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1794] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1794), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4358), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -209214,51 +208090,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1811] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2946), + [1795] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1795), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2886), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -209301,52 +208177,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1812] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5456), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1796] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1796), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5847), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(4104), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1797] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1797), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4096), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1798] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1798), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4326), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1799] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1799), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3817), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -209356,61 +208445,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1813] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2421), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1800] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1800), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4337), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1801] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1801), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2406), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(4147), + [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -209443,107 +208603,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1814] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5032), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1802] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1802), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3783), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1815] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1815), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2346), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1803] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1803), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2420), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -209551,8 +208711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -209585,123 +208745,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1816] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1816), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4310), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), + [1804] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1804), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3890), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1805] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1805), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4343), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, - [1817] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1817), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5144), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1806] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1806), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4345), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1807] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1807), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3810), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -209711,51 +209013,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1818] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1818), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2944), + [1808] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1808), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5495), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1809] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1809), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5593), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1810] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1810), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(5101), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(5486), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1811] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1811), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2880), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -209798,52 +209313,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1819] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1819), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5519), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1812] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1812), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3861), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -209853,68 +209368,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1820] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1820), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4083), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1813] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1813), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4080), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -209924,139 +209439,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1821] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1821), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5844), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(4068), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1822] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1822), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5165), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1814] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1814), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4780), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -210066,210 +209510,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1823] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1823), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4069), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1824] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1824), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4113), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1815] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1815), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2320), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1825] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1825), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5594), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1816] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1816), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5584), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -210279,68 +209652,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1826] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1826), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3892), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1817] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1817), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -210350,68 +209723,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1827] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1827), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3836), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1818] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1818), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5093), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1819] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1819), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(4776), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -210421,51 +209865,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1828] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1828), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2879), + [1820] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1820), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2990), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -210508,52 +209952,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1829] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1829), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4848), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1821] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1821), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2323), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1822] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1822), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4106), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -210563,68 +210078,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1830] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1830), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4088), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1823] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1823), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2832), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1824] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1824), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5600), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1825] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1825), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4059), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -210634,68 +210291,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1831] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1831), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4081), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1826] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1826), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4060), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -210705,68 +210362,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1832] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1832), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5844), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(4099), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(3865), + [1827] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1827), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4857), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -210775,69 +210432,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(2001), [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1833] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1833), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5442), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1828] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1828), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4328), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1829] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1829), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5796), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3863), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -210847,51 +210575,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1834] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1834), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2917), + [1830] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1830), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4108), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1831] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1831), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4859), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1832] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1832), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2920), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -210934,35 +210804,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, + [1833] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1833), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1834] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1834), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3791), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, [1835] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), [sym_comment] = STATE(1835), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2975), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2923), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -211005,35 +211017,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1836] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1836), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2937), + [1836] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1836), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4069), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1837] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1837), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3866), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1838] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1838), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4323), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1839] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1839), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4322), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1840] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1840), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3858), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1841] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1841), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3792), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1842] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1842), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5484), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1843] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1843), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4213), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1844] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1844), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3876), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1845] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1845), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(3865), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), + }, + [1846] = { + [sym_nested_identifier] = STATE(7203), + [sym_string] = STATE(2848), + [sym_comment] = STATE(1846), + [sym_formal_parameters] = STATE(7140), + [sym_nested_type_identifier] = STATE(2713), + [sym__type] = STATE(2881), [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), + [sym__primary_type] = STATE(2839), + [sym_template_literal_type] = STATE(2838), [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), + [sym_conditional_type] = STATE(2838), + [sym_generic_type] = STATE(2838), + [sym_type_query] = STATE(2838), + [sym_index_type_query] = STATE(2838), + [sym_lookup_type] = STATE(2838), + [sym_literal_type] = STATE(2838), + [sym__number] = STATE(2837), + [sym_existential_type] = STATE(2838), + [sym_flow_maybe_type] = STATE(2838), + [sym_parenthesized_type] = STATE(2838), + [sym_predefined_type] = STATE(2838), + [sym_object_type] = STATE(2838), + [sym_type_parameters] = STATE(6545), + [sym_array_type] = STATE(2838), + [sym_tuple_type] = STATE(2838), [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), + [sym_union_type] = STATE(2838), + [sym_intersection_type] = STATE(2838), [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), [anon_sym_STAR] = ACTIONS(3929), @@ -211076,52 +211798,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1837] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1837), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5214), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1847] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1847), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5271), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -211131,194 +211853,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1838] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1838), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5437), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [1848] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1848), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4214), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, - [1839] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1839), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4089), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1849] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1849), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2429), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1840] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1840), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(5817), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(2321), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(3865), + [1850] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1850), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2328), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -211326,9 +212048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), [anon_sym_PLUS] = ACTIONS(3903), @@ -211343,7 +212065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(3909), [sym_null] = ACTIONS(3909), [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_readonly] = ACTIONS(3913), [anon_sym_QMARK] = ACTIONS(3915), [anon_sym_any] = ACTIONS(3905), [anon_sym_number] = ACTIONS(3905), @@ -211351,8 +212073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3905), [anon_sym_symbol] = ACTIONS(3905), [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), [anon_sym_keyof] = ACTIONS(3923), [anon_sym_unique] = ACTIONS(3925), [anon_sym_unknown] = ACTIONS(3905), @@ -211360,194 +212082,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1841] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1841), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5327), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1851] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1851), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2430), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1842] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1842), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4272), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), + [1852] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1852), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4218), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, - [1843] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1843), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5080), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1853] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1853), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5310), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -211557,139 +212279,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1844] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1844), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4265), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), + [1854] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1854), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(6076), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(4219), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, - [1845] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1845), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5391), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), + [1855] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1855), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(6076), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(4221), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(3892), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1856] = { + [sym_nested_identifier] = STATE(7252), + [sym_string] = STATE(3874), + [sym_comment] = STATE(1856), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(3769), + [sym__type] = STATE(5394), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(3838), + [sym_template_literal_type] = STATE(3894), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(3894), + [sym_generic_type] = STATE(3894), + [sym_type_query] = STATE(3894), + [sym_index_type_query] = STATE(3894), + [sym_lookup_type] = STATE(3894), + [sym_literal_type] = STATE(3894), + [sym__number] = STATE(3889), + [sym_existential_type] = STATE(3894), + [sym_flow_maybe_type] = STATE(3894), + [sym_parenthesized_type] = STATE(3894), + [sym_predefined_type] = STATE(3894), + [sym_object_type] = STATE(3894), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(3894), + [sym_tuple_type] = STATE(3894), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(3894), + [sym_intersection_type] = STATE(3894), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(205), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), @@ -211699,68 +212492,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1977), [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(193), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), + [anon_sym_keyof] = ACTIONS(201), + [anon_sym_unique] = ACTIONS(203), + [anon_sym_unknown] = ACTIONS(205), + [anon_sym_never] = ACTIONS(205), + [anon_sym_LBRACE_PIPE] = ACTIONS(207), [sym_html_comment] = ACTIONS(5), }, - [1846] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1846), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5308), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1857] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1857), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5034), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -211770,68 +212563,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1847] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1847), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5140), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [1858] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1858), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4087), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -211841,123 +212634,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1848] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), - [sym_comment] = STATE(1848), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2925), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, - [1849] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1849), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2347), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1859] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1859), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2383), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -211965,8 +212687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -211999,320 +212721,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1850] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1850), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5794), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3859), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1851] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1851), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(6070), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1852] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1852), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(6070), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(4212), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1853] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1853), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4115), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1854] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1854), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(5817), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(2396), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(3865), + [1860] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1860), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2437), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -212320,9 +212758,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), [anon_sym_PLUS] = ACTIONS(3903), @@ -212337,7 +212775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(3909), [sym_null] = ACTIONS(3909), [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_readonly] = ACTIONS(3913), [anon_sym_QMARK] = ACTIONS(3915), [anon_sym_any] = ACTIONS(3905), [anon_sym_number] = ACTIONS(3905), @@ -212345,8 +212783,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3905), [anon_sym_symbol] = ACTIONS(3905), [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), [anon_sym_keyof] = ACTIONS(3923), [anon_sym_unique] = ACTIONS(3925), [anon_sym_unknown] = ACTIONS(3905), @@ -212354,107 +212792,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1855] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1855), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3817), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1856] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1856), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2397), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [1861] = { + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1861), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(5823), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(2438), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -212462,9 +212829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1969), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), [anon_sym_PLUS] = ACTIONS(3903), @@ -212479,7 +212846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(3909), [sym_null] = ACTIONS(3909), [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_readonly] = ACTIONS(1981), [anon_sym_QMARK] = ACTIONS(3915), [anon_sym_any] = ACTIONS(3905), [anon_sym_number] = ACTIONS(3905), @@ -212487,8 +212854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3905), [anon_sym_symbol] = ACTIONS(3905), [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), [anon_sym_keyof] = ACTIONS(3923), [anon_sym_unique] = ACTIONS(3925), [anon_sym_unknown] = ACTIONS(3905), @@ -212496,400 +212863,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1857] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1857), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5274), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, - [1858] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1858), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5481), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1859] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1859), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(4770), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1860] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1860), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3835), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1861] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), - [sym_comment] = STATE(1861), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(5271), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [sym_html_comment] = ACTIONS(5), - }, [1862] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), [sym_comment] = STATE(1862), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2409), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [sym_formal_parameters] = STATE(7149), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(2431), + [sym_constructor_type] = STATE(2330), + [sym__primary_type] = STATE(2331), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(2330), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6895), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(2330), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(2330), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), + [anon_sym_const] = ACTIONS(4149), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_new] = ACTIONS(3897), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), @@ -212923,390 +212935,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1863] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), [sym_comment] = STATE(1863), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(5598), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4203), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), [sym_html_comment] = ACTIONS(5), }, [1864] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), + [sym_nested_identifier] = STATE(6975), + [sym_string] = STATE(2318), [sym_comment] = STATE(1864), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4211), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1865] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), - [sym_comment] = STATE(1865), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4297), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), - [sym_html_comment] = ACTIONS(5), - }, - [1866] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1866), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3787), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1867] = { - [sym_nested_identifier] = STATE(7246), - [sym_string] = STATE(3848), - [sym_comment] = STATE(1867), - [sym_formal_parameters] = STATE(7245), - [sym_nested_type_identifier] = STATE(3759), - [sym__type] = STATE(3792), - [sym_constructor_type] = STATE(3865), - [sym__primary_type] = STATE(3866), - [sym_template_literal_type] = STATE(3867), - [sym_infer_type] = STATE(3865), - [sym_conditional_type] = STATE(3867), - [sym_generic_type] = STATE(3867), - [sym_type_query] = STATE(3867), - [sym_index_type_query] = STATE(3867), - [sym_lookup_type] = STATE(3867), - [sym_literal_type] = STATE(3867), - [sym__number] = STATE(3880), - [sym_existential_type] = STATE(3867), - [sym_flow_maybe_type] = STATE(3867), - [sym_parenthesized_type] = STATE(3867), - [sym_predefined_type] = STATE(3867), - [sym_object_type] = STATE(3867), - [sym_type_parameters] = STATE(6477), - [sym_array_type] = STATE(3867), - [sym_tuple_type] = STATE(3867), - [sym_readonly_type] = STATE(3865), - [sym_union_type] = STATE(3867), - [sym_intersection_type] = STATE(3867), - [sym_function_type] = STATE(3865), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [1868] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), - [sym_comment] = STATE(1868), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), + [sym_formal_parameters] = STATE(7251), + [sym_nested_type_identifier] = STATE(2315), + [sym__type] = STATE(5823), + [sym_constructor_type] = STATE(3892), + [sym__primary_type] = STATE(2442), + [sym_template_literal_type] = STATE(2332), + [sym_infer_type] = STATE(3892), + [sym_conditional_type] = STATE(2332), + [sym_generic_type] = STATE(2332), + [sym_type_query] = STATE(2332), + [sym_index_type_query] = STATE(2332), + [sym_lookup_type] = STATE(2332), + [sym_literal_type] = STATE(2332), + [sym__number] = STATE(2333), + [sym_existential_type] = STATE(2332), + [sym_flow_maybe_type] = STATE(2332), + [sym_parenthesized_type] = STATE(2332), + [sym_predefined_type] = STATE(2332), + [sym_object_type] = STATE(2332), + [sym_type_parameters] = STATE(6480), + [sym_array_type] = STATE(2332), + [sym_tuple_type] = STATE(2332), + [sym_readonly_type] = STATE(3892), + [sym_union_type] = STATE(2332), + [sym_intersection_type] = STATE(2332), + [sym_function_type] = STATE(3892), [sym_identifier] = ACTIONS(4135), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_LBRACE] = ACTIONS(3887), @@ -213314,9 +213042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(3891), [anon_sym_LPAREN] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1969), [anon_sym_AMP] = ACTIONS(3899), [anon_sym_PIPE] = ACTIONS(3901), [anon_sym_PLUS] = ACTIONS(3903), @@ -213331,7 +213059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(3909), [sym_null] = ACTIONS(3909), [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_readonly] = ACTIONS(1981), [anon_sym_QMARK] = ACTIONS(3915), [anon_sym_any] = ACTIONS(3905), [anon_sym_number] = ACTIONS(3905), @@ -213339,8 +213067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3905), [anon_sym_symbol] = ACTIONS(3905), [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), + [anon_sym_abstract] = ACTIONS(197), + [anon_sym_infer] = ACTIONS(199), [anon_sym_keyof] = ACTIONS(3923), [anon_sym_unique] = ACTIONS(3925), [anon_sym_unknown] = ACTIONS(3905), @@ -213348,52 +213076,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, + [1865] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1865), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4969), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1866] = { + [sym_nested_identifier] = STATE(7012), + [sym_string] = STATE(4254), + [sym_comment] = STATE(1866), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(4100), + [sym__type] = STATE(4224), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(4341), + [sym_template_literal_type] = STATE(4320), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(4320), + [sym_generic_type] = STATE(4320), + [sym_type_query] = STATE(4320), + [sym_index_type_query] = STATE(4320), + [sym_lookup_type] = STATE(4320), + [sym_literal_type] = STATE(4320), + [sym__number] = STATE(4318), + [sym_existential_type] = STATE(4320), + [sym_flow_maybe_type] = STATE(4320), + [sym_parenthesized_type] = STATE(4320), + [sym_predefined_type] = STATE(4320), + [sym_object_type] = STATE(4320), + [sym_type_parameters] = STATE(6906), + [sym_array_type] = STATE(4320), + [sym_tuple_type] = STATE(4320), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4320), + [sym_intersection_type] = STATE(4320), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_typeof] = ACTIONS(3753), + [anon_sym_const] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_DQUOTE] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_PIPE] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3773), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3775), + [sym_number] = ACTIONS(3777), + [sym_this] = ACTIONS(4147), + [sym_true] = ACTIONS(3777), + [sym_false] = ACTIONS(3777), + [sym_null] = ACTIONS(3777), + [sym_undefined] = ACTIONS(3777), + [anon_sym_readonly] = ACTIONS(3781), + [anon_sym_QMARK] = ACTIONS(3783), + [anon_sym_any] = ACTIONS(3773), + [anon_sym_number] = ACTIONS(3773), + [anon_sym_boolean] = ACTIONS(3773), + [anon_sym_string] = ACTIONS(3773), + [anon_sym_symbol] = ACTIONS(3773), + [anon_sym_object] = ACTIONS(3773), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_infer] = ACTIONS(3789), + [anon_sym_keyof] = ACTIONS(3791), + [anon_sym_unique] = ACTIONS(3793), + [anon_sym_unknown] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_LBRACE_PIPE] = ACTIONS(3751), + [sym_html_comment] = ACTIONS(5), + }, + [1867] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1867), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5145), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, + [1868] = { + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), + [sym_comment] = STATE(1868), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5355), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [sym_html_comment] = ACTIONS(5), + }, [1869] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1869), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4098), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5340), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -213403,281 +213415,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1870] = { - [sym_nested_identifier] = STATE(6973), - [sym_string] = STATE(2430), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1870), - [sym_formal_parameters] = STATE(7150), - [sym_nested_type_identifier] = STATE(2302), - [sym__type] = STATE(2340), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2427), - [sym_template_literal_type] = STATE(2426), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2426), - [sym_generic_type] = STATE(2426), - [sym_type_query] = STATE(2426), - [sym_index_type_query] = STATE(2426), - [sym_lookup_type] = STATE(2426), - [sym_literal_type] = STATE(2426), - [sym__number] = STATE(2422), - [sym_existential_type] = STATE(2426), - [sym_flow_maybe_type] = STATE(2426), - [sym_parenthesized_type] = STATE(2426), - [sym_predefined_type] = STATE(2426), - [sym_object_type] = STATE(2426), - [sym_type_parameters] = STATE(6889), - [sym_array_type] = STATE(2426), - [sym_tuple_type] = STATE(2426), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2426), - [sym_intersection_type] = STATE(2426), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_typeof] = ACTIONS(3889), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_PIPE] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5336), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3905), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3907), - [sym_number] = ACTIONS(3909), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_null] = ACTIONS(3909), - [sym_undefined] = ACTIONS(3909), - [anon_sym_readonly] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_any] = ACTIONS(3905), - [anon_sym_number] = ACTIONS(3905), - [anon_sym_boolean] = ACTIONS(3905), - [anon_sym_string] = ACTIONS(3905), - [anon_sym_symbol] = ACTIONS(3905), - [anon_sym_object] = ACTIONS(3905), - [anon_sym_abstract] = ACTIONS(3917), - [anon_sym_infer] = ACTIONS(3921), - [anon_sym_keyof] = ACTIONS(3923), - [anon_sym_unique] = ACTIONS(3925), - [anon_sym_unknown] = ACTIONS(3905), - [anon_sym_never] = ACTIONS(3905), - [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1871] = { - [sym_nested_identifier] = STATE(7198), - [sym_string] = STATE(2867), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1871), - [sym_formal_parameters] = STATE(7145), - [sym_nested_type_identifier] = STATE(2711), - [sym__type] = STATE(2789), - [sym_constructor_type] = STATE(2843), - [sym__primary_type] = STATE(2842), - [sym_template_literal_type] = STATE(2841), - [sym_infer_type] = STATE(2843), - [sym_conditional_type] = STATE(2841), - [sym_generic_type] = STATE(2841), - [sym_type_query] = STATE(2841), - [sym_index_type_query] = STATE(2841), - [sym_lookup_type] = STATE(2841), - [sym_literal_type] = STATE(2841), - [sym__number] = STATE(2835), - [sym_existential_type] = STATE(2841), - [sym_flow_maybe_type] = STATE(2841), - [sym_parenthesized_type] = STATE(2841), - [sym_predefined_type] = STATE(2841), - [sym_object_type] = STATE(2841), - [sym_type_parameters] = STATE(6539), - [sym_array_type] = STATE(2841), - [sym_tuple_type] = STATE(2841), - [sym_readonly_type] = STATE(2843), - [sym_union_type] = STATE(2841), - [sym_intersection_type] = STATE(2841), - [sym_function_type] = STATE(2843), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_typeof] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_PIPE] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5119), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3949), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3951), - [sym_number] = ACTIONS(3953), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_null] = ACTIONS(3953), - [sym_undefined] = ACTIONS(3953), - [anon_sym_readonly] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_any] = ACTIONS(3949), - [anon_sym_number] = ACTIONS(3949), - [anon_sym_boolean] = ACTIONS(3949), - [anon_sym_string] = ACTIONS(3949), - [anon_sym_symbol] = ACTIONS(3949), - [anon_sym_object] = ACTIONS(3949), - [anon_sym_abstract] = ACTIONS(3961), - [anon_sym_infer] = ACTIONS(3965), - [anon_sym_keyof] = ACTIONS(3967), - [anon_sym_unique] = ACTIONS(3969), - [anon_sym_unknown] = ACTIONS(3949), - [anon_sym_never] = ACTIONS(3949), - [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1872] = { - [sym_nested_identifier] = STATE(7006), - [sym_string] = STATE(4247), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1872), - [sym_formal_parameters] = STATE(7134), - [sym_nested_type_identifier] = STATE(4103), - [sym__type] = STATE(4207), - [sym_constructor_type] = STATE(4153), - [sym__primary_type] = STATE(4154), - [sym_template_literal_type] = STATE(4155), - [sym_infer_type] = STATE(4153), - [sym_conditional_type] = STATE(4155), - [sym_generic_type] = STATE(4155), - [sym_type_query] = STATE(4155), - [sym_index_type_query] = STATE(4155), - [sym_lookup_type] = STATE(4155), - [sym_literal_type] = STATE(4155), - [sym__number] = STATE(4156), - [sym_existential_type] = STATE(4155), - [sym_flow_maybe_type] = STATE(4155), - [sym_parenthesized_type] = STATE(4155), - [sym_predefined_type] = STATE(4155), - [sym_object_type] = STATE(4155), - [sym_type_parameters] = STATE(6916), - [sym_array_type] = STATE(4155), - [sym_tuple_type] = STATE(4155), - [sym_readonly_type] = STATE(4153), - [sym_union_type] = STATE(4155), - [sym_intersection_type] = STATE(4155), - [sym_function_type] = STATE(4153), - [sym_identifier] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_typeof] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LBRACK] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(3757), - [anon_sym_new] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_PIPE] = ACTIONS(3763), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(5219), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3767), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3769), - [sym_number] = ACTIONS(3771), - [sym_this] = ACTIONS(4145), - [sym_true] = ACTIONS(3771), - [sym_false] = ACTIONS(3771), - [sym_null] = ACTIONS(3771), - [sym_undefined] = ACTIONS(3771), - [anon_sym_readonly] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_any] = ACTIONS(3767), - [anon_sym_number] = ACTIONS(3767), - [anon_sym_boolean] = ACTIONS(3767), - [anon_sym_string] = ACTIONS(3767), - [anon_sym_symbol] = ACTIONS(3767), - [anon_sym_object] = ACTIONS(3767), - [anon_sym_abstract] = ACTIONS(3779), - [anon_sym_infer] = ACTIONS(3783), - [anon_sym_keyof] = ACTIONS(3785), - [anon_sym_unique] = ACTIONS(3787), - [anon_sym_unknown] = ACTIONS(3767), - [anon_sym_never] = ACTIONS(3767), - [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [anon_sym_void] = ACTIONS(1377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1873] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1873), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4112), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4055), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -213687,68 +213699,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1874] = { - [sym_nested_identifier] = STATE(7039), - [sym_string] = STATE(4090), + [sym_nested_identifier] = STATE(7047), + [sym_string] = STATE(4058), [sym_comment] = STATE(1874), - [sym_formal_parameters] = STATE(7114), - [sym_nested_type_identifier] = STATE(3972), - [sym__type] = STATE(4109), - [sym_constructor_type] = STATE(4087), - [sym__primary_type] = STATE(4085), - [sym_template_literal_type] = STATE(4072), - [sym_infer_type] = STATE(4087), - [sym_conditional_type] = STATE(4072), - [sym_generic_type] = STATE(4072), - [sym_type_query] = STATE(4072), - [sym_index_type_query] = STATE(4072), - [sym_lookup_type] = STATE(4072), - [sym_literal_type] = STATE(4072), - [sym__number] = STATE(4067), - [sym_existential_type] = STATE(4072), - [sym_flow_maybe_type] = STATE(4072), - [sym_parenthesized_type] = STATE(4072), - [sym_predefined_type] = STATE(4072), - [sym_object_type] = STATE(4072), - [sym_type_parameters] = STATE(6769), - [sym_array_type] = STATE(4072), - [sym_tuple_type] = STATE(4072), - [sym_readonly_type] = STATE(4087), - [sym_union_type] = STATE(4072), - [sym_intersection_type] = STATE(4072), - [sym_function_type] = STATE(4087), + [sym_formal_parameters] = STATE(7122), + [sym_nested_type_identifier] = STATE(3949), + [sym__type] = STATE(4099), + [sym_constructor_type] = STATE(4076), + [sym__primary_type] = STATE(4054), + [sym_template_literal_type] = STATE(4103), + [sym_infer_type] = STATE(4076), + [sym_conditional_type] = STATE(4103), + [sym_generic_type] = STATE(4103), + [sym_type_query] = STATE(4103), + [sym_index_type_query] = STATE(4103), + [sym_lookup_type] = STATE(4103), + [sym_literal_type] = STATE(4103), + [sym__number] = STATE(4109), + [sym_existential_type] = STATE(4103), + [sym_flow_maybe_type] = STATE(4103), + [sym_parenthesized_type] = STATE(4103), + [sym_predefined_type] = STATE(4103), + [sym_object_type] = STATE(4103), + [sym_type_parameters] = STATE(6775), + [sym_array_type] = STATE(4103), + [sym_tuple_type] = STATE(4103), + [sym_readonly_type] = STATE(4076), + [sym_union_type] = STATE(4103), + [sym_intersection_type] = STATE(4103), + [sym_function_type] = STATE(4076), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1379), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1339), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1377), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -213758,61 +213770,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1383), - [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_abstract] = ACTIONS(1387), - [anon_sym_infer] = ACTIONS(1389), - [anon_sym_keyof] = ACTIONS(1391), - [anon_sym_unique] = ACTIONS(1393), - [anon_sym_unknown] = ACTIONS(1395), - [anon_sym_never] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_number] = ACTIONS(1377), + [anon_sym_boolean] = ACTIONS(1377), + [anon_sym_string] = ACTIONS(1377), + [anon_sym_symbol] = ACTIONS(1377), + [anon_sym_object] = ACTIONS(1377), + [anon_sym_abstract] = ACTIONS(1369), + [anon_sym_infer] = ACTIONS(1371), + [anon_sym_keyof] = ACTIONS(1373), + [anon_sym_unique] = ACTIONS(1375), + [anon_sym_unknown] = ACTIONS(1377), + [anon_sym_never] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), [sym_html_comment] = ACTIONS(5), }, [1875] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1875), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1876] = { + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), + [sym_comment] = STATE(1876), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(1117), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1877] = { + [sym_export_statement] = STATE(4767), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(6535), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(6537), + [sym_string] = STATE(4056), + [sym_comment] = STATE(1877), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(6535), + [sym_method_definition] = STATE(6537), + [sym_pair] = STATE(6537), + [sym_pair_pattern] = STATE(6535), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4767), + [sym_accessibility_modifier] = STATE(3610), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4767), + [sym_property_signature] = STATE(4767), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4767), + [sym_index_signature] = STATE(4767), + [aux_sym_export_statement_repeat1] = STATE(5528), + [sym_identifier] = ACTIONS(4153), + [anon_sym_export] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_namespace] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_let] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_LT] = ACTIONS(1973), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_readonly] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4168), + [anon_sym_set] = ACTIONS(4168), + [anon_sym_declare] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4153), + [anon_sym_any] = ACTIONS(4153), + [anon_sym_number] = ACTIONS(4153), + [anon_sym_boolean] = ACTIONS(4153), + [anon_sym_string] = ACTIONS(4153), + [anon_sym_symbol] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4007), + [sym_html_comment] = ACTIONS(5), + }, + [1878] = { + [sym_export_statement] = STATE(4825), + [sym_object_pattern] = STATE(4155), + [sym_object_assignment_pattern] = STATE(6535), + [sym_array_pattern] = STATE(4155), + [sym__call_signature] = STATE(5011), + [sym__destructuring_pattern] = STATE(7205), + [sym_spread_element] = STATE(6537), + [sym_string] = STATE(4056), + [sym_comment] = STATE(1878), + [sym_decorator] = STATE(5599), + [sym_formal_parameters] = STATE(4119), + [sym_rest_pattern] = STATE(6535), + [sym_method_definition] = STATE(6537), + [sym_pair] = STATE(6537), + [sym_pair_pattern] = STATE(6535), + [sym__property_name] = STATE(3977), + [sym_computed_property_name] = STATE(4056), + [sym_method_signature] = STATE(4825), + [sym_accessibility_modifier] = STATE(3610), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4825), + [sym_property_signature] = STATE(4825), + [sym_type_parameters] = STATE(6380), + [sym_construct_signature] = STATE(4825), + [sym_index_signature] = STATE(4825), + [aux_sym_export_statement_repeat1] = STATE(5528), + [sym_identifier] = ACTIONS(4153), + [anon_sym_export] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_namespace] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_let] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_LT] = ACTIONS(1973), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_readonly] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4168), + [anon_sym_set] = ACTIONS(4168), + [anon_sym_declare] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4153), + [anon_sym_any] = ACTIONS(4153), + [anon_sym_number] = ACTIONS(4153), + [anon_sym_boolean] = ACTIONS(4153), + [anon_sym_string] = ACTIONS(4153), + [anon_sym_symbol] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4007), + [sym_html_comment] = ACTIONS(5), + }, + [1879] = { + [sym_nested_identifier] = STATE(2312), + [sym_string] = STATE(2309), + [sym_comment] = STATE(1879), + [sym__module] = STATE(2636), + [sym_identifier] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1880] = { + [sym_nested_identifier] = STATE(972), + [sym_string] = STATE(1053), + [sym_comment] = STATE(1880), + [sym__module] = STATE(1366), + [sym_identifier] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -213839,50 +214195,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(215), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1876] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), - [sym_comment] = STATE(1876), - [sym__module] = STATE(2634), + [1881] = { + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), + [sym_comment] = STATE(1881), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(1117), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -213909,254 +214264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1117), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1877] = { - [sym_export_statement] = STATE(4843), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(6537), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(6538), - [sym_string] = STATE(4102), - [sym_comment] = STATE(1877), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(6537), - [sym_method_definition] = STATE(6538), - [sym_pair] = STATE(6538), - [sym_pair_pattern] = STATE(6537), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4843), - [sym_accessibility_modifier] = STATE(3566), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4843), - [sym_property_signature] = STATE(4843), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4843), - [sym_index_signature] = STATE(4843), - [aux_sym_export_statement_repeat1] = STATE(5525), - [sym_identifier] = ACTIONS(4153), - [anon_sym_export] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4153), - [anon_sym_namespace] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4157), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_let] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_readonly] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4168), - [anon_sym_set] = ACTIONS(4168), - [anon_sym_declare] = ACTIONS(4153), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4153), - [anon_sym_any] = ACTIONS(4153), - [anon_sym_number] = ACTIONS(4153), - [anon_sym_boolean] = ACTIONS(4153), - [anon_sym_string] = ACTIONS(4153), - [anon_sym_symbol] = ACTIONS(4153), - [anon_sym_object] = ACTIONS(4153), - [anon_sym_abstract] = ACTIONS(4007), - [sym_html_comment] = ACTIONS(5), - }, - [1878] = { - [sym_export_statement] = STATE(4687), - [sym_object_pattern] = STATE(4286), - [sym_object_assignment_pattern] = STATE(6537), - [sym_array_pattern] = STATE(4286), - [sym__call_signature] = STATE(5009), - [sym__destructuring_pattern] = STATE(7199), - [sym_spread_element] = STATE(6538), - [sym_string] = STATE(4102), - [sym_comment] = STATE(1878), - [sym_decorator] = STATE(5596), - [sym_formal_parameters] = STATE(4128), - [sym_rest_pattern] = STATE(6537), - [sym_method_definition] = STATE(6538), - [sym_pair] = STATE(6538), - [sym_pair_pattern] = STATE(6537), - [sym__property_name] = STATE(3981), - [sym_computed_property_name] = STATE(4102), - [sym_method_signature] = STATE(4687), - [sym_accessibility_modifier] = STATE(3566), - [sym_override_modifier] = STATE(3630), - [sym_call_signature] = STATE(4687), - [sym_property_signature] = STATE(4687), - [sym_type_parameters] = STATE(6358), - [sym_construct_signature] = STATE(4687), - [sym_index_signature] = STATE(4687), - [aux_sym_export_statement_repeat1] = STATE(5525), - [sym_identifier] = ACTIONS(4153), - [anon_sym_export] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(4153), - [anon_sym_namespace] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(4157), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_let] = ACTIONS(4153), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3987), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_LT] = ACTIONS(1973), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3995), - [sym_private_property_identifier] = ACTIONS(3995), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_readonly] = ACTIONS(4166), - [anon_sym_get] = ACTIONS(4168), - [anon_sym_set] = ACTIONS(4168), - [anon_sym_declare] = ACTIONS(4153), - [anon_sym_public] = ACTIONS(4170), - [anon_sym_private] = ACTIONS(4170), - [anon_sym_protected] = ACTIONS(4170), - [anon_sym_override] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4153), - [anon_sym_any] = ACTIONS(4153), - [anon_sym_number] = ACTIONS(4153), - [anon_sym_boolean] = ACTIONS(4153), - [anon_sym_string] = ACTIONS(4153), - [anon_sym_symbol] = ACTIONS(4153), - [anon_sym_object] = ACTIONS(4153), - [anon_sym_abstract] = ACTIONS(4007), - [sym_html_comment] = ACTIONS(5), - }, - [1879] = { - [sym_nested_identifier] = STATE(1047), - [sym_string] = STATE(1381), - [sym_comment] = STATE(1879), - [sym__module] = STATE(1543), - [sym_identifier] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4111), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1880] = { - [sym_nested_identifier] = STATE(2301), - [sym_string] = STATE(2300), - [sym_comment] = STATE(1880), - [sym__module] = STATE(2449), + [1882] = { + [sym_nested_identifier] = STATE(2312), + [sym_string] = STATE(2309), + [sym_comment] = STATE(1882), + [sym__module] = STATE(2636), [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214184,115 +214332,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1881] = { - [sym_variable_declarator] = STATE(5381), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), - [sym_comment] = STATE(1881), - [sym_identifier] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1882] = { - [sym_nested_identifier] = STATE(970), - [sym_string] = STATE(976), - [sym_comment] = STATE(1882), - [sym__module] = STATE(1211), - [sym_identifier] = ACTIONS(4176), + [1883] = { + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), + [sym_comment] = STATE(1883), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4180), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214320,47 +214400,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1883] = { + [1884] = { [sym_nested_identifier] = STATE(325), - [sym_string] = STATE(324), - [sym_comment] = STATE(1883), - [sym__module] = STATE(394), + [sym_string] = STATE(327), + [sym_comment] = STATE(1884), + [sym__module] = STATE(366), [sym_identifier] = ACTIONS(4182), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), + [anon_sym_COLON] = ACTIONS(1205), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(4184), [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214388,115 +214468,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [1884] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), - [sym_comment] = STATE(1884), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1193), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1885] = { - [sym_nested_identifier] = STATE(357), - [sym_string] = STATE(367), + [sym_variable_declarator] = STATE(5383), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1885), - [sym__module] = STATE(462), - [sym_identifier] = ACTIONS(4113), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214524,47 +214536,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1886] = { - [sym_nested_identifier] = STATE(990), - [sym_string] = STATE(1086), + [sym_variable_declarator] = STATE(5559), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4175), [sym_comment] = STATE(1886), - [sym__module] = STATE(1431), [sym_identifier] = ACTIONS(4188), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4192), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214592,47 +214604,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1887] = { - [sym_variable_declarator] = STATE(5389), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), + [sym_nested_identifier] = STATE(2312), + [sym_string] = STATE(2309), [sym_comment] = STATE(1887), - [sym_identifier] = ACTIONS(4119), + [sym__module] = STATE(2636), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1199), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214660,47 +214672,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1888] = { - [sym_variable_declarator] = STATE(5582), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), + [sym_nested_identifier] = STATE(2312), + [sym_string] = STATE(2309), [sym_comment] = STATE(1888), - [sym_identifier] = ACTIONS(4119), + [sym__module] = STATE(2636), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_of] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214728,47 +214740,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1889] = { - [sym_nested_identifier] = STATE(2301), - [sym_string] = STATE(2300), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1889), - [sym__module] = STATE(2449), - [sym_identifier] = ACTIONS(4174), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(211), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(214), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(214), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214795,48 +214807,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1890] = { - [sym_nested_identifier] = STATE(984), - [sym_string] = STATE(1095), + [sym_variable_declarator] = STATE(5565), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1890), - [sym__module] = STATE(1481), - [sym_identifier] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4196), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214864,47 +214876,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1891] = { - [sym_nested_identifier] = STATE(2301), - [sym_string] = STATE(2300), + [sym_nested_identifier] = STATE(948), + [sym_string] = STATE(997), [sym_comment] = STATE(1891), - [sym__module] = STATE(2449), - [sym_identifier] = ACTIONS(4174), + [sym__module] = STATE(1174), + [sym_identifier] = ACTIONS(4190), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4192), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -214932,47 +214944,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1892] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(326), + [sym_string] = STATE(329), [sym_comment] = STATE(1892), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), + [sym__module] = STATE(387), + [sym_identifier] = ACTIONS(4196), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4200), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215000,47 +215012,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1893] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1893), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215068,47 +215081,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1894] = { - [sym_variable_declarator] = STATE(5556), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4285), + [sym_nested_identifier] = STATE(4880), + [sym_string] = STATE(5587), [sym_comment] = STATE(1894), - [sym_identifier] = ACTIONS(4200), + [sym__module] = STATE(6347), + [sym_identifier] = ACTIONS(4202), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_of] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215136,47 +215148,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1895] = { - [sym_nested_identifier] = STATE(317), - [sym_string] = STATE(318), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1895), - [sym__module] = STATE(360), - [sym_identifier] = ACTIONS(4202), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4204), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215204,47 +215216,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1896] = { - [sym_nested_identifier] = STATE(2301), - [sym_string] = STATE(2300), + [sym_nested_identifier] = STATE(1197), + [sym_string] = STATE(1317), [sym_comment] = STATE(1896), - [sym__module] = STATE(2449), - [sym_identifier] = ACTIONS(4174), + [sym__module] = STATE(1559), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215272,47 +215284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1897] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_variable_declarator] = STATE(5426), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1897), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215339,48 +215351,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(215), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1898] = { - [sym_nested_identifier] = STATE(296), - [sym_string] = STATE(294), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1898), - [sym__module] = STATE(312), - [sym_identifier] = ACTIONS(4208), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4210), - [anon_sym_SQUOTE] = ACTIONS(4212), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215408,47 +215421,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1899] = { - [sym_variable_declarator] = STATE(5562), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), + [sym_variable_declarator] = STATE(5585), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1899), - [sym_identifier] = ACTIONS(4119), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215476,47 +215488,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1900] = { - [sym_variable_declarator] = STATE(5421), - [sym_object_pattern] = STATE(4591), - [sym_array_pattern] = STATE(4591), - [sym__destructuring_pattern] = STATE(4481), + [sym_nested_identifier] = STATE(984), + [sym_string] = STATE(1068), [sym_comment] = STATE(1900), - [sym_identifier] = ACTIONS(4119), + [sym__module] = STATE(1471), + [sym_identifier] = ACTIONS(4204), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4208), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215544,47 +215556,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1901] = { - [sym_nested_identifier] = STATE(4878), - [sym_string] = STATE(5584), + [sym_nested_identifier] = STATE(350), + [sym_string] = STATE(349), [sym_comment] = STATE(1901), - [sym__module] = STATE(6342), - [sym_identifier] = ACTIONS(4214), + [sym__module] = STATE(434), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215612,48 +215624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1902] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_variable_declarator] = STATE(5391), + [sym_object_pattern] = STATE(4654), + [sym_array_pattern] = STATE(4654), + [sym__destructuring_pattern] = STATE(4506), [sym_comment] = STATE(1902), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4109), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(4111), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215681,47 +215692,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1903] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(295), + [sym_string] = STATE(302), [sym_comment] = STATE(1903), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), + [sym__module] = STATE(336), + [sym_identifier] = ACTIONS(4210), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(4212), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215749,46 +215760,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1904] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1904), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215816,44 +215827,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1905] = { [sym_comment] = STATE(1905), - [aux_sym_object_repeat1] = STATE(5732), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215880,47 +215892,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1906] = { [sym_comment] = STATE(1906), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), + [aux_sym_object_repeat1] = STATE(5844), + [aux_sym_object_pattern_repeat1] = STATE(5738), [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -215947,20 +215959,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1907] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1907), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1243), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), @@ -215971,25 +215983,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216017,45 +216029,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1908] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1908), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1252), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1261), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216083,45 +216096,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1909] = { + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1909), - [aux_sym_object_repeat1] = STATE(5839), - [aux_sym_object_pattern_repeat1] = STATE(5734), - [sym_identifier] = ACTIONS(4216), + [sym__module] = STATE(2627), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1269), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1275), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216135,7 +216148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -216148,49 +216161,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1910] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1910), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_RBRACK] = ACTIONS(214), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1203), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216218,45 +216230,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1911] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), [sym_comment] = STATE(1911), - [sym__module] = STATE(2634), - [sym_identifier] = ACTIONS(4151), + [aux_sym_object_repeat1] = STATE(5737), + [aux_sym_object_pattern_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1008), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1014), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_EQ_GT] = ACTIONS(1027), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216270,7 +216281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -216283,16 +216294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(1035), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__automatic_semicolon] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [1912] = { - [sym_nested_identifier] = STATE(2434), - [sym_string] = STATE(2315), + [sym_nested_identifier] = STATE(2415), + [sym_string] = STATE(2410), [sym_comment] = STATE(1912), - [sym__module] = STATE(2634), + [sym__module] = STATE(2627), [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1115), @@ -216306,25 +216318,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -216352,7 +216364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, }; @@ -216363,29 +216375,267 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(4121), 1, + sym_identifier, + ACTIONS(4123), 1, + anon_sym_DQUOTE, + ACTIONS(4125), 1, + anon_sym_SQUOTE, + STATE(349), 1, + sym_string, + STATE(350), 1, + sym_nested_identifier, + STATE(434), 1, + sym__module, + STATE(1913), 1, + sym_comment, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 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(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1035), 1, + anon_sym_QMARK, + ACTIONS(2756), 1, + anon_sym_RBRACE, + ACTIONS(2769), 1, + anon_sym_COLON, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4220), 1, anon_sym_EQ, - ACTIONS(4119), 1, + ACTIONS(4224), 1, + anon_sym_LPAREN, + ACTIONS(4227), 1, + anon_sym_EQ_GT, + ACTIONS(4231), 1, + anon_sym_LT, + STATE(1914), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4229), 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(4222), 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(4218), 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, + [188] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(4194), 1, + anon_sym_SQUOTE, + STATE(948), 1, + sym_nested_identifier, + STATE(997), 1, + sym_string, + STATE(1174), 1, + sym__module, + STATE(1915), 1, + sym_comment, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 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(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [281] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - STATE(1913), 1, + STATE(1916), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5562), 1, + STATE(5426), 1, sym_variable_declarator, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216437,34 +216687,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93] = 15, + [374] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4204), 1, + sym_identifier, + ACTIONS(4206), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(4208), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + STATE(984), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_string, + STATE(1471), 1, + sym__module, + STATE(1917), 1, + sym_comment, + ACTIONS(209), 2, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, + ACTIONS(159), 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(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [467] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(1269), 1, - anon_sym_COLON, - ACTIONS(4151), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4182), 1, sym_identifier, - STATE(1914), 1, - sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, + ACTIONS(4184), 1, + anon_sym_DQUOTE, + ACTIONS(4186), 1, + anon_sym_SQUOTE, + STATE(325), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(327), 1, + sym_string, + STATE(366), 1, sym__module, - ACTIONS(160), 15, + STATE(1918), 1, + sym_comment, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216486,8 +216814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216517,33 +216845,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [188] = 14, + [560] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4194), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4115), 1, sym_identifier, - ACTIONS(4196), 1, + ACTIONS(4117), 1, anon_sym_DQUOTE, - ACTIONS(4198), 1, + ACTIONS(4119), 1, anon_sym_SQUOTE, - STATE(984), 1, + STATE(1197), 1, sym_nested_identifier, - STATE(1095), 1, + STATE(1317), 1, sym_string, - STATE(1481), 1, + STATE(1559), 1, sym__module, - STATE(1915), 1, + STATE(1919), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216596,14 +216924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [281] = 5, + [653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1916), 1, + STATE(1920), 1, sym_comment, - ACTIONS(4218), 23, + ACTIONS(4234), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216627,7 +216955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4220), 38, + ACTIONS(4236), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216666,16 +216994,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [356] = 5, + [728] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1035), 1, + anon_sym_QMARK, + ACTIONS(2769), 1, + anon_sym_COLON, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1917), 1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(4224), 1, + anon_sym_LPAREN, + ACTIONS(4227), 1, + anon_sym_EQ_GT, + ACTIONS(4231), 1, + anon_sym_LT, + STATE(1921), 1, sym_comment, - ACTIONS(4222), 23, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4229), 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(4222), 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(4218), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216692,25 +217071,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_QMARK, - ACTIONS(4224), 38, + [823] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(1261), 1, + anon_sym_EQ_GT, + ACTIONS(1281), 1, + anon_sym_EQ, + ACTIONS(1283), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4151), 1, + sym_identifier, + STATE(1922), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216726,24 +217117,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [431] = 5, + [918] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1918), 1, + STATE(1923), 1, sym_comment, - ACTIONS(4226), 23, + ACTIONS(4238), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216767,7 +217185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4228), 38, + ACTIONS(4240), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -216806,33 +217224,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [506] = 14, + [993] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4176), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4196), 1, sym_identifier, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_DQUOTE, - ACTIONS(4180), 1, + ACTIONS(4200), 1, anon_sym_SQUOTE, - STATE(970), 1, + STATE(326), 1, sym_nested_identifier, - STATE(976), 1, + STATE(329), 1, sym_string, - STATE(1211), 1, + STATE(387), 1, sym__module, - STATE(1919), 1, + STATE(1924), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216885,32 +217303,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [599] = 15, + [1086] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(958), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(985), 1, - anon_sym_QMARK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, + ACTIONS(1295), 1, anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - STATE(1920), 1, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + STATE(1925), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2780), 15, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5585), 1, + sym_variable_declarator, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216926,29 +217346,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(210), 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(118), 20, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -216962,17 +217369,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [694] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1921), 1, + STATE(1926), 1, sym_comment, - ACTIONS(4230), 23, + ACTIONS(4242), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216996,7 +217413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4232), 38, + ACTIONS(4244), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217035,34 +217452,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [769] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1254] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1008), 1, anon_sym_EQ, - ACTIONS(4119), 1, - sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - STATE(1922), 1, + ACTIONS(1035), 1, + anon_sym_QMARK, + ACTIONS(2756), 1, + anon_sym_RBRACE, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2769), 1, + anon_sym_COLON, + ACTIONS(2778), 1, + anon_sym_EQ_GT, + ACTIONS(2782), 1, + anon_sym_LT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1927), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5421), 1, - sym_variable_declarator, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217078,16 +217493,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(209), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_GT, + 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(118), 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, @@ -217101,46 +217529,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1349] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(4252), 1, + anon_sym_DOT, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_QMARK_DOT, + ACTIONS(4260), 1, anon_sym_LT, + STATE(1928), 1, + sym_comment, + STATE(3963), 1, + sym_arguments, + STATE(4085), 1, + sym_type_arguments, + ACTIONS(4258), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4248), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4222), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [862] = 14, + ACTIONS(4229), 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(4218), 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, + [1446] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(4192), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - STATE(990), 1, + ACTIONS(4262), 1, + sym_identifier, + STATE(1929), 1, + sym_comment, + STATE(4382), 1, sym_nested_identifier, - STATE(1086), 1, + STATE(4592), 1, sym_string, - STATE(1431), 1, + STATE(4991), 1, sym__module, - STATE(1923), 1, - sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217193,33 +217692,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [955] = 14, + [1539] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4202), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4204), 1, - anon_sym_DQUOTE, - ACTIONS(4206), 1, - anon_sym_SQUOTE, - STATE(317), 1, - sym_nested_identifier, - STATE(318), 1, - sym_string, - STATE(360), 1, - sym__module, - STATE(1924), 1, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + STATE(1930), 1, sym_comment, - ACTIONS(210), 2, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5471), 1, + sym_variable_declarator, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217235,14 +217735,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217272,14 +217771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1048] = 5, + [1632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1925), 1, + STATE(1931), 1, sym_comment, - ACTIONS(4234), 23, + ACTIONS(4264), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217303,7 +217802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4236), 38, + ACTIONS(4266), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217342,175 +217841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1123] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_LPAREN, - ACTIONS(4248), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_QMARK_DOT, - ACTIONS(4258), 1, - anon_sym_LT, - STATE(1926), 1, - sym_comment, - STATE(3961), 1, - sym_arguments, - STATE(4080), 1, - sym_type_arguments, - ACTIONS(4256), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4244), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4242), 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(4254), 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(4238), 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, - [1220] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(958), 1, - anon_sym_EQ, - ACTIONS(985), 1, - anon_sym_QMARK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - STATE(1927), 1, - sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2780), 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(210), 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(118), 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, - [1315] = 5, + [1707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1928), 1, + STATE(1932), 1, sym_comment, - ACTIONS(4260), 23, + ACTIONS(4268), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217534,7 +217872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4262), 38, + ACTIONS(4270), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -217573,34 +217911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1390] = 15, + [1782] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4202), 1, sym_identifier, - STATE(1929), 1, + STATE(1933), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, + STATE(4880), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(5587), 1, + sym_string, + STATE(6347), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217622,8 +217959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217653,33 +217990,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1485] = 14, + [1875] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, ACTIONS(4107), 1, sym_identifier, ACTIONS(4109), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, ACTIONS(4111), 1, - anon_sym_SQUOTE, - STATE(1047), 1, - sym_nested_identifier, - STATE(1381), 1, - sym_string, - STATE(1543), 1, - sym__module, - STATE(1930), 1, + anon_sym_LBRACK, + STATE(1934), 1, sym_comment, - ACTIONS(210), 2, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5383), 1, + sym_variable_declarator, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217695,14 +218033,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -217732,33 +218069,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1578] = 14, + [1968] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(1965), 1, + ACTIONS(67), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(69), 1, anon_sym_SQUOTE, - ACTIONS(4214), 1, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4174), 1, sym_identifier, - STATE(1931), 1, + STATE(1935), 1, sym_comment, - STATE(4878), 1, - sym_nested_identifier, - STATE(5584), 1, + STATE(2309), 1, sym_string, - STATE(6342), 1, + STATE(2312), 1, + sym_nested_identifier, + STATE(2636), 1, sym__module, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217811,34 +218148,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1671] = 14, + [2061] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4119), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - STATE(1932), 1, + STATE(1936), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5389), 1, + STATE(5391), 1, sym_variable_declarator, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217890,59 +218227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1764] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2154] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, - anon_sym_DQUOTE, - ACTIONS(4186), 1, - anon_sym_SQUOTE, - STATE(324), 1, - sym_string, - STATE(325), 1, - sym_nested_identifier, - STATE(394), 1, - sym__module, - STATE(1933), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1937), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 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(118), 36, + ACTIONS(4272), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -217957,45 +218254,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4274), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1857] = 14, + anon_sym_implements, + [2229] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(1115), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1295), 1, anon_sym_EQ_GT, - ACTIONS(4151), 1, + ACTIONS(4210), 1, sym_identifier, - STATE(1934), 1, - sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, + ACTIONS(4212), 1, + anon_sym_DQUOTE, + ACTIONS(4214), 1, + anon_sym_SQUOTE, + STATE(295), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(302), 1, + sym_string, + STATE(336), 1, sym__module, - ACTIONS(210), 2, + STATE(1938), 1, + sym_comment, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218048,15 +218376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1950] = 15, + [2322] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(958), 1, + ACTIONS(1008), 1, anon_sym_EQ, - ACTIONS(985), 1, + ACTIONS(1035), 1, anon_sym_QMARK, - ACTIONS(2756), 1, - anon_sym_RBRACE, ACTIONS(2766), 1, anon_sym_LPAREN, ACTIONS(2769), 1, @@ -218067,11 +218393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1935), 1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + STATE(1939), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -218089,7 +218417,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(210), 17, + ACTIONS(209), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -218128,33 +218456,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2045] = 14, + [2417] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4113), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4115), 1, + ACTIONS(4178), 1, anon_sym_DQUOTE, - ACTIONS(4117), 1, + ACTIONS(4180), 1, anon_sym_SQUOTE, - STATE(357), 1, + STATE(972), 1, sym_nested_identifier, - STATE(367), 1, + STATE(1053), 1, sym_string, - STATE(462), 1, + STATE(1366), 1, sym__module, - STATE(1936), 1, + STATE(1940), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218207,33 +218535,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2138] = 14, + [2510] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, + ACTIONS(124), 1, + anon_sym_COMMA, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(69), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(214), 1, + anon_sym_RBRACK, + ACTIONS(1252), 1, anon_sym_EQ, - ACTIONS(4174), 1, + ACTIONS(1261), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, sym_identifier, - STATE(1937), 1, + STATE(1941), 1, sym_comment, - STATE(2300), 1, + STATE(2410), 1, sym_string, - STATE(2301), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2449), 1, + STATE(2627), 1, sym__module, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218249,13 +218580,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -218286,32 +218616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2231] = 15, + [2607] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(985), 1, + ACTIONS(1008), 1, + anon_sym_EQ, + ACTIONS(1035), 1, anon_sym_QMARK, + ACTIONS(2766), 1, + anon_sym_LPAREN, ACTIONS(2769), 1, anon_sym_COLON, + ACTIONS(2778), 1, + anon_sym_EQ_GT, + ACTIONS(2782), 1, + anon_sym_LT, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2799), 1, anon_sym_RBRACE, - ACTIONS(4264), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_LPAREN, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4271), 1, - anon_sym_LT, - STATE(1938), 1, + STATE(1942), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(4254), 15, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218327,7 +218657,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(4242), 17, + ACTIONS(209), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -218345,7 +218675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218366,34 +218696,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2326] = 14, + [2702] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(4119), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - STATE(1939), 1, + STATE(1943), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5582), 1, - sym_variable_declarator, - ACTIONS(210), 2, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218409,13 +218738,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(118), 35, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218445,36 +218775,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2419] = 16, + [2795] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(209), 1, sym__ternary_qmark, - ACTIONS(215), 1, - anon_sym_COMMA, - ACTIONS(1250), 1, - anon_sym_EQ, - ACTIONS(1259), 1, + ACTIONS(1257), 1, + anon_sym_COLON, + ACTIONS(1261), 1, anon_sym_EQ_GT, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(4151), 1, sym_identifier, - STATE(1940), 1, + STATE(1944), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218490,13 +218818,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(118), 35, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218526,59 +218855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2516] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2890] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(4119), 1, - sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - STATE(1941), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1945), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5468), 1, - sym_variable_declarator, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 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(118), 35, + ACTIONS(4276), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218593,44 +218882,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4278), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2609] = 15, + anon_sym_implements, + [2965] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(985), 1, + ACTIONS(1035), 1, anon_sym_QMARK, - ACTIONS(2756), 1, - anon_sym_RBRACE, ACTIONS(2769), 1, anon_sym_COLON, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(2799), 1, + anon_sym_RBRACE, + ACTIONS(4220), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4224), 1, anon_sym_LPAREN, - ACTIONS(4269), 1, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4271), 1, + ACTIONS(4231), 1, anon_sym_LT, - STATE(1942), 1, + STATE(1946), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(4254), 15, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218646,7 +218966,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(4242), 17, + ACTIONS(4222), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -218664,7 +218984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(4218), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218685,34 +219005,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2704] = 14, + [3060] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4119), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - STATE(1943), 1, + STATE(1947), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5381), 1, + STATE(5565), 1, sym_variable_declarator, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218764,33 +219084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2797] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [3153] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_DQUOTE, - ACTIONS(4212), 1, - anon_sym_SQUOTE, - STATE(294), 1, - sym_string, - STATE(296), 1, - sym_nested_identifier, - STATE(312), 1, - sym__module, - STATE(1944), 1, + STATE(1948), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218806,17 +219109,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(118), 36, + ACTIONS(4218), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218831,44 +219128,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4222), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2890] = 15, + anon_sym_implements, + [3231] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(985), 1, - anon_sym_QMARK, - ACTIONS(2769), 1, - anon_sym_COLON, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(4264), 1, + STATE(1949), 1, + sym_comment, + ACTIONS(3205), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_LPAREN, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4271), 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, - STATE(1945), 1, - sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4254), 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3207), 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, @@ -218884,15 +219214,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4242), 17, + 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, + [3305] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_EQ_GT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + STATE(1950), 1, + sym_comment, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 14, sym__automatic_semicolon, 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -218902,11 +219270,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(4229), 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(4218), 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, + [3401] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4296), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, + anon_sym_DOT, + STATE(1951), 1, + sym_comment, + STATE(2027), 1, + sym_arguments, + STATE(6841), 1, + sym_type_arguments, + ACTIONS(4294), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [3483] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1261), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, + sym_identifier, + STATE(1952), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 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(118), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218920,22 +219442,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [2985] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3575] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1946), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1261), 1, + anon_sym_EQ_GT, + ACTIONS(1281), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1953), 1, sym_comment, - ACTIONS(4274), 23, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 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(118), 36, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -218950,24 +219521,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(4276), 38, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3667] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, sym__ternary_qmark, + ACTIONS(1301), 1, + anon_sym_EQ_GT, + ACTIONS(1307), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1954), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 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(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3759] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1301), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, + sym_identifier, + STATE(1955), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218983,43 +219652,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [3060] = 14, + [3851] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(1991), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(4278), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1299), 1, + anon_sym_EQ_GT, + ACTIONS(1321), 1, + anon_sym_EQ, + ACTIONS(4151), 1, sym_identifier, - STATE(1947), 1, + STATE(1956), 1, sym_comment, - STATE(4357), 1, - sym_nested_identifier, - STATE(4587), 1, + STATE(2410), 1, sym_string, - STATE(4991), 1, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, sym__module, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219041,7 +219736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -219072,43 +219767,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3153] = 16, + [3943] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4280), 1, + ACTIONS(4246), 1, anon_sym_EQ, - ACTIONS(4282), 1, - anon_sym_LPAREN, + ACTIONS(4254), 1, + anon_sym_EQ_GT, ACTIONS(4284), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - STATE(1948), 1, + STATE(1957), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4244), 3, + ACTIONS(4248), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4256), 3, + ACTIONS(4258), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 14, - sym__automatic_semicolon, + ACTIONS(4222), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219118,7 +219813,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 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(4218), 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, + [4039] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_COLON, + ACTIONS(4151), 1, + sym_identifier, + STATE(1958), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219134,32 +219890,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(4238), 17, + ACTIONS(118), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [3249] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1949), 1, + STATE(1959), 1, sym_comment, - ACTIONS(3207), 22, + ACTIONS(3163), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -219182,7 +219956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3209), 38, + ACTIONS(3165), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -219221,32 +219995,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3323] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4207] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(1259), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4254), 1, anon_sym_EQ_GT, - ACTIONS(1267), 1, + ACTIONS(4300), 1, anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1950), 1, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LT, + STATE(1960), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + STATE(4093), 1, + sym_type_arguments, + ACTIONS(4303), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4315), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4307), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4222), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219262,69 +220055,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4218), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3415] = 14, + [4301] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(1299), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1319), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1115), 1, anon_sym_EQ, + ACTIONS(1233), 1, + anon_sym_in, + ACTIONS(1236), 1, + anon_sym_of, ACTIONS(4151), 1, sym_identifier, - STATE(1951), 1, + STATE(1961), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219340,13 +220119,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(118), 36, + ACTIONS(118), 34, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -219377,36 +220154,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3507] = 16, + [4397] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4227), 1, + anon_sym_EQ_GT, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(1962), 1, + sym_comment, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 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(4229), 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(4218), 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, + [4493] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(209), 1, sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1209), 1, - anon_sym_in, - ACTIONS(1212), 1, - anon_sym_of, + ACTIONS(1299), 1, + anon_sym_EQ_GT, ACTIONS(4151), 1, sym_identifier, - STATE(1952), 1, + STATE(1963), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219422,11 +220275,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(118), 34, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -219457,40 +220312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3603] = 18, + [4585] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4254), 1, anon_sym_EQ_GT, - ACTIONS(4290), 1, + ACTIONS(4300), 1, anon_sym_EQ, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4299), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4309), 1, anon_sym_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4311), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4314), 1, - anon_sym_extends, - STATE(1953), 1, + STATE(1964), 1, sym_comment, - STATE(3823), 1, + STATE(3867), 1, sym_type_arguments, - STATE(6856), 1, + STATE(6861), 1, sym_type_annotation, - ACTIONS(4293), 2, + ACTIONS(4303), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4305), 2, + ACTIONS(4315), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 13, + ACTIONS(4222), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -219504,7 +220359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219520,7 +220375,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(4238), 18, + ACTIONS(4218), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219539,32 +220394,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3703] = 14, + [4685] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, sym__ternary_qmark, - ACTIONS(1115), 1, + ACTIONS(1397), 1, anon_sym_EQ, - ACTIONS(1259), 1, - anon_sym_EQ_GT, ACTIONS(4151), 1, sym_identifier, - STATE(1954), 1, + STATE(1965), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219580,14 +220435,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219617,32 +220471,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3795] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4776] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1311), 1, + ACTIONS(1117), 1, + anon_sym_QMARK, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - ACTIONS(4151), 1, - sym_identifier, - STATE(1955), 1, + STATE(1966), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(4334), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(209), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219658,17 +220522,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(118), 36, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -219683,55 +220541,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3887] = 16, + [4859] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4303), 1, + anon_sym_RPAREN, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4328), 1, anon_sym_LT, - STATE(1956), 1, + ACTIONS(4338), 1, + anon_sym_EQ, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_QMARK, + STATE(1967), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4244), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, + ACTIONS(4315), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 14, + ACTIONS(4341), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4222), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219741,7 +220589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219757,10 +220605,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(4238), 17, + ACTIONS(4218), 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, @@ -219775,32 +220624,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3983] = 14, + [4956] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, sym__ternary_qmark, - ACTIONS(1305), 1, + ACTIONS(1387), 1, anon_sym_EQ, - ACTIONS(1311), 1, - anon_sym_EQ_GT, ACTIONS(4151), 1, sym_identifier, - STATE(1957), 1, + STATE(1968), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219816,13 +220665,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -219853,16 +220701,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4075] = 7, + [5047] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4280), 1, anon_sym_EQ, - STATE(1958), 1, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4352), 1, + anon_sym_QMARK, + STATE(1969), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4348), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4222), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219878,7 +220752,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219900,67 +220774,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4242), 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, - [4153] = 16, + [5130] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, ACTIONS(4284), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4320), 1, + ACTIONS(4344), 1, anon_sym_EQ_GT, - STATE(1959), 1, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(1970), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4244), 3, + ACTIONS(4248), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4256), 3, + ACTIONS(4258), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 14, - sym__automatic_semicolon, + ACTIONS(4222), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -219970,7 +220819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219986,7 +220835,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(4238), 17, + ACTIONS(4218), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220004,34 +220853,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4249] = 15, + [5225] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1115), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1395), 1, anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_COLON, ACTIONS(4151), 1, sym_identifier, - STATE(1960), 1, + STATE(1971), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220083,32 +220930,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4343] = 14, + [5316] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, sym__ternary_qmark, - ACTIONS(1115), 1, + ACTIONS(1385), 1, anon_sym_EQ, - ACTIONS(1299), 1, - anon_sym_EQ_GT, ACTIONS(4151), 1, sym_identifier, - STATE(1961), 1, + STATE(1972), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220124,13 +220971,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(118), 36, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -220161,19 +221007,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4435] = 5, + [5407] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1962), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1329), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1973), 1, sym_comment, - ACTIONS(3213), 22, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 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(118), 35, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -220188,23 +221072,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3215), 38, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5498] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, sym__ternary_qmark, + ACTIONS(1389), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1974), 1, + sym_comment, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 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(118), 35, + anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5589] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1233), 1, + anon_sym_in, + ACTIONS(1236), 1, + anon_sym_of, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_comment, + STATE(6746), 1, + sym__destructuring_pattern, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220220,50 +221205,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(118), 33, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + 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_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [4509] = 15, + [5682] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(115), 1, + anon_sym_EQ, + ACTIONS(124), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - ACTIONS(4290), 1, - anon_sym_EQ, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4322), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_LT, - STATE(1963), 1, + STATE(1976), 1, sym_comment, - STATE(4055), 1, - sym_type_arguments, - ACTIONS(4293), 2, + ACTIONS(4361), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4305), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4314), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4242), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(209), 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, @@ -220274,7 +221274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220290,7 +221290,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(4238), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220300,42 +221300,64 @@ 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, - [4603] = 14, + [5765] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4318), 1, + ACTIONS(4363), 1, anon_sym_EQ, - ACTIONS(4320), 1, + ACTIONS(4365), 1, anon_sym_EQ_GT, - STATE(1964), 1, + STATE(1977), 1, sym_comment, - STATE(3823), 1, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4299), 2, + ACTIONS(4248), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4305), 3, + anon_sym_extends, + ACTIONS(4258), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4254), 15, + ACTIONS(4222), 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, + anon_sym_satisfies, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220351,24 +221373,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(4242), 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(4238), 17, + ACTIONS(4218), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220386,42 +221391,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4694] = 10, + [5860] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(212), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - STATE(1965), 1, + STATE(1978), 1, sym_comment, - ACTIONS(4328), 5, + ACTIONS(4234), 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(4236), 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_RBRACK, - ACTIONS(210), 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, - 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220437,8 +221449,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(118), 21, + 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, + [5933] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1979), 1, + sym_comment, + ACTIONS(4238), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -220459,32 +221489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4777] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, + ACTIONS(4240), 37, sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1966), 1, - sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + 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, @@ -220500,78 +221517,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4868] = 16, + anon_sym_implements, + [6006] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4254), 1, + anon_sym_EQ_GT, ACTIONS(4284), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_EQ_GT, - STATE(1967), 1, + STATE(1980), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4244), 3, + ACTIONS(4258), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4248), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 13, - sym__automatic_semicolon, + ACTIONS(4222), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220581,7 +221571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220597,10 +221587,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(4238), 17, + ACTIONS(4218), 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, @@ -220615,33 +221606,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4963] = 14, + [6101] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4288), 1, anon_sym_EQ_GT, - ACTIONS(4302), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - STATE(1968), 1, + STATE(1981), 1, + sym_comment, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 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(4222), 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(4218), 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, + [6192] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4346), 1, + anon_sym_QMARK, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + STATE(1982), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4299), 2, + ACTIONS(4370), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4305), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4254), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220657,76 +221734,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(4242), 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, - 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(4238), 17, + ACTIONS(4218), 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, - [5054] = 17, + [6275] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(4299), 1, + ACTIONS(4372), 1, anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4342), 1, + ACTIONS(4375), 1, anon_sym_EQ_GT, - ACTIONS(4344), 1, - anon_sym_QMARK, - STATE(1969), 1, + STATE(1983), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4305), 2, + ACTIONS(4377), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4339), 2, + ACTIONS(2063), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4242), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(209), 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, @@ -220737,7 +221794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220753,7 +221810,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(4238), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220769,35 +221826,36 @@ 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, - [5151] = 14, + [6360] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1341), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1383), 1, anon_sym_EQ, ACTIONS(4151), 1, sym_identifier, - STATE(1970), 1, + STATE(1984), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220849,111 +221907,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5242] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4348), 1, - anon_sym_LPAREN, - ACTIONS(4350), 1, - anon_sym_DOT, - STATE(1971), 1, - sym_comment, - STATE(2021), 1, - sym_arguments, - ACTIONS(4346), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5319] = 16, + [6451] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, ACTIONS(4284), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4352), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(4344), 1, anon_sym_EQ_GT, - STATE(1972), 1, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(1985), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4244), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, + ACTIONS(4258), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 13, + ACTIONS(4248), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4222), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -220963,8 +221951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220980,10 +221967,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(4238), 17, + ACTIONS(4218), 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, @@ -220998,32 +221986,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5414] = 14, + [6546] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1345), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1391), 1, anon_sym_EQ, ACTIONS(4151), 1, sym_identifier, - STATE(1973), 1, + STATE(1986), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221075,22 +222063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5505] = 8, + [6637] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4358), 1, - anon_sym_class, - ACTIONS(4361), 1, + ACTIONS(4382), 1, anon_sym_AT, - STATE(1974), 1, + STATE(2057), 1, + sym_decorator, + STATE(1987), 2, sym_comment, - STATE(1987), 1, aux_sym_export_statement_repeat1, - STATE(2040), 1, - sym_decorator, - ACTIONS(4356), 55, + ACTIONS(4380), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221106,6 +222091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -221146,42 +222132,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [5584] = 16, + [6712] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4342), 1, + ACTIONS(4346), 1, + anon_sym_QMARK, + ACTIONS(4350), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, + ACTIONS(4367), 1, anon_sym_EQ, - STATE(1975), 1, + ACTIONS(4385), 1, + anon_sym_RPAREN, + STATE(1988), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4244), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, + ACTIONS(4315), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 13, + ACTIONS(4370), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4222), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -221191,7 +222177,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 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(4218), 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, + [6809] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + STATE(1989), 1, + sym_comment, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221207,7 +222254,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(4238), 17, + ACTIONS(4222), 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, + 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(4218), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221225,32 +222289,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5679] = 14, + [6900] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1329), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1381), 1, anon_sym_EQ, ACTIONS(4151), 1, sym_identifier, - STATE(1976), 1, + STATE(1990), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221302,32 +222366,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5770] = 10, + [6991] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(4366), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4390), 1, anon_sym_EQ_GT, - STATE(1977), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4369), 5, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4242), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 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, @@ -221337,7 +222410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + anon_sym_implements, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221353,54 +222427,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(4238), 21, + ACTIONS(4218), 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, - [5853] = 14, + [7086] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(146), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(1347), 1, + ACTIONS(209), 1, + sym__ternary_qmark, + ACTIONS(1393), 1, anon_sym_EQ, ACTIONS(4151), 1, sym_identifier, - STATE(1978), 1, + STATE(1992), 1, sym_comment, - STATE(2315), 1, + STATE(2410), 1, sym_string, - STATE(2434), 1, + STATE(2415), 1, sym_nested_identifier, - STATE(2634), 1, + STATE(2627), 1, sym__module, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221452,35 +222522,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5944] = 15, + [7177] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, anon_sym_EQ_GT, + ACTIONS(209), 1, + sym__ternary_qmark, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1209), 1, - anon_sym_in, - ACTIONS(1212), 1, - anon_sym_of, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4373), 1, + ACTIONS(4151), 1, sym_identifier, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(1979), 1, + STATE(1993), 1, sym_comment, - STATE(6742), 1, - sym__destructuring_pattern, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + STATE(2410), 1, + sym_string, + STATE(2415), 1, + sym_nested_identifier, + STATE(2627), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221496,11 +222563,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(118), 33, + ACTIONS(118), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -221530,51 +222599,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6037] = 16, + [7268] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4382), 1, + anon_sym_AT, + ACTIONS(4392), 1, + anon_sym_class, + STATE(1987), 1, + aux_sym_export_statement_repeat1, + STATE(1994), 1, + sym_comment, + STATE(2057), 1, + sym_decorator, + ACTIONS(4380), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_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, + [7347] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4321), 1, + anon_sym_EQ, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4328), 1, anon_sym_LT, - STATE(1980), 1, + STATE(1995), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4256), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4244), 4, + ACTIONS(4309), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4242), 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(4254), 15, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221590,53 +222712,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(4238), 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, - [6132] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4381), 1, - anon_sym_EQ_GT, - STATE(1981), 1, - sym_comment, - ACTIONS(4383), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 6, + ACTIONS(4222), 16, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(210), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -221647,27 +222729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 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(118), 19, + ACTIONS(4218), 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, @@ -221679,36 +222744,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, - [6217] = 14, + [7438] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(1027), 1, anon_sym_EQ_GT, - ACTIONS(1331), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1197), 1, + anon_sym_COLON, + ACTIONS(4395), 1, sym_identifier, - STATE(1982), 1, + STATE(1996), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221724,12 +222781,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(118), 35, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -221760,33 +222819,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6308] = 14, + [7520] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - STATE(1983), 1, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + STATE(1997), 1, sym_comment, - STATE(3823), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4299), 2, + ACTIONS(4309), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4305), 3, + ACTIONS(4315), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4254), 15, + ACTIONS(4222), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221802,24 +222877,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(4242), 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, - anon_sym_satisfies, - ACTIONS(4238), 17, + ACTIONS(4218), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221837,32 +222895,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6399] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [7610] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1333), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4397), 1, anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1984), 1, + ACTIONS(4399), 1, + anon_sym_EQ_GT, + STATE(1998), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 12, + sym__ternary_qmark, + anon_sym_as, + 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221878,68 +222955,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(118), 35, + ACTIONS(4218), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [6490] = 14, + [7704] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(1027), 1, anon_sym_EQ_GT, - ACTIONS(1337), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1195), 1, + anon_sym_COLON, + ACTIONS(4216), 1, sym_identifier, - STATE(1985), 1, + STATE(1999), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221955,12 +223007,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(118), 35, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -221991,41 +223045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6581] = 17, + [7786] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, + ACTIONS(4309), 1, anon_sym_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(4366), 1, + ACTIONS(4363), 1, anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4365), 1, anon_sym_EQ_GT, - ACTIONS(4386), 1, - anon_sym_RPAREN, - STATE(1986), 1, + STATE(2000), 1, sym_comment, - STATE(3823), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4305), 2, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4315), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4369), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4242), 13, + ACTIONS(4222), 15, + sym__automatic_semicolon, 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, @@ -222036,7 +223087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222052,11 +223103,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(4238), 18, + ACTIONS(4218), 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, @@ -222071,101 +223121,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6678] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4361), 1, - anon_sym_AT, - STATE(2040), 1, - sym_decorator, - STATE(1987), 2, - sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4356), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_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, - [6753] = 10, + [7876] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4254), 1, anon_sym_EQ_GT, - STATE(1988), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + STATE(2001), 1, sym_comment, - ACTIONS(4389), 5, - anon_sym_COMMA, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4258), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4248), 3, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(210), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4222), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -222175,70 +223164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 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(118), 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, - [6836] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1989), 1, - sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222254,62 +223180,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(118), 35, + ACTIONS(4218), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [6927] = 10, + [7970] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4393), 1, + ACTIONS(4346), 1, anon_sym_QMARK, - STATE(1990), 1, + ACTIONS(4367), 1, + anon_sym_EQ, + STATE(2002), 1, sym_comment, - ACTIONS(4391), 5, + ACTIONS(4370), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222325,7 +223232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222341,38 +223248,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(4238), 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, - [7010] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(1991), 1, - sym_comment, - ACTIONS(4226), 22, + ACTIONS(4218), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -222393,70 +223270,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4228), 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, - [7083] = 14, + [8050] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(1027), 1, anon_sym_EQ_GT, - ACTIONS(1335), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(1201), 1, + anon_sym_COLON, + ACTIONS(4401), 1, sym_identifier, - STATE(1992), 1, + STATE(2003), 1, sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222472,12 +223304,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(118), 35, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -222508,16 +223342,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7174] = 5, + [8132] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(1993), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + ACTIONS(4348), 1, + anon_sym_COLON, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + STATE(2004), 1, sym_comment, - ACTIONS(4230), 22, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4315), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4307), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4222), 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(4229), 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(4218), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -222526,46 +223410,50 @@ 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(4232), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [8224] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4284), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4286), 1, anon_sym_DOT, + ACTIONS(4290), 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, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4403), 1, + anon_sym_EQ, + ACTIONS(4405), 1, + anon_sym_EQ_GT, + STATE(2005), 1, + sym_comment, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -222575,33 +223463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [7247] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1339), 1, - anon_sym_EQ, - ACTIONS(4151), 1, - sym_identifier, - STATE(1994), 1, - sym_comment, - STATE(2315), 1, - sym_string, - STATE(2434), 1, - sym_nested_identifier, - STATE(2634), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222617,77 +223479,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4218), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7338] = 16, + [8318] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(115), 1, + anon_sym_EQ, + ACTIONS(124), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, - anon_sym_LT, - ACTIONS(4342), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_EQ, - STATE(1995), 1, + ACTIONS(4372), 1, + anon_sym_LBRACK, + STATE(2006), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4256), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4244), 3, + ACTIONS(2063), 2, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4242), 13, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4361), 2, anon_sym_COMMA, anon_sym_COLON, + ACTIONS(4377), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(209), 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, @@ -222697,7 +223536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222713,7 +223552,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(4238), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222729,52 +223568,31 @@ 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, - [7433] = 14, + [8406] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1211), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4352), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(1996), 1, + STATE(2007), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4299), 2, + ACTIONS(4372), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4305), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 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(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222790,7 +223608,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(4238), 17, + ACTIONS(209), 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(118), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222805,17 +223641,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, - [7523] = 4, + [8490] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1997), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4395), 58, + ACTIONS(3373), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222825,11 +223662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_class, @@ -222837,7 +223675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -222874,49 +223711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7593] = 14, + [8560] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ, - ACTIONS(4334), 1, + ACTIONS(1027), 1, anon_sym_EQ_GT, - STATE(1998), 1, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_COLON, + ACTIONS(4409), 1, + sym_identifier, + STATE(2009), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4305), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 15, + ACTIONS(209), 2, sym__automatic_semicolon, 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, - 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(4254), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222932,42 +223745,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(4238), 17, + ACTIONS(118), 37, anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [7683] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8642] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4393), 1, + ACTIONS(4352), 1, anon_sym_QMARK, - STATE(1999), 1, + STATE(2010), 1, sym_comment, - ACTIONS(4391), 5, + ACTIONS(4348), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222983,7 +223816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222999,7 +223832,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223021,25 +223854,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7763] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8722] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(977), 1, - anon_sym_EQ_GT, - ACTIONS(1207), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, anon_sym_EQ, - ACTIONS(1236), 1, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + ACTIONS(4348), 1, anon_sym_COLON, - ACTIONS(4397), 1, - sym_identifier, - STATE(2000), 1, + STATE(2011), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4315), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4411), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4222), 13, sym__ternary_qmark, - ACTIONS(160), 15, + 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223055,63 +223913,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(4218), 18, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, 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_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7845] = 10, + [8816] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(977), 1, + ACTIONS(1027), 1, anon_sym_EQ_GT, - ACTIONS(1207), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(1230), 1, + ACTIONS(1205), 1, anon_sym_COLON, - ACTIONS(4399), 1, + ACTIONS(4415), 1, sym_identifier, - STATE(2001), 1, + STATE(2012), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223165,112 +224004,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7927] = 11, + [8898] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2002), 1, + STATE(2013), 1, sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 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(210), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4417), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, 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(118), 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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, - [8011] = 16, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [8968] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4391), 1, - anon_sym_COLON, - STATE(2003), 1, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(2014), 1, sym_comment, - STATE(3823), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4305), 2, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4315), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4401), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4242), 13, + ACTIONS(4222), 15, 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, @@ -223281,7 +224112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223297,11 +224128,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(4238), 18, + ACTIONS(4218), 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, @@ -223316,51 +224146,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8105] = 16, + [9058] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, - anon_sym_LT, - ACTIONS(4405), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(2063), 1, + anon_sym_extends, + ACTIONS(2778), 1, anon_sym_EQ_GT, - STATE(2004), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2015), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4244), 3, + ACTIONS(4372), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 12, - sym__ternary_qmark, - anon_sym_as, - 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(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223376,7 +224182,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(4238), 17, + ACTIONS(209), 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(118), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223391,42 +224215,110 @@ 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, - [8199] = 14, + [9142] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2016), 1, + sym_comment, + ACTIONS(3457), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9212] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4302), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - ACTIONS(4342), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_EQ, - STATE(2005), 1, + STATE(2017), 1, sym_comment, - STATE(3823), 1, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4299), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4305), 3, - anon_sym_GT, + ACTIONS(4258), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 15, + ACTIONS(4248), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4222), 11, 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, @@ -223436,7 +224328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223452,10 +224344,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(4238), 17, + ACTIONS(4218), 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, @@ -223470,23 +224363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8289] = 11, + [9306] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1218), 1, + ACTIONS(1225), 1, anon_sym_EQ, ACTIONS(2063), 1, anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4409), 1, + ACTIONS(4375), 1, anon_sym_EQ_GT, - STATE(2006), 1, + STATE(2018), 1, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4372), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4383), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -223506,13 +224399,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(210), 17, - sym__automatic_semicolon, + ACTIONS(209), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -223543,36 +224436,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8373] = 13, + [9390] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(212), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(4419), 1, + anon_sym_EQ, + ACTIONS(4421), 1, anon_sym_EQ_GT, - ACTIONS(4378), 1, - anon_sym_LBRACK, - STATE(2007), 1, + STATE(2019), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4328), 2, + STATE(3767), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + ACTIONS(4248), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4383), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4258), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(210), 14, + ACTIONS(4222), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -223582,7 +224480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223598,11 +224496,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(118), 19, + ACTIONS(4218), 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, @@ -223614,42 +224511,38 @@ 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, - [8461] = 15, + [9484] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_QMARK, + ACTIONS(211), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, + ACTIONS(4372), 1, anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4426), 1, anon_sym_EQ_GT, - ACTIONS(4391), 1, - anon_sym_COLON, - STATE(2008), 1, + STATE(2020), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4305), 2, + ACTIONS(2063), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4377), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4314), 3, + ACTIONS(4423), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4242), 13, + anon_sym_COLON, + ACTIONS(209), 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, @@ -223660,7 +224553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223676,7 +224569,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(4238), 18, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223692,55 +224585,23 @@ 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, - [8553] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [9572] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(977), 1, - anon_sym_EQ_GT, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(1232), 1, - anon_sym_COLON, - ACTIONS(4411), 1, - sym_identifier, - STATE(2009), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2021), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 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(118), 37, + ACTIONS(4238), 22, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -223755,37 +224616,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8635] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(977), 1, - anon_sym_EQ_GT, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_COLON, - ACTIONS(4413), 1, - sym_identifier, - STATE(2010), 1, - sym_comment, - ACTIONS(210), 2, + ACTIONS(4240), 35, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + 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, @@ -223801,52 +224646,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(118), 37, - anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8717] = 4, + [9643] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2011), 1, + STATE(2022), 1, sym_comment, - ACTIONS(3433), 58, + ACTIONS(3415), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223856,7 +224672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, anon_sym_SEMI, anon_sym_yield, @@ -223905,38 +224720,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8787] = 16, + [9712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + STATE(2023), 1, + sym_comment, + ACTIONS(4234), 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(4236), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4284), 1, + 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, + [9783] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2012), 1, + STATE(2024), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4256), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4244), 4, + ACTIONS(4248), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4242), 11, + ACTIONS(4258), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -223948,7 +224829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223964,11 +224845,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(4238), 18, + ACTIONS(4218), 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, @@ -223983,46 +224863,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8881] = 13, + [9876] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4418), 1, - anon_sym_EQ_GT, - STATE(2013), 1, + STATE(2025), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4383), 2, + ACTIONS(4264), 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(4415), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(210), 14, + 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(4266), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224038,8 +224920,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(118), 19, + 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, + [9947] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2026), 1, + sym_comment, + ACTIONS(4268), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224048,7 +224947,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, @@ -224058,25 +224959,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8969] = 10, + ACTIONS(4270), 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, + [10018] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(977), 1, - anon_sym_EQ_GT, - ACTIONS(1207), 1, + STATE(2027), 1, + sym_comment, + ACTIONS(4428), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10087] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1225), 1, anon_sym_EQ, - ACTIONS(1234), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4334), 1, anon_sym_COLON, - ACTIONS(4216), 1, - sym_identifier, - STATE(2014), 1, + ACTIONS(4375), 1, + anon_sym_EQ_GT, + STATE(2028), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + ACTIONS(4430), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(209), 15, sym__ternary_qmark, - ACTIONS(160), 15, + 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224092,18 +225109,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(118), 37, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -224118,38 +225128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9051] = 11, + [10168] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1183), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2015), 1, + STATE(2029), 1, sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -224166,13 +225158,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(210), 17, + ACTIONS(209), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, 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_LT_EQ, @@ -224184,16 +225178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(118), 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, @@ -224203,51 +225200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9135] = 16, + [10245] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, - anon_sym_LT, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(2853), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_EQ_GT, - STATE(2016), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(2030), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4244), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 12, - sym__ternary_qmark, - anon_sym_as, - 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(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224263,58 +225229,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4238), 17, + ACTIONS(4222), 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(4218), 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, - [9229] = 9, + [10324] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(4366), 1, - anon_sym_EQ, - STATE(2017), 1, - sym_comment, - ACTIONS(4369), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2853), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4242), 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(4254), 15, + STATE(2031), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224330,7 +225299,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(4238), 21, + ACTIONS(209), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224352,51 +225340,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9309] = 16, + [10403] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1269), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, - anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4433), 1, anon_sym_EQ_GT, - STATE(2018), 1, + STATE(2032), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4244), 3, + ACTIONS(4372), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224412,7 +225376,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(4238), 17, + ACTIONS(209), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + 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, + anon_sym_implements, + ACTIONS(118), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224427,53 +225408,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, - [9403] = 16, + [10486] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, + anon_sym_EQ, ACTIONS(4288), 1, - anon_sym_LT, - STATE(2019), 1, + anon_sym_EQ_GT, + STATE(2033), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4256), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4244), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4242), 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(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224489,7 +225439,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(4238), 18, + ACTIONS(4222), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224499,23 +225469,26 @@ 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, - [9497] = 4, + [10563] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2020), 1, + STATE(2034), 1, sym_comment, - ACTIONS(3453), 58, + ACTIONS(3265), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224525,7 +225498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, anon_sym_SEMI, anon_sym_yield, @@ -224574,83 +225546,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9567] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [10632] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(2021), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2035), 1, sym_comment, - ACTIONS(4428), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(3163), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + 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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [9636] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1183), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4381), 1, - anon_sym_EQ_GT, - STATE(2022), 1, - sym_comment, - ACTIONS(2780), 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3165), 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, @@ -224666,17 +225603,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(210), 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, @@ -224686,42 +225612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 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, - [9713] = 9, + [10703] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1225), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + ACTIONS(4375), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2023), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224737,14 +225639,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(4242), 18, - sym__automatic_semicolon, + ACTIONS(209), 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, @@ -224756,7 +225659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224778,56 +225681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9792] = 9, + [10780] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2895), 1, - anon_sym_COLON, - STATE(2024), 1, + STATE(2037), 1, sym_comment, - ACTIONS(2780), 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(210), 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(118), 21, + ACTIONS(4272), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -224848,18 +225711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9871] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4381), 1, - anon_sym_EQ_GT, - STATE(2025), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(4274), 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, @@ -224875,17 +225738,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(210), 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, @@ -224895,40 +225747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 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, - [9948] = 9, + [10851] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, + ACTIONS(1193), 1, anon_sym_EQ, ACTIONS(2778), 1, anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2971), 1, + ACTIONS(2891), 1, anon_sym_COLON, - STATE(2026), 1, + STATE(2038), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -224946,7 +225776,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(210), 18, + ACTIONS(209), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -224987,27 +225817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10027] = 11, + [10930] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1263), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4418), 1, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_EQ_GT, - STATE(2027), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(2039), 1, sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225023,12 +225846,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(210), 16, + ACTIONS(4222), 18, + 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, anon_sym_LT_EQ, @@ -225040,16 +225865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4218), 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, @@ -225059,18 +225887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10110] = 8, + [11009] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_EQ, - STATE(2028), 1, + ACTIONS(2933), 1, + anon_sym_COLON, + STATE(2040), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225086,12 +225916,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(4242), 19, + ACTIONS(209), 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, @@ -225106,7 +225935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225128,20 +225957,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10187] = 9, + [11088] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1225), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2895), 1, + ACTIONS(4334), 1, anon_sym_COLON, - ACTIONS(4269), 1, + ACTIONS(4372), 1, + anon_sym_LBRACK, + ACTIONS(4375), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2029), 1, + STATE(2041), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4377), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4435), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(209), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225157,26 +226011,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(4242), 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(4238), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225186,9 +226021,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, @@ -225198,83 +226031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10266] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2030), 1, - sym_comment, - ACTIONS(4430), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [10335] = 8, + [11175] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(2933), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, + ACTIONS(4321), 1, anon_sym_EQ, - STATE(2031), 1, + STATE(2042), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225290,12 +226060,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(4242), 19, + ACTIONS(4222), 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, @@ -225310,7 +226079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225332,20 +226101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10412] = 10, + [11254] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(1209), 1, - anon_sym_in, ACTIONS(2778), 1, anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4432), 1, - anon_sym_of, - STATE(2032), 1, + STATE(2043), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -225363,11 +226128,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(210), 18, + ACTIONS(209), 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, @@ -225382,9 +226148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -225403,20 +226170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10493] = 9, + [11331] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2873), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, + ACTIONS(4321), 1, anon_sym_EQ, - STATE(2033), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225432,11 +226197,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(4242), 18, + ACTIONS(4222), 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, @@ -225451,7 +226217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225473,39 +226239,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10572] = 16, + [11408] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4328), 1, anon_sym_LT, - ACTIONS(4316), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4421), 1, anon_sym_EQ_GT, - STATE(2034), 1, + STATE(2045), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4256), 2, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4315), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4244), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4242), 11, + ACTIONS(4222), 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, @@ -225515,7 +226280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225531,11 +226296,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(4238), 18, + ACTIONS(4218), 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, @@ -225550,48 +226314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10665] = 5, + [11497] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2035), 1, - sym_comment, - ACTIONS(3213), 22, - anon_sym_STAR, + ACTIONS(4227), 1, + anon_sym_EQ_GT, + ACTIONS(4321), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(4439), 1, 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(3215), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4442), 1, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(2046), 1, + sym_comment, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225607,42 +226345,14 @@ 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, - [10736] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1183), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4381), 1, - anon_sym_EQ_GT, - ACTIONS(4389), 1, - anon_sym_COLON, - STATE(2036), 1, - sym_comment, - ACTIONS(4383), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4434), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(210), 14, + ACTIONS(4222), 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, @@ -225654,33 +226364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 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(118), 19, + ACTIONS(4218), 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, @@ -225690,14 +226385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10823] = 5, + [11578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2037), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4234), 22, + ACTIONS(4242), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225720,7 +226415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 35, + ACTIONS(4244), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225756,79 +226451,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10894] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [11649] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(2038), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + STATE(2048), 1, sym_comment, - ACTIONS(4438), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4229), 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(4222), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + 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(4218), 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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [10963] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2039), 1, + STATE(2049), 1, sym_comment, - ACTIONS(3375), 57, + ACTIONS(3407), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225886,83 +226585,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11032] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [11795] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(2040), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2050), 1, sym_comment, - ACTIONS(4440), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(3205), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + 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_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3207), 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [11101] = 9, + anon_sym_satisfies, + [11866] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, + ACTIONS(1193), 1, anon_sym_EQ, + ACTIONS(1233), 1, + anon_sym_in, ACTIONS(2778), 1, anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2873), 1, - anon_sym_COLON, - STATE(2041), 1, + ACTIONS(4444), 1, + anon_sym_of, + STATE(2051), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -225980,7 +226682,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(210), 18, + ACTIONS(209), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -225999,10 +226701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226021,22 +226722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11180] = 10, + [11947] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, + ACTIONS(2911), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, + ACTIONS(4321), 1, anon_sym_EQ, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, - STATE(2042), 1, + STATE(2052), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226052,7 +226751,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(4242), 18, + ACTIONS(4222), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -226071,9 +226770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226092,23 +226792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11261] = 11, + [12026] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1275), 1, + ACTIONS(1243), 1, anon_sym_EQ, ACTIONS(2063), 1, anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4447), 1, + ACTIONS(4426), 1, anon_sym_EQ_GT, - STATE(2043), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4372), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4383), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -226128,11 +226828,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(210), 16, + ACTIONS(209), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -226144,7 +226845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, ACTIONS(118), 18, anon_sym_STAR, anon_sym_BANG, @@ -226164,38 +226864,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11344] = 14, + [12109] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_QMARK, + ACTIONS(211), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, + ACTIONS(4426), 1, + anon_sym_EQ_GT, + STATE(2054), 1, + sym_comment, + ACTIONS(4423), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(209), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4308), 1, + 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(2780), 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(118), 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, - ACTIONS(4405), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_EQ_GT, - STATE(2044), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12190] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2055), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4305), 3, + ACTIONS(4446), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4234), 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(4242), 14, + 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(4236), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RBRACK, + 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, @@ -226205,7 +227002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + [12263] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4375), 1, + anon_sym_EQ_GT, + STATE(2056), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226221,32 +227029,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(4238), 17, + ACTIONS(209), 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(118), 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, - [11433] = 4, + [12340] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2045), 1, + STATE(2057), 1, sym_comment, - ACTIONS(3379), 57, + ACTIONS(4448), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226257,7 +227089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -226268,6 +227099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -226304,28 +227136,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11502] = 10, + [12409] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, + ACTIONS(2061), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4342), 1, + ACTIONS(4372), 1, + anon_sym_LBRACK, + ACTIONS(4375), 1, anon_sym_EQ_GT, - ACTIONS(4344), 1, - anon_sym_QMARK, - STATE(2046), 1, + STATE(2058), 1, sym_comment, - ACTIONS(4339), 3, + ACTIONS(4377), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2063), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4242), 15, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(209), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -226337,7 +227173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226353,7 +227189,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(4238), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226363,9 +227199,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, @@ -226375,18 +227209,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11583] = 8, + [12494] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + ACTIONS(4403), 1, anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4405), 1, anon_sym_EQ_GT, - STATE(2047), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4254), 15, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 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, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226402,69 +227266,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(4242), 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(4238), 21, + ACTIONS(4218), 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, - [11660] = 11, + [12583] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1291), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3023), 1, + ACTIONS(2971), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_EQ_GT, - ACTIONS(4378), 1, - anon_sym_LBRACK, - STATE(2048), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(2060), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226480,12 +227313,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(210), 16, + ACTIONS(4222), 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, @@ -226497,16 +227332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4218), 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, @@ -226516,18 +227354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11743] = 8, + [12662] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_EQ, - STATE(2049), 1, + ACTIONS(2971), 1, + anon_sym_COLON, + STATE(2061), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226543,15 +227383,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(4242), 19, + ACTIONS(209), 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, @@ -226563,7 +227402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226585,24 +227424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11820] = 10, + [12741] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1183), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, + ACTIONS(4338), 1, + anon_sym_EQ, + ACTIONS(4344), 1, anon_sym_EQ_GT, - ACTIONS(4389), 1, - anon_sym_COLON, - STATE(2050), 1, + ACTIONS(4346), 1, + anon_sym_QMARK, + STATE(2062), 1, sym_comment, - ACTIONS(4449), 3, + ACTIONS(4341), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(210), 15, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226618,7 +227457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226634,7 +227473,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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226656,48 +227495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11901] = 14, + [12822] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4424), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4426), 1, - anon_sym_EQ_GT, - STATE(2051), 1, + STATE(2063), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4305), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 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(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226713,25 +227520,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4238), 17, + ACTIONS(4222), 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(4218), 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, - [11990] = 8, + [12897] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2064), 1, + sym_comment, + ACTIONS(4450), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [12966] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, @@ -226740,7 +227637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2052), 1, + STATE(2065), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -226758,7 +227655,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(210), 19, + ACTIONS(209), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -226800,38 +227697,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12067] = 16, + [13043] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, + ACTIONS(4280), 1, + anon_sym_EQ, ACTIONS(4284), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(4288), 1, + ACTIONS(4292), 1, anon_sym_LT, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2053), 1, + STATE(2066), 1, sym_comment, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4244), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4256), 3, - anon_sym_GT, + ACTIONS(4258), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4242), 11, + ACTIONS(4248), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4222), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -226843,7 +227739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226859,10 +227755,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(4238), 17, + ACTIONS(4218), 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, @@ -226877,18 +227774,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12160] = 8, + [13136] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, + ACTIONS(4309), 1, + anon_sym_LBRACK, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + ACTIONS(4397), 1, anon_sym_EQ, - ACTIONS(4320), 1, + ACTIONS(4399), 1, anon_sym_EQ_GT, - STATE(2054), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4254), 15, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226904,82 +227831,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(4242), 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(4238), 21, + ACTIONS(4218), 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, - [12237] = 10, + [13225] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4418), 1, - anon_sym_EQ_GT, - STATE(2055), 1, + STATE(2068), 1, sym_comment, - ACTIONS(4415), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(210), 15, + ACTIONS(4276), 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(4278), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226995,8 +227906,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(118), 21, + 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, + [13296] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2069), 1, + sym_comment, + ACTIONS(4238), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227017,47 +227945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12318] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4314), 1, - anon_sym_extends, - STATE(2056), 1, - sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4299), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4305), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 14, + ACTIONS(4240), 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227073,39 +227972,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(4238), 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, - [12407] = 9, + 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, + [13367] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2933), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + ACTIONS(4254), 1, anon_sym_EQ_GT, ACTIONS(4280), 1, anon_sym_EQ, - STATE(2057), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227121,14 +228008,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(4242), 18, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -227140,7 +228028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227162,20 +228050,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12486] = 9, + [13444] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2933), 1, - anon_sym_COLON, - STATE(2058), 1, + STATE(2071), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4452), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4238), 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(4240), 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, @@ -227191,16 +228108,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(210), 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, @@ -227210,8 +228117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + [13517] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2072), 1, + sym_comment, + ACTIONS(4234), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227232,146 +228147,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12565] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2059), 1, - sym_comment, - ACTIONS(3417), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12634] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2060), 1, - sym_comment, - ACTIONS(3427), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4236), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, + anon_sym_of, anon_sym_SEMI, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_TILDE, - anon_sym_void, - anon_sym_delete, + 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_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12703] = 8, + anon_sym_satisfies, + [13588] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1211), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4409), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2061), 1, + STATE(2073), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -227389,7 +228210,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(210), 19, + ACTIONS(209), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -227431,48 +228252,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12780] = 5, + [13665] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2062), 1, - sym_comment, - ACTIONS(4230), 22, - anon_sym_STAR, + ACTIONS(4246), 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, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4307), 1, + anon_sym_extends, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + STATE(2074), 1, + sym_comment, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4309), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4315), 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, - ACTIONS(4232), 35, - sym__automatic_semicolon, + ACTIONS(4222), 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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227488,25 +228308,46 @@ 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, - [12851] = 7, + ACTIONS(4218), 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, + [13754] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1289), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - STATE(2063), 1, + ACTIONS(3023), 1, + anon_sym_EQ_GT, + ACTIONS(4372), 1, + anon_sym_LBRACK, + STATE(2075), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4377), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227522,16 +228363,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(4242), 20, + ACTIONS(209), 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_LT_EQ, @@ -227543,36 +228380,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 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, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13837] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2076), 1, + sym_comment, + ACTIONS(4454), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [13906] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2077), 1, + sym_comment, + ACTIONS(4456), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12926] = 4, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [13975] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2064), 1, + STATE(2078), 1, sym_comment, - ACTIONS(4452), 57, + ACTIONS(4458), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227630,29 +228594,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [12995] = 12, + [14044] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4334), 1, + anon_sym_COLON, + ACTIONS(4336), 1, anon_sym_EQ_GT, - ACTIONS(4378), 1, + ACTIONS(4372), 1, anon_sym_LBRACK, - ACTIONS(4389), 1, - anon_sym_COLON, - STATE(2065), 1, + STATE(2079), 1, sym_comment, - ACTIONS(4383), 2, + ACTIONS(4377), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(2063), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(210), 14, + ACTIONS(209), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227703,18 +228667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13080] = 8, + [14129] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(1193), 1, anon_sym_EQ, - ACTIONS(4320), 1, + ACTIONS(2778), 1, anon_sym_EQ_GT, - STATE(2066), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2911), 1, + anon_sym_COLON, + STATE(2080), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227730,13 +228696,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(4242), 19, + ACTIONS(209), 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, @@ -227750,42 +228715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 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, - [13157] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2067), 1, - sym_comment, - ACTIONS(4454), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4226), 22, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227806,81 +228737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4228), 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13230] = 14, + [14208] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(4227), 1, anon_sym_EQ_GT, - STATE(2068), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2081), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4305), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227896,81 +228764,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(4238), 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, - [13319] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2069), 1, - sym_comment, - ACTIONS(4226), 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(4228), 35, + ACTIONS(4222), 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, @@ -227980,16 +228784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13390] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2070), 1, - sym_comment, - ACTIONS(4274), 22, + ACTIONS(4218), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -228010,54 +228806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4276), 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, - [13461] = 8, + [14285] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1218), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4409), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4288), 1, anon_sym_EQ_GT, - STATE(2071), 1, + STATE(2082), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228073,7 +228833,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(210), 19, + ACTIONS(4222), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -228093,7 +228853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228115,149 +228875,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13538] = 8, + [14362] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2072), 1, + STATE(2083), 1, sym_comment, - ACTIONS(2780), 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(210), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4294), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_await, + anon_sym_yield, 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(118), 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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, - [13615] = 5, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14431] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2073), 1, + STATE(2084), 1, sym_comment, - ACTIONS(4222), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3389), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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(4224), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [13686] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2074), 1, + ACTIONS(4452), 1, + anon_sym_COMMA, + STATE(2085), 1, sym_comment, - ACTIONS(4218), 22, + ACTIONS(4238), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228280,16 +229037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4220), 35, - sym__automatic_semicolon, + ACTIONS(4240), 33, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -228316,49 +229071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13757] = 6, + [14572] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2075), 1, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4409), 1, + sym_identifier, + STATE(2086), 1, sym_comment, - ACTIONS(4456), 3, + ACTIONS(209), 2, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4230), 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(4232), 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, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228374,28 +229103,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, - [13830] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2076), 1, - sym_comment, - ACTIONS(4230), 22, + ACTIONS(118), 36, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -228410,53 +229128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4232), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13901] = 5, + [14650] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2077), 1, + ACTIONS(4446), 1, + anon_sym_COMMA, + STATE(2087), 1, sym_comment, - ACTIONS(4226), 22, + ACTIONS(4234), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228479,16 +229172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4228), 35, - sym__automatic_semicolon, + ACTIONS(4236), 33, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -228515,20 +229206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13972] = 9, + [14722] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2853), 1, - anon_sym_COLON, - STATE(2078), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + STATE(2088), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228544,14 +229231,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(210), 18, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -228563,7 +229251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228585,33 +229273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14051] = 12, + [14796] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4378), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4309), 1, anon_sym_LBRACK, - ACTIONS(4381), 1, + ACTIONS(4325), 1, + anon_sym_DOT, + ACTIONS(4328), 1, + anon_sym_LT, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2079), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4383), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 3, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4307), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(210), 14, + ACTIONS(4315), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4222), 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, @@ -228622,7 +229313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228638,11 +229329,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(118), 19, + ACTIONS(4218), 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, @@ -228654,52 +229344,41 @@ 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, - [14136] = 5, + [14884] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2080), 1, - sym_comment, - ACTIONS(3207), 22, - anon_sym_STAR, + ACTIONS(4246), 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(3209), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4348), 1, + anon_sym_COLON, + STATE(2090), 1, + sym_comment, + ACTIONS(4460), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4222), 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_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(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228715,25 +229394,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, - [14207] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2081), 1, - sym_comment, - ACTIONS(4260), 22, + ACTIONS(4218), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -228754,56 +229416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4262), 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, - [14278] = 9, + [14962] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1243), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2853), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + ACTIONS(4426), 1, anon_sym_EQ_GT, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(2082), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228819,13 +229443,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(4242), 18, - sym__automatic_semicolon, + ACTIONS(209), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228838,7 +229462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228860,83 +229484,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14357] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15038] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(2083), 1, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4426), 1, + anon_sym_EQ_GT, + STATE(2092), 1, sym_comment, - ACTIONS(4346), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(2780), 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(209), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14426] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4454), 1, - anon_sym_COMMA, - STATE(2084), 1, - sym_comment, - ACTIONS(4226), 22, + anon_sym_satisfies, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -228957,31 +229552,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4228), 33, + [15114] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + STATE(2093), 1, + sym_comment, + ACTIONS(4460), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - 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, @@ -228991,18 +229583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14498] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4354), 1, - anon_sym_EQ_GT, - STATE(2085), 1, - sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229018,26 +229599,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(4242), 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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229059,40 +229621,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14574] = 7, + [15192] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4300), 1, anon_sym_EQ, - STATE(2086), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4254), 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(4242), 19, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4341), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4222), 15, + 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, @@ -229104,7 +229652,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4229), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229126,14 +229690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14648] = 4, + [15270] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2087), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4458), 56, + ACTIONS(4463), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229190,14 +229754,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14716] = 4, + [15338] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(2096), 1, + sym_comment, + ACTIONS(4229), 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(4222), 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(4218), 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, + [15412] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2088), 1, + STATE(2097), 1, sym_comment, - ACTIONS(4460), 56, + ACTIONS(4465), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229254,14 +229885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14784] = 4, + [15480] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2089), 1, + STATE(2098), 1, sym_comment, - ACTIONS(4462), 56, + ACTIONS(4467), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229318,18 +229949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14852] = 8, + [15548] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1263), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4418), 1, + ACTIONS(1295), 1, anon_sym_EQ_GT, - STATE(2090), 1, + ACTIONS(4216), 1, + sym_identifier, + STATE(2099), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229345,30 +229981,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(210), 18, - sym__ternary_qmark, + ACTIONS(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, 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(118), 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, @@ -229383,19 +230006,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [14928] = 7, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15626] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1269), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(2091), 1, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + STATE(2100), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229411,14 +230045,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(4242), 19, - sym__automatic_semicolon, + ACTIONS(209), 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, @@ -229431,7 +230063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + anon_sym_implements, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229453,22 +230086,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15002] = 9, + [15702] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4250), 1, + ACTIONS(4375), 1, anon_sym_EQ_GT, - ACTIONS(4290), 1, - anon_sym_EQ, - STATE(2092), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4339), 3, + ACTIONS(4423), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229484,7 +230117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229500,7 +230133,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(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229522,39 +230155,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15080] = 7, + [15780] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4399), 1, + anon_sym_EQ_GT, + ACTIONS(4469), 1, anon_sym_EQ, - STATE(2093), 1, + ACTIONS(4472), 1, + anon_sym_in, + ACTIONS(4474), 1, + anon_sym_COLON, + STATE(2102), 1, sym_comment, - ACTIONS(4254), 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(4242), 19, - sym__automatic_semicolon, + ACTIONS(4222), 15, 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, @@ -229567,45 +230190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 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, - [15154] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(4411), 1, - sym_identifier, - STATE(2094), 1, - sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229621,17 +230206,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(118), 36, + ACTIONS(4218), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -229646,52 +230224,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15232] = 8, + [15864] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1252), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4342), 1, + ACTIONS(4361), 1, + anon_sym_COMMA, + ACTIONS(4423), 1, + anon_sym_RBRACK, + ACTIONS(4476), 1, + anon_sym_COLON, + ACTIONS(4478), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_EQ, - STATE(2095), 1, + STATE(2103), 1, sym_comment, - ACTIONS(4254), 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(4242), 18, + ACTIONS(209), 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, @@ -229704,7 +230260,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(2780), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229726,20 +230298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15308] = 9, + [15946] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, - STATE(2096), 1, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + STATE(2104), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229755,13 +230325,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(4242), 18, - sym__automatic_semicolon, + ACTIONS(209), 18, 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, @@ -229774,9 +230343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + anon_sym_implements, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -229795,31 +230366,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15386] = 11, + [16022] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1305), 1, + ACTIONS(1225), 1, anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4464), 1, + ACTIONS(4375), 1, anon_sym_EQ_GT, - STATE(2097), 1, + STATE(2105), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4383), 3, - anon_sym_GT, + ACTIONS(4372), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4377), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(210), 15, + ACTIONS(209), 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_LT_EQ, @@ -229847,10 +230417,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(118), 18, + ACTIONS(118), 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, @@ -229866,26 +230437,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15468] = 9, + [16104] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, + ACTIONS(1321), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, + ACTIONS(4372), 1, + anon_sym_LBRACK, + ACTIONS(4480), 1, anon_sym_EQ_GT, - STATE(2098), 1, + STATE(2106), 1, sym_comment, - ACTIONS(4415), 3, + ACTIONS(2063), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(210), 15, + anon_sym_extends, + ACTIONS(4377), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -229913,19 +230489,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(118), 21, + ACTIONS(118), 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, @@ -229935,42 +230508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15546] = 11, + [16186] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1183), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4381), 1, + ACTIONS(1295), 1, anon_sym_EQ_GT, - STATE(2099), 1, + ACTIONS(4395), 1, + sym_identifier, + STATE(2107), 1, sym_comment, - ACTIONS(4378), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4383), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(210), 15, + ACTIONS(209), 2, + sym__automatic_semicolon, 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(2780), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229986,58 +230540,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(118), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, 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, - [15628] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4391), 1, - anon_sym_COLON, - STATE(2100), 1, - sym_comment, - ACTIONS(4466), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4242), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(4254), 15, + [16264] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4321), 1, + anon_sym_EQ, + ACTIONS(4439), 1, + anon_sym_in, + ACTIONS(4442), 1, + anon_sym_of, + STATE(2108), 1, + sym_comment, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230053,47 +230606,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(4238), 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, - [15706] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - STATE(2101), 1, - sym_comment, - ACTIONS(4466), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4242), 15, + ACTIONS(4222), 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, @@ -230106,26 +230625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 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(4238), 21, + ACTIONS(4218), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -230144,18 +230646,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15784] = 8, + [16342] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2109), 1, + sym_comment, + ACTIONS(4482), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16410] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4352), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4354), 1, - anon_sym_EQ_GT, - STATE(2102), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230171,12 +230735,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(4242), 18, + ACTIONS(4222), 19, + sym__automatic_semicolon, 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, @@ -230189,8 +230755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230212,14 +230777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15860] = 4, + [16484] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2103), 1, + STATE(2111), 1, sym_comment, - ACTIONS(4469), 56, + ACTIONS(4484), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230276,14 +230841,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15928] = 4, + [16552] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + STATE(2112), 1, + sym_comment, + ACTIONS(4229), 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(4222), 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(4218), 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, + [16628] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2104), 1, + STATE(2113), 1, sym_comment, - ACTIONS(4471), 56, + ACTIONS(4484), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230340,23 +230973,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15996] = 9, + [16696] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4415), 1, sym_identifier, - STATE(2105), 1, + STATE(2114), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230409,14 +231042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16074] = 4, + [16774] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2106), 1, + STATE(2115), 1, sym_comment, - ACTIONS(4469), 56, + ACTIONS(4486), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230473,14 +231106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16142] = 4, + [16842] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2107), 1, + STATE(2116), 1, sym_comment, - ACTIONS(4473), 56, + ACTIONS(4486), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230505,46 +231138,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [16210] = 4, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16910] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + STATE(2117), 1, + sym_comment, + ACTIONS(4229), 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(4222), 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(4218), 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, + [16986] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2108), 1, + STATE(2118), 1, sym_comment, - ACTIONS(4473), 56, + ACTIONS(4488), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230601,14 +231302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16278] = 4, + [17054] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2109), 1, + STATE(2119), 1, sym_comment, - ACTIONS(4475), 56, + ACTIONS(4490), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230665,14 +231366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16346] = 4, + [17122] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2110), 1, + STATE(2120), 1, sym_comment, - ACTIONS(4477), 56, + ACTIONS(4492), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230729,168 +231430,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16414] = 9, + [17190] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1307), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4344), 1, - anon_sym_QMARK, - STATE(2111), 1, - sym_comment, - ACTIONS(4339), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4242), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4372), 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(4254), 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(4238), 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, - [16492] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1265), 1, + ACTIONS(4494), 1, anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(4397), 1, - sym_identifier, - STATE(2112), 1, + STATE(2121), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 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(118), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4377), 3, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [16570] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4407), 1, - anon_sym_EQ_GT, - ACTIONS(4479), 1, - anon_sym_EQ, - ACTIONS(4482), 1, - anon_sym_in, - ACTIONS(4484), 1, - anon_sym_COLON, - STATE(2113), 1, - sym_comment, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -230902,7 +231466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230918,18 +231482,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(4238), 20, + ACTIONS(118), 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, @@ -230939,28 +231501,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16654] = 11, + [17272] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1250), 1, + ACTIONS(1281), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4486), 1, - anon_sym_COLON, - ACTIONS(4488), 1, + ACTIONS(4372), 1, + anon_sym_LBRACK, + ACTIONS(4478), 1, anon_sym_EQ_GT, - STATE(2114), 1, + STATE(2122), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4377), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(209), 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, @@ -230988,19 +231553,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(118), 21, + ACTIONS(118), 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, @@ -231010,18 +231572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16736] = 8, + [17354] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4447), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4390), 1, anon_sym_EQ_GT, - STATE(2115), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231037,7 +231599,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(210), 18, + ACTIONS(4222), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -231056,40 +231618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(118), 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, - [16812] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(2116), 1, - sym_comment, - ACTIONS(4230), 22, + ACTIONS(4218), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -231110,57 +231640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4232), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - [16884] = 9, + [17430] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4413), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4401), 1, sym_identifier, - STATE(2117), 1, + STATE(2124), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231213,229 +231709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16962] = 8, + [17508] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4338), 1, anon_sym_EQ, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - STATE(2118), 1, + ACTIONS(4346), 1, + anon_sym_QMARK, + STATE(2125), 1, sym_comment, - ACTIONS(4254), 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(4242), 18, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4341), 3, 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(4238), 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, - [17038] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4299), 1, - anon_sym_LBRACK, - ACTIONS(4302), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_LT, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - STATE(2119), 1, - sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4305), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4242), 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(4254), 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(4238), 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, - [17126] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - sym_identifier, - STATE(2120), 1, - sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + ACTIONS(4222), 15, sym__ternary_qmark, - ACTIONS(160), 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(118), 36, - anon_sym_STAR, anon_sym_as, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - 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_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17204] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1275), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4447), 1, - anon_sym_EQ_GT, - STATE(2121), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231451,26 +231756,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(210), 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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231492,23 +231778,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17280] = 9, + [17586] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(4490), 1, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(4496), 1, sym_identifier, - STATE(2122), 1, + STATE(2126), 1, sym_comment, - ACTIONS(210), 2, + ACTIONS(209), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231561,18 +231847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17358] = 8, + [17664] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4418), 1, + ACTIONS(4344), 1, anon_sym_EQ_GT, - STATE(2123), 1, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(2127), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231588,7 +231874,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(210), 18, + ACTIONS(4222), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -231607,7 +231893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231629,102 +231915,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17434] = 11, + [17740] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1267), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4488), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2124), 1, - sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(210), 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(2780), 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(118), 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, - [17516] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1319), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4378), 1, + ACTIONS(4372), 1, anon_sym_LBRACK, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - STATE(2125), 1, + STATE(2128), 1, sym_comment, ACTIONS(2063), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4383), 3, + ACTIONS(4377), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(210), 15, + ACTIONS(209), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -231771,275 +231985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17598] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2126), 1, - sym_comment, - ACTIONS(4494), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17666] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4486), 1, - anon_sym_COLON, - ACTIONS(4488), 1, - anon_sym_EQ_GT, - STATE(2127), 1, - sym_comment, - ACTIONS(2780), 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(210), 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(118), 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, - [17743] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4407), 1, - anon_sym_EQ_GT, - ACTIONS(4479), 1, - anon_sym_EQ, - STATE(2128), 1, - sym_comment, - ACTIONS(4242), 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(4254), 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(4238), 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, - [17822] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3023), 1, - anon_sym_EQ_GT, - STATE(2129), 1, - sym_comment, - ACTIONS(2780), 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(210), 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(118), 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, - [17897] = 34, + [17821] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232056,39 +232002,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2130), 1, + STATE(2129), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -232096,30 +232042,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4502), 2, + ACTIONS(4504), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4504), 2, + ACTIONS(4506), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4753), 6, + STATE(4763), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232132,7 +232078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18024] = 34, + [17948] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232149,39 +232095,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2131), 1, + STATE(2130), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -232189,30 +232135,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4099), 2, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4524), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4101), 2, + ACTIONS(4526), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4837), 6, + STATE(4658), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232225,18 +232171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18151] = 8, + [18075] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_EQ_GT, - STATE(2132), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232252,12 +232196,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(4242), 17, - sym__automatic_semicolon, + ACTIONS(4222), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -232270,7 +232215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232292,30 +232237,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18226] = 11, + [18148] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4399), 1, anon_sym_EQ_GT, - ACTIONS(4378), 1, - anon_sym_LBRACK, - STATE(2133), 1, + ACTIONS(4469), 1, + anon_sym_EQ, + STATE(2132), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4383), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(210), 14, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -232327,7 +232268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232343,16 +232284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(4218), 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, @@ -232362,47 +232306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18307] = 6, + [18227] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(2134), 1, - sym_comment, - ACTIONS(4230), 22, - anon_sym_STAR, + ACTIONS(4280), 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(4232), 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, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + STATE(2133), 1, + sym_comment, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232418,6 +232333,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(4222), 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, @@ -232427,100 +232351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18378] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, + ACTIONS(4218), 21, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2135), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3985), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3993), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4009), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4788), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [18505] = 34, + 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, + [18302] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232537,39 +232390,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2136), 1, + STATE(2134), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -232577,30 +232430,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4522), 2, + ACTIONS(4085), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4524), 2, + ACTIONS(4087), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4785), 6, + STATE(4795), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232613,18 +232466,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18632] = 6, + [18429] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, - anon_sym_COMMA, - STATE(2137), 1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_COLON, + STATE(2135), 1, sym_comment, - ACTIONS(4226), 22, + ACTIONS(2780), 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(209), 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(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -232645,15 +232534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4228), 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, + [18506] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_EQ, + ACTIONS(4399), 1, + anon_sym_EQ_GT, + ACTIONS(4472), 1, + anon_sym_in, + ACTIONS(4530), 1, + anon_sym_COLON, + STATE(2136), 1, + sym_comment, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232669,6 +232565,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(4222), 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, @@ -232678,16 +232582,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18703] = 8, + ACTIONS(4218), 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, + [18585] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1291), 1, + ACTIONS(1289), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(3023), 1, anon_sym_EQ_GT, - STATE(2138), 1, + STATE(2137), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -232705,7 +232630,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(210), 17, + ACTIONS(209), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -232745,7 +232670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18778] = 34, + [18660] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232762,39 +232687,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2139), 1, + STATE(2138), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -232802,30 +232727,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4526), 2, + ACTIONS(4532), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4528), 2, + ACTIONS(4534), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4698), 6, + STATE(4655), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232838,18 +232763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18905] = 8, + [18787] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4363), 1, anon_sym_EQ, - ACTIONS(4334), 1, + ACTIONS(4365), 1, anon_sym_EQ_GT, - STATE(2140), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232865,7 +232790,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(4242), 17, + ACTIONS(4222), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -232883,7 +232808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232905,7 +232830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18980] = 34, + [18862] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232922,39 +232847,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2141), 1, + STATE(2140), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -232962,30 +232887,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4530), 2, + ACTIONS(4536), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4532), 2, + ACTIONS(4538), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4812), 6, + STATE(4715), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -232998,100 +232923,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19107] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, + [18989] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4300), 1, + anon_sym_EQ, + STATE(2141), 1, + sym_comment, + ACTIONS(4341), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, - anon_sym_STAR, - ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2142), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 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(4229), 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(4218), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4534), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4536), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4750), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [19234] = 34, + 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, + [19064] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233108,39 +233007,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2143), 1, + STATE(2142), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -233148,30 +233047,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4538), 2, + ACTIONS(4540), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4540), 2, + ACTIONS(4542), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4674), 6, + STATE(4755), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233184,52 +233083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19361] = 7, + [19191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4364), 1, - anon_sym_EQ, - STATE(2144), 1, - sym_comment, - ACTIONS(4254), 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(4242), 18, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4452), 1, 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(4238), 21, + STATE(2143), 1, + sym_comment, + ACTIONS(4238), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -233250,16 +233115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19434] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4352), 1, - anon_sym_EQ, - STATE(2145), 1, - sym_comment, - ACTIONS(4254), 15, + ACTIONS(4240), 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, @@ -233275,15 +233139,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(4242), 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, @@ -233293,43 +233148,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4238), 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, - [19507] = 8, + [19262] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1252), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, - anon_sym_EQ, - STATE(2146), 1, - sym_comment, - ACTIONS(4339), 3, + ACTIONS(4361), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4423), 1, anon_sym_RBRACK, - ACTIONS(4242), 15, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + STATE(2144), 1, + sym_comment, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233345,7 +233179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233361,7 +233195,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(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233383,22 +233217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19582] = 10, + [19341] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4405), 1, + ACTIONS(4397), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4399), 1, anon_sym_EQ_GT, - ACTIONS(4482), 1, + ACTIONS(4472), 1, anon_sym_in, - ACTIONS(4484), 1, + ACTIONS(4474), 1, anon_sym_COLON, - STATE(2147), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233414,7 +233248,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(4242), 16, + ACTIONS(4222), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233431,7 +233265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(4218), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -233452,22 +233286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19661] = 10, + [19420] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4405), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_EQ_GT, - ACTIONS(4482), 1, - anon_sym_in, - ACTIONS(4542), 1, + ACTIONS(4476), 1, anon_sym_COLON, - STATE(2148), 1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + STATE(2146), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233483,7 +233315,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(4242), 16, + ACTIONS(209), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233500,9 +233332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -233521,18 +233354,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19740] = 9, + [19497] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2147), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4544), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4546), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4681), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [19624] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1267), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(3023), 1, anon_sym_EQ_GT, - ACTIONS(4544), 1, - anon_sym_COLON, - STATE(2149), 1, + STATE(2148), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -233550,12 +233474,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(210), 16, + ACTIONS(209), 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, @@ -233589,55 +233514,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19817] = 10, + [19699] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2149), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4009), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4827), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [19826] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1250), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4328), 1, + ACTIONS(4446), 1, anon_sym_COMMA, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4488), 1, - anon_sym_EQ_GT, STATE(2150), 1, sym_comment, - ACTIONS(210), 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(2780), 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(118), 21, + ACTIONS(4234), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -233658,7 +233639,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19896] = 34, + ACTIONS(4236), 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [19897] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233675,39 +233689,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, STATE(2151), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -233715,30 +233729,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4546), 2, + ACTIONS(4548), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4548), 2, + ACTIONS(4550), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4740), 6, + STATE(4766), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -233751,18 +233765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20023] = 8, + [20024] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_EQ_GT, STATE(2152), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233778,12 +233790,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(4242), 16, + ACTIONS(4222), 18, 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, @@ -233795,7 +233808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + anon_sym_implements, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233817,25 +233831,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20097] = 10, + [20097] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1209), 1, - anon_sym_in, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4494), 1, anon_sym_EQ_GT, - ACTIONS(4432), 1, - anon_sym_of, STATE(2153), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(2780), 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(209), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -233848,7 +233875,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(118), 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, + [20171] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4399), 1, + anon_sym_EQ_GT, + STATE(2154), 1, + sym_comment, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233864,9 +233924,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(118), 20, + ACTIONS(4222), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -233885,18 +233963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20175] = 8, + [20245] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1321), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(4480), 1, anon_sym_EQ_GT, - STATE(2154), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233912,7 +233990,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(4242), 16, + ACTIONS(209), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233929,7 +234007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233951,20 +234029,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20249] = 9, + [20319] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1233), 1, + anon_sym_in, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4479), 1, - anon_sym_EQ, - STATE(2155), 1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + ACTIONS(4444), 1, + anon_sym_of, + STATE(2156), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -233980,7 +234060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233996,10 +234076,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4238), 21, + ACTIONS(118), 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, + [20397] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4439), 1, anon_sym_in, + ACTIONS(4442), 1, + anon_sym_of, + STATE(2157), 1, + sym_comment, + ACTIONS(4222), 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(4229), 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(4218), 20, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234018,18 +234165,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20325] = 8, + [20475] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4419), 1, anon_sym_EQ, + ACTIONS(4421), 1, + anon_sym_EQ_GT, + STATE(2158), 1, + sym_comment, + ACTIONS(4229), 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(4222), 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(4218), 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, + [20549] = 8, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4421), 1, anon_sym_EQ_GT, - STATE(2156), 1, + STATE(2159), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234045,12 +234258,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(210), 16, + ACTIONS(4222), 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, @@ -234062,7 +234275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234084,18 +234297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20399] = 8, + [20623] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4405), 1, anon_sym_EQ_GT, - STATE(2157), 1, + STATE(2160), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234111,12 +234324,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(4242), 16, + ACTIONS(4222), 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, @@ -234128,7 +234341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234150,18 +234363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20473] = 8, + [20697] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1267), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4397), 1, + anon_sym_EQ, + ACTIONS(4399), 1, anon_sym_EQ_GT, - STATE(2158), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234177,7 +234390,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(210), 16, + ACTIONS(4222), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234194,7 +234407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234216,16 +234429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20547] = 7, + [20771] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4363), 1, anon_sym_EQ, - STATE(2159), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234241,7 +234454,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(4242), 17, + ACTIONS(4222), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -234259,7 +234472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234281,18 +234494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20619] = 8, + [20843] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1305), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4464), 1, + ACTIONS(4403), 1, + anon_sym_EQ, + ACTIONS(4405), 1, anon_sym_EQ_GT, - STATE(2160), 1, + STATE(2163), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234308,7 +234521,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(210), 16, + ACTIONS(4222), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234325,7 +234538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234347,18 +234560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20693] = 8, + [20917] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4480), 1, anon_sym_EQ_GT, - STATE(2161), 1, + STATE(2164), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234374,11 +234587,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(4242), 16, + ACTIONS(209), 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, @@ -234391,7 +234604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234413,16 +234626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20767] = 8, + [20991] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1281), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4492), 1, + ACTIONS(4478), 1, anon_sym_EQ_GT, - STATE(2162), 1, + STATE(2165), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -234440,12 +234653,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(210), 16, + ACTIONS(209), 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, @@ -234479,17 +234692,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20841] = 8, + [21065] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4464), 1, + ACTIONS(4334), 1, + anon_sym_COLON, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2163), 1, + STATE(2166), 1, sym_comment, + ACTIONS(209), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -234506,23 +234737,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(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -234545,16 +234759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20915] = 8, + [21141] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1319), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4492), 1, + ACTIONS(4478), 1, anon_sym_EQ_GT, - STATE(2164), 1, + STATE(2167), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -234572,12 +234786,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(210), 16, + ACTIONS(209), 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, @@ -234611,18 +234825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20989] = 8, + [21215] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1307), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(4494), 1, anon_sym_EQ_GT, - STATE(2165), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234638,11 +234852,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(4242), 16, + ACTIONS(209), 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, @@ -234655,7 +234869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234677,20 +234891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21063] = 9, + [21289] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - ACTIONS(4389), 1, - anon_sym_COLON, - STATE(2166), 1, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4469), 1, + anon_sym_EQ, + STATE(2169), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234706,7 +234920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234722,7 +234936,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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234744,38 +234958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21139] = 8, + [21365] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2167), 1, + ACTIONS(4552), 1, + anon_sym_EQ, + STATE(2170), 1, sym_comment, - ACTIONS(4254), 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(4242), 16, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -234788,7 +234985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4238), 21, + ACTIONS(4229), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234810,22 +235023,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21213] = 10, + [21438] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2171), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4554), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5155), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [21561] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2172), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4556), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5155), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [21684] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, - STATE(2168), 1, + ACTIONS(4348), 1, + anon_sym_COLON, + STATE(2173), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234841,7 +235230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234857,9 +235246,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(4238), 20, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234878,7 +235268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21291] = 33, + [21757] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234895,39 +235285,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2174), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4558), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5155), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [21880] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2169), 1, + STATE(2175), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -234935,27 +235415,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -234968,18 +235448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21414] = 8, + [22003] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - ACTIONS(4552), 1, + ACTIONS(4562), 1, anon_sym_EQ, - STATE(2170), 1, + STATE(2176), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234995,7 +235475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235011,7 +235491,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235033,18 +235513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21487] = 8, + [22076] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1337), 1, + ACTIONS(1387), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2171), 1, + STATE(2177), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235098,18 +235578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21560] = 8, + [22149] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1395), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - ACTIONS(4554), 1, - anon_sym_EQ, - STATE(2172), 1, + STATE(2178), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235125,7 +235605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235141,7 +235621,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(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235163,124 +235643,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21633] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22222] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4564), 1, + anon_sym_EQ, + STATE(2179), 1, + sym_comment, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, - anon_sym_STAR, - ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2173), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4556), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5151), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [21756] = 8, + 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(4229), 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(4218), 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, + [22295] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4558), 1, + ACTIONS(4397), 1, anon_sym_EQ, - STATE(2174), 1, + STATE(2180), 1, sym_comment, - ACTIONS(4242), 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(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235296,7 +235733,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(4238), 21, + ACTIONS(4222), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235318,18 +235772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21829] = 8, + [22366] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1383), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4371), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2175), 1, + STATE(2181), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235345,7 +235799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235361,7 +235815,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(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235383,7 +235837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21902] = 33, + [22439] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -235400,39 +235854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2176), 1, + STATE(2182), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -235440,27 +235894,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4560), 2, + ACTIONS(4566), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -235473,18 +235927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22025] = 8, + [22562] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1389), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4391), 1, - anon_sym_COLON, - STATE(2177), 1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + STATE(2183), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235500,7 +235954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235516,7 +235970,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(4238), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235538,18 +235992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22098] = 8, + [22635] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1329), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2178), 1, + ACTIONS(4568), 1, + anon_sym_EQ, + STATE(2184), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235565,7 +236019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235581,7 +236035,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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235603,7 +236057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22171] = 33, + [22708] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -235620,39 +236074,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2179), 1, + STATE(2185), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -235660,27 +236114,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4562), 2, + ACTIONS(4570), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -235693,7 +236147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22294] = 33, + [22831] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -235710,39 +236164,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2180), 1, + STATE(2186), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -235750,27 +236204,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4564), 2, + ACTIONS(4572), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -235783,108 +236237,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22417] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22954] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4574), 1, + anon_sym_EQ, + STATE(2187), 1, + sym_comment, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 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(4229), 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(4218), 21, anon_sym_STAR, - ACTIONS(4506), 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, + [23027] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1397), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + STATE(2188), 1, + sym_comment, + ACTIONS(209), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2181), 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(2780), 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(118), 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, + [23100] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4403), 1, + anon_sym_EQ, + STATE(2189), 1, sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 2, + ACTIONS(4229), 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(4222), 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(4218), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4566), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5151), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [22540] = 8, + 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, + [23171] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - ACTIONS(4568), 1, + ACTIONS(4576), 1, anon_sym_EQ, - STATE(2182), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -235900,7 +236458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235916,7 +236474,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235938,97 +236496,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22613] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [23244] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(1393), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + STATE(2191), 1, + sym_comment, + ACTIONS(209), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, - anon_sym_STAR, - ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2183), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 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(2780), 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(118), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4570), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5151), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [22736] = 33, + 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, + [23317] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236045,39 +236578,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2184), 1, + STATE(2192), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -236085,27 +236618,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4572), 2, + ACTIONS(4578), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236118,7 +236651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22859] = 33, + [23440] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236135,39 +236668,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2185), 1, + STATE(2193), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -236175,27 +236708,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4574), 2, + ACTIONS(4580), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236208,18 +236741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22982] = 8, + [23563] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, + ACTIONS(1329), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2186), 1, + STATE(2194), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236273,18 +236806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23055] = 8, + [23636] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1341), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2187), 1, + STATE(2195), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236338,7 +236871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23128] = 33, + [23709] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236355,39 +236888,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2188), 1, + STATE(2196), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -236395,27 +236928,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4576), 2, + ACTIONS(4582), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236428,72 +236961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23251] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1345), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - STATE(2189), 1, - sym_comment, - ACTIONS(210), 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(2780), 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(118), 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, - [23324] = 33, + [23832] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236510,39 +236978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2190), 1, + STATE(2197), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -236550,27 +237018,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4578), 2, + ACTIONS(4584), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236583,72 +237051,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23447] = 8, + [23955] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4580), 1, - anon_sym_EQ, - STATE(2191), 1, - sym_comment, - ACTIONS(4242), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 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(4254), 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(4238), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 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(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2198), 1, + sym_comment, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 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, - [23520] = 33, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4586), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5155), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [24078] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -236665,39 +237158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2192), 1, + STATE(2199), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -236705,27 +237198,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4582), 2, + ACTIONS(4588), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -236738,18 +237231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23643] = 8, + [24201] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1331), 1, + ACTIONS(1385), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_EQ_GT, - STATE(2193), 1, + STATE(2200), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(209), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236803,108 +237296,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23716] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [24274] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + STATE(2201), 1, + sym_comment, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, - anon_sym_STAR, - ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2194), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 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(4229), 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(4218), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4584), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5151), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [23839] = 8, + 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, + [24347] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4586), 1, + ACTIONS(4280), 1, anon_sym_EQ, - STATE(2195), 1, + ACTIONS(4439), 1, + anon_sym_in, + ACTIONS(4442), 1, + anon_sym_of, + STATE(2202), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236920,7 +237390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236936,10 +237406,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(4238), 21, + ACTIONS(4218), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -236958,18 +237427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23912] = 8, + [24422] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1335), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2196), 1, + ACTIONS(4590), 1, + anon_sym_EQ, + STATE(2203), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236985,7 +237454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237001,7 +237470,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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237023,7 +237492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23985] = 33, + [24495] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237040,39 +237509,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2197), 1, + STATE(2204), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237080,27 +237549,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4588), 2, + ACTIONS(4592), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237113,7 +237582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24108] = 33, + [24618] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237130,39 +237599,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2198), 1, + STATE(2205), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237170,27 +237639,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4590), 2, + ACTIONS(4594), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237203,7 +237672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24231] = 33, + [24741] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237220,39 +237689,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2199), 1, + STATE(2206), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237260,27 +237729,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4592), 2, + ACTIONS(4596), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237293,7 +237762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24354] = 33, + [24864] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237310,39 +237779,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2200), 1, + STATE(2207), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237350,27 +237819,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4594), 2, + ACTIONS(4598), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237383,7 +237852,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24477] = 33, + [24987] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1381), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + STATE(2208), 1, + sym_comment, + ACTIONS(209), 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(2780), 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(118), 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, + [25060] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237400,39 +237934,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2201), 1, + STATE(2209), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237440,27 +237974,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4596), 2, + ACTIONS(4600), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237473,7 +238007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24600] = 33, + [25183] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237490,39 +238024,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2202), 1, + STATE(2210), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237530,27 +238064,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4598), 2, + ACTIONS(4602), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237563,18 +238097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24723] = 8, + [25306] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - ACTIONS(4600), 1, + ACTIONS(4604), 1, anon_sym_EQ, - STATE(2203), 1, + STATE(2211), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -237590,7 +238124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237606,7 +238140,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237628,108 +238162,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24796] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [25379] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3983), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4350), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + STATE(2212), 1, + sym_comment, + ACTIONS(4222), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, - ACTIONS(4500), 1, - anon_sym_STAR, - ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_async, - ACTIONS(4510), 1, - anon_sym_new, - ACTIONS(4512), 1, - anon_sym_static, - ACTIONS(4514), 1, - anon_sym_readonly, - ACTIONS(4520), 1, - anon_sym_override, - STATE(2204), 1, - sym_comment, - STATE(3591), 1, - sym_accessibility_modifier, - STATE(3622), 1, - sym_override_modifier, - STATE(3956), 1, - sym__property_name, - STATE(4128), 1, - sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5525), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(3993), 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(4229), 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(4218), 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(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4516), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4602), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4518), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5151), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4496), 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, - [24919] = 8, + 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, + [25452] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, + ACTIONS(4350), 1, anon_sym_EQ_GT, - STATE(2205), 1, + ACTIONS(4608), 1, + anon_sym_EQ, + STATE(2213), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -237745,7 +238254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237761,7 +238270,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(118), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237783,7 +238292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24992] = 33, + [25525] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237800,39 +238309,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2206), 1, + STATE(2214), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237840,27 +238349,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4604), 2, + ACTIONS(4610), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237873,7 +238382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25115] = 33, + [25648] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237890,39 +238399,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2207), 1, + STATE(2215), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -237930,27 +238439,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4606), 2, + ACTIONS(4612), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -237963,7 +238472,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25238] = 33, + [25771] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ_GT, + STATE(2216), 1, + sym_comment, + ACTIONS(209), 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(2780), 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(118), 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, + [25844] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237980,39 +238554,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2208), 1, + STATE(2217), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -238020,27 +238594,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4608), 2, + ACTIONS(4614), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238053,395 +238627,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25361] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4610), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_comment, - ACTIONS(4242), 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(4254), 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(4238), 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, - [25434] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1339), 1, - anon_sym_EQ, - ACTIONS(2785), 1, + [25967] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - STATE(2210), 1, - sym_comment, - ACTIONS(210), 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(2780), 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(118), 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, - [25507] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4612), 1, - anon_sym_EQ, - STATE(2211), 1, - sym_comment, - ACTIONS(4242), 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(4254), 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(4238), 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, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [25580] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4405), 1, - anon_sym_EQ, - STATE(2212), 1, - sym_comment, - ACTIONS(4254), 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(4242), 16, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, 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(4238), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 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, - [25651] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(2213), 1, - sym_comment, - ACTIONS(4254), 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(4242), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4508), 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(4238), 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, - [25722] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - STATE(2214), 1, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4512), 1, + anon_sym_new, + ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, + anon_sym_readonly, + ACTIONS(4522), 1, + anon_sym_override, + STATE(2218), 1, sym_comment, - ACTIONS(210), 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(2780), 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(118), 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, + STATE(3582), 1, + sym_accessibility_modifier, + STATE(3636), 1, + sym_override_modifier, + STATE(3945), 1, + sym__property_name, + STATE(4119), 1, + sym_formal_parameters, + STATE(5011), 1, + sym__call_signature, + STATE(5528), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(3993), 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, - [25795] = 33, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4518), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4616), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4520), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5155), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4498), 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, + [26090] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238458,39 +238734,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2215), 1, + STATE(2219), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -238498,27 +238774,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4614), 2, + ACTIONS(4618), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238531,7 +238807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25918] = 33, + [26213] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238548,39 +238824,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2216), 1, + STATE(2220), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -238588,27 +238864,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4616), 2, + ACTIONS(4620), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238621,72 +238897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26041] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4330), 1, - anon_sym_EQ_GT, - STATE(2217), 1, - sym_comment, - ACTIONS(210), 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(2780), 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(118), 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, - [26114] = 33, + [26336] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238703,39 +238914,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2218), 1, + STATE(2221), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -238743,27 +238954,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4618), 2, + ACTIONS(4622), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238776,34 +238987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26237] = 8, + [26459] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4371), 1, - anon_sym_EQ_GT, - ACTIONS(4620), 1, + ACTIONS(4419), 1, anon_sym_EQ, - STATE(2219), 1, + STATE(2222), 1, sym_comment, - ACTIONS(4242), 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(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238819,7 +239012,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(4238), 21, + ACTIONS(4222), 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(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238841,7 +239051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26310] = 33, + [26530] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238858,39 +239068,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2220), 1, + STATE(2223), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -238898,27 +239108,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - ACTIONS(4622), 2, + ACTIONS(4624), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238931,146 +239141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26433] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4420), 1, - anon_sym_EQ, - STATE(2221), 1, - sym_comment, - ACTIONS(4254), 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(4242), 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(4238), 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, - [26504] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, - STATE(2222), 1, - sym_comment, - ACTIONS(4242), 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(4254), 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(4238), 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, - [26579] = 7, + [26653] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4620), 1, + ACTIONS(4562), 1, anon_sym_EQ, - STATE(2223), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239086,7 +239166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239102,7 +239182,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239124,16 +239204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26649] = 7, + [26723] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4600), 1, + ACTIONS(4564), 1, anon_sym_EQ, - STATE(2224), 1, + STATE(2225), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239149,7 +239229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239165,7 +239245,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239187,16 +239267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26719] = 7, + [26793] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4612), 1, + ACTIONS(4606), 1, anon_sym_EQ, - STATE(2225), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239212,7 +239292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239228,7 +239308,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239250,16 +239330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26789] = 7, + [26863] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4586), 1, + ACTIONS(4604), 1, anon_sym_EQ, - STATE(2226), 1, + STATE(2227), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239275,7 +239355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239291,7 +239371,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239313,16 +239393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26859] = 7, + [26933] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4610), 1, + ACTIONS(4608), 1, anon_sym_EQ, - STATE(2227), 1, + STATE(2228), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239338,7 +239418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239354,7 +239434,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239376,16 +239456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26929] = 7, + [27003] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4558), 1, + ACTIONS(4552), 1, anon_sym_EQ, - STATE(2228), 1, + STATE(2229), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239401,7 +239481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239417,7 +239497,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239439,16 +239519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26999] = 7, + [27073] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4552), 1, + ACTIONS(4590), 1, anon_sym_EQ, - STATE(2229), 1, + STATE(2230), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239464,7 +239544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239480,7 +239560,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239502,16 +239582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27069] = 7, + [27143] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4568), 1, + ACTIONS(4576), 1, anon_sym_EQ, - STATE(2230), 1, + STATE(2231), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239527,7 +239607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239543,7 +239623,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239565,16 +239645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27139] = 7, + [27213] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4580), 1, + ACTIONS(4574), 1, anon_sym_EQ, - STATE(2231), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239590,7 +239670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239606,7 +239686,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239628,16 +239708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27209] = 7, + [27283] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4554), 1, + ACTIONS(4568), 1, anon_sym_EQ, - STATE(2232), 1, + STATE(2233), 1, sym_comment, - ACTIONS(4242), 15, + ACTIONS(4222), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -239653,7 +239733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4254), 15, + ACTIONS(4229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239669,7 +239749,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(4238), 21, + ACTIONS(4218), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239691,7 +239771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27279] = 32, + [27353] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -239708,39 +239788,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2233), 1, + STATE(2234), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -239748,24 +239828,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4775), 6, + STATE(4667), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -239778,7 +239858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27398] = 32, + [27472] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -239795,39 +239875,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2234), 1, + STATE(2235), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -239835,24 +239915,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4843), 6, + STATE(4805), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -239865,7 +239945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27517] = 32, + [27591] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -239882,39 +239962,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2235), 1, + STATE(2236), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -239922,24 +240002,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4687), 6, + STATE(4767), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -239952,7 +240032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27636] = 32, + [27710] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -239969,39 +240049,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2236), 1, + STATE(2237), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240009,24 +240089,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4729), 6, + STATE(4825), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240039,7 +240119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27755] = 32, + [27829] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240056,39 +240136,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2237), 1, + STATE(2238), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240096,24 +240176,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4811), 6, + STATE(4752), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240126,7 +240206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27874] = 32, + [27948] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240143,39 +240223,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2238), 1, + STATE(2239), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240183,24 +240263,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4826), 6, + STATE(4814), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240213,7 +240293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27993] = 32, + [28067] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240230,39 +240310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2239), 1, + STATE(2240), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240270,24 +240350,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4793), 6, + STATE(4802), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240300,7 +240380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28112] = 32, + [28186] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240317,39 +240397,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2240), 1, + STATE(2241), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240357,24 +240437,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4654), 6, + STATE(4700), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240387,7 +240467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28231] = 32, + [28305] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240404,39 +240484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2241), 1, + STATE(2242), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240444,24 +240524,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4655), 6, + STATE(5155), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240474,7 +240554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28350] = 32, + [28424] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240491,39 +240571,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4498), 1, - anon_sym_export, ACTIONS(4500), 1, + anon_sym_export, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4506), 1, - anon_sym_LBRACK, ACTIONS(4508), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4510), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4512), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4514), 1, + anon_sym_static, + ACTIONS(4516), 1, anon_sym_readonly, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - STATE(2242), 1, + STATE(2243), 1, sym_comment, - STATE(3591), 1, + STATE(3582), 1, sym_accessibility_modifier, - STATE(3622), 1, + STATE(3636), 1, sym_override_modifier, - STATE(3956), 1, + STATE(3945), 1, sym__property_name, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5009), 1, + STATE(5011), 1, sym__call_signature, - STATE(5525), 1, + STATE(5528), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, ACTIONS(3993), 2, anon_sym_PLUS, @@ -240531,24 +240611,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4516), 2, + ACTIONS(4518), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4518), 3, + ACTIONS(4520), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5151), 6, + STATE(4699), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4496), 12, + ACTIONS(4498), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240561,7 +240641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28469] = 35, + [28543] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -240594,41 +240674,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4634), 1, + anon_sym_as, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4637), 1, + ACTIONS(4639), 1, anon_sym_RBRACE, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, - STATE(2243), 1, + STATE(2244), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - STATE(6878), 1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240636,7 +240716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -240650,7 +240730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [28593] = 35, + [28667] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -240683,41 +240763,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4634), 1, + anon_sym_as, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4642), 1, - anon_sym_module, ACTIONS(4644), 1, + anon_sym_module, + ACTIONS(4646), 1, anon_sym_RBRACE, - STATE(2244), 1, + STATE(2245), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - STATE(6878), 1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240725,7 +240805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -240739,7 +240819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [28717] = 35, + [28791] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -240772,41 +240852,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4634), 1, + anon_sym_as, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, - ACTIONS(4647), 1, + ACTIONS(4649), 1, anon_sym_RBRACE, - STATE(2245), 1, + STATE(2246), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - STATE(6878), 1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240814,7 +240894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -240828,7 +240908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [28841] = 35, + [28915] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -240861,41 +240941,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4634), 1, + anon_sym_as, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, - ACTIONS(4650), 1, + ACTIONS(4652), 1, anon_sym_RBRACE, - STATE(2246), 1, + STATE(2247), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(6878), 1, + STATE(5844), 1, + aux_sym_object_repeat1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240903,7 +240983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -240917,7 +240997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [28965] = 35, + [29039] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -240950,41 +241030,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, - anon_sym_as, + anon_sym_EQ, ACTIONS(4634), 1, + anon_sym_as, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, - ACTIONS(4653), 1, + ACTIONS(4655), 1, anon_sym_RBRACE, - STATE(2247), 1, + STATE(2248), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - STATE(6878), 1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -240992,7 +241072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -241006,7 +241086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [29089] = 32, + [29163] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241015,47 +241095,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, - anon_sym_STAR, ACTIONS(4658), 1, - anon_sym_RBRACE, + anon_sym_STAR, ACTIONS(4660), 1, - anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - STATE(2248), 1, + STATE(2249), 1, sym_comment, - STATE(2254), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241063,21 +241143,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241091,7 +241171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29206] = 32, + [29280] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241100,47 +241180,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, - anon_sym_abstract, ACTIONS(4678), 1, + anon_sym_abstract, + ACTIONS(4680), 1, anon_sym_RBRACE, - STATE(2249), 1, + STATE(2250), 1, sym_comment, - STATE(2265), 1, + STATE(2272), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241148,21 +241228,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241176,7 +241256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29323] = 32, + [29397] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241185,47 +241265,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4680), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - STATE(2250), 1, + STATE(2251), 1, sym_comment, - STATE(2254), 1, + STATE(2266), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241233,21 +241313,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241261,81 +241341,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29440] = 29, + [29514] = 31, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, + ACTIONS(4687), 1, anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4684), 1, + ACTIONS(4690), 1, anon_sym_RBRACE, - ACTIONS(4686), 1, + ACTIONS(4692), 1, + anon_sym_SEMI, + ACTIONS(4695), 1, anon_sym_LBRACK, - ACTIONS(4688), 1, + ACTIONS(4698), 1, + anon_sym_DQUOTE, + ACTIONS(4701), 1, + anon_sym_SQUOTE, + ACTIONS(4704), 1, anon_sym_async, - ACTIONS(4690), 1, + ACTIONS(4713), 1, + anon_sym_AT, + ACTIONS(4716), 1, anon_sym_static, - ACTIONS(4692), 1, + ACTIONS(4719), 1, anon_sym_readonly, - ACTIONS(4698), 1, + ACTIONS(4725), 1, + anon_sym_declare, + ACTIONS(4731), 1, anon_sym_override, - STATE(2251), 1, - sym_comment, - STATE(3593), 1, + ACTIONS(4734), 1, + anon_sym_abstract, + STATE(3387), 1, + aux_sym_export_statement_repeat1, + STATE(3499), 1, + sym_method_definition, + STATE(3526), 1, + sym_class_static_block, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3621), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4441), 1, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, sym__property_name, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(5649), 1, - aux_sym_object_repeat1, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5530), 1, + sym_method_signature, + ACTIONS(4707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - ACTIONS(4694), 2, + ACTIONS(4722), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, + STATE(2252), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4696), 3, + ACTIONS(4728), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5631), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4682), 14, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4684), 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, @@ -241343,7 +241425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29551] = 32, + [29629] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241352,75 +241434,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4700), 1, + ACTIONS(4737), 1, anon_sym_RBRACE, STATE(2252), 1, + aux_sym_class_body_repeat1, + STATE(2253), 1, sym_comment, + STATE(3387), 1, + aux_sym_export_statement_repeat1, + STATE(3499), 1, + sym_method_definition, + STATE(3526), 1, + sym_class_static_block, + STATE(3540), 1, + sym_accessibility_modifier, + STATE(3620), 1, + sym_override_modifier, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, + sym__property_name, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4672), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, + [29746] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4658), 1, + anon_sym_STAR, + ACTIONS(4662), 1, + anon_sym_SEMI, + ACTIONS(4664), 1, + anon_sym_async, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, + anon_sym_readonly, + ACTIONS(4674), 1, + anon_sym_declare, + ACTIONS(4678), 1, + anon_sym_abstract, + ACTIONS(4739), 1, + anon_sym_RBRACE, STATE(2253), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2254), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, + sym_accessibility_modifier, + STATE(3620), 1, + sym_override_modifier, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, + sym__property_name, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4672), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, + [29863] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4658), 1, + anon_sym_STAR, + ACTIONS(4662), 1, + anon_sym_SEMI, + ACTIONS(4664), 1, + anon_sym_async, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, + anon_sym_readonly, + ACTIONS(4674), 1, + anon_sym_declare, + ACTIONS(4678), 1, + anon_sym_abstract, + ACTIONS(4741), 1, + anon_sym_RBRACE, + STATE(2252), 1, + aux_sym_class_body_repeat1, + STATE(2255), 1, + sym_comment, + STATE(3387), 1, + aux_sym_export_statement_repeat1, + STATE(3499), 1, + sym_method_definition, + STATE(3526), 1, + sym_class_static_block, + STATE(3540), 1, + sym_accessibility_modifier, + STATE(3620), 1, + sym_override_modifier, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, + sym__property_name, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4672), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, + [29980] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4745), 1, + anon_sym_RBRACE, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_async, + ACTIONS(4751), 1, + anon_sym_static, + ACTIONS(4753), 1, + anon_sym_readonly, + ACTIONS(4759), 1, + anon_sym_override, + STATE(2256), 1, + sym_comment, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, + STATE(4454), 1, sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(5711), 1, + aux_sym_object_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4755), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4757), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 13, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5706), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4743), 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, @@ -241428,7 +241762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29668] = 32, + [30091] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241437,47 +241771,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4702), 1, + ACTIONS(4761), 1, anon_sym_RBRACE, - STATE(2253), 1, + STATE(2257), 1, sym_comment, - STATE(2254), 1, + STATE(2275), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241485,21 +241819,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241513,83 +241847,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29785] = 31, + [30208] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4707), 1, + ACTIONS(223), 1, anon_sym_STAR, - ACTIONS(4710), 1, - anon_sym_RBRACE, - ACTIONS(4712), 1, - anon_sym_SEMI, - ACTIONS(4715), 1, - anon_sym_LBRACK, - ACTIONS(4718), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(4721), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4765), 1, + anon_sym_RBRACE, + ACTIONS(4767), 1, anon_sym_async, - ACTIONS(4733), 1, - anon_sym_AT, - ACTIONS(4736), 1, + ACTIONS(4769), 1, anon_sym_static, - ACTIONS(4739), 1, + ACTIONS(4771), 1, anon_sym_readonly, - ACTIONS(4745), 1, - anon_sym_declare, - ACTIONS(4751), 1, + ACTIONS(4777), 1, anon_sym_override, - ACTIONS(4754), 1, - anon_sym_abstract, - STATE(3368), 1, - aux_sym_export_statement_repeat1, - STATE(3515), 1, - sym_method_definition, - STATE(3533), 1, - sym_class_static_block, - STATE(3542), 1, + STATE(2258), 1, + sym_comment, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, + STATE(4454), 1, sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(4727), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4730), 2, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(5711), 1, + aux_sym_object_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4742), 2, + ACTIONS(4773), 2, anon_sym_get, anon_sym_set, - STATE(2254), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(4102), 2, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4748), 3, + ACTIONS(4775), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 13, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5706), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4763), 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, @@ -241597,84 +241929,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29900] = 32, + [30319] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, - ACTIONS(4662), 1, + ACTIONS(4781), 1, + anon_sym_RBRACE, + ACTIONS(4783), 1, anon_sym_async, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4785), 1, anon_sym_static, - ACTIONS(4668), 1, + ACTIONS(4787), 1, anon_sym_readonly, - ACTIONS(4672), 1, - anon_sym_declare, - ACTIONS(4676), 1, - anon_sym_abstract, - ACTIONS(4757), 1, - anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2255), 1, + ACTIONS(4793), 1, + anon_sym_override, + STATE(2259), 1, sym_comment, - STATE(3368), 1, - aux_sym_export_statement_repeat1, - STATE(3515), 1, - sym_method_definition, - STATE(3533), 1, - sym_class_static_block, - STATE(3542), 1, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, + STATE(4454), 1, sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(5711), 1, + aux_sym_object_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4789), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4791), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 13, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5706), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4779), 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, @@ -241682,7 +242011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30017] = 32, + [30430] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241691,47 +242020,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4759), 1, + ACTIONS(4795), 1, anon_sym_RBRACE, - STATE(2250), 1, - aux_sym_class_body_repeat1, - STATE(2256), 1, + STATE(2260), 1, sym_comment, - STATE(3368), 1, + STATE(2268), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241739,21 +242068,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241767,7 +242096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30134] = 32, + [30547] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241776,47 +242105,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4761), 1, + ACTIONS(4797), 1, anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2257), 1, + STATE(2261), 1, sym_comment, - STATE(3368), 1, + STATE(2262), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241824,21 +242153,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241852,7 +242181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30251] = 32, + [30664] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241861,47 +242190,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4763), 1, + ACTIONS(4799), 1, anon_sym_RBRACE, - STATE(2258), 1, - sym_comment, - STATE(2261), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2262), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241909,21 +242238,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241937,7 +242266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30368] = 32, + [30781] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241946,47 +242275,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4765), 1, + ACTIONS(4801), 1, anon_sym_RBRACE, - STATE(2259), 1, - sym_comment, - STATE(2266), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2263), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -241994,21 +242323,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242022,7 +242351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30485] = 29, + [30898] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242039,57 +242368,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4686), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4769), 1, + ACTIONS(4805), 1, anon_sym_RBRACE, - ACTIONS(4771), 1, + ACTIONS(4807), 1, anon_sym_async, - ACTIONS(4773), 1, + ACTIONS(4809), 1, anon_sym_static, - ACTIONS(4775), 1, + ACTIONS(4811), 1, anon_sym_readonly, - ACTIONS(4781), 1, + ACTIONS(4817), 1, anon_sym_override, - STATE(2260), 1, + STATE(2264), 1, sym_comment, - STATE(3593), 1, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3621), 1, + STATE(3625), 1, sym_override_modifier, - STATE(4441), 1, + STATE(4454), 1, sym__property_name, - STATE(5632), 1, + STATE(5634), 1, aux_sym_object_pattern_repeat1, - STATE(5712), 1, + STATE(5711), 1, aux_sym_object_repeat1, - STATE(7199), 1, + STATE(7205), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4777), 2, + ACTIONS(4813), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4779), 3, + ACTIONS(4815), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, + STATE(5628), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5708), 3, + STATE(5706), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4767), 14, + ACTIONS(4803), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242104,7 +242433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30596] = 32, + [31009] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242113,47 +242442,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4783), 1, + ACTIONS(4819), 1, anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2261), 1, + STATE(2265), 1, sym_comment, - STATE(3368), 1, + STATE(2284), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242161,109 +242490,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 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, - [30713] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(4787), 1, - anon_sym_RBRACE, - ACTIONS(4789), 1, - anon_sym_async, - ACTIONS(4791), 1, - anon_sym_static, - ACTIONS(4793), 1, - anon_sym_readonly, - ACTIONS(4799), 1, - anon_sym_override, - STATE(2262), 1, - sym_comment, - STATE(3593), 1, - sym_accessibility_modifier, - STATE(3621), 1, - sym_override_modifier, - STATE(4441), 1, - sym__property_name, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(5712), 1, - aux_sym_object_repeat1, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4795), 2, - anon_sym_get, - anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4797), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4785), 14, + ACTIONS(4498), 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, @@ -242271,7 +242518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30824] = 32, + [31126] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242280,47 +242527,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_RBRACE, - STATE(2263), 1, - sym_comment, - STATE(2264), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2266), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242328,21 +242575,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242356,7 +242603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30941] = 32, + [31243] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242365,47 +242612,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2249), 1, aux_sym_class_body_repeat1, - STATE(2264), 1, + STATE(2267), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242413,21 +242660,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242441,7 +242688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31058] = 32, + [31360] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242450,47 +242697,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2265), 1, + STATE(2268), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242498,21 +242745,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242526,7 +242773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31175] = 32, + [31477] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242535,47 +242782,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2266), 1, + STATE(2269), 1, sym_comment, - STATE(3368), 1, + STATE(2283), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242583,21 +242830,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242611,7 +242858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31292] = 32, + [31594] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242620,47 +242867,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_RBRACE, - STATE(2257), 1, + STATE(2255), 1, aux_sym_class_body_repeat1, - STATE(2267), 1, + STATE(2270), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242668,21 +242915,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242696,7 +242943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31409] = 32, + [31711] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242705,47 +242952,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_RBRACE, - STATE(2268), 1, - sym_comment, - STATE(2274), 1, + STATE(2263), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2271), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242753,21 +243000,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242781,7 +243028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31526] = 32, + [31828] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242790,47 +243037,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_RBRACE, - STATE(2269), 1, - sym_comment, - STATE(2271), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2272), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -242838,21 +243085,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242866,7 +243113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31643] = 29, + [31945] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242883,57 +243130,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4686), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4837), 1, anon_sym_RBRACE, - ACTIONS(4819), 1, + ACTIONS(4839), 1, anon_sym_async, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_static, - ACTIONS(4823), 1, + ACTIONS(4843), 1, anon_sym_readonly, - ACTIONS(4829), 1, + ACTIONS(4849), 1, anon_sym_override, - STATE(2270), 1, + STATE(2273), 1, sym_comment, - STATE(3593), 1, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3621), 1, + STATE(3625), 1, sym_override_modifier, - STATE(4441), 1, + STATE(4454), 1, sym__property_name, - STATE(5632), 1, + STATE(5634), 1, aux_sym_object_pattern_repeat1, - STATE(5712), 1, + STATE(5650), 1, aux_sym_object_repeat1, - STATE(7199), 1, + STATE(7205), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4825), 2, + ACTIONS(4845), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4827), 3, + ACTIONS(4847), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, + STATE(5628), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5708), 3, + STATE(5633), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4815), 14, + ACTIONS(4835), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242948,169 +243195,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31754] = 32, + [32056] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4506), 1, - anon_sym_LBRACK, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(223), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, - ACTIONS(4662), 1, - anon_sym_async, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_static, - ACTIONS(4668), 1, - anon_sym_readonly, - ACTIONS(4672), 1, - anon_sym_declare, - ACTIONS(4676), 1, - anon_sym_abstract, - ACTIONS(4831), 1, - anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2271), 1, - sym_comment, - STATE(3368), 1, - aux_sym_export_statement_repeat1, - STATE(3515), 1, - sym_method_definition, - STATE(3533), 1, - sym_class_static_block, - STATE(3542), 1, - sym_accessibility_modifier, - STATE(3627), 1, - sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, - sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4670), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4674), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 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, - [31871] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, - ACTIONS(4662), 1, + ACTIONS(4853), 1, + anon_sym_RBRACE, + ACTIONS(4855), 1, anon_sym_async, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4857), 1, anon_sym_static, - ACTIONS(4668), 1, + ACTIONS(4859), 1, anon_sym_readonly, - ACTIONS(4672), 1, - anon_sym_declare, - ACTIONS(4676), 1, - anon_sym_abstract, - ACTIONS(4833), 1, - anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2272), 1, + ACTIONS(4865), 1, + anon_sym_override, + STATE(2274), 1, sym_comment, - STATE(3368), 1, - aux_sym_export_statement_repeat1, - STATE(3515), 1, - sym_method_definition, - STATE(3533), 1, - sym_class_static_block, - STATE(3542), 1, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, + STATE(4454), 1, sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(5711), 1, + aux_sym_object_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4861), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4863), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 13, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5706), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4851), 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, @@ -243118,7 +243277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31988] = 32, + [32167] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243127,47 +243286,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4835), 1, + ACTIONS(4867), 1, anon_sym_RBRACE, - STATE(2248), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2273), 1, + STATE(2275), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243175,21 +243334,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243203,7 +243362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32105] = 32, + [32284] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243212,157 +243371,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4837), 1, + ACTIONS(4869), 1, anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_class_body_repeat1, - STATE(2274), 1, + STATE(2276), 1, sym_comment, - STATE(3368), 1, + STATE(2277), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, - sym_accessibility_modifier, - STATE(3627), 1, - sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, - sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4670), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4674), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 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, - [32222] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_RBRACE, - ACTIONS(4843), 1, - anon_sym_async, - ACTIONS(4845), 1, - anon_sym_static, - ACTIONS(4847), 1, - anon_sym_readonly, - ACTIONS(4853), 1, - anon_sym_override, - STATE(2275), 1, - sym_comment, - STATE(3593), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3621), 1, - sym_override_modifier, - STATE(4441), 1, - sym__property_name, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(5649), 1, - aux_sym_object_repeat1, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(3620), 1, + sym_override_modifier, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, + sym__property_name, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4849), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4851), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5631), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4839), 14, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, @@ -243370,7 +243447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32333] = 32, + [32401] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243379,47 +243456,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4855), 1, + ACTIONS(4871), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2276), 1, + STATE(2277), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243427,21 +243504,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243455,7 +243532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32450] = 32, + [32518] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243464,47 +243541,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4857), 1, + ACTIONS(4873), 1, anon_sym_RBRACE, - STATE(2272), 1, - aux_sym_class_body_repeat1, - STATE(2277), 1, + STATE(2278), 1, sym_comment, - STATE(3368), 1, + STATE(2280), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243512,21 +243589,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243540,84 +243617,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32567] = 32, + [32635] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, - ACTIONS(4662), 1, + ACTIONS(4877), 1, + anon_sym_RBRACE, + ACTIONS(4879), 1, anon_sym_async, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4881), 1, anon_sym_static, - ACTIONS(4668), 1, + ACTIONS(4883), 1, anon_sym_readonly, - ACTIONS(4672), 1, - anon_sym_declare, - ACTIONS(4676), 1, - anon_sym_abstract, - ACTIONS(4859), 1, - anon_sym_RBRACE, - STATE(2278), 1, + ACTIONS(4889), 1, + anon_sym_override, + STATE(2279), 1, sym_comment, - STATE(2282), 1, - aux_sym_class_body_repeat1, - STATE(3368), 1, - aux_sym_export_statement_repeat1, - STATE(3515), 1, - sym_method_definition, - STATE(3533), 1, - sym_class_static_block, - STATE(3542), 1, + STATE(3599), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3625), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3898), 1, + STATE(4454), 1, sym__property_name, - STATE(5528), 1, - sym_method_signature, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(5650), 1, + aux_sym_object_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4885), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4887), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4496), 13, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5633), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4875), 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, @@ -243625,7 +243699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32684] = 32, + [32746] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243634,47 +243708,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4861), 1, + ACTIONS(4891), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2279), 1, + STATE(2280), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243682,21 +243756,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243710,7 +243784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32801] = 32, + [32863] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243719,47 +243793,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4863), 1, + ACTIONS(4893), 1, anon_sym_RBRACE, - STATE(2280), 1, - sym_comment, - STATE(2287), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(3368), 1, + STATE(2281), 1, + sym_comment, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243767,21 +243841,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243795,7 +243869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32918] = 32, + [32980] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243804,47 +243878,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4865), 1, + ACTIONS(4895), 1, anon_sym_RBRACE, - STATE(2276), 1, - aux_sym_class_body_repeat1, - STATE(2281), 1, + STATE(2282), 1, sym_comment, - STATE(3368), 1, + STATE(2285), 1, + aux_sym_class_body_repeat1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243852,21 +243926,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243880,7 +243954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33035] = 32, + [33097] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243889,47 +243963,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4867), 1, + ACTIONS(4897), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2282), 1, + STATE(2283), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -243937,21 +244011,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243965,81 +244039,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33152] = 29, + [33214] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4871), 1, - anon_sym_RBRACE, - ACTIONS(4873), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4658), 1, + anon_sym_STAR, + ACTIONS(4662), 1, + anon_sym_SEMI, + ACTIONS(4664), 1, anon_sym_async, - ACTIONS(4875), 1, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(4668), 1, anon_sym_static, - ACTIONS(4877), 1, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4883), 1, - anon_sym_override, - STATE(2283), 1, + ACTIONS(4674), 1, + anon_sym_declare, + ACTIONS(4678), 1, + anon_sym_abstract, + ACTIONS(4899), 1, + anon_sym_RBRACE, + STATE(2252), 1, + aux_sym_class_body_repeat1, + STATE(2284), 1, sym_comment, - STATE(3593), 1, + STATE(3387), 1, + aux_sym_export_statement_repeat1, + STATE(3499), 1, + sym_method_definition, + STATE(3526), 1, + sym_class_static_block, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3621), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4441), 1, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, sym__property_name, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(5712), 1, - aux_sym_object_repeat1, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4879), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4881), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4869), 14, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, @@ -244047,81 +244124,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33263] = 29, + [33331] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_RBRACE, - ACTIONS(4889), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4658), 1, + anon_sym_STAR, + ACTIONS(4662), 1, + anon_sym_SEMI, + ACTIONS(4664), 1, anon_sym_async, - ACTIONS(4891), 1, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(4668), 1, anon_sym_static, - ACTIONS(4893), 1, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4899), 1, - anon_sym_override, - STATE(2284), 1, + ACTIONS(4674), 1, + anon_sym_declare, + ACTIONS(4678), 1, + anon_sym_abstract, + ACTIONS(4901), 1, + anon_sym_RBRACE, + STATE(2252), 1, + aux_sym_class_body_repeat1, + STATE(2285), 1, sym_comment, - STATE(3593), 1, + STATE(3387), 1, + aux_sym_export_statement_repeat1, + STATE(3499), 1, + sym_method_definition, + STATE(3526), 1, + sym_class_static_block, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3621), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4441), 1, + STATE(3678), 1, + sym_decorator, + STATE(3897), 1, sym__property_name, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(5712), 1, - aux_sym_object_repeat1, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5530), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4895), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4897), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5708), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4885), 14, + STATE(5789), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4498), 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, @@ -244129,7 +244209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33374] = 32, + [33448] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244138,47 +244218,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4903), 1, anon_sym_RBRACE, - STATE(2279), 1, + STATE(2252), 1, aux_sym_class_body_repeat1, - STATE(2285), 1, + STATE(2286), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -244186,21 +244266,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244214,7 +244294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33491] = 32, + [33565] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244223,47 +244303,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4903), 1, + ACTIONS(4905), 1, anon_sym_RBRACE, - STATE(2255), 1, - aux_sym_class_body_repeat1, STATE(2286), 1, + aux_sym_class_body_repeat1, + STATE(2287), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -244271,21 +244351,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244299,7 +244379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33608] = 32, + [33682] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244308,47 +244388,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4506), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4656), 1, + ACTIONS(4658), 1, anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_SEMI, ACTIONS(4662), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4664), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4666), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4668), 1, + anon_sym_static, + ACTIONS(4670), 1, anon_sym_readonly, - ACTIONS(4672), 1, + ACTIONS(4674), 1, anon_sym_declare, - ACTIONS(4676), 1, + ACTIONS(4678), 1, anon_sym_abstract, - ACTIONS(4905), 1, + ACTIONS(4907), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2281), 1, aux_sym_class_body_repeat1, - STATE(2287), 1, + STATE(2288), 1, sym_comment, - STATE(3368), 1, + STATE(3387), 1, aux_sym_export_statement_repeat1, - STATE(3515), 1, + STATE(3499), 1, sym_method_definition, - STATE(3533), 1, + STATE(3526), 1, sym_class_static_block, - STATE(3542), 1, + STATE(3540), 1, sym_accessibility_modifier, - STATE(3627), 1, + STATE(3620), 1, sym_override_modifier, - STATE(3652), 1, + STATE(3678), 1, sym_decorator, - STATE(3898), 1, + STATE(3897), 1, sym__property_name, - STATE(5528), 1, + STATE(5530), 1, sym_method_signature, ACTIONS(3993), 2, anon_sym_PLUS, @@ -244356,21 +244436,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4672), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, + ACTIONS(4676), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5785), 3, + STATE(5789), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4496), 13, + ACTIONS(4498), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -244384,64 +244464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33725] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2288), 1, - sym_comment, - ACTIONS(2250), 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(2252), 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, - [33787] = 32, + [33799] = 32, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -244474,36 +244497,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, - anon_sym_type, + anon_sym_default, ACTIONS(4630), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(4632), 1, + anon_sym_EQ, + ACTIONS(4634), 1, anon_sym_as, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, STATE(2289), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6878), 1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4907), 2, + ACTIONS(4909), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -244511,7 +244534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -244525,7 +244548,64 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [33903] = 31, + [33915] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2290), 1, + sym_comment, + ACTIONS(2172), 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(2174), 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, + [33977] = 31, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -244558,33 +244638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4624), 1, - anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_default, + anon_sym_STAR, ACTIONS(4628), 1, + anon_sym_default, + ACTIONS(4630), 1, anon_sym_type, - ACTIONS(4632), 1, + ACTIONS(4634), 1, anon_sym_as, - ACTIONS(4642), 1, + ACTIONS(4644), 1, anon_sym_module, - ACTIONS(4911), 1, + ACTIONS(4913), 1, anon_sym_EQ, - STATE(2290), 1, + STATE(2291), 1, sym_comment, - STATE(4885), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(4986), 1, - sym_declaration, - STATE(4993), 1, + STATE(4995), 1, sym_internal_module, - STATE(5565), 1, + STATE(4996), 1, + sym_declaration, + STATE(5567), 1, sym_export_clause, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6878), 1, + STATE(6884), 1, sym_namespace_export, - ACTIONS(4640), 9, + ACTIONS(4642), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -244594,7 +244674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5000), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -244608,14 +244688,14 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [34017] = 5, + [34091] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2291), 1, + STATE(2292), 1, sym_comment, - ACTIONS(2260), 14, + ACTIONS(2314), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244630,7 +244710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(2262), 34, + ACTIONS(2316), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -244665,286 +244745,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [34079] = 9, + [34153] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, - anon_sym_DOT, ACTIONS(4917), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(4919), 1, - anon_sym_is, - STATE(2292), 1, - sym_comment, - STATE(2402), 1, - sym_type_arguments, - ACTIONS(4913), 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(4314), 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, - anon_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, - [34148] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, anon_sym_LT, ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4923), 1, - anon_sym_DOT, + anon_sym_is, STATE(2293), 1, sym_comment, - STATE(2373), 1, - sym_type_arguments, - STATE(2374), 1, - sym_arguments, - ACTIONS(4256), 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(4244), 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, - [34219] = 26, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(4927), 1, - anon_sym_async, - ACTIONS(4929), 1, - anon_sym_static, - ACTIONS(4931), 1, - anon_sym_readonly, - ACTIONS(4937), 1, - anon_sym_override, - STATE(2294), 1, - sym_comment, - STATE(3593), 1, - sym_accessibility_modifier, - STATE(3621), 1, - sym_override_modifier, - STATE(4441), 1, - sym__property_name, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4157), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4933), 2, - anon_sym_get, - anon_sym_set, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4935), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6537), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6538), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4925), 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, - [34322] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4947), 1, - anon_sym_QMARK_DOT, - STATE(2295), 1, - sym_comment, - STATE(2418), 1, - sym_type_arguments, - STATE(2574), 1, - sym_arguments, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(4939), 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(4941), 27, - 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_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, - [34399] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4953), 1, - anon_sym_DOT, - STATE(2296), 1, - sym_comment, - STATE(2368), 1, + STATE(2436), 1, sym_type_arguments, - STATE(2369), 1, - sym_arguments, - ACTIONS(4949), 12, + ACTIONS(4915), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244957,73 +244773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4951), 30, + ACTIONS(4307), 31, 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, - [34470] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_LT, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4959), 1, - anon_sym_DOT, - STATE(2297), 1, - sym_comment, - STATE(2371), 1, - sym_type_arguments, - STATE(2372), 1, - sym_arguments, - ACTIONS(4955), 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(4957), 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, @@ -245049,14 +244805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34541] = 5, + [34222] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2298), 1, + ACTIONS(4919), 1, + anon_sym_LT, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4929), 1, + anon_sym_DOT, + STATE(2294), 1, sym_comment, - ACTIONS(4430), 14, + STATE(2337), 1, + sym_type_arguments, + STATE(2343), 1, + sym_arguments, + ACTIONS(4923), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245067,23 +244833,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, - anon_sym_QMARK, - ACTIONS(4961), 32, + ACTIONS(4925), 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, @@ -245104,16 +244866,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34601] = 6, + [34293] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4967), 1, - anon_sym_is, - STATE(2299), 1, + ACTIONS(4919), 1, + anon_sym_LT, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4939), 1, + anon_sym_QMARK_DOT, + STATE(2295), 1, sym_comment, - ACTIONS(4963), 13, + STATE(2350), 1, + sym_type_arguments, + STATE(2606), 1, + sym_arguments, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(4931), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245124,23 +244900,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(4965), 32, + ACTIONS(4933), 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, @@ -245158,79 +244929,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34663] = 7, + [34370] = 26, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, anon_sym_LBRACE, - STATE(2300), 1, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4943), 1, + anon_sym_async, + ACTIONS(4945), 1, + anon_sym_static, + ACTIONS(4947), 1, + anon_sym_readonly, + ACTIONS(4953), 1, + anon_sym_override, + STATE(2296), 1, sym_comment, - STATE(2464), 1, - sym_statement_block, - ACTIONS(2126), 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(2130), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(3599), 1, + sym_accessibility_modifier, + STATE(3625), 1, + sym_override_modifier, + STATE(4454), 1, + sym__property_name, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4157), 2, 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, - [34727] = 8, + ACTIONS(4949), 2, + anon_sym_get, + anon_sym_set, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4951), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6535), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6537), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4941), 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, + [34473] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(4919), 1, + anon_sym_LT, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4955), 1, anon_sym_DOT, - STATE(2301), 1, + STATE(2297), 1, sym_comment, - STATE(2464), 1, - sym_statement_block, - ACTIONS(2126), 13, + STATE(2347), 1, + sym_type_arguments, + STATE(2349), 1, + sym_arguments, + ACTIONS(4258), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245241,21 +245035,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(2130), 30, - sym__automatic_semicolon, + ACTIONS(4248), 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_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -245274,19 +245066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [34793] = 7, + anon_sym_extends, + anon_sym_implements, + [34544] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4917), 1, + ACTIONS(4919), 1, anon_sym_LT, - STATE(2302), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_DOT, + STATE(2298), 1, sym_comment, - STATE(2387), 1, + STATE(2344), 1, sym_type_arguments, - ACTIONS(4963), 12, + STATE(2345), 1, + sym_arguments, + ACTIONS(4957), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245299,19 +245098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 32, + ACTIONS(4959), 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, @@ -245332,16 +245129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34857] = 6, + [34615] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4917), 1, + anon_sym_DOT, ACTIONS(4919), 1, - anon_sym_is, - STATE(2303), 1, + anon_sym_LT, + STATE(2299), 1, sym_comment, - ACTIONS(4973), 13, + STATE(2436), 1, + sym_type_arguments, + ACTIONS(4915), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245352,10 +245153,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(4975), 32, + ACTIONS(4307), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245367,7 +245167,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, @@ -245388,20 +245187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34919] = 8, + [34681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_DOT, - STATE(2304), 1, + ACTIONS(4921), 1, + anon_sym_is, + STATE(2300), 1, sym_comment, - STATE(2464), 1, - sym_statement_block, - ACTIONS(2126), 13, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245415,18 +245210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2130), 30, - sym__automatic_semicolon, + ACTIONS(4965), 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, anon_sym_PIPE_PIPE, @@ -245445,15 +245241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [34985] = 5, + anon_sym_extends, + anon_sym_implements, + [34743] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2305), 1, + STATE(2301), 1, sym_comment, - ACTIONS(2061), 13, + ACTIONS(4454), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245467,7 +245264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2063), 33, + anon_sym_QMARK, + ACTIONS(4967), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245500,15 +245298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [35045] = 5, + [34803] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2306), 1, + ACTIONS(4921), 1, + anon_sym_is, + STATE(2302), 1, sym_comment, - ACTIONS(4452), 14, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245522,8 +245321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4979), 32, + ACTIONS(4971), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245556,14 +245354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35105] = 5, + [34865] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2307), 1, + STATE(2303), 1, sym_comment, - ACTIONS(2250), 14, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245577,8 +245375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2252), 32, + ACTIONS(4975), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245611,18 +245408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35165] = 7, + anon_sym_is, + [34925] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(4981), 1, - sym__automatic_semicolon, - STATE(2308), 1, + anon_sym_is, + STATE(2304), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(4977), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245636,7 +245432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2222), 31, + ACTIONS(4979), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245667,15 +245463,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, - [35229] = 5, + [34987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2309), 1, + STATE(2305), 1, sym_comment, - ACTIONS(4983), 13, + ACTIONS(2314), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245689,7 +245486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4985), 33, + anon_sym_QMARK, + ACTIONS(2316), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245722,15 +245520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [35289] = 5, + [35047] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2310), 1, + STATE(2306), 1, sym_comment, - ACTIONS(4438), 14, + ACTIONS(2172), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245745,7 +245542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(4987), 32, + ACTIONS(2174), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245778,14 +245575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35349] = 5, + [35107] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2311), 1, + ACTIONS(4983), 1, + sym__automatic_semicolon, + STATE(2307), 1, sym_comment, - ACTIONS(2260), 14, + ACTIONS(2138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245799,8 +245600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2262), 32, + ACTIONS(2190), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245831,22 +245631,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, - [35409] = 8, + [35171] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, - anon_sym_DOT, - ACTIONS(4917), 1, - anon_sym_LT, - STATE(2312), 1, + STATE(2308), 1, sym_comment, - STATE(2402), 1, - sym_type_arguments, - ACTIONS(4913), 12, + ACTIONS(4450), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245857,9 +245650,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(4314), 31, + anon_sym_QMARK, + ACTIONS(4985), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -245871,6 +245666,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, @@ -245891,21 +245687,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35475] = 8, + [35231] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(2309), 1, + sym_comment, + STATE(2632), 1, + sym_statement_block, + ACTIONS(2122), 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(2128), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(4993), 1, + 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, - STATE(2313), 1, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [35295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2310), 1, sym_comment, - STATE(2625), 2, - sym_template_string, - sym_arguments, - ACTIONS(4989), 13, + ACTIONS(2061), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245919,12 +245765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4991), 29, + ACTIONS(2063), 33, 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, @@ -245947,18 +245794,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, + anon_sym_extends, anon_sym_implements, - [35541] = 6, + anon_sym_is, + [35355] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4919), 1, - anon_sym_is, - STATE(2314), 1, + STATE(2311), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(4456), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245972,7 +245820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 32, + anon_sym_QMARK, + ACTIONS(4989), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246005,18 +245854,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35603] = 7, + [35415] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(2315), 1, + ACTIONS(4991), 1, + anon_sym_DOT, + STATE(2312), 1, sym_comment, - STATE(2603), 1, + STATE(2632), 1, + sym_statement_block, + ACTIONS(2122), 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(2128), 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, + [35481] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + STATE(2313), 1, + sym_comment, + STATE(2647), 2, + sym_template_string, + sym_arguments, + ACTIONS(4993), 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(4995), 29, + 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_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [35547] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + ACTIONS(4999), 1, + anon_sym_DOT, + STATE(2314), 1, + sym_comment, + STATE(2632), 1, sym_statement_block, - ACTIONS(2126), 13, + ACTIONS(2122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246030,11 +245997,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2130), 30, + ACTIONS(2128), 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, + [35613] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(2315), 1, + sym_comment, + STATE(2398), 1, + sym_type_arguments, + ACTIONS(4977), 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(4979), 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, @@ -246060,8 +246083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [35666] = 5, + [35677] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -246115,7 +246139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35725] = 5, + [35736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -246169,14 +246193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35784] = 5, + [35795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2318), 1, sym_comment, - ACTIONS(5001), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246190,7 +246214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 32, + ACTIONS(5011), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246223,14 +246247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35843] = 5, + [35854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2319), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246244,7 +246268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 32, + ACTIONS(5015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246277,14 +246301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35902] = 5, + [35913] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2320), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246298,7 +246322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5011), 32, + ACTIONS(5019), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246331,16 +246355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35961] = 6, + [35972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, - anon_sym_LBRACK, STATE(2321), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246354,7 +246376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5015), 31, + ACTIONS(5023), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246364,6 +246386,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, @@ -246386,16 +246409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36022] = 6, + [36031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, STATE(2322), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(5025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246409,7 +246430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 31, + ACTIONS(5027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246440,29 +246461,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36083] = 5, + [36090] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, STATE(2323), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(5029), 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(5021), 32, + ACTIONS(5031), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246493,34 +246519,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36142] = 8, + [36155] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, STATE(2324), 1, sym_comment, - ACTIONS(5023), 11, + ACTIONS(5039), 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(5025), 31, + ACTIONS(5041), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246551,33 +246572,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, - [36207] = 8, + [36214] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, STATE(2325), 1, sym_comment, - ACTIONS(5033), 11, + ACTIONS(5025), 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(5035), 31, + ACTIONS(5027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246608,39 +246626,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, - [36272] = 5, + [36273] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2326), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5043), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5011), 32, + ACTIONS(4222), 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, @@ -246661,16 +246683,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, - [36331] = 5, + [36336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2327), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246684,7 +246705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 32, + ACTIONS(4965), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246717,86 +246738,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36390] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [36395] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, ACTIONS(5037), 1, + anon_sym_extends, + STATE(2328), 1, + sym_comment, + ACTIONS(5047), 11, anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 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(5049), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5044), 1, anon_sym_RBRACE, - ACTIONS(5047), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - STATE(2328), 1, + 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, + [36460] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5063), 1, + anon_sym_extends, + STATE(2329), 1, sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(5057), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5060), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 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(5055), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [36485] = 5, + 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, + [36527] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2329), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(5065), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246810,7 +246874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 32, + ACTIONS(5067), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246843,14 +246907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36544] = 5, + [36586] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2330), 1, + ACTIONS(5069), 1, + anon_sym_LBRACK, + STATE(2331), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(5065), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246864,7 +246930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 32, + ACTIONS(5067), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246874,7 +246940,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, @@ -246897,14 +246962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36603] = 5, + [36647] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2331), 1, + STATE(2332), 1, sym_comment, - ACTIONS(3289), 13, + ACTIONS(4977), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246918,7 +246983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3641), 32, + ACTIONS(4979), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -246951,14 +247016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36662] = 5, + [36706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2332), 1, + STATE(2333), 1, sym_comment, - ACTIONS(3291), 13, + ACTIONS(5071), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246972,7 +247037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3507), 32, + ACTIONS(5073), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247005,14 +247070,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36721] = 5, + [36765] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2333), 1, + ACTIONS(3679), 1, + anon_sym_extends, + STATE(2334), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5078), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2140), 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(2146), 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, + [36832] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2335), 1, sym_comment, - ACTIONS(5063), 13, + ACTIONS(5025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247026,7 +247149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5065), 32, + ACTIONS(5027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247059,16 +247182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36780] = 6, + [36891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5067), 1, - sym__automatic_semicolon, - STATE(2334), 1, + STATE(2336), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247082,7 +247203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 31, + ACTIONS(5083), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247113,160 +247234,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, - [36841] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4947), 1, - anon_sym_QMARK_DOT, - STATE(2335), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(2184), 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(2186), 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_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, - [36908] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5077), 1, - anon_sym_RPAREN, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2336), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7325), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37033] = 5, + [36950] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2337), 1, sym_comment, - ACTIONS(3293), 13, + ACTIONS(5085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247280,7 +247257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 32, + ACTIONS(5087), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247313,75 +247290,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37092] = 5, + [37009] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2338), 1, - sym_comment, - ACTIONS(5119), 13, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 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, - ACTIONS(5121), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5096), 1, anon_sym_RBRACE, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + STATE(2338), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, 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_extends, - anon_sym_implements, - [37151] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [37104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, STATE(2339), 1, sym_comment, - ACTIONS(5123), 12, + ACTIONS(5107), 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, @@ -247389,7 +247383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5125), 32, + ACTIONS(5109), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247422,14 +247416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37212] = 5, + [37163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2340), 1, sym_comment, - ACTIONS(5127), 13, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247443,7 +247437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 32, + ACTIONS(5083), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247476,14 +247470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37271] = 5, + [37222] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4983), 1, + sym__automatic_semicolon, STATE(2341), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(2138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247497,7 +247493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 32, + ACTIONS(2190), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247528,16 +247524,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, - [37330] = 5, + [37283] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2342), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(5111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247551,7 +247546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 32, + ACTIONS(5113), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247584,14 +247579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37389] = 5, + [37342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2343), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(5115), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247605,7 +247600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 32, + ACTIONS(5117), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247638,14 +247633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37448] = 5, + [37401] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2344), 1, sym_comment, - ACTIONS(4494), 13, + ACTIONS(5119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247659,7 +247654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5135), 32, + ACTIONS(5121), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247692,14 +247687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37507] = 5, + [37460] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2345), 1, sym_comment, - ACTIONS(5137), 13, + ACTIONS(5123), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247713,7 +247708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5139), 32, + ACTIONS(5125), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247746,14 +247741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37566] = 5, + [37519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2346), 1, sym_comment, - ACTIONS(5141), 13, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247767,7 +247762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5143), 32, + ACTIONS(5129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247800,32 +247795,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37625] = 8, + [37578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, STATE(2347), 1, sym_comment, - ACTIONS(5145), 11, + ACTIONS(5131), 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(5147), 31, + ACTIONS(5133), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247856,15 +247847,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, - [37690] = 5, + [37637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2348), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247878,7 +247870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 32, + ACTIONS(5003), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247911,14 +247903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37749] = 5, + [37696] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2349), 1, sym_comment, - ACTIONS(4477), 13, + ACTIONS(5135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247932,7 +247924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5149), 32, + ACTIONS(5137), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -247965,14 +247957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37808] = 5, + [37755] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, STATE(2350), 1, sym_comment, - ACTIONS(4475), 13, + STATE(2512), 1, + sym_arguments, + ACTIONS(5139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247986,13 +247982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5151), 32, + ACTIONS(5141), 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, @@ -248017,16 +248012,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, - [37867] = 5, + [37818] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2351), 1, sym_comment, - ACTIONS(4473), 13, + ACTIONS(5143), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248040,7 +248034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 32, + ACTIONS(5145), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248073,14 +248067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37926] = 5, + [37877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2352), 1, sym_comment, - ACTIONS(4471), 13, + ACTIONS(5147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248094,7 +248088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5155), 32, + ACTIONS(5149), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248127,28 +248121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37985] = 5, + [37936] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, STATE(2353), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5151), 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(5159), 32, + ACTIONS(5153), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248179,16 +248177,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, - [38044] = 5, + [38001] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2354), 1, sym_comment, - ACTIONS(4473), 13, + ACTIONS(4463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248202,7 +248199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 32, + ACTIONS(5155), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248235,14 +248232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38103] = 5, + [38060] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5157), 1, + sym__automatic_semicolon, STATE(2355), 1, sym_comment, - ACTIONS(4469), 13, + ACTIONS(2208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248256,7 +248255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 32, + ACTIONS(2212), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248287,16 +248286,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, - [38162] = 5, + [38121] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2356), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248310,7 +248308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 32, + ACTIONS(5161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248343,32 +248341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38221] = 8, + [38180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, STATE(2357), 1, sym_comment, - ACTIONS(5163), 11, + ACTIONS(5163), 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(5165), 31, + ACTIONS(5165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248399,29 +248393,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [38286] = 5, + [38239] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, STATE(2358), 1, sym_comment, - ACTIONS(4469), 13, + ACTIONS(5167), 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(5161), 32, + ACTIONS(5169), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248452,34 +248451,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [38345] = 8, + [38304] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, STATE(2359), 1, sym_comment, - ACTIONS(5167), 11, + ACTIONS(5163), 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(5169), 31, + ACTIONS(5165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248510,15 +248504,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, - [38410] = 5, + [38363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2360), 1, sym_comment, - ACTIONS(5167), 13, + ACTIONS(3405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248532,7 +248527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 32, + ACTIONS(3569), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248565,16 +248560,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38469] = 6, + [38422] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5175), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5179), 1, + anon_sym_RPAREN, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2361), 1, sym_comment, - ACTIONS(5171), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(6998), 1, + sym_type_annotation, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2362), 1, + sym_comment, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248588,7 +248668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5173), 31, + ACTIONS(5129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248600,6 +248680,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, @@ -248620,14 +248701,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38530] = 5, + [38606] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2362), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5221), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2363), 1, sym_comment, - ACTIONS(3283), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7175), 1, + sym_type_annotation, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38731] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5223), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2364), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(6981), 1, + sym_type_annotation, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38856] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2365), 1, + sym_comment, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248641,7 +248896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3657), 32, + ACTIONS(5083), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248674,16 +248929,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38589] = 6, + [38915] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5178), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, - STATE(2363), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5225), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2366), 1, sym_comment, - ACTIONS(5171), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7411), 1, + sym_type_annotation, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39040] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2367), 1, + sym_comment, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248697,7 +249037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5173), 31, + ACTIONS(5165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248709,6 +249049,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, @@ -248729,14 +249070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38650] = 5, + [39099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2364), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5181), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248750,7 +249091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 32, + ACTIONS(5007), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248783,14 +249124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38709] = 5, + [39158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2365), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5185), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248804,7 +249145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5187), 32, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248837,14 +249178,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38768] = 5, + [39217] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2366), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4939), 1, + anon_sym_QMARK_DOT, + STATE(2370), 1, sym_comment, - ACTIONS(5189), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(2256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248858,7 +249207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 32, + ACTIONS(2258), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -248868,10 +249217,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, @@ -248889,103 +249235,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, - [38827] = 38, + [39284] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2367), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7154), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [38952] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2368), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5195), 13, + ACTIONS(5231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248999,7 +249257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 32, + ACTIONS(5233), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249032,14 +249290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39011] = 5, + [39343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2369), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5199), 13, + ACTIONS(5235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249053,7 +249311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5201), 32, + ACTIONS(5237), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249086,101 +249344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39070] = 38, + [39402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5203), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2370), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7022), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39195] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2371), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5205), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249194,7 +249365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5207), 32, + ACTIONS(5241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249227,14 +249398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39254] = 5, + [39461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2372), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(3247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249248,7 +249419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 32, + ACTIONS(3579), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249281,14 +249452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39313] = 5, + [39520] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2373), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249302,7 +249473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 32, + ACTIONS(5245), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249335,14 +249506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39372] = 5, + [39579] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2374), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5217), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249356,7 +249527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5219), 32, + ACTIONS(5241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249389,101 +249560,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39431] = 38, + [39638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + STATE(2377), 1, + sym_comment, + ACTIONS(3377), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3679), 32, sym__ternary_qmark, - ACTIONS(5221), 1, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2375), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(6979), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, + 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, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 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(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [39556] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [39697] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2376), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249497,7 +249635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 32, + ACTIONS(5015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249530,14 +249668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39615] = 5, + [39756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2377), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(5247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249551,7 +249689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 32, + ACTIONS(5249), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249584,86 +249722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39674] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - ACTIONS(5231), 1, - anon_sym_RBRACE, - STATE(2378), 1, - sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [39769] = 5, + [39815] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2379), 1, + STATE(2380), 1, sym_comment, - ACTIONS(4462), 13, + ACTIONS(5251), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249677,7 +249743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5234), 32, + ACTIONS(5253), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249710,28 +249776,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39828] = 5, + [39874] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2380), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5255), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2381), 1, sym_comment, - ACTIONS(4460), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7339), 1, + sym_type_annotation, + ACTIONS(5171), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39999] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5033), 1, anon_sym_AMP, + ACTIONS(5035), 1, anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, + STATE(2382), 1, + sym_comment, + ACTIONS(5257), 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(5236), 32, + ACTIONS(5259), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249762,30 +249919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [39887] = 5, + [40064] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2381), 1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, + STATE(2383), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(5261), 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(5229), 32, + ACTIONS(5263), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249816,16 +249976,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, - [39946] = 5, + [40129] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2382), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(4465), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249839,7 +249998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 32, + ACTIONS(5265), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249872,14 +250031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40005] = 5, + [40188] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2383), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2385), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249893,7 +250054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 32, + ACTIONS(4222), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249924,16 +250085,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, - [40064] = 5, + [40249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2384), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249947,7 +250107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 32, + ACTIONS(5241), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -249980,14 +250140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40123] = 5, + [40308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2385), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250001,7 +250161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 32, + ACTIONS(5269), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250034,14 +250194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40182] = 5, + [40367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2386), 1, + STATE(2388), 1, sym_comment, - ACTIONS(4458), 13, + ACTIONS(5167), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250055,7 +250215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5242), 32, + ACTIONS(5169), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250088,14 +250248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40241] = 5, + [40426] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2387), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5244), 13, + ACTIONS(5271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250109,7 +250269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5246), 32, + ACTIONS(5273), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250142,14 +250302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40300] = 5, + [40485] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2388), 1, + STATE(2390), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(3241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250163,7 +250323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 32, + ACTIONS(3599), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250196,19 +250356,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40359] = 7, + [40544] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + ACTIONS(5275), 1, + anon_sym_RBRACE, + STATE(2391), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [40639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5217), 1, - anon_sym_QMARK, - STATE(2389), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5219), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5252), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250222,13 +250449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 29, + ACTIONS(5015), 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, @@ -250251,15 +250480,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, - [40422] = 5, + [40698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2390), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(5151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250273,7 +250503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 32, + ACTIONS(5153), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250306,14 +250536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40481] = 5, + [40757] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2391), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250327,7 +250557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 32, + ACTIONS(5278), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250360,14 +250590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40540] = 5, + [40816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2392), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250381,7 +250611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5258), 32, + ACTIONS(5245), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250414,14 +250644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40599] = 5, + [40875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2393), 1, + STATE(2396), 1, sym_comment, - ACTIONS(5260), 13, + ACTIONS(4467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250435,7 +250665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5262), 32, + ACTIONS(5280), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250468,16 +250698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40658] = 6, + [40934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5268), 1, - anon_sym_extends, - STATE(2394), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5264), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250491,7 +250719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5266), 31, + ACTIONS(5278), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250522,15 +250750,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, - [40719] = 5, + [40993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2395), 1, + STATE(2398), 1, sym_comment, - ACTIONS(5270), 13, + ACTIONS(5282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250544,7 +250773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 32, + ACTIONS(5284), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250577,33 +250806,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40778] = 8, + [41052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5280), 1, - anon_sym_extends, - STATE(2396), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5278), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5274), 11, + ACTIONS(5159), 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(5276), 30, + ACTIONS(5161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250613,6 +250837,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, @@ -250633,72 +250858,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40843] = 8, + [41111] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5029), 1, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, - STATE(2397), 1, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5286), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2400), 1, sym_comment, - ACTIONS(5282), 11, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7096), 1, + sym_type_annotation, + ACTIONS(5171), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 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, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41236] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4323), 1, anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5288), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2401), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7157), 1, + sym_type_annotation, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [40908] = 5, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41361] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2398), 1, + STATE(2402), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(4488), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250712,7 +251055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 32, + ACTIONS(5290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250745,14 +251088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40967] = 5, + [41420] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2399), 1, + ACTIONS(5296), 1, + anon_sym_DOT, + STATE(2403), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250766,7 +251111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 32, + ACTIONS(5294), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250778,7 +251123,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, @@ -250799,115 +251143,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41026] = 38, + [41481] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5033), 1, anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5035), 1, anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5294), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2400), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7100), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41151] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2401), 1, + ACTIONS(5037), 1, + anon_sym_extends, + STATE(2404), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5298), 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(5292), 32, + ACTIONS(5300), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250938,16 +251199,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, - [41210] = 5, + [41546] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2402), 1, + STATE(2405), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250961,7 +251221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5298), 32, + ACTIONS(5304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -250994,14 +251254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41269] = 5, + [41605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2403), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251015,7 +251275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 32, + ACTIONS(5308), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251048,14 +251308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41328] = 5, + [41664] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2404), 1, + STATE(2407), 1, sym_comment, - ACTIONS(5300), 13, + ACTIONS(2152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251069,18 +251329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 32, + ACTIONS(2154), 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, @@ -251100,16 +251361,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, - [41387] = 5, + anon_sym_PIPE_RBRACE, + [41723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2405), 1, + STATE(2408), 1, sym_comment, - ACTIONS(5300), 13, + ACTIONS(5310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251123,7 +251383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 32, + ACTIONS(5312), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251156,14 +251416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41446] = 5, + [41782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2406), 1, + STATE(2409), 1, sym_comment, - ACTIONS(5304), 13, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251177,7 +251437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5306), 32, + ACTIONS(4971), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251210,14 +251470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41505] = 5, + [41841] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2407), 1, + ACTIONS(5314), 1, + anon_sym_LBRACE, + STATE(2410), 1, sym_comment, - ACTIONS(5300), 13, + STATE(2592), 1, + sym_statement_block, + ACTIONS(2122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251231,10 +251495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 32, + ACTIONS(2128), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251262,16 +251525,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, - [41564] = 5, + [41904] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2408), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5308), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251285,7 +251547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5310), 32, + ACTIONS(5316), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251318,21 +251580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41623] = 6, + [41963] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - STATE(2409), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5312), 12, + ACTIONS(5318), 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, @@ -251340,7 +251601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5314), 32, + ACTIONS(5063), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251373,14 +251634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41684] = 5, + [42022] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2410), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5316), 13, + ACTIONS(5039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251394,7 +251655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5318), 32, + ACTIONS(5041), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251427,14 +251688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41743] = 5, + [42081] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2411), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(4492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251448,7 +251709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5322), 32, + ACTIONS(5320), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251481,68 +251742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41802] = 5, + [42140] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2412), 1, - sym_comment, - ACTIONS(5324), 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(5326), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5314), 1, 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(5322), 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_extends, - anon_sym_implements, - [41861] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2413), 1, + STATE(2415), 1, sym_comment, - ACTIONS(5328), 13, + STATE(2592), 1, + sym_statement_block, + ACTIONS(2122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251556,10 +251769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 32, + ACTIONS(2128), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251568,7 +251780,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, @@ -251587,16 +251798,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, - [41920] = 5, + [42205] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2414), 1, + ACTIONS(5328), 1, + anon_sym_DOT, + STATE(2416), 1, sym_comment, - ACTIONS(5328), 13, + ACTIONS(5324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251610,7 +251822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 32, + ACTIONS(5326), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251622,7 +251834,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, @@ -251643,124 +251854,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41979] = 5, + [42266] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2415), 1, - sym_comment, - ACTIONS(5328), 13, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 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, - ACTIONS(5330), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + ACTIONS(5331), 1, anon_sym_RBRACE, + STATE(2417), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, 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_extends, - anon_sym_implements, - [42038] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [42361] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2416), 1, - sym_comment, - ACTIONS(5332), 13, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 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, - ACTIONS(5334), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + ACTIONS(5334), 1, anon_sym_RBRACE, + STATE(2418), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, 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_extends, - anon_sym_implements, - [42097] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [42456] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5340), 1, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5337), 1, anon_sym_DOT, - STATE(2417), 1, + STATE(2419), 1, sym_comment, - ACTIONS(5336), 13, + STATE(2592), 1, + sym_statement_block, + ACTIONS(2122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251774,10 +252025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 31, + ACTIONS(2128), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -251804,20 +252054,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, - [42158] = 7, + [42521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - STATE(2418), 1, + STATE(2420), 1, sym_comment, - STATE(2591), 1, - sym_arguments, - ACTIONS(5342), 13, + ACTIONS(5339), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251831,12 +252076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5344), 30, + ACTIONS(5341), 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, @@ -251861,145 +252107,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42221] = 6, + [42580] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(2419), 1, - sym_comment, - ACTIONS(5346), 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(5348), 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, + ACTIONS(4323), 1, anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5217), 1, anon_sym_satisfies, - anon_sym_implements, - [42282] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, - STATE(2420), 1, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5343), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2421), 1, sym_comment, - ACTIONS(5350), 11, + STATE(5797), 1, + sym_optional_chain, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + STATE(7426), 1, + sym_type_annotation, + ACTIONS(5171), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5352), 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(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [42347] = 8, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42705] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, - STATE(2421), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5346), 11, + ACTIONS(4484), 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(5348), 31, + ACTIONS(5345), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252030,15 +252248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42412] = 5, + [42764] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2422), 1, + ACTIONS(5135), 1, + anon_sym_QMARK, + STATE(2423), 1, sym_comment, - ACTIONS(5354), 13, + ACTIONS(5137), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252052,15 +252276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5356), 32, + ACTIONS(5349), 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, @@ -252083,121 +252305,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42471] = 38, + [42827] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4323), 1, anon_sym_COLON, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, + ACTIONS(5175), 1, anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5358), 1, + ACTIONS(5351), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2423), 1, + STATE(2424), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, + STATE(6201), 1, aux_sym_sequence_expression_repeat1, - STATE(7314), 1, + STATE(7330), 1, sym_type_annotation, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42596] = 8, + [42952] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_extends, - STATE(2424), 1, + ACTIONS(5353), 1, + anon_sym_DOT, + STATE(2425), 1, sym_comment, - ACTIONS(5360), 11, + ACTIONS(5324), 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(5362), 31, + ACTIONS(5326), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252209,7 +252428,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, @@ -252228,102 +252446,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, - [42661] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5364), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2425), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7404), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [42786] = 5, + [43013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2426), 1, sym_comment, - ACTIONS(4963), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252337,7 +252469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 32, + ACTIONS(5356), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252370,16 +252502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42845] = 6, + [43072] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5017), 1, - anon_sym_LBRACK, STATE(2427), 1, sym_comment, - ACTIONS(5278), 13, + ACTIONS(5358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252393,7 +252523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 31, + ACTIONS(5360), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252403,6 +252533,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, @@ -252425,14 +252556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42906] = 5, + [43131] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2428), 1, sym_comment, - ACTIONS(5278), 13, + ACTIONS(3227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252446,7 +252577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 32, + ACTIONS(3669), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252479,14 +252610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42965] = 5, + [43190] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2429), 1, sym_comment, - ACTIONS(4973), 13, + ACTIONS(5362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252500,7 +252631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 32, + ACTIONS(5364), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252533,20 +252664,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43024] = 5, + [43249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5033), 1, + anon_sym_AMP, STATE(2430), 1, sym_comment, - ACTIONS(5366), 13, + ACTIONS(5366), 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, @@ -252587,100 +252719,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43083] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2431), 1, - sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [43178] = 5, + [43310] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2432), 1, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + anon_sym_PIPE, + ACTIONS(5037), 1, + anon_sym_extends, + STATE(2431), 1, sym_comment, - ACTIONS(5373), 13, + ACTIONS(5370), 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(5375), 32, + ACTIONS(5372), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252711,18 +252775,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, - [43237] = 6, + [43375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4981), 1, - sym__automatic_semicolon, - STATE(2433), 1, + STATE(2432), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(4484), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252736,7 +252797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2222), 31, + ACTIONS(5345), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252767,27 +252828,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, - [43298] = 8, + [43434] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, - anon_sym_DOT, - STATE(2434), 1, + ACTIONS(5033), 1, + anon_sym_AMP, + STATE(2433), 1, sym_comment, - STATE(2603), 1, - sym_statement_block, - ACTIONS(2126), 13, + ACTIONS(5374), 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, @@ -252795,9 +252852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2130), 29, + ACTIONS(5376), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -252806,6 +252864,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, @@ -252824,21 +252883,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, - [43363] = 8, + [43495] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, - anon_sym_LBRACE, - ACTIONS(5379), 1, - anon_sym_DOT, - STATE(2435), 1, + STATE(2434), 1, sym_comment, - STATE(2603), 1, - sym_statement_block, - ACTIONS(2126), 13, + ACTIONS(5045), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252852,9 +252906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2130), 29, + ACTIONS(5043), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -252863,6 +252918,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, @@ -252881,273 +252937,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [43428] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [43554] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - ACTIONS(5381), 1, - anon_sym_RBRACE, - STATE(2436), 1, - sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [43523] = 23, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, + STATE(2435), 1, + sym_comment, + ACTIONS(5378), 13, anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 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(5380), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - ACTIONS(5384), 1, anon_sym_RBRACE, - STATE(2437), 1, - sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [43618] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5387), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2438), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7420), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43743] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [43613] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2439), 1, + STATE(2436), 1, sym_comment, - ACTIONS(5308), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5310), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4238), 10, + ACTIONS(5382), 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(4242), 29, + ACTIONS(5384), 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, @@ -253168,29 +253045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [43806] = 9, + [43672] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5391), 1, - anon_sym_EQ, - STATE(2440), 1, - sym_comment, - ACTIONS(5395), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5398), 3, - anon_sym_GT, + ACTIONS(5033), 1, anon_sym_AMP, + ACTIONS(5035), 1, anon_sym_PIPE, - ACTIONS(5389), 10, + ACTIONS(5037), 1, + anon_sym_extends, + STATE(2437), 1, + sym_comment, + ACTIONS(5386), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253198,14 +253072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 28, + ACTIONS(5388), 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, @@ -253227,28 +253104,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43873] = 9, + [43737] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3581), 1, + ACTIONS(5067), 1, anon_sym_extends, - STATE(2441), 1, - sym_comment, - ACTIONS(5401), 2, - anon_sym_COMMA, + ACTIONS(5069), 1, anon_sym_LBRACK, - ACTIONS(5404), 3, - anon_sym_GT, + STATE(2438), 1, + sym_comment, + ACTIONS(5065), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2144), 10, + ACTIONS(5390), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253256,13 +253130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 28, + ACTIONS(5392), 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, @@ -253285,101 +253161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43940] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5407), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2442), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - STATE(7151), 1, - sym_type_annotation, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [44065] = 5, + [43802] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2443), 1, + ACTIONS(5398), 1, + anon_sym_extends, + STATE(2439), 1, sym_comment, - ACTIONS(2166), 13, + ACTIONS(5394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253393,19 +253184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2168), 32, - sym__automatic_semicolon, + ACTIONS(5396), 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, @@ -253425,15 +253215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [44124] = 5, + anon_sym_implements, + [43863] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2444), 1, + ACTIONS(4979), 1, + anon_sym_extends, + STATE(2440), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(5370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253447,19 +253239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2174), 32, - sym__automatic_semicolon, + ACTIONS(5372), 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, @@ -253479,15 +253270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [44183] = 5, + anon_sym_implements, + [43924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2445), 1, + STATE(2441), 1, sym_comment, - ACTIONS(3267), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253501,7 +253292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3581), 32, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253534,14 +253325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [44242] = 5, + [43983] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2446), 1, + ACTIONS(5069), 1, + anon_sym_LBRACK, + STATE(2442), 1, sym_comment, - ACTIONS(5409), 13, + ACTIONS(5400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253555,7 +253348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5411), 31, + ACTIONS(5402), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253565,7 +253358,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, @@ -253586,24 +253378,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, - [44300] = 7, + [44044] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2447), 1, + STATE(2443), 1, sym_comment, - ACTIONS(5391), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5413), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5389), 13, + ACTIONS(2250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253617,11 +253401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 24, + ACTIONS(2252), 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, @@ -253642,98 +253433,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44362] = 36, + anon_sym_PIPE_RBRACE, + [44103] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + STATE(2444), 1, + sym_comment, + ACTIONS(5404), 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(5406), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5420), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2448), 1, - sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5428), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44482] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [44162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2449), 1, + STATE(2445), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(5159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253747,18 +253509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2198), 31, - sym__automatic_semicolon, + ACTIONS(5161), 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, @@ -253778,24 +253540,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [44540] = 7, + anon_sym_extends, + anon_sym_implements, + [44221] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2450), 1, - sym_comment, - ACTIONS(2146), 2, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5472), 5, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + ACTIONS(5408), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(2446), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2144), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [44316] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5413), 1, + anon_sym_DOT, + ACTIONS(5415), 1, + anon_sym_LT, + STATE(2447), 1, + sym_comment, + STATE(2984), 1, + sym_arguments, + STATE(2985), 1, + sym_type_arguments, + ACTIONS(4957), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253806,16 +253642,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(2150), 24, + ACTIONS(4959), 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, @@ -253834,143 +253671,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44602] = 6, + anon_sym_extends, + [44384] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - STATE(2451), 1, - sym_comment, - ACTIONS(5389), 13, - anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, + ACTIONS(5441), 1, anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2448), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44504] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2449), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - [44662] = 34, + ACTIONS(5473), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [44620] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2452), 1, + STATE(2450), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5475), 4, + ACTIONS(5509), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [44778] = 20, + [44736] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -253979,45 +253929,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5037), 1, + ACTIONS(5089), 1, anon_sym_STAR, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5049), 1, + ACTIONS(5101), 1, anon_sym_async, - ACTIONS(5231), 1, + ACTIONS(5408), 1, anon_sym_RBRACE, - ACTIONS(5477), 1, + ACTIONS(5511), 1, anon_sym_LBRACK, - STATE(2453), 1, + STATE(2451), 1, sym_comment, - STATE(3950), 1, + STATE(3959), 1, sym__property_name, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5053), 2, + ACTIONS(5105), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4496), 20, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254038,303 +253988,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44866] = 11, + [44824] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5483), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2454), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2452), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - STATE(2549), 2, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5513), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [44940] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(2453), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5481), 25, + ACTIONS(5515), 16, + sym__automatic_semicolon, 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_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, - [44936] = 34, + [45030] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2455), 1, + STATE(2454), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5487), 4, + ACTIONS(5519), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [45052] = 34, + [45146] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2456), 1, + STATE(2455), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5521), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45168] = 34, + [45266] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2456), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -254343,178 +254387,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [45284] = 34, + [45382] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(2457), 1, + sym_comment, + ACTIONS(2240), 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(2244), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2458), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45440] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2458), 1, + sym_comment, + ACTIONS(2270), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5525), 4, + ACTIONS(2274), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [45400] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2459), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45498] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2459), 1, + sym_comment, + ACTIONS(2278), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5527), 4, + ACTIONS(2282), 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, - [45516] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [45556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2460), 1, sym_comment, - ACTIONS(5529), 13, + ACTIONS(2286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254528,7 +254567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5531), 31, + ACTIONS(2290), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254560,247 +254599,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45574] = 34, + [45614] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2461), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(5525), 4, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [45690] = 34, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [45730] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2462), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(5527), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [45806] = 21, + [45846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, - anon_sym_STAR_STAR, - ACTIONS(5557), 1, - anon_sym_LT, STATE(2463), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [45896] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2464), 1, - sym_comment, - ACTIONS(2178), 13, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254814,18 +254784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 31, - sym__automatic_semicolon, + ACTIONS(2186), 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, @@ -254845,17 +254815,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [45954] = 6, + anon_sym_implements, + [45904] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5575), 1, - anon_sym_EQ, - STATE(2465), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5529), 1, + anon_sym_LT, + STATE(2464), 1, sym_comment, - ACTIONS(5573), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254866,50 +254858,36 @@ 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(5577), 30, + ACTIONS(5515), 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_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, - [46014] = 6, + [45984] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2466), 1, + STATE(2465), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(5532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254923,7 +254901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 30, + ACTIONS(5534), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254931,6 +254909,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, @@ -254954,105 +254933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46074] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5231), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2467), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5581), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 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, - [46160] = 16, + [46042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5555), 1, - anon_sym_STAR_STAR, - ACTIONS(5583), 1, - anon_sym_LT, - STATE(2468), 1, + STATE(2466), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255063,112 +254951,49 @@ 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(5569), 19, - sym__automatic_semicolon, + ACTIONS(5538), 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, - [46240] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5549), 1, - anon_sym_PIPE, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, - anon_sym_STAR_STAR, - ACTIONS(5557), 1, - anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2469), 1, - sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5535), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5563), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5559), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 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_BQUOTE, anon_sym_satisfies, - [46344] = 5, + anon_sym_implements, + [46100] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2470), 1, + STATE(2467), 1, sym_comment, - ACTIONS(2310), 13, + ACTIONS(5540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255182,7 +255007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2314), 31, + ACTIONS(5542), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255214,38 +255039,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46402] = 5, + [46158] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2471), 1, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(2468), 1, sym_comment, - ACTIONS(2294), 13, + ACTIONS(5544), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(2298), 31, + ACTIONS(4222), 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, @@ -255267,275 +255095,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46460] = 29, + [46222] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2469), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [46308] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5537), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5541), 1, + ACTIONS(5560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2472), 1, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5588), 1, + sym__ternary_qmark, + STATE(2470), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 9, + ACTIONS(5509), 4, 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, - [46566] = 36, + [46424] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - ACTIONS(5586), 1, - anon_sym_COMMA, - ACTIONS(5589), 1, - anon_sym_RBRACE, - STATE(2473), 1, + STATE(2471), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46686] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5597), 1, - anon_sym_LT, - STATE(2474), 1, - sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 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(5595), 20, + ACTIONS(5513), 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, - [46764] = 21, + [46540] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5507), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - STATE(2313), 1, - sym_type_arguments, - STATE(2475), 1, + ACTIONS(5578), 1, + anon_sym_LT, + STATE(2472), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5497), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 7, + ACTIONS(5517), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -255543,13 +255378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 16, + ACTIONS(5515), 16, + 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_CARET, @@ -255560,201 +255395,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [46854] = 16, + [46630] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5509), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5556), 1, + anon_sym_GT, + ACTIONS(5558), 1, + anon_sym_AMP_AMP, + ACTIONS(5560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, + anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, + anon_sym_PERCENT, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5600), 1, + ACTIONS(5578), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2476), 1, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5588), 1, + sym__ternary_qmark, + ACTIONS(5592), 1, + anon_sym_in, + STATE(2473), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5554), 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(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 19, - 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_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [46934] = 34, + ACTIONS(5590), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [46748] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2477), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2474), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5595), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5603), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [47050] = 19, + [46868] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5583), 1, + ACTIONS(5597), 1, anon_sym_LT, - STATE(2478), 1, + STATE(2475), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 8, + ACTIONS(5517), 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(5569), 18, + ACTIONS(5515), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -255766,6 +255618,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, @@ -255773,199 +255626,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47136] = 28, + [46948] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2479), 1, + ACTIONS(5578), 1, + anon_sym_LT, + STATE(2476), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 10, + ACTIONS(5515), 10, + 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_QMARK_QMARK, anon_sym_satisfies, - [47240] = 29, + [47052] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5495), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2480), 1, + ACTIONS(5578), 1, + anon_sym_LT, + STATE(2477), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 9, + ACTIONS(5515), 9, + 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_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47346] = 19, + [47158] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5507), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5600), 1, + ACTIONS(5597), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2481), 1, + STATE(2478), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5505), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 8, + ACTIONS(5517), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -255974,13 +255827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 18, + ACTIONS(5515), 18, + 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, @@ -255993,792 +255846,801 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47432] = 36, + [47244] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5562), 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, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5586), 1, - anon_sym_COMMA, - ACTIONS(5589), 1, - anon_sym_RBRACE, - STATE(2482), 1, + STATE(2479), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47552] = 25, + ACTIONS(5515), 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, + [47342] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5507), 1, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - STATE(2313), 1, - sym_type_arguments, - STATE(2483), 1, + ACTIONS(5578), 1, + anon_sym_LT, + STATE(2480), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5569), 11, + ACTIONS(5515), 11, + 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [47650] = 36, + [47442] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5589), 1, - anon_sym_RBRACE, - ACTIONS(5605), 1, - anon_sym_COMMA, - STATE(2484), 1, + STATE(2481), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47770] = 36, + ACTIONS(5515), 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, + [47544] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - 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, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5597), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5608), 1, - anon_sym_COMMA, - ACTIONS(5611), 1, - anon_sym_RBRACE, - STATE(2485), 1, + STATE(2482), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + ACTIONS(5554), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47890] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(2486), 1, - sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, - anon_sym_STAR, + ACTIONS(5517), 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(4242), 28, + ACTIONS(5515), 18, + sym__automatic_semicolon, 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_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, anon_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, - [47954] = 27, + [47628] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5507), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - STATE(2313), 1, - sym_type_arguments, - STATE(2487), 1, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5517), 1, + anon_sym_BANG, + STATE(2483), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 10, + ACTIONS(5515), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [48056] = 26, + [47732] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, + anon_sym_AMP_AMP, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5507), 1, + ACTIONS(5487), 1, + anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2488), 1, + STATE(2484), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5600), 4, 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, - [48156] = 25, + [47848] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5597), 1, anon_sym_LT, - STATE(2489), 1, + STATE(2485), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5559), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5569), 11, + ACTIONS(5515), 17, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [48254] = 26, + anon_sym_instanceof, + [47934] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5541), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5553), 1, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2490), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5517), 1, + anon_sym_BANG, + STATE(2486), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 11, + ACTIONS(5515), 9, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [48354] = 7, + [48040] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2491), 1, - sym_comment, - ACTIONS(5575), 2, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5619), 5, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5331), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5511), 1, + anon_sym_LBRACK, + STATE(2487), 1, + sym_comment, + STATE(3959), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5573), 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(5577), 24, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [48128] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2488), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [48416] = 18, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5602), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [48244] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5507), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5600), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5529), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2492), 1, + STATE(2489), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2549), 2, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 10, + ACTIONS(5517), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 18, + ACTIONS(5515), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -256791,239 +256653,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [48500] = 27, + [48330] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2493), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(2490), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 10, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5515), 11, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [48602] = 18, + [48428] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5553), 1, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5583), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2494), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(2491), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 10, - anon_sym_BANG, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 18, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 11, 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_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, - [48686] = 5, + [48528] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2495), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(2492), 1, sym_comment, - ACTIONS(5622), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5487), 31, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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, - [48744] = 19, + [48630] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5555), 1, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5583), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5529), 1, anon_sym_LT, - STATE(2496), 1, + STATE(2493), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 11, - anon_sym_STAR, + ACTIONS(5517), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -257031,90 +256920,66 @@ 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(5569), 17, + ACTIONS(5515), 18, 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_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, - [48830] = 5, + anon_sym_satisfies, + [48714] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2497), 1, - sym_comment, - ACTIONS(2274), 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(2278), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5431), 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, + ACTIONS(5451), 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, + ACTIONS(5465), 1, anon_sym_BQUOTE, + ACTIONS(5467), 1, anon_sym_satisfies, - anon_sym_implements, - [48888] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2498), 1, + ACTIONS(5529), 1, + anon_sym_LT, + STATE(2494), 1, sym_comment, - ACTIONS(2266), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -257123,263 +256988,227 @@ 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(2270), 31, + ACTIONS(5515), 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, - [48946] = 5, + [48800] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2499), 1, - sym_comment, - ACTIONS(2244), 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(2248), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5431), 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(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5574), 1, anon_sym_PERCENT, + ACTIONS(5576), 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, + ACTIONS(5578), 1, + anon_sym_LT, + STATE(2495), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [49004] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2500), 1, - sym_comment, - ACTIONS(2154), 13, + ACTIONS(5554), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 31, + ACTIONS(5515), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_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, - [49062] = 5, + [48894] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2501), 1, - sym_comment, - ACTIONS(2236), 13, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 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, - ACTIONS(2240), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5331), 1, anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2496), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, 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, - [49120] = 23, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [48980] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2502), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(2497), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, + ACTIONS(5517), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 13, + ACTIONS(5515), 13, 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, @@ -257388,381 +257217,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [49214] = 30, + [49074] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5571), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5517), 1, anon_sym_BANG, - STATE(2503), 1, + STATE(2498), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 8, + ACTIONS(5515), 8, 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, - [49322] = 34, + [49182] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2504), 1, + STATE(2499), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5624), 4, + ACTIONS(5604), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [49438] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5370), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2505), 1, - sym_comment, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [49526] = 34, + [49298] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2506), 1, + STATE(2500), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5626), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49642] = 9, + [49418] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5628), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5630), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5558), 1, + anon_sym_AMP_AMP, + ACTIONS(5560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, + anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, + anon_sym_PERCENT, + ACTIONS(5576), 1, + anon_sym_STAR_STAR, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5632), 1, - anon_sym_is, - STATE(2507), 1, + STATE(2501), 1, sym_comment, - STATE(2862), 1, + STATE(2742), 1, sym_type_arguments, - ACTIONS(4913), 12, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4314), 28, + ACTIONS(5584), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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, - [49708] = 5, + [49526] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2508), 1, + STATE(2502), 1, sym_comment, - ACTIONS(5634), 13, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257776,7 +257560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5636), 31, + ACTIONS(5610), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257808,189 +257592,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49766] = 5, + [49584] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2509), 1, - sym_comment, - ACTIONS(5638), 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(5640), 31, - sym__ternary_qmark, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5421), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5465), 1, anon_sym_BQUOTE, + ACTIONS(5467), 1, anon_sym_satisfies, - anon_sym_implements, - [49824] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2510), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5581), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 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, - [49910] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2511), 1, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2503), 1, sym_comment, - ACTIONS(5642), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5644), 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(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [49968] = 5, + ACTIONS(5612), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49704] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2512), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5618), 1, + anon_sym_LT, + STATE(2504), 1, sym_comment, - ACTIONS(5646), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -257999,23 +257721,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(5648), 31, + ACTIONS(5616), 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, @@ -258029,352 +257742,548 @@ 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, - [50026] = 35, + [49788] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2513), 1, + STATE(2505), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5589), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50144] = 34, + ACTIONS(5600), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49904] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2514), 1, + STATE(2506), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5652), 4, + ACTIONS(5525), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_SEMI, + [50020] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5334), 1, + anon_sym_RBRACE, + ACTIONS(5511), 1, + anon_sym_LBRACK, + STATE(2507), 1, + sym_comment, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [50108] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5334), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2508), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, anon_sym_SEMI, - [50260] = 36, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [50194] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2515), 1, + STATE(2509), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5654), 2, + ACTIONS(5621), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50380] = 36, + [50314] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5623), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2510), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 17, + sym__ternary_qmark, + 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_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, + [50400] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2516), 1, + STATE(2511), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5656), 2, + ACTIONS(5626), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50500] = 5, + [50520] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2517), 1, + STATE(2512), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(5628), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258388,7 +258297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2174), 31, + ACTIONS(5630), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258420,14 +258329,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50558] = 5, + [50578] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2518), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5477), 1, + anon_sym_AMP_AMP, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, + anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5517), 1, + anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, + STATE(2513), 1, sym_comment, - ACTIONS(2166), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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_satisfies, + [50686] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2514), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 13, + 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, + [50780] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5275), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2515), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [50866] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2516), 1, + sym_comment, + ACTIONS(5632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258441,7 +258566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2168), 31, + ACTIONS(5634), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258473,14 +258598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [50616] = 5, + [50924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2519), 1, + STATE(2517), 1, sym_comment, - ACTIONS(2288), 13, + ACTIONS(5636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258494,18 +258619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 31, - sym__automatic_semicolon, + ACTIONS(5638), 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, @@ -258525,46 +258650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [50674] = 19, + anon_sym_implements, + [50982] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5600), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2520), 1, + STATE(2518), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 11, + ACTIONS(5640), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -258573,63 +258669,51 @@ 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(5569), 17, + ACTIONS(5473), 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, - [50760] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5662), 1, - anon_sym_LT, - STATE(2521), 1, + STATE(2519), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 11, + ACTIONS(5642), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -258638,14 +258722,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(5660), 18, - sym__automatic_semicolon, + ACTIONS(5513), 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, @@ -258659,163 +258752,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50844] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51098] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - STATE(2313), 1, - sym_type_arguments, - STATE(2522), 1, + STATE(2520), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5644), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5571), 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(5569), 13, + ACTIONS(5519), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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, - [50938] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, - STATE(2523), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 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, - [51046] = 5, + anon_sym_implements, + [51156] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2524), 1, + STATE(2521), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(5646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258829,7 +258831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5667), 31, + ACTIONS(5648), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258861,262 +258863,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51104] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, - anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2525), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5624), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [51220] = 36, + [51214] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2526), 1, + STATE(2522), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5669), 2, + ACTIONS(5650), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51340] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, - anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2527), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5626), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [51456] = 5, + [51334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2528), 1, + STATE(2523), 1, sym_comment, - ACTIONS(5671), 13, + ACTIONS(5652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259130,7 +258968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5673), 31, + ACTIONS(5523), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259162,43 +259000,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51514] = 18, + [51392] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5415), 1, + anon_sym_LT, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_LT, - STATE(2529), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + STATE(2524), 1, sym_comment, - STATE(2656), 1, + STATE(2903), 1, sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, + STATE(3169), 1, sym_arguments, - ACTIONS(5658), 11, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(4931), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -259209,11 +259036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 18, + ACTIONS(4933), 24, 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, @@ -259228,33 +259057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51598] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51466] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5682), 1, - anon_sym_LT, - STATE(2530), 1, + STATE(2525), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(5656), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259265,15 +259079,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(5680), 22, - sym__automatic_semicolon, + ACTIONS(5658), 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, @@ -259289,840 +259111,928 @@ 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, - [51674] = 35, + anon_sym_implements, + [51524] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5535), 1, - anon_sym_GT, - ACTIONS(5537), 1, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - ACTIONS(5687), 1, - anon_sym_in, - STATE(2531), 1, + STATE(2526), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5543), 2, + ACTIONS(5556), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5685), 4, + ACTIONS(5600), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [51792] = 36, + [51640] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + STATE(2527), 1, + sym_comment, + ACTIONS(2208), 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(2212), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5420), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2532), 1, + anon_sym_implements, + [51698] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2528), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(2200), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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(2202), 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(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5690), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51912] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51756] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2533), 1, + STATE(2529), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5626), 4, + ACTIONS(5525), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52028] = 34, + [51872] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5415), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_DOT, + ACTIONS(5662), 1, + anon_sym_is, + STATE(2530), 1, + sym_comment, + STATE(2864), 1, + sym_type_arguments, + ACTIONS(4915), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4307), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2534), 1, + anon_sym_extends, + [51938] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2531), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5664), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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(5666), 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(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5624), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [52144] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51996] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, + anon_sym_BANG, STATE(2313), 1, sym_type_arguments, - STATE(2535), 1, + STATE(2532), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5692), 4, + ACTIONS(5515), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [52260] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [52100] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5275), 1, + anon_sym_RBRACE, + ACTIONS(5511), 1, + anon_sym_LBRACK, + STATE(2533), 1, + sym_comment, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [52188] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2536), 1, + STATE(2534), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5694), 4, + ACTIONS(5668), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [52376] = 34, + [52304] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, + ACTIONS(5497), 1, + anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2537), 1, + STATE(2535), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5696), 4, + ACTIONS(5515), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [52492] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [52406] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2538), 1, + STATE(2536), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 4, + ACTIONS(5670), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [52608] = 36, + [52522] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - 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, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5623), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2539), 1, - sym_comment, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(2537), 1, + sym_comment, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 10, + 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5515), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5700), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52728] = 34, + anon_sym_satisfies, + [52606] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2540), 1, + STATE(2538), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5702), 4, + ACTIONS(5527), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [52844] = 5, + [52722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2541), 1, + STATE(2539), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(5672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260136,7 +260046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2232), 31, + ACTIONS(5674), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260168,120 +260078,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52902] = 5, + [52780] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2542), 1, - sym_comment, - ACTIONS(2214), 13, - anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, + ACTIONS(5441), 1, anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2540), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2218), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5676), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [52896] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, anon_sym_PERCENT, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5578), 1, + anon_sym_LT, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5588), 1, + sym__ternary_qmark, + STATE(2541), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [52960] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2543), 1, - sym_comment, - ACTIONS(2206), 13, + ACTIONS(5554), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2210), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5584), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5678), 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, + [53012] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2542), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53018] = 5, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5670), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [53128] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2544), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5684), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2543), 1, sym_comment, - ACTIONS(2300), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260292,23 +260364,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(2302), 31, + ACTIONS(5682), 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, @@ -260322,21 +260386,44 @@ 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, - [53076] = 5, + [53206] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2545), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2544), 1, sym_comment, - ACTIONS(2190), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -260345,23 +260432,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(2194), 31, + ACTIONS(5616), 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_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -260375,252 +260453,262 @@ 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, - [53134] = 36, + [53290] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2546), 1, + STATE(2545), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53254] = 30, + ACTIONS(5602), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [53406] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2547), 1, - sym_comment, - STATE(2656), 1, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(5716), 1, + STATE(2546), 1, + sym_comment, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5602), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53362] = 23, + anon_sym_COLON, + anon_sym_RBRACK, + [53522] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5450), 1, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, anon_sym_BQUOTE, - STATE(2548), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2547), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5464), 2, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5690), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 13, - 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53456] = 5, + [53642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2549), 1, + STATE(2548), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260634,7 +260722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 31, + ACTIONS(5694), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260666,14 +260754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53514] = 5, + [53700] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2550), 1, + STATE(2549), 1, sym_comment, - ACTIONS(5706), 13, + ACTIONS(5696), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260687,7 +260775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5708), 31, + ACTIONS(5698), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260719,110 +260807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53572] = 19, + [53758] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5710), 1, - anon_sym_LT, - STATE(2551), 1, + STATE(2550), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5700), 5, 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [53658] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5450), 1, - anon_sym_PERCENT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5710), 1, - anon_sym_LT, - STATE(2552), 1, - sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5051), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -260831,257 +260833,277 @@ 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(5569), 18, - sym__automatic_semicolon, + ACTIONS(5055), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + 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_BQUOTE, anon_sym_satisfies, - [53742] = 27, + [53820] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, anon_sym_BQUOTE, - STATE(2553), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2551), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 10, + ACTIONS(5519), 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, - [53844] = 26, + [53936] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5450), 1, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, anon_sym_BQUOTE, - STATE(2554), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + ACTIONS(5703), 1, + anon_sym_COMMA, + ACTIONS(5706), 1, + anon_sym_RBRACE, + STATE(2552), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(3068), 2, + ACTIONS(5708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [53944] = 25, + [54056] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_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, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - STATE(2555), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5710), 1, + anon_sym_LT, + STATE(2553), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 2, 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5569), 11, + ACTIONS(5616), 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, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, - [54042] = 5, + anon_sym_instanceof, + [54140] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2556), 1, + ACTIONS(5713), 1, + sym__automatic_semicolon, + STATE(2554), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(2138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261095,18 +261117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5715), 31, + ACTIONS(2190), 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, @@ -261126,399 +261147,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54100] = 19, + anon_sym_PIPE_RBRACE, + [54200] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5450), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5710), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2557), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + ACTIONS(5703), 1, + anon_sym_COMMA, + ACTIONS(5706), 1, + anon_sym_RBRACE, + STATE(2555), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5448), 2, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5464), 2, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5676), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 8, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54320] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2556), 1, + sym_comment, + ACTIONS(5715), 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(5569), 18, - sym__automatic_semicolon, + ACTIONS(5717), 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, - [54186] = 29, + anon_sym_implements, + [54378] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5438), 1, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2558), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + ACTIONS(5706), 1, + anon_sym_RBRACE, + ACTIONS(5719), 1, + anon_sym_COMMA, + STATE(2557), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 9, - sym__automatic_semicolon, + [54498] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5623), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2558), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 18, 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_LT_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, - [54292] = 28, + [54584] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5444), 1, - anon_sym_CARET, - ACTIONS(5446), 1, - anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5571), 1, - anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, STATE(2559), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 10, - sym__automatic_semicolon, + ACTIONS(5515), 11, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [54396] = 34, + [54684] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, + ACTIONS(5722), 1, + anon_sym_COMMA, + ACTIONS(5725), 1, + anon_sym_RBRACE, STATE(2560), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5692), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [54512] = 34, + [54804] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, - anon_sym_AMP_AMP, - ACTIONS(5539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5549), 1, - anon_sym_PIPE, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, - anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5727), 1, anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, - sym__ternary_qmark, STATE(2561), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5535), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5682), 20, + 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_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5559), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5523), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [54628] = 5, + anon_sym_satisfies, + [54882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2562), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(2152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261532,7 +261678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5719), 31, + ACTIONS(2154), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261564,14 +261710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54686] = 5, + [54940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2563), 1, sym_comment, - ACTIONS(5721), 13, + ACTIONS(2250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261585,7 +261731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5723), 31, + ACTIONS(2252), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261617,14 +261763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54744] = 5, + [54998] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2564), 1, sym_comment, - ACTIONS(5725), 13, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261638,18 +261784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5727), 31, + ACTIONS(2186), 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, @@ -261669,15 +261815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54802] = 5, + anon_sym_PIPE_RBRACE, + [55056] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2565), 1, sym_comment, - ACTIONS(5729), 13, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261691,7 +261837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 31, + ACTIONS(5732), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261723,180 +261869,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54860] = 36, + [55114] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + STATE(2566), 1, + sym_comment, + ACTIONS(2304), 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(2308), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5420), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2566), 1, + anon_sym_implements, + [55172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2567), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5734), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54980] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5736), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2567), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5475), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [55096] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [55230] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2568), 1, sym_comment, - ACTIONS(5735), 13, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261910,7 +261996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5737), 31, + ACTIONS(5740), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261942,14 +262028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55154] = 5, + [55288] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2569), 1, sym_comment, - ACTIONS(5739), 13, + ACTIONS(2232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261963,7 +262049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5741), 31, + ACTIONS(2236), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261995,348 +262081,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55212] = 36, + [55346] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2570), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5743), 2, + ACTIONS(5742), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55332] = 36, + [55466] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2571), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5745), 2, + ACTIONS(5744), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55452] = 36, + [55586] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - 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(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, STATE(2572), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5748), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5752), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5746), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5747), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55572] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5750), 24, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, + [55648] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(2573), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(2224), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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(2228), 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(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5652), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [55688] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [55706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2574), 1, sym_comment, - ACTIONS(5749), 13, + ACTIONS(5755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262350,7 +262378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5751), 31, + ACTIONS(5757), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262382,44 +262410,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55746] = 8, + [55764] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, - anon_sym_extends, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5763), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, STATE(2575), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5756), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5729), 10, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 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(5731), 28, + ACTIONS(5761), 22, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -262435,27 +262471,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_implements, - [55810] = 10, + [55840] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5630), 1, - anon_sym_LT, - ACTIONS(5759), 1, - anon_sym_DOT, STATE(2576), 1, sym_comment, - STATE(2977), 1, - sym_arguments, - STATE(2979), 1, - sym_type_arguments, - ACTIONS(4256), 12, + ACTIONS(2216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262466,17 +262490,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(4244), 27, - sym__automatic_semicolon, + ACTIONS(2220), 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, @@ -262495,39 +262524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55878] = 16, + anon_sym_implements, + [55898] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5452), 1, - anon_sym_STAR_STAR, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5710), 1, - anon_sym_LT, STATE(2577), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(2166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262538,36 +262543,49 @@ 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(5569), 19, - sym__automatic_semicolon, + ACTIONS(2170), 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, - [55958] = 5, + anon_sym_implements, + [55956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2578), 1, sym_comment, - ACTIONS(2288), 13, + ACTIONS(2158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262581,7 +262599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 31, + ACTIONS(2162), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262613,24 +262631,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56016] = 10, + [56014] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5415), 1, + anon_sym_LT, + ACTIONS(5766), 1, + anon_sym_DOT, + STATE(2579), 1, + sym_comment, + STATE(2986), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, + ACTIONS(4923), 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(4925), 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, + [56082] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2580), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5698), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [56198] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5630), 1, - anon_sym_LT, - ACTIONS(5761), 1, - anon_sym_DOT, - STATE(2579), 1, + ACTIONS(5768), 1, + sym__automatic_semicolon, + STATE(2581), 1, sym_comment, - STATE(2980), 1, - sym_arguments, - STATE(2982), 1, - sym_type_arguments, - ACTIONS(4955), 12, + ACTIONS(2208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262641,17 +262791,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(4957), 27, - sym__automatic_semicolon, + ACTIONS(2212), 30, 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, @@ -262670,25 +262824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [56084] = 10, + anon_sym_PIPE_RBRACE, + [56258] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5630), 1, + ACTIONS(5415), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5770), 1, anon_sym_DOT, - STATE(2580), 1, + STATE(2582), 1, sym_comment, - STATE(2983), 1, + STATE(2982), 1, sym_arguments, - STATE(2985), 1, + STATE(2983), 1, sym_type_arguments, - ACTIONS(4949), 12, + ACTIONS(4258), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262701,7 +262855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4951), 27, + ACTIONS(4248), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -262729,318 +262883,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56152] = 6, + [56326] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5765), 1, - sym__automatic_semicolon, - STATE(2581), 1, - sym_comment, - ACTIONS(2142), 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(2222), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, anon_sym_PERCENT, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5578), 1, + anon_sym_LT, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5588), 1, + sym__ternary_qmark, + STATE(2583), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5556), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5582), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 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_PIPE_RBRACE, - [56212] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(5523), 4, sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5384), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2582), 1, - sym_comment, - STATE(3950), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [56300] = 36, + [56442] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2583), 1, + STATE(2584), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5767), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56420] = 34, + ACTIONS(5519), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [56558] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2584), 1, + STATE(2585), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5475), 4, + ACTIONS(5473), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [56536] = 13, + [56674] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5630), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5769), 1, - anon_sym_QMARK_DOT, - STATE(2585), 1, + STATE(2586), 1, sym_comment, - STATE(2916), 1, + STATE(2742), 1, sym_type_arguments, - STATE(3088), 1, - sym_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(4939), 12, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263053,12 +263171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 24, + ACTIONS(5682), 20, 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, @@ -263074,87 +263191,15 @@ 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, - [56610] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5384), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2586), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5581), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 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, - [56696] = 6, + [56752] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5771), 1, - sym__automatic_semicolon, STATE(2587), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(5775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263168,17 +263213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 30, + ACTIONS(5777), 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, @@ -263198,15 +263244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [56756] = 5, + anon_sym_implements, + [56810] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2588), 1, sym_comment, - ACTIONS(5773), 13, + ACTIONS(2208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263220,18 +263266,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5775), 31, + ACTIONS(2212), 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, @@ -263251,150 +263297,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56814] = 5, + anon_sym_PIPE_RBRACE, + [56868] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, + anon_sym_AMP_AMP, + ACTIONS(5560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5562), 1, + anon_sym_GT_GT, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, + anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, + anon_sym_PERCENT, + ACTIONS(5576), 1, + anon_sym_STAR_STAR, + ACTIONS(5578), 1, + anon_sym_LT, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5588), 1, + sym__ternary_qmark, STATE(2589), 1, sym_comment, - ACTIONS(5777), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5564), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5779), 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(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 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, - [56872] = 34, + ACTIONS(5670), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [56984] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5588), 1, sym__ternary_qmark, STATE(2590), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5694), 4, + ACTIONS(5527), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [56988] = 5, + [57100] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, + anon_sym_STAR, + ACTIONS(5781), 1, + anon_sym_LBRACE, + ACTIONS(5783), 1, + anon_sym_async, + ACTIONS(5785), 1, + anon_sym_readonly, + ACTIONS(5789), 1, + sym__automatic_semicolon, + STATE(2591), 1, + sym_comment, + STATE(3524), 1, + sym_statement_block, + STATE(3626), 1, + sym_override_modifier, + STATE(3929), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5787), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [57188] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2591), 1, + STATE(2592), 1, sym_comment, - ACTIONS(5781), 13, + ACTIONS(2294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263408,7 +263551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5783), 31, + ACTIONS(2296), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263440,96 +263583,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57046] = 34, + [57246] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5558), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5566), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5588), 1, sym__ternary_qmark, - STATE(2592), 1, + STATE(2593), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5556), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5580), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5696), 4, + ACTIONS(5676), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [57162] = 5, + [57362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2593), 1, + STATE(2594), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263543,7 +263686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 31, + ACTIONS(2300), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -263575,232 +263718,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [57220] = 21, + [57420] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5438), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5558), 1, + anon_sym_AMP_AMP, + ACTIONS(5560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5562), 1, anon_sym_GT_GT, - ACTIONS(5450), 1, + ACTIONS(5566), 1, + anon_sym_AMP, + ACTIONS(5568), 1, + anon_sym_CARET, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5574), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5576), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5578), 1, anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - STATE(2594), 1, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5588), 1, + sym__ternary_qmark, + STATE(2595), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5440), 2, + ACTIONS(5556), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5564), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5572), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5582), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 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(5584), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5580), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [57310] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(5698), 4, sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5381), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2595), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5581), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 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, - [57396] = 34, + [57536] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2596), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 4, + ACTIONS(5523), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [57512] = 5, + [57652] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5578), 1, + anon_sym_LT, STATE(2597), 1, sym_comment, - ACTIONS(5785), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263811,21 +263913,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(5787), 31, + ACTIONS(5794), 25, + 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, @@ -263843,400 +263940,415 @@ 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, - [57570] = 34, + [57722] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, - anon_sym_AMP_AMP, - ACTIONS(5539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5549), 1, - anon_sym_PIPE, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5623), 1, anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, - sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2598), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5535), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5515), 19, + 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_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5559), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5702), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [57686] = 34, + anon_sym_satisfies, + [57802] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2599), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5527), 4, + ACTIONS(5678), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [57802] = 36, + [57918] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, STATE(2600), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, + STATE(5570), 1, aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5789), 2, + ACTIONS(5796), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57922] = 5, + [58038] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, STATE(2601), 1, sym_comment, - ACTIONS(5791), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5696), 31, + ACTIONS(5515), 16, 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, - [57980] = 34, + [58128] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2602), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5525), 4, - sym__automatic_semicolon, + ACTIONS(5513), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [58096] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + [58244] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5798), 1, + anon_sym_LT, STATE(2603), 1, sym_comment, - ACTIONS(2178), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264247,23 +264359,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(2180), 31, + ACTIONS(5761), 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, @@ -264279,17 +264383,150 @@ 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, - [58154] = 5, + [58320] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2604), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [58406] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5511), 1, + anon_sym_LBRACK, + STATE(2605), 1, + sym_comment, + STATE(3959), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [58494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2604), 1, + STATE(2606), 1, sym_comment, - ACTIONS(5793), 13, + ACTIONS(5801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264303,7 +264540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5694), 31, + ACTIONS(5803), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264335,98 +264572,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58212] = 36, + [58552] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - 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(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2605), 1, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(2607), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5795), 2, + ACTIONS(5761), 22, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58332] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [58628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2606), 1, + STATE(2608), 1, sym_comment, - ACTIONS(5797), 13, + ACTIONS(2178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264440,7 +264655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5692), 31, + ACTIONS(2182), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264472,98 +264687,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58390] = 36, + [58686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + STATE(2609), 1, + sym_comment, + ACTIONS(2194), 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(2198), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5420), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2607), 1, - sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5799), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58510] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [58744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2608), 1, + STATE(2610), 1, sym_comment, - ACTIONS(5801), 13, + ACTIONS(5808), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264577,7 +264761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5803), 31, + ACTIONS(5600), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264609,149 +264793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58568] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5381), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2609), 1, - sym_comment, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [58656] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5044), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2610), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5581), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 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, - [58742] = 5, + [58802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2611), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(5810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264765,7 +264814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2306), 31, + ACTIONS(5812), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264797,328 +264846,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58800] = 34, + [58860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + STATE(2612), 1, + sym_comment, + ACTIONS(5814), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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(5816), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2612), 1, + anon_sym_implements, + [58918] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2613), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5818), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5523), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [58916] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5820), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5044), 1, anon_sym_RBRACE, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2613), 1, - sym_comment, - STATE(3950), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, 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(4496), 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, - [59004] = 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, + [58976] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5537), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5539), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5545), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5555), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5557), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5565), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2614), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5535), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5551), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5559), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5521), 4, - sym__automatic_semicolon, + ACTIONS(5509), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59120] = 34, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [59092] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5537), 1, - anon_sym_AMP_AMP, - ACTIONS(5539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5541), 1, - anon_sym_GT_GT, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5549), 1, - anon_sym_PIPE, - ACTIONS(5553), 1, - anon_sym_PERCENT, - ACTIONS(5555), 1, - anon_sym_STAR_STAR, - ACTIONS(5557), 1, - anon_sym_LT, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5567), 1, - sym__ternary_qmark, STATE(2615), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5533), 2, + ACTIONS(5822), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5535), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5543), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5551), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5561), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 2, + ACTIONS(5824), 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, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5559), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5487), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59236] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [59150] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2616), 1, sym_comment, - ACTIONS(5805), 13, + ACTIONS(5826), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265132,7 +265108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5807), 31, + ACTIONS(5828), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265164,14 +265140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59294] = 5, + [59208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2617), 1, sym_comment, - ACTIONS(5809), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265185,7 +265161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 31, + ACTIONS(5832), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265217,14 +265193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59352] = 5, + [59266] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2618), 1, sym_comment, - ACTIONS(5813), 13, + ACTIONS(2140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265238,7 +265216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5527), 31, + ACTIONS(2146), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265246,7 +265224,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, @@ -265270,47 +265247,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59410] = 11, + [59326] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5557), 1, - anon_sym_LT, + ACTIONS(5380), 1, + anon_sym_extends, STATE(2619), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5834), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5837), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5822), 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(5481), 25, - sym__automatic_semicolon, + ACTIONS(5824), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, @@ -265328,37 +265300,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, - [59480] = 15, + anon_sym_implements, + [59390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5815), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, STATE(2620), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(5840), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265369,15 +265321,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(5595), 20, + ACTIONS(5842), 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, @@ -265391,44 +265351,78 @@ 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, - [59558] = 18, + anon_sym_implements, + [59448] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(2621), 1, + sym_comment, + ACTIONS(2142), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5844), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2140), 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(2146), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5818), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2621), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 11, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59510] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5748), 1, + anon_sym_EQ, + STATE(2622), 1, + sym_comment, + ACTIONS(5746), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -265437,14 +265431,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(5660), 18, + ACTIONS(5750), 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, @@ -265458,313 +265460,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59642] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [59570] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2622), 1, + STATE(2623), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5706), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5847), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5521), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59758] = 34, + [59688] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2623), 1, + STATE(2624), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5487), 4, + ACTIONS(5473), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [59874] = 34, + [59804] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2624), 1, - sym_comment, - STATE(2656), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + STATE(2313), 1, sym_type_arguments, - STATE(5716), 1, + STATE(2625), 1, + sym_comment, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5702), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59990] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2625), 1, - sym_comment, - ACTIONS(5821), 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(5823), 31, + ACTIONS(5515), 9, 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, - [60048] = 5, + [59910] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, STATE(2626), 1, sym_comment, - ACTIONS(2304), 13, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265775,19 +265738,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(2306), 31, + ACTIONS(5794), 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, @@ -265807,17 +265765,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_PIPE_RBRACE, - [60106] = 5, + [59980] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2627), 1, sym_comment, - ACTIONS(2300), 13, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265831,18 +265787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2302), 31, - sym__automatic_semicolon, + ACTIONS(2312), 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, @@ -265862,181 +265818,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [60164] = 34, + anon_sym_implements, + [60038] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, STATE(2628), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5849), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5652), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [60280] = 36, + [60158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + STATE(2629), 1, + sym_comment, + 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(5853), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5420), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5432), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5434), 1, + anon_sym_QMARK_DOT, 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(5466), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2629), 1, + anon_sym_implements, + [60216] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2630), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5567), 1, - aux_sym_sequence_expression_repeat1, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5855), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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(5857), 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(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60400] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2630), 1, + STATE(2631), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266050,7 +266030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 31, + ACTIONS(5349), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266082,33 +266062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60458] = 14, + [60332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5827), 1, - anon_sym_LT, - STATE(2631), 1, + STATE(2632), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(2294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266119,15 +266080,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(5680), 22, + ACTIONS(2296), 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, @@ -266143,121 +266112,212 @@ 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, - [60534] = 34, + anon_sym_PIPE_RBRACE, + [60390] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2632), 1, + STATE(2633), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5859), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5692), 4, - sym__automatic_semicolon, + [60510] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5421), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, + anon_sym_STAR_STAR, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + STATE(2634), 1, + sym_comment, + STATE(2742), 1, + sym_type_arguments, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5425), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5459), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5861), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [60650] = 5, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60630] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2633), 1, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(2635), 1, sym_comment, - ACTIONS(5830), 13, + ACTIONS(5863), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5866), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5832), 31, + ACTIONS(4222), 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, @@ -266279,14 +266339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60708] = 5, + [60694] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2634), 1, + STATE(2636), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266300,18 +266360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2198), 31, + ACTIONS(2312), 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, @@ -266331,15 +266391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [60766] = 5, + anon_sym_PIPE_RBRACE, + [60752] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2635), 1, + STATE(2637), 1, sym_comment, - ACTIONS(5834), 13, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266353,7 +266413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5836), 31, + ACTIONS(2300), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266385,164 +266445,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60824] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, + [60810] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5838), 1, - anon_sym_STAR, - ACTIONS(5840), 1, - anon_sym_LBRACE, - ACTIONS(5842), 1, - anon_sym_async, - ACTIONS(5844), 1, - anon_sym_readonly, - ACTIONS(5848), 1, - sym__automatic_semicolon, - STATE(2636), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2638), 1, sym_comment, - STATE(3521), 1, - sym_statement_block, - STATE(3617), 1, - sym_override_modifier, - STATE(3904), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5846), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 3, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5515), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [60912] = 34, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60908] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2637), 1, + STATE(2639), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5570), 1, + aux_sym_sequence_expression_repeat1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + ACTIONS(5869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5694), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [61028] = 5, + [61028] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2638), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + STATE(2640), 1, sym_comment, - ACTIONS(5851), 13, + ACTIONS(5051), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266556,7 +266625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5853), 31, + ACTIONS(5055), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266564,7 +266633,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, @@ -266588,158 +266656,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61086] = 34, + [61088] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2639), 1, + STATE(2641), 1, sym_comment, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5696), 4, + ACTIONS(5604), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [61202] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5855), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2640), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 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(5680), 22, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [61278] = 5, + [61204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2641), 1, + STATE(2642), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(5871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266753,7 +266759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 31, + ACTIONS(5873), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266785,41 +266791,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61336] = 8, + [61262] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - STATE(2642), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5497), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2643), 1, sym_comment, - ACTIONS(5858), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5861), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 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(4242), 28, + ACTIONS(5794), 25, 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, @@ -266838,133 +266849,179 @@ 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, - [61400] = 15, + [61332] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5864), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, + anon_sym_AMP_AMP, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, + anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, anon_sym_LT, - STATE(2643), 1, - sym_comment, - STATE(2656), 1, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(5716), 1, + STATE(2644), 1, + sym_comment, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(5471), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5595), 20, - 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(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [61478] = 5, + ACTIONS(5698), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [61448] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2644), 1, - sym_comment, - ACTIONS(4238), 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(4242), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2645), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - [61536] = 5, + ACTIONS(5676), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [61564] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2645), 1, + STATE(2646), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266978,7 +267035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 31, + ACTIONS(4222), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267010,14 +267067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61594] = 5, + [61622] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2646), 1, + STATE(2647), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(5875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267031,7 +267088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 31, + ACTIONS(5877), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267063,149 +267120,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61652] = 34, + [61680] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - STATE(2647), 1, - sym_comment, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(5716), 1, + STATE(2648), 1, + sym_comment, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 4, - sym__automatic_semicolon, + ACTIONS(5678), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [61768] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + [61796] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2648), 1, - sym_comment, - ACTIONS(5869), 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(5871), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2649), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - [61826] = 5, + ACTIONS(5604), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [61912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2649), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5873), 13, + ACTIONS(2256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267219,7 +267305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5875), 31, + ACTIONS(2258), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267251,27 +267337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61884] = 11, + [61970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - STATE(2650), 1, + STATE(2651), 1, sym_comment, - STATE(2656), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 12, + ACTIONS(2200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267282,14 +267355,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(5481), 25, + ACTIONS(2202), 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, @@ -267309,17 +267387,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, - [61954] = 6, + anon_sym_PIPE_RBRACE, + [62028] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_is, - STATE(2651), 1, + STATE(2652), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(4456), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267333,7 +267411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 29, + ACTIONS(4989), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -267363,222 +267441,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62013] = 34, + anon_sym_PIPE_RBRACE, + [62085] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2652), 1, + STATE(2653), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5624), 3, + ACTIONS(5525), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62128] = 30, + [62200] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5879), 1, anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_BANG, STATE(2313), 1, sym_type_arguments, - STATE(2653), 1, + STATE(2654), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, + ACTIONS(5515), 18, 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_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, - [62235] = 23, + [62279] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5099), 1, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, + ACTIONS(5517), 1, + anon_sym_BANG, STATE(2313), 1, sym_type_arguments, - STATE(2654), 1, + STATE(2655), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5113), 2, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 12, + ACTIONS(5515), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -267586,198 +267659,135 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62328] = 34, + [62382] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, + ACTIONS(5517), 1, + anon_sym_BANG, STATE(2313), 1, sym_type_arguments, - STATE(2655), 1, + STATE(2656), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5626), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62443] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - STATE(2656), 1, - sym_comment, - STATE(3115), 2, - sym_template_string, - sym_arguments, - ACTIONS(4989), 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(4991), 26, - sym__automatic_semicolon, + ACTIONS(5515), 8, 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_AMP_AMP, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [62506] = 19, + [62487] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5101), 1, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5877), 1, + ACTIONS(5879), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(2657), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 11, - anon_sym_STAR, + ACTIONS(5517), 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(5569), 16, + ACTIONS(5515), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -267786,61 +267796,75 @@ 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, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62591] = 18, + anon_sym_satisfies, + [62572] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5099), 1, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5877), 1, + ACTIONS(5205), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(2658), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5113), 2, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 10, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 17, + ACTIONS(5515), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -267848,164 +267872,147 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62674] = 36, + [62669] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, - anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - ACTIONS(5880), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RBRACK, + ACTIONS(5205), 1, + anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(2659), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62793] = 27, + ACTIONS(5515), 10, + 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, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62768] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(2660), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, + ACTIONS(5517), 2, anon_sym_BANG, anon_sym_PIPE, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 9, + ACTIONS(5515), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -268015,69 +268022,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [62894] = 26, + [62869] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5879), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(2661), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 10, + ACTIONS(5515), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -268085,218 +268077,140 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62993] = 34, + [62952] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, - anon_sym_AMP_AMP, - ACTIONS(5892), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, - anon_sym_GT_GT, - ACTIONS(5898), 1, - anon_sym_AMP, - ACTIONS(5900), 1, - anon_sym_CARET, - ACTIONS(5902), 1, - anon_sym_PIPE, - ACTIONS(5906), 1, - anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5879), 1, anon_sym_LT, - ACTIONS(5918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, - sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2662), 1, sym_comment, - STATE(3028), 1, - sym_type_arguments, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5904), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5886), 3, - anon_sym_LBRACE, + ACTIONS(5515), 16, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + 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, - [63108] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5922), 1, - anon_sym_static, - ACTIONS(5924), 1, - anon_sym_readonly, - ACTIONS(5926), 1, - anon_sym_abstract, - STATE(2663), 1, - sym_comment, - STATE(3571), 1, - sym_accessibility_modifier, - STATE(3669), 1, - sym_override_modifier, - STATE(4195), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4674), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(985), 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(4496), 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, - [63193] = 25, + [63037] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2664), 1, + STATE(2663), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 3, + ACTIONS(5517), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5569), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -268305,621 +268219,727 @@ 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, - [63290] = 7, + [63130] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2665), 1, - sym_comment, - ACTIONS(5391), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5928), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5389), 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(5393), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2664), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5475), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5501), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - [63351] = 19, + ACTIONS(5882), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [63245] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5099), 1, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5877), 1, + ACTIONS(5205), 1, anon_sym_LT, + ACTIONS(5517), 1, + anon_sym_BANG, STATE(2313), 1, sym_type_arguments, - STATE(2666), 1, + STATE(2665), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5097), 2, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5113), 2, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 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(5569), 17, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 7, 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, - [63436] = 36, + [63352] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5930), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2667), 1, + STATE(2666), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63555] = 29, + ACTIONS(5600), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [63467] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5063), 1, + anon_sym_extends, + STATE(2667), 1, + sym_comment, + ACTIONS(5057), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5060), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 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(5055), 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, - ACTIONS(4993), 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(5081), 1, + anon_sym_satisfies, + [63532] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5087), 1, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_BANG, - STATE(2313), 1, - sym_type_arguments, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, STATE(2668), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 8, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5590), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63660] = 36, + anon_sym_SEMI, + [63647] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, + ACTIONS(5175), 1, anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5932), 1, + ACTIONS(5884), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2669), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, + STATE(6201), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63779] = 28, + [63766] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, + anon_sym_AMP_AMP, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5571), 1, - anon_sym_BANG, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, STATE(2670), 1, sym_comment, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [63882] = 16, + [63885] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5101), 1, + ACTIONS(5433), 1, + anon_sym_AMP_AMP, + ACTIONS(5435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5437), 1, + anon_sym_GT_GT, + ACTIONS(5441), 1, + anon_sym_AMP, + ACTIONS(5443), 1, + anon_sym_CARET, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5449), 1, + anon_sym_PERCENT, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5877), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + ACTIONS(5676), 1, + anon_sym_COMMA, STATE(2671), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 18, - 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_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [63961] = 36, + [64002] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - ACTIONS(5880), 1, + ACTIONS(5892), 1, anon_sym_COMMA, - ACTIONS(5934), 1, + ACTIONS(5894), 1, anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, STATE(2672), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + STATE(5891), 1, + aux_sym_array_repeat1, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64080] = 15, + [64121] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5936), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, + ACTIONS(5896), 1, + anon_sym_is, STATE(2673), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(4977), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268930,14 +268950,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(5595), 19, + ACTIONS(4979), 29, + 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, @@ -268951,15 +268978,21 @@ 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, - [64157] = 5, + anon_sym_extends, + [64180] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5662), 1, + anon_sym_is, STATE(2674), 1, sym_comment, - ACTIONS(4430), 13, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268973,7 +269006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4961), 30, + ACTIONS(4965), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -269003,139 +269036,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [64214] = 36, + [64239] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5898), 1, anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5939), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2675), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5682), 19, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64333] = 19, + anon_sym_satisfies, + [64316] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5275), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5941), 1, - anon_sym_static, - ACTIONS(5943), 1, - anon_sym_readonly, - ACTIONS(5945), 1, - anon_sym_abstract, STATE(2676), 1, sym_comment, - STATE(3574), 1, - sym_accessibility_modifier, - STATE(3648), 1, - sym_override_modifier, - STATE(4279), 1, + STATE(4803), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -269143,9 +269146,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, @@ -269153,605 +269162,699 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64418] = 36, + [64397] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5201), 1, + anon_sym_PERCENT, + ACTIONS(5203), 1, + anon_sym_STAR_STAR, + ACTIONS(5205), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2677), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5075), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [64486] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5880), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(2677), 1, + STATE(2678), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64537] = 21, + ACTIONS(5513), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64601] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5087), 1, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5099), 1, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(5903), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2678), 1, + STATE(2679), 1, sym_comment, - STATE(5791), 1, + STATE(5659), 1, + aux_sym_array_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5089), 2, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5113), 2, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 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(5569), 15, - 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(5207), 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, - [64626] = 34, + [64720] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2679), 1, + STATE(2680), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5527), 3, + ACTIONS(5523), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64741] = 36, + [64835] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5949), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2680), 1, + STATE(2681), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64860] = 34, + ACTIONS(5509), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64950] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2681), 1, + STATE(2682), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5525), 3, + ACTIONS(5519), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64975] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5381), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2682), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65056] = 8, + [65065] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(4366), 1, - anon_sym_EQ, - STATE(2683), 1, - sym_comment, - ACTIONS(4369), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4238), 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(4242), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2683), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65119] = 36, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5473), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65180] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5951), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2684), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5670), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65295] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4346), 1, + anon_sym_QMARK, + ACTIONS(4367), 1, + anon_sym_EQ, + STATE(2685), 1, + sym_comment, + ACTIONS(4370), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4218), 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(4222), 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, - [65238] = 17, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65358] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -269760,31 +269863,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5044), 1, + ACTIONS(5334), 1, anon_sym_RBRACE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(2685), 1, + STATE(2686), 1, sym_comment, - STATE(4693), 1, + STATE(4803), 1, sym__property_name, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -269815,208 +269918,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65319] = 36, + [65439] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5953), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2686), 1, + STATE(2687), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65438] = 36, + ACTIONS(5527), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65554] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(3679), 1, + anon_sym_extends, + STATE(2688), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5078), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2140), 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(2146), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + 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, + [65619] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5880), 1, - anon_sym_COMMA, - ACTIONS(5955), 1, - anon_sym_RBRACE, + ACTIONS(5905), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2687), 1, + STATE(2689), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65557] = 18, + [65738] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5957), 1, + ACTIONS(5907), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2688), 1, + STATE(2690), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5658), 11, + ACTIONS(5614), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -270028,7 +270185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 17, + ACTIONS(5616), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RPAREN, @@ -270046,394 +270203,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65640] = 34, + [65821] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2691), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65902] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5910), 1, + anon_sym_static, + ACTIONS(5912), 1, + anon_sym_readonly, + ACTIONS(5914), 1, + anon_sym_abstract, + STATE(2692), 1, + sym_comment, + STATE(3588), 1, + sym_accessibility_modifier, + STATE(3689), 1, + sym_override_modifier, + STATE(4271), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1035), 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(4498), 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, + [65987] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5916), 1, + anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, - STATE(2689), 1, + STATE(2693), 1, sym_comment, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5692), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65755] = 34, + [66106] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2690), 1, + STATE(2694), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(4973), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5694), 3, + ACTIONS(4975), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65870] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2691), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5069), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5109), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5696), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65985] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [66163] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2692), 1, + STATE(2695), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - STATE(5883), 1, - aux_sym_array_repeat1, - ACTIONS(5069), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66104] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2693), 1, - sym_comment, - ACTIONS(5575), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5964), 5, + ACTIONS(5668), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5573), 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(5577), 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, - [66165] = 5, + anon_sym_SEMI, + [66278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2694), 1, + STATE(2696), 1, sym_comment, - ACTIONS(4438), 13, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270447,16 +270570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4987), 30, - sym__automatic_semicolon, + ACTIONS(5349), 30, 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_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -270476,194 +270600,193 @@ 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, - [66222] = 36, + anon_sym_implements, + [66335] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5960), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(5966), 1, + ACTIONS(5918), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2695), 1, + STATE(2697), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(5940), 1, + STATE(5941), 1, aux_sym_array_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66341] = 34, + [66454] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2696), 1, + STATE(2698), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5652), 3, + ACTIONS(5602), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66456] = 9, + [66569] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, + ACTIONS(4300), 1, anon_sym_EQ, - ACTIONS(5613), 1, + ACTIONS(5544), 1, anon_sym_LBRACK, - STATE(2697), 1, + STATE(2699), 1, sym_comment, - ACTIONS(5616), 2, + ACTIONS(5547), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5368), 6, + ACTIONS(5011), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4238), 11, + ACTIONS(4218), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270675,7 +270798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 22, + ACTIONS(4222), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -270698,898 +270821,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66521] = 34, + [66634] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5920), 1, + anon_sym_RBRACE, STATE(2313), 1, sym_type_arguments, - STATE(2698), 1, + STATE(2700), 1, sym_comment, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5698), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66636] = 34, + [66753] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5922), 1, + anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, - STATE(2699), 1, + STATE(2701), 1, sym_comment, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5702), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66751] = 36, + [66872] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, + ACTIONS(5175), 1, anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5968), 1, + ACTIONS(5924), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2700), 1, + STATE(2702), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, + STATE(6201), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66870] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3581), 1, - anon_sym_extends, - STATE(2701), 1, - sym_comment, - ACTIONS(5401), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5404), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2144), 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(2150), 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, - [66935] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2702), 1, - sym_comment, - ACTIONS(2146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5970), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2144), 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(2150), 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, + ACTIONS(5207), 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, - [66996] = 36, + [66991] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5972), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2703), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67115] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2704), 1, - sym_comment, - ACTIONS(4983), 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(4985), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5604), 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, - anon_sym_extends, - anon_sym_is, - [67172] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + [67106] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2705), 1, - sym_comment, - ACTIONS(2061), 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(2063), 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, + ACTIONS(5183), 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, - anon_sym_is, - [67229] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5469), 1, sym__ternary_qmark, - ACTIONS(5960), 1, + ACTIONS(5676), 1, anon_sym_COMMA, - ACTIONS(5974), 1, - anon_sym_RPAREN, - STATE(2313), 1, - sym_type_arguments, - STATE(2706), 1, + STATE(2704), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - STATE(6134), 1, - aux_sym_array_repeat1, - ACTIONS(5069), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67348] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(5926), 2, sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5384), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2707), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67429] = 36, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5455), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67223] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5976), 1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(5928), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2708), 1, + STATE(2705), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + STATE(6055), 1, + aux_sym_array_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67548] = 36, + [67342] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, + ACTIONS(5175), 1, anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5978), 1, + ACTIONS(5930), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2709), 1, + STATE(2706), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, + STATE(6201), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67667] = 9, + [67461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5391), 1, - anon_sym_EQ, - STATE(2710), 1, + STATE(2707), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5398), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5389), 10, + ACTIONS(2061), 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(5393), 26, + ACTIONS(2063), 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, @@ -271609,18 +271449,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67732] = 7, + anon_sym_extends, + anon_sym_is, + [67518] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5630), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, + anon_sym_GT_GT, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, + anon_sym_PERCENT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(5958), 1, anon_sym_LT, - STATE(2711), 1, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, + STATE(2708), 1, sym_comment, - STATE(2870), 1, + STATE(3148), 1, sym_type_arguments, - ACTIONS(4963), 12, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5936), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5944), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5962), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5934), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67633] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2709), 1, + sym_comment, + ACTIONS(2142), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5970), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271631,17 +271559,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(4965), 29, - sym__automatic_semicolon, + ACTIONS(2146), 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, @@ -271662,261 +271586,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67793] = 34, + [67694] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, + ACTIONS(5972), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2712), 1, + STATE(2710), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5475), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67908] = 35, + [67813] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2656), 1, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2713), 1, + STATE(2711), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68025] = 36, + [67932] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5982), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(5984), 1, - anon_sym_RBRACK, + ACTIONS(5976), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2714), 1, + STATE(2712), 1, sym_comment, - STATE(5772), 1, - aux_sym_array_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + STATE(5889), 1, + aux_sym_array_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68144] = 5, + [68051] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2715), 1, + ACTIONS(5415), 1, + anon_sym_LT, + STATE(2713), 1, sym_comment, - ACTIONS(5252), 13, + STATE(2872), 1, + sym_type_arguments, + ACTIONS(4977), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271927,20 +271857,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(5254), 30, + ACTIONS(4979), 29, + 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_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271960,34 +271888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [68201] = 14, + anon_sym_extends, + [68112] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5986), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2716), 1, + ACTIONS(5662), 1, + anon_sym_is, + STATE(2714), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271998,14 +271909,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(5680), 21, + ACTIONS(4971), 29, + 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, @@ -272021,592 +271939,643 @@ 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, - [68276] = 34, + anon_sym_extends, + [68171] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2717), 1, + STATE(2715), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5702), 3, + ACTIONS(5676), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68391] = 34, + [68286] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(2716), 1, + sym_comment, + ACTIONS(5748), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5978), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5746), 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(5750), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, - anon_sym_GT_GT, - ACTIONS(5898), 1, - anon_sym_AMP, - ACTIONS(5900), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5902), 1, - anon_sym_PIPE, - ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, - anon_sym_LT, - ACTIONS(5918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2718), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5888), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5896), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5904), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5698), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68506] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68347] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2717), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68428] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - 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(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2656), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5980), 1, + anon_sym_LT, + STATE(2313), 1, sym_type_arguments, - STATE(2719), 1, + STATE(2718), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5761), 21, + 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5603), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [68503] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_RBRACE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(2719), 1, + sym_comment, + STATE(4803), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, anon_sym_SEMI, - [68621] = 36, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68584] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5880), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_RBRACK, + ACTIONS(5983), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2720), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68740] = 36, + [68703] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - ACTIONS(5982), 1, + ACTIONS(5886), 1, anon_sym_COMMA, - ACTIONS(5991), 1, + ACTIONS(5985), 1, anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, STATE(2721), 1, sym_comment, - STATE(5772), 1, - aux_sym_array_repeat1, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68859] = 34, + [68822] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5453), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, + ACTIONS(5676), 1, + anon_sym_COMMA, STATE(2722), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5696), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68974] = 34, + [68939] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, - anon_sym_AMP_AMP, - ACTIONS(5892), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, - anon_sym_GT_GT, - ACTIONS(5898), 1, - anon_sym_AMP, - ACTIONS(5900), 1, - anon_sym_CARET, - ACTIONS(5902), 1, - anon_sym_PIPE, - ACTIONS(5906), 1, - anon_sym_PERCENT, - ACTIONS(5908), 1, - anon_sym_STAR_STAR, - ACTIONS(5910), 1, - anon_sym_LT, - ACTIONS(5918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, STATE(2723), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5989), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5051), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5888), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5904), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5055), 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, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5694), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69089] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69000] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5628), 1, - anon_sym_DOT, - ACTIONS(5630), 1, - anon_sym_LT, STATE(2724), 1, sym_comment, - STATE(2862), 1, - sym_type_arguments, - ACTIONS(4913), 12, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272617,9 +272586,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(4314), 28, + ACTIONS(4967), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -272629,6 +272599,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, @@ -272648,852 +272619,813 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [69152] = 34, + anon_sym_PIPE_RBRACE, + [69057] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5507), 1, sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5991), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, STATE(2725), 1, sym_comment, - STATE(5791), 1, + STATE(5002), 1, + aux_sym_sequence_expression_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5692), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69267] = 35, + [69176] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - 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(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2656), 1, - sym_type_arguments, - STATE(2726), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69384] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5462), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5470), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2656), 1, + ACTIONS(5993), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2727), 1, + STATE(2726), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5993), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69501] = 36, + [69295] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(5960), 1, - anon_sym_COMMA, + ACTIONS(5219), 1, + sym__ternary_qmark, ACTIONS(5995), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2728), 1, + STATE(2727), 1, sym_comment, - STATE(5661), 1, - aux_sym_array_repeat1, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69620] = 34, + [69414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5415), 1, + anon_sym_LT, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2728), 1, + sym_comment, + STATE(2864), 1, + sym_type_arguments, + ACTIONS(4915), 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(4307), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 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, + [69477] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, + ACTIONS(5997), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2729), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5997), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [69735] = 34, + [69596] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, + ACTIONS(5999), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2730), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5523), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [69850] = 34, + [69715] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6001), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, STATE(2731), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + STATE(6183), 1, + aux_sym_array_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5626), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69965] = 34, + [69834] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5507), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, STATE(2732), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5624), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70080] = 36, + ACTIONS(6003), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [69949] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - ACTIONS(5880), 1, + ACTIONS(5892), 1, anon_sym_COMMA, - ACTIONS(5999), 1, + ACTIONS(6005), 1, anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, STATE(2733), 1, sym_comment, - STATE(4999), 1, - aux_sym_sequence_expression_repeat1, - STATE(5791), 1, + STATE(5776), 1, + aux_sym_array_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70199] = 34, + [70068] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, STATE(2734), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5604), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5475), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70314] = 15, + [70183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6001), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, STATE(2735), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(4450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273504,13 +273436,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(5595), 19, + ACTIONS(4985), 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, @@ -273524,358 +273464,280 @@ 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, - [70391] = 30, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [70240] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5890), 1, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, + ACTIONS(5461), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, + sym__ternary_qmark, + ACTIONS(5676), 1, + anon_sym_COMMA, STATE(2736), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [70498] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5894), 1, - anon_sym_GT_GT, - ACTIONS(5906), 1, - anon_sym_PERCENT, - ACTIONS(5908), 1, - anon_sym_STAR_STAR, - ACTIONS(5910), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2737), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5888), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5896), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5904), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, + ACTIONS(6007), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5912), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 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, - [70591] = 36, + [70357] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6004), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2738), 1, + STATE(2737), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6052), 1, - aux_sym_array_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70710] = 36, + ACTIONS(5678), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [70472] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5433), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5435), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5437), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5443), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5449), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5451), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5453), 1, + anon_sym_LT, + ACTIONS(5461), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(5469), 1, sym__ternary_qmark, - ACTIONS(5982), 1, + ACTIONS(5676), 1, anon_sym_COMMA, - ACTIONS(6006), 1, - anon_sym_RBRACK, - STATE(2313), 1, - sym_type_arguments, - STATE(2739), 1, + STATE(2738), 1, sym_comment, - STATE(5791), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(5719), 1, sym_optional_chain, - STATE(5885), 1, - aux_sym_array_repeat1, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5425), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5459), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5455), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70829] = 18, + [70589] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6008), 1, + ACTIONS(5958), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2740), 1, + STATE(2739), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5658), 11, + ACTIONS(5792), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -273886,10 +273748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 17, + ACTIONS(5794), 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, @@ -273903,198 +273769,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [70912] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - 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(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2741), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5685), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [71027] = 34, + anon_sym_satisfies, + anon_sym_implements, + [70658] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2742), 1, + STATE(2740), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5652), 3, + ACTIONS(5698), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71142] = 14, + [70773] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6011), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(6009), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2743), 1, + STATE(2741), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5678), 12, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -274105,9 +273903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5680), 21, + ACTIONS(5515), 16, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -274116,56 +273913,30 @@ 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_satisfies, anon_sym_implements, - [71217] = 19, + [70858] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5908), 1, - anon_sym_STAR_STAR, - ACTIONS(6014), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(2744), 1, + STATE(2742), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(3071), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 11, + ACTIONS(4993), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -274174,428 +273945,459 @@ 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(5569), 16, + ACTIONS(4995), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [71302] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [70921] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5906), 1, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, + anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(6014), 1, + ACTIONS(5205), 1, anon_sym_LT, + ACTIONS(5213), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, + sym__ternary_qmark, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6012), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2745), 1, + STATE(2743), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + STATE(6140), 1, + aux_sym_array_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 10, - anon_sym_BANG, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 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, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [71385] = 6, + [71040] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6017), 1, - anon_sym_is, - STATE(2746), 1, - sym_comment, - ACTIONS(4963), 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(4965), 29, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + STATE(2744), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6014), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [71127] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, anon_sym_AMP_AMP, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5942), 1, + anon_sym_GT_GT, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5958), 1, + anon_sym_LT, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5968), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2745), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71444] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5632), 1, - anon_sym_is, - STATE(2747), 1, - sym_comment, - ACTIONS(4973), 13, + ACTIONS(5932), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5944), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 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(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5527), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 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, - [71503] = 27, + [71242] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5894), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5906), 1, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2748), 1, + STATE(2746), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5670), 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, - [71604] = 26, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71357] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5894), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2749), 1, + STATE(2747), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 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, - [71703] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2750), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [71784] = 11, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71472] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4993), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5103), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6018), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2751), 1, + STATE(2748), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274608,15 +274410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5481), 24, + ACTIONS(5682), 19, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - 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, @@ -274630,575 +274428,729 @@ 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, - [71853] = 25, + anon_sym_implements, + [71549] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5894), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5906), 1, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2752), 1, + STATE(2749), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5473), 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, - [71950] = 19, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71664] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5906), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, + anon_sym_GT_GT, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(6014), 1, + ACTIONS(5958), 1, anon_sym_LT, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2753), 1, + STATE(2750), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5904), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 8, - anon_sym_BANG, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5944), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 17, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5519), 3, 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_implements, + ACTIONS(5960), 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, - [72035] = 34, + [71779] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5958), 1, + anon_sym_LT, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2754), 1, + STATE(2751), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5523), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6019), 3, + [71894] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6021), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2752), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 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(5616), 17, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [72150] = 36, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [71977] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5205), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2753), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 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(5794), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 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_satisfies, + [72046] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6021), 1, + ACTIONS(6024), 1, anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2755), 1, + STATE(2754), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6180), 1, - aux_sym_array_repeat1, - ACTIONS(5069), 2, + STATE(6201), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72269] = 29, + [72165] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5890), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(5894), 1, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5497), 1, anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + ACTIONS(5892), 1, + anon_sym_COMMA, + ACTIONS(6026), 1, + anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, - STATE(2756), 1, + STATE(2755), 1, sym_comment, - STATE(5791), 1, + STATE(5776), 1, + aux_sym_array_repeat1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5912), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [72374] = 28, + [72284] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5894), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, + ACTIONS(5966), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5968), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2757), 1, + STATE(2756), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5525), 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, - [72477] = 34, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72399] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2758), 1, + STATE(2757), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5602), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5487), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [72592] = 16, + [72514] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5908), 1, - anon_sym_STAR_STAR, - ACTIONS(6014), 1, + ACTIONS(6028), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2759), 1, + STATE(2758), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5759), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275211,7 +275163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 18, + ACTIONS(5761), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -275222,662 +275174,592 @@ 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_satisfies, anon_sym_implements, - [72671] = 34, + [72589] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2760), 1, + STATE(2759), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5600), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5521), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [72786] = 36, + [72704] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, - ACTIONS(6023), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2761), 1, + STATE(2760), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72905] = 21, + ACTIONS(5698), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [72819] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5894), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5906), 1, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2762), 1, + STATE(2761), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5896), 2, + ACTIONS(5936), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 15, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 7, 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, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [72994] = 34, + [72926] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2763), 1, + STATE(2762), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5527), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73109] = 34, + ACTIONS(5676), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [73041] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, - anon_sym_AMP_AMP, - ACTIONS(5892), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, - anon_sym_AMP, - ACTIONS(5900), 1, - anon_sym_CARET, - ACTIONS(5902), 1, - anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2764), 1, + STATE(2763), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5525), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73224] = 34, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 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, + [73134] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5968), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2765), 1, + STATE(2764), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5523), 3, + ACTIONS(5509), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73339] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - STATE(2766), 1, - sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6025), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 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, - [73426] = 36, + [73249] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5940), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5966), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5968), 1, sym__ternary_qmark, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2767), 1, + STATE(2765), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6285), 1, - aux_sym_array_repeat1, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5513), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73545] = 10, + [73364] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, + ACTIONS(2142), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - STATE(2768), 1, + STATE(2766), 1, sym_comment, - ACTIONS(5404), 2, + ACTIONS(5078), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(6031), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3581), 4, + ACTIONS(3679), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2144), 11, + ACTIONS(2140), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275889,7 +275771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 22, + ACTIONS(2146), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -275912,124 +275794,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73612] = 35, + [73431] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5057), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5434), 1, - anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_GT_GT, - ACTIONS(5442), 1, + STATE(2767), 1, + sym_comment, + ACTIONS(5060), 2, 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(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2656), 1, - sym_type_arguments, - STATE(2769), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5416), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5426), 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, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(6035), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5456), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73729] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4393), 1, - anon_sym_QMARK, - STATE(2770), 1, - sym_comment, - ACTIONS(4391), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4238), 13, + ACTIONS(5063), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5051), 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(4242), 23, + ACTIONS(5055), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276049,246 +275851,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73792] = 34, + [73498] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5892), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5900), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5902), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5918), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2771), 1, + STATE(2768), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5884), 2, + STATE(6291), 1, + aux_sym_array_repeat1, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5916), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5521), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73907] = 34, + [73617] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5890), 1, - anon_sym_AMP_AMP, - ACTIONS(5892), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5894), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5898), 1, - anon_sym_AMP, - ACTIONS(5900), 1, - anon_sym_CARET, - ACTIONS(5902), 1, - anon_sym_PIPE, - ACTIONS(5906), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5908), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5910), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5920), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2772), 1, + STATE(2769), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5884), 2, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5888), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5896), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5904), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5487), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74022] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5395), 1, - anon_sym_LBRACK, - STATE(2773), 1, - sym_comment, - ACTIONS(5398), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6037), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5322), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5389), 11, - anon_sym_STAR, + ACTIONS(5517), 7, 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(5393), 22, + ACTIONS(5515), 15, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [74089] = 11, + anon_sym_implements, + [73706] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4993), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5910), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(6009), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(2774), 1, + STATE(2770), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5517), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276301,313 +276046,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5481), 24, + ACTIONS(5515), 18, 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, - 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, - [74158] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2775), 1, - sym_comment, - ACTIONS(4452), 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(4979), 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [74215] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5231), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(2776), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74296] = 36, + anon_sym_implements, + [73785] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - ACTIONS(6041), 1, - anon_sym_RPAREN, STATE(2313), 1, sym_type_arguments, - STATE(2777), 1, + STATE(2771), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(6195), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5069), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74415] = 35, + ACTIONS(5515), 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, + [73888] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5434), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5436), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(5442), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(5444), 1, + ACTIONS(5948), 1, anon_sym_CARET, - ACTIONS(5446), 1, + ACTIONS(5950), 1, anon_sym_PIPE, - ACTIONS(5450), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(5452), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(5454), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(5462), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(5470), 1, - sym__ternary_qmark, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2778), 1, + STATE(2772), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5416), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5426), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5440), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5448), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5458), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5460), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6043), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5456), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74532] = 16, + ACTIONS(5515), 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, + [73993] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -276616,30 +276225,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, + ACTIONS(6041), 1, + anon_sym_static, + ACTIONS(6043), 1, + anon_sym_readonly, ACTIONS(6045), 1, - anon_sym_STAR, - ACTIONS(6047), 1, - anon_sym_async, - ACTIONS(6051), 1, anon_sym_abstract, - STATE(2779), 1, + STATE(2773), 1, sym_comment, - STATE(3901), 1, + STATE(3575), 1, + sym_accessibility_modifier, + STATE(3670), 1, + sym_override_modifier, + STATE(4187), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -276648,20 +276264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 20, + ACTIONS(4498), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -276669,75 +276282,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74610] = 11, + [74078] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3581), 1, - anon_sym_extends, - ACTIONS(5401), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(6031), 1, - anon_sym_RPAREN, - STATE(2780), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5954), 1, + anon_sym_PERCENT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(6009), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2774), 1, sym_comment, - ACTIONS(2146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5404), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5472), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2144), 11, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5952), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(2150), 22, + ACTIONS(5515), 17, 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [74678] = 7, + anon_sym_implements, + [74163] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5765), 1, - sym__automatic_semicolon, - STATE(2781), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4352), 1, + anon_sym_QMARK, + STATE(2775), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(4348), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276751,14 +276379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2222), 27, + ACTIONS(4222), 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, @@ -276779,286 +276403,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74738] = 9, + [74226] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5430), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5769), 1, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - STATE(2782), 1, + ACTIONS(5942), 1, + anon_sym_GT_GT, + ACTIONS(5954), 1, + anon_sym_PERCENT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(5958), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2776), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(2184), 13, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5944), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 25, - sym__automatic_semicolon, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 10, 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [74802] = 35, + anon_sym_implements, + [74323] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6057), 1, - anon_sym_SEMI, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5942), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(5954), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(5956), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(5958), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6089), 1, - sym__automatic_semicolon, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2783), 1, + STATE(2777), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5932), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(5944), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5964), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(5960), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74918] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, + ACTIONS(5515), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1045), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(2784), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [75008] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [74422] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5942), 1, + anon_sym_GT_GT, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, - STATE(2785), 1, + ACTIONS(5948), 1, + anon_sym_CARET, + ACTIONS(5954), 1, + anon_sym_PERCENT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(5958), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2778), 1, sym_comment, - ACTIONS(5350), 11, - anon_sym_STAR, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5932), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5936), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5944), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5952), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5352), 28, - sym__automatic_semicolon, + ACTIONS(5964), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5960), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 9, 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, - [75070] = 11, + anon_sym_implements, + [74523] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5466), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5954), 1, + anon_sym_PERCENT, + ACTIONS(5956), 1, + anon_sym_STAR_STAR, + ACTIONS(6009), 1, anon_sym_LT, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2786), 1, + STATE(2779), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - STATE(3068), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5932), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5479), 12, - anon_sym_STAR, + ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -277067,185 +276667,107 @@ 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(5481), 23, - sym__automatic_semicolon, + ACTIONS(5515), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - 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_satisfies, - [75138] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6101), 1, - anon_sym_STAR, - ACTIONS(6103), 1, - anon_sym_async, - ACTIONS(6105), 1, - anon_sym_readonly, - STATE(2787), 1, - sym_comment, - STATE(3619), 1, - sym_override_modifier, - STATE(3994), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6107), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(4496), 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, - [75220] = 34, + anon_sym_implements, + [74606] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, + ACTIONS(6051), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6061), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2788), 1, + STATE(2780), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6109), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75334] = 5, + ACTIONS(5515), 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, + [74702] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2789), 1, + ACTIONS(5353), 1, + anon_sym_DOT, + STATE(2781), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(5324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277259,7 +276781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 29, + ACTIONS(5326), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277269,7 +276791,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, @@ -277289,47 +276810,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75390] = 12, + [74760] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3267), 1, - anon_sym_QMARK, - ACTIONS(3581), 1, - anon_sym_extends, - ACTIONS(5401), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_COLON, - STATE(2790), 1, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + STATE(2782), 1, sym_comment, - ACTIONS(5404), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6031), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2144), 11, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(2256), 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(2150), 22, + ACTIONS(2258), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277347,72 +276865,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75460] = 12, + [74824] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5320), 1, - anon_sym_QMARK, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5395), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5928), 1, - anon_sym_COLON, - STATE(2791), 1, - sym_comment, - ACTIONS(5398), 2, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6069), 1, + anon_sym_SEMI, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(6037), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5389), 11, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6083), 1, + sym__automatic_semicolon, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2783), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [75530] = 5, + [74940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2792), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5328), 13, + ACTIONS(4492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277426,7 +276967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 29, + ACTIONS(5320), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277456,82 +276997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75586] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(2793), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [75676] = 5, + [74996] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2794), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5328), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277545,7 +277018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 29, + ACTIONS(5316), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277575,16 +277048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75732] = 6, + [75052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2795), 1, + STATE(2786), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(4488), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277598,7 +277069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 28, + ACTIONS(5290), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277627,65 +277098,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75790] = 5, + anon_sym_extends, + [75108] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2796), 1, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(6089), 1, + anon_sym_COMMA, + ACTIONS(6091), 1, + anon_sym_RBRACE, + STATE(2787), 1, sym_comment, - ACTIONS(5328), 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(5330), 29, + STATE(5716), 1, + aux_sym_object_pattern_repeat1, + STATE(7169), 1, + sym__property_name, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + STATE(5702), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6087), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75190] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6095), 1, + anon_sym_async, + ACTIONS(6099), 1, + anon_sym_abstract, + STATE(2788), 1, + sym_comment, + STATE(3898), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6097), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [75268] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2789), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 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(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [75846] = 5, + [75382] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2797), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + STATE(2790), 1, sym_comment, - ACTIONS(5300), 13, + ACTIONS(5051), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277699,7 +277328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 29, + ACTIONS(5055), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277728,38 +277357,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75902] = 5, + [75440] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1057), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(2791), 1, + sym_comment, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [75530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2798), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5300), 13, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5863), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4965), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4218), 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(5302), 29, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -277779,152 +277479,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75958] = 34, + [75592] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6059), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(6061), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(6069), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(6071), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2799), 1, + STATE(2793), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6111), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, + ACTIONS(5590), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76072] = 11, + [75706] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3581), 1, - anon_sym_extends, - ACTIONS(5401), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(6113), 1, - anon_sym_RPAREN, - STATE(2800), 1, - sym_comment, - ACTIONS(2146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5404), 2, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(5970), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2144), 11, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2794), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5847), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [76140] = 5, + [75820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2801), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5300), 13, + ACTIONS(3377), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277938,7 +277660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 29, + ACTIONS(3679), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277968,37 +277690,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76196] = 5, + [75876] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2802), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + ACTIONS(6105), 1, + anon_sym_SEMI, + ACTIONS(6107), 1, + sym__automatic_semicolon, + STATE(2742), 1, + sym_type_arguments, + STATE(2796), 1, sym_comment, - ACTIONS(5290), 13, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75992] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2797), 1, + sym_comment, + ACTIONS(5837), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5834), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5380), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5822), 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(5292), 29, - sym__automatic_semicolon, + ACTIONS(5824), 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, @@ -278018,38 +277825,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76252] = 5, + [76054] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6109), 1, + anon_sym_static, + ACTIONS(6111), 1, + anon_sym_readonly, + ACTIONS(6113), 1, + anon_sym_abstract, + STATE(2798), 1, + sym_comment, + STATE(3683), 1, + sym_override_modifier, + STATE(4297), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [76134] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2803), 1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(2799), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5544), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5292), 29, + ACTIONS(4222), 25, 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, @@ -278069,38 +277943,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76308] = 5, + [76198] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2804), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5544), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5011), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4218), 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(5292), 29, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -278120,15 +277997,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76364] = 5, + [76260] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6115), 1, + anon_sym_STAR, + ACTIONS(6117), 1, + anon_sym_async, + ACTIONS(6121), 1, + anon_sym_abstract, + STATE(2801), 1, + sym_comment, + STATE(3926), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6119), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [76338] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6115), 1, + anon_sym_STAR, + ACTIONS(6117), 1, + anon_sym_async, + ACTIONS(6123), 1, + anon_sym_readonly, + STATE(2802), 1, + sym_comment, + STATE(3637), 1, + sym_override_modifier, + STATE(3928), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6119), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [76420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2805), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(3227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278142,7 +278144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 29, + ACTIONS(3669), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278172,15 +278174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76420] = 22, + [76476] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, @@ -278191,21 +278191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2997), 1, anon_sym_override, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(2806), 1, + ACTIONS(6125), 1, + anon_sym_RBRACE, + STATE(2804), 1, sym_comment, - STATE(3632), 1, + STATE(3627), 1, sym_override_modifier, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, @@ -278213,10 +278215,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -278240,231 +278242,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76510] = 34, + [76566] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2807), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5487), 2, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(5089), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76624] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6116), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2808), 1, + STATE(2805), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 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(5660), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - [76706] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + STATE(4803), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5552), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2809), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5521), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76820] = 17, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 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, + [76644] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -278473,40 +278313,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5037), 1, + ACTIONS(5089), 1, anon_sym_STAR, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5049), 1, + ACTIONS(5101), 1, anon_sym_async, - ACTIONS(5477), 1, + ACTIONS(5511), 1, anon_sym_LBRACK, - STATE(2810), 1, + STATE(2806), 1, sym_comment, - STATE(3950), 1, + STATE(3959), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5053), 2, + ACTIONS(5105), 2, anon_sym_get, anon_sym_set, - ACTIONS(6025), 2, + ACTIONS(6014), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4496), 20, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -278527,61 +278367,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76900] = 16, + [76724] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1039), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5039), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(2811), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(2807), 1, sym_comment, - STATE(4693), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5581), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6025), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(2989), 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, @@ -278589,124 +278435,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76978] = 34, + [76814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + STATE(2808), 1, + sym_comment, + ACTIONS(4486), 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(5278), 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, + [76870] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, + ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(6069), 1, + ACTIONS(6077), 1, anon_sym_CARET, - ACTIONS(6071), 1, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2809), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6127), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76984] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6061), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2812), 1, + STATE(2810), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5523), 2, + ACTIONS(5602), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77092] = 11, + [77098] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5395), 1, - anon_sym_LBRACK, - ACTIONS(6119), 1, - anon_sym_RPAREN, - STATE(2813), 1, + STATE(2811), 1, sym_comment, - ACTIONS(5391), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5398), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5928), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5389), 11, + ACTIONS(4486), 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(5393), 22, + ACTIONS(5278), 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, @@ -278726,14 +278696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77160] = 5, + anon_sym_extends, + [77154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2814), 1, + STATE(2812), 1, sym_comment, - ACTIONS(3267), 13, + ACTIONS(4484), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278747,7 +278718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3581), 29, + ACTIONS(5345), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278777,14 +278748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77216] = 5, + [77210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2815), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5270), 13, + ACTIONS(4484), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278798,7 +278769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 29, + ACTIONS(5345), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278828,14 +278799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77272] = 5, + [77266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2816), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5260), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278849,7 +278820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5262), 29, + ACTIONS(5356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278879,14 +278850,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77328] = 5, + [77322] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym_STAR, + ACTIONS(6131), 1, + anon_sym_async, + ACTIONS(6133), 1, + anon_sym_readonly, + STATE(2815), 1, + sym_comment, + STATE(3633), 1, + sym_override_modifier, + STATE(4000), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6135), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [77404] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2816), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6137), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77518] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5748), 1, + anon_sym_EQ, STATE(2817), 1, sym_comment, - ACTIONS(5256), 13, + ACTIONS(5746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278900,7 +279017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5258), 29, + ACTIONS(5750), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278929,15 +279046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77384] = 5, + [77576] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2818), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(3241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278951,7 +279067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 29, + ACTIONS(3599), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -278981,14 +279097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77440] = 5, + [77632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2819), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(4467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279002,7 +279118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 29, + ACTIONS(5280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279032,14 +279148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77496] = 5, + [77688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2820), 1, sym_comment, - ACTIONS(5248), 13, + ACTIONS(4465), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279053,7 +279169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5250), 29, + ACTIONS(5265), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279083,14 +279199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77552] = 5, + [77744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2821), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(4463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279104,7 +279220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 29, + ACTIONS(5155), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279134,14 +279250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77608] = 5, + [77800] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5713), 1, + sym__automatic_semicolon, STATE(2822), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(2138), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279155,8 +279275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 29, - sym__automatic_semicolon, + ACTIONS(2190), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -279184,15 +279303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77664] = 5, + [77860] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2823), 1, sym_comment, - ACTIONS(5238), 13, + ACTIONS(2140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279206,7 +279326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5240), 29, + ACTIONS(2146), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279235,53 +279355,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [77720] = 18, + [77918] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1014), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6122), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(6124), 1, - anon_sym_async, - ACTIONS(6126), 1, - anon_sym_readonly, STATE(2824), 1, sym_comment, - STATE(3625), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3978), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6128), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 18, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -279300,50 +279423,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77802] = 14, + [78008] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5057), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6130), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, + ACTIONS(5063), 1, + anon_sym_extends, + ACTIONS(5318), 1, + anon_sym_QMARK, + ACTIONS(5989), 1, + anon_sym_COLON, STATE(2825), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(5060), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6035), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5051), 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(5680), 20, - sym__automatic_semicolon, + ACTIONS(5055), 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, @@ -279359,15 +279479,35 @@ 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, - [77876] = 5, + [78078] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6139), 1, + anon_sym_LT, + STATE(2742), 1, + sym_type_arguments, STATE(2826), 1, sym_comment, - ACTIONS(5227), 13, + STATE(5719), 1, + sym_optional_chain, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279378,21 +279518,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(5229), 29, + ACTIONS(5761), 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, @@ -279408,17 +279540,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, - [77932] = 5, + [78152] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2827), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(3247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279432,7 +279562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 29, + ACTIONS(3579), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279462,14 +279592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77988] = 5, + [78208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2828), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(3405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279483,7 +279613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 29, + ACTIONS(3569), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279513,37 +279643,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78044] = 5, + [78264] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(3377), 1, + anon_sym_QMARK, + ACTIONS(3679), 1, + anon_sym_extends, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, + anon_sym_COLON, STATE(2829), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5078), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6031), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2140), 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(5225), 29, - sym__automatic_semicolon, + ACTIONS(2146), 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, @@ -279563,131 +279701,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78100] = 5, + [78334] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, + anon_sym_AMP_AMP, + ACTIONS(5479), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, + anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_PERCENT, + ACTIONS(5495), 1, + anon_sym_STAR_STAR, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2830), 1, sym_comment, - ACTIONS(4458), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5242), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5503), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78448] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 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, - [78156] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(2831), 1, sym_comment, - ACTIONS(4460), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5471), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5236), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5503), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5706), 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, - anon_sym_AMP_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(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - anon_sym_extends, - [78212] = 5, + [78562] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, + anon_sym_extends, STATE(2832), 1, sym_comment, - ACTIONS(4462), 13, + ACTIONS(5029), 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(5234), 29, + ACTIONS(5031), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279716,164 +279915,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78268] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(2833), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [78358] = 35, + [78624] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, + anon_sym_LT, ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - ACTIONS(6135), 1, + ACTIONS(6148), 1, anon_sym_SEMI, - ACTIONS(6137), 1, + ACTIONS(6150), 1, sym__automatic_semicolon, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2834), 1, + STATE(2833), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78474] = 5, + [78740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2835), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5354), 13, + ACTIONS(4969), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279887,7 +280017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5356), 29, + ACTIONS(4971), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -279917,124 +280047,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78530] = 34, + [78796] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, + ACTIONS(6061), 1, anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, - anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2836), 1, + STATE(2835), 1, sym_comment, - STATE(5791), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5794), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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(6139), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78644] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [78864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - ACTIONS(5858), 1, - anon_sym_LBRACK, - ACTIONS(6145), 1, - anon_sym_RPAREN, - STATE(2837), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6141), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6143), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4238), 11, + ACTIONS(5017), 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(4242), 22, + ACTIONS(5019), 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, @@ -280054,98 +280154,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78712] = 34, + anon_sym_extends, + [78920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + STATE(2837), 1, + sym_comment, + ACTIONS(5071), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2838), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5525), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5073), 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, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, + 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(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 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(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78826] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [78976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6152), 1, - sym_regex_flags, - STATE(2839), 1, + STATE(2838), 1, sym_comment, - ACTIONS(6148), 16, + ACTIONS(4977), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -280158,17 +280227,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(6150), 25, + ACTIONS(4979), 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, @@ -280183,97 +280251,22 @@ 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, - [78884] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2840), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5527), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78998] = 5, + anon_sym_extends, + [79032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2841), 1, + ACTIONS(6152), 1, + anon_sym_LBRACK, + STATE(2839), 1, sym_comment, - ACTIONS(4963), 13, + ACTIONS(5065), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280287,7 +280280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4965), 29, + ACTIONS(5067), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280296,7 +280289,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, @@ -280317,16 +280309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79054] = 6, + [79090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6154), 1, - anon_sym_LBRACK, - STATE(2842), 1, + STATE(2840), 1, sym_comment, - ACTIONS(5278), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280340,7 +280330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 28, + ACTIONS(5015), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280349,6 +280339,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, @@ -280369,15 +280360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79112] = 5, + [79146] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2843), 1, + ACTIONS(6158), 1, + sym_regex_flags, + STATE(2841), 1, sym_comment, - ACTIONS(5278), 13, + ACTIONS(6154), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -280390,16 +280384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5280), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6156), 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, @@ -280414,22 +280409,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, - anon_sym_satisfies, - anon_sym_extends, - [79168] = 6, + [79204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6156), 1, - anon_sym_DOT, - STATE(2844), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5336), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280443,7 +280433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 28, + ACTIONS(5015), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280453,6 +280443,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, @@ -280472,14 +280463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79226] = 5, + [79260] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2845), 1, + STATE(2843), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(5065), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280493,7 +280484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 29, + ACTIONS(5067), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280523,185 +280514,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79282] = 21, + [79316] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6160), 1, anon_sym_LT, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2846), 1, + STATE(2844), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 7, - anon_sym_BANG, + ACTIONS(5614), 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(5569), 14, + ACTIONS(5616), 16, 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, - [79370] = 34, + [79398] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + STATE(2845), 1, + sym_comment, + ACTIONS(4963), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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(4965), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2847), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5652), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [79454] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6163), 1, + anon_sym_DOT, + STATE(2846), 1, + sym_comment, + ACTIONS(5292), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5294), 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, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79484] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [79512] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6158), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2848), 1, + STATE(2847), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280712,98 +280699,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(5569), 17, + ACTIONS(5304), 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, - [79562] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6163), 1, - anon_sym_COMMA, - ACTIONS(6165), 1, - anon_sym_RBRACE, - STATE(2849), 1, - sym_comment, - STATE(5715), 1, - aux_sym_object_pattern_repeat1, - STATE(7163), 1, - sym__property_name, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - STATE(5697), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6161), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79644] = 5, + anon_sym_extends, + [79568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2850), 1, + STATE(2848), 1, sym_comment, - ACTIONS(4973), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280817,7 +280753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 29, + ACTIONS(5011), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280847,41 +280783,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79700] = 8, + [79624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(2851), 1, + STATE(2849), 1, sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + ACTIONS(5013), 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(4242), 26, + ACTIONS(5015), 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, @@ -280901,118 +280833,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79762] = 28, + anon_sym_extends, + [79680] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5571), 1, + STATE(2850), 1, + sym_comment, + ACTIONS(5159), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6063), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6075), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5161), 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, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2852), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 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(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [79736] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2851), 1, + sym_comment, + ACTIONS(5247), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 8, + ACTIONS(5249), 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, - [79864] = 11, + anon_sym_extends, + [79792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - ACTIONS(5858), 1, - anon_sym_LBRACK, - ACTIONS(6172), 1, - anon_sym_RPAREN, - STATE(2853), 1, + STATE(2852), 1, sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6167), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6169), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4238), 11, + ACTIONS(5159), 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(4242), 22, + ACTIONS(5161), 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, @@ -281032,33 +280986,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79932] = 11, + anon_sym_extends, + [79848] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(2854), 1, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(2853), 1, sym_comment, - ACTIONS(4339), 2, + ACTIONS(5544), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5368), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5616), 2, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4238), 11, + ACTIONS(4218), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -281066,10 +281014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 22, + ACTIONS(4222), 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, @@ -281089,63 +281041,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80000] = 22, + [79910] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6176), 1, - anon_sym_RBRACE, - STATE(2855), 1, + ACTIONS(6165), 1, + anon_sym_static, + ACTIONS(6167), 1, + anon_sym_readonly, + ACTIONS(6169), 1, + anon_sym_abstract, + STATE(2854), 1, sym_comment, - STATE(3632), 1, + STATE(3661), 1, sym_override_modifier, - STATE(4672), 1, + STATE(4188), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 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(2989), 18, + ACTIONS(4498), 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_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281157,89 +281104,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80090] = 29, + [79990] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4965), 1, + anon_sym_extends, + ACTIONS(5863), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5571), 1, + ACTIONS(6176), 1, + anon_sym_RPAREN, + STATE(2855), 1, + sym_comment, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6173), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4218), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4222), 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, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2856), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 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(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80058] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4338), 1, + anon_sym_EQ, + ACTIONS(4346), 1, + anon_sym_QMARK, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(2856), 1, + sym_comment, + ACTIONS(4341), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5011), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, - sym__automatic_semicolon, + ACTIONS(4222), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [80194] = 5, + [80126] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2857), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(5159), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281253,7 +281239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5322), 29, + ACTIONS(5161), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281283,14 +281269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80250] = 5, + [80182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2858), 1, sym_comment, - ACTIONS(5316), 13, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281304,7 +281290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5318), 29, + ACTIONS(5165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281334,21 +281320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80306] = 6, + [80238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, STATE(2859), 1, sym_comment, - ACTIONS(5312), 12, + ACTIONS(5318), 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, @@ -281356,7 +281341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5314), 29, + ACTIONS(5063), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281386,14 +281371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80364] = 5, + [80294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2860), 1, sym_comment, - ACTIONS(5308), 13, + ACTIONS(5362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281407,7 +281392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5310), 29, + ACTIONS(5364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281437,20 +281422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80420] = 5, + [80350] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6142), 1, + anon_sym_AMP, STATE(2861), 1, sym_comment, - ACTIONS(5304), 13, + ACTIONS(5366), 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, @@ -281458,7 +281444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5306), 29, + ACTIONS(5368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281488,14 +281474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80476] = 5, + [80408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2862), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(5045), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281509,7 +281495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5298), 29, + ACTIONS(5043), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281539,32 +281525,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80532] = 8, + [80464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, STATE(2863), 1, sym_comment, - ACTIONS(5282), 11, + ACTIONS(5378), 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(5284), 28, + ACTIONS(5380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281593,33 +281575,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80594] = 8, + anon_sym_extends, + [80520] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5280), 1, - anon_sym_extends, - ACTIONS(6154), 1, - anon_sym_LBRACK, STATE(2864), 1, sym_comment, - ACTIONS(5278), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5274), 11, + ACTIONS(5382), 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(5276), 27, + ACTIONS(5384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281628,6 +281606,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, @@ -281647,30 +281626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80656] = 6, + anon_sym_extends, + [80576] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6178), 1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, anon_sym_extends, STATE(2865), 1, sym_comment, - ACTIONS(5264), 13, + ACTIONS(5386), 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(5266), 28, + ACTIONS(5388), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281699,30 +281681,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80714] = 6, + [80638] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6154), 1, + ACTIONS(5067), 1, + anon_sym_extends, + ACTIONS(6152), 1, anon_sym_LBRACK, STATE(2866), 1, sym_comment, - ACTIONS(5013), 13, + ACTIONS(5065), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5390), 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(5015), 28, + ACTIONS(5392), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281750,15 +281735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80772] = 5, + [80700] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6180), 1, + anon_sym_extends, STATE(2867), 1, sym_comment, - ACTIONS(5366), 13, + ACTIONS(5394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281772,7 +281758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 29, + ACTIONS(5396), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281801,95 +281787,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80828] = 34, + [80758] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, - anon_sym_AMP_AMP, - ACTIONS(5493), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, - anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, STATE(2868), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5400), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6180), 2, + ACTIONS(5402), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 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, - [80942] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [80816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2869), 1, sym_comment, - ACTIONS(5373), 13, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281903,7 +281860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5375), 29, + ACTIONS(5165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281933,14 +281890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80998] = 5, + [80872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2870), 1, sym_comment, - ACTIONS(5244), 13, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281954,7 +281911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5246), 29, + ACTIONS(5165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281984,107 +281941,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [81054] = 19, + [80928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6158), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, STATE(2871), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5231), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 16, + ACTIONS(5233), 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, - [81138] = 9, + anon_sym_extends, + [80984] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(5368), 1, - anon_sym_extends, STATE(2872), 1, sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + ACTIONS(5282), 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(4242), 25, + ACTIONS(5284), 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, @@ -282104,186 +282042,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81202] = 25, + anon_sym_extends, + [81040] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(6063), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, - ACTIONS(6075), 1, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6061), 1, anon_sym_LT, - STATE(2656), 1, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, sym_type_arguments, STATE(2873), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(6182), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 9, + [81154] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6184), 1, + anon_sym_STAR, + ACTIONS(6186), 1, + anon_sym_async, + ACTIONS(6190), 1, + anon_sym_abstract, + STATE(2874), 1, + sym_comment, + STATE(3909), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6188), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81298] = 26, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4498), 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, + [81232] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6192), 1, anon_sym_LT, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2874), 1, + STATE(2875), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 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, - [81396] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, - STATE(2875), 1, - sym_comment, - ACTIONS(5163), 11, + ACTIONS(5680), 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(5165), 28, + ACTIONS(5682), 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, @@ -282297,92 +282245,268 @@ 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, - [81458] = 5, + [81308] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6184), 1, + anon_sym_STAR, + ACTIONS(6186), 1, + anon_sym_async, + ACTIONS(6195), 1, + anon_sym_readonly, STATE(2876), 1, sym_comment, - ACTIONS(5163), 13, - anon_sym_STAR, + STATE(3635), 1, + sym_override_modifier, + STATE(3909), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6188), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4498), 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, + [81390] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2877), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5698), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81504] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + ACTIONS(6197), 1, + anon_sym_SEMI, + ACTIONS(6199), 1, + sym__automatic_semicolon, + STATE(2742), 1, + sym_type_arguments, + STATE(2878), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 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(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [81514] = 5, + [81620] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2877), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(2879), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5544), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5159), 29, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -282402,21 +282526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81570] = 8, + [81684] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6099), 1, + ACTIONS(6146), 1, anon_sym_extends, - STATE(2878), 1, + STATE(2880), 1, sym_comment, - ACTIONS(5145), 11, + ACTIONS(5261), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282428,7 +282551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5147), 28, + ACTIONS(5263), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282457,28 +282580,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81632] = 5, + [81746] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2879), 1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, + anon_sym_extends, + STATE(2881), 1, sym_comment, - ACTIONS(5141), 13, + ACTIONS(5257), 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(5143), 29, + ACTIONS(5259), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282507,151 +282634,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81688] = 9, + [81808] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - STATE(2880), 1, - sym_comment, - ACTIONS(3581), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5404), 3, - anon_sym_GT, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(2144), 10, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2882), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5676), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 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, - anon_sym_PIPE_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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [81752] = 9, + [81922] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5391), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5395), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(2881), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(2883), 1, sym_comment, - ACTIONS(5322), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5398), 3, - anon_sym_GT, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [82012] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(5389), 10, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2884), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5678), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 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, - anon_sym_PIPE_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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [81816] = 7, + [82126] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2882), 1, + STATE(2885), 1, sym_comment, - ACTIONS(5308), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5310), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4238), 11, + ACTIONS(5339), 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(4242), 22, + ACTIONS(5341), 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, @@ -282671,14 +282912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81876] = 5, + anon_sym_extends, + [82182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2883), 1, + STATE(2886), 1, sym_comment, - ACTIONS(5137), 13, + ACTIONS(5306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282692,7 +282934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5139), 29, + ACTIONS(5308), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282722,16 +282964,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [81932] = 6, + [82238] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5219), 1, - anon_sym_extends, - STATE(2884), 1, + ACTIONS(6203), 1, + sym__automatic_semicolon, + STATE(2887), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(2190), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282745,14 +282992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 28, - sym__automatic_semicolon, + ACTIONS(2146), 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, @@ -282774,16 +283018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81990] = 6, + [82300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5575), 1, - anon_sym_EQ, - STATE(2885), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5573), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282797,7 +283039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5577), 28, + ACTIONS(5023), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282826,14 +283068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82048] = 5, + anon_sym_extends, + [82356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2886), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(5025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282847,7 +283090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 29, + ACTIONS(5027), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282877,14 +283120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82104] = 5, + [82412] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2887), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(5025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282898,7 +283141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 29, + ACTIONS(5027), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282928,14 +283171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82160] = 5, + [82468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2888), 1, + STATE(2891), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(5025), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282949,7 +283192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 29, + ACTIONS(5027), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282979,14 +283222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82216] = 5, + [82524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2889), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283000,7 +283243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 29, + ACTIONS(5083), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283030,36 +283273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82272] = 15, + [82580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6182), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2890), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2893), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283070,13 +283293,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(5595), 18, + ACTIONS(4222), 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, @@ -283090,15 +283321,18 @@ 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, - [82348] = 5, + [82638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2891), 1, + STATE(2894), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283112,7 +283346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 29, + ACTIONS(5083), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283142,82 +283376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82404] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_RBRACE, - STATE(2892), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [82494] = 5, + [82694] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2893), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5081), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283231,7 +283397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5011), 29, + ACTIONS(5083), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283261,14 +283427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82550] = 5, + [82750] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2894), 1, + STATE(2896), 1, sym_comment, - ACTIONS(5019), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283282,7 +283448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 29, + ACTIONS(5241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283312,14 +283478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82606] = 5, + [82806] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2895), 1, + STATE(2897), 1, sym_comment, - ACTIONS(5009), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283333,7 +283499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5011), 29, + ACTIONS(5241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283363,94 +283529,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82662] = 34, + [82862] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5099), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5101), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5103), 1, + ACTIONS(5205), 1, anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(2896), 1, + STATE(2898), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5603), 2, + ACTIONS(5668), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82776] = 5, + [82976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2897), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283464,7 +283630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5007), 29, + ACTIONS(5241), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283494,14 +283660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82832] = 5, + [83032] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2898), 1, + STATE(2900), 1, sym_comment, - ACTIONS(5001), 13, + ACTIONS(5267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283515,7 +283681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 29, + ACTIONS(5269), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283545,153 +283711,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82888] = 5, + [83088] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2899), 1, - sym_comment, - ACTIONS(5005), 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(5007), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5477), 1, anon_sym_AMP_AMP, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5481), 1, + anon_sym_GT_GT, + ACTIONS(5485), 1, + anon_sym_AMP, + ACTIONS(5487), 1, anon_sym_CARET, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_PERCENT, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5497), 1, + anon_sym_LT, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5507), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2901), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [82944] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6187), 1, - sym__automatic_semicolon, - STATE(2900), 1, - sym_comment, - ACTIONS(2222), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2144), 13, + ACTIONS(5471), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5483), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 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(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6205), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5499), 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, - [83006] = 16, + [83202] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5838), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_async, - ACTIONS(6189), 1, - anon_sym_abstract, - STATE(2901), 1, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(2902), 1, sym_comment, - STATE(3904), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5846), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 20, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283699,12 +283848,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, @@ -283712,14 +283859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83084] = 5, + [83292] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2902), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + STATE(2903), 1, sym_comment, - ACTIONS(5001), 13, + STATE(3239), 1, + sym_arguments, + ACTIONS(5139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283733,13 +283884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5003), 29, + ACTIONS(5141), 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, @@ -283762,285 +283912,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83140] = 5, + [83352] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2903), 1, - sym_comment, - ACTIONS(5059), 13, - anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2904), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83466] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2905), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 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(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [83196] = 5, + [83580] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2904), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + STATE(2742), 1, + sym_type_arguments, + STATE(2906), 1, sym_comment, - ACTIONS(5063), 13, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5065), 29, + ACTIONS(5515), 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, - [83252] = 27, + [83668] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6209), 1, + anon_sym_STAR, + ACTIONS(6211), 1, + anon_sym_async, + ACTIONS(6213), 1, + anon_sym_readonly, + STATE(2907), 1, + sym_comment, + STATE(3632), 1, + sym_override_modifier, + STATE(3981), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6215), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [83750] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(6063), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6075), 1, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6061), 1, anon_sym_LT, - STATE(2656), 1, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, sym_type_arguments, - STATE(2905), 1, + STATE(2908), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(6217), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [83352] = 18, + [83864] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4965), 1, + anon_sym_extends, + ACTIONS(5863), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6158), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2906), 1, + ACTIONS(6223), 1, + anon_sym_RPAREN, + STATE(2909), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6219), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6221), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 16, - sym__automatic_semicolon, + ACTIONS(4222), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [83434] = 19, + [83932] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6158), 1, + ACTIONS(6226), 1, anon_sym_LT, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2907), 1, + STATE(2910), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 11, + ACTIONS(5517), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -284051,9 +284384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 15, + ACTIONS(5515), 17, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -284067,649 +284401,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83518] = 23, + anon_sym_satisfies, + [84010] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4965), 1, + anon_sym_extends, + ACTIONS(5863), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2908), 1, + ACTIONS(6231), 1, + anon_sym_RPAREN, + STATE(2911), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6229), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5571), 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(5569), 11, - sym__automatic_semicolon, + ACTIONS(4222), 22, 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, - [83610] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - STATE(2656), 1, - sym_type_arguments, - STATE(2909), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 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, - [83716] = 34, + [84078] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, + STATE(2912), 1, + sym_comment, + ACTIONS(5045), 2, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2910), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5043), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83830] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4222), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, - anon_sym_AMP, - ACTIONS(5501), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5503), 1, - anon_sym_PIPE, - ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2911), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5489), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5497), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5505), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5515), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5685), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5511), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83944] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6163), 1, - anon_sym_COMMA, - ACTIONS(6195), 1, - anon_sym_RBRACE, - STATE(2912), 1, - sym_comment, - STATE(5632), 1, - aux_sym_object_pattern_repeat1, - STATE(7163), 1, - sym__property_name, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - STATE(5630), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6193), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84026] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84138] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_LT, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, + anon_sym_PIPE, + STATE(2742), 1, sym_type_arguments, STATE(2913), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5624), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84140] = 34, + ACTIONS(5515), 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, + [84240] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, + anon_sym_LT, ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, + anon_sym_PIPE, + STATE(2742), 1, sym_type_arguments, STATE(2914), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5626), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84254] = 34, + ACTIONS(5515), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [84344] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6226), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, STATE(2915), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(6085), 2, + ACTIONS(5515), 16, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84368] = 7, + anon_sym_satisfies, + [84428] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5057), 1, + anon_sym_LBRACK, STATE(2916), 1, sym_comment, - STATE(3084), 1, - sym_arguments, - ACTIONS(5342), 13, + ACTIONS(5063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5060), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5051), 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(5344), 27, - sym__automatic_semicolon, + ACTIONS(5055), 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, @@ -284729,20 +284781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84428] = 8, + [84492] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6099), 1, + ACTIONS(6146), 1, anon_sym_extends, STATE(2917), 1, sym_comment, - ACTIONS(5360), 11, + ACTIONS(5167), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284754,7 +284806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5362), 28, + ACTIONS(5169), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284783,16 +284835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84490] = 6, + [84554] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, STATE(2918), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(5167), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284806,7 +284856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 28, + ACTIONS(5169), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284835,14 +284885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84548] = 5, + anon_sym_extends, + [84610] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2919), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(5147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284856,7 +284907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 29, + ACTIONS(5149), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284886,108 +284937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84604] = 34, + [84666] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2920), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6197), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84718] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(5368), 1, + ACTIONS(6146), 1, anon_sym_extends, - STATE(2921), 1, + STATE(2920), 1, sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + ACTIONS(5298), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -284995,13 +284962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 25, + ACTIONS(5300), 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, @@ -285021,26 +284991,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84782] = 8, + [84728] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - STATE(2922), 1, + ACTIONS(4346), 1, + anon_sym_QMARK, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(2921), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(4370), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5861), 3, - anon_sym_GT, + anon_sym_COLON, + ACTIONS(5011), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5547), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4238), 10, + ACTIONS(4218), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -285048,14 +285025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 26, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -285075,151 +285048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84844] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [84796] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6199), 1, - anon_sym_static, - ACTIONS(6201), 1, - anon_sym_readonly, - ACTIONS(6203), 1, - anon_sym_abstract, - STATE(2923), 1, - sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4193), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(2142), 1, 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(4496), 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, - [84924] = 18, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, - anon_sym_STAR, - ACTIONS(6047), 1, - anon_sym_async, - ACTIONS(6205), 1, - anon_sym_readonly, - STATE(2924), 1, + STATE(2922), 1, sym_comment, - STATE(3628), 1, - sym_override_modifier, - STATE(3900), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(3679), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [85006] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6095), 1, + anon_sym_extends, + ACTIONS(5078), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, - STATE(2925), 1, - sym_comment, - ACTIONS(5346), 11, + ACTIONS(2140), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -285227,16 +285077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 28, - sym__automatic_semicolon, + ACTIONS(2146), 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, @@ -285256,404 +285103,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85068] = 34, + [84860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2926), 1, + STATE(2923), 1, sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5692), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(5143), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85182] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(2927), 1, - sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [85272] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2928), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85386] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5145), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2929), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [84916] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2924), 1, + sym_comment, + ACTIONS(5235), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5237), 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(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85500] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [84972] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5137), 1, + anon_sym_extends, + STATE(2925), 1, + sym_comment, + ACTIONS(5347), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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(5349), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2930), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85030] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2926), 1, + sym_comment, + ACTIONS(5039), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5041), 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(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85614] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4965), 1, - anon_sym_extends, - STATE(2931), 1, + STATE(2927), 1, sym_comment, - ACTIONS(5346), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285667,7 +285329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 28, + ACTIONS(5007), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285696,94 +285358,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85672] = 34, + anon_sym_extends, + [85142] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6059), 1, + ACTIONS(5477), 1, anon_sym_AMP_AMP, - ACTIONS(6061), 1, + ACTIONS(5479), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, + ACTIONS(5481), 1, anon_sym_GT_GT, - ACTIONS(6067), 1, + ACTIONS(5485), 1, anon_sym_AMP, - ACTIONS(6069), 1, + ACTIONS(5487), 1, anon_sym_CARET, - ACTIONS(6071), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(5493), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(5495), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(5497), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(5505), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(5507), 1, sym__ternary_qmark, - STATE(2656), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2932), 1, + STATE(2928), 1, sym_comment, - STATE(5716), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5702), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + ACTIONS(5471), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(5475), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(5483), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(5491), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(5501), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + ACTIONS(6234), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(5499), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85786] = 5, + [85256] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2933), 1, + STATE(2929), 1, sym_comment, - ACTIONS(3283), 13, + ACTIONS(5039), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285797,7 +285460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3657), 29, + ACTIONS(5041), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285827,273 +285490,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85842] = 34, + [85312] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + STATE(2930), 1, + sym_comment, + ACTIONS(5005), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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(5007), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2934), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85368] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2931), 1, + sym_comment, + ACTIONS(5227), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(5229), 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(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85956] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, + STATE(2932), 1, + sym_comment, + ACTIONS(5243), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5424), 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(5245), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5430), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2935), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85480] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2933), 1, + sym_comment, + ACTIONS(5227), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6209), 2, + ACTIONS(5229), 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, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 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, - [86070] = 35, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85536] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, + anon_sym_LT, ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - ACTIONS(6211), 1, - anon_sym_SEMI, - ACTIONS(6213), 1, - sym__automatic_semicolon, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2936), 1, + STATE(2934), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5604), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86186] = 8, + [85650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, - STATE(2937), 1, + STATE(2935), 1, sym_comment, - ACTIONS(5023), 11, + ACTIONS(5243), 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(5025), 28, + ACTIONS(5245), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286122,16 +285824,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86248] = 6, + anon_sym_extends, + [85706] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(6089), 1, + anon_sym_COMMA, + ACTIONS(6238), 1, + anon_sym_RBRACE, + STATE(2936), 1, + sym_comment, + STATE(5634), 1, + aux_sym_object_pattern_repeat1, + STATE(7169), 1, + sym__property_name, + STATE(7205), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + STATE(5628), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6236), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - STATE(2938), 1, + STATE(2937), 1, sym_comment, - ACTIONS(5389), 13, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286145,7 +285910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 28, + ACTIONS(5003), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286174,94 +285939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86306] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, - ACTIONS(6059), 1, - anon_sym_AMP_AMP, - ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, - anon_sym_PIPE, - ACTIONS(6075), 1, - anon_sym_PERCENT, - ACTIONS(6077), 1, - anon_sym_STAR_STAR, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_type_arguments, - STATE(2939), 1, - sym_comment, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5464), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6055), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6065), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6083), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6085), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6215), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6081), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86420] = 5, + anon_sym_extends, + [85844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2940), 1, + STATE(2938), 1, sym_comment, - ACTIONS(4469), 13, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286275,7 +285961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 29, + ACTIONS(5129), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286305,14 +285991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86476] = 5, + [85900] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2941), 1, + STATE(2939), 1, sym_comment, - ACTIONS(4469), 13, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286326,7 +286012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5161), 29, + ACTIONS(5003), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286356,14 +286042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86532] = 5, + [85956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2942), 1, + STATE(2940), 1, sym_comment, - ACTIONS(4473), 13, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286377,7 +286063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5153), 29, + ACTIONS(5129), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286407,14 +286093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86588] = 5, + [86012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2943), 1, + STATE(2941), 1, sym_comment, - ACTIONS(5119), 13, + ACTIONS(5111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286428,7 +286114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5121), 29, + ACTIONS(5113), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286458,21 +286144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86644] = 6, + [86068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - STATE(2944), 1, + STATE(2942), 1, sym_comment, - ACTIONS(5123), 12, + ACTIONS(5107), 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, @@ -286480,7 +286165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5125), 29, + ACTIONS(5109), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286510,95 +286195,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86702] = 35, + [86124] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, - anon_sym_as, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, - anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, - ACTIONS(6071), 1, + STATE(2742), 1, + sym_type_arguments, + STATE(2943), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(6075), 1, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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, + [86222] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, anon_sym_PERCENT, - ACTIONS(6077), 1, + ACTIONS(6059), 1, anon_sym_STAR_STAR, - ACTIONS(6079), 1, + ACTIONS(6061), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, - sym__ternary_qmark, - ACTIONS(6217), 1, - anon_sym_SEMI, - ACTIONS(6219), 1, - sym__automatic_semicolon, - STATE(2656), 1, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + STATE(2742), 1, sym_type_arguments, - STATE(2945), 1, + STATE(2944), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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, + [86322] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6226), 1, + anon_sym_LT, + STATE(2742), 1, + sym_type_arguments, + STATE(2945), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(5517), 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(5515), 16, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86818] = 5, + anon_sym_satisfies, + [86404] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2946), 1, sym_comment, - ACTIONS(5127), 13, + ACTIONS(5137), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286612,15 +286430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 29, - sym__automatic_semicolon, + ACTIONS(5349), 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, @@ -286641,17 +286456,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86874] = 5, + [86462] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6226), 1, + anon_sym_LT, + STATE(2742), 1, + sym_type_arguments, STATE(2947), 1, sym_comment, - ACTIONS(4473), 13, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -286660,19 +286503,62 @@ 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(5153), 29, + ACTIONS(5515), 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_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, + [86546] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5057), 1, anon_sym_LBRACK, + ACTIONS(5063), 1, + anon_sym_extends, + ACTIONS(6240), 1, + anon_sym_RPAREN, + STATE(2948), 1, + sym_comment, + ACTIONS(5053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5060), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5989), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5051), 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(5055), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -286692,8 +286578,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86930] = 18, + [86614] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6095), 1, + anon_sym_async, + ACTIONS(6243), 1, + anon_sym_readonly, + STATE(2949), 1, + sym_comment, + STATE(3619), 1, + sym_override_modifier, + STATE(3904), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6097), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [86696] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(2950), 1, + sym_comment, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [86786] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -286702,34 +286719,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6221), 1, + ACTIONS(6247), 1, anon_sym_STAR, - ACTIONS(6223), 1, + ACTIONS(6249), 1, anon_sym_async, - ACTIONS(6225), 1, + ACTIONS(6251), 1, anon_sym_readonly, - STATE(2948), 1, + STATE(2951), 1, sym_comment, - STATE(3620), 1, + STATE(3621), 1, sym_override_modifier, - STATE(3964), 1, + STATE(3969), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6227), 2, + ACTIONS(6253), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -286738,7 +286755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4496), 18, + ACTIONS(4498), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286757,729 +286774,590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87012] = 5, + [86868] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2949), 1, - sym_comment, - ACTIONS(4494), 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(5135), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5217), 1, anon_sym_satisfies, - anon_sym_extends, - [87068] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2950), 1, + ACTIONS(5219), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2952), 1, sym_comment, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5613), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5368), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4238), 11, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5171), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 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(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87130] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2951), 1, - sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5858), 3, + ACTIONS(6205), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4975), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4238), 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(4242), 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_RPAREN, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 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, - [87192] = 9, + [86982] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(2952), 1, - sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 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(4242), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 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(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, anon_sym_PERCENT, + ACTIONS(6059), 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, - [87256] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, + ACTIONS(6061), 1, + anon_sym_LT, + STATE(2742), 1, + sym_type_arguments, STATE(2953), 1, sym_comment, - ACTIONS(5167), 11, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 28, + ACTIONS(5515), 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, - [87318] = 34, + [87074] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, - anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, + ACTIONS(5189), 1, anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(5193), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(5195), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5507), 1, + ACTIONS(5201), 1, anon_sym_PERCENT, - ACTIONS(5509), 1, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - ACTIONS(5517), 1, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5219), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, STATE(2954), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(5171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(5191), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5589), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6003), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2549), 2, + anon_sym_RPAREN, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(5207), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87432] = 34, + [87188] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5517), 1, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5483), 1, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, anon_sym_LT, - ACTIONS(5491), 1, + ACTIONS(6071), 1, anon_sym_AMP_AMP, - ACTIONS(5493), 1, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(5495), 1, - anon_sym_GT_GT, - ACTIONS(5499), 1, + ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(5501), 1, + ACTIONS(6077), 1, anon_sym_CARET, - ACTIONS(5503), 1, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(5507), 1, - anon_sym_PERCENT, - ACTIONS(5509), 1, - anon_sym_STAR_STAR, - ACTIONS(5517), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5519), 1, - sym__ternary_qmark, - STATE(2313), 1, + STATE(2742), 1, sym_type_arguments, STATE(2955), 1, sym_comment, - STATE(5791), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5485), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5489), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5497), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5505), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5513), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5515), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5611), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5511), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87546] = 5, + ACTIONS(5515), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [87294] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2956), 1, - sym_comment, - ACTIONS(5167), 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(5169), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 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(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2956), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [87602] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5175), 1, - anon_sym_DOT, - STATE(2957), 1, - sym_comment, - ACTIONS(5171), 13, + ACTIONS(5600), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5173), 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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [87660] = 34, + [87408] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(6077), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - STATE(2313), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2958), 1, + STATE(2957), 1, sym_comment, - STATE(5791), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5685), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87774] = 35, + [87522] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, + anon_sym_LT, ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - ACTIONS(6229), 1, + ACTIONS(6255), 1, anon_sym_SEMI, - ACTIONS(6231), 1, + ACTIONS(6257), 1, sym__automatic_semicolon, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, - STATE(2959), 1, + STATE(2958), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87890] = 5, + [87638] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2960), 1, + ACTIONS(5057), 1, + anon_sym_LBRACK, + ACTIONS(5063), 1, + anon_sym_extends, + ACTIONS(6035), 1, + anon_sym_RPAREN, + STATE(2959), 1, sym_comment, - ACTIONS(3289), 13, + ACTIONS(5053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5060), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5700), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5051), 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(3641), 29, - sym__automatic_semicolon, + ACTIONS(5055), 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, @@ -287499,141 +287377,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87946] = 5, + [87706] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2961), 1, - sym_comment, - ACTIONS(4477), 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(5149), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5185), 1, anon_sym_AMP_AMP, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5189), 1, + anon_sym_GT_GT, + ACTIONS(5193), 1, + anon_sym_AMP, + ACTIONS(5195), 1, anon_sym_CARET, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_PERCENT, + ACTIONS(5203), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5205), 1, + anon_sym_LT, + ACTIONS(5213), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5217), 1, anon_sym_satisfies, - anon_sym_extends, - [88002] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5178), 1, - anon_sym_DOT, - STATE(2962), 1, + ACTIONS(5219), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2960), 1, sym_comment, - ACTIONS(5171), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5171), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5181), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5191), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5199), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5173), 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(5211), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [88060] = 5, + ACTIONS(5590), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5207), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87820] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2963), 1, + ACTIONS(3679), 1, + anon_sym_extends, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(6031), 1, + anon_sym_RPAREN, + STATE(2961), 1, sym_comment, - ACTIONS(5181), 13, + ACTIONS(2142), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5078), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5844), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2140), 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(5183), 29, - sym__automatic_semicolon, + ACTIONS(2146), 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, @@ -287653,195 +287514,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88116] = 5, + [87888] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2964), 1, - sym_comment, - 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(5151), 29, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5511), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, + anon_sym_STAR, + ACTIONS(5783), 1, + anon_sym_async, + ACTIONS(6259), 1, + anon_sym_abstract, + STATE(2962), 1, + sym_comment, + STATE(3929), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5787), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [87966] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 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(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2963), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [88172] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2965), 1, - sym_comment, - ACTIONS(3293), 13, + ACTIONS(5523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 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(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [88228] = 5, + [88080] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2966), 1, - sym_comment, - ACTIONS(4471), 13, - anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2964), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5155), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88194] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 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(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2965), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [88284] = 8, + ACTIONS(5473), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88308] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, + ACTIONS(4979), 1, anon_sym_extends, - STATE(2967), 1, + STATE(2966), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5756), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5729), 10, + ACTIONS(5370), 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(5731), 26, + ACTIONS(5372), 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, @@ -287861,146 +287868,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88346] = 5, + [88366] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2968), 1, - sym_comment, - ACTIONS(5189), 13, - anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2967), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 29, + ACTIONS(6067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6261), 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, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88480] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, + ACTIONS(6075), 1, + anon_sym_AMP, + ACTIONS(6077), 1, + anon_sym_CARET, + ACTIONS(6079), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6085), 1, + sym__ternary_qmark, + STATE(2742), 1, + sym_type_arguments, + STATE(2968), 1, + sym_comment, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5670), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6053), 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(6055), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 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, - [88402] = 35, + [88594] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5418), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, anon_sym_as, - ACTIONS(5422), 1, + ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5468), 1, + ACTIONS(5467), 1, anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, ACTIONS(6059), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6063), 1, - anon_sym_GT_GT, - ACTIONS(6067), 1, - anon_sym_AMP, - ACTIONS(6069), 1, - anon_sym_CARET, + anon_sym_LT, ACTIONS(6071), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, + ACTIONS(6073), 1, + anon_sym_PIPE_PIPE, ACTIONS(6075), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6077), 1, - anon_sym_STAR_STAR, + anon_sym_CARET, ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_PIPE, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6091), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - ACTIONS(6233), 1, - anon_sym_SEMI, - ACTIONS(6235), 1, - sym__automatic_semicolon, - STATE(2656), 1, + STATE(2742), 1, sym_type_arguments, STATE(2969), 1, sym_comment, - STATE(5716), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5464), 2, + ACTIONS(5463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6053), 2, + ACTIONS(5527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6055), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6065), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6073), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6083), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6085), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3068), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(6081), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88518] = 5, + [88708] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2970), 1, sym_comment, - ACTIONS(3291), 13, + ACTIONS(5310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288014,7 +288129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3507), 29, + ACTIONS(5312), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288044,108 +288159,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88574] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [88764] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_STAR, - ACTIONS(6239), 1, - anon_sym_async, - ACTIONS(6241), 1, - anon_sym_readonly, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6142), 1, + anon_sym_AMP, STATE(2971), 1, sym_comment, - STATE(3634), 1, - sym_override_modifier, - STATE(3917), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6243), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5374), 12, + 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(5376), 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, - ACTIONS(4496), 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, - [88656] = 11, + 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, + [88822] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - ACTIONS(5858), 1, - anon_sym_LBRACK, - ACTIONS(6247), 1, - anon_sym_RPAREN, STATE(2972), 1, sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6167), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6245), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4238), 11, + ACTIONS(5404), 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(4242), 22, + ACTIONS(5406), 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, @@ -288165,29 +288261,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88724] = 11, + anon_sym_extends, + [88878] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4344), 1, - anon_sym_QMARK, - ACTIONS(4366), 1, - anon_sym_EQ, - ACTIONS(5613), 1, + ACTIONS(3679), 1, + anon_sym_extends, + ACTIONS(5075), 1, anon_sym_LBRACK, + ACTIONS(6263), 1, + anon_sym_RPAREN, STATE(2973), 1, sym_comment, - ACTIONS(4369), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5368), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5616), 2, + ACTIONS(2142), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5078), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4238), 11, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2140), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288199,7 +288296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 22, + ACTIONS(2146), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -288222,28 +288319,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88792] = 5, + [88946] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, + anon_sym_extends, STATE(2974), 1, sym_comment, - ACTIONS(5185), 13, + ACTIONS(5370), 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(5187), 29, + ACTIONS(5372), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288272,33 +288373,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88848] = 8, + [89008] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_extends, + ACTIONS(5328), 1, + anon_sym_DOT, STATE(2975), 1, sym_comment, - ACTIONS(5033), 11, + ACTIONS(5324), 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(5035), 28, + ACTIONS(5326), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288308,7 +288406,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, @@ -288327,40 +288424,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88910] = 7, + anon_sym_extends, + [89066] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2976), 1, sym_comment, - ACTIONS(5308), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5310), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4238), 10, + ACTIONS(5151), 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(4242), 26, + ACTIONS(5153), 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, @@ -288380,28 +288475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88970] = 5, + anon_sym_extends, + [89122] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, + anon_sym_extends, STATE(2977), 1, sym_comment, - ACTIONS(5217), 13, + ACTIONS(5151), 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(5219), 29, + ACTIONS(5153), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288430,20 +288530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [89026] = 6, + [89184] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2978), 1, sym_comment, - ACTIONS(5219), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5252), 13, + ACTIONS(5358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288457,12 +288551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 25, + ACTIONS(5360), 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, @@ -288483,37 +288580,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89084] = 5, + anon_sym_extends, + [89240] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2979), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5043), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5215), 29, + ACTIONS(4222), 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, @@ -288533,38 +288634,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [89140] = 5, + [89300] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5380), 1, + anon_sym_extends, STATE(2980), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(5834), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5837), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5822), 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(5211), 29, + ACTIONS(5824), 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, @@ -288584,95 +288688,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [89196] = 34, + [89362] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5419), 1, + anon_sym_as, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(5431), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, + ACTIONS(5467), 1, + anon_sym_satisfies, + ACTIONS(6051), 1, + anon_sym_GT_GT, + ACTIONS(6057), 1, + anon_sym_PERCENT, + ACTIONS(6059), 1, + anon_sym_STAR_STAR, + ACTIONS(6061), 1, + anon_sym_LT, + ACTIONS(6071), 1, anon_sym_AMP_AMP, - ACTIONS(5085), 1, + ACTIONS(6073), 1, anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, + ACTIONS(6075), 1, anon_sym_AMP, - ACTIONS(5093), 1, + ACTIONS(6077), 1, anon_sym_CARET, - ACTIONS(5095), 1, + ACTIONS(6079), 1, anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, + ACTIONS(6081), 1, anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, + ACTIONS(6085), 1, sym__ternary_qmark, - STATE(2313), 1, + ACTIONS(6266), 1, + anon_sym_SEMI, + ACTIONS(6268), 1, + sym__automatic_semicolon, + STATE(2742), 1, sym_type_arguments, STATE(2981), 1, sym_comment, - STATE(5791), 1, + STATE(5719), 1, sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5463), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5079), 2, + ACTIONS(6049), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, + ACTIONS(6053), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5097), 2, + ACTIONS(6055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + ACTIONS(6065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, + ACTIONS(6067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2549), 2, + STATE(3163), 2, sym_template_string, sym_arguments, - ACTIONS(5105), 3, + ACTIONS(6063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89310] = 5, + [89478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2982), 1, sym_comment, - ACTIONS(5205), 13, + ACTIONS(5135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288686,7 +288790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5207), 29, + ACTIONS(5137), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288716,14 +288820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89366] = 5, + [89534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2983), 1, sym_comment, - ACTIONS(5199), 13, + ACTIONS(5131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288737,7 +288841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5201), 29, + ACTIONS(5133), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288767,94 +288871,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89422] = 34, + [89590] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5083), 1, - anon_sym_AMP_AMP, - ACTIONS(5085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5087), 1, - anon_sym_GT_GT, - ACTIONS(5091), 1, - anon_sym_AMP, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_PIPE, - ACTIONS(5099), 1, - anon_sym_PERCENT, - ACTIONS(5101), 1, - anon_sym_STAR_STAR, - ACTIONS(5103), 1, - anon_sym_LT, - ACTIONS(5111), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5117), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, STATE(2984), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5069), 2, + ACTIONS(5123), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5079), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5089), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5097), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5107), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5109), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6019), 2, + ACTIONS(5125), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5105), 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, - [89536] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [89646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2985), 1, sym_comment, - ACTIONS(5195), 13, + ACTIONS(5119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288868,7 +288943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 29, + ACTIONS(5121), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288898,41 +288973,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89592] = 8, + [89702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(2986), 1, sym_comment, - ACTIONS(5756), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5753), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5306), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5729), 11, + ACTIONS(5115), 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(5731), 22, + ACTIONS(5117), 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, @@ -288952,44 +289023,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89654] = 11, + anon_sym_extends, + [89758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5395), 1, - anon_sym_LBRACK, - ACTIONS(6037), 1, - anon_sym_RPAREN, STATE(2987), 1, sym_comment, - ACTIONS(5391), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5398), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5413), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5389), 11, + ACTIONS(5085), 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(5393), 22, + ACTIONS(5087), 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, @@ -289009,265 +289074,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89722] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_extends, + [89814] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_STAR, - ACTIONS(6239), 1, - anon_sym_async, - ACTIONS(6250), 1, - anon_sym_abstract, - STATE(2988), 1, - sym_comment, - STATE(3922), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6243), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(4496), 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, - [89800] = 17, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_static, - ACTIONS(6254), 1, - anon_sym_readonly, - ACTIONS(6256), 1, - anon_sym_abstract, - STATE(2989), 1, + STATE(2988), 1, sym_comment, - STATE(3674), 1, - sym_override_modifier, - STATE(4171), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(4496), 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, - [89880] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6258), 1, + ACTIONS(5251), 13, anon_sym_STAR, - ACTIONS(6260), 1, - anon_sym_async, - ACTIONS(6264), 1, - anon_sym_abstract, - STATE(2990), 1, - sym_comment, - STATE(3902), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6262), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, 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(4496), 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, - [89958] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5253), 29, sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6258), 1, - anon_sym_STAR, - ACTIONS(6260), 1, - anon_sym_async, - ACTIONS(6266), 1, - anon_sym_readonly, - STATE(2991), 1, - sym_comment, - STATE(3629), 1, - sym_override_modifier, - STATE(3902), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6262), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [90040] = 5, + 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, + [89870] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2992), 1, + STATE(2989), 1, sym_comment, - ACTIONS(5739), 13, + ACTIONS(5271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289281,7 +289147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5741), 28, + ACTIONS(5273), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289310,38 +289176,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90095] = 7, + anon_sym_extends, + [89926] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2993), 1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_PIPE, + ACTIONS(6146), 1, + anon_sym_extends, + STATE(2990), 1, sym_comment, - ACTIONS(6268), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6270), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(5047), 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(4242), 23, + ACTIONS(5049), 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, @@ -289362,39 +289231,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90154] = 7, + [89988] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6272), 1, - sym__automatic_semicolon, - STATE(2994), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(2991), 1, sym_comment, - ACTIONS(2370), 4, + ACTIONS(5544), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2244), 13, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(2248), 23, + ACTIONS(4222), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -289414,37 +289286,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90213] = 5, + [90052] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2995), 1, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(2992), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(5863), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5866), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5715), 28, + ACTIONS(4222), 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, @@ -289464,50 +289340,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90268] = 15, + [90114] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(6276), 1, - anon_sym_async, - STATE(2996), 1, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(2993), 1, sym_comment, - STATE(3993), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6278), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4496), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -289524,21 +289403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90343] = 7, + [90195] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2997), 1, + STATE(2994), 1, sym_comment, - ACTIONS(6280), 2, + ACTIONS(6270), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6282), 3, + ACTIONS(6272), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289552,7 +289431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -289576,118 +289455,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90402] = 34, + [90254] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5863), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5475), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(2998), 1, + STATE(2995), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, + ACTIONS(4965), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5866), 3, anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90515] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6320), 1, - sym__automatic_semicolon, - STATE(2999), 1, - sym_comment, - ACTIONS(2344), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2190), 13, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(2194), 25, + ACTIONS(4222), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -289707,19 +289508,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90574] = 7, + [90315] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6322), 1, - sym__automatic_semicolon, - STATE(3000), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6276), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2996), 1, sym_comment, - ACTIONS(2348), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2206), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289730,124 +289550,111 @@ 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(2210), 25, + ACTIONS(5515), 16, 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_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, - [90633] = 34, + [90392] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6328), 1, - anon_sym_COLON, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3001), 1, + STATE(2997), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90746] = 6, + ACTIONS(5515), 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, + [90493] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(3002), 1, + ACTIONS(6305), 1, + sym__automatic_semicolon, + STATE(2998), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(2380), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289861,13 +289668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 27, - sym__automatic_semicolon, + ACTIONS(2290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -289889,66 +289694,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90803] = 7, + [90552] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3003), 1, - sym_comment, - ACTIONS(6362), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6364), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, - anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5517), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, + ACTIONS(6287), 1, anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4242), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6307), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2313), 1, + sym_type_arguments, + STATE(2999), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 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(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 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(5515), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [90862] = 5, + [90655] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3004), 1, + ACTIONS(6309), 1, + sym__automatic_semicolon, + STATE(3000), 1, sym_comment, - ACTIONS(5809), 13, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289962,14 +289794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 28, - sym__automatic_semicolon, + ACTIONS(2282), 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, @@ -289991,342 +289820,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90917] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6221), 1, - anon_sym_STAR, - STATE(3005), 1, - sym_comment, - STATE(4682), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(2989), 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, - [90990] = 5, + [90714] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3006), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6276), 1, + anon_sym_LT, + ACTIONS(6295), 1, + anon_sym_PERCENT, + STATE(2313), 1, + sym_type_arguments, + STATE(3001), 1, sym_comment, - ACTIONS(5813), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5527), 28, - sym__automatic_semicolon, + ACTIONS(5515), 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, - [91045] = 10, + [90797] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_COLON, - STATE(3007), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3002), 1, sym_comment, - ACTIONS(5404), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2144), 11, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 22, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 8, 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, - [91110] = 34, + [90892] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6330), 1, + ACTIONS(6315), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, - ACTIONS(6368), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3008), 1, + STATE(3003), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91223] = 34, + [91005] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6330), 1, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3004), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [91102] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - ACTIONS(6370), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3009), 1, + STATE(3005), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91336] = 7, + ACTIONS(5515), 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, + [91201] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6372), 1, - sym__automatic_semicolon, - STATE(3010), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6276), 1, + anon_sym_LT, + ACTIONS(6295), 1, + anon_sym_PERCENT, + STATE(2313), 1, + sym_type_arguments, + STATE(3006), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2214), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -290335,48 +290221,96 @@ 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(2218), 25, + ACTIONS(5515), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + 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_LT_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, + [91282] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6276), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3007), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91395] = 6, + [91365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3011), 1, + STATE(3008), 1, sym_comment, - ACTIONS(6374), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5252), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290390,12 +290324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 25, + ACTIONS(4222), 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, @@ -290416,27 +290353,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91452] = 8, + [91420] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5306), 1, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(5011), 1, anon_sym_extends, - STATE(3012), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5756), 2, + ACTIONS(5544), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5753), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(5729), 11, + ACTIONS(4218), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -290444,12 +290382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 24, + ACTIONS(4222), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290469,101 +290406,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91513] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_STAR, - STATE(3013), 1, - sym_comment, - STATE(4680), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6376), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 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, - [91586] = 10, + anon_sym_implements, + [91483] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, + ACTIONS(4321), 1, anon_sym_EQ, - ACTIONS(5395), 1, - anon_sym_LBRACK, - ACTIONS(5928), 1, - anon_sym_COLON, - STATE(3014), 1, + STATE(3010), 1, sym_comment, - ACTIONS(5398), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5322), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5389), 11, + ACTIONS(4218), 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(5393), 22, + ACTIONS(4222), 27, + 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_AMP_AMP, @@ -290583,21 +290458,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91651] = 7, + [91540] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3015), 1, + ACTIONS(6349), 1, + sym__automatic_semicolon, + STATE(3011), 1, sym_comment, - ACTIONS(6378), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6380), 3, + ACTIONS(2354), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290611,7 +290486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(2228), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -290635,100 +290510,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91710] = 34, + [91599] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5702), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3016), 1, + STATE(3012), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91823] = 7, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 10, + 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, + [91690] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3017), 1, + ACTIONS(6351), 1, + sym__automatic_semicolon, + STATE(3013), 1, sym_comment, - ACTIONS(6378), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6380), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(2370), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290742,10 +290604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(2274), 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, @@ -290766,247 +290630,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91882] = 34, + [91749] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6298), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6300), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, STATE(2313), 1, sym_type_arguments, - STATE(3018), 1, + STATE(3014), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91995] = 34, + ACTIONS(5515), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [91854] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(5600), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6357), 1, sym__ternary_qmark, - ACTIONS(6382), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3019), 1, + STATE(3015), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92108] = 11, + [91967] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - ACTIONS(4391), 1, - anon_sym_COLON, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5613), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - STATE(3020), 1, - sym_comment, - ACTIONS(5616), 2, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5525), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6384), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4238), 11, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3016), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 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(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 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, - [92175] = 14, + [92080] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6388), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3021), 1, + STATE(3017), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(5808), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291017,12 +290881,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(5680), 19, + ACTIONS(5600), 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, @@ -291038,36 +290911,39 @@ 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, - [92248] = 14, + [92135] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6101), 1, + ACTIONS(6359), 1, anon_sym_STAR, - STATE(3022), 1, + ACTIONS(6361), 1, + anon_sym_async, + STATE(3018), 1, sym_comment, - STATE(4767), 1, + STATE(3947), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6391), 2, + ACTIONS(6363), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -291076,12 +290952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -291098,20 +290973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92321] = 6, + [92210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3023), 1, + STATE(3019), 1, sym_comment, - ACTIONS(2362), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2236), 13, + ACTIONS(5810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291125,10 +290994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2240), 23, + ACTIONS(5812), 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, @@ -291149,14 +291023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92378] = 5, + [92265] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3024), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(5814), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291170,7 +291044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2232), 28, + ACTIONS(5816), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291199,14 +291073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92433] = 5, + [92320] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3025), 1, + STATE(3021), 1, sym_comment, - ACTIONS(2214), 13, + ACTIONS(2256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291220,7 +291094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2218), 28, + ACTIONS(2258), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291249,73 +291123,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92488] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_STAR, - STATE(3026), 1, - sym_comment, - STATE(4836), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6395), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 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, - [92561] = 5, + [92375] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3027), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6365), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3022), 1, sym_comment, - ACTIONS(2206), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291326,21 +291163,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(2210), 28, - sym__automatic_semicolon, + ACTIONS(5682), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -291354,46 +291182,42 @@ 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, - [92616] = 9, + [92450] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - STATE(3028), 1, + ACTIONS(4363), 1, + anon_sym_EQ, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3023), 1, sym_comment, - STATE(2625), 2, - sym_template_string, - sym_arguments, - ACTIONS(6397), 3, - anon_sym_LBRACE, + ACTIONS(5011), 2, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4989), 13, + anon_sym_extends, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(4991), 21, + ACTIONS(4222), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -291411,17 +291235,45 @@ 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, - [92679] = 5, + [92513] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3029), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6368), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3024), 1, sym_comment, - ACTIONS(2190), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -291430,21 +291282,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(2194), 28, - sym__automatic_semicolon, + ACTIONS(5616), 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, @@ -291458,42 +291300,178 @@ 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, + [92594] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5096), 1, + anon_sym_RBRACE, + STATE(3025), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2482), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92661] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_satisfies, - [92734] = 6, + ACTIONS(5602), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3026), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92774] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3030), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + ACTIONS(4348), 1, + anon_sym_COLON, + ACTIONS(5011), 1, + anon_sym_extends, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3027), 1, sym_comment, - ACTIONS(2324), 5, - sym__automatic_semicolon, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6371), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2184), 13, + anon_sym_RBRACK, + ACTIONS(4218), 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(2186), 23, + ACTIONS(4222), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -291513,33 +291491,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92791] = 11, + [92841] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5381), 1, + ACTIONS(5096), 1, anon_sym_RBRACE, - STATE(3031), 1, + STATE(3028), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -291569,100 +291547,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92858] = 5, + [92908] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3032), 1, - sym_comment, - ACTIONS(5777), 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(5779), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5670), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3029), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [92913] = 15, + [93021] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(6129), 1, anon_sym_STAR, - ACTIONS(6399), 1, - anon_sym_async, - STATE(3033), 1, + STATE(3030), 1, sym_comment, - STATE(3903), 1, + STATE(4845), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6401), 2, + ACTIONS(6375), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(1035), 8, 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(4496), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -291679,14 +291685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92988] = 5, + [93094] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3034), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(6337), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3031), 1, sym_comment, - ACTIONS(5801), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291697,18 +291716,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(5803), 28, - sym__automatic_semicolon, + ACTIONS(5794), 22, 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, @@ -291727,207 +291740,500 @@ 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, - [93043] = 34, + [93161] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6330), 1, + ACTIONS(5698), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, - ACTIONS(6403), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3035), 1, + STATE(3032), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93156] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93274] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, - anon_sym_STAR, - ACTIONS(6047), 1, - anon_sym_async, - STATE(3036), 1, - sym_comment, - STATE(3930), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5676), 1, anon_sym_COLON, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [93231] = 7, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3033), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93387] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3037), 1, - sym_comment, - ACTIONS(6378), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6380), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5678), 1, anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3034), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93500] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5509), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, anon_sym_GT_GT, + ACTIONS(6325), 1, anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3035), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93613] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5513), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3036), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93726] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3037), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [93290] = 5, + [93813] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6377), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, STATE(3038), 1, sym_comment, - ACTIONS(5797), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291938,86 +292244,69 @@ 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(5692), 28, - sym__automatic_semicolon, + ACTIONS(5515), 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, - [93345] = 15, + [93890] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6221), 1, - anon_sym_STAR, - ACTIONS(6223), 1, - anon_sym_async, - STATE(3039), 1, - sym_comment, - STATE(3964), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6227), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, + ACTIONS(5334), 1, anon_sym_RBRACE, + STATE(3039), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4496), 20, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292030,103 +292319,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93420] = 5, + [93957] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3040), 1, - sym_comment, - ACTIONS(5409), 13, - anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5678), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, + ACTIONS(6287), 1, anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5411), 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, + ACTIONS(6307), 1, anon_sym_AMP_AMP, + ACTIONS(6353), 1, anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3040), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 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(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 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, - [93475] = 14, + [94070] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6405), 1, - anon_sym_STAR, - STATE(3041), 1, - sym_comment, - STATE(4669), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6407), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(5091), 1, anon_sym_EQ, + ACTIONS(5093), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5334), 1, + anon_sym_RBRACE, + STATE(3041), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2486), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292139,59 +292454,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93548] = 15, + [94137] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6409), 1, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(3042), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5593), 12, - anon_sym_STAR, + ACTIONS(5517), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5595), 17, + ACTIONS(5515), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, @@ -292199,327 +292520,609 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [93623] = 5, + [94224] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5513), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, STATE(3043), 1, sym_comment, - ACTIONS(5793), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5694), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94337] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5509), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, anon_sym_AMP_AMP, + ACTIONS(6353), 1, anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3044), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 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(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 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, - [93678] = 18, + [94450] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6412), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3044), 1, + STATE(3045), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 11, + ACTIONS(6311), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 15, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 7, 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, - [93759] = 34, + anon_sym_satisfies, + [94551] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5652), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3045), 1, + STATE(3046), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93872] = 9, + ACTIONS(5515), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [94654] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - STATE(3046), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6377), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3047), 1, sym_comment, - ACTIONS(3581), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5404), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2144), 10, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(2150), 24, - sym__automatic_semicolon, + ACTIONS(5515), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [93935] = 8, + [94737] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5928), 1, - anon_sym_of, - ACTIONS(6415), 1, - anon_sym_in, - STATE(3047), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3048), 1, sym_comment, - ACTIONS(5389), 12, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 26, - sym__automatic_semicolon, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [94832] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 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(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3049), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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(5515), 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, - [93996] = 9, + [94929] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5395), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - STATE(3048), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3050), 1, sym_comment, - ACTIONS(5322), 2, - anon_sym_COMMA, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 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, + [95028] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5011), 1, anon_sym_extends, - ACTIONS(5398), 3, - anon_sym_GT, + STATE(3051), 1, + sym_comment, + ACTIONS(5547), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5389), 10, + ACTIONS(5544), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4218), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -292527,12 +293130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 24, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -292552,14 +293155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94059] = 5, + [95089] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3049), 1, + ACTIONS(6380), 1, + anon_sym_LPAREN, + ACTIONS(6383), 1, + anon_sym_COLON, + ACTIONS(6385), 1, + anon_sym_LT, + ACTIONS(6388), 1, + anon_sym_QMARK, + STATE(3052), 1, sym_comment, - ACTIONS(5729), 13, + ACTIONS(4218), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292570,17 +293181,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(5731), 28, + ACTIONS(4222), 25, 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, @@ -292602,34 +293209,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94114] = 14, + [95152] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6418), 1, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6377), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3050), 1, + STATE(3053), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - STATE(2549), 2, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5678), 12, - anon_sym_STAR, + ACTIONS(5517), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -292638,10 +293254,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(5680), 19, + ACTIONS(5515), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -292650,27 +293265,52 @@ 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, - [94187] = 5, + [95233] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3051), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6377), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3054), 1, sym_comment, - ACTIONS(5721), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -292679,504 +293319,411 @@ 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(5723), 28, - sym__automatic_semicolon, + ACTIONS(5515), 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, - [94242] = 34, + [95316] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6390), 1, + anon_sym_STAR, + ACTIONS(6392), 1, + anon_sym_async, + STATE(3055), 1, + sym_comment, + STATE(3915), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6394), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [95391] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5696), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3052), 1, + STATE(3056), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94355] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3053), 1, - sym_comment, - ACTIONS(2376), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2266), 13, - anon_sym_STAR, + ACTIONS(5517), 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(2270), 23, + ACTIONS(5515), 10, 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, - [94412] = 34, + [95482] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5694), 1, - anon_sym_of, - ACTIONS(6288), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6298), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6300), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3054), 1, + STATE(3057), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94525] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3055), 1, - sym_comment, - ACTIONS(2380), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2274), 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(2278), 23, + ACTIONS(5515), 5, 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_COLON, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [94582] = 5, + [95587] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3056), 1, - sym_comment, - ACTIONS(5725), 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(5727), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5600), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3058), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94637] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3057), 1, - sym_comment, - ACTIONS(5791), 13, + ACTIONS(6311), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 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(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [94692] = 34, + [95700] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5692), 1, - anon_sym_of, - ACTIONS(6288), 1, + ACTIONS(5525), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6298), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6300), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6316), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, + ACTIONS(6347), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3058), 1, + STATE(3059), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94805] = 11, + [95813] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5384), 1, + ACTIONS(5275), 1, anon_sym_RBRACE, - STATE(3059), 1, + STATE(3060), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - ACTIONS(985), 6, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -293206,85 +293753,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94872] = 7, + [95880] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6421), 1, - sym__automatic_semicolon, - STATE(3060), 1, - sym_comment, - ACTIONS(2358), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2228), 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(2232), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5523), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3061), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [94931] = 11, + [95993] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - ACTIONS(5384), 1, + ACTIONS(5275), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3062), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - ACTIONS(985), 6, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -293314,73 +293888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94998] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6423), 1, - anon_sym_STAR, - STATE(3062), 1, - sym_comment, - STATE(4712), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6425), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(2989), 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, - [95071] = 5, + [96060] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6396), 1, + sym__automatic_semicolon, STATE(3063), 1, sym_comment, - ACTIONS(5785), 13, + ACTIONS(2364), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293394,14 +293914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 28, - sym__automatic_semicolon, + ACTIONS(2244), 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, @@ -293423,161 +293940,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95126] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [96119] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3064), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5519), 1, anon_sym_COLON, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [95209] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3064), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96232] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(6405), 1, - anon_sym_STAR, - ACTIONS(6427), 1, - anon_sym_async, - STATE(3065), 1, - sym_comment, - STATE(3932), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6429), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5473), 1, anon_sym_COLON, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [95284] = 5, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3065), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96345] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(5011), 1, + anon_sym_extends, STATE(3066), 1, sym_comment, - ACTIONS(5735), 13, + ACTIONS(5544), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5737), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -293597,77 +294152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95339] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3067), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [95420] = 5, + [96408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3068), 1, + STATE(3067), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293681,7 +294173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 28, + ACTIONS(5757), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293710,7 +294202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95475] = 14, + [96463] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -293719,34 +294211,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6115), 1, anon_sym_STAR, - STATE(3069), 1, + STATE(3068), 1, sym_comment, - STATE(4742), 1, + STATE(4824), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6433), 2, + ACTIONS(6398), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 21, anon_sym_export, anon_sym_type, @@ -293769,315 +294261,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95548] = 34, + [96536] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5702), 1, + ACTIONS(5527), 1, anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3070), 1, + STATE(3069), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95661] = 6, + [96649] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3071), 1, - sym_comment, - ACTIONS(2358), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2228), 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(2232), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6347), 1, + sym__ternary_qmark, + ACTIONS(6400), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3070), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95718] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6435), 1, - sym__automatic_semicolon, - STATE(3072), 1, - sym_comment, - ACTIONS(2388), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2294), 13, + ACTIONS(6311), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2298), 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(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [95777] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6437), 1, - anon_sym_STAR, - ACTIONS(6439), 1, - anon_sym_async, - STATE(3073), 1, - sym_comment, - STATE(3912), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6441), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(4496), 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, - [95852] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6437), 1, - anon_sym_STAR, - STATE(3074), 1, - sym_comment, - STATE(4827), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6443), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 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, - [95925] = 5, + anon_sym_instanceof, + [96762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3075), 1, + STATE(3071), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5875), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294091,7 +294440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 28, + ACTIONS(5877), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294120,199 +294469,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95980] = 5, + [96817] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3076), 1, - sym_comment, - ACTIONS(5646), 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(5648), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5604), 1, + anon_sym_COLON, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3072), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [96035] = 34, + [96930] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(5523), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6357), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3077), 1, + STATE(3073), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96148] = 5, + [97043] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3078), 1, - sym_comment, - ACTIONS(5638), 13, - anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5519), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, + ACTIONS(6287), 1, anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3074), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5640), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97156] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5473), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, + anon_sym_LT, + ACTIONS(6307), 1, anon_sym_AMP_AMP, + ACTIONS(6353), 1, anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3075), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 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(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 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, - [96203] = 6, + [97269] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3079), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2398), 5, - sym__automatic_semicolon, + ACTIONS(6171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6173), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2310), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294326,7 +294813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2314), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -294350,37 +294837,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96260] = 15, + [97328] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, + ACTIONS(6402), 1, anon_sym_STAR, - ACTIONS(6047), 1, - anon_sym_async, - STATE(3080), 1, + STATE(3077), 1, sym_comment, - STATE(3910), 1, + STATE(4768), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6049), 2, + ACTIONS(6404), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -294389,11 +294874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294410,179 +294896,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96335] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [97401] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, - anon_sym_STAR, - ACTIONS(6260), 1, - anon_sym_async, - STATE(3081), 1, - sym_comment, - STATE(3902), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6262), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5670), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4496), 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, - [96410] = 34, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3078), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97514] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(5527), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6357), 1, sym__ternary_qmark, - ACTIONS(6481), 1, - anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, - STATE(3082), 1, + STATE(3079), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96523] = 14, + [97627] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1057), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(3083), 1, + STATE(3080), 1, sym_comment, - STATE(4718), 1, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6483), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -294608,64 +295117,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96596] = 5, + [97708] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3084), 1, - sym_comment, - ACTIONS(5781), 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(5783), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6410), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6420), 1, + anon_sym_AMP, + ACTIONS(6422), 1, anon_sym_CARET, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_PERCENT, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6432), 1, + anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3081), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6408), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6418), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6434), 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, - [96651] = 5, + [97821] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3085), 1, + ACTIONS(4338), 1, + anon_sym_EQ, + ACTIONS(4346), 1, + anon_sym_QMARK, + STATE(3082), 1, sym_comment, - ACTIONS(5671), 13, + ACTIONS(4341), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294679,15 +295225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5673), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -294708,40 +295249,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96706] = 6, + [97882] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6485), 1, - sym_regex_flags, - STATE(3086), 1, - sym_comment, - ACTIONS(6148), 16, - anon_sym_STAR, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6412), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6420), 1, + anon_sym_AMP, + ACTIONS(6422), 1, + anon_sym_CARET, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_PERCENT, + ACTIONS(6430), 1, + anon_sym_STAR_STAR, + ACTIONS(6432), 1, + anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, + ACTIONS(6444), 1, + anon_sym_RBRACK, + STATE(2313), 1, + sym_type_arguments, + STATE(3083), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6418), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6438), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6434), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97995] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5380), 1, + anon_sym_extends, + STATE(3084), 1, + sym_comment, + ACTIONS(5837), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5834), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(5822), 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, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6150), 24, - sym__automatic_semicolon, + ACTIONS(5824), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294756,17 +295376,19 @@ 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, - [96763] = 5, + anon_sym_satisfies, + [98056] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3087), 1, + STATE(3085), 1, sym_comment, - ACTIONS(5873), 13, + ACTIONS(5642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294780,7 +295402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5875), 28, + ACTIONS(5513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294809,14 +295431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96818] = 5, + [98111] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3088), 1, + STATE(3086), 1, sym_comment, - ACTIONS(5749), 13, + ACTIONS(6446), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294830,15 +295456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5751), 28, - sym__automatic_semicolon, + ACTIONS(5349), 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, @@ -294859,37 +295482,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96873] = 5, + [98168] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3089), 1, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3087), 1, sym_comment, - ACTIONS(5869), 13, + ACTIONS(5011), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(5871), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -294909,37 +295535,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96928] = 5, + [98229] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3090), 1, + ACTIONS(5009), 1, + anon_sym_QMARK, + STATE(3088), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(5011), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5544), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4218), 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(5624), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -294959,14 +295589,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96983] = 5, + [98292] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3091), 1, + ACTIONS(6448), 1, + anon_sym_LPAREN, + ACTIONS(6451), 1, + anon_sym_COLON, + ACTIONS(6453), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_QMARK, + STATE(3089), 1, sym_comment, - ACTIONS(5634), 13, + ACTIONS(5871), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294977,17 +295615,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(5636), 28, + ACTIONS(5873), 25, 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, @@ -295009,114 +295643,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97038] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3092), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97151] = 14, + [98355] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6487), 1, + ACTIONS(6402), 1, anon_sym_STAR, - STATE(3093), 1, + ACTIONS(6458), 1, + anon_sym_async, + STATE(3090), 1, sym_comment, - STATE(4761), 1, + STATE(3911), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6489), 2, + ACTIONS(6460), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -295125,12 +295682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -295147,485 +295703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97224] = 14, + [98430] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_STAR, - STATE(3094), 1, - sym_comment, - STATE(4689), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6493), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(2989), 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, - [97297] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5624), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3095), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97410] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3096), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [97515] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3097), 1, - sym_comment, - ACTIONS(2324), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2184), 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(2186), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97572] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6495), 1, - sym__automatic_semicolon, - STATE(3098), 1, - sym_comment, - ACTIONS(2362), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2236), 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(2240), 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, - [97631] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5692), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, - anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3099), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97744] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3100), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 10, - 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, - [97835] = 8, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6462), 1, + anon_sym_STAR, + ACTIONS(6464), 1, + anon_sym_async, + STATE(3091), 1, + sym_comment, + STATE(3983), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6466), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [98505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4344), 1, - anon_sym_QMARK, - STATE(3101), 1, + STATE(3092), 1, sym_comment, - ACTIONS(4339), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(5636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295639,10 +295784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(5638), 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, @@ -295663,25 +295813,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97896] = 9, + [98560] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6462), 1, + anon_sym_STAR, + STATE(3093), 1, + sym_comment, + STATE(4813), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6468), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(2989), 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, + [98633] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4364), 1, + ACTIONS(5053), 1, anon_sym_EQ, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(3102), 1, + ACTIONS(5057), 1, + anon_sym_LBRACK, + STATE(3094), 1, sym_comment, - ACTIONS(5613), 2, + ACTIONS(5063), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, + anon_sym_extends, + ACTIONS(5060), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4238), 10, + ACTIONS(5051), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295692,12 +295901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 24, + ACTIONS(5055), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -295717,89 +295926,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97959] = 5, + [98696] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3103), 1, - sym_comment, - ACTIONS(5773), 13, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 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, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3095), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5775), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2989), 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, + [98779] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, anon_sym_COMMA, + ACTIONS(1057), 1, anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3096), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [98862] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6317), 1, anon_sym_AMP_AMP, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + ACTIONS(6470), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3097), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6313), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [98014] = 7, + [98975] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6497), 1, - sym__automatic_semicolon, - STATE(3104), 1, + ACTIONS(4300), 1, + anon_sym_EQ, + ACTIONS(5009), 1, + anon_sym_QMARK, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3098), 1, sym_comment, - ACTIONS(2366), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2154), 13, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5011), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4218), 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(2158), 25, + ACTIONS(4222), 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, @@ -295819,22 +296188,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98073] = 7, + [99040] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6499), 1, - sym__automatic_semicolon, - STATE(3105), 1, + ACTIONS(6472), 1, + sym_regex_flags, + STATE(3099), 1, sym_comment, - ACTIONS(2370), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2244), 13, + ACTIONS(6154), 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, @@ -295845,9 +296213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2248), 25, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6156), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -295866,152 +296236,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, - anon_sym_satisfies, - [98132] = 34, + [99097] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5652), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(5590), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6281), 1, + anon_sym_GT, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6357), 1, sym__ternary_qmark, + ACTIONS(6474), 1, + anon_sym_in, STATE(2313), 1, sym_type_arguments, - STATE(3106), 1, + STATE(3100), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98245] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4352), 1, - anon_sym_EQ, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(3107), 1, - sym_comment, - ACTIONS(5613), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 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(4242), 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, + ACTIONS(6299), 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, - anon_sym_implements, - [98308] = 5, + [99212] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3108), 1, + ACTIONS(6477), 1, + sym__automatic_semicolon, + STATE(3101), 1, sym_comment, - ACTIONS(5851), 13, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296025,14 +296345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5853), 28, - sym__automatic_semicolon, + ACTIONS(2236), 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, @@ -296054,7 +296371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98363] = 14, + [99271] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296063,26 +296380,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, + ACTIONS(6390), 1, anon_sym_STAR, - STATE(3109), 1, + STATE(3102), 1, sym_comment, - STATE(4711), 1, + STATE(4830), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6501), 2, + ACTIONS(6479), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -296113,37 +296430,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98436] = 5, + [99344] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3110), 1, + ACTIONS(5075), 1, + anon_sym_LBRACK, + STATE(3103), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(3679), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5078), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2140), 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(5719), 28, + ACTIONS(2146), 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, @@ -296163,69 +296484,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98491] = 7, + [99407] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3111), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6247), 1, + anon_sym_STAR, + ACTIONS(6249), 1, + anon_sym_async, + STATE(3104), 1, sym_comment, - ACTIONS(6141), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6143), 3, + STATE(3969), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6253), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4238), 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(4242), 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, - [98550] = 5, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [99482] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3112), 1, + ACTIONS(5970), 1, + anon_sym_of, + ACTIONS(6481), 1, + anon_sym_in, + STATE(3105), 1, sym_comment, - ACTIONS(5706), 13, + ACTIONS(2140), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -296236,14 +296570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5708), 28, + ACTIONS(2146), 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, @@ -296265,7 +296597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98605] = 14, + [99543] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296274,34 +296606,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5838), 1, + ACTIONS(6247), 1, anon_sym_STAR, - STATE(3113), 1, + STATE(3106), 1, sym_comment, - STATE(4754), 1, + STATE(4782), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6503), 2, + ACTIONS(6484), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(1035), 8, 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(2989), 21, anon_sym_export, anon_sym_type, @@ -296324,14 +296656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98678] = 5, + [99616] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3114), 1, + ACTIONS(6486), 1, + sym__automatic_semicolon, + STATE(3107), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(2354), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296345,14 +296682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5667), 28, - sym__automatic_semicolon, + ACTIONS(2228), 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, @@ -296374,14 +296708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98733] = 5, + [99675] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3115), 1, + ACTIONS(6488), 1, + sym__automatic_semicolon, + STATE(3108), 1, sym_comment, - ACTIONS(5821), 13, + ACTIONS(2318), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296395,14 +296734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5823), 28, - sym__automatic_semicolon, + ACTIONS(2220), 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, @@ -296424,43 +296760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98788] = 18, + [99734] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6505), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3116), 1, + STATE(3109), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 11, + ACTIONS(5672), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -296469,11 +296778,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(5660), 15, + ACTIONS(5674), 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, @@ -296487,36 +296806,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98869] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99789] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6508), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5604), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, + anon_sym_GT_GT, + ACTIONS(6287), 1, + anon_sym_AMP, + ACTIONS(6289), 1, + anon_sym_CARET, + ACTIONS(6291), 1, + anon_sym_PIPE, + ACTIONS(6295), 1, + anon_sym_PERCENT, + ACTIONS(6297), 1, anon_sym_LT, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6357), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3117), 1, + STATE(3110), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + ACTIONS(6279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6281), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6285), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6303), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5593), 12, + ACTIONS(6299), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99902] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3111), 1, + sym_comment, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296527,12 +296907,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(5595), 17, + ACTIONS(5694), 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, @@ -296546,78 +296935,24 @@ 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, - [98944] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_RBRACE, - STATE(3118), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [99025] = 5, + [99957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3119), 1, + STATE(3112), 1, sym_comment, - ACTIONS(5622), 13, + ACTIONS(2380), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296631,15 +296966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5487), 28, - sym__automatic_semicolon, + ACTIONS(2290), 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, @@ -296660,289 +296990,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99080] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6405), 1, - anon_sym_STAR, - ACTIONS(6427), 1, - anon_sym_async, - STATE(3120), 1, - sym_comment, - STATE(3914), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6429), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(4496), 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, - [99155] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_RBRACE, - STATE(3121), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [99238] = 34, + [100014] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5702), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6347), 1, sym__ternary_qmark, + ACTIONS(6490), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3122), 1, + STATE(3113), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99351] = 34, + [100127] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3114), 1, + sym_comment, + ACTIONS(2376), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2278), 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(2282), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3123), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100184] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5748), 1, + anon_sym_EQ, + ACTIONS(5978), 1, + anon_sym_of, + ACTIONS(6492), 1, anon_sym_in, + STATE(3115), 1, + sym_comment, + ACTIONS(5746), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(5750), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99464] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100245] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296951,37 +297182,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, + ACTIONS(6115), 1, anon_sym_STAR, - ACTIONS(6511), 1, + ACTIONS(6117), 1, anon_sym_async, - STATE(3124), 1, + STATE(3116), 1, sym_comment, - STATE(3984), 1, + STATE(3920), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6513), 2, + ACTIONS(6119), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(4496), 20, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297002,105 +297233,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99539] = 34, + [100320] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5696), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, - anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6495), 1, anon_sym_LT, - ACTIONS(6477), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3125), 1, + STATE(3117), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(5761), 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, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99652] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [100393] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5753), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5057), 1, anon_sym_LBRACK, - STATE(3126), 1, + ACTIONS(5989), 1, + anon_sym_COLON, + STATE(3118), 1, sym_comment, - ACTIONS(5306), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5756), 3, - anon_sym_GT, + ACTIONS(5060), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5729), 10, + ACTIONS(5063), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5051), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -297108,13 +297324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 25, + ACTIONS(5055), 22, 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, @@ -297134,164 +297347,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99713] = 19, + [100458] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6515), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3127), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, + anon_sym_COLON, + STATE(3119), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 11, + ACTIONS(5078), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3679), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2140), 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(5569), 14, + ACTIONS(2146), 22, sym__ternary_qmark, - anon_sym_of, + 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, - [99796] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100523] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(5698), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6357), 1, sym__ternary_qmark, - ACTIONS(6518), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3128), 1, + STATE(3120), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99909] = 7, + [100636] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3129), 1, + ACTIONS(6498), 1, + sym__automatic_semicolon, + STATE(3121), 1, sym_comment, - ACTIONS(6167), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6245), 3, + ACTIONS(2370), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297305,7 +297509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(2274), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -297329,43 +297533,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99968] = 18, + [100695] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6515), 1, + ACTIONS(6297), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3130), 1, + STATE(3122), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 10, + ACTIONS(5792), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -297374,32 +297563,40 @@ 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(5569), 15, + ACTIONS(5794), 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, - [100049] = 5, + [100762] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3131), 1, + STATE(3123), 1, sym_comment, - ACTIONS(5805), 13, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297413,7 +297610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5807), 28, + ACTIONS(5740), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297442,21 +297639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100104] = 7, + [100817] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3132), 1, + STATE(3124), 1, sym_comment, - ACTIONS(6520), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6522), 3, + ACTIONS(2358), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297470,7 +297666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(2236), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -297494,55 +297690,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100163] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [100874] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3125), 1, + sym_comment, + ACTIONS(2304), 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(2308), 28, sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5231), 1, anon_sym_RBRACE, - STATE(3133), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, 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, + [100929] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(2492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6504), 1, + anon_sym_RBRACE, + ACTIONS(6506), 1, anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, + ACTIONS(6508), 1, anon_sym_static, + ACTIONS(6510), 1, anon_sym_readonly, + ACTIONS(6516), 1, + anon_sym_override, + STATE(3126), 1, + sym_comment, + STATE(3599), 1, + sym_accessibility_modifier, + STATE(3625), 1, + sym_override_modifier, + STATE(4462), 1, + sym__property_name, + STATE(6103), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6512), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(6514), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(6110), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6500), 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, @@ -297550,129 +297809,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100230] = 34, + [101022] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3127), 1, + sym_comment, + ACTIONS(2400), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2304), 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(2308), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 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(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, + anon_sym_satisfies, + [101079] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5989), 1, + anon_sym_of, + ACTIONS(6518), 1, + anon_sym_in, + STATE(3128), 1, + sym_comment, + ACTIONS(5051), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5081), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5055), 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, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5694), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 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, + [101140] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5676), 1, + anon_sym_of, + ACTIONS(6274), 1, + anon_sym_STAR_STAR, + ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6289), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6297), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6307), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6355), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6357), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3134), 1, + STATE(3129), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6281), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6285), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6303), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6299), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100343] = 11, + [101253] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6521), 1, + anon_sym_STAR, + STATE(3130), 1, + sym_comment, + STATE(4695), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6523), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_COMMA, - ACTIONS(5231), 1, anon_sym_RBRACE, - STATE(3135), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2989), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297685,100 +298051,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100410] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [101326] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - ACTIONS(6524), 1, - anon_sym_COLON, - STATE(2313), 1, - sym_type_arguments, - STATE(3136), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100523] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6526), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - STATE(3137), 1, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6359), 1, + anon_sym_STAR, + STATE(3131), 1, sym_comment, - ACTIONS(2366), 4, + STATE(4807), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6525), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, 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(2154), 13, + ACTIONS(2989), 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, + [101399] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_EQ, + STATE(3132), 1, + sym_comment, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297792,10 +298133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 23, + ACTIONS(4222), 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, @@ -297816,39 +298161,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100582] = 7, + [101456] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6528), 1, - sym__automatic_semicolon, - STATE(3138), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2352), 4, - anon_sym_COMMA, + ACTIONS(5045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5043), 4, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2214), 13, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4218), 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(2218), 23, + ACTIONS(4222), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -297868,125 +298213,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100641] = 23, + [101515] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6453), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6465), 1, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6337), 1, anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + ACTIONS(6527), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3139), 1, + STATE(3134), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2549), 2, + ACTIONS(6341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6343), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, + [101628] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5378), 1, + anon_sym_QMARK, + STATE(3135), 1, + sym_comment, + ACTIONS(5380), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5837), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5834), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5822), 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(5569), 10, + ACTIONS(5824), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [100732] = 18, + [101691] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6176), 1, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, anon_sym_RBRACE, - STATE(3140), 1, + STATE(3136), 1, sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297999,21 +298402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100813] = 7, + [101758] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3141), 1, + STATE(3137), 1, sym_comment, - ACTIONS(6520), 2, + ACTIONS(6270), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6522), 3, + ACTIONS(6272), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298027,7 +298430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -298051,21 +298454,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100872] = 7, + [101817] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3142), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6428), 1, + anon_sym_PERCENT, + ACTIONS(6430), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3138), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6406), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 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, + [101898] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3139), 1, sym_comment, - ACTIONS(6167), 2, + ACTIONS(6270), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6169), 3, + ACTIONS(6272), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298079,7 +298545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -298103,21 +298569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100931] = 7, + [101957] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3143), 1, + STATE(3140), 1, sym_comment, - ACTIONS(6520), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6522), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4238), 13, + ACTIONS(5664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298131,10 +298590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(5666), 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, @@ -298155,39 +298619,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100990] = 7, + [102012] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3144), 1, - sym_comment, - ACTIONS(6530), 2, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_RBRACE, + STATE(3141), 1, + sym_comment, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(6532), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(2486), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102079] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6125), 1, + anon_sym_RBRACE, + STATE(3142), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(4238), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [102162] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5834), 1, + anon_sym_LBRACK, + STATE(3143), 1, + sym_comment, + ACTIONS(5380), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5837), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5822), 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(4242), 23, + ACTIONS(5824), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298207,79 +298792,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101049] = 27, + [102223] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6292), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6298), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6304), 1, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6337), 1, anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + ACTIONS(6532), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3145), 1, + STATE(3144), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6284), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 7, + [102336] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3145), 1, + sym_comment, + 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(5853), 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, - [101148] = 19, + [102391] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298290,23 +298932,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(6176), 1, + ACTIONS(6125), 1, anon_sym_RBRACE, STATE(3146), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, @@ -298314,19 +298954,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -298343,40 +298984,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101231] = 8, + [102472] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5858), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, + ACTIONS(6534), 1, + anon_sym_STAR, STATE(3147), 1, sym_comment, - ACTIONS(4975), 2, + STATE(4828), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6536), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(2989), 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, + [102545] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + STATE(3148), 1, + sym_comment, + STATE(2647), 2, + sym_template_string, + sym_arguments, + ACTIONS(6538), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5861), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + anon_sym_implements, + ACTIONS(4993), 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(4242), 25, + ACTIONS(4995), 21, 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, @@ -298394,52 +299096,55 @@ 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, - [101292] = 11, + [102608] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6540), 1, + anon_sym_STAR, + ACTIONS(6542), 1, + anon_sym_async, + STATE(3149), 1, + sym_comment, + STATE(3931), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6544), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_EQ, - ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5381), 1, - anon_sym_RBRACE, - STATE(3148), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, + ACTIONS(4498), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298452,7 +299157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101359] = 15, + [102683] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298461,28 +299166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5511), 1, anon_sym_LBRACK, - ACTIONS(6534), 1, + ACTIONS(6209), 1, anon_sym_STAR, - ACTIONS(6536), 1, + ACTIONS(6211), 1, anon_sym_async, - STATE(3149), 1, + STATE(3150), 1, sym_comment, - STATE(3971), 1, + STATE(3981), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6538), 2, + ACTIONS(6215), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -298491,7 +299196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4496), 20, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298512,98 +299217,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101434] = 34, + [102758] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4348), 1, + anon_sym_COLON, + ACTIONS(5544), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, + STATE(3151), 1, + sym_comment, + ACTIONS(5547), 2, anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - ACTIONS(6540), 1, - anon_sym_COLON, - STATE(2313), 1, - sym_type_arguments, - STATE(3150), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(5011), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(4222), 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(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101547] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102823] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6542), 1, - sym__automatic_semicolon, - STATE(3151), 1, + STATE(3152), 1, sym_comment, - ACTIONS(2376), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2266), 13, + ACTIONS(5822), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298617,11 +299293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2270), 25, + ACTIONS(5824), 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, @@ -298643,98 +299322,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101606] = 34, + [102878] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5698), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, + ACTIONS(6546), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3152), 1, + STATE(3153), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101719] = 7, + [102991] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6544), 1, + ACTIONS(6548), 1, sym__automatic_semicolon, - STATE(3153), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2380), 2, + ACTIONS(2348), 2, anon_sym_else, anon_sym_while, - ACTIONS(2274), 13, + ACTIONS(2166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298748,7 +299427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2278), 25, + ACTIONS(2170), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -298774,41 +299453,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101778] = 9, + [103050] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6209), 1, + anon_sym_STAR, + STATE(3155), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6550), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(2989), 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, + [103123] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5366), 1, - anon_sym_QMARK, - STATE(3154), 1, + ACTIONS(6552), 1, + sym__automatic_semicolon, + STATE(3156), 1, sym_comment, - ACTIONS(5368), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5613), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4238), 11, + ACTIONS(2344), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2158), 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(4242), 22, + ACTIONS(2162), 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, @@ -298828,260 +299564,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101841] = 25, + [103182] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3155), 1, + ACTIONS(6472), 1, + sym_regex_flags, + STATE(3157), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6154), 16, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [101936] = 24, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6548), 1, + ACTIONS(6156), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(6550), 1, anon_sym_RBRACE, - ACTIONS(6552), 1, - anon_sym_async, - ACTIONS(6554), 1, - anon_sym_static, - ACTIONS(6556), 1, - anon_sym_readonly, - ACTIONS(6562), 1, - anon_sym_override, - STATE(3156), 1, - sym_comment, - STATE(3593), 1, - sym_accessibility_modifier, - STATE(3621), 1, - sym_override_modifier, - STATE(4447), 1, - sym__property_name, - STATE(6098), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6558), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6560), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6109), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6546), 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, - [102029] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3157), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6475), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [102142] = 10, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [103239] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4391), 1, - anon_sym_COLON, - ACTIONS(5613), 1, - anon_sym_LBRACK, STATE(3158), 1, sym_comment, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5368), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4238), 11, + ACTIONS(5656), 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(4242), 22, + ACTIONS(5658), 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, @@ -299101,37 +299665,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102207] = 15, + [103294] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6405), 1, + ACTIONS(6184), 1, anon_sym_STAR, - ACTIONS(6427), 1, - anon_sym_async, STATE(3159), 1, sym_comment, - STATE(3913), 1, + STATE(4686), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6429), 2, + ACTIONS(6554), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -299140,11 +299702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -299161,114 +299724,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102282] = 19, + [103367] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6515), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, STATE(3160), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 15, - 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_LT_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, - [102365] = 15, + STATE(4803), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103440] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1039), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6564), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(6566), 1, - anon_sym_async, STATE(3161), 1, sym_comment, - STATE(3926), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6568), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [103523] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1039), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3162), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -299285,161 +299910,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102440] = 29, + [103604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3162), 1, + STATE(3163), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(5347), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 6, + ACTIONS(5349), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [102543] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3163), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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, - [102644] = 5, + [103659] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3164), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299453,7 +299981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 28, + ACTIONS(5832), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299482,49 +300010,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102699] = 14, + [103714] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6570), 1, + ACTIONS(6103), 1, anon_sym_STAR, + ACTIONS(6207), 1, + anon_sym_RBRACE, STATE(3165), 1, sym_comment, - STATE(4695), 1, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6572), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -299541,154 +300074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102772] = 16, + [103797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6515), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, STATE(3166), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 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, - [102849] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - ACTIONS(6574), 1, - anon_sym_COLON, - STATE(2313), 1, - sym_type_arguments, - STATE(3167), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102962] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3168), 1, - sym_comment, - ACTIONS(5830), 13, + ACTIONS(5652), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299702,7 +300095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5832), 28, + ACTIONS(5523), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299731,93 +300124,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103017] = 21, + [103852] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3169), 1, + ACTIONS(6129), 1, + anon_sym_STAR, + ACTIONS(6131), 1, + anon_sym_async, + STATE(3167), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, + STATE(4000), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6135), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [103927] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6556), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 7, + STATE(3168), 1, + sym_comment, + STATE(4689), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6558), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(5569), 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, - [103104] = 11, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [104000] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(6308), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3170), 1, + STATE(3169), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299828,12 +300261,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(5481), 22, + ACTIONS(5803), 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, @@ -299852,260 +300291,69 @@ 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, - [103171] = 34, + [104055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5624), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, - anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3171), 1, + STATE(3170), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(5818), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103284] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5487), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3172), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103397] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(5820), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5521), 1, - anon_sym_of, - ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3173), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103510] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5575), 1, - anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_of, - ACTIONS(6576), 1, - anon_sym_in, - STATE(3174), 1, + STATE(3171), 1, sym_comment, - ACTIONS(5573), 12, + ACTIONS(5826), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -300116,12 +300364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5577), 26, + ACTIONS(5828), 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, @@ -300143,101 +300393,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103571] = 34, + [104165] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3172), 1, + sym_comment, + ACTIONS(6219), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6221), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 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(4222), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5527), 1, - anon_sym_of, - ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3175), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103684] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104224] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5970), 1, - anon_sym_of, - ACTIONS(6579), 1, - anon_sym_in, - STATE(3176), 1, + STATE(3173), 1, sym_comment, - ACTIONS(2144), 12, + ACTIONS(5855), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -300248,12 +300466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 26, + ACTIONS(5857), 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, @@ -300275,86 +300495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103745] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, - anon_sym_PERCENT, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3177), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103858] = 18, + [104279] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300365,32 +300506,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - ACTIONS(6133), 1, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(3178), 1, + STATE(3174), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -300417,14 +300558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103939] = 5, + [104360] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3179), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + STATE(3175), 1, sym_comment, - ACTIONS(2310), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300438,16 +300581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2314), 28, - sym__automatic_semicolon, + ACTIONS(4222), 27, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -300467,14 +300609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103994] = 5, + [104417] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3180), 1, + STATE(3176), 1, sym_comment, - ACTIONS(2294), 13, + ACTIONS(5715), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300488,7 +300630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2298), 28, + ACTIONS(5717), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300517,73 +300659,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104049] = 9, + [104472] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5304), 1, - anon_sym_QMARK, - STATE(3181), 1, - sym_comment, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5756), 2, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, + anon_sym_GT_GT, + ACTIONS(6325), 1, anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(5753), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5729), 11, + ACTIONS(6333), 1, + anon_sym_PERCENT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6337), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, + ACTIONS(6560), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3177), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6323), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 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(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 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, - [104112] = 7, + [104585] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6582), 1, - sym__automatic_semicolon, - STATE(3182), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6562), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3178), 1, sym_comment, - ACTIONS(2388), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2294), 13, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300594,18 +300775,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(2298), 25, + ACTIONS(5761), 19, 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, @@ -300621,22 +300796,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, - [104171] = 6, + [104658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3183), 1, + STATE(3179), 1, sym_comment, - ACTIONS(2348), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2206), 13, + ACTIONS(5646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300650,10 +300818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2210), 23, + ACTIONS(5648), 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, @@ -300674,42 +300847,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104228] = 10, + [104713] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, - anon_sym_EQ, - ACTIONS(5366), 1, - anon_sym_QMARK, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3184), 1, + STATE(3180), 1, sym_comment, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5368), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4238), 11, + ACTIONS(5644), 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(4242), 22, + ACTIONS(5519), 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, @@ -300729,54 +300897,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104293] = 19, + [104768] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(5779), 1, anon_sym_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(3185), 1, + STATE(3181), 1, sym_comment, - STATE(4672), 1, + STATE(4687), 1, sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6565), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 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(2989), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300793,99 +300956,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104376] = 34, + [104841] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5475), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5602), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3186), 1, + STATE(3182), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104489] = 6, + [104954] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3187), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6567), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3183), 1, sym_comment, - ACTIONS(2344), 5, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 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(5616), 15, + 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, + [105035] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6570), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3184), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 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(5682), 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, + [105110] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6573), 1, sym__automatic_semicolon, + STATE(3185), 1, + sym_comment, + ACTIONS(2328), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2178), 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(2182), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2190), 13, + 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, + [105169] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3186), 1, + sym_comment, + ACTIONS(5871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300899,10 +301231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2194), 23, + ACTIONS(5873), 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, @@ -300923,7 +301260,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104546] = 14, + [105224] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6184), 1, + anon_sym_STAR, + ACTIONS(6186), 1, + anon_sym_async, + STATE(3187), 1, + sym_comment, + STATE(3909), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6188), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(4498), 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, + [105299] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300932,34 +301329,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6122), 1, + ACTIONS(6540), 1, anon_sym_STAR, STATE(3188), 1, sym_comment, - STATE(4728), 1, + STATE(4721), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6584), 2, + ACTIONS(6575), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 21, anon_sym_export, anon_sym_type, @@ -300982,7 +301379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104619] = 15, + [105372] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300991,37 +301388,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6122), 1, + ACTIONS(6115), 1, anon_sym_STAR, - ACTIONS(6124), 1, + ACTIONS(6117), 1, anon_sym_async, STATE(3189), 1, sym_comment, - STATE(3978), 1, + STATE(3913), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6128), 2, + ACTIONS(6119), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(4496), 20, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301042,72 +301439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104694] = 8, + [105447] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, STATE(3190), 1, sym_comment, - ACTIONS(4238), 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(4242), 26, + ACTIONS(2332), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104755] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6586), 1, - sym__automatic_semicolon, - STATE(3191), 1, - sym_comment, - ACTIONS(2428), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2282), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(2194), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301121,12 +301466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 25, + ACTIONS(2198), 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, @@ -301147,72 +301490,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104814] = 7, + [105504] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3192), 1, - sym_comment, - ACTIONS(5308), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5310), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4238), 11, + ACTIONS(6534), 1, 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(4242), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6577), 1, + anon_sym_async, + STATE(3191), 1, + sym_comment, + STATE(3996), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6579), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [104873] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4498), 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, + [105579] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3193), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2428), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2282), 13, + ACTIONS(5696), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301226,10 +301571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 23, + ACTIONS(5698), 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, @@ -301250,395 +301600,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104930] = 35, + [105634] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5685), 1, - anon_sym_of, - ACTIONS(6286), 1, - anon_sym_GT, - ACTIONS(6288), 1, + ACTIONS(5527), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6298), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6300), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6316), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, + ACTIONS(6442), 1, sym__ternary_qmark, - ACTIONS(6588), 1, - anon_sym_in, STATE(2313), 1, sym_type_arguments, - STATE(3194), 1, + STATE(3193), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6294), 2, + ACTIONS(6408), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105045] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_STAR, - ACTIONS(6591), 1, - anon_sym_async, - STATE(3195), 1, - sym_comment, - STATE(3998), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6593), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(4496), 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, - [105120] = 34, + [105747] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6330), 1, + ACTIONS(5670), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6442), 1, sym__ternary_qmark, - ACTIONS(6595), 1, - anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3196), 1, + STATE(3194), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105233] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3197), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5481), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6434), 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, - [105300] = 34, + [105860] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5487), 1, + ACTIONS(5473), 1, anon_sym_RBRACK, - ACTIONS(6449), 1, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3198), 1, + STATE(3195), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105413] = 9, + [105973] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6581), 1, + anon_sym_STAR, + STATE(3196), 1, + sym_comment, + STATE(4740), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6583), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_EQ, - ACTIONS(5613), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [106046] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3199), 1, + ACTIONS(6390), 1, + anon_sym_STAR, + ACTIONS(6392), 1, + anon_sym_async, + STATE(3197), 1, sym_comment, - ACTIONS(5368), 2, + STATE(3905), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6394), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4498), 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, + [106121] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3198), 1, + sym_comment, + ACTIONS(2428), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2256), 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(4242), 24, + ACTIONS(2258), 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, @@ -301658,22 +302007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105476] = 9, + [106178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6597), 1, - anon_sym_LPAREN, - ACTIONS(6600), 1, - anon_sym_COLON, - ACTIONS(6602), 1, - anon_sym_LT, - ACTIONS(6605), 1, - anon_sym_QMARK, - STATE(3200), 1, + STATE(3199), 1, sym_comment, - ACTIONS(5665), 12, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301684,13 +302025,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(5667), 25, + ACTIONS(5610), 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, @@ -301712,198 +302057,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105539] = 34, + [106233] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5475), 1, + ACTIONS(5519), 1, anon_sym_RBRACK, - ACTIONS(6449), 1, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3201), 1, + STATE(3200), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105652] = 34, + [106346] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6449), 1, + ACTIONS(5523), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6442), 1, sym__ternary_qmark, - ACTIONS(6607), 1, - anon_sym_RBRACK, STATE(2313), 1, sym_type_arguments, - STATE(3202), 1, + STATE(3201), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105765] = 8, + [106459] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(3203), 1, + ACTIONS(6585), 1, + sym__automatic_semicolon, + STATE(3202), 1, sym_comment, - ACTIONS(5616), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5613), 3, + ACTIONS(2328), 4, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4238), 11, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2178), 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(4242), 24, + ACTIONS(2182), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -301923,87 +302267,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105826] = 26, + [106518] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6292), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5525), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6304), 1, + ACTIONS(6422), 1, + anon_sym_CARET, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6432), 1, anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3204), 1, + STATE(3203), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6284), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6314), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [105923] = 6, + [106631] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ, - STATE(3205), 1, + STATE(3204), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(6587), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6589), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302017,15 +302374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 27, + ACTIONS(4222), 23, 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, @@ -302045,18 +302398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105980] = 6, + [106690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3206), 1, + STATE(3205), 1, sym_comment, - ACTIONS(5219), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5252), 13, + ACTIONS(5734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302070,12 +302419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 25, + ACTIONS(5736), 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -302096,59 +302448,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106037] = 7, + [106745] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(3206), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [106826] = 15, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6609), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6591), 1, + anon_sym_STAR, + ACTIONS(6593), 1, + anon_sym_async, STATE(3207), 1, sym_comment, - ACTIONS(2398), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2310), 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(2314), 25, - sym__ternary_qmark, - anon_sym_as, + STATE(3907), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6595), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, 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, - [106096] = 14, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4498), 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, + [106901] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -302157,26 +302580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6564), 1, + ACTIONS(6591), 1, anon_sym_STAR, STATE(3208), 1, sym_comment, - STATE(4684), 1, + STATE(4674), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6611), 2, + ACTIONS(6597), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -302207,14 +302630,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106169] = 5, + [106974] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(3209), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [107057] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3209), 1, + ACTIONS(6599), 1, + sym__automatic_semicolon, + STATE(3210), 1, sym_comment, - ACTIONS(5834), 13, + ACTIONS(2332), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2194), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302228,14 +302720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5836), 28, - sym__automatic_semicolon, + ACTIONS(2198), 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, @@ -302257,36 +302746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106224] = 15, + [107116] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6613), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3210), 1, + ACTIONS(6601), 1, + sym__automatic_semicolon, + STATE(3211), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5593), 12, + ACTIONS(2318), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302297,12 +302771,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(5595), 17, + ACTIONS(2220), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -302316,44 +302794,249 @@ 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, - [106299] = 18, + [107175] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_RBRACE, + STATE(3212), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2486), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107242] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5093), 1, + anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_RBRACE, + STATE(3213), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2482), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107309] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6605), 1, + anon_sym_async, + STATE(3214), 1, + sym_comment, + STATE(3993), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6607), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(4498), 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, + [107384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3215), 1, + sym_comment, + ACTIONS(2344), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2158), 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(2162), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6616), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3211), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5658), 11, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107441] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3216), 1, + sym_comment, + ACTIONS(2348), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2166), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -302362,11 +303045,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(5660), 15, + ACTIONS(2170), 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, @@ -302380,100 +303068,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106380] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107498] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5652), 1, - anon_sym_of, - ACTIONS(6288), 1, - anon_sym_AMP_AMP, - ACTIONS(6290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, - anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3212), 1, + STATE(3217), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6286), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6294), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6302), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6310), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106493] = 6, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 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, + [107589] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6485), 1, - sym_regex_flags, - STATE(3213), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + ACTIONS(4439), 1, + anon_sym_in, + ACTIONS(4442), 1, + anon_sym_of, + STATE(3218), 1, sym_comment, - ACTIONS(6148), 17, + ACTIONS(4218), 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, @@ -302484,11 +303166,10 @@ 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(6150), 23, + ACTIONS(4222), 26, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -302507,36 +303188,19 @@ 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, - [106550] = 14, + anon_sym_satisfies, + [107650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6619), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3214), 1, + STATE(3219), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 12, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302547,12 +303211,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(5680), 19, + ACTIONS(5732), 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, @@ -302568,107 +303241,68 @@ 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, - [106623] = 34, + [107705] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3220), 1, + sym_comment, + ACTIONS(6171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6229), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 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(4222), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5523), 1, - anon_sym_of, - ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6292), 1, - anon_sym_GT_GT, - ACTIONS(6296), 1, - anon_sym_AMP, - ACTIONS(6298), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6300), 1, - anon_sym_PIPE, - ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6318), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3215), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6286), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6294), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6314), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6310), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106736] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107764] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3216), 1, + STATE(3221), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 12, + ACTIONS(5775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302679,12 +303313,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(5481), 22, + ACTIONS(5777), 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, @@ -302703,589 +303343,358 @@ 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, - [106803] = 34, + [107819] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3222), 1, + sym_comment, + ACTIONS(5347), 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(5349), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5521), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3217), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6475), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106916] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107874] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6467), 1, + ACTIONS(5600), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6420), 1, + anon_sym_AMP, + ACTIONS(6422), 1, + anon_sym_CARET, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_PERCENT, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6622), 1, + ACTIONS(6432), 1, anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3218), 1, + STATE(3223), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 11, + ACTIONS(6406), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6418), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 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, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6434), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106999] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3219), 1, - sym_comment, - STATE(4693), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6025), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107072] = 34, + [107987] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5487), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3220), 1, + STATE(3224), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107185] = 34, + ACTIONS(5515), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [108092] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5521), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5604), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3221), 1, + STATE(3225), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107298] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [108205] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - STATE(3222), 1, - sym_comment, - STATE(7163), 1, - sym__property_name, - STATE(7199), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6627), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - STATE(6537), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6625), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107375] = 15, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6101), 1, - anon_sym_STAR, - ACTIONS(6103), 1, - anon_sym_async, - STATE(3223), 1, + STATE(3226), 1, sym_comment, - STATE(3994), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6107), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(4496), 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, - [107450] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, + ACTIONS(5137), 3, anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5347), 13, anon_sym_STAR, - STATE(3224), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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(2989), 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, - [107533] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5349), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6465), 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(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6622), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3225), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 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(6445), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108262] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3227), 1, + sym_comment, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -303294,104 +303703,170 @@ 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(5569), 15, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [107614] = 34, + [108321] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5523), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, + ACTIONS(6613), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3226), 1, + STATE(3228), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6339), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108434] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(6432), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3229), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(5792), 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(5794), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [107727] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [108501] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -303400,26 +303875,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, + ACTIONS(6603), 1, anon_sym_STAR, - STATE(3227), 1, + STATE(3230), 1, sym_comment, - STATE(4741), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6629), 2, + ACTIONS(6615), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -303450,77 +303925,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107800] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3228), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [107881] = 5, + [108574] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3229), 1, + STATE(3231), 1, sym_comment, - ACTIONS(5529), 13, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303534,15 +303953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5531), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -303563,40 +303977,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107936] = 8, + [108633] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3230), 1, + STATE(3232), 1, sym_comment, - ACTIONS(5368), 2, + ACTIONS(6609), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6611), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 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(4242), 25, + ACTIONS(4222), 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, @@ -303616,542 +304029,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107997] = 27, + [108692] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, - anon_sym_CARET, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6529), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3231), 1, + STATE(3233), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6445), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, + ACTIONS(5515), 14, 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_satisfies, - [108096] = 34, + anon_sym_instanceof, + [108775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3234), 1, + sym_comment, + ACTIONS(2270), 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(2274), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_RBRACK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - ACTIONS(6477), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3232), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108830] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3235), 1, + sym_comment, + ACTIONS(2232), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(2236), 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(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [108209] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3233), 1, + STATE(3236), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6445), 2, + ACTIONS(2224), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 8, + ACTIONS(2228), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108306] = 25, + [108940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3234), 1, + STATE(3237), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(2216), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 8, + ACTIONS(2220), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108401] = 19, + [108995] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6622), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3235), 1, + STATE(3238), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(2166), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 15, + ACTIONS(2170), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108484] = 29, + [109050] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3239), 1, + sym_comment, + ACTIONS(5628), 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(5630), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6457), 1, - anon_sym_AMP, - ACTIONS(6459), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6461), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3236), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 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(6445), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [109105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3240), 1, + sym_comment, + ACTIONS(5632), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6447), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6471), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 6, + ACTIONS(5634), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [108587] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_STAR, - STATE(3237), 1, - sym_comment, - STATE(4824), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6631), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, 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(2989), 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, - [108660] = 18, + 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, + [109160] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6390), 1, anon_sym_STAR, - STATE(3238), 1, + ACTIONS(6392), 1, + anon_sym_async, + STATE(3241), 1, sym_comment, - STATE(4672), 1, + STATE(3918), 1, sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6394), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 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(2989), 21, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -304168,58 +304503,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108741] = 19, + [109235] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3239), 1, + STATE(3242), 1, sym_comment, - STATE(4672), 1, + STATE(7169), 1, sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, + STATE(7205), 1, + sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, + ACTIONS(6619), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, + STATE(6535), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6617), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -304232,335 +304564,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108824] = 34, + [109312] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(3243), 1, + sym_comment, + ACTIONS(5540), 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(5542), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 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, + [109367] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5525), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5698), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3240), 1, + STATE(3244), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108937] = 28, + [109480] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(6453), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5676), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3241), 1, + STATE(3245), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [109038] = 34, + [109593] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5527), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5678), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3242), 1, + STATE(3246), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109151] = 21, + [109706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3243), 1, + STATE(3247), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(2194), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 13, + ACTIONS(2198), 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, - [109238] = 16, + [109761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6633), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3244), 1, + STATE(3248), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(2178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304571,130 +304919,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(5569), 16, + ACTIONS(2182), 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, - [109315] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3245), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, anon_sym_satisfies, - [109416] = 16, + [109816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6622), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3246), 1, + STATE(3249), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304705,214 +304969,128 @@ 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(5569), 16, + ACTIONS(5538), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [109493] = 29, + [109871] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3247), 1, + STATE(3250), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(5532), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 6, + ACTIONS(5534), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [109596] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4943), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6453), 1, - anon_sym_GT_GT, - ACTIONS(6465), 1, - anon_sym_PERCENT, - ACTIONS(6467), 1, - anon_sym_STAR_STAR, - ACTIONS(6469), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3248), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6455), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6463), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 13, - 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_BQUOTE, anon_sym_satisfies, - [109683] = 19, + [109926] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6633), 1, + ACTIONS(6621), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3249), 1, + STATE(3251), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 8, + ACTIONS(5759), 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(5569), 15, + ACTIONS(5761), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -304921,170 +305099,189 @@ 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, - [109766] = 25, + [109999] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6334), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5602), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + anon_sym_AMP_AMP, + ACTIONS(6319), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6346), 1, + ACTIONS(6325), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3250), 1, + STATE(3252), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [109861] = 26, + [110112] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6624), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3251), 1, + STATE(3253), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6324), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5614), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 8, + ACTIONS(5616), 15, 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_satisfies, - [109958] = 9, + anon_sym_instanceof, + [110193] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6636), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(6639), 1, - anon_sym_COLON, - ACTIONS(6641), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6627), 1, anon_sym_LT, - ACTIONS(6644), 1, - anon_sym_QMARK, - STATE(3252), 1, + STATE(2313), 1, + sym_type_arguments, + STATE(3254), 1, sym_comment, - ACTIONS(4238), 12, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305097,15 +305294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 25, - sym__automatic_semicolon, + ACTIONS(5682), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - 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, @@ -305119,387 +305311,223 @@ 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, - [110021] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6646), 1, - anon_sym_STAR, - STATE(3253), 1, - sym_comment, - STATE(4734), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6648), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - 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(2989), 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, - [110094] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(3254), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110161] = 34, + [110268] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5527), 1, + ACTIONS(5509), 1, anon_sym_RBRACK, - ACTIONS(6449), 1, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6414), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6457), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6459), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6461), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6477), 1, + ACTIONS(6440), 1, anon_sym_QMARK_QMARK, - ACTIONS(6479), 1, + ACTIONS(6442), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, STATE(3255), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110274] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(3256), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110341] = 27, + [110381] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6334), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5513), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6346), 1, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6442), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3257), 1, + STATE(3256), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 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, - [110440] = 18, + [110494] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6346), 1, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6633), 1, + ACTIONS(6432), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3258), 1, + STATE(3257), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2549), 2, + ACTIONS(6418), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6426), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 10, + ACTIONS(5517), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 15, + ACTIONS(5515), 13, sym__ternary_qmark, anon_sym_as, - 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, @@ -305508,45 +305536,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [110521] = 19, + [110581] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6633), 1, + ACTIONS(6529), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3259), 1, + STATE(3258), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5571), 11, + ACTIONS(5517), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -305557,9 +305580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 14, + ACTIONS(5515), 16, sym__ternary_qmark, - anon_sym_COLON, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -305572,236 +305596,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110604] = 23, + anon_sym_satisfies, + [110658] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6334), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6346), 1, + ACTIONS(6420), 1, + anon_sym_AMP, + ACTIONS(6422), 1, + anon_sym_CARET, + ACTIONS(6424), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3260), 1, + STATE(3259), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2549), 2, + ACTIONS(6436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6438), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 10, + ACTIONS(5515), 7, sym__ternary_qmark, anon_sym_as, - 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, - [110695] = 30, + [110759] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3261), 1, + STATE(3260), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(2364), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2240), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 5, + ACTIONS(2244), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [110800] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5624), 1, - anon_sym_COLON, - ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3262), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110913] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110816] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3263), 1, + STATE(3261), 1, sym_comment, - ACTIONS(5642), 13, + ACTIONS(2428), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305815,15 +305748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5644), 28, - sym__automatic_semicolon, + ACTIONS(2258), 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, @@ -305844,93 +305772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110968] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_COLON, - ACTIONS(6330), 1, - anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_AMP, - ACTIONS(6340), 1, - anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, - anon_sym_PERCENT, - ACTIONS(6348), 1, - anon_sym_STAR_STAR, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3264), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6324), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6326), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6336), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6354), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6356), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6352), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111081] = 5, + [110873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3265), 1, + STATE(3262), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305944,7 +305793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2240), 28, + ACTIONS(2290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -305973,14 +305822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111136] = 5, + [110928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3266), 1, + STATE(3263), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305994,7 +305843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 28, + ACTIONS(2282), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306023,14 +305872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111191] = 5, + [110983] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3267), 1, + STATE(3264), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(6630), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6632), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306044,15 +305900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2248), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -306073,14 +305924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111246] = 5, + [111042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3268), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2266), 13, + ACTIONS(2240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306094,7 +305945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2270), 28, + ACTIONS(2244), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306123,50 +305974,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111301] = 11, + [111097] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6634), 1, + anon_sym_STAR, + STATE(3266), 1, + sym_comment, + STATE(4821), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6636), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_COMMA, - ACTIONS(5044), 1, anon_sym_RBRACE, - STATE(3269), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, + ACTIONS(2989), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -306179,50 +306033,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111368] = 11, + [111170] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5041), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5044), 1, + ACTIONS(1014), 1, anon_sym_RBRACE, - STATE(3270), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3267), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(4691), 1, + sym__property_name, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(985), 6, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2989), 20, anon_sym_export, - anon_sym_STAR, 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, + [111253] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6638), 1, + sym__automatic_semicolon, + STATE(3268), 1, + sym_comment, + ACTIONS(2400), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2304), 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(2308), 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, + [111312] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3269), 1, + sym_comment, + STATE(4731), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6640), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -306235,133 +306208,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111435] = 34, + [111385] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(5692), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(6317), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, + ACTIONS(6319), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6321), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6325), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6329), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6333), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6337), 1, anon_sym_LT, - ACTIONS(6358), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, + ACTIONS(6347), 1, sym__ternary_qmark, + ACTIONS(6642), 1, + anon_sym_COLON, STATE(2313), 1, sym_type_arguments, - STATE(3271), 1, + STATE(3270), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6311), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6313), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6323), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6331), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6339), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111548] = 19, + [111498] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1045), 1, + ACTIONS(1014), 1, anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(3272), 1, + STATE(3271), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306378,14 +306350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111631] = 5, + [111579] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3272), 1, + sym_comment, + ACTIONS(6644), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6646), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 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(4222), 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, + [111638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3273), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(5640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306399,7 +306423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 28, + ACTIONS(5473), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306428,310 +306452,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111686] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1045), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3274), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [111767] = 34, + [111693] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5694), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6412), 1, anon_sym_AMP_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, + ACTIONS(6424), 1, anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3275), 1, + STATE(3274), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111880] = 30, + ACTIONS(5515), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [111796] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(6428), 1, + anon_sym_PERCENT, + ACTIONS(6430), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3275), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6426), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 8, anon_sym_BANG, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6459), 1, - anon_sym_CARET, - ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 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, + [111879] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6467), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6469), 1, + ACTIONS(6432), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(3276), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6445), 2, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6447), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6463), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6475), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6471), 3, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 5, + ACTIONS(5515), 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, - [111985] = 34, + [111974] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5696), 1, - anon_sym_COLON, - ACTIONS(6330), 1, + ACTIONS(6416), 1, + anon_sym_GT_GT, + ACTIONS(6420), 1, + anon_sym_AMP, + ACTIONS(6428), 1, + anon_sym_PERCENT, + ACTIONS(6430), 1, + anon_sym_STAR_STAR, + ACTIONS(6432), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3277), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6408), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6418), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6438), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6434), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6334), 1, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [112071] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6416), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6340), 1, + ACTIONS(6422), 1, anon_sym_CARET, - ACTIONS(6342), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, + ACTIONS(6428), 1, anon_sym_PERCENT, - ACTIONS(6348), 1, + ACTIONS(6430), 1, anon_sym_STAR_STAR, - ACTIONS(6350), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6358), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6360), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3277), 1, + STATE(3278), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6326), 2, + ACTIONS(6408), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6336), 2, + ACTIONS(6418), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6344), 2, + ACTIONS(6426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6354), 2, + ACTIONS(6436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6356), 2, + ACTIONS(6438), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6352), 3, + ACTIONS(6434), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112098] = 5, + ACTIONS(5515), 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, + [112170] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3278), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(6648), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6650), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306745,15 +306831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2278), 28, - sym__automatic_semicolon, + ACTIONS(4222), 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, @@ -306774,16 +306855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112153] = 6, + [112229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4280), 1, - anon_sym_EQ, - STATE(3279), 1, + STATE(3280), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(5840), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306797,13 +306876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 27, + ACTIONS(5842), 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, @@ -306825,14 +306905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112210] = 5, + [112284] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3280), 1, + STATE(3281), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(2158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306846,7 +306926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 28, + ACTIONS(2162), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306875,260 +306955,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112265] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3281), 1, - sym_comment, - STATE(4711), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112333] = 28, + [112339] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5544), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, STATE(3282), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(5011), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 6, + ACTIONS(4222), 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, - [112433] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3283), 1, - sym_comment, - STATE(4805), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112501] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_comment, - STATE(4695), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112569] = 7, + [112399] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, + ACTIONS(4354), 1, anon_sym_EQ, - STATE(3285), 1, + STATE(3283), 1, sym_comment, - ACTIONS(4339), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307142,10 +307030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 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, @@ -307166,37 +307057,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112627] = 6, + [112455] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5219), 1, - anon_sym_extends, - STATE(3286), 1, + STATE(3284), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(5045), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5043), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4218), 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(5254), 26, + ACTIONS(4222), 22, 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, @@ -307216,35 +307108,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112683] = 12, + [112513] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3287), 1, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3285), 1, sym_comment, - STATE(4718), 1, + STATE(4691), 1, sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -307272,7 +307168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112751] = 12, + [112589] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307281,29 +307177,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3288), 1, + STATE(3286), 1, sym_comment, - STATE(4689), 1, + STATE(4674), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -307328,59 +307224,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112819] = 16, + [112657] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6133), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, anon_sym_RBRACE, - STATE(3289), 1, + STATE(3287), 1, sym_comment, - STATE(4672), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, sym__property_name, - STATE(5732), 1, + STATE(5954), 1, aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 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, @@ -307388,30 +307288,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112895] = 12, + [112741] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3290), 1, + STATE(3288), 1, sym_comment, - STATE(4171), 1, + STATE(4777), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -307420,7 +307320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -307444,7 +307344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112963] = 12, + [112809] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307453,29 +307353,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3291), 1, + STATE(3289), 1, sym_comment, - STATE(4728), 1, + STATE(4830), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -307500,147 +307400,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113031] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [112877] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4300), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_comment, + ACTIONS(4341), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4218), 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(4222), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(3292), 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, + [112935] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3291), 1, sym_comment, - STATE(4702), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(5137), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5347), 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(5349), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113099] = 12, - ACTIONS(3), 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, + [112991] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6656), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3292), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [113073] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4419), 1, + anon_sym_EQ, + ACTIONS(5544), 1, anon_sym_LBRACK, STATE(3293), 1, sym_comment, - STATE(4836), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(5011), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 10, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113167] = 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4222), 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, + [113135] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1014), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3294), 1, sym_comment, - STATE(4684), 1, + STATE(4691), 1, sym__property_name, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -307668,36 +307677,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113235] = 15, + [113211] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6678), 1, + ACTIONS(6659), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(3295), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5593), 12, + ACTIONS(5680), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307710,7 +307719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5595), 16, + ACTIONS(5682), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -307727,42 +307736,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [113309] = 18, + [113285] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6681), 1, + ACTIONS(6662), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, STATE(3296), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(5658), 11, + ACTIONS(5614), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -307774,7 +307783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 14, + ACTIONS(5616), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -307789,84 +307798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [113389] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3297), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113499] = 12, + [113365] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307875,29 +307807,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3298), 1, + STATE(3297), 1, sym_comment, - STATE(4680), 1, + STATE(4782), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, + ACTIONS(1035), 8, 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(2989), 23, anon_sym_export, anon_sym_type, @@ -307922,37 +307854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113567] = 6, + [113433] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3299), 1, + ACTIONS(5834), 1, + anon_sym_LBRACK, + STATE(3298), 1, sym_comment, - ACTIONS(5219), 2, + ACTIONS(5380), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5252), 13, + ACTIONS(5837), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5822), 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(5254), 25, + ACTIONS(5824), 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, @@ -307972,106 +307906,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113623] = 7, + [113493] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3300), 1, - sym_comment, - ACTIONS(5308), 3, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5310), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4238), 11, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3299), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 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(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 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, - [113681] = 12, + [113603] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(223), 1, + anon_sym_STAR, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(2492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3301), 1, + ACTIONS(6703), 1, + anon_sym_async, + ACTIONS(6705), 1, + anon_sym_static, + ACTIONS(6707), 1, + anon_sym_readonly, + ACTIONS(6713), 1, + anon_sym_override, + STATE(3300), 1, sym_comment, - STATE(4734), 1, + STATE(3599), 1, + sym_accessibility_modifier, + STATE(3625), 1, + sym_override_modifier, + STATE(4462), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(6701), 2, 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(2989), 23, + ACTIONS(6709), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(6711), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6537), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6699), 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, @@ -308079,35 +308049,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113749] = 12, + [113691] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1057), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3302), 1, + STATE(3301), 1, sym_comment, - STATE(4827), 1, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -308135,60 +308109,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113817] = 9, + [113767] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5322), 1, - anon_sym_extends, - ACTIONS(5391), 1, - anon_sym_EQ, - STATE(3303), 1, - sym_comment, - ACTIONS(5395), 2, - anon_sym_RBRACE, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5398), 2, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3302), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5517), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5389), 11, + ACTIONS(6665), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 23, + ACTIONS(6693), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [113865] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6656), 1, + anon_sym_LT, + ACTIONS(6685), 1, + anon_sym_PERCENT, + STATE(2313), 1, + sym_type_arguments, + STATE(3303), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(5515), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [113879] = 12, + [113945] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -308197,21 +308251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3304), 1, sym_comment, - STATE(4741), 1, + STATE(4813), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -308244,40 +308298,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113947] = 9, + [114013] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3581), 1, - anon_sym_extends, + ACTIONS(4388), 1, + anon_sym_EQ, STATE(3305), 1, sym_comment, - ACTIONS(5401), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5404), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2144), 11, + ACTIONS(4218), 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(2150), 23, + ACTIONS(4222), 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, @@ -308297,28 +308347,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114009] = 9, + anon_sym_implements, + [114069] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4405), 1, - anon_sym_EQ, - ACTIONS(5613), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, STATE(3306), 1, sym_comment, - ACTIONS(5368), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 7, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4238), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 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, + [114155] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4963), 1, + anon_sym_QMARK, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(3307), 1, + sym_comment, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5863), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4218), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -308326,11 +308443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -308350,148 +308466,609 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114071] = 20, - ACTIONS(3), 1, + [114217] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6158), 1, + sym_regex_flags, + STATE(3308), 1, + sym_comment, + ACTIONS(6154), 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(6156), 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, + [114273] = 23, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5579), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3309), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, anon_sym_STAR, - ACTIONS(6548), 1, + anon_sym_SLASH, + ACTIONS(6667), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5517), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 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, + [114363] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5748), 1, + anon_sym_EQ, + ACTIONS(5978), 1, + anon_sym_COLON, + STATE(3310), 1, + sym_comment, + ACTIONS(5752), 2, anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3307), 1, + anon_sym_RBRACK, + ACTIONS(5746), 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(5750), 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, + [114423] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3311), 1, sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, - sym__property_name, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6667), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5515), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [114527] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [114155] = 33, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3312), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6667), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114637] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4246), 1, + anon_sym_EQ, + STATE(3313), 1, + sym_comment, + ACTIONS(4460), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4218), 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(4222), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 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, + [114695] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, + ACTIONS(6687), 1, + anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3314), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6667), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114805] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_BANG, + ACTIONS(5429), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(6654), 1, anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, + STATE(3315), 1, + sym_comment, + STATE(3433), 1, + sym_type_arguments, + STATE(5719), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6667), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3163), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114915] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, anon_sym_AMP_AMP, - ACTIONS(6686), 1, + ACTIONS(6671), 1, anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3308), 1, + STATE(3316), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114265] = 12, + [115025] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -308500,21 +309077,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3309), 1, + STATE(3317), 1, sym_comment, - STATE(4742), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -308547,114 +309124,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114333] = 33, + [115093] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3318), 1, + sym_comment, + STATE(4740), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115161] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3310), 1, + STATE(3319), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114443] = 6, + [115271] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4364), 1, + ACTIONS(4246), 1, anon_sym_EQ, - STATE(3311), 1, + ACTIONS(5011), 1, + anon_sym_extends, + STATE(3320), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(5544), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(4242), 26, + ACTIONS(4222), 23, 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, @@ -308674,383 +309310,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114499] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [115333] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5863), 1, anon_sym_LBRACK, - STATE(3312), 1, + STATE(3321), 1, sym_comment, - STATE(4682), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(4965), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(5866), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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(4222), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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, + [115393] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4403), 1, + anon_sym_EQ, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3322), 1, + sym_comment, + ACTIONS(5011), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114567] = 33, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4222), 23, + sym__ternary_qmark, + anon_sym_as, + 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, + [115455] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3313), 1, + STATE(3323), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114677] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3314), 1, - sym_comment, - STATE(4669), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114745] = 33, + [115565] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3315), 1, + STATE(3324), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(5517), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114855] = 33, + ACTIONS(5515), 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, + [115661] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3316), 1, + STATE(3325), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(5517), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114965] = 9, + ACTIONS(5515), 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, + [115755] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3317), 1, - sym_comment, - ACTIONS(5368), 2, - anon_sym_COMMA, + ACTIONS(5137), 1, anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + STATE(3326), 1, + sym_comment, + ACTIONS(5347), 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(4242), 23, + ACTIONS(5349), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -309070,89 +309681,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115027] = 6, + [115811] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4352), 1, - anon_sym_EQ, - STATE(3318), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6656), 1, + anon_sym_LT, + ACTIONS(6685), 1, + anon_sym_PERCENT, + STATE(2313), 1, + sym_type_arguments, + STATE(3327), 1, sym_comment, - ACTIONS(4238), 13, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(4242), 26, + ACTIONS(5515), 14, 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, - [115083] = 12, + [115893] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3319), 1, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(3328), 1, sym_comment, - STATE(4314), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309176,7 +309804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115151] = 12, + [115969] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -309185,29 +309813,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3320), 1, + STATE(3329), 1, sym_comment, - STATE(4824), 1, + STATE(4697), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -309232,84 +309860,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115219] = 33, + [116037] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, + STATE(3330), 1, + sym_comment, + STATE(4188), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3321), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [115329] = 12, + anon_sym_QMARK, + ACTIONS(4498), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116105] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -309318,29 +309925,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3322), 1, + STATE(3331), 1, sym_comment, - STATE(4767), 1, + STATE(4686), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -309365,236 +309972,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115397] = 33, + [116173] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3323), 1, + STATE(3332), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [115507] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5575), 1, - anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(3324), 1, - sym_comment, - ACTIONS(5619), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5573), 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(5577), 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, + ACTIONS(6689), 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, - [115567] = 33, + [116283] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3325), 1, + STATE(3333), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115677] = 12, + [116393] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3326), 1, + STATE(3334), 1, sym_comment, - STATE(4754), 1, + STATE(4342), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -309603,7 +310158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309627,250 +310182,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115745] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6152), 1, - sym_regex_flags, - STATE(3327), 1, - sym_comment, - ACTIONS(6148), 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(6150), 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, - [115801] = 30, + [116461] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3328), 1, + STATE(3335), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [115905] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3329), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5571), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5569), 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, - [115995] = 16, + [116571] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6185), 1, - anon_sym_RBRACE, - STATE(3330), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3336), 1, sym_comment, - STATE(4672), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 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, @@ -309878,119 +310322,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116071] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(5422), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(3331), 1, - sym_comment, - STATE(3434), 1, - sym_type_arguments, - STATE(5716), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3068), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [116181] = 16, + [116653] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6176), 1, - anon_sym_RBRACE, - STATE(3332), 1, + STATE(3337), 1, sym_comment, - STATE(4672), 1, + STATE(4821), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -310015,206 +310378,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116257] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [116721] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6694), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3333), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 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, - [116337] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3334), 1, - sym_comment, - ACTIONS(5368), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 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(4242), 24, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, 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, - [116397] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(5613), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3335), 1, + STATE(3338), 1, sym_comment, - ACTIONS(5368), 2, + STATE(4845), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 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(4242), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, 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, - [116459] = 8, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116789] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5858), 1, - anon_sym_LBRACK, - STATE(3336), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3339), 1, sym_comment, - ACTIONS(4975), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5861), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 10, + STATE(5797), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5792), 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(4242), 24, - sym__automatic_semicolon, + ACTIONS(5794), 21, 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, @@ -310232,226 +310488,364 @@ 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, - [116519] = 9, + [116855] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5368), 1, - anon_sym_extends, - STATE(3337), 1, - sym_comment, - ACTIONS(5613), 2, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6125), 1, anon_sym_RBRACE, + STATE(3340), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116931] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5616), 2, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5517), 1, + anon_sym_BANG, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(4238), 11, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3341), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6665), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 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(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 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(5515), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [116581] = 33, + [117033] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3342), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117101] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3338), 1, + STATE(3343), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116691] = 27, + [117211] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, + ACTIONS(5517), 1, + anon_sym_BANG, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6666), 1, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3339), 1, + STATE(3344), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 6, + ACTIONS(5515), 6, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [116789] = 8, + [117311] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5753), 1, + ACTIONS(4397), 1, + anon_sym_EQ, + ACTIONS(5544), 1, anon_sym_LBRACK, - STATE(3340), 1, + STATE(3345), 1, sym_comment, - ACTIONS(5306), 2, + ACTIONS(5011), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5756), 3, + ACTIONS(5547), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5729), 10, + ACTIONS(4218), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310462,12 +310856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 24, - sym__automatic_semicolon, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -310487,105 +310880,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116849] = 19, + [117373] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, - ACTIONS(6668), 1, + ACTIONS(6654), 1, anon_sym_STAR_STAR, - ACTIONS(6694), 1, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3341), 1, + STATE(3346), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 11, + ACTIONS(6665), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6675), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5569), 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, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116931] = 16, + [117483] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, - anon_sym_RBRACE, - STATE(3342), 1, + STATE(3347), 1, sym_comment, - STATE(4672), 1, + STATE(4807), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -310610,97 +311013,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117007] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(6670), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3343), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5479), 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(5481), 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, - [117073] = 16, + [117551] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3344), 1, + STATE(3348), 1, sym_comment, - STATE(4672), 1, + STATE(4822), 1, sym__property_name, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -310725,467 +311069,682 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117149] = 26, + [117619] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3345), 1, + ACTIONS(6446), 1, + anon_sym_COMMA, + STATE(3349), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5571), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6650), 2, + ACTIONS(5347), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, + ACTIONS(5349), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + 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, - [117245] = 25, + [117675] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6718), 1, anon_sym_LT, STATE(2313), 1, sym_type_arguments, - STATE(3346), 1, + STATE(3350), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5759), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5569), 7, + ACTIONS(5761), 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, - [117339] = 9, + [117747] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_QMARK, - ACTIONS(4975), 1, - anon_sym_extends, - STATE(3347), 1, - sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5858), 3, - anon_sym_COMMA, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4238), 11, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6656), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3351), 1, + sym_comment, + STATE(5797), 1, + sym_optional_chain, + ACTIONS(5215), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(5517), 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(4242), 22, + ACTIONS(5515), 15, 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, - [117401] = 33, + [117823] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3348), 1, + STATE(3352), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [117511] = 19, + [117933] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3353), 1, + sym_comment, + STATE(4768), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118001] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3354), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118069] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3355), 1, + sym_comment, + STATE(4828), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118137] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, + anon_sym_BANG, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, + ACTIONS(5217), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, anon_sym_STAR_STAR, - ACTIONS(6694), 1, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, + anon_sym_GT_GT, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_CARET, + ACTIONS(6681), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_PERCENT, + ACTIONS(6687), 1, anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3349), 1, + STATE(3356), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 8, - anon_sym_BANG, + ACTIONS(6667), 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(5569), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6683), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2631), 2, + sym_template_string, + sym_arguments, + ACTIONS(6689), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [117593] = 29, + [118247] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3357), 1, + sym_comment, + STATE(4721), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118315] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5571), 1, + ACTIONS(5173), 1, + anon_sym_as, + ACTIONS(5177), 1, anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6697), 1, + sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3350), 1, + STATE(3358), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5569), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [117695] = 19, + [118425] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1039), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3351), 1, + STATE(3359), 1, sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6697), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -311193,16 +311752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117777] = 6, + [118501] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - STATE(3352), 1, + STATE(3360), 1, sym_comment, - ACTIONS(985), 10, + ACTIONS(1035), 10, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -311213,7 +311772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -311243,65 +311802,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117833] = 22, + [118557] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6704), 1, - anon_sym_async, - ACTIONS(6706), 1, - anon_sym_static, - ACTIONS(6708), 1, - anon_sym_readonly, - ACTIONS(6714), 1, - anon_sym_override, - STATE(3353), 1, + STATE(3361), 1, sym_comment, - STATE(3593), 1, - sym_accessibility_modifier, - STATE(3621), 1, - sym_override_modifier, - STATE(4447), 1, + STATE(4687), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6702), 2, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6710), 2, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_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(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6712), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6538), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6700), 14, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118625] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3362), 1, + sym_comment, + STATE(4731), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 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(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -311309,39 +311914,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117921] = 16, + [118693] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3679), 1, + anon_sym_extends, + STATE(3363), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5078), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2140), 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(2146), 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, + [118755] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1045), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3354), 1, + STATE(3364), 1, sym_comment, - STATE(4672), 1, + STATE(4689), 1, sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 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, @@ -311369,112 +312023,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117997] = 33, + [118823] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(5173), 1, anon_sym_as, - ACTIONS(5075), 1, + ACTIONS(5177), 1, anon_sym_BANG, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, + ACTIONS(5217), 1, anon_sym_satisfies, ACTIONS(6654), 1, + anon_sym_STAR_STAR, + ACTIONS(6669), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6660), 1, + ACTIONS(6679), 1, anon_sym_CARET, - ACTIONS(6662), 1, + ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6666), 1, + ACTIONS(6685), 1, anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, + ACTIONS(6695), 1, anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, + ACTIONS(6697), 1, sym__ternary_qmark, STATE(2313), 1, sym_type_arguments, - STATE(3355), 1, + STATE(3365), 1, sym_comment, - STATE(5791), 1, + STATE(5797), 1, sym_optional_chain, - ACTIONS(5113), 2, + ACTIONS(5215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(6665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6652), 2, + ACTIONS(6667), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, + ACTIONS(6675), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, + ACTIONS(6683), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + ACTIONS(6691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(6693), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2549), 2, + STATE(2631), 2, sym_template_string, sym_arguments, - ACTIONS(6672), 3, + ACTIONS(6689), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [118107] = 12, + [118933] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3356), 1, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(3366), 1, sym_comment, - STATE(4761), 1, + STATE(4691), 1, sym__property_name, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -311502,93 +312160,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118175] = 33, + [119009] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5063), 1, + anon_sym_extends, + STATE(3367), 1, + sym_comment, + ACTIONS(5057), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(5060), 2, anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3357), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(5051), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, + ACTIONS(5055), 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, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [118285] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [119071] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2142), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6374), 1, + ACTIONS(5844), 1, + anon_sym_RBRACK, + ACTIONS(5970), 1, anon_sym_COMMA, - STATE(3358), 1, + STATE(3368), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(2140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311602,14 +312240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 26, + ACTIONS(2146), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -311629,204 +312264,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118341] = 33, + [119130] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(3369), 1, + sym_comment, + ACTIONS(5863), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(5866), 2, anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - ACTIONS(6684), 1, - anon_sym_AMP_AMP, - ACTIONS(6686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3359), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, + ACTIONS(4218), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6674), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118451] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4222), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_as, - ACTIONS(5075), 1, - anon_sym_BANG, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5115), 1, - anon_sym_satisfies, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_AMP, - ACTIONS(6660), 1, - anon_sym_CARET, - ACTIONS(6662), 1, - anon_sym_PIPE, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - ACTIONS(6684), 1, anon_sym_AMP_AMP, - ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6688), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6690), 1, - sym__ternary_qmark, - STATE(2313), 1, - sym_type_arguments, - STATE(3360), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6652), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6676), 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(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(6672), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [118561] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [119189] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3361), 1, + STATE(3370), 1, sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(6014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1035), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -311843,85 +312366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118637] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6654), 1, - anon_sym_GT_GT, - ACTIONS(6666), 1, - anon_sym_PERCENT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6670), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3362), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6656), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6664), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 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(5569), 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, - [118723] = 7, + [119248] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(5748), 1, anon_sym_EQ, - STATE(3363), 1, - sym_comment, - ACTIONS(4466), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5752), 1, anon_sym_RBRACK, - ACTIONS(4238), 13, + ACTIONS(5978), 1, + anon_sym_COMMA, + STATE(3371), 1, + sym_comment, + ACTIONS(5746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311935,7 +312393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(5750), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -311959,38 +312417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118781] = 16, + [119307] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4943), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(6668), 1, - anon_sym_STAR_STAR, - ACTIONS(6694), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3364), 1, + ACTIONS(5053), 1, + anon_sym_EQ, + ACTIONS(5700), 1, + anon_sym_RBRACK, + ACTIONS(5989), 1, + anon_sym_COMMA, + STATE(3372), 1, sym_comment, - STATE(5791), 1, - sym_optional_chain, - ACTIONS(5113), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5571), 12, + ACTIONS(5051), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312001,66 +312441,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(5569), 15, + ACTIONS(5055), 23, 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, - [118857] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(2313), 1, - sym_type_arguments, - STATE(3365), 1, - sym_comment, - STATE(5791), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - ACTIONS(5678), 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(5680), 18, - sym__ternary_qmark, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -312076,40 +312466,92 @@ 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, - [118929] = 12, + [119366] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3373), 1, + sym_comment, + ACTIONS(6014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1035), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2486), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119425] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3366), 1, + ACTIONS(6721), 1, + anon_sym_abstract, + STATE(3374), 1, sym_comment, - STATE(4712), 1, + STATE(4331), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 8, + ACTIONS(1035), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312133,7 +312575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118997] = 15, + [119494] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312142,34 +312584,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6719), 1, + ACTIONS(6723), 1, anon_sym_readonly, - STATE(3367), 1, + STATE(3375), 1, sym_comment, - STATE(3697), 1, + STATE(3639), 1, sym_override_modifier, - STATE(4314), 1, + STATE(4279), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 21, + ACTIONS(4498), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312191,7 +312633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119070] = 25, + [119567] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312200,58 +312642,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(5047), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6721), 1, - anon_sym_STAR, - ACTIONS(6723), 1, - anon_sym_async, ACTIONS(6725), 1, - anon_sym_static, - ACTIONS(6727), 1, anon_sym_readonly, - ACTIONS(6731), 1, - anon_sym_declare, - ACTIONS(6733), 1, - anon_sym_abstract, - STATE(3368), 1, + STATE(3376), 1, sym_comment, - STATE(3507), 1, - sym_method_definition, - STATE(3544), 1, - sym_accessibility_modifier, - STATE(3568), 1, - aux_sym_export_statement_repeat1, - STATE(3636), 1, + STATE(3661), 1, sym_override_modifier, - STATE(3652), 1, - sym_decorator, - STATE(3893), 1, + STATE(4188), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6729), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4674), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4496), 13, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4498), 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, @@ -312259,157 +312691,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119163] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [119640] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3369), 1, - sym_comment, - ACTIONS(5853), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6735), 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(6738), 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, - [119218] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(5613), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3370), 1, + ACTIONS(6190), 1, + anon_sym_abstract, + STATE(3377), 1, sym_comment, - ACTIONS(5368), 2, + STATE(4188), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 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(4242), 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, - [119279] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4498), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119709] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4332), 1, - anon_sym_EQ, - STATE(3371), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6727), 1, + anon_sym_abstract, + STATE(3378), 1, sym_comment, - ACTIONS(4238), 13, - anon_sym_STAR, + STATE(4342), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + 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_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4242), 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, - [119334] = 13, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4498), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119778] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312418,30 +312812,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6264), 1, - anon_sym_abstract, - STATE(3372), 1, + ACTIONS(6729), 1, + anon_sym_readonly, + STATE(3379), 1, sym_comment, - STATE(4171), 1, + STATE(3677), 1, + sym_override_modifier, + STATE(4164), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312450,14 +312848,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, @@ -312465,7 +312861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119403] = 18, + [119851] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312474,21 +312870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5579), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(3373), 1, + STATE(3380), 1, sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -312496,29 +312886,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6741), 2, + ACTIONS(6715), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(2989), 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, @@ -312526,7 +312919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119482] = 15, + [119924] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312535,34 +312928,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6743), 1, + ACTIONS(6731), 1, anon_sym_readonly, - STATE(3374), 1, + STATE(3381), 1, sym_comment, - STATE(3674), 1, + STATE(3653), 1, sym_override_modifier, - STATE(4171), 1, + STATE(4342), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 21, + ACTIONS(4498), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312584,18 +312977,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119555] = 6, + [119997] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3382), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [120072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3375), 1, + STATE(3383), 1, sym_comment, - ACTIONS(5727), 3, + ACTIONS(5777), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6745), 13, + ACTIONS(6733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312609,7 +313061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6748), 23, + ACTIONS(6736), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -312633,58 +313085,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119610] = 16, + [120127] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3376), 1, + ACTIONS(6739), 1, + anon_sym_readonly, + STATE(3384), 1, sym_comment, - STATE(4672), 1, + STATE(3694), 1, + sym_override_modifier, + STATE(4229), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6697), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(4498), 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_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -312692,28 +313143,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119685] = 8, + [120200] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4363), 1, + anon_sym_EQ, + STATE(3385), 1, + sym_comment, + ACTIONS(4218), 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(4222), 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, + [120255] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3377), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6025), 2, + ACTIONS(1035), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(985), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2452), 29, + ACTIONS(2486), 30, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312743,58 +313240,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119744] = 8, + anon_sym_abstract, + [120310] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3378), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6741), 1, + anon_sym_STAR, + ACTIONS(6743), 1, + anon_sym_async, + ACTIONS(6745), 1, + anon_sym_static, + ACTIONS(6747), 1, + anon_sym_readonly, + ACTIONS(6751), 1, + anon_sym_declare, + ACTIONS(6753), 1, + anon_sym_abstract, + STATE(3387), 1, sym_comment, - ACTIONS(6025), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(985), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, + STATE(3471), 1, + sym_method_definition, + STATE(3550), 1, + sym_accessibility_modifier, + STATE(3579), 1, + aux_sym_export_statement_repeat1, + STATE(3622), 1, + sym_override_modifier, + STATE(3678), 1, + sym_decorator, + STATE(3910), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6749), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4676), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4498), 13, anon_sym_export, - anon_sym_STAR, 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, + [120403] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3388), 1, + sym_comment, + ACTIONS(5534), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6755), 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(6758), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119803] = 13, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [120458] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312803,30 +313367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6751), 1, + ACTIONS(6761), 1, anon_sym_abstract, - STATE(3379), 1, + STATE(3389), 1, sym_comment, - STATE(4309), 1, + STATE(4231), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312850,7 +313414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119872] = 15, + [120527] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312859,15 +313423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(3380), 1, + STATE(3390), 1, sym_comment, - STATE(4672), 1, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -312875,86 +313445,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6697), 2, + ACTIONS(6763), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 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, - [119945] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_readonly, - STATE(3381), 1, - sym_comment, - STATE(3645), 1, - sym_override_modifier, - STATE(4339), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4496), 21, + ACTIONS(2989), 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_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312966,18 +313475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120018] = 6, + [120606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3382), 1, + STATE(3391), 1, sym_comment, - ACTIONS(5644), 3, + ACTIONS(5137), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6755), 13, + anon_sym_extends, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312991,11 +313499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6758), 23, + ACTIONS(5349), 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, @@ -313015,18 +313524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120073] = 6, + [120661] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3383), 1, + STATE(3392), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(5538), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6761), 13, + ACTIONS(6765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313040,7 +313549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6764), 23, + ACTIONS(6768), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313064,38 +313573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120128] = 8, + [120716] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5858), 1, - anon_sym_LBRACK, - STATE(3384), 1, + STATE(3393), 1, sym_comment, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4975), 3, + ACTIONS(2198), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4238), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6771), 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(4242), 22, + ACTIONS(6774), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313115,18 +313622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120187] = 6, + [120771] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3385), 1, - sym_comment, - ACTIONS(2270), 3, + ACTIONS(6446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6767), 13, + STATE(3394), 1, + sym_comment, + ACTIONS(5347), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313140,10 +313645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6770), 23, + ACTIONS(5349), 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, @@ -313164,18 +313671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120242] = 6, + [120826] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3386), 1, - sym_comment, - ACTIONS(5723), 3, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6773), 13, + ACTIONS(4469), 1, + anon_sym_EQ, + STATE(3395), 1, + sym_comment, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313189,7 +313698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6776), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313213,38 +313722,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120297] = 8, + [120885] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4479), 1, - anon_sym_EQ, - STATE(3387), 1, + ACTIONS(5544), 1, + anon_sym_LBRACK, + STATE(3396), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(5547), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5011), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4218), 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(4242), 23, + ACTIONS(4222), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313264,137 +313773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120356] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3388), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [120433] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3389), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [120508] = 6, + [120944] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3390), 1, + STATE(3397), 1, sym_comment, - ACTIONS(2232), 3, + ACTIONS(2244), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6779), 13, + ACTIONS(6777), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313408,7 +313798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6782), 23, + ACTIONS(6780), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313432,96 +313822,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120563] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6785), 1, - anon_sym_readonly, - STATE(3391), 1, - sym_comment, - STATE(3655), 1, - sym_override_modifier, - STATE(4264), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4496), 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, - [120636] = 8, + [120999] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4975), 1, - anon_sym_extends, - STATE(3392), 1, + STATE(3398), 1, sym_comment, - ACTIONS(5858), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5861), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4238), 11, + ACTIONS(2170), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6783), 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(4242), 23, + ACTIONS(6786), 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, @@ -313541,83 +313871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120695] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6787), 1, - anon_sym_abstract, - STATE(3393), 1, - sym_comment, - STATE(4245), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4496), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120764] = 8, + [121054] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5753), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(5544), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3399), 1, sym_comment, - ACTIONS(5756), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5306), 3, + ACTIONS(5011), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5729), 11, + ACTIONS(5547), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4218), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -313625,7 +313900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5731), 22, + ACTIONS(4222), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313648,36 +313923,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120823] = 6, + [121115] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3395), 1, + ACTIONS(5863), 1, + anon_sym_LBRACK, + STATE(3400), 1, sym_comment, - ACTIONS(5219), 2, + ACTIONS(5866), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4965), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5252), 13, + ACTIONS(4218), 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(5254), 24, + ACTIONS(4222), 22, 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, @@ -313697,16 +313974,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120878] = 6, + [121174] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACE, + STATE(3401), 1, + sym_comment, + STATE(4691), 1, + sym__property_name, + STATE(5954), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 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, + [121251] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6374), 1, - anon_sym_COMMA, - STATE(3396), 1, + STATE(3402), 1, sym_comment, - ACTIONS(5252), 13, + ACTIONS(2162), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313720,12 +314059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5254), 25, - sym__automatic_semicolon, + ACTIONS(6792), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -313746,23 +314083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120933] = 8, + [121306] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5613), 1, + ACTIONS(5834), 1, anon_sym_LBRACK, - STATE(3397), 1, + STATE(3403), 1, sym_comment, - ACTIONS(5616), 2, + ACTIONS(5837), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5368), 3, + ACTIONS(5380), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4238), 11, + ACTIONS(5822), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313774,7 +314111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 22, + ACTIONS(5824), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313797,69 +314134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120992] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - STATE(3398), 1, - sym_comment, - ACTIONS(985), 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(2454), 30, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [121047] = 8, + [121365] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5472), 1, - anon_sym_RBRACK, - ACTIONS(5970), 1, - anon_sym_COMMA, - STATE(3399), 1, + STATE(3404), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(5732), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313873,7 +314159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2150), 23, + ACTIONS(6798), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -313897,39 +314183,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121106] = 13, + [121420] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_abstract, - STATE(3400), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACE, + STATE(3405), 1, sym_comment, - STATE(4175), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(5954), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313939,8 +314230,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, @@ -313953,7 +314242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121175] = 15, + [121495] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313962,34 +314251,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6791), 1, - anon_sym_readonly, - STATE(3401), 1, + ACTIONS(6801), 1, + anon_sym_abstract, + STATE(3406), 1, sym_comment, - STATE(3675), 1, - sym_override_modifier, - STATE(4181), 1, + STATE(4161), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 21, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313998,12 +314283,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, @@ -314011,123 +314298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121248] = 8, + [121564] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5575), 1, + ACTIONS(5053), 1, anon_sym_EQ, - ACTIONS(5619), 1, - anon_sym_RBRACK, - ACTIONS(5964), 1, - anon_sym_COMMA, - STATE(3402), 1, - sym_comment, - ACTIONS(5573), 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(5577), 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, - [121307] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3403), 1, - sym_comment, - ACTIONS(2314), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6793), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(5989), 1, + anon_sym_of, + ACTIONS(6518), 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(6796), 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, - [121362] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5413), 1, - anon_sym_RBRACK, - ACTIONS(5928), 1, - anon_sym_COMMA, - STATE(3404), 1, + STATE(3407), 1, sym_comment, - ACTIONS(5389), 13, + ACTIONS(5051), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -314138,7 +314324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 23, + ACTIONS(5055), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -314162,93 +314348,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121421] = 13, + [121622] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6799), 1, - anon_sym_abstract, - STATE(3405), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3408), 1, sym_comment, - STATE(4314), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4496), 23, - anon_sym_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(2995), 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, - [121490] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3406), 1, - sym_comment, - STATE(4160), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, + ACTIONS(6763), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314258,8 +314392,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, @@ -314272,7 +314404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121556] = 12, + [121692] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314281,28 +314413,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3407), 1, + STATE(3409), 1, sym_comment, - STATE(4234), 1, + STATE(4176), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314326,29 +314458,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121622] = 10, + [121758] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(6133), 1, + ACTIONS(1057), 1, anon_sym_RBRACE, - STATE(3408), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3410), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - ACTIONS(985), 4, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314378,29 +314510,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121684] = 10, + [121820] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(6133), 1, + ACTIONS(1057), 1, anon_sym_RBRACE, - STATE(3409), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3411), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - ACTIONS(985), 4, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314430,42 +314562,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121746] = 10, + [121882] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(6185), 1, - anon_sym_RBRACE, - STATE(3410), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + STATE(3412), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, + STATE(4250), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(4498), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -314482,29 +314616,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121808] = 10, + [121948] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(6185), 1, + ACTIONS(1039), 1, anon_sym_RBRACE, - STATE(3411), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3413), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314534,7 +314668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121870] = 14, + [122010] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314543,13 +314677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_STAR, - STATE(3412), 1, + STATE(3414), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -314557,23 +314693,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6741), 2, + ACTIONS(6763), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -314590,42 +314725,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121940] = 10, + [122082] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3413), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + STATE(3415), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, + STATE(4329), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(4498), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -314642,7 +314779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122002] = 12, + [122148] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314651,28 +314788,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3414), 1, + STATE(3416), 1, sym_comment, - STATE(4163), 1, + STATE(4261), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -314696,44 +314833,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122068] = 12, + [122214] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3415), 1, - sym_comment, - STATE(4238), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1039), 1, + anon_sym_RBRACE, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3417), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -314750,29 +314885,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122134] = 10, + [122276] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5748), 1, + anon_sym_EQ, + ACTIONS(5978), 1, + anon_sym_of, + ACTIONS(6492), 1, + anon_sym_in, + STATE(3418), 1, + sym_comment, + ACTIONS(5746), 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(5750), 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, + [122334] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(6176), 1, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(3416), 1, + STATE(3419), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314802,42 +314987,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122196] = 10, + [122396] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3417), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + STATE(3420), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, + STATE(4162), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(4498), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -314854,16 +315041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122258] = 6, + [122462] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4420), 1, + ACTIONS(4403), 1, anon_sym_EQ, - STATE(3418), 1, + STATE(3421), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314877,7 +315064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 24, + ACTIONS(4222), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -314902,29 +315089,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [122312] = 10, + [122516] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(6176), 1, + ACTIONS(6125), 1, anon_sym_RBRACE, - STATE(3419), 1, + STATE(3422), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -314954,29 +315141,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122374] = 10, + [122578] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(6207), 1, + ACTIONS(6245), 1, anon_sym_RBRACE, - STATE(3420), 1, + STATE(3423), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315006,29 +315193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122436] = 10, + [122640] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - ACTIONS(6207), 1, + ACTIONS(6125), 1, anon_sym_RBRACE, - STATE(3421), 1, + STATE(3424), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315058,44 +315245,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122498] = 12, + [122702] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3425), 1, + sym_comment, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2482), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3422), 1, - sym_comment, - STATE(4330), 1, - sym__property_name, - ACTIONS(3995), 2, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [122764] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2142), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5970), 1, + anon_sym_of, + ACTIONS(6481), 1, + anon_sym_in, + STATE(3426), 1, + sym_comment, + ACTIONS(2140), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2146), 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, + [122822] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(3427), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2486), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -315112,44 +315399,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122564] = 12, + [122884] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3423), 1, - sym_comment, - STATE(4299), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(6201), 1, + anon_sym_RBRACE, + STATE(3428), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -315166,29 +315451,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122630] = 10, + [122946] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1045), 1, + ACTIONS(1014), 1, anon_sym_RBRACE, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - STATE(3424), 1, + STATE(3429), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315218,19 +315503,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122692] = 6, + [123008] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4405), 1, + ACTIONS(4280), 1, anon_sym_EQ, - STATE(3425), 1, + ACTIONS(4439), 1, + anon_sym_in, + ACTIONS(4442), 1, + anon_sym_of, + STATE(3430), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -315241,12 +315529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 24, + ACTIONS(4222), 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, @@ -315266,79 +315553,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [122746] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4640), 1, - sym__automatic_semicolon, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3426), 1, - sym_comment, - STATE(4280), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4496), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [122812] = 6, + [123066] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4640), 1, - sym__automatic_semicolon, - STATE(3427), 1, - sym_comment, - ACTIONS(985), 8, + ACTIONS(229), 1, anon_sym_COMMA, + ACTIONS(5091), 1, + anon_sym_EQ, + ACTIONS(6207), 1, anon_sym_RBRACE, + STATE(3431), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2454), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315368,29 +315605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122866] = 10, + [123128] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1045), 1, + ACTIONS(1014), 1, anon_sym_RBRACE, - ACTIONS(5039), 1, + ACTIONS(5091), 1, anon_sym_EQ, - STATE(3428), 1, + STATE(3432), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(985), 4, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -315420,7 +315657,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122928] = 12, + [123190] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(3433), 1, + sym_comment, + STATE(3071), 2, + sym_template_string, + sym_arguments, + ACTIONS(4993), 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(4995), 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, + [123248] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315429,28 +315716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3429), 1, + STATE(3434), 1, sym_comment, - STATE(4308), 1, + STATE(4278), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315474,7 +315761,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122994] = 12, + [123314] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_EQ, + STATE(3435), 1, + sym_comment, + ACTIONS(4218), 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(4222), 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, + [123368] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315483,28 +315818,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3430), 1, + STATE(3436), 1, sym_comment, - STATE(4223), 1, + STATE(4293), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315528,39 +315863,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123060] = 14, + [123434] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3431), 1, + STATE(3437), 1, sym_comment, - STATE(4672), 1, + STATE(4233), 1, sym__property_name, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, - anon_sym_LPAREN, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315584,7 +315917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123130] = 12, + [123500] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315593,28 +315926,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3432), 1, + STATE(3438), 1, sym_comment, - STATE(4243), 1, + STATE(4305), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315638,19 +315971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123196] = 6, + [123566] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(3433), 1, + ACTIONS(6158), 1, + sym_regex_flags, + STATE(3439), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(6154), 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, @@ -315661,62 +315996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_BQUOTE, anon_sym_satisfies, - [123250] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - STATE(3434), 1, - sym_comment, - STATE(3115), 2, - sym_template_string, - sym_arguments, - ACTIONS(4989), 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(4991), 21, + ACTIONS(6156), 20, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -315732,11 +316016,10 @@ 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, - [123308] = 12, + anon_sym_BQUOTE, + [123620] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315745,87 +316028,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3435), 1, + STATE(3440), 1, sym_comment, - STATE(4200), 1, + STATE(4190), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [123374] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3436), 1, - sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(4498), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -315842,7 +316073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123436] = 12, + [123686] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315851,28 +316082,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3437), 1, + STATE(3441), 1, sym_comment, - STATE(4157), 1, + STATE(4206), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315896,42 +316127,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123502] = 10, + [123752] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(5039), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5091), 1, anon_sym_EQ, - STATE(3438), 1, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3442), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(985), 4, + STATE(4691), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -315948,7 +316182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123564] = 12, + [123820] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -315957,28 +316191,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3439), 1, + STATE(3443), 1, sym_comment, - STATE(4335), 1, + STATE(4205), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316002,7 +316236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123630] = 12, + [123886] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316011,28 +316245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3440), 1, + STATE(3444), 1, sym_comment, - STATE(4248), 1, + STATE(4169), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316056,72 +316290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123696] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2146), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5970), 1, - anon_sym_of, - ACTIONS(6579), 1, - anon_sym_in, - STATE(3441), 1, - sym_comment, - ACTIONS(2144), 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(2150), 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, - [123754] = 8, + [123952] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5575), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_of, - ACTIONS(6576), 1, - anon_sym_in, - STATE(3442), 1, + STATE(3445), 1, sym_comment, - ACTIONS(5573), 12, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -316132,10 +316313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5577), 23, + ACTIONS(4222), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -316156,7 +316338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123812] = 12, + [124006] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316165,28 +316347,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3443), 1, + STATE(3446), 1, sym_comment, - STATE(4278), 1, + STATE(4168), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316210,155 +316392,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123878] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [124072] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6152), 1, - sym_regex_flags, - STATE(3444), 1, - sym_comment, - ACTIONS(6148), 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(6150), 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, - [123932] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_EQ, - ACTIONS(5928), 1, - anon_sym_of, - ACTIONS(6415), 1, - anon_sym_in, - STATE(3445), 1, + ACTIONS(4642), 1, + sym__automatic_semicolon, + STATE(3447), 1, sym_comment, - ACTIONS(5389), 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(5393), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1035), 8, + 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(2486), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, 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, - [123990] = 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124126] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(4442), 1, - anon_sym_in, - ACTIONS(4445), 1, - anon_sym_of, - STATE(3446), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4642), 1, + sym__automatic_semicolon, + ACTIONS(5099), 1, + anon_sym_LBRACK, + STATE(3448), 1, sym_comment, - ACTIONS(4238), 12, - anon_sym_STAR, + STATE(4269), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 6, + anon_sym_EQ, + anon_sym_COMMA, 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(4242), 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, - [124048] = 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4498), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124192] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316367,28 +316503,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__automatic_semicolon, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3449), 1, sym_comment, - STATE(4269), 1, + STATE(4227), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 6, + ACTIONS(1035), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -316412,7 +316548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124114] = 13, + [124258] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316421,24 +316557,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_EQ, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3448), 1, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACE, + STATE(3450), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, + STATE(5954), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6697), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -316467,7 +316604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124182] = 15, + [124328] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316476,42 +316613,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - STATE(3449), 1, + STATE(3451), 1, sym_comment, - STATE(4672), 1, + STATE(4691), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6741), 2, + ACTIONS(6763), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -316524,16 +316657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124254] = 6, + [124393] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4568), 1, + ACTIONS(4604), 1, anon_sym_EQ, - STATE(3450), 1, + STATE(3452), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316547,7 +316680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316571,69 +316704,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124307] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [124446] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3451), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4576), 1, + anon_sym_EQ, + STATE(3453), 1, sym_comment, - STATE(4672), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 4, + ACTIONS(4218), 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(4222), 23, + 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, + [124499] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4562), 1, + anon_sym_EQ, + STATE(3454), 1, + sym_comment, + ACTIONS(4218), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [124372] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4222), 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, + [124552] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4552), 1, + ACTIONS(4608), 1, anon_sym_EQ, - STATE(3452), 1, + STATE(3455), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316647,7 +316821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316671,16 +316845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124425] = 6, + [124605] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4580), 1, + ACTIONS(4574), 1, anon_sym_EQ, - STATE(3453), 1, + STATE(3456), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316694,7 +316868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316718,16 +316892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124478] = 6, + [124658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4586), 1, + ACTIONS(4568), 1, anon_sym_EQ, - STATE(3454), 1, + STATE(3457), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316741,7 +316915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316765,16 +316939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124531] = 6, + [124711] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4600), 1, + ACTIONS(4590), 1, anon_sym_EQ, - STATE(3455), 1, + STATE(3458), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316788,7 +316962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316812,16 +316986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124584] = 6, + [124764] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4612), 1, + ACTIONS(4606), 1, anon_sym_EQ, - STATE(3456), 1, + STATE(3459), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316835,7 +317009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316859,16 +317033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124637] = 6, + [124817] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4554), 1, + ACTIONS(4564), 1, anon_sym_EQ, - STATE(3457), 1, + STATE(3460), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316882,7 +317056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316906,16 +317080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124690] = 6, + [124870] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4620), 1, + ACTIONS(4552), 1, anon_sym_EQ, - STATE(3458), 1, + STATE(3461), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316929,7 +317103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 23, + ACTIONS(4222), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -316953,110 +317127,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124743] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [124923] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4610), 1, - anon_sym_EQ, - STATE(3459), 1, - sym_comment, - ACTIONS(4238), 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(4242), 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, - [124796] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4558), 1, - anon_sym_EQ, - STATE(3460), 1, + ACTIONS(6805), 1, + sym__automatic_semicolon, + STATE(3462), 1, sym_comment, - ACTIONS(4238), 13, + ACTIONS(6803), 35, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4242), 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, - [124849] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [124973] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6809), 1, sym__automatic_semicolon, - STATE(3461), 1, + STATE(3463), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6807), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317092,16 +317217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124899] = 5, + [125023] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6807), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3462), 1, + STATE(3464), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(2208), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317137,16 +317262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124949] = 5, + [125073] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3463), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317182,16 +317307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124999] = 5, + [125123] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3464), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317227,16 +317352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125049] = 5, + [125173] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2290), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3465), 1, + STATE(3467), 1, sym_comment, - ACTIONS(2288), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317272,16 +317397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125099] = 5, + [125223] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3466), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317317,16 +317442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125149] = 5, + [125273] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2164), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3467), 1, + STATE(3469), 1, sym_comment, - ACTIONS(2160), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317362,38 +317487,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125199] = 8, + [125323] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3468), 1, + ACTIONS(6819), 1, + sym__automatic_semicolon, + STATE(3470), 1, sym_comment, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -317410,38 +317531,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125255] = 8, + anon_sym_abstract, + [125373] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3469), 1, + ACTIONS(6823), 1, + anon_sym_SEMI, + ACTIONS(6826), 1, + sym__automatic_semicolon, + STATE(3471), 1, sym_comment, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(6821), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -317458,16 +317577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125311] = 5, + anon_sym_abstract, + [125425] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6830), 1, sym__automatic_semicolon, - STATE(3470), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6828), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317503,16 +317623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125361] = 5, + [125475] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6827), 1, + ACTIONS(2186), 1, sym__automatic_semicolon, - STATE(3471), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6825), 35, + ACTIONS(2184), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317548,16 +317668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125411] = 5, + [125525] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6829), 1, + ACTIONS(2212), 1, sym__automatic_semicolon, - STATE(3472), 1, + STATE(3474), 1, sym_comment, - ACTIONS(2142), 35, + ACTIONS(2208), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317593,16 +317713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125461] = 5, + [125575] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, + ACTIONS(6834), 1, sym__automatic_semicolon, - STATE(3473), 1, + STATE(3475), 1, sym_comment, - ACTIONS(2160), 35, + ACTIONS(6832), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317638,16 +317758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125511] = 5, + [125625] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3474), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317683,16 +317803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125561] = 5, + [125675] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6839), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3475), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6837), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317728,16 +317848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125611] = 5, + [125725] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6843), 1, + ACTIONS(6842), 1, sym__automatic_semicolon, - STATE(3476), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6841), 35, + ACTIONS(6840), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317773,16 +317893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125661] = 5, + [125775] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6834), 1, sym__automatic_semicolon, - STATE(3477), 1, + STATE(3479), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6832), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317818,16 +317938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125711] = 5, + [125825] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6846), 1, sym__automatic_semicolon, - STATE(3478), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6844), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317863,16 +317983,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125761] = 5, + [125875] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(6848), 1, + anon_sym_LPAREN, + ACTIONS(6850), 1, + anon_sym_DOT, + STATE(3481), 1, + sym_comment, + STATE(3640), 1, + sym_arguments, + STATE(6718), 1, + sym_type_arguments, + ACTIONS(4294), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [125933] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6847), 1, + ACTIONS(6842), 1, sym__automatic_semicolon, - STATE(3479), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6845), 35, + ACTIONS(6840), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317908,16 +318077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125811] = 5, + [125983] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6852), 1, sym__automatic_semicolon, - STATE(3480), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(2138), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317953,16 +318122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125861] = 5, + [126033] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6807), 1, + ACTIONS(6854), 1, sym__automatic_semicolon, - STATE(3481), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(2208), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -317998,16 +318167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125911] = 5, + [126083] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6842), 1, sym__automatic_semicolon, - STATE(3482), 1, + STATE(3485), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6840), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318043,16 +318212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125961] = 5, + [126133] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, + ACTIONS(6834), 1, sym__automatic_semicolon, - STATE(3483), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(6832), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318088,16 +318257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126011] = 5, + [126183] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3484), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318133,16 +318302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126061] = 5, + [126233] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6807), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3485), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318178,37 +318347,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126111] = 7, + [126283] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3486), 1, + ACTIONS(6838), 1, + sym__automatic_semicolon, + STATE(3489), 1, sym_comment, - ACTIONS(6697), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(985), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -318225,16 +318391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126165] = 5, + anon_sym_abstract, + [126333] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6807), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3487), 1, + STATE(3490), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318270,24 +318437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126215] = 7, + [126383] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3488), 1, - sym_comment, - ACTIONS(6697), 2, + ACTIONS(6502), 1, anon_sym_COMMA, + ACTIONS(6652), 1, anon_sym_RBRACE, - ACTIONS(985), 4, + STATE(3491), 1, + sym_comment, + STATE(5954), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318317,16 +318485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126269] = 5, + [126439] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3489), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318362,34 +318530,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126319] = 5, + [126489] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6855), 1, - sym__automatic_semicolon, - STATE(3490), 1, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACE, + STATE(3493), 1, sym_comment, - ACTIONS(6853), 35, + STATE(5954), 1, + aux_sym_object_repeat1, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -318406,17 +318578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [126369] = 5, + [126545] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6855), 1, + ACTIONS(6856), 1, sym__automatic_semicolon, - STATE(3491), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6853), 35, + ACTIONS(2138), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318452,16 +318623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126419] = 5, + [126595] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6805), 1, sym__automatic_semicolon, - STATE(3492), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6803), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318497,14 +318668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126469] = 5, + [126645] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3493), 1, + STATE(3496), 1, sym_comment, ACTIONS(6813), 35, anon_sym_export, @@ -318542,16 +318713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126519] = 5, + [126695] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3494), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318587,16 +318758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126569] = 5, + [126745] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6855), 1, + ACTIONS(6830), 1, sym__automatic_semicolon, - STATE(3495), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6853), 35, + ACTIONS(6828), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318632,23 +318803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126619] = 5, + [126795] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6860), 1, + anon_sym_SEMI, + ACTIONS(6863), 1, sym__automatic_semicolon, - STATE(3496), 1, + STATE(3499), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6858), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -318677,16 +318849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126669] = 5, + [126847] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6807), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3497), 1, + STATE(3500), 1, sym_comment, - ACTIONS(6805), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318722,16 +318894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126719] = 5, + [126897] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3498), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318767,88 +318939,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126769] = 5, + [126947] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, - sym__automatic_semicolon, - STATE(3499), 1, - sym_comment, - ACTIONS(6813), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_STAR, + ACTIONS(6867), 1, anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6869), 1, + anon_sym_readonly, + STATE(3502), 1, + sym_comment, + STATE(3623), 1, + sym_override_modifier, + STATE(4713), 1, + sym__property_name, + ACTIONS(2823), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6871), 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, - anon_sym_abstract, - [126819] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6815), 1, - sym__automatic_semicolon, - STATE(3500), 1, - sym_comment, - ACTIONS(6813), 35, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 18, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -318856,17 +318996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [126869] = 5, + [127021] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6830), 1, sym__automatic_semicolon, - STATE(3501), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6828), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318902,16 +319041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126919] = 5, + [127071] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6838), 1, sym__automatic_semicolon, - STATE(3502), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6836), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318947,16 +319086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126969] = 5, + [127121] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6842), 1, sym__automatic_semicolon, - STATE(3503), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6840), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -318992,16 +319131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127019] = 5, + [127171] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6857), 1, + ACTIONS(6842), 1, sym__automatic_semicolon, - STATE(3504), 1, + STATE(3506), 1, sym_comment, - ACTIONS(2142), 35, + ACTIONS(6840), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319037,16 +319176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127069] = 5, + [127221] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6859), 1, + ACTIONS(6809), 1, sym__automatic_semicolon, - STATE(3505), 1, + STATE(3507), 1, sym_comment, - ACTIONS(2160), 35, + ACTIONS(6807), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319082,16 +319221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127119] = 5, + [127271] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6855), 1, + ACTIONS(6830), 1, sym__automatic_semicolon, - STATE(3506), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6853), 35, + ACTIONS(6828), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319127,24 +319266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127169] = 6, + [127321] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6863), 1, - anon_sym_SEMI, - ACTIONS(6866), 1, + ACTIONS(6875), 1, sym__automatic_semicolon, - STATE(3507), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6861), 34, + ACTIONS(6873), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -319173,91 +319311,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127221] = 17, + [127371] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - anon_sym_STAR, - ACTIONS(6870), 1, - anon_sym_async, - ACTIONS(6872), 1, - anon_sym_readonly, - STATE(3508), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3510), 1, sym_comment, - STATE(3624), 1, - sym_override_modifier, - STATE(4794), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6874), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1035), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 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, - [127295] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6819), 1, - sym__automatic_semicolon, - STATE(3509), 1, - sym_comment, - ACTIONS(6817), 35, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -319274,17 +319358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [127345] = 5, + [127425] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6878), 1, + ACTIONS(6830), 1, sym__automatic_semicolon, - STATE(3510), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6876), 35, + ACTIONS(6828), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319320,16 +319403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127395] = 5, + [127475] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6879), 1, sym__automatic_semicolon, - STATE(3511), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6877), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319365,34 +319448,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127445] = 5, + [127525] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, - sym__automatic_semicolon, - STATE(3512), 1, + ACTIONS(5091), 1, + anon_sym_EQ, + STATE(3513), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(6715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1035), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -319409,17 +319495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [127495] = 5, + [127579] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6855), 1, + ACTIONS(6819), 1, sym__automatic_semicolon, - STATE(3513), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6853), 35, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319455,16 +319540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127545] = 5, + [127629] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6811), 1, + ACTIONS(6883), 1, sym__automatic_semicolon, - STATE(3514), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6809), 35, + ACTIONS(6881), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319500,24 +319585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127595] = 6, + [127679] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6882), 1, - anon_sym_SEMI, - ACTIONS(6885), 1, + ACTIONS(6834), 1, sym__automatic_semicolon, - STATE(3515), 1, + STATE(3516), 1, sym_comment, - ACTIONS(6880), 34, + ACTIONS(6832), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -319546,16 +319630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127647] = 5, + [127729] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6803), 1, + ACTIONS(6834), 1, sym__automatic_semicolon, - STATE(3516), 1, + STATE(3517), 1, sym_comment, - ACTIONS(6801), 35, + ACTIONS(6832), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319591,16 +319675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127697] = 5, + [127779] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6887), 1, sym__automatic_semicolon, - STATE(3517), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6885), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319636,14 +319720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127747] = 4, + [127829] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3518), 1, + ACTIONS(6891), 1, + sym__automatic_semicolon, + STATE(3519), 1, sym_comment, - ACTIONS(6887), 35, + ACTIONS(6889), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319679,7 +319765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127794] = 13, + [127879] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319688,28 +319774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_STAR, - STATE(3519), 1, + ACTIONS(6893), 1, + anon_sym_EQ_GT, + STATE(3520), 1, sym_comment, - STATE(4777), 1, + STATE(4713), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6891), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319719,6 +319802,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, @@ -319731,36 +319816,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127859] = 4, + [127942] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3520), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_STAR, + STATE(3521), 1, sym_comment, - ACTIONS(6893), 35, + STATE(4713), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6871), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -319773,37 +319868,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [127906] = 4, + [128007] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3521), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_STAR, + ACTIONS(6867), 1, + anon_sym_async, + STATE(3522), 1, sym_comment, - ACTIONS(6895), 35, + STATE(4713), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6871), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -319816,15 +319921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [127953] = 4, + [128074] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3522), 1, + STATE(3523), 1, sym_comment, - ACTIONS(2288), 35, + ACTIONS(2208), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319860,14 +319964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128000] = 4, + [128121] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3523), 1, + STATE(3524), 1, sym_comment, - ACTIONS(2160), 35, + ACTIONS(6895), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319903,14 +320007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128047] = 4, + [128168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3524), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6897), 35, + ACTIONS(2184), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319946,65 +320050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128094] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6899), 1, - anon_sym_EQ_GT, - STATE(3525), 1, - sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128157] = 4, + [128215] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, STATE(3526), 1, sym_comment, - ACTIONS(6887), 35, + ACTIONS(6858), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320040,7 +320093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128204] = 14, + [128262] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320049,34 +320102,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6897), 1, anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_async, STATE(3527), 1, sym_comment, - STATE(4777), 1, + STATE(4669), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6891), 2, + ACTIONS(6899), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -320093,99 +320145,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128271] = 13, + [128327] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - anon_sym_STAR, STATE(3528), 1, sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6874), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6901), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, 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, - [128336] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - anon_sym_STAR, - ACTIONS(6870), 1, anon_sym_async, - STATE(3529), 1, - sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6874), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -320198,22 +320187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128403] = 6, + anon_sym_abstract, + [128374] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3530), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6741), 2, + ACTIONS(6763), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2452), 29, + ACTIONS(2482), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320243,22 +320233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128454] = 6, + [128425] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3531), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6741), 2, + ACTIONS(6763), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(985), 4, + ACTIONS(1035), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2454), 29, + ACTIONS(2486), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320288,66 +320278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128505] = 13, + [128476] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_STAR, - STATE(3532), 1, - sym_comment, - STATE(4769), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6905), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 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, - [128570] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3533), 1, + STATE(3531), 1, sym_comment, - ACTIONS(6880), 35, + ACTIONS(6903), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320383,7 +320321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128617] = 13, + [128523] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320392,33 +320330,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6907), 1, + ACTIONS(6897), 1, anon_sym_STAR, - STATE(3534), 1, + ACTIONS(6905), 1, + anon_sym_async, + STATE(3532), 1, sym_comment, - STATE(4667), 1, + STATE(4669), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6909), 2, + ACTIONS(6899), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -320435,7 +320374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128682] = 14, + [128590] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320444,26 +320383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6903), 1, + ACTIONS(6907), 1, anon_sym_STAR, - ACTIONS(6911), 1, + ACTIONS(6909), 1, anon_sym_async, - STATE(3535), 1, + STATE(3533), 1, sym_comment, - STATE(4769), 1, + STATE(4698), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6905), 2, + ACTIONS(6911), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -320488,7 +320427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128749] = 11, + [128657] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320497,72 +320436,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3536), 1, + ACTIONS(6907), 1, + anon_sym_STAR, + STATE(3534), 1, sym_comment, - STATE(4728), 1, + STATE(4698), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_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(6911), 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, - [128809] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3537), 1, - sym_comment, - STATE(4794), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320572,8 +320467,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, @@ -320586,7 +320479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128869] = 11, + [128722] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320595,23 +320488,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3538), 1, + ACTIONS(6913), 1, + anon_sym_STAR, + STATE(3535), 1, sym_comment, - STATE(4767), 1, + STATE(4773), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(6915), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320621,8 +320519,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, @@ -320635,39 +320531,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128929] = 11, + [128787] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3539), 1, + STATE(3536), 1, sym_comment, - STATE(4741), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(6903), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -320684,39 +320573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128989] = 11, + anon_sym_abstract, + [128834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3540), 1, + STATE(3537), 1, sym_comment, - STATE(4836), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(6917), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -320733,7 +320616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129049] = 11, + anon_sym_abstract, + [128881] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320742,19 +320626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3541), 1, + STATE(3538), 1, sym_comment, - STATE(4827), 1, + STATE(4821), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -320782,64 +320666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129109] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5838), 1, - anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_async, - ACTIONS(6913), 1, - anon_sym_static, - ACTIONS(6915), 1, - anon_sym_readonly, - ACTIONS(6917), 1, - anon_sym_declare, - ACTIONS(6919), 1, - anon_sym_abstract, - STATE(3542), 1, - sym_comment, - STATE(3617), 1, - sym_override_modifier, - STATE(3904), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5846), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 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, - [129185] = 11, + [128941] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320848,19 +320675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3543), 1, + STATE(3539), 1, sym_comment, - STATE(4710), 1, + STATE(4686), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -320888,7 +320715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129245] = 19, + [129001] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320897,38 +320724,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6237), 1, + ACTIONS(5779), 1, anon_sym_STAR, - ACTIONS(6239), 1, + ACTIONS(5783), 1, anon_sym_async, - ACTIONS(6921), 1, + ACTIONS(6919), 1, anon_sym_static, - ACTIONS(6923), 1, + ACTIONS(6921), 1, anon_sym_readonly, - ACTIONS(6925), 1, + ACTIONS(6923), 1, anon_sym_declare, - ACTIONS(6927), 1, + ACTIONS(6925), 1, anon_sym_abstract, - STATE(3544), 1, + STATE(3540), 1, sym_comment, - STATE(3633), 1, + STATE(3626), 1, sym_override_modifier, - STATE(3927), 1, + STATE(3929), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6243), 2, + ACTIONS(5787), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 16, + ACTIONS(4498), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320945,7 +320772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129321] = 11, + [129077] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320954,19 +320781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3545), 1, + STATE(3541), 1, sym_comment, - STATE(4667), 1, + STATE(4830), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -320994,7 +320821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129381] = 11, + [129137] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321003,19 +320830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3546), 1, + STATE(3542), 1, sym_comment, - STATE(4712), 1, + STATE(4689), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321043,7 +320870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129441] = 11, + [129197] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321052,19 +320879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3547), 1, + STATE(3543), 1, sym_comment, - STATE(4769), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321092,7 +320919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129501] = 11, + [129257] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321101,19 +320928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3548), 1, + STATE(3544), 1, sym_comment, - STATE(4779), 1, + STATE(4698), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321141,34 +320968,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129561] = 7, + [129317] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6929), 1, - anon_sym_LPAREN, - ACTIONS(6931), 1, - anon_sym_DOT, - STATE(3549), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3545), 1, sym_comment, - STATE(3668), 1, - sym_arguments, - ACTIONS(4346), 31, + STATE(4768), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129377] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3546), 1, + sym_comment, + STATE(4782), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129437] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3547), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321185,8 +321115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [129613] = 11, + [129497] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321195,19 +321124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3550), 1, + STATE(3548), 1, sym_comment, - STATE(4669), 1, + STATE(4807), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321235,7 +321164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129673] = 11, + [129557] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321244,19 +321173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3549), 1, sym_comment, - STATE(4711), 1, + STATE(4674), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321284,7 +321213,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129733] = 11, + [129617] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6095), 1, + anon_sym_async, + ACTIONS(6927), 1, + anon_sym_static, + ACTIONS(6929), 1, + anon_sym_readonly, + ACTIONS(6931), 1, + anon_sym_declare, + ACTIONS(6933), 1, + anon_sym_abstract, + STATE(3550), 1, + sym_comment, + STATE(3629), 1, + sym_override_modifier, + STATE(3924), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6097), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4498), 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, + [129693] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321293,19 +321279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3552), 1, + STATE(3551), 1, sym_comment, - STATE(4804), 1, + STATE(4673), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321333,7 +321319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129793] = 11, + [129753] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321342,19 +321328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3553), 1, + STATE(3552), 1, sym_comment, - STATE(4777), 1, + STATE(4829), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321382,7 +321368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129853] = 11, + [129813] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321391,19 +321377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3554), 1, + STATE(3553), 1, sym_comment, - STATE(4684), 1, + STATE(4813), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321431,7 +321417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129913] = 11, + [129873] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321440,19 +321426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3555), 1, + STATE(3554), 1, sym_comment, - STATE(4805), 1, + STATE(4777), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321480,7 +321466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129973] = 11, + [129933] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321489,19 +321475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3556), 1, + STATE(3555), 1, sym_comment, - STATE(4745), 1, + STATE(4746), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321529,7 +321515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130033] = 11, + [129993] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321538,19 +321524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3557), 1, + STATE(3556), 1, sym_comment, - STATE(4718), 1, + STATE(4669), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321578,7 +321564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130093] = 11, + [130053] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321587,19 +321573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3558), 1, + STATE(3557), 1, sym_comment, - STATE(4742), 1, + STATE(4845), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321627,7 +321613,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130153] = 11, + [130113] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3558), 1, + sym_comment, + ACTIONS(4417), 34, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_LT, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [130159] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321636,19 +321664,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3559), 1, sym_comment, - STATE(4761), 1, + STATE(4740), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321676,7 +321704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130213] = 11, + [130219] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321685,19 +321713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3560), 1, sym_comment, - STATE(4689), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321725,7 +321753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130273] = 11, + [130279] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321734,19 +321762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3561), 1, sym_comment, - STATE(4713), 1, + STATE(4773), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321774,7 +321802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130333] = 11, + [130339] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321783,19 +321811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3562), 1, sym_comment, - STATE(4695), 1, + STATE(4696), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321823,7 +321851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130393] = 11, + [130399] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321832,19 +321860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3563), 1, sym_comment, - STATE(4734), 1, + STATE(4747), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321872,7 +321900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130453] = 11, + [130459] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321881,19 +321909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3564), 1, sym_comment, - STATE(4824), 1, + STATE(4828), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321921,7 +321949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130513] = 11, + [130519] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321930,19 +321958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, STATE(3565), 1, sym_comment, - STATE(4832), 1, + STATE(4713), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(985), 3, + ACTIONS(1035), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -321970,53 +321998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130573] = 17, + [130579] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_async, - ACTIONS(5051), 1, - anon_sym_readonly, - ACTIONS(6933), 1, - anon_sym_static, STATE(3566), 1, sym_comment, - STATE(3626), 1, - sym_override_modifier, - STATE(3950), 1, + STATE(4711), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5053), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 17, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -322024,7 +322047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130644] = 12, + [130639] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322033,22 +322056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6935), 1, - anon_sym_RBRACE, STATE(3567), 1, sym_comment, - STATE(5446), 1, + STATE(4721), 1, sym__property_name, - STATE(6548), 1, - sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2989), 23, anon_sym_export, anon_sym_type, @@ -322073,41 +322096,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130705] = 6, + [130699] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6937), 1, - anon_sym_AT, - STATE(3652), 1, - sym_decorator, - STATE(3568), 2, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6725), 1, + anon_sym_readonly, + ACTIONS(6935), 1, + anon_sym_STAR, + STATE(3568), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4356), 30, + STATE(3634), 1, + sym_override_modifier, + STATE(3906), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6937), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4498), 19, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -322115,8 +322148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [130754] = 12, + [130766] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322125,20 +322157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6940), 1, + ACTIONS(6939), 1, anon_sym_RBRACE, STATE(3569), 1, sym_comment, - STATE(5304), 1, + STATE(5449), 1, sym__property_name, - STATE(6133), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -322165,54 +322197,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130815] = 24, + [130827] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2752), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2923), 1, anon_sym_namespace, - ACTIONS(2758), 1, + ACTIONS(2925), 1, anon_sym_import, - ACTIONS(2760), 1, + ACTIONS(2927), 1, anon_sym_var, - ACTIONS(2762), 1, + ACTIONS(2929), 1, anon_sym_let, - ACTIONS(2764), 1, + ACTIONS(2931), 1, anon_sym_const, - ACTIONS(2772), 1, + ACTIONS(2935), 1, anon_sym_class, - ACTIONS(2774), 1, + ACTIONS(2937), 1, anon_sym_async, - ACTIONS(2776), 1, + ACTIONS(2939), 1, anon_sym_function, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2789), 1, + ACTIONS(2941), 1, anon_sym_declare, - ACTIONS(2791), 1, + ACTIONS(2943), 1, anon_sym_module, - ACTIONS(2793), 1, + ACTIONS(2945), 1, anon_sym_abstract, - ACTIONS(2795), 1, + ACTIONS(2947), 1, anon_sym_interface, - ACTIONS(2797), 1, + ACTIONS(2949), 1, anon_sym_enum, - ACTIONS(2827), 1, + ACTIONS(3005), 1, anon_sym_type, - ACTIONS(6942), 1, + ACTIONS(6941), 1, anon_sym_default, - STATE(1507), 1, + STATE(1350), 1, sym_internal_module, - STATE(1538), 1, + STATE(1381), 1, sym_declaration, STATE(3570), 1, sym_comment, - STATE(4857), 1, + STATE(4862), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(1580), 13, + STATE(1344), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -322226,38 +322258,93 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [130900] = 15, + [130912] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(3025), 1, + anon_sym_type, + ACTIONS(3027), 1, + anon_sym_namespace, + ACTIONS(3029), 1, + anon_sym_import, + ACTIONS(3031), 1, + anon_sym_var, + ACTIONS(3033), 1, + anon_sym_let, + ACTIONS(3035), 1, + anon_sym_const, + ACTIONS(3037), 1, + anon_sym_class, + ACTIONS(3039), 1, + anon_sym_async, + ACTIONS(3041), 1, + anon_sym_function, + ACTIONS(3043), 1, + anon_sym_declare, + ACTIONS(3047), 1, + anon_sym_abstract, + ACTIONS(3051), 1, + anon_sym_interface, + ACTIONS(3053), 1, + anon_sym_enum, + ACTIONS(4644), 1, + anon_sym_module, + ACTIONS(6943), 1, + anon_sym_default, + STATE(3571), 1, + sym_comment, + STATE(4889), 1, + aux_sym_export_statement_repeat1, + STATE(4985), 1, + sym_declaration, + STATE(4995), 1, + sym_internal_module, + STATE(5599), 1, + sym_decorator, + STATE(4988), 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, + [130997] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_static, - ACTIONS(6254), 1, - anon_sym_readonly, - ACTIONS(6256), 1, - anon_sym_abstract, - STATE(3571), 1, + ACTIONS(6945), 1, + anon_sym_RBRACE, + STATE(3572), 1, sym_comment, - STATE(3674), 1, - sym_override_modifier, - STATE(4171), 1, + STATE(5449), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 20, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322265,12 +322352,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, @@ -322278,54 +322368,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130967] = 24, + [131058] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2923), 1, + ACTIONS(2961), 1, anon_sym_namespace, - ACTIONS(2925), 1, + ACTIONS(2963), 1, anon_sym_import, - ACTIONS(2927), 1, + ACTIONS(2965), 1, anon_sym_var, - ACTIONS(2929), 1, + ACTIONS(2967), 1, anon_sym_let, - ACTIONS(2931), 1, + ACTIONS(2969), 1, anon_sym_const, - ACTIONS(2935), 1, + ACTIONS(2973), 1, anon_sym_class, - ACTIONS(2937), 1, + ACTIONS(2975), 1, anon_sym_async, - ACTIONS(2939), 1, + ACTIONS(2977), 1, anon_sym_function, - ACTIONS(2941), 1, + ACTIONS(2979), 1, anon_sym_declare, - ACTIONS(2943), 1, + ACTIONS(2981), 1, anon_sym_module, - ACTIONS(2945), 1, + ACTIONS(2983), 1, anon_sym_abstract, - ACTIONS(2947), 1, + ACTIONS(2985), 1, anon_sym_interface, - ACTIONS(2949), 1, + ACTIONS(2987), 1, anon_sym_enum, - ACTIONS(3005), 1, + ACTIONS(2999), 1, anon_sym_type, - ACTIONS(6944), 1, + ACTIONS(6947), 1, anon_sym_default, - STATE(3572), 1, + STATE(3573), 1, sym_comment, - STATE(5027), 1, + STATE(5028), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6331), 1, + STATE(6333), 1, sym_internal_module, - STATE(6422), 1, + STATE(6441), 1, sym_declaration, - STATE(6327), 13, + STATE(6330), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -322339,54 +322429,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131052] = 24, + [131143] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2885), 1, + ACTIONS(2752), 1, anon_sym_namespace, - ACTIONS(2887), 1, + ACTIONS(2758), 1, anon_sym_import, - ACTIONS(2889), 1, + ACTIONS(2760), 1, anon_sym_var, - ACTIONS(2891), 1, + ACTIONS(2762), 1, anon_sym_let, - ACTIONS(2893), 1, + ACTIONS(2764), 1, anon_sym_const, - ACTIONS(2897), 1, + ACTIONS(2772), 1, anon_sym_class, - ACTIONS(2899), 1, + ACTIONS(2774), 1, anon_sym_async, - ACTIONS(2901), 1, + ACTIONS(2776), 1, anon_sym_function, - ACTIONS(2903), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2789), 1, anon_sym_declare, - ACTIONS(2905), 1, + ACTIONS(2791), 1, anon_sym_module, - ACTIONS(2907), 1, + ACTIONS(2793), 1, anon_sym_abstract, - ACTIONS(2909), 1, + ACTIONS(2795), 1, anon_sym_interface, - ACTIONS(2911), 1, + ACTIONS(2797), 1, anon_sym_enum, - ACTIONS(3011), 1, + ACTIONS(2827), 1, anon_sym_type, - ACTIONS(6946), 1, + ACTIONS(6949), 1, anon_sym_default, - STATE(1402), 1, + STATE(1583), 1, sym_declaration, - STATE(1477), 1, + STATE(1584), 1, sym_internal_module, - STATE(3573), 1, + STATE(3574), 1, sym_comment, - STATE(4898), 1, + STATE(4853), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(1468), 13, + STATE(1618), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -322400,7 +322490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131137] = 15, + [131228] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322409,75 +322499,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, + ACTIONS(6951), 1, anon_sym_static, - ACTIONS(6950), 1, + ACTIONS(6953), 1, anon_sym_readonly, - ACTIONS(6952), 1, + ACTIONS(6955), 1, anon_sym_abstract, - STATE(3574), 1, + STATE(3575), 1, sym_comment, - STATE(3643), 1, + STATE(3649), 1, sym_override_modifier, - STATE(4194), 1, + STATE(4234), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 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, - [131204] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6954), 1, - anon_sym_RBRACE, - STATE(3575), 1, - sym_comment, - STATE(4868), 1, - sym__property_name, - STATE(5662), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -322485,15 +322529,12 @@ 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, @@ -322501,7 +322542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131265] = 12, + [131295] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322510,69 +322551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6956), 1, + ACTIONS(6957), 1, anon_sym_RBRACE, STATE(3576), 1, sym_comment, - STATE(5446), 1, - sym__property_name, - STATE(6548), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [131326] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6958), 1, - anon_sym_RBRACE, - STATE(3577), 1, - sym_comment, - STATE(5446), 1, + STATE(4867), 1, sym__property_name, - STATE(6548), 1, + STATE(5663), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -322599,7 +322591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131387] = 24, + [131356] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -322636,17 +322628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, ACTIONS(3009), 1, anon_sym_global, - STATE(3578), 1, + STATE(1350), 1, + sym_internal_module, + STATE(1362), 1, + sym_declaration, + STATE(3577), 1, sym_comment, - STATE(5027), 1, + STATE(4862), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(6331), 1, - sym_internal_module, - STATE(6341), 1, - sym_declaration, - STATE(6327), 13, + STATE(1344), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -322660,7 +322652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131472] = 12, + [131441] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322669,20 +322661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6960), 1, + ACTIONS(6959), 1, anon_sym_RBRACE, - STATE(3579), 1, + STATE(3578), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -322709,22 +322701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131533] = 4, + [131502] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3580), 1, + ACTIONS(6961), 1, + anon_sym_AT, + STATE(3678), 1, + sym_decorator, + STATE(3579), 2, sym_comment, - ACTIONS(4395), 33, + aux_sym_export_statement_repeat1, + ACTIONS(4380), 30, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, @@ -322732,7 +322727,6 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -322750,68 +322744,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [131578] = 24, + [131551] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3025), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6964), 1, + anon_sym_RBRACE, + STATE(3580), 1, + sym_comment, + STATE(5449), 1, + sym__property_name, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, + anon_sym_export, anon_sym_type, - ACTIONS(3027), 1, anon_sym_namespace, - ACTIONS(3029), 1, - anon_sym_import, - ACTIONS(3031), 1, - anon_sym_var, - ACTIONS(3033), 1, anon_sym_let, - ACTIONS(3035), 1, - anon_sym_const, - ACTIONS(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(3045), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3049), 1, - anon_sym_global, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - STATE(3581), 1, - sym_comment, - STATE(4885), 1, - aux_sym_export_statement_repeat1, - STATE(4992), 1, - sym_declaration, - STATE(4993), 1, - sym_internal_module, - STATE(5596), 1, - sym_decorator, - STATE(5000), 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, - [131663] = 12, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131612] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322820,20 +322802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6962), 1, + ACTIONS(6966), 1, anon_sym_RBRACE, - STATE(3582), 1, + STATE(3581), 1, sym_comment, - STATE(5446), 1, + STATE(5115), 1, sym__property_name, - STATE(6548), 1, + STATE(5940), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -322860,7 +322842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131724] = 15, + [131673] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322869,38 +322851,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4522), 1, anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6743), 1, - anon_sym_readonly, - ACTIONS(6964), 1, + ACTIONS(6209), 1, anon_sym_STAR, - STATE(3583), 1, + ACTIONS(6211), 1, + anon_sym_async, + ACTIONS(6213), 1, + anon_sym_readonly, + ACTIONS(6968), 1, + anon_sym_static, + STATE(3582), 1, sym_comment, - STATE(3631), 1, + STATE(3632), 1, sym_override_modifier, - STATE(3905), 1, + STATE(3981), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6966), 2, + ACTIONS(6215), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 17, anon_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, @@ -322912,7 +322896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131791] = 12, + [131744] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322921,20 +322905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6968), 1, + ACTIONS(6970), 1, anon_sym_RBRACE, - STATE(3584), 1, + STATE(3583), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -322961,7 +322945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131852] = 12, + [131805] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322970,20 +322954,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6970), 1, + ACTIONS(6972), 1, anon_sym_RBRACE, - STATE(3585), 1, + STATE(3584), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323010,7 +322994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131913] = 12, + [131866] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323019,20 +323003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(6974), 1, anon_sym_RBRACE, - STATE(3586), 1, + STATE(3585), 1, sym_comment, - STATE(5446), 1, + STATE(5305), 1, sym__property_name, - STATE(6548), 1, + STATE(6139), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323059,7 +323043,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131974] = 12, + [131927] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2961), 1, + anon_sym_namespace, + ACTIONS(2963), 1, + anon_sym_import, + ACTIONS(2965), 1, + anon_sym_var, + ACTIONS(2967), 1, + anon_sym_let, + ACTIONS(2969), 1, + anon_sym_const, + ACTIONS(2973), 1, + anon_sym_class, + ACTIONS(2975), 1, + anon_sym_async, + ACTIONS(2977), 1, + anon_sym_function, + ACTIONS(2979), 1, + anon_sym_declare, + ACTIONS(2983), 1, + anon_sym_abstract, + ACTIONS(2985), 1, + anon_sym_interface, + ACTIONS(2987), 1, + anon_sym_enum, + ACTIONS(2999), 1, + anon_sym_type, + ACTIONS(3001), 1, + anon_sym_module, + ACTIONS(3003), 1, + anon_sym_global, + STATE(3586), 1, + sym_comment, + STATE(5028), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(6333), 1, + sym_internal_module, + STATE(6342), 1, + sym_declaration, + STATE(6330), 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, + [132012] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323068,20 +323113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(6976), 1, anon_sym_RBRACE, STATE(3587), 1, sym_comment, - STATE(5446), 1, + STATE(5348), 1, sym__property_name, - STATE(6548), 1, + STATE(6290), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323108,32 +323153,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132035] = 12, + [132073] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6976), 1, - anon_sym_RBRACE, + ACTIONS(6165), 1, + anon_sym_static, + ACTIONS(6167), 1, + anon_sym_readonly, + ACTIONS(6169), 1, + anon_sym_abstract, STATE(3588), 1, sym_comment, - STATE(5446), 1, + STATE(3661), 1, + sym_override_modifier, + STATE(4188), 1, sym__property_name, - STATE(6548), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -323141,15 +323192,12 @@ 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, @@ -323157,7 +323205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132096] = 12, + [132140] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323166,20 +323214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(6978), 1, anon_sym_RBRACE, STATE(3589), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323206,7 +323254,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132157] = 12, + [132201] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2881), 1, + anon_sym_namespace, + ACTIONS(2883), 1, + anon_sym_import, + ACTIONS(2885), 1, + anon_sym_var, + ACTIONS(2887), 1, + anon_sym_let, + ACTIONS(2889), 1, + anon_sym_const, + ACTIONS(2893), 1, + anon_sym_class, + ACTIONS(2895), 1, + anon_sym_async, + ACTIONS(2897), 1, + anon_sym_function, + ACTIONS(2899), 1, + anon_sym_declare, + ACTIONS(2901), 1, + anon_sym_module, + ACTIONS(2903), 1, + anon_sym_abstract, + ACTIONS(2905), 1, + anon_sym_interface, + ACTIONS(2907), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_type, + ACTIONS(6980), 1, + anon_sym_default, + STATE(1357), 1, + sym_internal_module, + STATE(1402), 1, + sym_declaration, + STATE(3590), 1, + sym_comment, + STATE(4902), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(1331), 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, + [132286] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323215,20 +323324,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6980), 1, + ACTIONS(6982), 1, anon_sym_RBRACE, - STATE(3590), 1, + STATE(3591), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323255,53 +323364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132218] = 17, + [132347] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6221), 1, - anon_sym_STAR, - ACTIONS(6223), 1, - anon_sym_async, - ACTIONS(6225), 1, - anon_sym_readonly, - ACTIONS(6982), 1, - anon_sym_static, - STATE(3591), 1, + ACTIONS(6984), 1, + anon_sym_RBRACE, + STATE(3592), 1, sym_comment, - STATE(3620), 1, - sym_override_modifier, - STATE(3964), 1, + STATE(5449), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6227), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 17, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -323309,68 +323413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132289] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2961), 1, - anon_sym_namespace, - ACTIONS(2963), 1, - anon_sym_import, - ACTIONS(2965), 1, - anon_sym_var, - ACTIONS(2967), 1, - anon_sym_let, - ACTIONS(2969), 1, - anon_sym_const, - ACTIONS(2973), 1, - anon_sym_class, - ACTIONS(2975), 1, - anon_sym_async, - ACTIONS(2977), 1, - anon_sym_function, - ACTIONS(2979), 1, - anon_sym_declare, - ACTIONS(2983), 1, - anon_sym_abstract, - ACTIONS(2985), 1, - anon_sym_interface, - ACTIONS(2987), 1, - anon_sym_enum, - ACTIONS(2999), 1, - anon_sym_type, - ACTIONS(3001), 1, - anon_sym_module, - ACTIONS(3003), 1, - anon_sym_global, - STATE(1199), 1, - sym_internal_module, - STATE(1210), 1, - sym_declaration, - STATE(3592), 1, - sym_comment, - STATE(4855), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(1197), 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, - [132374] = 17, + [132408] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323379,44 +323422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_STAR, - ACTIONS(6984), 1, - anon_sym_static, + ACTIONS(6986), 1, + anon_sym_RBRACE, STATE(3593), 1, sym_comment, - STATE(3632), 1, - sym_override_modifier, - STATE(4672), 1, + STATE(5449), 1, sym__property_name, + STATE(6552), 1, + sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 17, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -323424,7 +323462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132445] = 12, + [132469] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323433,20 +323471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6986), 1, + ACTIONS(6988), 1, anon_sym_RBRACE, STATE(3594), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323473,68 +323511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132506] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2885), 1, - anon_sym_namespace, - ACTIONS(2887), 1, - anon_sym_import, - ACTIONS(2889), 1, - anon_sym_var, - ACTIONS(2891), 1, - anon_sym_let, - ACTIONS(2893), 1, - anon_sym_const, - ACTIONS(2897), 1, - anon_sym_class, - ACTIONS(2899), 1, - anon_sym_async, - ACTIONS(2901), 1, - anon_sym_function, - ACTIONS(2903), 1, - anon_sym_declare, - ACTIONS(2907), 1, - anon_sym_abstract, - ACTIONS(2909), 1, - anon_sym_interface, - ACTIONS(2911), 1, - anon_sym_enum, - ACTIONS(3011), 1, - anon_sym_type, - ACTIONS(3013), 1, - anon_sym_module, - ACTIONS(3015), 1, - anon_sym_global, - STATE(1477), 1, - sym_internal_module, - STATE(1483), 1, - sym_declaration, - STATE(3595), 1, - sym_comment, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - STATE(1468), 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, - [132591] = 12, + [132530] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323543,20 +323520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6988), 1, + ACTIONS(6990), 1, anon_sym_RBRACE, - STATE(3596), 1, + STATE(3595), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323583,115 +323560,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132652] = 24, + [132591] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3025), 1, - anon_sym_type, - ACTIONS(3027), 1, + ACTIONS(2752), 1, anon_sym_namespace, - ACTIONS(3029), 1, + ACTIONS(2758), 1, anon_sym_import, - ACTIONS(3031), 1, + ACTIONS(2760), 1, anon_sym_var, - ACTIONS(3033), 1, + ACTIONS(2762), 1, anon_sym_let, - ACTIONS(3035), 1, + ACTIONS(2764), 1, anon_sym_const, - ACTIONS(3037), 1, + ACTIONS(2772), 1, anon_sym_class, - ACTIONS(3039), 1, + ACTIONS(2774), 1, anon_sym_async, - ACTIONS(3041), 1, + ACTIONS(2776), 1, anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4642), 1, - anon_sym_module, - ACTIONS(6990), 1, - anon_sym_default, - STATE(3597), 1, - sym_comment, - STATE(4885), 1, - aux_sym_export_statement_repeat1, - STATE(4983), 1, - sym_declaration, - STATE(4993), 1, - sym_internal_module, - STATE(5596), 1, - sym_decorator, - STATE(5000), 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, - [132737] = 24, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2961), 1, - anon_sym_namespace, - ACTIONS(2963), 1, - anon_sym_import, - ACTIONS(2965), 1, - anon_sym_var, - ACTIONS(2967), 1, - anon_sym_let, - ACTIONS(2969), 1, - anon_sym_const, - ACTIONS(2973), 1, - anon_sym_class, - ACTIONS(2975), 1, - anon_sym_async, - ACTIONS(2977), 1, - anon_sym_function, - ACTIONS(2979), 1, + ACTIONS(2789), 1, anon_sym_declare, - ACTIONS(2981), 1, - anon_sym_module, - ACTIONS(2983), 1, + ACTIONS(2793), 1, anon_sym_abstract, - ACTIONS(2985), 1, + ACTIONS(2795), 1, anon_sym_interface, - ACTIONS(2987), 1, + ACTIONS(2797), 1, anon_sym_enum, - ACTIONS(2999), 1, + ACTIONS(2827), 1, anon_sym_type, - ACTIONS(6992), 1, - anon_sym_default, - STATE(1085), 1, + ACTIONS(2829), 1, + anon_sym_module, + ACTIONS(2831), 1, + anon_sym_global, + STATE(1556), 1, sym_declaration, - STATE(1199), 1, + STATE(1584), 1, sym_internal_module, - STATE(3598), 1, + STATE(3596), 1, sym_comment, - STATE(4855), 1, + STATE(4853), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(1197), 13, + STATE(1618), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323705,7 +323621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132822] = 12, + [132676] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323714,20 +323630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6994), 1, + ACTIONS(6992), 1, anon_sym_RBRACE, - STATE(3599), 1, + STATE(3597), 1, sym_comment, - STATE(5113), 1, + STATE(5065), 1, sym__property_name, - STATE(5939), 1, + STATE(5888), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323754,54 +323670,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132883] = 24, + [132737] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2843), 1, + ACTIONS(2881), 1, anon_sym_namespace, - ACTIONS(2845), 1, + ACTIONS(2883), 1, anon_sym_import, - ACTIONS(2847), 1, + ACTIONS(2885), 1, anon_sym_var, - ACTIONS(2849), 1, + ACTIONS(2887), 1, anon_sym_let, - ACTIONS(2851), 1, + ACTIONS(2889), 1, anon_sym_const, - ACTIONS(2855), 1, + ACTIONS(2893), 1, anon_sym_class, - ACTIONS(2857), 1, + ACTIONS(2895), 1, anon_sym_async, - ACTIONS(2859), 1, + ACTIONS(2897), 1, anon_sym_function, - ACTIONS(2861), 1, + ACTIONS(2899), 1, anon_sym_declare, - ACTIONS(2863), 1, - anon_sym_module, - ACTIONS(2865), 1, + ACTIONS(2903), 1, anon_sym_abstract, - ACTIONS(2867), 1, + ACTIONS(2905), 1, anon_sym_interface, - ACTIONS(2869), 1, + ACTIONS(2907), 1, anon_sym_enum, ACTIONS(3017), 1, anon_sym_type, - ACTIONS(6996), 1, - anon_sym_default, - STATE(1374), 1, - sym_declaration, - STATE(1445), 1, + ACTIONS(3019), 1, + anon_sym_module, + ACTIONS(3021), 1, + anon_sym_global, + STATE(1357), 1, sym_internal_module, - STATE(3600), 1, + STATE(1472), 1, + sym_declaration, + STATE(3598), 1, sym_comment, - STATE(4860), 1, + STATE(4902), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(1450), 13, + STATE(1331), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -323815,7 +323731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132968] = 12, + [132822] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323824,20 +323740,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6998), 1, + ACTIONS(6103), 1, + anon_sym_STAR, + ACTIONS(6994), 1, + anon_sym_static, + STATE(3599), 1, + sym_comment, + STATE(3627), 1, + sym_override_modifier, + STATE(4691), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 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, + [132893] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, anon_sym_RBRACE, - STATE(3601), 1, + STATE(3600), 1, sym_comment, - STATE(5066), 1, + STATE(5449), 1, sym__property_name, - STATE(5882), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323864,7 +323834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133029] = 12, + [132954] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323873,20 +323843,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7000), 1, + ACTIONS(6998), 1, anon_sym_RBRACE, - STATE(3602), 1, + STATE(3601), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323913,7 +323883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133090] = 12, + [133015] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323922,20 +323892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7000), 1, anon_sym_RBRACE, - STATE(3603), 1, + STATE(3602), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -323962,54 +323932,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133151] = 24, + [133076] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2843), 1, + ACTIONS(3025), 1, + anon_sym_type, + ACTIONS(3027), 1, anon_sym_namespace, - ACTIONS(2845), 1, + ACTIONS(3029), 1, anon_sym_import, - ACTIONS(2847), 1, + ACTIONS(3031), 1, anon_sym_var, - ACTIONS(2849), 1, + ACTIONS(3033), 1, anon_sym_let, - ACTIONS(2851), 1, + ACTIONS(3035), 1, anon_sym_const, - ACTIONS(2855), 1, + ACTIONS(3037), 1, anon_sym_class, - ACTIONS(2857), 1, + ACTIONS(3039), 1, anon_sym_async, - ACTIONS(2859), 1, + ACTIONS(3041), 1, anon_sym_function, - ACTIONS(2861), 1, + ACTIONS(3043), 1, anon_sym_declare, - ACTIONS(2865), 1, + ACTIONS(3045), 1, + anon_sym_module, + ACTIONS(3047), 1, anon_sym_abstract, - ACTIONS(2867), 1, + ACTIONS(3049), 1, + anon_sym_global, + ACTIONS(3051), 1, anon_sym_interface, - ACTIONS(2869), 1, + ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(3017), 1, - anon_sym_type, - ACTIONS(3019), 1, - anon_sym_module, - ACTIONS(3021), 1, - anon_sym_global, - STATE(1432), 1, - sym_declaration, - STATE(1445), 1, - sym_internal_module, - STATE(3604), 1, + STATE(3603), 1, sym_comment, - STATE(4860), 1, + STATE(4889), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(4992), 1, + sym_declaration, + STATE(4995), 1, + sym_internal_module, + STATE(5599), 1, sym_decorator, - STATE(1450), 13, + STATE(4988), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -324023,7 +323993,56 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [133236] = 12, + [133161] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(7002), 1, + anon_sym_RBRACE, + STATE(3604), 1, + sym_comment, + STATE(5449), 1, + sym__property_name, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133222] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324032,20 +324051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7004), 1, anon_sym_RBRACE, STATE(3605), 1, sym_comment, - STATE(5197), 1, + STATE(5449), 1, sym__property_name, - STATE(6049), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324072,7 +324091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133297] = 12, + [133283] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324081,20 +324100,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7006), 1, anon_sym_RBRACE, STATE(3606), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324121,39 +324140,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133358] = 15, + [133344] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, - anon_sym_override, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7008), 1, - anon_sym_STAR, - ACTIONS(7010), 1, - anon_sym_readonly, + anon_sym_RBRACE, STATE(3607), 1, sym_comment, - STATE(3635), 1, - sym_override_modifier, - STATE(3911), 1, + STATE(5449), 1, sym__property_name, - ACTIONS(3995), 2, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(7012), 2, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_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(4102), 2, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133405] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(7010), 1, + anon_sym_RBRACE, + STATE(3608), 1, + sym_comment, + STATE(5449), 1, + sym__property_name, + STATE(6552), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324162,10 +324223,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, @@ -324173,7 +324238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133425] = 12, + [133466] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324182,20 +324247,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7014), 1, + ACTIONS(7012), 1, anon_sym_RBRACE, - STATE(3608), 1, + STATE(3609), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324222,48 +324287,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133486] = 12, + [133527] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5089), 1, + anon_sym_STAR, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7016), 1, - anon_sym_RBRACE, - STATE(3609), 1, + ACTIONS(5101), 1, + anon_sym_async, + ACTIONS(5103), 1, + anon_sym_readonly, + ACTIONS(7014), 1, + anon_sym_static, + STATE(3610), 1, sym_comment, - STATE(5346), 1, + STATE(3631), 1, + sym_override_modifier, + STATE(3959), 1, sym__property_name, - STATE(6284), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(5105), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -324271,54 +324341,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133547] = 24, + [133598] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2752), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2843), 1, anon_sym_namespace, - ACTIONS(2758), 1, + ACTIONS(2845), 1, anon_sym_import, - ACTIONS(2760), 1, + ACTIONS(2847), 1, anon_sym_var, - ACTIONS(2762), 1, + ACTIONS(2849), 1, anon_sym_let, - ACTIONS(2764), 1, + ACTIONS(2851), 1, anon_sym_const, - ACTIONS(2772), 1, + ACTIONS(2855), 1, anon_sym_class, - ACTIONS(2774), 1, + ACTIONS(2857), 1, anon_sym_async, - ACTIONS(2776), 1, + ACTIONS(2859), 1, anon_sym_function, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2789), 1, + ACTIONS(2861), 1, anon_sym_declare, - ACTIONS(2793), 1, + ACTIONS(2863), 1, + anon_sym_module, + ACTIONS(2865), 1, anon_sym_abstract, - ACTIONS(2795), 1, + ACTIONS(2867), 1, anon_sym_interface, - ACTIONS(2797), 1, + ACTIONS(2869), 1, anon_sym_enum, - ACTIONS(2827), 1, + ACTIONS(3011), 1, anon_sym_type, - ACTIONS(2829), 1, - anon_sym_module, - ACTIONS(2831), 1, - anon_sym_global, - STATE(1507), 1, - sym_internal_module, - STATE(1545), 1, + ACTIONS(7016), 1, + anon_sym_default, + STATE(1179), 1, sym_declaration, - STATE(3610), 1, + STATE(1205), 1, + sym_internal_module, + STATE(3611), 1, sym_comment, - STATE(4857), 1, + STATE(4852), 1, aux_sym_export_statement_repeat1, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - STATE(1580), 13, + STATE(1204), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -324332,7 +324402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [133632] = 12, + [133683] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324341,20 +324411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7018), 1, anon_sym_RBRACE, - STATE(3611), 1, + STATE(3612), 1, sym_comment, - STATE(5446), 1, + STATE(5202), 1, sym__property_name, - STATE(6548), 1, + STATE(6053), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324381,7 +324451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133693] = 12, + [133744] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324390,20 +324460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7020), 1, anon_sym_RBRACE, - STATE(3612), 1, + STATE(3613), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324430,7 +324500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133754] = 12, + [133805] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324439,20 +324509,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, ACTIONS(7022), 1, anon_sym_RBRACE, - STATE(3613), 1, + STATE(3614), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324479,32 +324549,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133815] = 12, + [133866] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_namespace, + ACTIONS(2845), 1, + anon_sym_import, + ACTIONS(2847), 1, + anon_sym_var, + ACTIONS(2849), 1, + anon_sym_let, + ACTIONS(2851), 1, + anon_sym_const, + ACTIONS(2855), 1, + anon_sym_class, + ACTIONS(2857), 1, + anon_sym_async, + ACTIONS(2859), 1, + anon_sym_function, + ACTIONS(2861), 1, + anon_sym_declare, + ACTIONS(2865), 1, + anon_sym_abstract, + ACTIONS(2867), 1, + anon_sym_interface, + ACTIONS(2869), 1, + anon_sym_enum, + ACTIONS(3011), 1, + anon_sym_type, + ACTIONS(3013), 1, + anon_sym_module, + ACTIONS(3015), 1, + anon_sym_global, + STATE(1120), 1, + sym_declaration, + STATE(1205), 1, + sym_internal_module, + STATE(3615), 1, + sym_comment, + STATE(4852), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + STATE(1204), 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, + [133951] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(4522), 1, + anon_sym_override, + ACTIONS(5099), 1, anon_sym_LBRACK, ACTIONS(7024), 1, - anon_sym_RBRACE, - STATE(3614), 1, + anon_sym_STAR, + ACTIONS(7026), 1, + anon_sym_readonly, + STATE(3616), 1, sym_comment, - STATE(5446), 1, + STATE(3618), 1, + sym_override_modifier, + STATE(3930), 1, sym__property_name, - STATE(6548), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(7028), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324513,14 +324651,10 @@ 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, @@ -324528,7 +324662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133876] = 12, + [134018] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324537,20 +324671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7026), 1, + ACTIONS(7030), 1, anon_sym_RBRACE, - STATE(3615), 1, + STATE(3617), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324577,7 +324711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133937] = 12, + [134079] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324586,23 +324720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7028), 1, - anon_sym_RBRACE, - STATE(3616), 1, + ACTIONS(6935), 1, + anon_sym_STAR, + STATE(3618), 1, sym_comment, - STATE(5446), 1, + STATE(4697), 1, sym__property_name, - STATE(6548), 1, - sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + ACTIONS(7032), 2, + anon_sym_get, + anon_sym_set, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324612,8 +324747,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, @@ -324626,7 +324759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133998] = 14, + [134139] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324635,28 +324768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, + ACTIONS(6115), 1, anon_sym_STAR, - ACTIONS(6260), 1, + ACTIONS(6117), 1, anon_sym_async, - ACTIONS(6266), 1, + ACTIONS(7034), 1, anon_sym_readonly, - STATE(3617), 1, + STATE(3619), 1, sym_comment, - STATE(3902), 1, + STATE(3916), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6262), 2, + ACTIONS(6119), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324676,48 +324809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134062] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3618), 1, - sym_comment, - ACTIONS(985), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2452), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134108] = 14, + [134203] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324726,28 +324818,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(5779), 1, anon_sym_STAR, - ACTIONS(6591), 1, + ACTIONS(5783), 1, anon_sym_async, - ACTIONS(7030), 1, + ACTIONS(5785), 1, anon_sym_readonly, - STATE(3619), 1, + STATE(3620), 1, sym_comment, - STATE(3998), 1, + STATE(3929), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6593), 2, + ACTIONS(5787), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324767,7 +324859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134172] = 14, + [134267] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324776,28 +324868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6122), 1, + ACTIONS(6462), 1, anon_sym_STAR, - ACTIONS(6124), 1, + ACTIONS(6464), 1, anon_sym_async, - ACTIONS(6126), 1, + ACTIONS(7036), 1, anon_sym_readonly, - STATE(3620), 1, + STATE(3621), 1, sym_comment, - STATE(3978), 1, + STATE(3983), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6128), 2, + ACTIONS(6466), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324817,37 +324909,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134236] = 14, + [134331] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, ACTIONS(6093), 1, anon_sym_STAR, - STATE(3621), 1, + ACTIONS(6095), 1, + anon_sym_async, + ACTIONS(7038), 1, + anon_sym_readonly, + STATE(3622), 1, sym_comment, - STATE(4672), 1, + STATE(3934), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6097), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324867,37 +324959,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134300] = 14, + [134395] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6221), 1, + ACTIONS(6907), 1, anon_sym_STAR, - ACTIONS(6223), 1, + ACTIONS(6909), 1, anon_sym_async, - ACTIONS(6225), 1, + ACTIONS(7040), 1, anon_sym_readonly, - STATE(3622), 1, + STATE(3623), 1, sym_comment, - STATE(3964), 1, + STATE(4698), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6227), 2, + ACTIONS(6911), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(2989), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324917,7 +325009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134364] = 11, + [134459] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324926,18 +325018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3623), 1, + STATE(3624), 1, sym_comment, - STATE(5446), 1, + STATE(5449), 1, sym__property_name, - STATE(6548), 1, + STATE(6552), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -324964,7 +325056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134422] = 14, + [134517] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324973,25 +325065,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_STAR, - ACTIONS(6901), 1, + ACTIONS(2991), 1, anon_sym_async, - ACTIONS(7032), 1, + ACTIONS(2993), 1, anon_sym_readonly, - STATE(3624), 1, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6103), 1, + anon_sym_STAR, + STATE(3625), 1, sym_comment, - STATE(4777), 1, + STATE(4691), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6891), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 19, @@ -325014,7 +325106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134486] = 14, + [134581] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325023,35 +325115,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, + ACTIONS(6184), 1, anon_sym_STAR, - ACTIONS(6511), 1, + ACTIONS(6186), 1, anon_sym_async, - ACTIONS(7034), 1, + ACTIONS(6195), 1, anon_sym_readonly, - STATE(3625), 1, + STATE(3626), 1, sym_comment, - STATE(3984), 1, + STATE(3909), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6513), 2, + ACTIONS(6188), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4498), 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, + [134645] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_STAR, + ACTIONS(6867), 1, + anon_sym_async, + ACTIONS(6869), 1, + anon_sym_readonly, + STATE(3627), 1, + sym_comment, + STATE(4713), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6871), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(2989), 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, + [134709] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3628), 1, + sym_comment, + ACTIONS(1035), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2482), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325064,7 +325247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134550] = 14, + [134755] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325073,28 +325256,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6101), 1, + ACTIONS(6115), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6117), 1, anon_sym_async, - ACTIONS(6105), 1, + ACTIONS(7042), 1, anon_sym_readonly, - STATE(3626), 1, + STATE(3629), 1, sym_comment, - STATE(3994), 1, + STATE(3921), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6107), 2, + ACTIONS(6119), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325114,7 +325297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134614] = 14, + [134819] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325123,28 +325306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(5838), 1, + ACTIONS(5089), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(5101), 1, anon_sym_async, - ACTIONS(5844), 1, + ACTIONS(5103), 1, anon_sym_readonly, - STATE(3627), 1, + STATE(3630), 1, sym_comment, - STATE(3904), 1, + STATE(3959), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5846), 2, + ACTIONS(5105), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325164,7 +325347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134678] = 14, + [134883] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325173,28 +325356,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6405), 1, + ACTIONS(6129), 1, anon_sym_STAR, - ACTIONS(6427), 1, + ACTIONS(6131), 1, anon_sym_async, - ACTIONS(7036), 1, + ACTIONS(6133), 1, anon_sym_readonly, - STATE(3628), 1, + STATE(3631), 1, sym_comment, - STATE(3906), 1, + STATE(4000), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6429), 2, + ACTIONS(6135), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325214,7 +325397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134742] = 14, + [134947] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325223,28 +325406,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(6247), 1, anon_sym_STAR, - ACTIONS(6399), 1, + ACTIONS(6249), 1, anon_sym_async, - ACTIONS(7038), 1, + ACTIONS(6251), 1, anon_sym_readonly, - STATE(3629), 1, + STATE(3632), 1, sym_comment, - STATE(3903), 1, + STATE(3969), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6401), 2, + ACTIONS(6253), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325264,7 +325447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134806] = 14, + [135011] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325273,28 +325456,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_STAR, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(5049), 1, + ACTIONS(6534), 1, + anon_sym_STAR, + ACTIONS(6577), 1, anon_sym_async, - ACTIONS(5051), 1, + ACTIONS(7044), 1, anon_sym_readonly, - STATE(3630), 1, + STATE(3633), 1, sym_comment, - STATE(3950), 1, + STATE(3996), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5053), 2, + ACTIONS(6579), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325314,7 +325497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134870] = 12, + [135075] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325323,21 +325506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7040), 1, + ACTIONS(7046), 1, anon_sym_STAR, - STATE(3631), 1, + STATE(3634), 1, sym_comment, - STATE(4805), 1, + STATE(4777), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(7042), 2, + ACTIONS(7048), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 21, @@ -325362,37 +325545,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134930] = 14, + [135135] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6868), 1, + ACTIONS(6591), 1, anon_sym_STAR, - ACTIONS(6870), 1, + ACTIONS(6593), 1, anon_sym_async, - ACTIONS(6872), 1, + ACTIONS(7050), 1, anon_sym_readonly, - STATE(3632), 1, + STATE(3635), 1, sym_comment, - STATE(4794), 1, + STATE(3907), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6874), 2, + ACTIONS(6595), 2, anon_sym_get, anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325412,7 +325595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134994] = 14, + [135199] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325421,28 +325604,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, + ACTIONS(6209), 1, anon_sym_STAR, - ACTIONS(6047), 1, + ACTIONS(6211), 1, anon_sym_async, - ACTIONS(7044), 1, + ACTIONS(6213), 1, anon_sym_readonly, - STATE(3633), 1, + STATE(3636), 1, sym_comment, - STATE(3909), 1, + STATE(3981), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6049), 2, + ACTIONS(6215), 2, + anon_sym_get, + anon_sym_set, + STATE(4056), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4498), 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, + [135263] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5099), 1, + anon_sym_LBRACK, + ACTIONS(6390), 1, + anon_sym_STAR, + ACTIONS(6392), 1, + anon_sym_async, + ACTIONS(7052), 1, + anon_sym_readonly, + STATE(3637), 1, + sym_comment, + STATE(3925), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6394), 2, anon_sym_get, anon_sym_set, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4498), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325462,44 +325695,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135058] = 14, + [135327] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(6045), 1, - anon_sym_STAR, - ACTIONS(6047), 1, - anon_sym_async, - ACTIONS(7046), 1, - anon_sym_readonly, - STATE(3634), 1, + STATE(3638), 1, sym_comment, - STATE(3920), 1, + STATE(4829), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6049), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325512,33 +325740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135122] = 12, + [135382] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_STAR, - STATE(3635), 1, + ACTIONS(7054), 1, + anon_sym_readonly, + STATE(3639), 1, sym_comment, - STATE(4702), 1, + STATE(4195), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(7048), 2, - anon_sym_get, - anon_sym_set, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 21, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325547,7 +325772,8 @@ 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, @@ -325560,44 +325786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135182] = 14, + [135439] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_STAR, - ACTIONS(6239), 1, - anon_sym_async, - ACTIONS(7050), 1, - anon_sym_readonly, - STATE(3636), 1, + STATE(3640), 1, sym_comment, - STATE(3925), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6243), 2, - anon_sym_get, - anon_sym_set, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 19, + ACTIONS(4428), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325610,7 +325824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135246] = 10, + anon_sym_abstract, + [135482] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325619,16 +325834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3637), 1, + STATE(3641), 1, sym_comment, - STATE(4702), 1, + STATE(4674), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -325655,7 +325870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135301] = 10, + [135537] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325664,16 +325879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3638), 1, + STATE(3642), 1, sym_comment, - STATE(4805), 1, + STATE(4698), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -325700,28 +325915,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135356] = 10, + [135592] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3639), 1, + STATE(3643), 1, sym_comment, - STATE(4669), 1, + STATE(4196), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325745,7 +325960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135411] = 10, + [135647] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325754,16 +325969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3640), 1, + STATE(3644), 1, sym_comment, - STATE(4742), 1, + STATE(4768), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -325790,30 +326005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135466] = 11, + [135702] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7052), 1, - anon_sym_readonly, - STATE(3641), 1, + STATE(3645), 1, sym_comment, - STATE(4217), 1, + STATE(4689), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325822,6 +326035,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, @@ -325836,7 +326050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135523] = 10, + [135757] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325845,16 +326059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3642), 1, + STATE(3646), 1, sym_comment, - STATE(4836), 1, + STATE(4686), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -325881,30 +326095,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135578] = 11, + [135812] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, - anon_sym_readonly, - STATE(3643), 1, + STATE(3647), 1, sym_comment, - STATE(4239), 1, + STATE(4782), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325913,6 +326125,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, @@ -325927,7 +326140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135635] = 10, + [135867] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325936,16 +326149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3644), 1, + STATE(3648), 1, sym_comment, - STATE(4728), 1, + STATE(4669), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -325972,7 +326185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135690] = 11, + [135922] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325981,21 +326194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, ACTIONS(7056), 1, anon_sym_readonly, - STATE(3645), 1, + STATE(3649), 1, sym_comment, - STATE(4274), 1, + STATE(4167), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326018,7 +326231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135747] = 10, + [135979] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326027,19 +326240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3646), 1, + ACTIONS(7058), 1, + anon_sym_readonly, + STATE(3650), 1, sym_comment, - STATE(4271), 1, + STATE(4163), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326048,7 +326263,6 @@ 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, @@ -326063,28 +326277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135802] = 10, + [136036] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3647), 1, + ACTIONS(7060), 1, + anon_sym_readonly, + STATE(3651), 1, sym_comment, - STATE(4711), 1, + STATE(4173), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326093,7 +326309,6 @@ 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, @@ -326108,7 +326323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135857] = 11, + [136093] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326117,21 +326332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7058), 1, - anon_sym_readonly, - STATE(3648), 1, + STATE(3652), 1, sym_comment, - STATE(4219), 1, + STATE(4233), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326140,6 +326353,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, @@ -326154,7 +326368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135914] = 11, + [136148] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326163,21 +326377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7060), 1, + ACTIONS(7062), 1, anon_sym_readonly, - STATE(3649), 1, + STATE(3653), 1, sym_comment, - STATE(4242), 1, + STATE(4233), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326200,7 +326414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135971] = 10, + [136205] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326209,16 +326423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3650), 1, + STATE(3654), 1, sym_comment, - STATE(4710), 1, + STATE(4773), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326245,30 +326459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136026] = 11, + [136260] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_readonly, - STATE(3651), 1, + STATE(3655), 1, sym_comment, - STATE(4282), 1, + STATE(4824), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326277,6 +326489,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, @@ -326291,67 +326504,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136083] = 4, + [136315] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3652), 1, - sym_comment, - ACTIONS(4440), 31, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3656), 1, + sym_comment, + STATE(4673), 1, + sym__property_name, + ACTIONS(2823), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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, - [136126] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3653), 1, - sym_comment, - ACTIONS(4430), 31, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -326368,8 +326549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136169] = 10, + [136370] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326378,16 +326558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3654), 1, + STATE(3657), 1, sym_comment, - STATE(4693), 1, + STATE(4807), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326414,7 +326594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136224] = 11, + [136425] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326423,21 +326603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7064), 1, - anon_sym_readonly, - STATE(3655), 1, + STATE(3658), 1, sym_comment, - STATE(4204), 1, + STATE(4166), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326446,6 +326624,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, @@ -326460,28 +326639,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136281] = 10, + [136480] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3656), 1, + STATE(3659), 1, sym_comment, - STATE(4336), 1, + STATE(4777), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326505,28 +326684,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136336] = 10, + [136535] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3657), 1, + STATE(3660), 1, sym_comment, - STATE(4308), 1, + STATE(4687), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326550,28 +326729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136391] = 10, + [136590] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3658), 1, + ACTIONS(6731), 1, + anon_sym_readonly, + STATE(3661), 1, sym_comment, - STATE(4824), 1, + STATE(4342), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326580,7 +326761,6 @@ 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, @@ -326595,7 +326775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136446] = 10, + [136647] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326604,16 +326784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3659), 1, + STATE(3662), 1, sym_comment, - STATE(4712), 1, + STATE(4845), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326640,28 +326820,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136501] = 10, + [136702] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + STATE(3663), 1, + sym_comment, + ACTIONS(4294), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [136745] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3660), 1, + STATE(3664), 1, sym_comment, - STATE(4804), 1, + STATE(4342), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326685,7 +326904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136556] = 10, + [136800] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326694,16 +326913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3661), 1, + STATE(3665), 1, sym_comment, - STATE(4745), 1, + STATE(4746), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326730,28 +326949,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136611] = 4, + [136855] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3662), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3666), 1, sym_comment, - ACTIONS(4346), 31, + STATE(4803), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -326768,15 +326994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136654] = 4, + [136910] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3663), 1, + STATE(3667), 1, sym_comment, - ACTIONS(4438), 31, + ACTIONS(4456), 31, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -326808,7 +327033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [136697] = 10, + [136953] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326817,16 +327042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3664), 1, + STATE(3668), 1, sym_comment, - STATE(4779), 1, + STATE(4711), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326853,7 +327078,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136752] = 11, + [137008] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3669), 1, + sym_comment, + ACTIONS(4458), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, + [137051] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326862,21 +327126,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7066), 1, + ACTIONS(7064), 1, anon_sym_readonly, - STATE(3665), 1, + STATE(3670), 1, sym_comment, - STATE(4246), 1, + STATE(4273), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326899,28 +327163,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136809] = 10, + [137108] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3666), 1, + STATE(3671), 1, sym_comment, - STATE(4689), 1, + STATE(4263), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326944,7 +327208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136864] = 10, + [137163] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326953,16 +327217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3667), 1, + STATE(3672), 1, sym_comment, - STATE(4695), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -326989,28 +327253,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136919] = 4, + [137218] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3668), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5550), 1, + anon_sym_LBRACK, + STATE(3673), 1, sym_comment, - ACTIONS(4428), 31, + STATE(4697), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4459), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -327027,39 +327298,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136962] = 11, + [137273] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6743), 1, - anon_sym_readonly, - STATE(3669), 1, + STATE(3674), 1, sym_comment, - STATE(4171), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4450), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -327074,30 +327336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137019] = 11, + anon_sym_abstract, + [137316] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7068), 1, - anon_sym_readonly, - STATE(3670), 1, + STATE(3675), 1, sym_comment, - STATE(4301), 1, + STATE(4691), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327106,6 +327367,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, @@ -327120,28 +327382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137076] = 10, + [137371] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3671), 1, + STATE(3676), 1, sym_comment, - STATE(4171), 1, + STATE(4813), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327165,28 +327427,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137131] = 10, + [137426] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3672), 1, + ACTIONS(7066), 1, + anon_sym_readonly, + STATE(3677), 1, sym_comment, - STATE(4794), 1, + STATE(4165), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327195,7 +327459,6 @@ 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, @@ -327210,35 +327473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137186] = 10, + [137483] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - STATE(3673), 1, + STATE(3678), 1, sym_comment, - STATE(4314), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(4448), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -327255,38 +327511,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137241] = 11, + anon_sym_abstract, + [137526] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(6719), 1, - anon_sym_readonly, - STATE(3674), 1, + STATE(3679), 1, sym_comment, - STATE(4314), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4454), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -327301,30 +327550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137298] = 11, + anon_sym_abstract, + [137569] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_readonly, - STATE(3675), 1, + STATE(3680), 1, sym_comment, - STATE(4344), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327333,6 +327581,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, @@ -327347,28 +327596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137355] = 10, + [137624] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3676), 1, + STATE(3681), 1, sym_comment, - STATE(4337), 1, + STATE(4830), 1, sym__property_name, - ACTIONS(3995), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327392,7 +327641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137410] = 10, + [137679] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327401,16 +327650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3677), 1, + STATE(3682), 1, sym_comment, - STATE(4754), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -327437,7 +327686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137465] = 10, + [137734] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327446,19 +327695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3678), 1, + ACTIONS(7068), 1, + anon_sym_readonly, + STATE(3683), 1, sym_comment, - STATE(4215), 1, + STATE(4248), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327467,7 +327718,6 @@ 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, @@ -327482,120 +327732,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137520] = 10, + [137791] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3679), 1, - sym_comment, - STATE(4672), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4442), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(7070), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(3680), 1, + STATE(3684), 1, sym_comment, - STATE(4832), 1, + STATE(4235), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [137630] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3681), 1, - sym_comment, - ACTIONS(4452), 31, + ACTIONS(4498), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -327610,29 +327778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [137673] = 10, + [137848] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3682), 1, + STATE(3685), 1, sym_comment, - STATE(4718), 1, + STATE(4188), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327656,28 +327823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137728] = 10, + [137903] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3683), 1, + ACTIONS(7072), 1, + anon_sym_readonly, + STATE(3686), 1, sym_comment, - STATE(4684), 1, + STATE(4303), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327686,7 +327855,6 @@ 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, @@ -327701,7 +327869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137783] = 10, + [137960] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327710,16 +327878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3684), 1, + STATE(3687), 1, sym_comment, - STATE(4741), 1, + STATE(4731), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -327746,7 +327914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137838] = 10, + [138015] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327755,19 +327923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3685), 1, + STATE(3688), 1, sym_comment, - STATE(4201), 1, + STATE(4344), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327791,7 +327959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137893] = 11, + [138070] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327800,21 +327968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(7072), 1, + ACTIONS(6725), 1, anon_sym_readonly, - STATE(3686), 1, + STATE(3689), 1, sym_comment, - STATE(4172), 1, + STATE(4188), 1, sym__property_name, ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4102), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(4496), 22, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327837,28 +328005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137950] = 10, + [138127] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3687), 1, + STATE(3690), 1, sym_comment, - STATE(4767), 1, + STATE(4201), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327882,7 +328050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138005] = 10, + [138182] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327891,16 +328059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3688), 1, + STATE(3691), 1, sym_comment, - STATE(4761), 1, + STATE(4828), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -327927,7 +328095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138060] = 10, + [138237] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327936,16 +328104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3689), 1, + STATE(3692), 1, sym_comment, - STATE(4777), 1, + STATE(4713), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -327972,7 +328140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138115] = 10, + [138292] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327981,16 +328149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3690), 1, + STATE(3693), 1, sym_comment, - STATE(4734), 1, + STATE(4721), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -328017,28 +328185,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138170] = 10, + [138347] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3691), 1, + ACTIONS(7074), 1, + anon_sym_readonly, + STATE(3694), 1, sym_comment, - STATE(4713), 1, + STATE(4199), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328047,7 +328217,6 @@ 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, @@ -328062,7 +328231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138225] = 10, + [138404] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328071,16 +328240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3692), 1, + STATE(3695), 1, sym_comment, - STATE(4827), 1, + STATE(4790), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -328107,7 +328276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138280] = 10, + [138459] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328116,16 +328285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3693), 1, + STATE(3696), 1, sym_comment, - STATE(4667), 1, + STATE(4740), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -328152,28 +328321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138335] = 10, + [138514] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - STATE(3694), 1, + ACTIONS(7076), 1, + anon_sym_readonly, + STATE(3697), 1, sym_comment, - STATE(4680), 1, + STATE(4251), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4056), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4498), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328182,7 +328353,6 @@ 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, @@ -328197,7 +328367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138390] = 10, + [138571] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328206,16 +328376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3695), 1, + STATE(3698), 1, sym_comment, - STATE(4769), 1, + STATE(4696), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -328242,7 +328412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138445] = 10, + [138626] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328251,16 +328421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5550), 1, anon_sym_LBRACK, - STATE(3696), 1, + STATE(3699), 1, sym_comment, - STATE(4682), 1, + STATE(4747), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4442), 2, + STATE(4459), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -328287,64 +328457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138500] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_LBRACK, - ACTIONS(7074), 1, - anon_sym_readonly, - STATE(3697), 1, - sym_comment, - STATE(4308), 1, - sym__property_name, - ACTIONS(3995), 2, - sym_number, - sym_private_property_identifier, - STATE(4102), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4496), 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, - [138557] = 6, + [138681] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7076), 1, + ACTIONS(7078), 1, sym_identifier, - STATE(3698), 1, + STATE(3700), 1, sym_comment, - STATE(7124), 1, + STATE(7132), 1, sym_mapped_type_clause, - ACTIONS(7078), 22, + ACTIONS(7080), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328367,17 +328491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138597] = 5, + [138721] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3699), 1, + STATE(3701), 1, sym_comment, - ACTIONS(4438), 2, + ACTIONS(4454), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4987), 19, + ACTIONS(4967), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -328397,29 +328521,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [138632] = 11, + [138756] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7080), 1, + ACTIONS(4286), 1, anon_sym_DOT, - ACTIONS(7082), 1, + ACTIONS(4290), 1, anon_sym_QMARK_DOT, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_LT, - STATE(3700), 1, + STATE(3702), 1, sym_comment, - STATE(3753), 1, + STATE(3767), 1, sym_arguments, - STATE(3868), 1, + STATE(3893), 1, sym_type_arguments, - ACTIONS(4949), 2, + ACTIONS(4258), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4951), 13, + ACTIONS(4248), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328433,29 +328557,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138679] = 11, + [138803] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_LT, - ACTIONS(7086), 1, + ACTIONS(7084), 1, anon_sym_DOT, - ACTIONS(7088), 1, + ACTIONS(7086), 1, anon_sym_QMARK_DOT, - STATE(3701), 1, + STATE(3703), 1, sym_comment, - STATE(3751), 1, + STATE(3764), 1, sym_arguments, - STATE(3887), 1, + STATE(3826), 1, sym_type_arguments, - ACTIONS(4955), 2, + ACTIONS(4957), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4957), 13, + ACTIONS(4959), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328469,18 +328593,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138726] = 5, + [138850] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3702), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7088), 1, + anon_sym_DOT, + ACTIONS(7090), 1, + anon_sym_QMARK_DOT, + STATE(3704), 1, sym_comment, - ACTIONS(4430), 2, + STATE(3758), 1, + sym_arguments, + STATE(3871), 1, + sym_type_arguments, + ACTIONS(4923), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4961), 19, - anon_sym_export, + ACTIONS(4925), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328490,38 +328625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_class, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, anon_sym_extends, - [138761] = 11, + [138897] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(4286), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(3703), 1, + STATE(3705), 1, sym_comment, - STATE(3750), 1, - sym_arguments, - STATE(3890), 1, - sym_type_arguments, - ACTIONS(4256), 2, + ACTIONS(4456), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4244), 13, + ACTIONS(4989), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328531,21 +328650,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_class, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, anon_sym_extends, - [138808] = 5, + [138932] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3704), 1, + STATE(3706), 1, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4450), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4979), 19, + ACTIONS(4985), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -328565,16 +328689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [138843] = 5, + [138967] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2250), 1, + ACTIONS(2172), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3705), 1, + STATE(3707), 1, sym_comment, - ACTIONS(2252), 19, + ACTIONS(2174), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328594,16 +328718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [138877] = 5, + [139001] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2260), 1, + ACTIONS(2314), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3706), 1, + STATE(3708), 1, sym_comment, - ACTIONS(2262), 19, + ACTIONS(2316), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328623,17 +328747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [138911] = 5, + [139035] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3707), 1, + STATE(3709), 1, sym_comment, - ACTIONS(5131), 2, + ACTIONS(5039), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5133), 17, + ACTIONS(5041), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328651,45 +328775,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [138944] = 5, + [139068] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3708), 1, - sym_comment, - ACTIONS(5328), 2, + ACTIONS(4915), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5330), 17, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7092), 1, + anon_sym_DOT, + ACTIONS(7094), 1, + anon_sym_is, + STATE(3710), 1, + sym_comment, + STATE(3867), 1, + sym_type_arguments, + ACTIONS(4307), 14, 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_QMARK, anon_sym_extends, - [138977] = 5, + [139109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3709), 1, + STATE(3711), 1, sym_comment, - ACTIONS(5248), 2, + ACTIONS(5159), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5250), 17, + ACTIONS(5161), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328707,17 +328835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139010] = 5, + [139142] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3710), 1, + STATE(3712), 1, sym_comment, - ACTIONS(5248), 2, + ACTIONS(5159), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5250), 17, + ACTIONS(5161), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328735,17 +328863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139043] = 5, + [139175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3711), 1, + STATE(3713), 1, sym_comment, - ACTIONS(5248), 2, + ACTIONS(5039), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5250), 17, + ACTIONS(5041), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328763,17 +328891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139076] = 5, + [139208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3712), 1, + STATE(3714), 1, sym_comment, - ACTIONS(5238), 2, + ACTIONS(5159), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5240), 17, + ACTIONS(5161), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328791,17 +328919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139109] = 5, + [139241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3713), 1, + STATE(3715), 1, sym_comment, - ACTIONS(5238), 2, + ACTIONS(5163), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5240), 17, + ACTIONS(5165), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328819,17 +328947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139142] = 5, + [139274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3714), 1, + STATE(3716), 1, sym_comment, - ACTIONS(5238), 2, + ACTIONS(5013), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5240), 17, + ACTIONS(5015), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328847,17 +328975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139175] = 5, + [139307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3715), 1, + STATE(3717), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5013), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5229), 17, + ACTIONS(5015), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328875,17 +329003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139208] = 5, + [139340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3716), 1, + STATE(3718), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5005), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5229), 17, + ACTIONS(5007), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328903,17 +329031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139241] = 5, + [139373] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3717), 1, + STATE(3719), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5111), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5229), 17, + ACTIONS(5113), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328931,17 +329059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139274] = 5, + [139406] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3718), 1, + STATE(3720), 1, sym_comment, - ACTIONS(5223), 2, + ACTIONS(5163), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5225), 17, + ACTIONS(5165), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328959,17 +329087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139307] = 5, + [139439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3719), 1, + STATE(3721), 1, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5107), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5330), 17, + ACTIONS(5109), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -328987,17 +329115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139340] = 5, + [139472] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3720), 1, + STATE(3722), 1, sym_comment, - ACTIONS(5009), 2, + ACTIONS(5267), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5011), 17, + ACTIONS(5269), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329015,17 +329143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139373] = 5, + [139505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3721), 1, + STATE(3723), 1, sym_comment, - ACTIONS(5019), 2, + ACTIONS(5227), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5021), 17, + ACTIONS(5229), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329043,17 +329171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139406] = 5, + [139538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3722), 1, + STATE(3724), 1, sym_comment, - ACTIONS(5005), 2, + ACTIONS(5239), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5007), 17, + ACTIONS(5241), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329071,17 +329199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139439] = 5, + [139571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3723), 1, + STATE(3725), 1, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5239), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5330), 17, + ACTIONS(5241), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329099,17 +329227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139472] = 5, + [139604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3724), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5300), 2, + ACTIONS(5243), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5302), 17, + ACTIONS(5245), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329127,17 +329255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139505] = 5, + [139637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3725), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5300), 2, + ACTIONS(5163), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5302), 17, + ACTIONS(5165), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329155,17 +329283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139538] = 5, + [139670] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3726), 1, + STATE(3728), 1, sym_comment, - ACTIONS(5300), 2, + ACTIONS(5239), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5302), 17, + ACTIONS(5241), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329183,17 +329311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139571] = 5, + [139703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3727), 1, + STATE(3729), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5025), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5292), 17, + ACTIONS(5027), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329211,17 +329339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139604] = 5, + [139736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3728), 1, + STATE(3730), 1, sym_comment, - ACTIONS(5001), 2, + ACTIONS(5013), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5003), 17, + ACTIONS(5015), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329239,17 +329367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139637] = 5, + [139769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3729), 1, + STATE(3731), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5231), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5292), 17, + ACTIONS(5233), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329267,17 +329395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139670] = 5, + [139802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3730), 1, + STATE(3732), 1, sym_comment, - ACTIONS(5005), 2, + ACTIONS(5025), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5007), 17, + ACTIONS(5027), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329295,17 +329423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139703] = 5, + [139835] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3731), 1, + STATE(3733), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5127), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5292), 17, + ACTIONS(5129), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329323,17 +329451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139736] = 5, + [139868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3732), 1, + STATE(3734), 1, sym_comment, - ACTIONS(5131), 2, + ACTIONS(5001), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5133), 17, + ACTIONS(5003), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329351,17 +329479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139769] = 5, + [139901] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3733), 1, + STATE(3735), 1, sym_comment, - ACTIONS(5059), 2, + ACTIONS(5227), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5061), 17, + ACTIONS(5229), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329379,17 +329507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139802] = 5, + [139934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3734), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5063), 2, + ACTIONS(5025), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5065), 17, + ACTIONS(5027), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329407,17 +329535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139835] = 5, + [139967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3735), 1, + STATE(3737), 1, sym_comment, - ACTIONS(5286), 2, + ACTIONS(5081), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5288), 17, + ACTIONS(5083), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329435,17 +329563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139868] = 5, + [140000] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3736), 1, + STATE(3738), 1, sym_comment, - ACTIONS(5001), 2, + ACTIONS(5243), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5003), 17, + ACTIONS(5245), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329463,17 +329591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139901] = 5, + [140033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3737), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5055), 2, + ACTIONS(5081), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5057), 17, + ACTIONS(5083), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329491,17 +329619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139934] = 5, + [140066] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3738), 1, + STATE(3740), 1, sym_comment, - ACTIONS(5055), 2, + ACTIONS(5127), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5057), 17, + ACTIONS(5129), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329519,49 +329647,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139967] = 9, + [140099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_EQ, - ACTIONS(7084), 1, - anon_sym_LT, - ACTIONS(7090), 1, - anon_sym_DOT, - ACTIONS(7092), 1, - anon_sym_is, - STATE(3739), 1, + STATE(3741), 1, sym_comment, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(4314), 14, + ACTIONS(5001), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5003), 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_QMARK, + anon_sym_LT, anon_sym_extends, - [140008] = 5, + [140132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3740), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5019), 2, + ACTIONS(5005), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5021), 17, + ACTIONS(5007), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329579,17 +329703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140041] = 5, + [140165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3741), 1, + STATE(3743), 1, sym_comment, - ACTIONS(5009), 2, + ACTIONS(5081), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5011), 17, + ACTIONS(5083), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329607,7 +329731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [140074] = 16, + [140198] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329616,51 +329740,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7094), 1, - sym_identifier, ACTIONS(7096), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(7098), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(7100), 1, - anon_sym_LBRACE, + anon_sym_type, ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7104), 1, anon_sym_typeof, - STATE(3742), 1, + STATE(3744), 1, sym_comment, - STATE(5559), 1, + STATE(5588), 1, sym_import_require_clause, - STATE(5561), 1, + STATE(5592), 1, sym_string, - STATE(6384), 1, - sym__import_identifier, - STATE(6881), 1, + STATE(6389), 1, sym_import_clause, - STATE(7332), 2, + STATE(6415), 1, + sym__import_identifier, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140128] = 8, + [140252] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4915), 1, anon_sym_EQ, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_LT, - ACTIONS(7090), 1, + ACTIONS(7092), 1, anon_sym_DOT, - STATE(3743), 1, + STATE(3745), 1, sym_comment, - STATE(3823), 1, + STATE(3867), 1, sym_type_arguments, - ACTIONS(4314), 14, + ACTIONS(4307), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329675,7 +329799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140166] = 16, + [140290] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329684,36 +329808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7106), 1, - sym_identifier, ACTIONS(7108), 1, - anon_sym_type, + sym_identifier, ACTIONS(7110), 1, + anon_sym_type, + ACTIONS(7112), 1, anon_sym_typeof, - STATE(3744), 1, + STATE(3746), 1, sym_comment, - STATE(5418), 1, + STATE(5423), 1, sym_string, - STATE(5419), 1, + STATE(5424), 1, sym_import_require_clause, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6761), 1, + STATE(6767), 1, sym_import_clause, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140220] = 16, + [140344] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329722,36 +329846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7112), 1, - sym_identifier, ACTIONS(7114), 1, - anon_sym_type, + sym_identifier, ACTIONS(7116), 1, + anon_sym_type, + ACTIONS(7118), 1, anon_sym_typeof, - STATE(3745), 1, + STATE(3747), 1, sym_comment, - STATE(5564), 1, + STATE(5562), 1, sym_import_require_clause, - STATE(5566), 1, + STATE(5563), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6526), 1, + STATE(6887), 1, sym_import_clause, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140274] = 16, + [140398] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329760,36 +329884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7118), 1, - sym_identifier, ACTIONS(7120), 1, - anon_sym_type, + sym_identifier, ACTIONS(7122), 1, + anon_sym_type, + ACTIONS(7124), 1, anon_sym_typeof, - STATE(3746), 1, + STATE(3748), 1, sym_comment, - STATE(5586), 1, + STATE(5473), 1, sym_import_require_clause, - STATE(5589), 1, + STATE(5474), 1, sym_string, - STATE(6378), 1, - sym_import_clause, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(7332), 2, + STATE(6923), 1, + sym_import_clause, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140328] = 16, + [140452] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329798,45 +329922,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, - sym_identifier, ACTIONS(7126), 1, - anon_sym_type, + sym_identifier, ACTIONS(7128), 1, + anon_sym_type, + ACTIONS(7130), 1, anon_sym_typeof, - STATE(3747), 1, + STATE(3749), 1, sym_comment, - STATE(5470), 1, + STATE(5568), 1, sym_import_require_clause, - STATE(5471), 1, + STATE(5569), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6925), 1, + STATE(6532), 1, sym_import_clause, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [140382] = 5, + [140506] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(4465), 1, anon_sym_EQ, - STATE(3748), 1, + STATE(3750), 1, + sym_comment, + ACTIONS(5265), 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, + [140537] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4484), 1, + anon_sym_EQ, + STATE(3751), 1, + sym_comment, + ACTIONS(5345), 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, + [140568] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3241), 1, + anon_sym_EQ, + STATE(3752), 1, + sym_comment, + ACTIONS(3599), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + 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, + [140599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4482), 1, + anon_sym_EQ, + STATE(3753), 1, + sym_comment, + ACTIONS(5356), 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, + [140630] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3247), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_comment, + ACTIONS(3579), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + 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, + [140661] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4486), 1, + anon_sym_EQ, + STATE(3755), 1, sym_comment, - ACTIONS(5135), 16, + ACTIONS(5278), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329853,16 +330107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140413] = 5, + [140692] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, + ACTIONS(4486), 1, anon_sym_EQ, - STATE(3749), 1, + STATE(3756), 1, sym_comment, - ACTIONS(5153), 16, + ACTIONS(5278), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329879,43 +330133,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140444] = 5, + [140723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3750), 1, - sym_comment, - ACTIONS(5217), 2, + ACTIONS(4463), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5219), 15, + STATE(3757), 1, + sym_comment, + ACTIONS(5155), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [140475] = 5, + [140754] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3751), 1, + STATE(3758), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5115), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5211), 15, + ACTIONS(5117), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -329931,23 +330185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140506] = 5, + [140785] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3267), 1, - anon_sym_EQ, - STATE(3752), 1, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7134), 1, + anon_sym_QMARK_DOT, + STATE(3759), 1, sym_comment, - ACTIONS(3581), 16, + ACTIONS(5292), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5294), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329955,77 +330212,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [140537] = 5, + [140820] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3753), 1, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(4923), 1, + anon_sym_PIPE, + ACTIONS(7136), 1, + anon_sym_DOT, + ACTIONS(7138), 1, + anon_sym_QMARK_DOT, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(3760), 1, sym_comment, - ACTIONS(5199), 2, + STATE(3946), 1, + sym_arguments, + STATE(4077), 1, + sym_type_arguments, + ACTIONS(4925), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5201), 15, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - 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_extends, - [140568] = 5, + anon_sym_PIPE_RBRACE, + [140863] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2172), 1, + anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3283), 1, - anon_sym_EQ, - STATE(3754), 1, + STATE(3761), 1, sym_comment, - ACTIONS(3657), 16, - anon_sym_as, + ACTIONS(2174), 16, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_while, + anon_sym_with, + anon_sym_BANG, + anon_sym_LPAREN, + 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, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140599] = 5, + anon_sym_PIPE_RBRACE, + [140894] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2252), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3293), 1, + ACTIONS(5324), 1, anon_sym_EQ, - STATE(3755), 1, + STATE(3762), 1, sym_comment, - ACTIONS(3517), 16, + ACTIONS(5326), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330033,18 +330295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140630] = 5, + [140927] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4462), 1, + ACTIONS(4484), 1, anon_sym_EQ, - STATE(3756), 1, + STATE(3763), 1, sym_comment, - ACTIONS(5234), 16, + ACTIONS(5345), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330061,77 +330324,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140661] = 5, + [140958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3291), 1, - anon_sym_EQ, - STATE(3757), 1, + STATE(3764), 1, sym_comment, - ACTIONS(3507), 16, + ACTIONS(5123), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5125), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, 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_QMARK, anon_sym_extends, - [140692] = 5, + [140989] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, - anon_sym_EQ, - STATE(3758), 1, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(4252), 1, + anon_sym_DOT, + ACTIONS(4256), 1, + anon_sym_QMARK_DOT, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(3765), 1, sym_comment, - ACTIONS(5151), 16, - anon_sym_as, + STATE(3963), 1, + sym_arguments, + STATE(4085), 1, + sym_type_arguments, + ACTIONS(4248), 10, + sym__automatic_semicolon, + anon_sym_EQ, 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_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [140723] = 7, + anon_sym_PIPE_RBRACE, + [141032] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(3405), 1, anon_sym_EQ, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(3759), 1, + STATE(3766), 1, sym_comment, - STATE(3857), 1, - sym_type_arguments, - ACTIONS(4965), 14, + ACTIONS(3569), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330141,51 +330408,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140758] = 5, + [141063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(3760), 1, + STATE(3767), 1, sym_comment, - ACTIONS(5161), 16, + ACTIONS(5135), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5137), 15, 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_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [140789] = 7, + [141094] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7130), 1, - anon_sym_DOT, - ACTIONS(7132), 1, - anon_sym_QMARK_DOT, - STATE(3761), 1, - sym_comment, - ACTIONS(5336), 2, + ACTIONS(4467), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5338), 13, + STATE(3768), 1, + sym_comment, + ACTIONS(5280), 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, @@ -330194,19 +330457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [140824] = 6, + [141125] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2174), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(4977), 1, anon_sym_EQ, - STATE(3762), 1, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(3769), 1, sym_comment, - ACTIONS(5173), 15, + STATE(3853), 1, + sym_type_arguments, + ACTIONS(4979), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330219,19 +330486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140857] = 5, + [141160] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2250), 1, + ACTIONS(2314), 1, anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3763), 1, + STATE(3770), 1, sym_comment, - ACTIONS(2252), 16, + ACTIONS(2316), 16, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -330248,23 +330514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140888] = 6, + [141191] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2168), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(3377), 1, anon_sym_EQ, - STATE(3764), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5173), 15, + ACTIONS(3679), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330272,25 +330538,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140921] = 5, + [141222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4458), 1, + ACTIONS(3227), 1, anon_sym_EQ, - STATE(3765), 1, + STATE(3772), 1, sym_comment, - ACTIONS(5242), 16, + ACTIONS(3669), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330298,24 +330564,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140952] = 5, + [141253] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2154), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(5324), 1, anon_sym_EQ, - STATE(3766), 1, + STATE(3773), 1, sym_comment, - ACTIONS(5155), 16, + ACTIONS(5326), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330324,77 +330590,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140983] = 5, + [141286] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2260), 1, - anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3767), 1, - sym_comment, - ACTIONS(2262), 16, - sym__automatic_semicolon, + ACTIONS(4488), 1, anon_sym_EQ, + STATE(3774), 1, + sym_comment, + ACTIONS(5290), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141014] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LPAREN, - ACTIONS(4248), 1, - anon_sym_DOT, - ACTIONS(4252), 1, - anon_sym_QMARK_DOT, - ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(7134), 1, - anon_sym_LT, - STATE(3768), 1, - sym_comment, - STATE(3961), 1, - sym_arguments, - STATE(4080), 1, - sym_type_arguments, - ACTIONS(4244), 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_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141057] = 5, + [141317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, + ACTIONS(4490), 1, anon_sym_EQ, - STATE(3769), 1, + STATE(3775), 1, sym_comment, - ACTIONS(5153), 16, + ACTIONS(5316), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330411,16 +330645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141088] = 5, + [141348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, + ACTIONS(4492), 1, anon_sym_EQ, - STATE(3770), 1, + STATE(3776), 1, sym_comment, - ACTIONS(5149), 16, + ACTIONS(5320), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330437,28 +330671,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141119] = 11, + [141379] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4250), 1, anon_sym_LPAREN, - ACTIONS(4949), 1, + ACTIONS(4957), 1, anon_sym_PIPE, - ACTIONS(7134), 1, + ACTIONS(7140), 1, anon_sym_LT, - ACTIONS(7136), 1, + ACTIONS(7142), 1, anon_sym_DOT, - ACTIONS(7138), 1, + ACTIONS(7144), 1, anon_sym_QMARK_DOT, - STATE(3771), 1, + STATE(3777), 1, sym_comment, - STATE(3953), 1, + STATE(3968), 1, sym_arguments, - STATE(4093), 1, + STATE(4066), 1, sym_type_arguments, - ACTIONS(4951), 10, + ACTIONS(4959), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -330469,23 +330703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141162] = 5, + [141422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3289), 1, + ACTIONS(4973), 1, anon_sym_EQ, - STATE(3772), 1, + STATE(3778), 1, sym_comment, - ACTIONS(3641), 16, + ACTIONS(4975), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330495,21 +330727,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141193] = 5, + anon_sym_is, + [141452] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4460), 1, + ACTIONS(4969), 1, anon_sym_EQ, - STATE(3773), 1, + ACTIONS(7094), 1, + anon_sym_is, + STATE(3779), 1, sym_comment, - ACTIONS(5236), 16, + ACTIONS(4971), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330518,56 +330752,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141224] = 11, + [141484] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LPAREN, - ACTIONS(4955), 1, - anon_sym_PIPE, - ACTIONS(7134), 1, - anon_sym_LT, - ACTIONS(7140), 1, - anon_sym_DOT, - ACTIONS(7142), 1, - anon_sym_QMARK_DOT, - STATE(3774), 1, - sym_comment, - STATE(3959), 1, - sym_arguments, - STATE(4052), 1, - sym_type_arguments, - ACTIONS(4957), 10, - sym__automatic_semicolon, + ACTIONS(4963), 1, anon_sym_EQ, + ACTIONS(7094), 1, + anon_sym_is, + STATE(3780), 1, + sym_comment, + ACTIONS(4965), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + 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_PIPE_RBRACE, - [141267] = 5, + [141516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, + ACTIONS(4977), 1, anon_sym_EQ, - STATE(3775), 1, + ACTIONS(7146), 1, + anon_sym_is, + STATE(3781), 1, sym_comment, - ACTIONS(5161), 16, + ACTIONS(4979), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -330576,21 +330804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141298] = 6, + [141548] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_is, - STATE(3776), 1, + STATE(3782), 1, sym_comment, - ACTIONS(4965), 14, + ACTIONS(2063), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330605,18 +330830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141330] = 6, + anon_sym_is, + [141578] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, + ACTIONS(5366), 1, anon_sym_EQ, - ACTIONS(7092), 1, - anon_sym_is, - STATE(3777), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + STATE(3783), 1, sym_comment, - ACTIONS(4997), 14, + ACTIONS(5368), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330627,22 +330853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141362] = 6, + [141609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(5045), 1, anon_sym_EQ, - ACTIONS(7092), 1, - anon_sym_is, - STATE(3778), 1, + STATE(3784), 1, sym_comment, - ACTIONS(4975), 14, + ACTIONS(5043), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330657,16 +330880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141394] = 5, + [141638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4983), 1, + ACTIONS(5021), 1, anon_sym_EQ, - STATE(3779), 1, + STATE(3785), 1, sym_comment, - ACTIONS(4985), 15, + ACTIONS(5023), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330681,17 +330904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [141424] = 5, + [141667] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3780), 1, + ACTIONS(4969), 1, + anon_sym_EQ, + STATE(3786), 1, sym_comment, - ACTIONS(2063), 15, + ACTIONS(4971), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330706,41 +330928,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [141454] = 5, + [141696] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, - anon_sym_PIPE, - STATE(3781), 1, - sym_comment, - ACTIONS(5007), 14, - sym__automatic_semicolon, + ACTIONS(5235), 1, anon_sym_EQ, + STATE(3787), 1, + sym_comment, + ACTIONS(5237), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141483] = 5, + [141725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + STATE(3788), 1, + sym_comment, + ACTIONS(7150), 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, + [141752] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7158), 1, + sym_number, + ACTIONS(7160), 1, + anon_sym_unique, + STATE(3789), 1, + sym_comment, + STATE(7310), 1, + sym_string, + STATE(7317), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [141791] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5017), 1, anon_sym_EQ, - STATE(3782), 1, + STATE(3790), 1, sym_comment, - ACTIONS(5165), 14, + ACTIONS(5019), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330755,22 +331028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141512] = 8, + [141820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5143), 1, anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3783), 1, + STATE(3791), 1, sym_comment, - ACTIONS(5035), 11, + ACTIONS(5145), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330781,56 +331048,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [141547] = 5, + anon_sym_extends, + [141849] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5019), 1, + ACTIONS(5298), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - STATE(3784), 1, + ACTIONS(7164), 1, + anon_sym_extends, + STATE(3792), 1, sym_comment, - ACTIONS(5021), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5300), 11, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141576] = 5, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [141884] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, - anon_sym_PIPE, - STATE(3785), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7166), 1, + sym_number, + STATE(3793), 1, sym_comment, - ACTIONS(5288), 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, - [141605] = 9, + STATE(7303), 1, + sym_string, + STATE(7307), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [141923] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -330839,14 +331117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7158), 1, - sym_number, ACTIONS(7160), 1, anon_sym_unique, - STATE(3786), 1, + ACTIONS(7168), 1, + sym_number, + STATE(3794), 1, sym_comment, - STATE(7172), 2, + STATE(7290), 1, sym_string, + STATE(7298), 1, sym_predefined_type, ACTIONS(7156), 9, anon_sym_void, @@ -330858,16 +331137,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141642] = 5, + [141962] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5316), 1, + ACTIONS(4915), 1, + anon_sym_PIPE, + ACTIONS(7140), 1, + anon_sym_LT, + ACTIONS(7170), 1, + anon_sym_DOT, + ACTIONS(7172), 1, + anon_sym_is, + STATE(3795), 1, + sym_comment, + STATE(4093), 1, + sym_type_arguments, + ACTIONS(4307), 10, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3787), 1, + 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, + [141999] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5147), 1, + anon_sym_EQ, + STATE(3796), 1, sym_comment, - ACTIONS(5318), 14, + ACTIONS(5149), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330882,14 +331189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141671] = 4, + [142028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3788), 1, + STATE(3797), 1, sym_comment, - ACTIONS(7162), 15, + ACTIONS(7174), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -330905,22 +331212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [141698] = 8, + [142055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(5358), 1, anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3789), 1, + STATE(3798), 1, sym_comment, - ACTIONS(5169), 11, + ACTIONS(5360), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330931,15 +331232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [141733] = 4, + anon_sym_extends, + [142084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3790), 1, + STATE(3799), 1, sym_comment, - ACTIONS(7164), 15, + ACTIONS(7176), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -330955,16 +331259,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [141760] = 5, + [142111] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(5151), 1, anon_sym_EQ, - STATE(3791), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + STATE(3800), 1, sym_comment, - ACTIONS(5169), 14, + ACTIONS(5153), 11, + 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_QMARK, + [142146] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7178), 1, + sym_number, + STATE(3801), 1, + sym_comment, + STATE(7287), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [142183] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7180), 1, + sym_number, + STATE(3802), 1, + sym_comment, + STATE(7179), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [142220] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5151), 1, + anon_sym_EQ, + STATE(3803), 1, + sym_comment, + ACTIONS(5153), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -330979,18 +331366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141789] = 6, + [142249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5312), 1, + ACTIONS(5310), 1, anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - STATE(3792), 1, + STATE(3804), 1, sym_comment, - ACTIONS(5314), 13, + ACTIONS(5312), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331001,19 +331386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141820] = 5, + [142278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, + ACTIONS(5271), 1, anon_sym_EQ, - STATE(3793), 1, + STATE(3805), 1, sym_comment, - ACTIONS(5310), 14, + ACTIONS(5273), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -331028,88 +331414,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141849] = 5, + [142307] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5005), 1, - anon_sym_PIPE, - STATE(3794), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7182), 1, + sym_number, + STATE(3806), 1, sym_comment, - ACTIONS(5007), 14, - sym__automatic_semicolon, + STATE(7342), 1, + sym_predefined_type, + STATE(7344), 1, + sym_string, + ACTIONS(7156), 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, + [142346] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5251), 1, anon_sym_EQ, + STATE(3807), 1, + sym_comment, + ACTIONS(5253), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141878] = 5, + [142375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5001), 1, + ACTIONS(5167), 1, + anon_sym_EQ, + STATE(3808), 1, + sym_comment, + ACTIONS(5169), 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(3795), 1, + anon_sym_QMARK, + anon_sym_extends, + [142404] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3809), 1, sym_comment, - ACTIONS(5003), 14, - sym__automatic_semicolon, + ACTIONS(7184), 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, + [142431] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5306), 1, anon_sym_EQ, + STATE(3810), 1, + sym_comment, + ACTIONS(5308), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141907] = 5, + [142460] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, + ACTIONS(5029), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - STATE(3796), 1, + ACTIONS(7164), 1, + anon_sym_extends, + STATE(3811), 1, sym_comment, - ACTIONS(5011), 14, - sym__automatic_semicolon, + ACTIONS(5031), 11, + 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_QMARK, + [142495] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5167), 1, anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + STATE(3812), 1, + sym_comment, + ACTIONS(5169), 11, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [142530] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7186), 1, + sym_number, + STATE(3813), 1, + sym_comment, + STATE(7373), 1, + sym_string, + STATE(7376), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [142569] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7188), 1, + sym_number, + STATE(3814), 1, + sym_comment, + STATE(7312), 1, + sym_predefined_type, + STATE(7313), 1, + sym_string, + ACTIONS(7156), 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, + [142608] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3815), 1, + sym_comment, + ACTIONS(7190), 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, + [142635] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7192), 1, + sym_number, + STATE(3816), 1, + sym_comment, + STATE(7359), 1, + sym_string, + STATE(7361), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [142674] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5339), 1, + anon_sym_EQ, + STATE(3817), 1, + sym_comment, + ACTIONS(5341), 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_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141936] = 5, + [142703] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7194), 1, + sym_number, + STATE(3818), 1, + sym_comment, + STATE(7322), 1, + sym_predefined_type, + STATE(7323), 1, + sym_string, + ACTIONS(7156), 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, + [142742] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3819), 1, + sym_comment, + ACTIONS(7196), 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, + [142769] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7198), 1, + sym_number, + STATE(3820), 1, + sym_comment, + STATE(7352), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [142806] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3821), 1, + sym_comment, + ACTIONS(7200), 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, + [142833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5019), 1, + ACTIONS(5107), 1, anon_sym_PIPE, - STATE(3797), 1, + STATE(3822), 1, sym_comment, - ACTIONS(5021), 14, + ACTIONS(5109), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331124,7 +331853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141965] = 10, + [142862] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -331135,13 +331864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7166), 1, + ACTIONS(7202), 1, sym_number, - STATE(3798), 1, + STATE(3823), 1, sym_comment, - STATE(7307), 1, + STATE(7022), 1, sym_string, - STATE(7308), 1, + STATE(7026), 1, sym_predefined_type, ACTIONS(7156), 9, anon_sym_void, @@ -331153,62 +331882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142004] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5001), 1, - anon_sym_PIPE, - STATE(3799), 1, - sym_comment, - ACTIONS(5003), 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, - [142033] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5304), 1, - anon_sym_EQ, - STATE(3800), 1, - sym_comment, - ACTIONS(5306), 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, - [142062] = 4, + [142901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3801), 1, + STATE(3824), 1, sym_comment, - ACTIONS(7168), 15, + ACTIONS(7204), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -331224,40 +331905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [142089] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5181), 1, - anon_sym_EQ, - STATE(3802), 1, - sym_comment, - ACTIONS(5183), 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, - [142118] = 5, + [142928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5300), 1, + ACTIONS(5111), 1, anon_sym_PIPE, - STATE(3803), 1, + STATE(3825), 1, sym_comment, - ACTIONS(5302), 14, + ACTIONS(5113), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331272,55 +331929,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142147] = 5, + [142957] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5248), 1, - anon_sym_PIPE, - STATE(3804), 1, - sym_comment, - ACTIONS(5250), 14, - sym__automatic_semicolon, + ACTIONS(5119), 1, anon_sym_EQ, + STATE(3826), 1, + sym_comment, + ACTIONS(5121), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142176] = 5, + [142986] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5248), 1, - anon_sym_PIPE, - STATE(3805), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7206), 1, + sym_number, + STATE(3827), 1, sym_comment, - ACTIONS(5250), 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, - [142205] = 10, + STATE(7016), 1, + sym_string, + STATE(7019), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [143025] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -331331,13 +331993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7170), 1, + ACTIONS(7208), 1, sym_number, - STATE(3806), 1, + STATE(3828), 1, sym_comment, - STATE(7191), 1, + STATE(7008), 2, sym_string, - STATE(7192), 1, sym_predefined_type, ACTIONS(7156), 9, anon_sym_void, @@ -331349,16 +332010,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142244] = 5, + [143062] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7210), 1, + sym_number, + STATE(3829), 1, + sym_comment, + STATE(7030), 1, + sym_string, + STATE(7033), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [143101] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5248), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - STATE(3807), 1, + STATE(3830), 1, sym_comment, - ACTIONS(5250), 14, + ACTIONS(5129), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331373,40 +332063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142273] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5185), 1, - anon_sym_EQ, - STATE(3808), 1, - sym_comment, - ACTIONS(5187), 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, - [142302] = 5, + [143130] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5238), 1, + ACTIONS(5001), 1, anon_sym_PIPE, - STATE(3809), 1, + STATE(3831), 1, sym_comment, - ACTIONS(5240), 14, + ACTIONS(5003), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331421,31 +332087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142331] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5189), 1, - anon_sym_EQ, - STATE(3810), 1, - sym_comment, - ACTIONS(5191), 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, - [142360] = 9, + [143159] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -331456,11 +332098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7172), 1, + ACTIONS(7212), 1, sym_number, - STATE(3811), 1, + STATE(3832), 1, sym_comment, - STATE(7281), 2, + STATE(7349), 2, sym_string, sym_predefined_type, ACTIONS(7156), 9, @@ -331473,39 +332115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142397] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3812), 1, - sym_comment, - ACTIONS(7174), 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, - [142424] = 5, + [143196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5238), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - STATE(3813), 1, + STATE(3833), 1, sym_comment, - ACTIONS(5240), 14, + ACTIONS(5129), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331520,16 +332139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142453] = 5, + [143225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5238), 1, + ACTIONS(5013), 1, anon_sym_PIPE, - STATE(3814), 1, + STATE(3834), 1, sym_comment, - ACTIONS(5240), 14, + ACTIONS(5015), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331544,16 +332163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142482] = 5, + [143254] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5013), 1, anon_sym_PIPE, - STATE(3815), 1, + STATE(3835), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5015), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331568,66 +332187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142511] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3816), 1, - sym_comment, - ACTIONS(7176), 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, - [142538] = 8, + [143283] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5350), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3817), 1, - sym_comment, - ACTIONS(5352), 11, - 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_QMARK, - [142573] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5013), 1, anon_sym_PIPE, - STATE(3818), 1, + STATE(3836), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5015), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331642,16 +332211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142602] = 5, + [143312] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5159), 1, anon_sym_PIPE, - STATE(3819), 1, + STATE(3837), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5161), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -331666,47 +332235,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142631] = 5, + [143341] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5223), 1, - anon_sym_PIPE, - STATE(3820), 1, - sym_comment, - ACTIONS(5225), 14, - sym__automatic_semicolon, + ACTIONS(5065), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7214), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142660] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5141), 1, - anon_sym_EQ, - STATE(3821), 1, + STATE(3838), 1, sym_comment, - ACTIONS(5143), 14, + ACTIONS(5067), 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, @@ -331714,235 +332260,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142689] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7178), 1, - sym_number, - STATE(3822), 1, - sym_comment, - STATE(7195), 1, - sym_string, - STATE(7196), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [142728] = 5, + [143372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5296), 1, - anon_sym_EQ, - STATE(3823), 1, - sym_comment, - ACTIONS(5298), 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, + ACTIONS(5159), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [142757] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4995), 1, - anon_sym_EQ, - STATE(3824), 1, + STATE(3839), 1, sym_comment, - ACTIONS(4997), 14, - anon_sym_as, + ACTIONS(5161), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [142786] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3825), 1, - sym_comment, - ACTIONS(7180), 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, - [142813] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3826), 1, - sym_comment, - ACTIONS(7182), 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, - [142840] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7184), 1, - sym_number, - STATE(3827), 1, - sym_comment, - STATE(7289), 1, - sym_string, - STATE(7290), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [142879] = 9, + anon_sym_PIPE_RBRACE, + [143401] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5159), 1, anon_sym_PIPE, - ACTIONS(7134), 1, - anon_sym_LT, - ACTIONS(7186), 1, - anon_sym_DOT, - ACTIONS(7188), 1, - anon_sym_is, - STATE(3828), 1, + STATE(3840), 1, sym_comment, - STATE(4055), 1, - sym_type_arguments, - ACTIONS(4314), 10, + ACTIONS(5161), 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, - [142916] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7190), 1, - sym_number, - STATE(3829), 1, - sym_comment, - STATE(7301), 1, - sym_string, - STATE(7303), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [142955] = 10, + [143430] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7194), 1, + ACTIONS(7218), 1, anon_sym_DOT, - ACTIONS(7196), 1, + ACTIONS(7220), 1, anon_sym_QMARK_DOT, - ACTIONS(7198), 1, + ACTIONS(7222), 1, anon_sym_LT, - STATE(3830), 1, + STATE(3841), 1, sym_comment, - STATE(4076), 1, + STATE(4098), 1, sym_arguments, - STATE(4294), 1, + STATE(4298), 1, sym_type_arguments, - ACTIONS(4244), 9, + ACTIONS(4248), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -331952,106 +332337,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [142994] = 8, + [143469] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(5163), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3831), 1, - sym_comment, - ACTIONS(5165), 11, - 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_QMARK, - [143029] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7192), 1, - anon_sym_LPAREN, - ACTIONS(7198), 1, - anon_sym_LT, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_QMARK_DOT, - STATE(3832), 1, + STATE(3842), 1, sym_comment, - STATE(4077), 1, - sym_arguments, - STATE(4296), 1, - sym_type_arguments, - ACTIONS(4957), 9, + ACTIONS(5165), 14, 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, - [143068] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5373), 1, anon_sym_EQ, - STATE(3833), 1, - sym_comment, - ACTIONS(5375), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143097] = 10, + anon_sym_PIPE_RBRACE, + [143498] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7198), 1, + ACTIONS(7222), 1, anon_sym_LT, - ACTIONS(7204), 1, + ACTIONS(7224), 1, anon_sym_DOT, - ACTIONS(7206), 1, + ACTIONS(7226), 1, anon_sym_QMARK_DOT, - STATE(3834), 1, + STATE(3843), 1, sym_comment, - STATE(4053), 1, + STATE(4102), 1, sym_arguments, - STATE(4298), 1, + STATE(4300), 1, sym_type_arguments, - ACTIONS(4951), 9, + ACTIONS(4959), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -332061,276 +332390,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [143136] = 6, + [143537] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5123), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - STATE(3835), 1, + ACTIONS(5163), 1, + anon_sym_PIPE, + STATE(3844), 1, sym_comment, - ACTIONS(5125), 13, - anon_sym_as, + ACTIONS(5165), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, anon_sym_extends, - [143167] = 5, + anon_sym_PIPE_RBRACE, + [143566] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5127), 1, - anon_sym_EQ, - STATE(3836), 1, + ACTIONS(5163), 1, + anon_sym_PIPE, + STATE(3845), 1, sym_comment, - ACTIONS(5129), 14, - anon_sym_as, + ACTIONS(5165), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143196] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3837), 1, - sym_comment, - ACTIONS(7208), 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, - [143223] = 10, + anon_sym_PIPE_RBRACE, + [143595] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7210), 1, - sym_number, - STATE(3838), 1, + ACTIONS(5231), 1, + anon_sym_PIPE, + STATE(3846), 1, sym_comment, - STATE(7316), 1, - sym_predefined_type, - STATE(7317), 1, - sym_string, - ACTIONS(7156), 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, - [143262] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5119), 1, + ACTIONS(5233), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3839), 1, - sym_comment, - ACTIONS(5121), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143291] = 5, + anon_sym_PIPE_RBRACE, + [143624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_EQ, - STATE(3840), 1, + ACTIONS(5001), 1, + anon_sym_PIPE, + STATE(3847), 1, sym_comment, - ACTIONS(5326), 14, - anon_sym_as, + ACTIONS(5003), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143320] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7212), 1, - sym_number, - STATE(3841), 1, - sym_comment, - STATE(7018), 1, - sym_string, - STATE(7020), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [143359] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7214), 1, - sym_number, - STATE(3842), 1, - sym_comment, - STATE(7015), 1, - sym_string, - STATE(7016), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [143398] = 10, + anon_sym_PIPE_RBRACE, + [143653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7216), 1, - sym_number, - STATE(3843), 1, + ACTIONS(5243), 1, + anon_sym_PIPE, + STATE(3848), 1, sym_comment, - STATE(6994), 1, - sym_string, - STATE(6999), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [143437] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(5245), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3844), 1, - sym_comment, - ACTIONS(5334), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143466] = 5, + anon_sym_PIPE_RBRACE, + [143682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5300), 1, + ACTIONS(5227), 1, anon_sym_PIPE, - STATE(3845), 1, + STATE(3849), 1, sym_comment, - ACTIONS(5302), 14, + ACTIONS(5229), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332345,200 +332534,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143495] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7218), 1, - sym_number, - STATE(3846), 1, - sym_comment, - STATE(6991), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [143532] = 10, + [143711] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7220), 1, - sym_number, - STATE(3847), 1, + ACTIONS(5243), 1, + anon_sym_PIPE, + STATE(3850), 1, sym_comment, - STATE(7336), 1, - sym_predefined_type, - STATE(7338), 1, - sym_string, - ACTIONS(7156), 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, - [143571] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5366), 1, + ACTIONS(5245), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3848), 1, - sym_comment, - ACTIONS(5368), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143600] = 8, + anon_sym_PIPE_RBRACE, + [143740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, + ACTIONS(5227), 1, anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3849), 1, + STATE(3851), 1, sym_comment, - ACTIONS(5025), 11, - 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_QMARK, - [143635] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(5229), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3850), 1, - sym_comment, - ACTIONS(4975), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [143664] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7222), 1, - sym_number, - STATE(3851), 1, - sym_comment, - STATE(7176), 1, - sym_string, - STATE(7186), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [143703] = 4, + anon_sym_PIPE_RBRACE, + [143769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3852), 1, - sym_comment, - ACTIONS(7224), 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, - [143730] = 5, + ACTIONS(5005), 1, + anon_sym_PIPE, + STATE(3852), 1, + sym_comment, + ACTIONS(5007), 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, + [143798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5320), 1, + ACTIONS(5282), 1, anon_sym_EQ, STATE(3853), 1, sym_comment, - ACTIONS(5322), 14, + ACTIONS(5284), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332553,73 +332630,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143759] = 10, + [143827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7226), 1, - sym_number, + ACTIONS(5039), 1, + anon_sym_PIPE, STATE(3854), 1, sym_comment, - STATE(7343), 1, - sym_predefined_type, - STATE(7344), 1, - sym_string, - ACTIONS(7156), 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, - [143798] = 9, + ACTIONS(5041), 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, + [143856] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7222), 1, + anon_sym_LT, ACTIONS(7228), 1, - sym_number, + anon_sym_DOT, + ACTIONS(7230), 1, + anon_sym_QMARK_DOT, STATE(3855), 1, sym_comment, - STATE(7346), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [143835] = 5, + STATE(4107), 1, + sym_arguments, + STATE(4302), 1, + sym_type_arguments, + ACTIONS(4925), 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, + [143895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, + ACTIONS(5005), 1, anon_sym_PIPE, STATE(3856), 1, sym_comment, - ACTIONS(5292), 14, + ACTIONS(5007), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332634,40 +332707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143864] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5244), 1, - anon_sym_EQ, - STATE(3857), 1, - sym_comment, - ACTIONS(5246), 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, - [143893] = 5, + [143924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, + ACTIONS(5039), 1, anon_sym_PIPE, - STATE(3858), 1, + STATE(3857), 1, sym_comment, - ACTIONS(5292), 14, + ACTIONS(5041), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332682,90 +332731,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143922] = 6, + [143953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, + ACTIONS(5374), 1, anon_sym_EQ, - ACTIONS(7230), 1, - anon_sym_LBRACK, - STATE(3859), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + STATE(3858), 1, sym_comment, - ACTIONS(5015), 13, + ACTIONS(5376), 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_QMARK, anon_sym_extends, - [143953] = 6, + [143984] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5264), 1, - anon_sym_EQ, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, ACTIONS(7232), 1, - anon_sym_extends, + sym_number, + STATE(3859), 1, + sym_comment, + STATE(7185), 1, + sym_string, + STATE(7190), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [144023] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(3860), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(7234), 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, + [144050] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5400), 1, + anon_sym_EQ, + ACTIONS(7214), 1, + anon_sym_LBRACK, + STATE(3861), 1, + sym_comment, + ACTIONS(5402), 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_QMARK, - [143984] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5063), 1, - anon_sym_PIPE, - STATE(3861), 1, - sym_comment, - ACTIONS(5065), 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, - [144013] = 5, + [144081] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5157), 1, + ACTIONS(5394), 1, anon_sym_EQ, + ACTIONS(7236), 1, + anon_sym_extends, STATE(3862), 1, sym_comment, - ACTIONS(5159), 14, + ACTIONS(5396), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332779,23 +332858,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [144042] = 7, + [144112] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5274), 1, + ACTIONS(5390), 1, anon_sym_EQ, - ACTIONS(7230), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, STATE(3863), 1, sym_comment, - ACTIONS(5280), 3, + ACTIONS(5067), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5276), 10, + ACTIONS(5392), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332806,22 +332884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [144075] = 8, + [144145] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, + ACTIONS(5386), 1, anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, STATE(3864), 1, sym_comment, - ACTIONS(5284), 11, + ACTIONS(5388), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332833,16 +332911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [144110] = 5, + [144180] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5261), 1, anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, STATE(3865), 1, sym_comment, - ACTIONS(5280), 14, + ACTIONS(5263), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332853,28 +332937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [144139] = 6, + [144215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_EQ, - ACTIONS(7230), 1, - anon_sym_LBRACK, STATE(3866), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5406), 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, @@ -332882,16 +332962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144170] = 5, + [144244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(5382), 1, anon_sym_EQ, STATE(3867), 1, sym_comment, - ACTIONS(4965), 14, + ACTIONS(5384), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332906,16 +332986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144199] = 5, + [144273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5195), 1, + ACTIONS(5247), 1, anon_sym_EQ, STATE(3868), 1, sym_comment, - ACTIONS(5197), 14, + ACTIONS(5249), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -332930,44 +333010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144228] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7234), 1, - sym_number, - STATE(3869), 1, - sym_comment, - STATE(7335), 2, - sym_string, - sym_predefined_type, - ACTIONS(7156), 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, - [144265] = 5, + [144302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5059), 1, + ACTIONS(5025), 1, anon_sym_PIPE, - STATE(3870), 1, + STATE(3869), 1, sym_comment, - ACTIONS(5061), 14, + ACTIONS(5027), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -332982,16 +333034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144294] = 5, + [144331] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, + ACTIONS(5025), 1, anon_sym_PIPE, - STATE(3871), 1, + STATE(3870), 1, sym_comment, - ACTIONS(5133), 14, + ACTIONS(5027), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333006,16 +333058,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144323] = 5, + [144360] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5009), 1, + ACTIONS(5085), 1, + anon_sym_EQ, + STATE(3871), 1, + sym_comment, + ACTIONS(5087), 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, + [144389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5025), 1, anon_sym_PIPE, STATE(3872), 1, sym_comment, - ACTIONS(5011), 14, + ACTIONS(5027), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333030,45 +333106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144352] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7236), 1, - sym_number, - STATE(3873), 1, - sym_comment, - STATE(7353), 1, - sym_string, - STATE(7355), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [144391] = 5, + [144418] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, + ACTIONS(5081), 1, anon_sym_PIPE, - STATE(3874), 1, + STATE(3873), 1, sym_comment, - ACTIONS(5330), 14, + ACTIONS(5083), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333083,16 +333130,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144420] = 5, + [144447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3874), 1, + sym_comment, + ACTIONS(5011), 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, + [144476] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, anon_sym_PIPE, STATE(3875), 1, sym_comment, - ACTIONS(5330), 14, + ACTIONS(5083), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333107,16 +333178,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144449] = 5, + [144505] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5055), 1, + ACTIONS(5257), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, STATE(3876), 1, sym_comment, - ACTIONS(5057), 14, + ACTIONS(5259), 11, + 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_QMARK, + [144540] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_PIPE, + STATE(3877), 1, + sym_comment, + ACTIONS(5083), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333131,16 +333229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144478] = 5, + [144569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - STATE(3877), 1, + STATE(3878), 1, sym_comment, - ACTIONS(5133), 14, + ACTIONS(5241), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333155,69 +333253,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144507] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_unique, - ACTIONS(7238), 1, - sym_number, - STATE(3878), 1, - sym_comment, - STATE(7360), 1, - sym_string, - STATE(7361), 1, - sym_predefined_type, - ACTIONS(7156), 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, - [144546] = 5, + [144598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5137), 1, - anon_sym_EQ, + ACTIONS(5239), 1, + anon_sym_PIPE, STATE(3879), 1, sym_comment, - ACTIONS(5139), 14, - anon_sym_as, + ACTIONS(5241), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [144575] = 5, + anon_sym_PIPE_RBRACE, + [144627] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5354), 1, + ACTIONS(5302), 1, anon_sym_EQ, STATE(3880), 1, sym_comment, - ACTIONS(5356), 14, + ACTIONS(5304), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333232,16 +333301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144604] = 5, + [144656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, + ACTIONS(5239), 1, anon_sym_PIPE, STATE(3881), 1, sym_comment, - ACTIONS(5330), 14, + ACTIONS(5241), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333256,31 +333325,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144633] = 5, + [144685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5300), 1, - anon_sym_PIPE, + ACTIONS(5318), 1, + anon_sym_EQ, STATE(3882), 1, sym_comment, - ACTIONS(5302), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5063), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144662] = 10, + [144714] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -333291,13 +333360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7240), 1, + ACTIONS(7238), 1, sym_number, STATE(3883), 1, sym_comment, - STATE(7367), 1, + STATE(7200), 1, sym_string, - STATE(7370), 1, + STATE(7201), 1, sym_predefined_type, ACTIONS(7156), 9, anon_sym_void, @@ -333309,16 +333378,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [144701] = 5, + [144753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5055), 1, + ACTIONS(5267), 1, anon_sym_PIPE, STATE(3884), 1, sym_comment, - ACTIONS(5057), 14, + ACTIONS(5269), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -333333,16 +333402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144730] = 5, + [144782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5256), 1, + ACTIONS(4963), 1, anon_sym_EQ, STATE(3885), 1, sym_comment, - ACTIONS(5258), 14, + ACTIONS(4965), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333357,16 +333426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144759] = 5, + [144811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5260), 1, + ACTIONS(5378), 1, anon_sym_EQ, STATE(3886), 1, sym_comment, - ACTIONS(5262), 14, + ACTIONS(5380), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333381,16 +333450,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144788] = 5, + [144840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5205), 1, - anon_sym_EQ, STATE(3887), 1, sym_comment, - ACTIONS(5207), 14, + ACTIONS(7240), 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, + [144867] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7242), 1, + sym_number, + STATE(3888), 1, + sym_comment, + STATE(7197), 1, + sym_string, + STATE(7198), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [144906] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5071), 1, + anon_sym_EQ, + STATE(3889), 1, + sym_comment, + ACTIONS(5073), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333405,40 +333526,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144817] = 5, + [144935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5290), 1, - anon_sym_PIPE, - STATE(3888), 1, - sym_comment, - ACTIONS(5292), 14, - sym__automatic_semicolon, + ACTIONS(5362), 1, anon_sym_EQ, + STATE(3890), 1, + sym_comment, + ACTIONS(5364), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144846] = 5, + [144964] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7244), 1, + sym_number, + STATE(3891), 1, + sym_comment, + STATE(7383), 1, + sym_string, + STATE(7392), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [145003] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, + ACTIONS(5065), 1, anon_sym_EQ, - STATE(3889), 1, + STATE(3892), 1, sym_comment, - ACTIONS(5272), 14, + ACTIONS(5067), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333453,16 +333603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144875] = 5, + [145032] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, + ACTIONS(5131), 1, anon_sym_EQ, - STATE(3890), 1, + STATE(3893), 1, sym_comment, - ACTIONS(5215), 14, + ACTIONS(5133), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333477,45 +333627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144904] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3891), 1, - sym_comment, - ACTIONS(7242), 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, - [144931] = 8, + [145061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5145), 1, + ACTIONS(4977), 1, anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - STATE(3892), 1, + STATE(3894), 1, sym_comment, - ACTIONS(5147), 11, + ACTIONS(4979), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333526,103 +333647,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [144966] = 15, + anon_sym_extends, + [145090] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, ACTIONS(7248), 1, - anon_sym_BANG, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7256), 1, - anon_sym_QMARK, - STATE(3893), 1, + anon_sym_type, + STATE(3895), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(5142), 1, - sym_type_annotation, - STATE(5990), 1, - sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6893), 1, - sym__call_signature, - ACTIONS(7246), 3, - sym__automatic_semicolon, + STATE(5444), 1, + sym_import_require_clause, + STATE(5445), 1, + sym_string, + STATE(6415), 1, + sym__import_identifier, + STATE(6900), 1, + sym_import_clause, + ACTIONS(7250), 2, anon_sym_COMMA, - anon_sym_SEMI, - [145014] = 13, + anon_sym_from, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [145138] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4650), 1, + ACTIONS(4655), 1, anon_sym_RBRACE, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7260), 1, + ACTIONS(7254), 1, anon_sym_LPAREN, - STATE(3894), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(3896), 1, sym_comment, - STATE(4626), 1, + STATE(4389), 1, sym_formal_parameters, - STATE(5732), 1, + STATE(5737), 1, aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(6826), 1, + STATE(6831), 1, sym_type_parameters, - ACTIONS(4640), 5, + ACTIONS(4642), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145058] = 13, + [145182] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4637), 1, - anon_sym_RBRACE, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7260), 1, + ACTIONS(7262), 1, + anon_sym_BANG, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(3895), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7268), 1, + anon_sym_QMARK, + STATE(3897), 1, sym_comment, - STATE(4626), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - STATE(6826), 1, + STATE(4756), 1, + sym__call_signature, + STATE(5072), 1, + sym_type_annotation, + STATE(5901), 1, + sym__initializer, + STATE(6465), 1, sym_type_parameters, - ACTIONS(4640), 5, + ACTIONS(7260), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [145230] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, + ACTIONS(7272), 1, + anon_sym_BANG, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7276), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145102] = 15, + STATE(3898), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(5184), 1, + sym_type_annotation, + STATE(6040), 1, + sym__initializer, + STATE(6363), 1, + sym_type_parameters, + STATE(6617), 1, + sym__call_signature, + ACTIONS(7270), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145278] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333631,113 +333790,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7246), 1, sym_identifier, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - STATE(3896), 1, + STATE(3899), 1, sym_comment, - STATE(5441), 1, + STATE(5547), 1, sym_import_require_clause, - STATE(5443), 1, + STATE(5548), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6902), 1, + STATE(6565), 1, sym_import_clause, - ACTIONS(7266), 2, + ACTIONS(7250), 2, anon_sym_COMMA, anon_sym_from, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - [145150] = 15, + [145326] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, - STATE(3897), 1, + ACTIONS(203), 1, + anon_sym_unique, + STATE(2409), 1, + sym_type_predicate, + STATE(3900), 1, sym_comment, - STATE(5536), 1, - sym_import_require_clause, - STATE(5537), 1, - sym_string, - STATE(6384), 1, - sym__import_identifier, - STATE(6899), 1, - sym_import_clause, - ACTIONS(7266), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, - [145198] = 15, + STATE(7250), 1, + sym_predefined_type, + ACTIONS(7278), 2, + sym_identifier, + sym_this, + ACTIONS(205), 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, + [145360] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(4915), 1, + anon_sym_PIPE, + ACTIONS(7140), 1, anon_sym_LT, - ACTIONS(7270), 1, - anon_sym_BANG, - ACTIONS(7272), 1, - anon_sym_LPAREN, - ACTIONS(7274), 1, - anon_sym_QMARK, - STATE(3898), 1, + ACTIONS(7170), 1, + anon_sym_DOT, + STATE(3901), 1, sym_comment, - STATE(4303), 1, - sym_formal_parameters, - STATE(4725), 1, - sym__call_signature, - STATE(5072), 1, - sym_type_annotation, - STATE(5902), 1, - sym__initializer, - STATE(6464), 1, - sym_type_parameters, - ACTIONS(7268), 3, + STATE(4093), 1, + sym_type_arguments, + ACTIONS(4307), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145246] = 8, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145394] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(204), 1, + ACTIONS(203), 1, anon_sym_unique, - STATE(3899), 1, + STATE(3902), 1, sym_comment, - STATE(4110), 1, + STATE(4114), 1, sym_type_predicate, - STATE(7283), 1, + STATE(7304), 1, sym_predefined_type, - ACTIONS(7276), 2, + ACTIONS(7280), 2, sym_identifier, sym_this, - ACTIONS(206), 9, + ACTIONS(205), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -333747,600 +333892,532 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [145280] = 15, + [145428] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4649), 1, + anon_sym_RBRACE, ACTIONS(7252), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7280), 1, - anon_sym_BANG, - ACTIONS(7282), 1, - anon_sym_QMARK, - STATE(3900), 1, + STATE(3903), 1, sym_comment, - STATE(4815), 1, + STATE(4389), 1, sym_formal_parameters, - STATE(5259), 1, - sym_type_annotation, - STATE(6156), 1, - sym__initializer, - STATE(6346), 1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + STATE(6831), 1, sym_type_parameters, - STATE(6447), 1, - sym__call_signature, - ACTIONS(7278), 3, + ACTIONS(4642), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [145328] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7284), 1, - anon_sym_BANG, - ACTIONS(7286), 1, anon_sym_QMARK, - STATE(3901), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(5263), 1, - sym_type_annotation, - STATE(6157), 1, - sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6440), 1, - sym__call_signature, - ACTIONS(7278), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145376] = 15, + anon_sym_PIPE_RBRACE, + [145472] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(7290), 1, + ACTIONS(7282), 1, anon_sym_BANG, - ACTIONS(7292), 1, + ACTIONS(7284), 1, anon_sym_QMARK, - STATE(3902), 1, + STATE(3904), 1, sym_comment, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4696), 1, - sym__call_signature, - STATE(5171), 1, + STATE(5180), 1, sym_type_annotation, - STATE(6015), 1, + STATE(6032), 1, sym__initializer, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7288), 3, + STATE(6624), 1, + sym__call_signature, + ACTIONS(7270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145424] = 15, + [145520] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(7296), 1, + ACTIONS(7288), 1, anon_sym_BANG, - ACTIONS(7298), 1, + ACTIONS(7290), 1, anon_sym_QMARK, - STATE(3903), 1, + STATE(3905), 1, sym_comment, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4685), 1, - sym__call_signature, - STATE(5229), 1, + STATE(5331), 1, sym_type_annotation, - STATE(6071), 1, + STATE(6202), 1, sym__initializer, - STATE(6464), 1, + STATE(6352), 1, + sym__call_signature, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7294), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145472] = 15, + [145568] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, anon_sym_LPAREN, - ACTIONS(7302), 1, - anon_sym_BANG, - ACTIONS(7304), 1, - anon_sym_QMARK, - STATE(3904), 1, - sym_comment, - STATE(4303), 1, - sym_formal_parameters, - STATE(4765), 1, - sym__call_signature, - STATE(5139), 1, - sym_type_annotation, - STATE(5974), 1, - sym__initializer, - STATE(6464), 1, - sym_type_parameters, - ACTIONS(7300), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145520] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, + ACTIONS(7294), 1, anon_sym_BANG, - ACTIONS(7306), 1, + ACTIONS(7296), 1, anon_sym_QMARK, - STATE(3905), 1, + STATE(3906), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5171), 1, + STATE(5174), 1, sym_type_annotation, - STATE(6028), 1, - sym__call_signature, STATE(6029), 1, + sym__call_signature, + STATE(6030), 1, sym__initializer, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7288), 3, + ACTIONS(7292), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145568] = 15, + [145616] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7310), 1, + ACTIONS(7300), 1, anon_sym_BANG, - ACTIONS(7312), 1, + ACTIONS(7302), 1, anon_sym_QMARK, - STATE(3906), 1, + STATE(3907), 1, sym_comment, - STATE(4815), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5326), 1, - sym_type_annotation, - STATE(6172), 1, - sym__initializer, - STATE(6312), 1, + STATE(4677), 1, sym__call_signature, - STATE(6346), 1, - sym_type_parameters, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145616] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, - STATE(3907), 1, - sym_comment, - STATE(5544), 1, - sym_import_require_clause, - STATE(5545), 1, - sym_string, - STATE(6384), 1, - sym__import_identifier, - STATE(6563), 1, - sym_import_clause, - ACTIONS(7266), 2, + STATE(5231), 1, + sym_type_annotation, + STATE(6073), 1, + sym__initializer, + STATE(6465), 1, + sym_type_parameters, + ACTIONS(7298), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, - [145664] = 8, + anon_sym_SEMI, + [145664] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_PIPE, - ACTIONS(7134), 1, - anon_sym_LT, - ACTIONS(7186), 1, - anon_sym_DOT, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, STATE(3908), 1, sym_comment, - STATE(4055), 1, - sym_type_arguments, - ACTIONS(4314), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(2647), 2, + sym_template_string, + sym_arguments, + ACTIONS(5133), 10, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [145698] = 15, + [145696] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7314), 1, + ACTIONS(7294), 1, anon_sym_BANG, - ACTIONS(7316), 1, + ACTIONS(7304), 1, anon_sym_QMARK, STATE(3909), 1, sym_comment, - STATE(4815), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5277), 1, + STATE(4710), 1, + sym__call_signature, + STATE(5174), 1, sym_type_annotation, - STATE(6164), 1, + STATE(6016), 1, sym__initializer, - STATE(6346), 1, + STATE(6465), 1, sym_type_parameters, - STATE(6417), 1, - sym__call_signature, - ACTIONS(7278), 3, + ACTIONS(7292), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145746] = 15, + [145744] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7318), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, anon_sym_BANG, - ACTIONS(7320), 1, + ACTIONS(7310), 1, anon_sym_QMARK, STATE(3910), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5278), 1, + STATE(5146), 1, sym_type_annotation, - STATE(6165), 1, + STATE(5992), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6414), 1, + STATE(6836), 1, sym__call_signature, - ACTIONS(7278), 3, + ACTIONS(7306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145794] = 15, + [145792] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(7302), 1, + ACTIONS(7314), 1, anon_sym_BANG, - ACTIONS(7322), 1, + ACTIONS(7316), 1, anon_sym_QMARK, STATE(3911), 1, sym_comment, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5139), 1, + STATE(4980), 1, sym_type_annotation, - STATE(5978), 1, - sym__call_signature, - STATE(5984), 1, + STATE(5761), 1, sym__initializer, - STATE(6358), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7300), 3, + STATE(6600), 1, + sym__call_signature, + ACTIONS(7312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145842] = 15, + [145840] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_type, + STATE(3912), 1, + sym_comment, + STATE(5511), 1, + sym_import_require_clause, + STATE(5512), 1, + sym_string, + STATE(6415), 1, + sym__import_identifier, + STATE(6578), 1, + sym_import_clause, + ACTIONS(7250), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [145888] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7326), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7320), 1, anon_sym_BANG, - ACTIONS(7328), 1, + ACTIONS(7322), 1, anon_sym_QMARK, - STATE(3912), 1, + STATE(3913), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4971), 1, + STATE(5236), 1, sym_type_annotation, - STATE(5759), 1, + STATE(6099), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6768), 1, + STATE(6502), 1, sym__call_signature, - ACTIONS(7324), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145890] = 15, + [145936] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(203), 1, + anon_sym_unique, + STATE(3914), 1, + sym_comment, + STATE(4340), 1, + sym_type_predicate, + STATE(7178), 1, + sym_predefined_type, + ACTIONS(7324), 2, + sym_identifier, + sym_this, + ACTIONS(205), 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, + [145970] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7330), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7326), 1, anon_sym_BANG, - ACTIONS(7332), 1, + ACTIONS(7328), 1, anon_sym_QMARK, - STATE(3913), 1, + STATE(3915), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5257), 1, + STATE(5326), 1, sym_type_annotation, - STATE(6074), 1, + STATE(6217), 1, sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6511), 1, + STATE(6343), 1, sym__call_signature, - ACTIONS(7308), 3, + STATE(6363), 1, + sym_type_parameters, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145938] = 15, + [146018] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7334), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7330), 1, anon_sym_BANG, - ACTIONS(7336), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(3914), 1, + STATE(3916), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5331), 1, + STATE(5239), 1, sym_type_annotation, - STATE(6201), 1, + STATE(6112), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6347), 1, + STATE(6493), 1, sym__call_signature, - ACTIONS(7308), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145986] = 13, + [146066] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4647), 1, + ACTIONS(4639), 1, anon_sym_RBRACE, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7260), 1, + ACTIONS(7254), 1, anon_sym_LPAREN, - STATE(3915), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(3917), 1, sym_comment, - STATE(4626), 1, + STATE(4389), 1, sym_formal_parameters, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - STATE(6826), 1, + STATE(6831), 1, sym_type_parameters, - ACTIONS(4640), 5, + ACTIONS(4642), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146030] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - STATE(3916), 1, - sym_comment, - STATE(2625), 2, - sym_template_string, - sym_arguments, - ACTIONS(5215), 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, - [146062] = 15, + [146110] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7340), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7334), 1, anon_sym_BANG, - ACTIONS(7342), 1, + ACTIONS(7336), 1, anon_sym_QMARK, - STATE(3917), 1, + STATE(3918), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5176), 1, + STATE(5255), 1, sym_type_annotation, - STATE(6036), 1, + STATE(6069), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6620), 1, + STATE(6515), 1, sym__call_signature, - ACTIONS(7338), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146110] = 8, + [146158] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(204), 1, + ACTIONS(203), 1, anon_sym_unique, - STATE(3918), 1, - sym_comment, - STATE(4338), 1, + STATE(2834), 1, sym_type_predicate, - STATE(7171), 1, + STATE(3919), 1, + sym_comment, + STATE(6962), 1, sym_predefined_type, - ACTIONS(7344), 2, + ACTIONS(7338), 2, sym_identifier, sym_this, - ACTIONS(206), 9, + ACTIONS(205), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -334350,148 +334427,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146144] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, - STATE(3919), 1, - sym_comment, - STATE(5483), 1, - sym_string, - STATE(5484), 1, - sym_import_require_clause, - STATE(6384), 1, - sym__import_identifier, - STATE(6779), 1, - sym_import_clause, - ACTIONS(7266), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, [146192] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7346), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7340), 1, anon_sym_BANG, - ACTIONS(7348), 1, + ACTIONS(7342), 1, anon_sym_QMARK, STATE(3920), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5237), 1, + STATE(5283), 1, sym_type_annotation, - STATE(6106), 1, + STATE(6170), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6489), 1, + STATE(6418), 1, sym__call_signature, - ACTIONS(7278), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146240] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(204), 1, - anon_sym_unique, - STATE(2919), 1, - sym_type_predicate, - STATE(3921), 1, - sym_comment, - STATE(6963), 1, - sym_predefined_type, - ACTIONS(7350), 2, - sym_identifier, - sym_this, - ACTIONS(206), 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, - [146274] = 15, + [146240] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7352), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, anon_sym_BANG, - ACTIONS(7354), 1, + ACTIONS(7346), 1, anon_sym_QMARK, - STATE(3922), 1, + STATE(3921), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5180), 1, + STATE(5282), 1, sym_type_annotation, - STATE(6038), 1, + STATE(6168), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6617), 1, + STATE(6421), 1, sym__call_signature, - ACTIONS(7338), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146322] = 8, + [146288] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_type, + STATE(3922), 1, + sym_comment, + STATE(5488), 1, + sym_string, + STATE(5489), 1, + sym_import_require_clause, + STATE(6415), 1, + sym__import_identifier, + STATE(6785), 1, + sym_import_clause, + ACTIONS(7250), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [146336] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(204), 1, + ACTIONS(203), 1, anon_sym_unique, - STATE(3824), 1, + STATE(3786), 1, sym_type_predicate, STATE(3923), 1, sym_comment, - STATE(7026), 1, + STATE(7035), 1, sym_predefined_type, - ACTIONS(7356), 2, + ACTIONS(7348), 2, sym_identifier, sym_this, - ACTIONS(206), 9, + ACTIONS(205), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -334501,168 +334552,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146356] = 13, + [146370] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_RBRACE, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7260), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, anon_sym_LPAREN, + ACTIONS(7350), 1, + anon_sym_BANG, + ACTIONS(7352), 1, + anon_sym_QMARK, STATE(3924), 1, sym_comment, - STATE(4626), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - STATE(6826), 1, + STATE(5200), 1, + sym_type_annotation, + STATE(6049), 1, + sym__initializer, + STATE(6363), 1, sym_type_parameters, - ACTIONS(4640), 5, + STATE(6536), 1, + sym__call_signature, + ACTIONS(7270), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [146418] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_BANG, + ACTIONS(7356), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146400] = 15, + STATE(3925), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(5324), 1, + sym_type_annotation, + STATE(6172), 1, + sym__initializer, + STATE(6363), 1, + sym_type_parameters, + STATE(6412), 1, + sym__call_signature, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146466] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, ACTIONS(7358), 1, anon_sym_BANG, ACTIONS(7360), 1, anon_sym_QMARK, - STATE(3925), 1, + STATE(3926), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5199), 1, + STATE(5268), 1, sym_type_annotation, - STATE(6054), 1, + STATE(6163), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6585), 1, + STATE(6442), 1, sym__call_signature, - ACTIONS(7338), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146448] = 15, + [146514] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_RBRACE, ACTIONS(7252), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + STATE(3927), 1, + sym_comment, + STATE(4389), 1, + sym_formal_parameters, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + STATE(6831), 1, + sym_type_parameters, + ACTIONS(4642), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146558] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(7364), 1, + ACTIONS(7362), 1, anon_sym_BANG, - ACTIONS(7366), 1, + ACTIONS(7364), 1, anon_sym_QMARK, - STATE(3926), 1, + STATE(3928), 1, sym_comment, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4704), 1, - sym__call_signature, - STATE(5315), 1, + STATE(5263), 1, sym_type_annotation, - STATE(6185), 1, + STATE(6162), 1, sym__initializer, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7362), 3, + STATE(6449), 1, + sym__call_signature, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146496] = 15, + [146606] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, ACTIONS(7368), 1, anon_sym_BANG, ACTIONS(7370), 1, anon_sym_QMARK, - STATE(3927), 1, + STATE(3929), 1, sym_comment, - STATE(4815), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5198), 1, + STATE(4692), 1, + sym__call_signature, + STATE(5142), 1, sym_type_annotation, - STATE(6050), 1, + STATE(5975), 1, sym__initializer, - STATE(6346), 1, + STATE(6465), 1, sym_type_parameters, - STATE(6530), 1, - sym__call_signature, - ACTIONS(7338), 3, + ACTIONS(7366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146544] = 13, + [146654] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4653), 1, - anon_sym_RBRACE, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(3928), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7368), 1, + anon_sym_BANG, + ACTIONS(7372), 1, + anon_sym_QMARK, + STATE(3930), 1, sym_comment, - STATE(4626), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - STATE(6826), 1, + STATE(5142), 1, + sym_type_annotation, + STATE(5978), 1, + sym__call_signature, + STATE(5979), 1, + sym__initializer, + STATE(6380), 1, sym_type_parameters, - ACTIONS(4640), 5, + ACTIONS(7366), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [146702] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7266), 1, anon_sym_COLON, + ACTIONS(7376), 1, + anon_sym_BANG, + ACTIONS(7378), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146588] = 15, + STATE(3931), 1, + sym_comment, + STATE(4226), 1, + sym_formal_parameters, + STATE(4685), 1, + sym__call_signature, + STATE(5317), 1, + sym_type_annotation, + STATE(6193), 1, + sym__initializer, + STATE(6465), 1, + sym_type_parameters, + ACTIONS(7374), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146750] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334671,173 +334823,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7246), 1, sym_identifier, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - STATE(3929), 1, + STATE(3932), 1, sym_comment, - STATE(5508), 1, + STATE(5539), 1, sym_import_require_clause, - STATE(5509), 1, + STATE(5540), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6572), 1, + STATE(6905), 1, sym_import_clause, - ACTIONS(7266), 2, + ACTIONS(7250), 2, anon_sym_COMMA, anon_sym_from, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - [146636] = 15, + [146798] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4652), 1, + anon_sym_RBRACE, ACTIONS(7252), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7372), 1, - anon_sym_BANG, - ACTIONS(7374), 1, - anon_sym_QMARK, - STATE(3930), 1, + STATE(3933), 1, sym_comment, - STATE(4815), 1, + STATE(4389), 1, sym_formal_parameters, - STATE(5234), 1, - sym_type_annotation, - STATE(6093), 1, - sym__initializer, - STATE(6346), 1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + STATE(6831), 1, sym_type_parameters, - STATE(6500), 1, - sym__call_signature, - ACTIONS(7278), 3, + ACTIONS(4642), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146684] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(204), 1, - anon_sym_unique, - STATE(2348), 1, - sym_type_predicate, - STATE(3931), 1, - sym_comment, - STATE(7247), 1, - sym_predefined_type, - ACTIONS(7376), 2, - sym_identifier, - sym_this, - ACTIONS(206), 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, - [146718] = 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146842] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7378), 1, - anon_sym_BANG, + ACTIONS(7274), 1, + anon_sym_LPAREN, ACTIONS(7380), 1, + anon_sym_BANG, + ACTIONS(7382), 1, anon_sym_QMARK, - STATE(3932), 1, + STATE(3934), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5323), 1, + STATE(5201), 1, sym_type_annotation, - STATE(6213), 1, + STATE(6052), 1, sym__initializer, - STATE(6344), 1, - sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7308), 3, + STATE(6589), 1, + sym__call_signature, + ACTIONS(7270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146766] = 4, + [146890] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3933), 1, - sym_comment, - ACTIONS(5003), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2154), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [146791] = 5, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, + ACTIONS(5324), 1, anon_sym_PIPE, - STATE(3934), 1, + STATE(3935), 1, sym_comment, - ACTIONS(5151), 12, + ACTIONS(5326), 11, 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_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [146818] = 4, + [146919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3935), 1, + STATE(3936), 1, sym_comment, - ACTIONS(5330), 13, + ACTIONS(5041), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334851,39 +334955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146843] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7198), 1, - anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_DOT, - ACTIONS(7384), 1, - anon_sym_is, - STATE(3936), 1, - sym_comment, - STATE(4210), 1, - sym_type_arguments, - ACTIONS(4314), 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, - [146876] = 4, + [146944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3937), 1, sym_comment, - ACTIONS(5061), 13, + ACTIONS(5245), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334897,14 +334976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146901] = 4, + [146969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3938), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5003), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334918,58 +334997,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146926] = 5, + [146994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, - anon_sym_PIPE, STATE(3939), 1, sym_comment, - ACTIONS(5135), 12, + ACTIONS(5129), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146953] = 5, + [147019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, - anon_sym_PIPE, STATE(3940), 1, sym_comment, - ACTIONS(5153), 12, + ACTIONS(5003), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146980] = 4, + [147044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3941), 1, sym_comment, - ACTIONS(5288), 13, + ACTIONS(5129), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -334983,58 +335060,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147005] = 5, + [147069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, - anon_sym_PIPE, STATE(3942), 1, sym_comment, - ACTIONS(5153), 12, + ACTIONS(5113), 13, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147032] = 5, + [147094] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, - anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_LT, + ACTIONS(7384), 1, + anon_sym_DOT, + ACTIONS(7386), 1, + anon_sym_is, STATE(3943), 1, sym_comment, - ACTIONS(5161), 12, + STATE(4217), 1, + sym_type_arguments, + ACTIONS(4307), 9, 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_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147059] = 4, + [147127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3944), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5109), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335048,57 +335127,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147084] = 4, + [147152] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7390), 1, + anon_sym_QMARK, STATE(3945), 1, sym_comment, - ACTIONS(5302), 13, + STATE(4119), 1, + sym_formal_parameters, + STATE(5091), 1, + sym__call_signature, + STATE(5092), 1, + sym_type_annotation, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7388), 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, - [147109] = 5, + anon_sym_PIPE_RBRACE, + [147193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, + ACTIONS(5115), 1, anon_sym_PIPE, STATE(3946), 1, sym_comment, - ACTIONS(5161), 12, + ACTIONS(5117), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147136] = 4, + [147220] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7394), 1, + anon_sym_QMARK, STATE(3947), 1, sym_comment, - ACTIONS(5330), 13, + STATE(4119), 1, + sym_formal_parameters, + STATE(5160), 1, + sym_type_annotation, + STATE(5161), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7392), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147261] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3948), 1, + sym_comment, + ACTIONS(5269), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335112,35 +335228,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147161] = 4, + [147286] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3948), 1, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(3949), 1, sym_comment, - ACTIONS(5330), 13, + STATE(4115), 1, + sym_type_arguments, + ACTIONS(4979), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [147186] = 4, + anon_sym_PIPE_RBRACE, + [147317] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3949), 1, + STATE(3950), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5241), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335154,43 +335273,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147211] = 12, + [147342] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2252), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(7388), 1, - anon_sym_QMARK, - STATE(3950), 1, + ACTIONS(5324), 1, + anon_sym_PIPE, + STATE(3951), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(4524), 1, - sym__call_signature, - STATE(5150), 1, - sym_type_annotation, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7386), 5, + ACTIONS(5326), 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, - [147252] = 4, + [147371] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3951), 1, + STATE(3952), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5241), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335204,20 +335317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147277] = 7, + [147396] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(7396), 1, anon_sym_DOT, - ACTIONS(7392), 1, + ACTIONS(7398), 1, anon_sym_QMARK_DOT, - STATE(3952), 1, + STATE(3953), 1, sym_comment, - ACTIONS(5338), 10, + ACTIONS(5294), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -335228,66 +335341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147308] = 5, + [147427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5199), 1, - anon_sym_PIPE, - STATE(3953), 1, + STATE(3954), 1, sym_comment, - ACTIONS(5201), 12, + ACTIONS(5241), 13, 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_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147335] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7084), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7090), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_EQ, - ACTIONS(7399), 1, - anon_sym_COLON, - ACTIONS(7401), 1, anon_sym_extends, - STATE(3823), 1, - sym_type_arguments, - STATE(3954), 1, - sym_comment, - STATE(5520), 1, - sym_constraint, - STATE(6696), 1, - sym_default_type, - ACTIONS(7396), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4314), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [147378] = 4, + [147452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3955), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5083), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335301,43 +335383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147403] = 12, + [147477] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(7406), 1, - anon_sym_QMARK, + ACTIONS(4463), 1, + anon_sym_PIPE, STATE(3956), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(5089), 1, - sym__call_signature, - STATE(5090), 1, - sym_type_annotation, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(5155), 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, - [147444] = 4, + [147504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3957), 1, sym_comment, - ACTIONS(5250), 13, + ACTIONS(5083), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335351,14 +335426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147469] = 4, + [147529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3958), 1, sym_comment, - ACTIONS(5250), 13, + ACTIONS(5083), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335372,36 +335447,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147494] = 5, + [147554] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5209), 1, - anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7402), 1, + anon_sym_QMARK, STATE(3959), 1, sym_comment, - ACTIONS(5211), 12, + STATE(4119), 1, + sym_formal_parameters, + STATE(4456), 1, + sym__call_signature, + STATE(5154), 1, + sym_type_annotation, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7400), 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_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147521] = 4, + [147595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3960), 1, sym_comment, - ACTIONS(5250), 13, + ACTIONS(5229), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335415,36 +335497,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147546] = 5, + [147620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5217), 1, - anon_sym_PIPE, STATE(3961), 1, sym_comment, - ACTIONS(5219), 12, + ACTIONS(5245), 13, 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_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147573] = 4, + [147645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3962), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5027), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335458,64 +335539,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147598] = 4, + [147670] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5135), 1, + anon_sym_PIPE, STATE(3963), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5137), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [147623] = 12, + anon_sym_PIPE_RBRACE, + [147697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(7408), 1, - anon_sym_QMARK, STATE(3964), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5150), 1, - sym_type_annotation, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7386), 5, + ACTIONS(5027), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147664] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [147722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3965), 1, sym_comment, - ACTIONS(5240), 13, + ACTIONS(5229), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335529,7 +335603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147689] = 4, + [147747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -335550,14 +335624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147714] = 4, + [147772] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3967), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(5027), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335571,56 +335645,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147739] = 4, + [147797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5123), 1, + anon_sym_PIPE, STATE(3968), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5125), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - [147764] = 4, + anon_sym_PIPE_RBRACE, + [147824] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7406), 1, + anon_sym_QMARK, STATE(3969), 1, sym_comment, - ACTIONS(5007), 13, + STATE(4119), 1, + sym_formal_parameters, + STATE(5210), 1, + sym__call_signature, + STATE(5212), 1, + sym_type_annotation, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7404), 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, - [147789] = 4, + anon_sym_PIPE_RBRACE, + [147865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3970), 1, sym_comment, - ACTIONS(5011), 13, + ACTIONS(5007), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335634,92 +335717,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147814] = 12, + [147890] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(7412), 1, - anon_sym_QMARK, STATE(3971), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(5093), 1, - sym__call_signature, - STATE(5160), 1, - sym_type_annotation, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7410), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147855] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_PIPE, - ACTIONS(7134), 1, - anon_sym_LT, - STATE(3972), 1, - sym_comment, - STATE(4091), 1, - sym_type_arguments, - ACTIONS(4965), 10, + ACTIONS(5233), 13, 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_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147886] = 8, + [147915] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5213), 1, - anon_sym_PIPE, - STATE(3973), 1, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7092), 1, + anon_sym_DOT, + ACTIONS(7408), 1, + anon_sym_EQ, + ACTIONS(7413), 1, + anon_sym_COLON, + ACTIONS(7415), 1, + anon_sym_extends, + STATE(3867), 1, + sym_type_arguments, + STATE(3972), 1, sym_comment, - STATE(2625), 2, - sym_template_string, - sym_arguments, - ACTIONS(5215), 8, - sym__automatic_semicolon, + STATE(5523), 1, + sym_constraint, + STATE(6698), 1, + sym_default_type, + ACTIONS(7410), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(4307), 3, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147919] = 4, + anon_sym_PIPE, + [147958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3974), 1, + STATE(3973), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5165), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335733,14 +335789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147944] = 4, + [147983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3975), 1, + STATE(3974), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5165), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335754,14 +335810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147969] = 4, + [148008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3976), 1, + STATE(3975), 1, sym_comment, - ACTIONS(5225), 13, + ACTIONS(5161), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335775,14 +335831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147994] = 4, + [148033] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3977), 1, + STATE(3976), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(5161), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335796,43 +335852,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148019] = 12, + [148058] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7416), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7418), 1, + anon_sym_COLON, + ACTIONS(7420), 1, anon_sym_QMARK, - STATE(3978), 1, + STATE(3977), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5206), 1, + STATE(4415), 1, sym__call_signature, - STATE(5207), 1, + STATE(5092), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7414), 5, + ACTIONS(7388), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148060] = 4, + [148099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3979), 1, + STATE(3978), 1, sym_comment, - ACTIONS(5011), 13, + ACTIONS(5041), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -335846,68 +335902,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148085] = 4, + [148124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3980), 1, + ACTIONS(4456), 1, + anon_sym_PIPE, + STATE(3979), 1, sym_comment, - ACTIONS(5021), 13, + ACTIONS(4989), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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_extends, + anon_sym_PIPE_RBRACE, + [148151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4488), 1, anon_sym_PIPE, - anon_sym_LT, + STATE(3980), 1, + sym_comment, + ACTIONS(5290), 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, - [148110] = 12, + anon_sym_PIPE_RBRACE, + [148178] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7418), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7420), 1, + ACTIONS(7422), 1, anon_sym_QMARK, STATE(3981), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4397), 1, + STATE(5152), 1, sym__call_signature, - STATE(5090), 1, + STATE(5154), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(7400), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148151] = 6, + [148219] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2174), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(4450), 1, anon_sym_PIPE, STATE(3982), 1, sym_comment, - ACTIONS(5173), 11, + ACTIONS(4985), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -335915,90 +335992,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148180] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3983), 1, - sym_comment, - ACTIONS(5057), 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, - [148205] = 12, + anon_sym_PIPE_RBRACE, + [148246] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7424), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7426), 1, anon_sym_QMARK, - STATE(3984), 1, + STATE(3983), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5296), 1, + STATE(5298), 1, sym__call_signature, - STATE(5297), 1, + STATE(5299), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7422), 5, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148246] = 5, + [148287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4458), 1, + ACTIONS(4454), 1, anon_sym_PIPE, - STATE(3985), 1, + STATE(3984), 1, sym_comment, - ACTIONS(5242), 12, + ACTIONS(4967), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148273] = 4, + [148314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3986), 1, + STATE(3985), 1, sym_comment, - ACTIONS(5133), 13, + ACTIONS(5161), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336012,16 +336069,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148298] = 5, + [148339] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4482), 1, + anon_sym_PIPE, + STATE(3986), 1, + sym_comment, + ACTIONS(5356), 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, + [148366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4460), 1, + ACTIONS(4484), 1, anon_sym_PIPE, STATE(3987), 1, sym_comment, - ACTIONS(5236), 12, + ACTIONS(5345), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336034,14 +336113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148325] = 4, + [148393] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3988), 1, sym_comment, - ACTIONS(5057), 13, + ACTIONS(5015), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336055,16 +336134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148350] = 5, + [148418] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4462), 1, + ACTIONS(4484), 1, anon_sym_PIPE, STATE(3989), 1, sym_comment, - ACTIONS(5234), 12, + ACTIONS(5345), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336077,14 +336156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148377] = 4, + [148445] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(3990), 1, sym_comment, - ACTIONS(5133), 13, + ACTIONS(5015), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -336098,119 +336177,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148402] = 5, + [148470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4438), 1, + ACTIONS(4486), 1, anon_sym_PIPE, STATE(3991), 1, sym_comment, - ACTIONS(4987), 12, + ACTIONS(5278), 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_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148429] = 6, + [148497] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2168), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(4486), 1, anon_sym_PIPE, STATE(3992), 1, sym_comment, - ACTIONS(5173), 11, + ACTIONS(5278), 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_LT, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148458] = 12, + [148524] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7426), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7428), 1, anon_sym_QMARK, STATE(3993), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4633), 1, + STATE(4465), 1, sym__call_signature, STATE(5160), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7410), 5, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148499] = 12, + [148565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + STATE(3994), 1, + sym_comment, + ACTIONS(5015), 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, - ACTIONS(7260), 1, + anon_sym_extends, + [148590] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4467), 1, + anon_sym_PIPE, + STATE(3995), 1, + sym_comment, + ACTIONS(5280), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(7428), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148617] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7430), 1, anon_sym_QMARK, - STATE(3994), 1, + STATE(3996), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4390), 1, + STATE(4568), 1, sym__call_signature, - STATE(5207), 1, + STATE(5299), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7414), 5, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148540] = 5, + [148658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(4492), 1, anon_sym_PIPE, - STATE(3995), 1, + STATE(3997), 1, sym_comment, - ACTIONS(5155), 12, + ACTIONS(5320), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336223,411 +336344,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148567] = 4, + [148685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3996), 1, + ACTIONS(4465), 1, + anon_sym_PIPE, + STATE(3998), 1, sym_comment, - ACTIONS(5065), 13, + ACTIONS(5265), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [148592] = 5, + anon_sym_PIPE_RBRACE, + [148712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4430), 1, + ACTIONS(4490), 1, anon_sym_PIPE, - STATE(3997), 1, + STATE(3999), 1, sym_comment, - ACTIONS(4961), 12, + ACTIONS(5316), 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_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148619] = 12, + [148739] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7430), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7432), 1, anon_sym_QMARK, - STATE(3998), 1, + STATE(4000), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4474), 1, + STATE(4480), 1, sym__call_signature, - STATE(5297), 1, + STATE(5212), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7422), 5, + ACTIONS(7404), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148660] = 5, + [148780] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4452), 1, - anon_sym_PIPE, - STATE(3999), 1, + STATE(4001), 1, sym_comment, - ACTIONS(4979), 12, + ACTIONS(5165), 13, 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_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148687] = 5, + [148805] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5131), 1, anon_sym_PIPE, - STATE(4000), 1, + STATE(4002), 1, sym_comment, - ACTIONS(5149), 12, + STATE(2647), 2, + sym_template_string, + sym_arguments, + ACTIONS(5133), 8, 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, - [148714] = 13, + [148838] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4001), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4003), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5223), 1, + STATE(4993), 1, sym_type_annotation, - STATE(6035), 1, + STATE(5775), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6593), 1, + STATE(6630), 1, sym__call_signature, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148756] = 13, + [148880] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4002), 1, + STATE(4004), 1, sym_comment, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4679), 1, - sym__call_signature, - STATE(5228), 1, + STATE(5196), 1, sym_type_annotation, - STATE(6067), 1, + STATE(6047), 1, sym__initializer, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7434), 3, + STATE(6715), 1, + sym__call_signature, + ACTIONS(7436), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148798] = 13, + [148922] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4003), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4005), 1, sym_comment, - STATE(4303), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4746), 1, + STATE(4484), 1, sym__call_signature, - STATE(5133), 1, + STATE(5214), 1, sym_type_annotation, - STATE(5987), 1, - sym__initializer, - STATE(6464), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7436), 3, + ACTIONS(7438), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148840] = 6, + anon_sym_PIPE_RBRACE, + [148960] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_is, - STATE(4004), 1, - sym_comment, - ACTIONS(4965), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4636), 1, anon_sym_COMMA, + ACTIONS(4639), 1, anon_sym_RBRACE, + ACTIONS(7252), 1, + anon_sym_EQ, + STATE(4006), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [148868] = 11, + [148994] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7252), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4005), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4007), 1, sym_comment, - STATE(4128), 1, + STATE(4389), 1, sym_formal_parameters, - STATE(4503), 1, - sym__call_signature, - STATE(5153), 1, - sym_type_annotation, - STATE(6358), 1, + STATE(6831), 1, sym_type_parameters, - ACTIONS(7440), 5, - sym__automatic_semicolon, + ACTIONS(4909), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4642), 5, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [148906] = 11, + [149030] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4006), 1, + ACTIONS(4973), 1, + anon_sym_PIPE, + STATE(4008), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(4389), 1, - sym__call_signature, - STATE(5212), 1, - sym_type_annotation, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7442), 5, + ACTIONS(4975), 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, - [148944] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, - STATE(4007), 1, - sym_comment, - STATE(5536), 1, - sym_import_require_clause, - STATE(5537), 1, - sym_string, - STATE(6384), 1, - sym__import_identifier, - STATE(6899), 1, - sym_import_clause, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, - [148988] = 11, + [149056] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4008), 1, + STATE(4009), 1, sym_comment, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5152), 1, - sym__call_signature, - STATE(5153), 1, + STATE(5325), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6195), 1, + sym__initializer, + STATE(6360), 1, + sym__call_signature, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7440), 5, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149026] = 13, + [149098] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4009), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4010), 1, sym_comment, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5240), 1, + STATE(5095), 1, + sym__call_signature, + STATE(5163), 1, sym_type_annotation, - STATE(6114), 1, - sym__initializer, - STATE(6346), 1, + STATE(6380), 1, sym_type_parameters, - STATE(6482), 1, - sym__call_signature, - ACTIONS(7444), 3, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149068] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, - STATE(4010), 1, - sym_comment, - STATE(5483), 1, - sym_string, - STATE(5484), 1, - sym_import_require_clause, - STATE(6384), 1, - sym__import_identifier, - STATE(6779), 1, - sym_import_clause, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, - [149112] = 5, + anon_sym_PIPE_RBRACE, + [149136] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4969), 1, + anon_sym_PIPE, + ACTIONS(7172), 1, + anon_sym_is, STATE(4011), 1, sym_comment, - ACTIONS(2063), 11, + ACTIONS(4971), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336637,128 +336697,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [149138] = 9, + [149164] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4637), 1, - anon_sym_RBRACE, + ACTIONS(7256), 1, + anon_sym_LT, ACTIONS(7258), 1, anon_sym_EQ, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4012), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 7, + STATE(4226), 1, + sym_formal_parameters, + STATE(4727), 1, + sym__call_signature, + STATE(5176), 1, + sym_type_annotation, + STATE(6019), 1, + sym__initializer, + STATE(6465), 1, + sym_type_parameters, + ACTIONS(7444), 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, - [149172] = 13, + [149206] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4013), 1, sym_comment, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5236), 1, + STATE(4567), 1, + sym__call_signature, + STATE(5296), 1, sym_type_annotation, - STATE(6100), 1, - sym__initializer, - STATE(6346), 1, + STATE(6380), 1, sym_type_parameters, - STATE(6493), 1, - sym__call_signature, - ACTIONS(7444), 3, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149214] = 13, + anon_sym_PIPE_RBRACE, + [149244] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4014), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4876), 1, + STATE(4970), 1, sym_type_annotation, - STATE(5670), 1, + STATE(5756), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6438), 1, + STATE(6566), 1, sym__call_signature, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149256] = 11, + [149286] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4015), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5294), 1, - sym__call_signature, - STATE(5295), 1, + STATE(5229), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6097), 1, + sym__call_signature, + STATE(6098), 1, + sym__initializer, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7448), 5, + ACTIONS(7448), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149294] = 5, + [149328] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4983), 1, + ACTIONS(4963), 1, anon_sym_PIPE, + ACTIONS(7172), 1, + anon_sym_is, STATE(4016), 1, sym_comment, - ACTIONS(4985), 11, + ACTIONS(4965), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336768,38 +336833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [149320] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4017), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(4966), 1, - sym_type_annotation, - STATE(5752), 1, - sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6560), 1, - sym__call_signature, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149362] = 14, + [149356] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336808,66 +336843,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7246), 1, sym_identifier, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - STATE(4018), 1, + STATE(4017), 1, sym_comment, - STATE(5441), 1, + STATE(5511), 1, sym_import_require_clause, - STATE(5443), 1, + STATE(5512), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6902), 1, + STATE(6578), 1, sym_import_clause, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - [149406] = 11, + [149400] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4019), 1, + STATE(4018), 1, sym_comment, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4578), 1, - sym__call_signature, - STATE(5295), 1, + STATE(5109), 1, sym_type_annotation, - STATE(6358), 1, + STATE(5974), 1, + sym__initializer, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7448), 5, + STATE(6736), 1, + sym__call_signature, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149444] = 6, + [149442] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(4977), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(7450), 1, anon_sym_is, - STATE(4020), 1, + STATE(4019), 1, sym_comment, - ACTIONS(4975), 10, + ACTIONS(4979), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336878,584 +336915,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [149472] = 13, + [149470] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4649), 1, + anon_sym_RBRACE, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7250), 1, + STATE(4020), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(7252), 1, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149504] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4021), 1, sym_comment, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(4586), 1, + sym__call_signature, + STATE(5163), 1, sym_type_annotation, - STATE(6145), 1, - sym__initializer, - STATE(6346), 1, + STATE(6380), 1, sym_type_parameters, - STATE(6470), 1, - sym__call_signature, - ACTIONS(7432), 3, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149514] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(7084), 1, - anon_sym_LT, - ACTIONS(7090), 1, - anon_sym_DOT, - ACTIONS(7450), 1, - anon_sym_QMARK, - STATE(3823), 1, - sym_type_arguments, - STATE(4022), 1, - sym_comment, - STATE(6856), 1, - sym_type_annotation, - ACTIONS(4314), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [149550] = 11, + anon_sym_PIPE_RBRACE, + [149542] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4023), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4022), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4865), 1, + STATE(4868), 1, sym_type_annotation, - STATE(4866), 1, + STATE(4869), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7453), 5, + ACTIONS(7452), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149588] = 13, + [149580] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_RBRACE, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7250), 1, + STATE(4023), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(7252), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7254), 1, anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149614] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_type, STATE(4024), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(4990), 1, - sym_type_annotation, - STATE(5773), 1, - sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6624), 1, - sym__call_signature, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149630] = 13, + STATE(5444), 1, + sym_import_require_clause, + STATE(5445), 1, + sym_string, + STATE(6415), 1, + sym__import_identifier, + STATE(6900), 1, + sym_import_clause, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [149658] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4025), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5110), 1, + STATE(5223), 1, sym_type_annotation, - STATE(5971), 1, + STATE(6038), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6732), 1, + STATE(6622), 1, sym__call_signature, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149672] = 11, + [149700] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, anon_sym_LPAREN, STATE(4026), 1, sym_comment, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4574), 1, - sym__call_signature, - STATE(4865), 1, + STATE(5233), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6063), 1, + sym__initializer, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7453), 5, + STATE(6540), 1, + sym__call_signature, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149710] = 13, + [149742] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4027), 1, sym_comment, - STATE(4303), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4768), 1, + STATE(4457), 1, sym__call_signature, - STATE(5172), 1, + STATE(5157), 1, sym_type_annotation, - STATE(6017), 1, - sym__initializer, - STATE(6464), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7455), 3, + ACTIONS(7454), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149752] = 11, + anon_sym_PIPE_RBRACE, + [149780] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4028), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4627), 1, + STATE(5295), 1, sym__call_signature, - STATE(5192), 1, + STATE(5296), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7457), 5, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149790] = 13, + [149818] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, STATE(4029), 1, sym_comment, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5172), 1, + STATE(5289), 1, sym_type_annotation, - STATE(6024), 1, - sym__call_signature, - STATE(6026), 1, + STATE(6177), 1, sym__initializer, - STATE(6358), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7455), 3, + STATE(6407), 1, + sym__call_signature, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149832] = 13, + [149860] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, STATE(4030), 1, sym_comment, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4701), 1, - sym__call_signature, - STATE(5141), 1, + STATE(5277), 1, sym_type_annotation, - STATE(5986), 1, + STATE(6166), 1, sym__initializer, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - ACTIONS(7459), 3, + STATE(6425), 1, + sym__call_signature, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149874] = 9, + [149902] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4647), 1, - anon_sym_RBRACE, - ACTIONS(7258), 1, - anon_sym_EQ, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4031), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 7, + STATE(4119), 1, + sym_formal_parameters, + STATE(5213), 1, + sym__call_signature, + STATE(5214), 1, + sym_type_annotation, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7438), 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, - [149908] = 13, + [149940] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4032), 1, sym_comment, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5253), 1, + STATE(5176), 1, sym_type_annotation, - STATE(6060), 1, + STATE(6024), 1, + sym__call_signature, + STATE(6025), 1, sym__initializer, - STATE(6346), 1, + STATE(6380), 1, sym_type_parameters, - STATE(6551), 1, - sym__call_signature, - ACTIONS(7432), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149950] = 11, + [149982] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7222), 1, anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, + ACTIONS(7384), 1, + anon_sym_DOT, STATE(4033), 1, sym_comment, - STATE(4128), 1, - sym_formal_parameters, - STATE(5192), 1, - sym_type_annotation, - STATE(5193), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - ACTIONS(7457), 5, + STATE(4217), 1, + sym_type_arguments, + ACTIONS(4307), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149988] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150012] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, STATE(4034), 1, sym_comment, - STATE(4815), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5320), 1, + STATE(4716), 1, + sym__call_signature, + STATE(5144), 1, sym_type_annotation, - STATE(6198), 1, + STATE(5988), 1, sym__initializer, - STATE(6346), 1, + STATE(6465), 1, sym_type_parameters, - STATE(6350), 1, - sym__call_signature, - ACTIONS(7432), 3, + ACTIONS(7458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150030] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150054] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7096), 1, - anon_sym_STAR, - ACTIONS(7100), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - sym_identifier, - ACTIONS(7264), 1, - anon_sym_type, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4035), 1, sym_comment, - STATE(5508), 1, - sym_import_require_clause, - STATE(5509), 1, - sym_string, - STATE(6384), 1, - sym__import_identifier, - STATE(6572), 1, - sym_import_clause, - STATE(7332), 2, - sym_namespace_import, - sym_named_imports, - [150074] = 11, + STATE(4817), 1, + sym_formal_parameters, + STATE(5306), 1, + sym_type_annotation, + STATE(6145), 1, + sym__initializer, + STATE(6363), 1, + sym_type_parameters, + STATE(6473), 1, + sym__call_signature, + ACTIONS(7440), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150096] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4036), 1, sym_comment, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(5209), 1, + STATE(4595), 1, sym__call_signature, - STATE(5212), 1, + STATE(4868), 1, sym_type_annotation, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - ACTIONS(7442), 5, + ACTIONS(7452), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150112] = 13, + [150134] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4037), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5284), 1, + STATE(5238), 1, sym_type_annotation, - STATE(6202), 1, + STATE(6106), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6406), 1, + STATE(6497), 1, sym__call_signature, - ACTIONS(7444), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150154] = 13, + [150176] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4038), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5195), 1, + STATE(5332), 1, sym_type_annotation, - STATE(6046), 1, + STATE(6229), 1, sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6713), 1, + STATE(6334), 1, sym__call_signature, - ACTIONS(7461), 3, + STATE(6363), 1, + sym_type_parameters, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150196] = 13, + [150218] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_type, + STATE(4039), 1, + sym_comment, + STATE(5488), 1, + sym_string, + STATE(5489), 1, + sym_import_require_clause, + STATE(6415), 1, + sym__import_identifier, + STATE(6785), 1, + sym_import_clause, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [150262] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4039), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4040), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5329), 1, + STATE(5242), 1, sym_type_annotation, - STATE(6193), 1, + STATE(6120), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6353), 1, + STATE(6486), 1, sym__call_signature, - ACTIONS(7432), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150238] = 9, + [150304] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_RBRACE, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(4040), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + anon_sym_STAR, + ACTIONS(7102), 1, + anon_sym_LBRACE, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_type, + STATE(4041), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [150272] = 9, + STATE(5547), 1, + sym_import_require_clause, + STATE(5548), 1, + sym_string, + STATE(6415), 1, + sym__import_identifier, + STATE(6565), 1, + sym_import_clause, + STATE(7338), 2, + sym_namespace_import, + sym_named_imports, + [150348] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, + ACTIONS(4636), 1, anon_sym_COMMA, - ACTIONS(4653), 1, + ACTIONS(4652), 1, anon_sym_RBRACE, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - STATE(4041), 1, + STATE(4042), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -337463,226 +337555,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150306] = 13, + [150382] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4042), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4043), 1, sym_comment, - STATE(4128), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5228), 1, - sym_type_annotation, - STATE(6091), 1, + STATE(4712), 1, sym__call_signature, - STATE(6092), 1, + STATE(5127), 1, + sym_type_annotation, + STATE(5985), 1, sym__initializer, - STATE(6358), 1, + STATE(6465), 1, sym_type_parameters, - ACTIONS(7434), 3, + ACTIONS(7460), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150348] = 13, + [150424] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4043), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4044), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5275), 1, + STATE(5352), 1, sym_type_annotation, - STATE(6161), 1, + STATE(6199), 1, sym__initializer, - STATE(6346), 1, - sym_type_parameters, - STATE(6421), 1, + STATE(6354), 1, sym__call_signature, - ACTIONS(7444), 3, + STATE(6363), 1, + sym_type_parameters, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150390] = 9, + [150466] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4634), 1, - anon_sym_COMMA, - ACTIONS(4650), 1, - anon_sym_RBRACE, + ACTIONS(7256), 1, + anon_sym_LT, ACTIONS(7258), 1, anon_sym_EQ, - STATE(4044), 1, - sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4640), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [150424] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7198), 1, - anon_sym_LT, - ACTIONS(7382), 1, - anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4045), 1, sym_comment, - STATE(4210), 1, - sym_type_arguments, - ACTIONS(4314), 9, + STATE(4817), 1, + sym_formal_parameters, + STATE(4878), 1, + sym_type_annotation, + STATE(5674), 1, + sym__initializer, + STATE(6363), 1, + sym_type_parameters, + STATE(6450), 1, + sym__call_signature, + ACTIONS(7434), 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, - [150454] = 13, + [150508] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(4323), 1, anon_sym_COLON, - ACTIONS(7254), 1, + ACTIONS(7082), 1, anon_sym_LT, + ACTIONS(7092), 1, + anon_sym_DOT, + ACTIONS(7462), 1, + anon_sym_QMARK, + STATE(3867), 1, + sym_type_arguments, STATE(4046), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(5328), 1, + STATE(6861), 1, sym_type_annotation, - STATE(6224), 1, - sym__initializer, - STATE(6333), 1, - sym__call_signature, - STATE(6346), 1, - sym_type_parameters, - ACTIONS(7432), 3, - sym__automatic_semicolon, + ACTIONS(4307), 6, anon_sym_COMMA, - anon_sym_SEMI, - [150496] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150544] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(4047), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(5124), 1, + STATE(5126), 1, sym_type_annotation, - STATE(5981), 1, + STATE(5987), 1, sym__initializer, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, STATE(6723), 1, sym__call_signature, - ACTIONS(7463), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150538] = 10, + [150586] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7258), 1, + ACTIONS(4636), 1, + anon_sym_COMMA, + ACTIONS(4655), 1, + anon_sym_RBRACE, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7260), 1, - anon_sym_LPAREN, STATE(4048), 1, sym_comment, - STATE(4626), 1, - sym_formal_parameters, - STATE(6826), 1, - sym_type_parameters, - ACTIONS(4907), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4640), 5, + STATE(5737), 1, + aux_sym_object_repeat1, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4642), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150574] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4049), 1, - sym_comment, - STATE(4303), 1, - sym_formal_parameters, - STATE(4759), 1, - sym__call_signature, - STATE(5314), 1, - sym_type_annotation, - STATE(6181), 1, - sym__initializer, - STATE(6464), 1, - sym_type_parameters, - ACTIONS(7465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150616] = 14, + [150620] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337691,59 +337731,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, + ACTIONS(7098), 1, anon_sym_STAR, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7246), 1, sym_identifier, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - STATE(4050), 1, + STATE(4049), 1, sym_comment, - STATE(5544), 1, + STATE(5539), 1, sym_import_require_clause, - STATE(5545), 1, + STATE(5540), 1, sym_string, - STATE(6384), 1, + STATE(6415), 1, sym__import_identifier, - STATE(6563), 1, + STATE(6905), 1, sym_import_clause, - STATE(7332), 2, + STATE(7338), 2, sym_namespace_import, sym_named_imports, - [150660] = 6, + [150664] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_is, - STATE(4051), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4050), 1, sym_comment, - ACTIONS(4997), 10, + STATE(4119), 1, + sym_formal_parameters, + STATE(5156), 1, + sym__call_signature, + STATE(5157), 1, + sym_type_annotation, + STATE(6380), 1, + sym_type_parameters, + ACTIONS(7454), 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, - [150688] = 5, + [150702] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5205), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4051), 1, + sym_comment, + STATE(4226), 1, + sym_formal_parameters, + STATE(4729), 1, + sym__call_signature, + STATE(5316), 1, + sym_type_annotation, + STATE(6186), 1, + sym__initializer, + STATE(6465), 1, + sym_type_parameters, + ACTIONS(7467), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150744] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2061), 1, anon_sym_PIPE, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(4052), 1, sym_comment, - ACTIONS(5207), 10, + ACTIONS(2063), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337753,57 +337827,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [150713] = 4, + [150770] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4053), 1, sym_comment, - ACTIONS(5201), 11, + STATE(4226), 1, + sym_formal_parameters, + STATE(4705), 1, + sym__call_signature, + STATE(5229), 1, + sym_type_annotation, + STATE(6068), 1, + sym__initializer, + STATE(6465), 1, + sym_type_parameters, + ACTIONS(7448), 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, - [150736] = 6, + [150812] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7467), 1, - anon_sym_DOT, + ACTIONS(5065), 1, + anon_sym_PIPE, ACTIONS(7469), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK, STATE(4054), 1, sym_comment, - ACTIONS(5338), 9, + ACTIONS(5067), 9, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [150763] = 5, + anon_sym_PIPE_RBRACE, + [150839] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5296), 1, + ACTIONS(5143), 1, anon_sym_PIPE, STATE(4055), 1, sym_comment, - ACTIONS(5298), 10, + ACTIONS(5145), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337814,36 +337899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150788] = 5, + [150864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5137), 1, - anon_sym_PIPE, STATE(4056), 1, sym_comment, - ACTIONS(5139), 10, + ACTIONS(6383), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150813] = 5, + [150887] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5119), 1, + ACTIONS(3227), 1, anon_sym_PIPE, STATE(4057), 1, sym_comment, - ACTIONS(5121), 10, + ACTIONS(3669), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337854,16 +337938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150838] = 5, + [150912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5181), 1, + ACTIONS(5009), 1, anon_sym_PIPE, STATE(4058), 1, sym_comment, - ACTIONS(5183), 10, + ACTIONS(5011), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337874,16 +337958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150863] = 5, + [150937] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5256), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, STATE(4059), 1, sym_comment, - ACTIONS(5258), 10, + ACTIONS(5263), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337891,19 +337979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [150888] = 5, + [150966] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3291), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, STATE(4060), 1, sym_comment, - ACTIONS(3507), 10, + ACTIONS(5259), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337911,21 +338001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [150913] = 6, + [150995] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5123), 1, + ACTIONS(5247), 1, anon_sym_PIPE, - ACTIONS(7471), 1, - anon_sym_AMP, STATE(4061), 1, sym_comment, - ACTIONS(5125), 9, + ACTIONS(5249), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337933,38 +338019,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150940] = 5, + [151020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5127), 1, - anon_sym_PIPE, STATE(4062), 1, sym_comment, - ACTIONS(5129), 10, + ACTIONS(4989), 11, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [150965] = 5, + [151043] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5157), 1, + ACTIONS(3241), 1, anon_sym_PIPE, STATE(4063), 1, sym_comment, - ACTIONS(5159), 10, + ACTIONS(3599), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337975,35 +338061,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150990] = 4, + [151068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4963), 1, + anon_sym_PIPE, STATE(4064), 1, sym_comment, - ACTIONS(6600), 11, + ACTIONS(4965), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, 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_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151013] = 5, + [151093] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, STATE(4065), 1, sym_comment, - ACTIONS(5187), 10, + ACTIONS(5169), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338011,19 +338102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151038] = 5, + [151122] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + ACTIONS(5119), 1, anon_sym_PIPE, STATE(4066), 1, sym_comment, - ACTIONS(5165), 10, + ACTIONS(5121), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338034,16 +338123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151063] = 5, + [151147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5354), 1, + ACTIONS(5167), 1, anon_sym_PIPE, STATE(4067), 1, sym_comment, - ACTIONS(5356), 10, + ACTIONS(5169), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338054,41 +338143,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151088] = 6, + [151172] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5013), 1, + ACTIONS(5021), 1, anon_sym_PIPE, - ACTIONS(7473), 1, - anon_sym_LBRACK, STATE(4068), 1, sym_comment, - ACTIONS(5015), 9, + ACTIONS(5023), 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, - [151115] = 7, + [151197] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(5306), 1, anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, STATE(4069), 1, sym_comment, - ACTIONS(5035), 8, + ACTIONS(5308), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338096,57 +338180,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151144] = 5, + [151222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3293), 1, - anon_sym_PIPE, STATE(4070), 1, sym_comment, - ACTIONS(3517), 10, + ACTIONS(4985), 11, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [151169] = 5, + [151245] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5189), 1, - anon_sym_PIPE, + ACTIONS(7477), 1, + anon_sym_DOT, + ACTIONS(7479), 1, + anon_sym_QMARK_DOT, STATE(4071), 1, sym_comment, - ACTIONS(5191), 10, + ACTIONS(5294), 9, 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_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [151194] = 5, + [151272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, + ACTIONS(5302), 1, anon_sym_PIPE, STATE(4072), 1, sym_comment, - ACTIONS(4965), 10, + ACTIONS(5304), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338157,16 +338243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151219] = 5, + [151297] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(3247), 1, anon_sym_PIPE, STATE(4073), 1, sym_comment, - ACTIONS(5169), 10, + ACTIONS(3579), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338177,16 +338263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151244] = 5, + [151322] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5373), 1, + ACTIONS(3405), 1, anon_sym_PIPE, STATE(4074), 1, sym_comment, - ACTIONS(5375), 10, + ACTIONS(3569), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338197,73 +338283,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151269] = 4, + [151347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5147), 1, + anon_sym_PIPE, STATE(4075), 1, sym_comment, - ACTIONS(4979), 11, + ACTIONS(5149), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [151292] = 4, + anon_sym_PIPE_RBRACE, + [151372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5065), 1, + anon_sym_PIPE, STATE(4076), 1, sym_comment, - ACTIONS(5219), 11, + ACTIONS(5067), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [151315] = 4, + anon_sym_PIPE_RBRACE, + [151397] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5085), 1, + anon_sym_PIPE, STATE(4077), 1, sym_comment, - ACTIONS(5211), 11, + ACTIONS(5087), 10, sym__automatic_semicolon, - sym__function_signature_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_PIPE, anon_sym_extends, - [151338] = 5, + anon_sym_PIPE_RBRACE, + [151422] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7485), 1, + anon_sym_COMMA, + ACTIONS(7487), 1, + anon_sym_RBRACE, + ACTIONS(7489), 1, + anon_sym_typeof, + STATE(4078), 1, + sym_comment, + STATE(5558), 1, + sym_string, + STATE(5757), 1, + sym_import_specifier, + STATE(6569), 1, + sym__import_identifier, + STATE(7184), 1, + sym__module_export_name, + [151465] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3267), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - STATE(4078), 1, + STATE(4079), 1, sym_comment, - ACTIONS(3581), 10, + ACTIONS(5253), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338274,20 +338392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151363] = 7, + [151490] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7473), 1, anon_sym_PIPE, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - STATE(4079), 1, + STATE(4080), 1, sym_comment, - ACTIONS(5352), 8, + ACTIONS(5300), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338296,16 +338414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [151392] = 5, + [151519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, + ACTIONS(5271), 1, anon_sym_PIPE, - STATE(4080), 1, + STATE(4081), 1, sym_comment, - ACTIONS(5215), 10, + ACTIONS(5273), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338316,20 +338434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151417] = 7, + [151544] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(5358), 1, anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, - STATE(4081), 1, + STATE(4082), 1, sym_comment, - ACTIONS(5147), 8, + ACTIONS(5360), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338337,19 +338451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151446] = 6, + [151569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5264), 1, + ACTIONS(5318), 1, anon_sym_PIPE, - ACTIONS(7479), 1, - anon_sym_extends, - STATE(4082), 1, + STATE(4083), 1, sym_comment, - ACTIONS(5266), 9, + ACTIONS(5063), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338358,17 +338472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151473] = 5, + [151594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - STATE(4083), 1, + STATE(4084), 1, sym_comment, - ACTIONS(5334), 10, + ACTIONS(5364), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338379,80 +338494,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151498] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4084), 1, - sym_comment, - STATE(4626), 1, - sym_formal_parameters, - STATE(6826), 1, - sym_type_parameters, - ACTIONS(4640), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [151529] = 6, + [151619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5131), 1, anon_sym_PIPE, - ACTIONS(7473), 1, - anon_sym_LBRACK, STATE(4085), 1, sym_comment, - ACTIONS(5280), 9, + ACTIONS(5133), 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, - [151556] = 5, + [151644] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5304), 1, - anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, STATE(4086), 1, sym_comment, - ACTIONS(5306), 10, + STATE(4389), 1, + sym_formal_parameters, + STATE(6831), 1, + sym_type_parameters, + ACTIONS(4642), 7, 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_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [151581] = 5, + [151675] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, + ACTIONS(5366), 1, anon_sym_PIPE, + ACTIONS(7471), 1, + anon_sym_AMP, STATE(4087), 1, sym_comment, - ACTIONS(5280), 10, + ACTIONS(5368), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338460,19 +338556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151606] = 5, + [151702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5141), 1, + ACTIONS(5045), 1, anon_sym_PIPE, STATE(4088), 1, sym_comment, - ACTIONS(5143), 10, + ACTIONS(5043), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338483,20 +338578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151631] = 7, + [151727] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(5235), 1, anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, STATE(4089), 1, sym_comment, - ACTIONS(5284), 8, + ACTIONS(5237), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338504,37 +338595,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151660] = 5, + [151752] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5366), 1, - anon_sym_PIPE, STATE(4090), 1, sym_comment, - ACTIONS(5368), 10, + ACTIONS(6451), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [151685] = 5, + [151775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5244), 1, + ACTIONS(5151), 1, anon_sym_PIPE, STATE(4091), 1, sym_comment, - ACTIONS(5246), 10, + ACTIONS(5153), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338545,16 +338637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151710] = 5, + [151800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3289), 1, + ACTIONS(5378), 1, anon_sym_PIPE, STATE(4092), 1, sym_comment, - ACTIONS(3641), 10, + ACTIONS(5380), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338565,16 +338657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151735] = 5, + [151825] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5195), 1, + ACTIONS(5382), 1, anon_sym_PIPE, STATE(4093), 1, sym_comment, - ACTIONS(5197), 10, + ACTIONS(5384), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338585,16 +338677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151760] = 5, + [151850] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3283), 1, + ACTIONS(5017), 1, anon_sym_PIPE, STATE(4094), 1, sym_comment, - ACTIONS(3657), 10, + ACTIONS(5019), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338605,16 +338697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151785] = 5, + [151875] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, STATE(4095), 1, sym_comment, - ACTIONS(5326), 10, + ACTIONS(5153), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338622,23 +338718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151810] = 7, + [151904] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(7473), 1, anon_sym_PIPE, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, STATE(4096), 1, sym_comment, - ACTIONS(5165), 8, + ACTIONS(5388), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338647,16 +338741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [151839] = 5, + [151933] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5308), 1, + ACTIONS(3377), 1, anon_sym_PIPE, STATE(4097), 1, sym_comment, - ACTIONS(5310), 10, + ACTIONS(3679), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338667,58 +338761,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151864] = 5, + [151958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5316), 1, - anon_sym_PIPE, STATE(4098), 1, sym_comment, - ACTIONS(5318), 10, + ACTIONS(5137), 11, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [151889] = 7, + [151981] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5278), 1, - anon_sym_PIPE, + ACTIONS(7471), 1, + anon_sym_AMP, ACTIONS(7473), 1, - anon_sym_LBRACK, + anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, STATE(4099), 1, sym_comment, - ACTIONS(5280), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5276), 7, + ACTIONS(5031), 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, - [151918] = 5, + [152010] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2174), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7222), 1, + anon_sym_LT, STATE(4100), 1, sym_comment, - ACTIONS(5173), 10, + STATE(4223), 1, + sym_type_arguments, + ACTIONS(4979), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338727,116 +338822,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [151943] = 5, + [152037] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2168), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5339), 1, + anon_sym_PIPE, STATE(4101), 1, sym_comment, - ACTIONS(5173), 10, + ACTIONS(5341), 10, sym__automatic_semicolon, - sym__function_signature_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, - anon_sym_LT, anon_sym_extends, - [151968] = 4, + anon_sym_PIPE_RBRACE, + [152062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4102), 1, sym_comment, - ACTIONS(6639), 11, + ACTIONS(5125), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, 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, - [151991] = 6, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152085] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7198), 1, - anon_sym_LT, + ACTIONS(4977), 1, + anon_sym_PIPE, STATE(4103), 1, sym_comment, - STATE(4216), 1, - sym_type_arguments, - ACTIONS(4965), 9, + ACTIONS(4979), 10, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [152018] = 4, + anon_sym_PIPE_RBRACE, + [152110] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5065), 1, + anon_sym_PIPE, + ACTIONS(7469), 1, + anon_sym_LBRACK, STATE(4104), 1, sym_comment, - ACTIONS(4640), 11, + ACTIONS(5067), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5392), 7, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, 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, - [152041] = 4, + [152139] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(7491), 1, + anon_sym_extends, STATE(4105), 1, sym_comment, - ACTIONS(4987), 11, + ACTIONS(5396), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [152064] = 5, + anon_sym_PIPE_RBRACE, + [152166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, + ACTIONS(5404), 1, anon_sym_PIPE, STATE(4106), 1, sym_comment, - ACTIONS(4975), 10, + ACTIONS(5406), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338847,14 +338945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152089] = 4, + [152191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4107), 1, sym_comment, - ACTIONS(4961), 11, + ACTIONS(5117), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -338866,16 +338964,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152112] = 5, + [152214] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5320), 1, + ACTIONS(5374), 1, anon_sym_PIPE, + ACTIONS(7471), 1, + anon_sym_AMP, STATE(4108), 1, sym_comment, - ACTIONS(5322), 10, + ACTIONS(5376), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338883,19 +338983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152137] = 5, + [152241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, + ACTIONS(5071), 1, anon_sym_PIPE, STATE(4109), 1, sym_comment, - ACTIONS(5272), 10, + ACTIONS(5073), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338906,16 +339005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152162] = 5, + [152266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, + ACTIONS(5310), 1, anon_sym_PIPE, STATE(4110), 1, sym_comment, - ACTIONS(4997), 10, + ACTIONS(5312), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338926,91 +339025,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152187] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152291] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7485), 1, - anon_sym_COMMA, - ACTIONS(7487), 1, - anon_sym_RBRACE, - ACTIONS(7489), 1, - anon_sym_typeof, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(4111), 1, sym_comment, - STATE(5555), 1, - sym_string, - STATE(5757), 1, - sym_import_specifier, - STATE(6566), 1, - sym__import_identifier, - STATE(7178), 1, - sym__module_export_name, - [152230] = 5, + ACTIONS(4967), 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, + [152314] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2154), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5260), 1, - anon_sym_PIPE, STATE(4112), 1, sym_comment, - ACTIONS(5262), 10, + ACTIONS(5326), 10, 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_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [152255] = 7, + [152339] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(5400), 1, anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, + ACTIONS(7469), 1, + anon_sym_LBRACK, STATE(4113), 1, sym_comment, - ACTIONS(5025), 8, + ACTIONS(5402), 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_extends, anon_sym_PIPE_RBRACE, - [152284] = 7, + [152366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, + ACTIONS(4969), 1, anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, STATE(4114), 1, sym_comment, - ACTIONS(5169), 8, + ACTIONS(4971), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -339018,19 +339102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [152313] = 6, + [152391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5312), 1, + ACTIONS(5282), 1, anon_sym_PIPE, - ACTIONS(7471), 1, - anon_sym_AMP, STATE(4115), 1, sym_comment, - ACTIONS(5314), 9, + ACTIONS(5284), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -339038,36 +339122,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152340] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152416] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7491), 1, - sym_identifier, - ACTIONS(7493), 1, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4116), 1, + sym_comment, + ACTIONS(5326), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7495), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - ACTIONS(7497), 1, - anon_sym_implements, - STATE(3108), 1, - sym_class_body, - STATE(4116), 1, + [152441] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4117), 1, sym_comment, - STATE(4418), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6754), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [152380] = 13, + ACTIONS(4642), 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, + [152464] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339075,190 +339172,309 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1973), 1, anon_sym_LT, ACTIONS(7493), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, - anon_sym_implements, + anon_sym_extends, ACTIONS(7499), 1, - sym_identifier, - STATE(3032), 1, + anon_sym_implements, + STATE(3221), 1, sym_class_body, - STATE(4117), 1, + STATE(4118), 1, sym_comment, - STATE(4548), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152420] = 13, + [152504] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7503), 1, + anon_sym_COLON, + STATE(4119), 1, + sym_comment, + STATE(4717), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7501), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152530] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7501), 1, + ACTIONS(7505), 1, sym_identifier, - STATE(3108), 1, + STATE(3221), 1, sym_class_body, - STATE(4118), 1, + STATE(4120), 1, sym_comment, - STATE(4418), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6754), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152460] = 13, - ACTIONS(3), 1, + [152570] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + STATE(4121), 1, + sym_comment, + STATE(3071), 2, + sym_template_string, + sym_arguments, + ACTIONS(5133), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152598] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7493), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7507), 1, + anon_sym_is, + STATE(4122), 1, + sym_comment, + ACTIONS(4979), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7495), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7497), 1, - anon_sym_implements, - ACTIONS(7503), 1, - sym_identifier, - STATE(3108), 1, - sym_class_body, - STATE(4119), 1, - sym_comment, - STATE(4418), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6754), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [152500] = 13, + [152622] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7505), 1, + ACTIONS(7509), 1, sym_identifier, - STATE(3032), 1, + STATE(3221), 1, sym_class_body, - STATE(4120), 1, + STATE(4123), 1, sym_comment, - STATE(4548), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152540] = 6, + [152662] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7509), 1, - anon_sym_COLON, - STATE(4121), 1, + STATE(4124), 1, sym_comment, - STATE(4782), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7507), 6, + ACTIONS(2063), 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, + [152684] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, + anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, + STATE(4125), 1, + sym_comment, + ACTIONS(7511), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152712] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + anon_sym_DOT, + STATE(4126), 1, + sym_comment, + STATE(4357), 1, + sym_arguments, + ACTIONS(7513), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [152566] = 13, + [152740] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7386), 1, + anon_sym_is, + STATE(4127), 1, + sym_comment, + ACTIONS(4965), 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, + [152764] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7511), 1, + ACTIONS(7517), 1, sym_identifier, - STATE(3108), 1, + STATE(3111), 1, sym_class_body, - STATE(4122), 1, + STATE(4128), 1, sym_comment, - STATE(4418), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6754), 1, + STATE(6453), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152606] = 13, + [152804] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, + anon_sym_LBRACE, + ACTIONS(7497), 1, anon_sym_extends, + ACTIONS(7499), 1, + anon_sym_implements, + ACTIONS(7519), 1, + sym_identifier, + STATE(3111), 1, + sym_class_body, + STATE(4129), 1, + sym_comment, + STATE(4563), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6453), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [152844] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7513), 1, + ACTIONS(7521), 1, sym_identifier, - STATE(3032), 1, + ACTIONS(7523), 1, + anon_sym_LBRACE, + STATE(2548), 1, sym_class_body, - STATE(4123), 1, + STATE(4130), 1, sym_comment, - STATE(4548), 1, + STATE(4411), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6606), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152646] = 5, + [152884] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7384), 1, + ACTIONS(7386), 1, anon_sym_is, - STATE(4124), 1, + STATE(4131), 1, sym_comment, - ACTIONS(4997), 9, + ACTIONS(4971), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -339268,46 +339484,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [152670] = 13, + [152908] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7515), 1, + ACTIONS(7525), 1, sym_identifier, - STATE(3032), 1, + STATE(3221), 1, sym_class_body, - STATE(4125), 1, + STATE(4132), 1, sym_comment, - STATE(4548), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152710] = 6, + [152948] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - STATE(4126), 1, + STATE(4133), 1, sym_comment, - ACTIONS(4907), 2, + ACTIONS(4909), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4640), 7, + ACTIONS(4642), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -339315,108 +339531,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [152736] = 13, + [152974] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7495), 1, - anon_sym_extends, ACTIONS(7497), 1, - anon_sym_implements, - ACTIONS(7517), 1, - sym_identifier, - ACTIONS(7519), 1, - anon_sym_LBRACE, - STATE(2589), 1, - sym_class_body, - STATE(4127), 1, - sym_comment, - STATE(4638), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6558), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [152776] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7509), 1, - anon_sym_COLON, - STATE(4128), 1, - sym_comment, - STATE(4665), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7521), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152802] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, - ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7497), 1, + ACTIONS(7499), 1, anon_sym_implements, ACTIONS(7523), 1, + anon_sym_LBRACE, + ACTIONS(7527), 1, sym_identifier, - STATE(3032), 1, + STATE(3383), 1, sym_class_body, - STATE(4129), 1, + STATE(4134), 1, sym_comment, - STATE(4548), 1, + STATE(4398), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6935), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152842] = 13, + [153014] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, - ACTIONS(7495), 1, - anon_sym_extends, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7525), 1, + ACTIONS(7523), 1, + anon_sym_LBRACE, + ACTIONS(7529), 1, sym_identifier, - STATE(3032), 1, + STATE(2587), 1, sym_class_body, - STATE(4130), 1, + STATE(4135), 1, sym_comment, - STATE(4548), 1, + STATE(4449), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6747), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [152882] = 12, + [153054] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339425,48 +339594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(7527), 1, + ACTIONS(7481), 1, sym_identifier, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7489), 1, + anon_sym_typeof, ACTIONS(7531), 1, - anon_sym_COMMA, - ACTIONS(7533), 1, anon_sym_RBRACE, - STATE(4131), 1, + STATE(4136), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(5728), 1, - sym_export_specifier, - STATE(5729), 1, + STATE(6569), 1, + sym__import_identifier, + STATE(6766), 1, + sym_import_specifier, + STATE(7184), 1, sym__module_export_name, - ACTIONS(7529), 2, - anon_sym_type, - anon_sym_typeof, - [152920] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7537), 1, - anon_sym_BANG, - STATE(4132), 1, - sym_comment, - STATE(4980), 1, - sym_type_annotation, - STATE(5760), 1, - sym__initializer, - ACTIONS(7539), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7535), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152954] = 13, + [153094] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339477,101 +339623,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7481), 1, sym_identifier, - ACTIONS(7483), 1, + ACTIONS(7533), 1, anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - ACTIONS(7541), 1, - anon_sym_RBRACE, - STATE(4133), 1, + ACTIONS(7535), 1, + anon_sym_as, + STATE(4137), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6566), 1, + STATE(6875), 1, sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7178), 1, + STATE(6994), 1, sym__module_export_name, - [152994] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7537), 1, - anon_sym_BANG, - ACTIONS(7543), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_comment, - STATE(4980), 1, - sym_type_annotation, - STATE(5131), 1, - sym__initializer, - ACTIONS(7539), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7535), 3, - sym__automatic_semicolon, + ACTIONS(7250), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153028] = 13, + anon_sym_RBRACE, + [153132] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, - ACTIONS(7497), 1, - anon_sym_implements, - ACTIONS(7545), 1, - sym_identifier, - STATE(3108), 1, - sym_class_body, - STATE(4135), 1, - sym_comment, - STATE(4418), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6754), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [153068] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7495), 1, - anon_sym_extends, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7547), 1, + ACTIONS(7537), 1, sym_identifier, - STATE(3108), 1, + STATE(3221), 1, sym_class_body, - STATE(4136), 1, + STATE(4138), 1, sym_comment, - STATE(4418), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6754), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153108] = 13, + [153172] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339579,26 +339673,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1973), 1, anon_sym_LT, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7519), 1, - anon_sym_LBRACE, - ACTIONS(7549), 1, + ACTIONS(7539), 1, sym_identifier, - STATE(2638), 1, + STATE(3221), 1, sym_class_body, - STATE(4137), 1, + STATE(4139), 1, sym_comment, - STATE(4560), 1, + STATE(4647), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6752), 1, + STATE(6762), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153148] = 12, + [153212] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339609,106 +339703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7481), 1, sym_identifier, - ACTIONS(7551), 1, + ACTIONS(7483), 1, anon_sym_type, - ACTIONS(7553), 1, - anon_sym_as, - STATE(4138), 1, + ACTIONS(7489), 1, + anon_sym_typeof, + ACTIONS(7541), 1, + anon_sym_RBRACE, + STATE(4140), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6860), 1, + STATE(6569), 1, sym__import_identifier, - STATE(6989), 1, + STATE(6766), 1, + sym_import_specifier, + STATE(7184), 1, sym__module_export_name, - ACTIONS(7266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [153186] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4139), 1, - sym_comment, - ACTIONS(2063), 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, - [153208] = 7, + [153252] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_DOT, - STATE(4140), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7543), 1, + anon_sym_EQ, + ACTIONS(7547), 1, + anon_sym_BANG, + STATE(4141), 1, sym_comment, - STATE(4362), 1, - sym_arguments, - ACTIONS(7555), 7, + STATE(4984), 1, + sym_type_annotation, + STATE(5134), 1, + sym__initializer, + ACTIONS(7549), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7545), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [153236] = 13, + [153286] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7559), 1, + ACTIONS(7551), 1, sym_identifier, - STATE(3108), 1, + STATE(3111), 1, sym_class_body, - STATE(4141), 1, + STATE(4142), 1, sym_comment, - STATE(4418), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6754), 1, + STATE(6453), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153276] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4142), 1, - sym_comment, - ACTIONS(4985), 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, - [153298] = 13, + [153326] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339716,56 +339778,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1973), 1, anon_sym_LT, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7519), 1, - anon_sym_LBRACE, - ACTIONS(7561), 1, + ACTIONS(7553), 1, sym_identifier, - STATE(3369), 1, + STATE(3111), 1, sym_class_body, STATE(4143), 1, sym_comment, - STATE(4476), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6931), 1, + STATE(6453), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153338] = 7, + [153366] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, STATE(4144), 1, sym_comment, - ACTIONS(7563), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [153366] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7565), 1, - anon_sym_is, - STATE(4145), 1, - sym_comment, - ACTIONS(4965), 9, + ACTIONS(4975), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -339775,28 +339814,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153390] = 7, + anon_sym_is, + [153388] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - STATE(4146), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7547), 1, + anon_sym_BANG, + STATE(4145), 1, sym_comment, - STATE(3115), 2, - sym_template_string, - sym_arguments, - ACTIONS(5215), 6, + STATE(4984), 1, + sym_type_annotation, + STATE(5762), 1, + sym__initializer, + ACTIONS(7549), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7545), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [153418] = 13, + anon_sym_SEMI, + [153422] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339805,189 +339848,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(7481), 1, + ACTIONS(7555), 1, sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - ACTIONS(7567), 1, + ACTIONS(7559), 1, + anon_sym_COMMA, + ACTIONS(7561), 1, anon_sym_RBRACE, - STATE(4147), 1, + STATE(4146), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6566), 1, - sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7178), 1, + STATE(5727), 1, + sym_export_specifier, + STATE(5732), 1, sym__module_export_name, - [153458] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7384), 1, - anon_sym_is, - STATE(4148), 1, - sym_comment, - ACTIONS(4975), 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, - [153482] = 13, + ACTIONS(7557), 2, + anon_sym_type, + anon_sym_typeof, + [153460] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7493), 1, - anon_sym_LBRACE, ACTIONS(7495), 1, - anon_sym_extends, + anon_sym_LBRACE, ACTIONS(7497), 1, + anon_sym_extends, + ACTIONS(7499), 1, anon_sym_implements, - ACTIONS(7569), 1, + ACTIONS(7563), 1, sym_identifier, - STATE(3032), 1, + STATE(3111), 1, sym_class_body, - STATE(4149), 1, + STATE(4147), 1, sym_comment, - STATE(4548), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6451), 1, + STATE(6453), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153522] = 12, + [153500] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7571), 1, + ACTIONS(7495), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7497), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7499), 1, anon_sym_implements, - STATE(3191), 1, + ACTIONS(7565), 1, + sym_identifier, + STATE(3111), 1, sym_class_body, - STATE(4150), 1, + STATE(4148), 1, sym_comment, - STATE(4520), 1, + STATE(4563), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6918), 1, + STATE(6453), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153559] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [153540] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4151), 1, - sym_comment, - ACTIONS(3641), 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, - [153580] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4152), 1, - sym_comment, - ACTIONS(4975), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7495), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7497), 1, anon_sym_extends, - [153601] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4153), 1, + ACTIONS(7499), 1, + anon_sym_implements, + ACTIONS(7567), 1, + sym_identifier, + STATE(3221), 1, + sym_class_body, + STATE(4149), 1, sym_comment, - ACTIONS(5280), 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, - [153622] = 5, + STATE(4647), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6762), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [153580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, - anon_sym_LBRACK, - STATE(4154), 1, + ACTIONS(7503), 1, + anon_sym_COLON, + STATE(4150), 1, sym_comment, - ACTIONS(5280), 8, + STATE(4819), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7569), 6, 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, - [153645] = 4, + anon_sym_PIPE_RBRACE, + [153606] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4155), 1, - sym_comment, - ACTIONS(4965), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7495), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7497), 1, anon_sym_extends, - [153666] = 4, + ACTIONS(7499), 1, + anon_sym_implements, + ACTIONS(7571), 1, + sym_identifier, + STATE(3111), 1, + sym_class_body, + STATE(4151), 1, + sym_comment, + STATE(4563), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6453), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [153646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4156), 1, + STATE(4152), 1, sym_comment, - ACTIONS(5356), 9, + ACTIONS(5155), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -339997,875 +340010,1044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153687] = 10, + [153667] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7579), 1, - anon_sym_BANG, - ACTIONS(7581), 1, - anon_sym_QMARK, - STATE(4157), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_DOT, + STATE(3163), 1, + sym_template_string, + STATE(3222), 1, + sym_arguments, + STATE(4153), 1, sym_comment, - STATE(5014), 1, - sym_type_annotation, - STATE(5823), 1, - sym__initializer, - ACTIONS(7324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153720] = 12, + STATE(5571), 1, + sym_type_arguments, + STATE(6495), 1, + sym_optional_chain, + [153704] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7571), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3024), 1, + STATE(3265), 1, sym_class_body, - STATE(4158), 1, + STATE(4154), 1, sym_comment, - STATE(4517), 1, + STATE(4612), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6735), 1, + STATE(6790), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153757] = 12, + [153741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(4155), 1, + sym_comment, + ACTIONS(7581), 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, + [153762] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4945), 1, + ACTIONS(4937), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_LT, - STATE(2549), 1, + STATE(2631), 1, sym_template_string, - STATE(3286), 1, + STATE(3391), 1, sym_arguments, - STATE(3916), 1, + STATE(3908), 1, sym_type_arguments, - STATE(4159), 1, + STATE(4156), 1, sym_comment, - STATE(6677), 1, + STATE(6687), 1, sym_optional_chain, - [153794] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7583), 1, - anon_sym_BANG, - ACTIONS(7585), 1, - anon_sym_QMARK, - STATE(4160), 1, - sym_comment, - STATE(5264), 1, - sym_type_annotation, - STATE(6094), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153827] = 12, + [153799] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7587), 1, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(973), 1, + STATE(988), 1, sym_class_body, - STATE(4161), 1, + STATE(4157), 1, sym_comment, - STATE(4438), 1, + STATE(4418), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6301), 1, + STATE(6305), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153864] = 4, + [153836] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4162), 1, - sym_comment, - ACTIONS(2252), 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, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, anon_sym_extends, - [153885] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4163), 1, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym_class_body, + STATE(4158), 1, sym_comment, - STATE(5129), 1, - sym_type_annotation, - STATE(5992), 1, - sym__initializer, - ACTIONS(7591), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7589), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153916] = 12, + STATE(4421), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6299), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [153873] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7593), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(1281), 1, + STATE(1191), 1, sym_class_body, - STATE(4164), 1, + STATE(4159), 1, sym_comment, - STATE(4433), 1, + STATE(4423), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6365), 1, + STATE(6298), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [153953] = 12, + [153910] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7593), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1349), 1, - sym_class_body, - STATE(4165), 1, + STATE(4160), 1, sym_comment, - STATE(4445), 1, + STATE(4410), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6441), 1, + STATE(6461), 1, sym_class_heritage, - STATE(7268), 1, + STATE(6840), 1, + sym_class_body, + STATE(7274), 1, sym_implements_clause, - [153990] = 4, + [153947] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4166), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7591), 1, + anon_sym_BANG, + ACTIONS(7593), 1, + anon_sym_QMARK, + STATE(4161), 1, sym_comment, - ACTIONS(5272), 9, + STATE(5364), 1, + sym_type_annotation, + STATE(6252), 1, + sym__initializer, + ACTIONS(7286), 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, - [154011] = 9, + [153980] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7258), 1, anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, ACTIONS(7595), 1, - anon_sym_COMMA, + anon_sym_BANG, ACTIONS(7597), 1, - anon_sym_RBRACE, - STATE(4167), 1, + anon_sym_QMARK, + STATE(4162), 1, sym_comment, - STATE(5732), 1, - aux_sym_object_repeat1, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4640), 4, - anon_sym_LPAREN, + STATE(5059), 1, + sym_type_annotation, + STATE(5876), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154013] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7599), 1, + anon_sym_BANG, + ACTIONS(7601), 1, anon_sym_QMARK, - [154042] = 4, + STATE(4163), 1, + sym_comment, + STATE(5366), 1, + sym_type_annotation, + STATE(6249), 1, + sym__initializer, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154046] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4168), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7603), 1, + anon_sym_BANG, + ACTIONS(7605), 1, + anon_sym_QMARK, + STATE(4164), 1, sym_comment, - ACTIONS(5262), 9, + STATE(5363), 1, + sym_type_annotation, + STATE(6254), 1, + sym__initializer, + ACTIONS(7286), 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, - [154063] = 4, + [154079] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4169), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7607), 1, + anon_sym_BANG, + ACTIONS(7609), 1, + anon_sym_QMARK, + STATE(4165), 1, sym_comment, - ACTIONS(5258), 9, + STATE(5048), 1, + sym_type_annotation, + STATE(5869), 1, + sym__initializer, + ACTIONS(7312), 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, - [154084] = 12, + [154112] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(7134), 1, - anon_sym_LT, - STATE(2549), 1, - sym_template_string, - STATE(2978), 1, - sym_arguments, - STATE(3973), 1, - sym_type_arguments, - STATE(4170), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7611), 1, + anon_sym_BANG, + ACTIONS(7613), 1, + anon_sym_QMARK, + STATE(4166), 1, sym_comment, - STATE(6677), 1, - sym_optional_chain, - [154121] = 9, + STATE(5047), 1, + sym_type_annotation, + STATE(5863), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154145] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4171), 1, + ACTIONS(7615), 1, + anon_sym_BANG, + ACTIONS(7617), 1, + anon_sym_QMARK, + STATE(4167), 1, sym_comment, - STATE(5171), 1, + STATE(5372), 1, sym_type_annotation, - STATE(6019), 1, + STATE(6231), 1, sym__initializer, - ACTIONS(7290), 2, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154178] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7619), 1, anon_sym_BANG, + ACTIONS(7621), 1, anon_sym_QMARK, - ACTIONS(7288), 3, + STATE(4168), 1, + sym_comment, + STATE(5373), 1, + sym_type_annotation, + STATE(6227), 1, + sym__initializer, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154152] = 10, + [154211] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7599), 1, + ACTIONS(7623), 1, anon_sym_BANG, - ACTIONS(7601), 1, + ACTIONS(7625), 1, anon_sym_QMARK, - STATE(4172), 1, + STATE(4169), 1, sym_comment, - STATE(5287), 1, + STATE(5020), 1, sym_type_annotation, - STATE(6125), 1, + STATE(5842), 1, sym__initializer, - ACTIONS(7308), 3, + ACTIONS(7312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154185] = 4, + [154244] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4173), 1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, + STATE(4170), 1, sym_comment, - ACTIONS(7603), 9, + ACTIONS(5169), 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_DOT, - anon_sym_PIPE_RBRACE, - [154206] = 9, + anon_sym_LBRACK, + [154271] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7583), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_class_body, + STATE(4171), 1, + sym_comment, + STATE(4441), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6865), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [154308] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7595), 1, + ACTIONS(7633), 1, anon_sym_COMMA, - ACTIONS(7605), 1, + ACTIONS(7635), 1, anon_sym_RBRACE, - STATE(4174), 1, + STATE(4172), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5737), 1, aux_sym_object_repeat1, - ACTIONS(4640), 4, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4642), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [154237] = 10, + [154339] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7607), 1, + ACTIONS(7637), 1, anon_sym_BANG, - ACTIONS(7609), 1, + ACTIONS(7639), 1, anon_sym_QMARK, - STATE(4175), 1, + STATE(4173), 1, sym_comment, - STATE(5288), 1, + STATE(5191), 1, sym_type_annotation, - STATE(6127), 1, + STATE(6045), 1, sym__initializer, - ACTIONS(7308), 3, + ACTIONS(7270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154270] = 4, + [154372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4176), 1, + STATE(4174), 1, sym_comment, - ACTIONS(7611), 9, - anon_sym_EQ, + ACTIONS(2174), 9, + 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_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154393] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4175), 1, + sym_comment, + STATE(4984), 1, + sym_type_annotation, + STATE(5763), 1, + sym__initializer, + ACTIONS(7549), 2, anon_sym_in, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [154291] = 9, + ACTIONS(7545), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154424] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7595), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7641), 1, + anon_sym_BANG, + ACTIONS(7643), 1, + anon_sym_QMARK, + STATE(4176), 1, + sym_comment, + STATE(5013), 1, + sym_type_annotation, + STATE(5825), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7613), 1, - anon_sym_RBRACE, + anon_sym_SEMI, + [154457] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_class_body, STATE(4177), 1, sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154322] = 9, + STATE(4650), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6903), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [154494] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7595), 1, + ACTIONS(7633), 1, anon_sym_COMMA, - ACTIONS(7615), 1, + ACTIONS(7647), 1, anon_sym_RBRACE, STATE(4178), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - STATE(5839), 1, + STATE(5844), 1, aux_sym_object_repeat1, - ACTIONS(4640), 4, + ACTIONS(4642), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [154353] = 7, + [154525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, STATE(4179), 1, sym_comment, - ACTIONS(5035), 6, + ACTIONS(2316), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [154380] = 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4180), 1, sym_comment, - ACTIONS(7623), 9, - sym__automatic_semicolon, + ACTIONS(7649), 9, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [154401] = 10, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154567] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7625), 1, - anon_sym_BANG, - ACTIONS(7627), 1, - anon_sym_QMARK, + ACTIONS(7543), 1, + anon_sym_EQ, STATE(4181), 1, sym_comment, - STATE(5303), 1, + STATE(4984), 1, sym_type_annotation, - STATE(6020), 1, + STATE(5135), 1, sym__initializer, - ACTIONS(7308), 3, + ACTIONS(7549), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7545), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154434] = 4, + [154598] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_class_body, STATE(4182), 1, sym_comment, - ACTIONS(7629), 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, - [154455] = 7, + STATE(4496), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6307), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [154635] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2756), 1, + anon_sym_RBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, + ACTIONS(7252), 1, + anon_sym_EQ, + ACTIONS(7633), 1, + anon_sym_COMMA, STATE(4183), 1, sym_comment, - ACTIONS(5025), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [154482] = 12, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154666] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7631), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(1605), 1, + STATE(446), 1, sym_class_body, STATE(4184), 1, sym_comment, - STATE(4526), 1, + STATE(4469), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6670), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [154519] = 4, + [154703] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4185), 1, - sym_comment, - ACTIONS(7633), 9, + ACTIONS(7252), 1, anon_sym_EQ, + ACTIONS(7633), 1, anon_sym_COMMA, + ACTIONS(7653), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(4185), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [154540] = 12, + [154734] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7635), 1, + ACTIONS(7655), 1, anon_sym_LBRACE, + STATE(1461), 1, + sym_class_body, STATE(4186), 1, sym_comment, - STATE(4435), 1, + STATE(4551), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6597), 1, + STATE(6409), 1, sym_class_heritage, - STATE(6629), 1, - sym_class_body, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [154577] = 5, + [154771] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7637), 1, + ACTIONS(7258), 1, anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7657), 1, + anon_sym_BANG, + ACTIONS(7659), 1, + anon_sym_QMARK, STATE(4187), 1, sym_comment, - ACTIONS(4454), 8, - anon_sym_LBRACE, + STATE(5185), 1, + sym_type_annotation, + STATE(6042), 1, + sym__initializer, + ACTIONS(7270), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [154600] = 12, + anon_sym_SEMI, + [154804] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1099), 1, - sym_class_body, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4188), 1, sym_comment, - STATE(4479), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6594), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [154637] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5174), 1, + sym_type_annotation, + STATE(6021), 1, + sym__initializer, + ACTIONS(7294), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7292), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154835] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7527), 1, - sym_identifier, - ACTIONS(7641), 1, - anon_sym_RBRACE, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(4189), 1, sym_comment, - STATE(5555), 1, - sym_string, - STATE(5729), 1, - sym__module_export_name, - STATE(6815), 1, - sym_export_specifier, - ACTIONS(7529), 2, - anon_sym_type, - anon_sym_typeof, - [154672] = 12, + ACTIONS(7661), 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, + [154856] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7663), 1, + anon_sym_BANG, + ACTIONS(7665), 1, + anon_sym_QMARK, + STATE(4190), 1, + sym_comment, + STATE(4952), 1, + sym_type_annotation, + STATE(5730), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4191), 1, + sym_comment, + ACTIONS(5169), 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, + [154910] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7643), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(1256), 1, + STATE(1234), 1, sym_class_body, - STATE(4190), 1, + STATE(4192), 1, sym_comment, - STATE(4490), 1, + STATE(4587), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6808), 1, + STATE(6812), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [154709] = 5, + [154947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7645), 1, - anon_sym_EQ, - STATE(4191), 1, + STATE(4193), 1, sym_comment, - ACTIONS(4456), 8, + ACTIONS(5149), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [154732] = 12, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [154968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - ACTIONS(7647), 1, - anon_sym_DOT, - STATE(2549), 1, - sym_template_string, - STATE(2715), 1, - sym_arguments, - STATE(4192), 1, + STATE(4194), 1, sym_comment, - STATE(5522), 1, - sym_type_arguments, - STATE(6677), 1, - sym_optional_chain, - [154769] = 10, + ACTIONS(3569), 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, + [154989] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7649), 1, + ACTIONS(7669), 1, anon_sym_BANG, - ACTIONS(7651), 1, + ACTIONS(7671), 1, anon_sym_QMARK, - STATE(4193), 1, + STATE(4195), 1, sym_comment, - STATE(5266), 1, + STATE(5349), 1, sym_type_annotation, - STATE(6171), 1, + STATE(6286), 1, sym__initializer, - ACTIONS(7278), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154802] = 10, + [155022] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7653), 1, + ACTIONS(7673), 1, anon_sym_BANG, - ACTIONS(7655), 1, + ACTIONS(7675), 1, anon_sym_QMARK, - STATE(4194), 1, + STATE(4196), 1, sym_comment, - STATE(5246), 1, + STATE(5311), 1, sym_type_annotation, - STATE(6138), 1, + STATE(6158), 1, sym__initializer, - ACTIONS(7278), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154835] = 9, + [155055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + STATE(4197), 1, + sym_comment, + ACTIONS(7677), 9, anon_sym_EQ, - ACTIONS(7252), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4195), 1, - sym_comment, - STATE(5139), 1, - sym_type_annotation, - STATE(5975), 1, - sym__initializer, - ACTIONS(7302), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7300), 3, + [155076] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4198), 1, + sym_comment, + ACTIONS(3579), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154866] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155097] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4196), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7679), 1, + anon_sym_BANG, + ACTIONS(7681), 1, + anon_sym_QMARK, + STATE(4199), 1, sym_comment, - STATE(4448), 1, - sym_type_parameters, - STATE(4915), 1, - sym_class_body, - STATE(5692), 1, - sym_extends_clause, - STATE(6872), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [154903] = 11, + STATE(4940), 1, + sym_type_annotation, + STATE(5720), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155130] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340874,29 +341056,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(7527), 1, + ACTIONS(7555), 1, sym_identifier, - ACTIONS(7659), 1, + ACTIONS(7683), 1, anon_sym_RBRACE, - STATE(4197), 1, + STATE(4200), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(5729), 1, + STATE(5732), 1, sym__module_export_name, - STATE(6815), 1, + STATE(6819), 1, sym_export_specifier, - ACTIONS(7529), 2, + ACTIONS(7557), 2, anon_sym_type, anon_sym_typeof, - [154938] = 4, + [155165] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4198), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7685), 1, + anon_sym_BANG, + ACTIONS(7687), 1, + anon_sym_QMARK, + STATE(4201), 1, + sym_comment, + STATE(4938), 1, + sym_type_annotation, + STATE(5717), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155198] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4202), 1, sym_comment, - ACTIONS(2262), 9, + ACTIONS(3599), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340906,102 +341111,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154959] = 4, + [155219] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4199), 1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, + STATE(4203), 1, sym_comment, - ACTIONS(7661), 9, + ACTIONS(5300), 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, + [155246] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5431), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [154980] = 10, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(3163), 1, + sym_template_string, + STATE(3291), 1, + sym_arguments, + STATE(4121), 1, + sym_type_arguments, + STATE(4204), 1, + sym_comment, + STATE(6495), 1, + sym_optional_chain, + [155283] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7663), 1, + ACTIONS(7689), 1, anon_sym_BANG, - ACTIONS(7665), 1, + ACTIONS(7691), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4205), 1, sym_comment, - STATE(5019), 1, + STATE(5338), 1, sym_type_annotation, - STATE(5841), 1, + STATE(6257), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155013] = 10, + [155316] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7667), 1, + ACTIONS(7693), 1, anon_sym_BANG, - ACTIONS(7669), 1, + ACTIONS(7695), 1, anon_sym_QMARK, - STATE(4201), 1, + STATE(4206), 1, sym_comment, - STATE(5049), 1, + STATE(4916), 1, sym_type_annotation, - STATE(5863), 1, + STATE(5707), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155046] = 12, + [155349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7671), 1, - anon_sym_LBRACE, - STATE(389), 1, - sym_class_body, - STATE(4202), 1, + STATE(4207), 1, sym_comment, - STATE(4570), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6586), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [155083] = 4, + ACTIONS(3669), 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, + [155370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4203), 1, + STATE(4208), 1, sym_comment, - ACTIONS(5326), 9, + ACTIONS(5249), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341011,37 +341236,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155104] = 10, + [155391] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7489), 1, + anon_sym_typeof, + STATE(4209), 1, + sym_comment, + STATE(5558), 1, + sym_string, + STATE(6569), 1, + sym__import_identifier, + STATE(6766), 1, + sym_import_specifier, + STATE(7184), 1, + sym__module_export_name, + [155428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7673), 1, - anon_sym_BANG, - ACTIONS(7675), 1, - anon_sym_QMARK, - STATE(4204), 1, + STATE(4210), 1, sym_comment, - STATE(5050), 1, - sym_type_annotation, - STATE(5865), 1, - sym__initializer, - ACTIONS(7324), 3, + ACTIONS(5304), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155137] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155449] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4205), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(1139), 1, + sym_class_body, + STATE(4211), 1, + sym_comment, + STATE(4571), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6468), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [155486] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4212), 1, sym_comment, - ACTIONS(5322), 9, + ACTIONS(5063), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341051,14 +341320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155158] = 4, + [155507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4206), 1, + STATE(4213), 1, sym_comment, - ACTIONS(5318), 9, + ACTIONS(5364), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341068,16 +341337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155179] = 5, + [155528] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(7627), 1, anon_sym_AMP, - STATE(4207), 1, + STATE(4214), 1, sym_comment, - ACTIONS(5314), 8, + ACTIONS(5368), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341086,14 +341355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [155202] = 4, + [155551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4208), 1, + STATE(4215), 1, sym_comment, - ACTIONS(5310), 9, + ACTIONS(5043), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341103,14 +341372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155223] = 4, + [155572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4209), 1, + STATE(4216), 1, sym_comment, - ACTIONS(5306), 9, + ACTIONS(5380), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341120,14 +341389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155244] = 4, + [155593] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4210), 1, + STATE(4217), 1, sym_comment, - ACTIONS(5298), 9, + ACTIONS(5384), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341137,55 +341406,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155265] = 7, + [155614] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(7627), 1, anon_sym_AMP, - ACTIONS(7619), 1, + ACTIONS(7629), 1, anon_sym_PIPE, - ACTIONS(7621), 1, + ACTIONS(7631), 1, anon_sym_extends, - STATE(4211), 1, + STATE(4218), 1, sym_comment, - ACTIONS(5284), 6, + ACTIONS(5388), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [155292] = 6, + [155641] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7699), 1, anon_sym_LBRACK, - STATE(4212), 1, + STATE(4219), 1, sym_comment, - ACTIONS(5280), 3, + ACTIONS(5067), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5276), 5, + ACTIONS(5392), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155317] = 5, + [155666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7677), 1, + ACTIONS(7701), 1, anon_sym_extends, - STATE(4213), 1, + STATE(4220), 1, sym_comment, - ACTIONS(5266), 8, + ACTIONS(5396), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341194,16 +341463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [155340] = 5, + [155689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7577), 1, + ACTIONS(7699), 1, anon_sym_LBRACK, - STATE(4214), 1, + STATE(4221), 1, sym_comment, - ACTIONS(5015), 8, + ACTIONS(5402), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341212,37 +341481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155363] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7679), 1, - anon_sym_BANG, - ACTIONS(7681), 1, - anon_sym_QMARK, - STATE(4215), 1, - sym_comment, - STATE(5319), 1, - sym_type_annotation, - STATE(6166), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155396] = 4, + [155712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4216), 1, + STATE(4222), 1, sym_comment, - ACTIONS(5246), 9, + ACTIONS(3679), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341252,37 +341498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155417] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7683), 1, - anon_sym_BANG, - ACTIONS(7685), 1, - anon_sym_QMARK, - STATE(4217), 1, - sym_comment, - STATE(5267), 1, - sym_type_annotation, - STATE(6159), 1, - sym__initializer, - ACTIONS(7278), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155450] = 4, + [155733] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4218), 1, + STATE(4223), 1, sym_comment, - ACTIONS(3507), 9, + ACTIONS(5284), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341292,37 +341515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155471] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7687), 1, - anon_sym_BANG, - ACTIONS(7689), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_comment, - STATE(5247), 1, - sym_type_annotation, - STATE(6143), 1, - sym__initializer, - ACTIONS(7278), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155504] = 4, + [155754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4220), 1, + STATE(4224), 1, sym_comment, - ACTIONS(5242), 9, + ACTIONS(5145), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341332,14 +341532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155525] = 4, + [155775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4221), 1, + STATE(4225), 1, sym_comment, - ACTIONS(5236), 9, + ACTIONS(5237), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341349,732 +341549,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155546] = 4, + [155796] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4222), 1, + ACTIONS(7703), 1, + anon_sym_COLON, + STATE(4226), 1, sym_comment, - ACTIONS(5234), 9, + STATE(5321), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7501), 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, - [155567] = 10, + [155821] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7691), 1, + ACTIONS(7705), 1, anon_sym_BANG, - ACTIONS(7693), 1, + ACTIONS(7707), 1, anon_sym_QMARK, - STATE(4223), 1, + STATE(4227), 1, sym_comment, - STATE(5063), 1, + STATE(4904), 1, sym_type_annotation, - STATE(5875), 1, + STATE(5691), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155600] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7635), 1, - anon_sym_LBRACE, - STATE(4224), 1, - sym_comment, - STATE(4500), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6460), 1, - sym_class_heritage, - STATE(6835), 1, - sym_class_body, - STATE(7268), 1, - sym_implements_clause, - [155637] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(4225), 1, - sym_comment, - STATE(5522), 1, - sym_type_arguments, - STATE(6677), 1, - sym_optional_chain, - STATE(2549), 2, - sym_template_string, - sym_arguments, - [155672] = 12, + [155854] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7695), 1, + ACTIONS(7709), 1, anon_sym_LBRACE, - STATE(1103), 1, + STATE(390), 1, sym_class_body, - STATE(4226), 1, + STATE(4228), 1, sym_comment, - STATE(4411), 1, + STATE(4576), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6303), 1, + STATE(6475), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [155709] = 4, + [155891] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4227), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7711), 1, + anon_sym_BANG, + ACTIONS(7713), 1, + anon_sym_QMARK, + STATE(4229), 1, sym_comment, - ACTIONS(3517), 9, + STATE(5302), 1, + sym_type_annotation, + STATE(6133), 1, + sym__initializer, + ACTIONS(7286), 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, - [155730] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7481), 1, - sym_identifier, - ACTIONS(7483), 1, - anon_sym_type, - ACTIONS(7489), 1, - anon_sym_typeof, - STATE(4228), 1, - sym_comment, - STATE(5555), 1, - sym_string, - STATE(6566), 1, - sym__import_identifier, - STATE(6766), 1, - sym_import_specifier, - STATE(7178), 1, - sym__module_export_name, - [155767] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_class_body, - STATE(4229), 1, - sym_comment, - STATE(4491), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6890), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [155804] = 12, + [155924] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5183), 1, anon_sym_QMARK_DOT, - ACTIONS(7084), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, anon_sym_LT, - ACTIONS(7699), 1, + ACTIONS(7715), 1, anon_sym_DOT, - STATE(2549), 1, + STATE(2631), 1, sym_template_string, - STATE(3358), 1, + STATE(3086), 1, sym_arguments, STATE(4230), 1, sym_comment, - STATE(5522), 1, + STATE(5524), 1, sym_type_arguments, - STATE(6677), 1, + STATE(6687), 1, sym_optional_chain, - [155841] = 12, + [155961] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7717), 1, + anon_sym_BANG, + ACTIONS(7719), 1, + anon_sym_QMARK, + STATE(4231), 1, + sym_comment, + STATE(5287), 1, + sym_type_annotation, + STATE(6131), 1, + sym__initializer, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155994] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7701), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(319), 1, + STATE(425), 1, sym_class_body, - STATE(4231), 1, + STATE(4232), 1, sym_comment, - STATE(4396), 1, + STATE(4578), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6304), 1, + STATE(6823), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [155878] = 4, + [156031] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4232), 1, - sym_comment, - ACTIONS(7703), 9, + ACTIONS(7258), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [155899] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(2389), 1, - sym_arguments, - STATE(2549), 1, - sym_template_string, - STATE(3916), 1, - sym_type_arguments, STATE(4233), 1, sym_comment, - STATE(6677), 1, - sym_optional_chain, - [155936] = 10, + STATE(5317), 1, + sym_type_annotation, + STATE(6188), 1, + sym__initializer, + ACTIONS(7376), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7374), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156062] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7705), 1, + ACTIONS(7721), 1, anon_sym_BANG, - ACTIONS(7707), 1, + ACTIONS(7723), 1, anon_sym_QMARK, STATE(4234), 1, sym_comment, - STATE(4947), 1, + STATE(5248), 1, sym_type_annotation, - STATE(5730), 1, + STATE(6146), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155969] = 12, + [156095] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(2549), 1, - sym_template_string, - STATE(3206), 1, - sym_arguments, - STATE(3916), 1, - sym_type_arguments, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7725), 1, + anon_sym_BANG, + ACTIONS(7727), 1, + anon_sym_QMARK, STATE(4235), 1, sym_comment, - STATE(6677), 1, - sym_optional_chain, - [156006] = 4, + STATE(5285), 1, + sym_type_annotation, + STATE(6126), 1, + sym__initializer, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156128] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7655), 1, + anon_sym_LBRACE, + STATE(1419), 1, + sym_class_body, STATE(4236), 1, sym_comment, - ACTIONS(5375), 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, - [156027] = 4, + STATE(4579), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6479), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [156165] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7729), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_class_body, STATE(4237), 1, sym_comment, - ACTIONS(7709), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [156048] = 10, + STATE(4566), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6446), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [156202] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7711), 1, - anon_sym_BANG, - ACTIONS(7713), 1, - anon_sym_QMARK, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7733), 1, + anon_sym_DOT, STATE(4238), 1, sym_comment, - STATE(5370), 1, - sym_type_annotation, - STATE(6225), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156081] = 10, + STATE(5519), 1, + sym_arguments, + STATE(6734), 1, + sym_type_arguments, + ACTIONS(7731), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [156233] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7715), 1, - anon_sym_BANG, - ACTIONS(7717), 1, - anon_sym_QMARK, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7735), 1, + anon_sym_DOT, + STATE(2631), 1, + sym_template_string, + STATE(3349), 1, + sym_arguments, STATE(4239), 1, sym_comment, - STATE(5369), 1, - sym_type_annotation, - STATE(6228), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156114] = 12, + STATE(5524), 1, + sym_type_arguments, + STATE(6687), 1, + sym_optional_chain, + [156270] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7571), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3164), 1, + STATE(3268), 1, sym_class_body, STATE(4240), 1, sym_comment, - STATE(4454), 1, + STATE(4508), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6842), 1, + STATE(6943), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156151] = 12, + [156307] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7719), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(360), 1, sym_class_body, STATE(4241), 1, sym_comment, - STATE(4499), 1, + STATE(4564), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6819), 1, + STATE(6428), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156188] = 10, + [156344] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7721), 1, - anon_sym_BANG, - ACTIONS(7723), 1, - anon_sym_QMARK, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(2631), 1, + sym_template_string, + STATE(2946), 1, + sym_arguments, + STATE(4002), 1, + sym_type_arguments, STATE(4242), 1, sym_comment, - STATE(5362), 1, - sym_type_annotation, - STATE(6246), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156221] = 10, + STATE(6687), 1, + sym_optional_chain, + [156381] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7727), 1, - anon_sym_BANG, - ACTIONS(7729), 1, - anon_sym_QMARK, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(2925), 1, + sym_arguments, + STATE(3163), 1, + sym_template_string, + STATE(4121), 1, + sym_type_arguments, STATE(4243), 1, sym_comment, - STATE(4917), 1, - sym_type_annotation, - STATE(5704), 1, - sym__initializer, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156254] = 12, + STATE(6495), 1, + sym_optional_chain, + [156418] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7701), 1, + ACTIONS(7737), 1, anon_sym_LBRACE, - STATE(330), 1, + STATE(1169), 1, sym_class_body, STATE(4244), 1, sym_comment, - STATE(4512), 1, + STATE(4562), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6315), 1, + STATE(6344), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156291] = 10, + [156455] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7731), 1, - anon_sym_BANG, - ACTIONS(7733), 1, - anon_sym_QMARK, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_class_body, STATE(4245), 1, sym_comment, - STATE(5361), 1, - sym_type_annotation, - STATE(6248), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156324] = 10, + STATE(4603), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6783), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [156492] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(7739), 1, anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7735), 1, - anon_sym_BANG, - ACTIONS(7737), 1, - anon_sym_QMARK, STATE(4246), 1, sym_comment, - STATE(5268), 1, - sym_type_annotation, - STATE(6104), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, + ACTIONS(7511), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [156357] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156521] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(1020), 1, + sym_class_body, STATE(4247), 1, sym_comment, - ACTIONS(5368), 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, - [156378] = 10, + STATE(4651), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6505), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [156558] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7739), 1, - anon_sym_BANG, ACTIONS(7741), 1, + anon_sym_BANG, + ACTIONS(7743), 1, anon_sym_QMARK, STATE(4248), 1, sym_comment, - STATE(5221), 1, + STATE(5264), 1, sym_type_annotation, - STATE(6214), 1, + STATE(6100), 1, sym__initializer, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156411] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4249), 1, - sym_comment, - ACTIONS(5161), 9, + ACTIONS(7286), 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, - [156432] = 12, + [156591] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(1019), 1, + STATE(1063), 1, sym_class_body, - STATE(4250), 1, + STATE(4249), 1, sym_comment, - STATE(4395), 1, + STATE(4561), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6299), 1, + STATE(6317), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156469] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(4945), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(2549), 1, - sym_template_string, - STATE(3395), 1, - sym_arguments, - STATE(3916), 1, - sym_type_arguments, - STATE(4251), 1, - sym_comment, - STATE(6677), 1, - sym_optional_chain, - [156506] = 8, + [156628] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(7743), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4252), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7745), 1, + anon_sym_BANG, + ACTIONS(7747), 1, + anon_sym_QMARK, + STATE(4250), 1, sym_comment, - ACTIONS(7563), 5, - anon_sym_LBRACE, + STATE(5102), 1, + sym_type_annotation, + STATE(5950), 1, + sym__initializer, + ACTIONS(7312), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [156535] = 9, + anon_sym_SEMI, + [156661] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4253), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7749), 1, + anon_sym_BANG, + ACTIONS(7751), 1, + anon_sym_QMARK, + STATE(4251), 1, sym_comment, - STATE(4980), 1, + STATE(5244), 1, sym_type_annotation, - STATE(5132), 1, + STATE(6130), 1, sym__initializer, - ACTIONS(7539), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7535), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156566] = 4, + [156694] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4254), 1, + STATE(4252), 1, sym_comment, - ACTIONS(5161), 9, + ACTIONS(5265), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342084,35 +342184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156587] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(7745), 1, - anon_sym_EQ, - ACTIONS(7747), 1, - anon_sym_DOT, - STATE(4255), 1, - sym_comment, - STATE(4380), 1, - sym_arguments, - ACTIONS(7555), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [156616] = 4, + [156715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4256), 1, + STATE(4253), 1, sym_comment, - ACTIONS(5153), 9, + ACTIONS(5280), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342122,118 +342201,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156637] = 7, + [156736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, - STATE(4257), 1, + STATE(4254), 1, sym_comment, - ACTIONS(5165), 6, + ACTIONS(5011), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [156664] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156757] = 11, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(2884), 1, - sym_arguments, - STATE(3068), 1, - sym_template_string, - STATE(4146), 1, - sym_type_arguments, - STATE(4258), 1, - sym_comment, - STATE(6494), 1, - sym_optional_chain, - [156701] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4259), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7555), 1, + sym_identifier, + ACTIONS(7753), 1, + anon_sym_RBRACE, + STATE(4255), 1, sym_comment, - ACTIONS(5165), 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, - [156722] = 4, + STATE(5558), 1, + sym_string, + STATE(5732), 1, + sym__module_export_name, + STATE(6819), 1, + sym_export_specifier, + ACTIONS(7557), 2, + anon_sym_type, + anon_sym_typeof, + [156792] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4260), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7755), 1, + anon_sym_EQ, + ACTIONS(7757), 1, + anon_sym_DOT, + STATE(4256), 1, sym_comment, - ACTIONS(5159), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4367), 1, + sym_arguments, + ACTIONS(7513), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [156743] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156821] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3060), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(1507), 1, sym_class_body, - STATE(4261), 1, + STATE(4257), 1, sym_comment, - STATE(4446), 1, + STATE(4636), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6578), 1, + STATE(6674), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156780] = 4, + [156858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4262), 1, + STATE(4258), 1, sym_comment, - ACTIONS(5153), 9, + ACTIONS(4965), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342243,217 +342305,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156801] = 4, + [156879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4263), 1, + STATE(4259), 1, sym_comment, - ACTIONS(5135), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7761), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [156822] = 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [156900] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(2631), 1, + sym_template_string, + STATE(3326), 1, + sym_arguments, + STATE(3908), 1, + sym_type_arguments, + STATE(4260), 1, + sym_comment, + STATE(6687), 1, + sym_optional_chain, + [156937] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7749), 1, + ACTIONS(7763), 1, anon_sym_BANG, - ACTIONS(7751), 1, + ACTIONS(7765), 1, anon_sym_QMARK, - STATE(4264), 1, + STATE(4261), 1, sym_comment, - STATE(5360), 1, + STATE(5262), 1, sym_type_annotation, - STATE(6250), 1, + STATE(6095), 1, sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156855] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, - STATE(4265), 1, - sym_comment, - ACTIONS(5147), 6, + ACTIONS(7286), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [156882] = 12, + [156970] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3193), 1, + ACTIONS(7709), 1, + anon_sym_LBRACE, + STATE(406), 1, sym_class_body, - STATE(4266), 1, + STATE(4262), 1, sym_comment, - STATE(4521), 1, + STATE(4621), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6724), 1, + STATE(6555), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [156919] = 12, + [157007] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(7084), 1, - anon_sym_LT, - ACTIONS(7753), 1, - anon_sym_DOT, - STATE(3068), 1, - sym_template_string, - STATE(3075), 1, - sym_arguments, - STATE(4267), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7767), 1, + anon_sym_BANG, + ACTIONS(7769), 1, + anon_sym_QMARK, + STATE(4263), 1, sym_comment, - STATE(5568), 1, - sym_type_arguments, - STATE(6494), 1, - sym_optional_chain, - [156956] = 9, + STATE(5350), 1, + sym_type_annotation, + STATE(6284), 1, + sym__initializer, + ACTIONS(7286), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157040] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2801), 1, + ACTIONS(2799), 1, anon_sym_RBRACE, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(7595), 1, + ACTIONS(7633), 1, anon_sym_COMMA, - STATE(4268), 1, + STATE(4264), 1, sym_comment, - STATE(5732), 1, + STATE(5737), 1, aux_sym_object_repeat1, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4640), 4, + ACTIONS(4642), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [156987] = 10, + [157071] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7755), 1, - anon_sym_BANG, - ACTIONS(7757), 1, - anon_sym_QMARK, - STATE(4269), 1, + STATE(4265), 1, sym_comment, - STATE(5356), 1, - sym_type_annotation, - STATE(6269), 1, - sym__initializer, - ACTIONS(7308), 3, + ACTIONS(5356), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157020] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157092] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7729), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(1280), 1, sym_class_body, - STATE(4270), 1, + STATE(4266), 1, sym_comment, - STATE(4575), 1, + STATE(4552), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6711), 1, + STATE(6373), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [157057] = 10, + [157129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + STATE(4267), 1, + sym_comment, + ACTIONS(5345), 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, + [157150] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4268), 1, + sym_comment, + ACTIONS(5345), 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] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7761), 1, + ACTIONS(7771), 1, anon_sym_BANG, - ACTIONS(7763), 1, + ACTIONS(7773), 1, anon_sym_QMARK, - STATE(4271), 1, + STATE(4269), 1, sym_comment, - STATE(5348), 1, + STATE(5359), 1, sym_type_annotation, - STATE(6280), 1, + STATE(6272), 1, sym__initializer, - ACTIONS(7308), 3, + ACTIONS(7286), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157090] = 4, + [157204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4272), 1, + STATE(4270), 1, sym_comment, - ACTIONS(5143), 9, + ACTIONS(5278), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342463,14 +342556,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157111] = 4, + [157225] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4273), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4271), 1, + sym_comment, + STATE(5142), 1, + sym_type_annotation, + STATE(5976), 1, + sym__initializer, + ACTIONS(7368), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7366), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157256] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4272), 1, sym_comment, - ACTIONS(5139), 9, + ACTIONS(5278), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342480,332 +342595,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157132] = 10, + [157277] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7765), 1, + ACTIONS(7775), 1, anon_sym_BANG, - ACTIONS(7767), 1, + ACTIONS(7777), 1, anon_sym_QMARK, - STATE(4274), 1, + STATE(4273), 1, sym_comment, - STATE(5347), 1, + STATE(5249), 1, sym_type_annotation, - STATE(6286), 1, + STATE(6147), 1, sym__initializer, - ACTIONS(7308), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157165] = 12, + [157310] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7657), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(4275), 1, + STATE(4274), 1, sym_comment, - STATE(4516), 1, + STATE(4448), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6001), 1, + STATE(6141), 1, sym_class_body, - STATE(6571), 1, + STATE(6737), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [157202] = 12, + [157347] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(1049), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3125), 1, sym_class_body, - STATE(4276), 1, + STATE(4275), 1, sym_comment, - STATE(4609), 1, + STATE(4433), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6501), 1, + STATE(6845), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [157239] = 4, + [157384] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4277), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2566), 1, + sym_class_body, + STATE(4276), 1, sym_comment, - ACTIONS(7771), 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, - [157260] = 10, + STATE(4432), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6714), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [157421] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7773), 1, - anon_sym_BANG, - ACTIONS(7775), 1, - anon_sym_QMARK, - STATE(4278), 1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(4277), 1, sym_comment, - STATE(5339), 1, - sym_type_annotation, - STATE(6251), 1, - sym__initializer, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157293] = 10, + STATE(5524), 1, + sym_type_arguments, + STATE(6687), 1, + sym_optional_chain, + STATE(2631), 2, + sym_template_string, + sym_arguments, + [157456] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7777), 1, + ACTIONS(7783), 1, anon_sym_BANG, - ACTIONS(7779), 1, + ACTIONS(7785), 1, anon_sym_QMARK, - STATE(4279), 1, + STATE(4278), 1, sym_comment, - STATE(5182), 1, + STATE(5250), 1, sym_type_annotation, - STATE(6039), 1, + STATE(6149), 1, sym__initializer, - ACTIONS(7338), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157326] = 10, + [157489] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7781), 1, + ACTIONS(7787), 1, anon_sym_BANG, - ACTIONS(7783), 1, + ACTIONS(7789), 1, anon_sym_QMARK, - STATE(4280), 1, + STATE(4279), 1, sym_comment, - STATE(5101), 1, + STATE(4848), 1, sym_type_annotation, - STATE(5946), 1, + STATE(6124), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157359] = 12, + [157522] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7781), 1, anon_sym_LBRACE, - STATE(2541), 1, + STATE(3397), 1, sym_class_body, - STATE(4281), 1, + STATE(4280), 1, sym_comment, - STATE(4465), 1, + STATE(4642), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6552), 1, + STATE(6741), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [157396] = 10, + [157559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7791), 1, anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7785), 1, - anon_sym_BANG, - ACTIONS(7787), 1, - anon_sym_QMARK, - STATE(4282), 1, + STATE(4281), 1, sym_comment, - STATE(5185), 1, - sym_type_annotation, - STATE(6043), 1, - sym__initializer, - ACTIONS(7338), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157429] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, + ACTIONS(7793), 8, anon_sym_LBRACE, - STATE(4283), 1, - sym_comment, - STATE(4562), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6141), 1, - sym_class_body, - STATE(6734), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [157466] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2756), 1, - anon_sym_RBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7258), 1, - anon_sym_EQ, - ACTIONS(7595), 1, anon_sym_COMMA, - STATE(4284), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [157497] = 9, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157582] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7795), 1, anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4285), 1, + STATE(4282), 1, sym_comment, - STATE(4980), 1, - sym_type_annotation, - STATE(5761), 1, - sym__initializer, - ACTIONS(7539), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7535), 3, - sym__automatic_semicolon, + ACTIONS(7797), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [157528] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157605] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4286), 1, + STATE(4283), 1, sym_comment, - ACTIONS(7789), 9, + ACTIONS(4446), 9, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [157549] = 12, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [157626] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7657), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(4287), 1, + STATE(4284), 1, sym_comment, - STATE(4502), 1, + STATE(4528), 1, sym_type_parameters, - STATE(4972), 1, + STATE(4917), 1, sym_class_body, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6817), 1, + STATE(6866), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [157586] = 4, + [157663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4288), 1, + STATE(4285), 1, sym_comment, - ACTIONS(5149), 9, + ACTIONS(5320), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342815,14 +342883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157607] = 4, + [157684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4289), 1, + STATE(4286), 1, sym_comment, - ACTIONS(3657), 9, + ACTIONS(5316), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342832,16 +342900,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157628] = 5, + [157705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7791), 1, + STATE(4287), 1, + sym_comment, + ACTIONS(5290), 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, + [157726] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7799), 1, anon_sym_EQ, - STATE(4290), 1, + STATE(4288), 1, sym_comment, - ACTIONS(7661), 8, + ACTIONS(7801), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -342850,112 +342935,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - [157651] = 4, + [157749] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5431), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(4289), 1, + sym_comment, + STATE(5571), 1, + sym_type_arguments, + STATE(6495), 1, + sym_optional_chain, + STATE(3163), 2, + sym_template_string, + sym_arguments, + [157784] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_BQUOTE, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, + anon_sym_LT, + STATE(2631), 1, + sym_template_string, + STATE(3226), 1, + sym_arguments, + STATE(3908), 1, + sym_type_arguments, + STATE(4290), 1, + sym_comment, + STATE(6687), 1, + sym_optional_chain, + [157821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7803), 1, + anon_sym_EQ, STATE(4291), 1, sym_comment, - ACTIONS(5151), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7805), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [157672] = 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7695), 1, - anon_sym_LBRACE, - STATE(1135), 1, - sym_class_body, STATE(4292), 1, sym_comment, - STATE(4588), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6311), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [157709] = 4, + ACTIONS(4452), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [157865] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7809), 1, + anon_sym_BANG, + ACTIONS(7811), 1, + anon_sym_QMARK, STATE(4293), 1, sym_comment, - ACTIONS(5155), 9, + STATE(4948), 1, + sym_type_annotation, + STATE(5709), 1, + sym__initializer, + ACTIONS(7807), 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, - [157730] = 4, + [157898] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4294), 1, sym_comment, - ACTIONS(5215), 9, + ACTIONS(7813), 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, + [157919] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4295), 1, + sym_comment, + ACTIONS(7805), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [157940] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, anon_sym_extends, - [157751] = 9, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4296), 1, + sym_comment, + STATE(4523), 1, + sym_type_parameters, + STATE(4881), 1, + sym_class_body, + STATE(5683), 1, + sym_extends_clause, + STATE(6942), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [157977] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7595), 1, - anon_sym_COMMA, - STATE(4295), 1, - sym_comment, - STATE(5734), 1, - aux_sym_object_pattern_repeat1, - STATE(5839), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 4, - anon_sym_LPAREN, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7815), 1, + anon_sym_BANG, + ACTIONS(7817), 1, anon_sym_QMARK, - [157782] = 4, + STATE(4297), 1, + sym_comment, + STATE(5270), 1, + sym_type_annotation, + STATE(6176), 1, + sym__initializer, + ACTIONS(7318), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4296), 1, + STATE(4298), 1, sym_comment, - ACTIONS(5207), 9, + ACTIONS(5133), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342965,14 +343141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157803] = 4, + [158031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4297), 1, + STATE(4299), 1, sym_comment, - ACTIONS(5334), 9, + ACTIONS(5067), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342982,14 +343158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157824] = 4, + [158052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4298), 1, + STATE(4300), 1, sym_comment, - ACTIONS(5197), 9, + ACTIONS(5121), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -342999,86 +343175,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157845] = 10, + [158073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7793), 1, - anon_sym_BANG, - ACTIONS(7795), 1, - anon_sym_QMARK, - STATE(4299), 1, + STATE(4301), 1, sym_comment, - STATE(5248), 1, - sym_type_annotation, - STATE(6147), 1, - sym__initializer, - ACTIONS(7278), 3, + ACTIONS(7801), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [157878] = 11, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [158094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - anon_sym_BQUOTE, - ACTIONS(7084), 1, - anon_sym_LT, - STATE(4300), 1, + STATE(4302), 1, sym_comment, - STATE(5568), 1, - sym_type_arguments, - STATE(6494), 1, - sym_optional_chain, - STATE(3068), 2, - sym_template_string, - sym_arguments, - [157913] = 10, + ACTIONS(5087), 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, + [158115] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7797), 1, + ACTIONS(7819), 1, anon_sym_BANG, - ACTIONS(7799), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - STATE(4301), 1, + STATE(4303), 1, sym_comment, - STATE(5243), 1, + STATE(5273), 1, sym_type_annotation, - STATE(6124), 1, + STATE(6164), 1, sym__initializer, - ACTIONS(7278), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157946] = 5, + [158148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7801), 1, + ACTIONS(7823), 1, anon_sym_EQ, - STATE(4302), 1, + STATE(4304), 1, sym_comment, - ACTIONS(7709), 8, + ACTIONS(4452), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -343087,33 +343250,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - [157969] = 6, + [158171] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7803), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4303), 1, + STATE(4305), 1, sym_comment, - STATE(5318), 3, + STATE(5114), 1, sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7521), 5, + STATE(5993), 1, + sym__initializer, + ACTIONS(7827), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7825), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157994] = 4, + [158202] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4304), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7737), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_class_body, + STATE(4306), 1, + sym_comment, + STATE(4624), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6567), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [158239] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5465), 1, + anon_sym_BQUOTE, + ACTIONS(7082), 1, + anon_sym_LT, + ACTIONS(7829), 1, + anon_sym_DOT, + STATE(3163), 1, + sym_template_string, + STATE(3394), 1, + sym_arguments, + STATE(4307), 1, + sym_comment, + STATE(5571), 1, + sym_type_arguments, + STATE(6495), 1, + sym_optional_chain, + [158276] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4308), 1, sym_comment, - ACTIONS(5191), 9, + ACTIONS(5253), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343123,14 +343339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158015] = 4, + [158297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4305), 1, + STATE(4309), 1, sym_comment, - ACTIONS(5187), 9, + ACTIONS(5273), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343140,39 +343356,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158036] = 12, + [158318] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7805), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(1263), 1, - sym_class_body, - STATE(4306), 1, + STATE(4310), 1, sym_comment, - STATE(4596), 1, + STATE(4512), 1, sym_type_parameters, - STATE(5692), 1, + STATE(4946), 1, + sym_class_body, + STATE(5683), 1, sym_extends_clause, - STATE(6411), 1, + STATE(6899), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [158073] = 4, + [158355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4307), 1, + STATE(4311), 1, sym_comment, - ACTIONS(5183), 9, + ACTIONS(5360), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343182,79 +343398,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158094] = 9, + [158376] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4308), 1, + anon_sym_EQ, + ACTIONS(7633), 1, + anon_sym_COMMA, + ACTIONS(7831), 1, + anon_sym_RBRACE, + STATE(4312), 1, sym_comment, - STATE(5315), 1, - sym_type_annotation, - STATE(6183), 1, - sym__initializer, - ACTIONS(7364), 2, - anon_sym_BANG, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(7362), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158125] = 10, + [158407] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7807), 1, - anon_sym_BANG, - ACTIONS(7809), 1, - anon_sym_QMARK, - STATE(4309), 1, + STATE(4313), 1, sym_comment, - STATE(5242), 1, - sym_type_annotation, - STATE(6123), 1, - sym__initializer, - ACTIONS(7278), 3, + ACTIONS(7797), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [158158] = 7, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [158428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, - STATE(4310), 1, + ACTIONS(7833), 1, + anon_sym_EQ, + STATE(4314), 1, sym_comment, - ACTIONS(5352), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4446), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [158185] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [158451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4311), 1, + STATE(4315), 1, sym_comment, - ACTIONS(5169), 9, + ACTIONS(5153), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343264,149 +343472,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158206] = 7, + [158472] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(7627), 1, anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, - STATE(4312), 1, - sym_comment, - ACTIONS(5169), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [158233] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7805), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_class_body, - STATE(4313), 1, - sym_comment, - STATE(4630), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6475), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158270] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4314), 1, - sym_comment, - STATE(5229), 1, - sym_type_annotation, - STATE(6072), 1, - sym__initializer, - ACTIONS(7296), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7294), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158301] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3390), 1, - sym_class_body, - STATE(4315), 1, - sym_comment, - STATE(4384), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6738), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158338] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7811), 1, - anon_sym_EQ, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, STATE(4316), 1, sym_comment, - ACTIONS(7603), 8, + ACTIONS(5153), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [158361] = 12, + anon_sym_SEMI, + anon_sym_LBRACK, + [158499] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_class_body, + ACTIONS(7703), 1, + anon_sym_COLON, STATE(4317), 1, sym_comment, - STATE(4471), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6635), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158398] = 4, + STATE(5267), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7569), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [158524] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4318), 1, sym_comment, - ACTIONS(5129), 9, + ACTIONS(5073), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343416,32 +343528,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158419] = 5, + [158545] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, + ACTIONS(7627), 1, anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, STATE(4319), 1, sym_comment, - ACTIONS(5125), 8, + ACTIONS(5031), 6, 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, - [158442] = 4, + [158572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4320), 1, sym_comment, - ACTIONS(5121), 9, + ACTIONS(4979), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343451,418 +343565,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158463] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4993), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(7084), 1, - anon_sym_LT, - ACTIONS(7813), 1, - anon_sym_DOT, - STATE(2549), 1, - sym_template_string, - STATE(3011), 1, - sym_arguments, - STATE(4321), 1, - sym_comment, - STATE(5522), 1, - sym_type_arguments, - STATE(6677), 1, - sym_optional_chain, - [158500] = 12, + [158593] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7671), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(377), 1, - sym_class_body, - STATE(4322), 1, + STATE(4321), 1, sym_comment, - STATE(4637), 1, + STATE(4396), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6469), 1, + STATE(6517), 1, + sym_class_body, + STATE(6597), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [158537] = 6, + [158630] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7803), 1, - anon_sym_COLON, - STATE(4323), 1, + STATE(4322), 1, sym_comment, - STATE(5276), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7507), 5, + ACTIONS(5406), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158562] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [158651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7631), 1, + ACTIONS(7627), 1, + anon_sym_AMP, + STATE(4323), 1, + sym_comment, + ACTIONS(5376), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(1524), 1, - sym_class_body, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [158674] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(4324), 1, sym_comment, - STATE(4546), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6828), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158599] = 12, + ACTIONS(5312), 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, + [158695] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7769), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(1090), 1, + STATE(1620), 1, sym_class_body, STATE(4325), 1, sym_comment, - STATE(4645), 1, + STATE(4530), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6466), 1, + STATE(6832), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [158636] = 12, + [158732] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7643), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_class_body, STATE(4326), 1, sym_comment, - STATE(4427), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6773), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158673] = 12, + ACTIONS(5259), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [158759] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, anon_sym_LBRACE, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3260), 1, + sym_class_body, STATE(4327), 1, sym_comment, - STATE(4440), 1, + STATE(4514), 1, sym_type_parameters, - STATE(4930), 1, - sym_class_body, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6923), 1, + STATE(6908), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [158710] = 12, + [158796] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_class_body, STATE(4328), 1, sym_comment, - STATE(4437), 1, - sym_type_parameters, - STATE(5692), 1, - sym_extends_clause, - STATE(6515), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158747] = 12, + ACTIONS(5019), 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, + [158817] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, - anon_sym_LBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_BANG, + ACTIONS(7837), 1, + anon_sym_QMARK, STATE(4329), 1, sym_comment, - STATE(4421), 1, - sym_type_parameters, - STATE(4946), 1, - sym_class_body, - STATE(5692), 1, - sym_extends_clause, - STATE(6884), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [158784] = 10, + STATE(5224), 1, + sym_type_annotation, + STATE(6039), 1, + sym__initializer, + ACTIONS(7807), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158850] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(2801), 1, + anon_sym_RBRACE, ACTIONS(7252), 1, + anon_sym_EQ, + ACTIONS(7633), 1, + anon_sym_COMMA, + STATE(4330), 1, + sym_comment, + STATE(5738), 1, + aux_sym_object_pattern_repeat1, + STATE(5844), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7815), 1, + anon_sym_LT, + anon_sym_QMARK, + [158881] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7839), 1, anon_sym_BANG, - ACTIONS(7817), 1, + ACTIONS(7841), 1, anon_sym_QMARK, - STATE(4330), 1, + STATE(4331), 1, sym_comment, - STATE(4893), 1, + STATE(5243), 1, sym_type_annotation, - STATE(5687), 1, + STATE(6129), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158817] = 12, + [158914] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5466), 1, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(7084), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, anon_sym_LT, - ACTIONS(7819), 1, - anon_sym_DOT, - STATE(3068), 1, - sym_template_string, - STATE(3396), 1, + STATE(2423), 1, sym_arguments, - STATE(4331), 1, - sym_comment, - STATE(5568), 1, + STATE(2631), 1, + sym_template_string, + STATE(3908), 1, sym_type_arguments, - STATE(6494), 1, + STATE(4332), 1, + sym_comment, + STATE(6687), 1, sym_optional_chain, - [158854] = 12, + [158951] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5081), 1, - anon_sym_QMARK_DOT, - ACTIONS(5424), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(5432), 1, - anon_sym_DOT, - ACTIONS(5466), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - ACTIONS(7084), 1, + ACTIONS(5183), 1, + anon_sym_QMARK_DOT, + ACTIONS(7082), 1, anon_sym_LT, - STATE(3068), 1, + ACTIONS(7843), 1, + anon_sym_DOT, + STATE(2631), 1, sym_template_string, - STATE(3299), 1, + STATE(2696), 1, sym_arguments, - STATE(4146), 1, - sym_type_arguments, - STATE(4332), 1, + STATE(4333), 1, sym_comment, - STATE(6494), 1, + STATE(5524), 1, + sym_type_arguments, + STATE(6687), 1, sym_optional_chain, - [158891] = 12, + [158988] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7571), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3071), 1, + STATE(3063), 1, sym_class_body, - STATE(4333), 1, + STATE(4334), 1, sym_comment, - STATE(4423), 1, + STATE(4395), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6903), 1, + STATE(6581), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [158928] = 5, + [159025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7821), 1, - anon_sym_EQ, - STATE(4334), 1, + STATE(4335), 1, sym_comment, - ACTIONS(7623), 8, + ACTIONS(7793), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_EQ_GT, - [158951] = 10, + anon_sym_PIPE_RBRACE, + [159046] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7823), 1, - anon_sym_BANG, - ACTIONS(7825), 1, - anon_sym_QMARK, - STATE(4335), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4336), 1, sym_comment, - STATE(4912), 1, - sym_type_annotation, - STATE(5705), 1, - sym__initializer, - ACTIONS(7324), 3, + STATE(4393), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(5999), 1, + sym_class_body, + STATE(6573), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [159083] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, + STATE(4337), 1, + sym_comment, + ACTIONS(5263), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158984] = 10, + anon_sym_LBRACK, + [159110] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7827), 1, - anon_sym_BANG, - ACTIONS(7829), 1, - anon_sym_QMARK, - STATE(4336), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2457), 1, + sym_class_body, + STATE(4338), 1, sym_comment, - STATE(5238), 1, - sym_type_annotation, - STATE(6108), 1, - sym__initializer, - ACTIONS(7278), 3, + STATE(4391), 1, + sym_type_parameters, + STATE(5683), 1, + sym_extends_clause, + STATE(6553), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [159147] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4339), 1, + sym_comment, + STATE(4487), 1, + sym_type_parameters, + STATE(4967), 1, + sym_class_body, + STATE(5683), 1, + sym_extends_clause, + STATE(6833), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [159184] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4340), 1, + sym_comment, + ACTIONS(4971), 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, + [159205] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7699), 1, + anon_sym_LBRACK, + STATE(4341), 1, + sym_comment, + ACTIONS(5067), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [159017] = 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159228] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7831), 1, - anon_sym_BANG, - ACTIONS(7833), 1, - anon_sym_QMARK, - STATE(4337), 1, + STATE(4342), 1, sym_comment, - STATE(4936), 1, + STATE(5231), 1, sym_type_annotation, - STATE(5714), 1, + STATE(6085), 1, sym__initializer, - ACTIONS(7324), 3, + ACTIONS(7300), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7298), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159050] = 4, + [159259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4338), 1, + STATE(4343), 1, sym_comment, - ACTIONS(4997), 9, + ACTIONS(5341), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343872,54 +344058,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [159071] = 10, + [159280] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7835), 1, + ACTIONS(7845), 1, anon_sym_BANG, - ACTIONS(7837), 1, + ACTIONS(7847), 1, anon_sym_QMARK, - STATE(4339), 1, + STATE(4344), 1, sym_comment, - STATE(4846), 1, + STATE(5240), 1, sym_type_annotation, - STATE(6118), 1, + STATE(6114), 1, sym__initializer, - ACTIONS(7278), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159104] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4340), 1, - sym_comment, - ACTIONS(4456), 9, + ACTIONS(7318), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [159125] = 4, + [159313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4341), 1, + STATE(4345), 1, sym_comment, - ACTIONS(3581), 9, + ACTIONS(5308), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343929,2534 +344098,2426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [159146] = 4, + [159334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4342), 1, + STATE(4346), 1, sym_comment, - ACTIONS(4454), 9, + ACTIONS(5023), 9, 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_DOT, - anon_sym_PIPE_RBRACE, - [159167] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [159355] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(358), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3127), 1, sym_class_body, - STATE(4343), 1, + STATE(4347), 1, sym_comment, STATE(4444), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6430), 1, + STATE(6732), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [159204] = 10, + [159392] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7839), 1, - anon_sym_BANG, - ACTIONS(7841), 1, - anon_sym_QMARK, - STATE(4344), 1, + ACTIONS(7849), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, + anon_sym_QMARK_COLON, + STATE(4348), 1, sym_comment, - STATE(4937), 1, + STATE(5136), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(5718), 1, - sym__initializer, - ACTIONS(7324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159237] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, - STATE(4345), 1, - sym_comment, - ACTIONS(7843), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159263] = 10, + [159420] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4119), 1, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7845), 1, + ACTIONS(7855), 1, anon_sym_enum, - STATE(4346), 1, + STATE(4349), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5381), 1, + STATE(5391), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [159295] = 8, + [159452] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7857), 1, + sym_escape_sequence, + ACTIONS(7859), 1, + anon_sym_BQUOTE, + ACTIONS(7861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7863), 1, + sym__template_chars, + STATE(4350), 1, + sym_comment, + STATE(4726), 1, + aux_sym_template_string_repeat1, + STATE(5016), 1, + aux_sym_template_literal_type_repeat1, + STATE(5573), 1, + sym_template_substitution, + STATE(5792), 1, + sym_template_type, + [159486] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7857), 1, + sym_escape_sequence, + ACTIONS(7861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7863), 1, + sym__template_chars, + ACTIONS(7865), 1, + anon_sym_BQUOTE, + STATE(4351), 1, + sym_comment, + STATE(4659), 1, + aux_sym_template_string_repeat1, + STATE(5016), 1, + aux_sym_template_literal_type_repeat1, + STATE(5573), 1, + sym_template_substitution, + STATE(5792), 1, + sym_template_type, + [159520] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, - STATE(4347), 1, + STATE(4352), 1, sym_comment, - STATE(5300), 4, + STATE(5234), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159323] = 8, + [159548] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, - STATE(4348), 1, + STATE(4353), 1, sym_comment, - STATE(5305), 4, + STATE(5132), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159351] = 8, + [159576] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7851), 1, anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, + anon_sym_QMARK_COLON, + STATE(4354), 1, + sym_comment, + STATE(5304), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159604] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7849), 1, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, - STATE(4349), 1, + STATE(4355), 1, sym_comment, - STATE(5167), 4, + STATE(5307), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159379] = 7, + [159632] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7475), 1, - anon_sym_PIPE, - ACTIONS(7477), 1, - anon_sym_extends, - STATE(4350), 1, + STATE(4356), 1, sym_comment, - ACTIONS(7853), 5, + ACTIONS(6446), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [159405] = 5, + [159652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(4351), 1, + STATE(4357), 1, sym_comment, - ACTIONS(6374), 7, + ACTIONS(7867), 8, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_EQ_GT, - [159427] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [159672] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4119), 1, - sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7857), 1, - anon_sym_enum, - STATE(4352), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, + anon_sym_PIPE, + ACTIONS(7475), 1, + anon_sym_extends, + STATE(4358), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5582), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [159459] = 7, + ACTIONS(7869), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159698] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, + ACTIONS(7473), 1, + anon_sym_PIPE, ACTIONS(7475), 1, + anon_sym_extends, + STATE(4359), 1, + sym_comment, + ACTIONS(7871), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159724] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7473), 1, anon_sym_PIPE, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - STATE(4353), 1, + STATE(4360), 1, sym_comment, - ACTIONS(7859), 5, + ACTIONS(7873), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [159485] = 8, + [159750] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, - STATE(4354), 1, + STATE(4361), 1, sym_comment, STATE(5312), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159513] = 10, + [159778] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4119), 1, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7861), 1, + ACTIONS(7875), 1, anon_sym_enum, - STATE(4355), 1, + STATE(4362), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5468), 1, + STATE(5471), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [159545] = 7, + [159810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - ACTIONS(7865), 1, - anon_sym_DOT, - STATE(4356), 1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, + STATE(4363), 1, sym_comment, - STATE(4850), 1, - sym_statement_block, - ACTIONS(2130), 5, + ACTIONS(7511), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159571] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7867), 1, - anon_sym_DOT, - STATE(4357), 1, - sym_comment, - STATE(4850), 1, - sym_statement_block, - ACTIONS(2130), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159597] = 10, + [159836] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4119), 1, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7869), 1, + ACTIONS(7877), 1, anon_sym_enum, - STATE(4358), 1, + STATE(4364), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5562), 1, + STATE(5383), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [159629] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [159868] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, - sym_escape_sequence, - ACTIONS(7873), 1, - anon_sym_BQUOTE, - ACTIONS(7875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, - sym__template_chars, - STATE(4359), 1, - sym_comment, - STATE(4676), 1, - aux_sym_template_string_repeat1, - STATE(5015), 1, - aux_sym_template_literal_type_repeat1, - STATE(5570), 1, - sym_template_substitution, - STATE(5790), 1, - sym_template_type, - [159663] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4360), 1, - sym_comment, - ACTIONS(6374), 8, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [159683] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7871), 1, - sym_escape_sequence, - ACTIONS(7875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, - sym__template_chars, + ACTIONS(4111), 1, + anon_sym_LBRACK, ACTIONS(7879), 1, - anon_sym_BQUOTE, - STATE(4361), 1, - sym_comment, - STATE(4743), 1, - aux_sym_template_string_repeat1, - STATE(5024), 1, - aux_sym_template_literal_type_repeat1, - STATE(5570), 1, - sym_template_substitution, - STATE(5790), 1, - sym_template_type, - [159717] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4362), 1, - sym_comment, - ACTIONS(7881), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [159737] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_QMARK_COLON, - STATE(4363), 1, - sym_comment, - STATE(4862), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159765] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7871), 1, - sym_escape_sequence, - ACTIONS(7875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, - sym__template_chars, - ACTIONS(7883), 1, - anon_sym_BQUOTE, - STATE(4364), 1, - sym_comment, - STATE(4743), 1, - aux_sym_template_string_repeat1, - STATE(5015), 1, - aux_sym_template_literal_type_repeat1, - STATE(5570), 1, - sym_template_substitution, - STATE(5790), 1, - sym_template_type, - [159799] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_QMARK_COLON, + anon_sym_enum, STATE(4365), 1, sym_comment, - STATE(4858), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159827] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7887), 1, - anon_sym_DOT, - STATE(4366), 1, - sym_comment, - ACTIONS(7885), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159849] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7527), 1, - sym_identifier, - STATE(4367), 1, - sym_comment, - STATE(5555), 1, - sym_string, - STATE(5729), 1, - sym__module_export_name, - STATE(6815), 1, - sym_export_specifier, - ACTIONS(7529), 2, - anon_sym_type, - anon_sym_typeof, - [159881] = 11, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5585), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [159900] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, + ACTIONS(7857), 1, sym_escape_sequence, - ACTIONS(7875), 1, + ACTIONS(7861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, + ACTIONS(7863), 1, sym__template_chars, - ACTIONS(7889), 1, + ACTIONS(7881), 1, anon_sym_BQUOTE, - STATE(4368), 1, + STATE(4366), 1, sym_comment, - STATE(4743), 1, + STATE(4726), 1, aux_sym_template_string_repeat1, - STATE(5015), 1, + STATE(5023), 1, aux_sym_template_literal_type_repeat1, - STATE(5570), 1, + STATE(5573), 1, sym_template_substitution, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [159915] = 8, + [159934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7851), 1, - anon_sym_QMARK_COLON, + ACTIONS(7883), 1, + anon_sym_EQ, + STATE(4367), 1, + sym_comment, + ACTIONS(7867), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159956] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7885), 1, + anon_sym_EQ, + STATE(4368), 1, + sym_comment, + ACTIONS(6446), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [159978] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7889), 1, + anon_sym_DOT, STATE(4369), 1, sym_comment, - STATE(5143), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159943] = 8, + ACTIONS(7887), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160000] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, STATE(4370), 1, sym_comment, - STATE(5157), 4, + STATE(4861), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159971] = 8, + [160028] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7849), 1, - anon_sym_PLUS_QMARK_COLON, + anon_sym_DASH_QMARK_COLON, ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, anon_sym_QMARK_COLON, STATE(4371), 1, sym_comment, - STATE(5232), 4, + STATE(4864), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159999] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - ACTIONS(7537), 1, - anon_sym_BANG, - STATE(4372), 1, - sym_comment, - STATE(4980), 1, - sym_type_annotation, - STATE(5760), 1, - sym__initializer, - ACTIONS(7535), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160029] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4119), 1, - sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7891), 1, - anon_sym_enum, - STATE(4373), 1, - sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5389), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [160061] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4119), 1, - sym_identifier, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7893), 1, - anon_sym_enum, - STATE(4374), 1, - sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5421), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [160093] = 11, + [160056] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, + ACTIONS(7857), 1, sym_escape_sequence, - ACTIONS(7875), 1, + ACTIONS(7861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, + ACTIONS(7863), 1, sym__template_chars, - ACTIONS(7895), 1, + ACTIONS(7891), 1, anon_sym_BQUOTE, - STATE(4375), 1, + STATE(4372), 1, sym_comment, - STATE(4743), 1, + STATE(4659), 1, aux_sym_template_string_repeat1, - STATE(5015), 1, + STATE(5016), 1, aux_sym_template_literal_type_repeat1, - STATE(5570), 1, + STATE(5573), 1, sym_template_substitution, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [160127] = 11, + [160090] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, + ACTIONS(7857), 1, sym_escape_sequence, - ACTIONS(7875), 1, + ACTIONS(7861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, + ACTIONS(7863), 1, sym__template_chars, - ACTIONS(7897), 1, + ACTIONS(7893), 1, anon_sym_BQUOTE, - STATE(4376), 1, + STATE(4373), 1, sym_comment, - STATE(4676), 1, + STATE(4726), 1, aux_sym_template_string_repeat1, - STATE(5015), 1, + STATE(5016), 1, aux_sym_template_literal_type_repeat1, - STATE(5570), 1, + STATE(5573), 1, sym_template_substitution, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [160161] = 11, + [160124] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, + ACTIONS(7857), 1, sym_escape_sequence, - ACTIONS(7875), 1, + ACTIONS(7861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, + ACTIONS(7863), 1, sym__template_chars, - ACTIONS(7899), 1, + ACTIONS(7895), 1, anon_sym_BQUOTE, - STATE(4377), 1, + STATE(4374), 1, sym_comment, - STATE(4743), 1, + STATE(4726), 1, aux_sym_template_string_repeat1, - STATE(5015), 1, + STATE(5016), 1, aux_sym_template_literal_type_repeat1, - STATE(5570), 1, + STATE(5573), 1, sym_template_substitution, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [160195] = 7, + [160158] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, - STATE(4378), 1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7897), 1, + anon_sym_DOT, + STATE(4375), 1, sym_comment, - ACTIONS(7563), 5, + STATE(4720), 1, + sym_arguments, + ACTIONS(7513), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [160221] = 7, + [160184] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, - anon_sym_LPAREN, + ACTIONS(7857), 1, + sym_escape_sequence, + ACTIONS(7861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7863), 1, + sym__template_chars, + ACTIONS(7899), 1, + anon_sym_BQUOTE, + STATE(4376), 1, + sym_comment, + STATE(4726), 1, + aux_sym_template_string_repeat1, + STATE(5016), 1, + aux_sym_template_literal_type_repeat1, + STATE(5573), 1, + sym_template_substitution, + STATE(5792), 1, + sym_template_type, + [160218] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, ACTIONS(7901), 1, - anon_sym_DOT, - STATE(4379), 1, + anon_sym_enum, + STATE(4377), 1, sym_comment, - STATE(4834), 1, - sym_arguments, - ACTIONS(7555), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5426), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [160250] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [160247] = 5, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7903), 1, + anon_sym_enum, + STATE(4378), 1, + sym_comment, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5565), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [160282] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7555), 1, + sym_identifier, + STATE(4379), 1, + sym_comment, + STATE(5558), 1, + sym_string, + STATE(5732), 1, + sym__module_export_name, + STATE(6819), 1, + sym_export_specifier, + ACTIONS(7557), 2, + anon_sym_type, + anon_sym_typeof, + [160314] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7903), 1, - anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + ACTIONS(7849), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7853), 1, + anon_sym_QMARK_COLON, STATE(4380), 1, sym_comment, - ACTIONS(7881), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [160269] = 11, + STATE(5170), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [160342] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7871), 1, - sym_escape_sequence, - ACTIONS(7875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7877), 1, - sym__template_chars, ACTIONS(7905), 1, - anon_sym_BQUOTE, + anon_sym_LBRACE, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(4381), 1, sym_comment, - STATE(4743), 1, - aux_sym_template_string_repeat1, - STATE(5015), 1, - aux_sym_template_literal_type_repeat1, - STATE(5570), 1, - sym_template_substitution, - STATE(5790), 1, - sym_template_type, - [160303] = 8, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2128), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160368] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_LBRACE, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(4382), 1, sym_comment, - STATE(5017), 1, - sym_type_annotation, - STATE(5834), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2128), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [160330] = 8, + anon_sym_PIPE_RBRACE, + [160394] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, + ACTIONS(7547), 1, + anon_sym_BANG, STATE(4383), 1, sym_comment, - STATE(5365), 1, + STATE(4984), 1, sym_type_annotation, - STATE(6209), 1, + STATE(5762), 1, sym__initializer, - ACTIONS(7907), 3, + ACTIONS(7545), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160357] = 10, + [160424] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3383), 1, - sym_class_body, + ACTIONS(7857), 1, + sym_escape_sequence, + ACTIONS(7861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7863), 1, + sym__template_chars, + ACTIONS(7911), 1, + anon_sym_BQUOTE, STATE(4384), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6651), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [160388] = 8, + STATE(4726), 1, + aux_sym_template_string_repeat1, + STATE(5016), 1, + aux_sym_template_literal_type_repeat1, + STATE(5573), 1, + sym_template_substitution, + STATE(5792), 1, + sym_template_type, + [160458] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4385), 1, sym_comment, - STATE(5262), 1, + STATE(5003), 1, sym_type_annotation, - STATE(6089), 1, + STATE(5795), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160415] = 8, + [160485] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, STATE(4386), 1, sym_comment, - STATE(4948), 1, - sym_type_annotation, - STATE(5707), 1, - sym__initializer, - ACTIONS(7463), 3, + ACTIONS(5989), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [160442] = 8, + anon_sym_COLON, + [160504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, STATE(4387), 1, sym_comment, - STATE(5111), 1, - sym_type_annotation, - STATE(5938), 1, - sym__initializer, - ACTIONS(7463), 3, + ACTIONS(2186), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [160469] = 10, + anon_sym_PIPE_RBRACE, + [160523] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(7909), 1, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, sym_identifier, - STATE(2296), 1, - sym__type_query_subscript_expression, - STATE(2297), 1, - sym__type_query_member_expression, - STATE(2412), 1, - sym__type_query_instantiation_expression, - STATE(2417), 1, - sym__type_query_call_expression, STATE(4388), 1, sym_comment, - STATE(5526), 1, - sym_import, - [160500] = 6, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5586), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [160552] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4389), 1, sym_comment, - STATE(6770), 1, - sym_statement_block, - ACTIONS(7913), 5, + STATE(5151), 1, + sym_type_annotation, + ACTIONS(7915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160523] = 6, + [160575] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(4390), 1, sym_comment, - STATE(6789), 1, - sym_statement_block, - ACTIONS(7915), 5, + ACTIONS(7661), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160546] = 6, + anon_sym_COLON, + [160594] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7781), 1, anon_sym_LBRACE, + STATE(2578), 1, + sym_class_body, STATE(4391), 1, sym_comment, - STATE(6663), 1, - sym_statement_block, - ACTIONS(7915), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160569] = 9, + STATE(5683), 1, + sym_extends_clause, + STATE(6444), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [160625] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(7913), 1, sym_identifier, STATE(4392), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5420), 1, + STATE(5471), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [160598] = 8, + [160654] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, STATE(4393), 1, sym_comment, - STATE(5148), 1, - sym_type_annotation, - STATE(6004), 1, - sym__initializer, - ACTIONS(7463), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160625] = 8, + STATE(5683), 1, + sym_extends_clause, + STATE(5925), 1, + sym_class_body, + STATE(6455), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [160685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, STATE(4394), 1, sym_comment, - STATE(5189), 1, - sym_type_annotation, - STATE(6006), 1, - sym__initializer, - ACTIONS(7463), 3, + ACTIONS(5978), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [160652] = 10, + anon_sym_COLON, + [160704] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(979), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3156), 1, sym_class_body, STATE(4395), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6314), 1, + STATE(6462), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [160683] = 10, + [160735] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7701), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(329), 1, - sym_class_body, STATE(4396), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6310), 1, + STATE(6471), 1, sym_class_heritage, - STATE(7268), 1, + STATE(6802), 1, + sym_class_body, + STATE(7274), 1, sym_implements_clause, - [160714] = 6, + [160766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(4397), 1, sym_comment, - STATE(6839), 1, - sym_statement_block, - ACTIONS(7919), 5, + ACTIONS(2212), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160737] = 6, + [160785] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7921), 1, - anon_sym_EQ, - ACTIONS(7923), 1, - anon_sym_DOT, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_class_body, STATE(4398), 1, sym_comment, - ACTIONS(7885), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [160760] = 4, + STATE(5683), 1, + sym_extends_clause, + STATE(6700), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [160816] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4399), 1, sym_comment, - ACTIONS(7703), 7, + STATE(5361), 1, + sym_type_annotation, + STATE(6268), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [160779] = 8, + [160843] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4400), 1, sym_comment, - STATE(5099), 1, + STATE(5113), 1, sym_type_annotation, - STATE(5944), 1, + STATE(5984), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160806] = 8, + [160870] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4401), 1, sym_comment, - STATE(5227), 1, + STATE(5247), 1, sym_type_annotation, - STATE(6040), 1, + STATE(6142), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160833] = 8, + [160897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4402), 1, sym_comment, - STATE(5230), 1, + STATE(5245), 1, sym_type_annotation, - STATE(6041), 1, + STATE(6135), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160860] = 6, + [160924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(4403), 1, sym_comment, - STATE(6665), 1, - sym_statement_block, - ACTIONS(7913), 5, + ACTIONS(7649), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160883] = 8, + anon_sym_COLON, + [160943] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(7917), 1, + sym_identifier, + STATE(2294), 1, + sym__type_query_subscript_expression, + STATE(2298), 1, + sym__type_query_member_expression, + STATE(2403), 1, + sym__type_query_call_expression, + STATE(2405), 1, + sym__type_query_instantiation_expression, STATE(4404), 1, sym_comment, - STATE(5251), 1, - sym_type_annotation, - STATE(6056), 1, - sym__initializer, - ACTIONS(7463), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160910] = 10, + STATE(5531), 1, + sym_import, + [160974] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7925), 1, + ACTIONS(7919), 1, sym_identifier, - ACTIONS(7927), 1, + ACTIONS(7921), 1, anon_sym_STAR, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, STATE(4405), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6648), 1, + STATE(6459), 1, sym__call_signature, - [160941] = 8, + [161005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7925), 1, + sym__automatic_semicolon, STATE(4406), 1, sym_comment, - STATE(5255), 1, - sym_type_annotation, - STATE(6062), 1, - sym__initializer, - ACTIONS(7463), 3, - sym__automatic_semicolon, + ACTIONS(2190), 6, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [160968] = 5, + anon_sym_PIPE_RBRACE, + [161026] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7931), 1, + ACTIONS(7258), 1, anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4407), 1, sym_comment, - ACTIONS(4369), 6, + STATE(5108), 1, + sym_type_annotation, + STATE(5964), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [160989] = 8, + anon_sym_SEMI, + [161053] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4408), 1, sym_comment, - STATE(5269), 1, + STATE(5300), 1, sym_type_annotation, - STATE(6097), 1, - sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7927), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [161016] = 8, + anon_sym_PIPE_RBRACE, + [161076] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7408), 1, anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, STATE(4409), 1, sym_comment, - STATE(5096), 1, + STATE(5491), 1, + sym_constraint, + STATE(6873), 1, + sym_default_type, + ACTIONS(7413), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7929), 2, + anon_sym_COMMA, + anon_sym_GT, + [161103] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(4410), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6423), 1, + sym_class_heritage, + STATE(6847), 1, + sym_class_body, + STATE(7274), 1, + sym_implements_clause, + [161134] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_class_body, + STATE(4411), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6934), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [161165] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4412), 1, + sym_comment, + STATE(5103), 1, sym_type_annotation, - STATE(5942), 1, + STATE(5956), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161043] = 8, + [161192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + STATE(4413), 1, + sym_comment, + ACTIONS(7677), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7252), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - STATE(4410), 1, + [161211] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOT, + STATE(4382), 1, + sym_nested_identifier, + STATE(4414), 1, sym_comment, - STATE(5273), 1, - sym_type_annotation, - STATE(6107), 1, - sym__initializer, - ACTIONS(7463), 3, + STATE(4592), 1, + sym_string, + STATE(4991), 1, + sym__module, + [161242] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4415), 1, + sym_comment, + STATE(6844), 1, + sym_statement_block, + ACTIONS(7937), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [161070] = 10, + anon_sym_PIPE_RBRACE, + [161265] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1379), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7939), 1, + anon_sym_LT, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7943), 1, + anon_sym_LBRACE_PIPE, + STATE(4416), 1, + sym_comment, + STATE(4987), 1, + sym_object_type, + STATE(5018), 1, + sym_type_parameters, + STATE(5834), 1, + sym_extends_type_clause, + [161296] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4417), 1, + sym_comment, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5384), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [161325] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7695), 1, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(1089), 1, + STATE(1009), 1, sym_class_body, - STATE(4411), 1, + STATE(4418), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6305), 1, + STATE(6320), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [161101] = 8, + [161356] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4412), 1, + STATE(4419), 1, sym_comment, - STATE(4900), 1, + STATE(5253), 1, sym_type_annotation, - STATE(5691), 1, + STATE(6155), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161128] = 8, + [161383] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4420), 1, + sym_comment, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5390), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [161412] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(304), 1, + sym_class_body, + STATE(4421), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6316), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [161443] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4413), 1, + STATE(4422), 1, sym_comment, - STATE(4883), 1, + STATE(5256), 1, sym_type_annotation, - STATE(5679), 1, + STATE(6156), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161155] = 8, + [161470] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_class_body, + STATE(4423), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6311), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [161501] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4424), 1, + sym_comment, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5391), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [161530] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4414), 1, + STATE(4425), 1, sym_comment, - STATE(5231), 1, + STATE(5098), 1, sym_type_annotation, - STATE(6055), 1, + STATE(5948), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161182] = 8, + [161557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4415), 1, + STATE(4426), 1, sym_comment, - STATE(5086), 1, + STATE(5090), 1, sym_type_annotation, - STATE(5925), 1, + STATE(5900), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161209] = 8, + [161584] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7394), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4416), 1, - sym_comment, - STATE(5490), 1, - sym_constraint, - STATE(6868), 1, - sym_default_type, - ACTIONS(7399), 2, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(7934), 2, + STATE(4427), 1, + sym_comment, + STATE(5276), 1, + sym_type_annotation, + STATE(6165), 1, + sym__initializer, + ACTIONS(7456), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [161236] = 8, + anon_sym_SEMI, + [161611] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4417), 1, + STATE(4428), 1, sym_comment, - STATE(5254), 1, + STATE(5084), 1, sym_type_annotation, - STATE(6063), 1, + STATE(5923), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161263] = 10, + [161638] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - STATE(3051), 1, - sym_class_body, - STATE(4418), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4429), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6818), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [161294] = 8, + STATE(5241), 1, + sym_type_annotation, + STATE(6118), 1, + sym__initializer, + ACTIONS(7456), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161665] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4419), 1, + STATE(4430), 1, sym_comment, - STATE(5301), 1, + STATE(5320), 1, sym_type_annotation, - STATE(6128), 1, + STATE(6171), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161321] = 8, + [161692] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4420), 1, + STATE(4431), 1, sym_comment, - STATE(5302), 1, + STATE(5080), 1, sym_type_annotation, - STATE(6130), 1, + STATE(5918), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161348] = 10, + [161719] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7657), 1, + ACTIONS(7781), 1, anon_sym_LBRACE, - STATE(4421), 1, - sym_comment, - STATE(4922), 1, + STATE(2459), 1, sym_class_body, - STATE(5692), 1, + STATE(4432), 1, + sym_comment, + STATE(5683), 1, sym_extends_clause, - STATE(6876), 1, + STATE(6557), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [161379] = 8, + [161750] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4422), 1, - sym_comment, - STATE(5082), 1, - sym_type_annotation, - STATE(5917), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161406] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3055), 1, + STATE(3263), 1, sym_class_body, - STATE(4423), 1, + STATE(4433), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6873), 1, + STATE(6804), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [161437] = 8, + [161781] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4424), 1, + STATE(4434), 1, sym_comment, - STATE(5244), 1, + STATE(5362), 1, sym_type_annotation, - STATE(6129), 1, + STATE(6263), 1, sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161464] = 9, + [161808] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(7913), 1, sym_identifier, - STATE(4425), 1, + STATE(4435), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5582), 1, + STATE(5585), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [161493] = 10, + [161837] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7945), 1, sym_identifier, - ACTIONS(7938), 1, + ACTIONS(7947), 1, anon_sym_STAR, - STATE(4426), 1, + STATE(4436), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6454), 1, + STATE(6652), 1, sym__call_signature, - [161524] = 10, + [161868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7643), 1, - anon_sym_LBRACE, - STATE(1266), 1, - sym_class_body, - STATE(4427), 1, - sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6812), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [161555] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, - STATE(4428), 1, - sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5421), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [161584] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7940), 1, - sym_identifier, - ACTIONS(7942), 1, - anon_sym_STAR, - STATE(4429), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [161615] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - sym_identifier, - ACTIONS(7946), 1, - anon_sym_STAR, - STATE(4430), 1, + ACTIONS(7949), 1, + anon_sym_EQ, + STATE(4437), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6454), 1, - sym__call_signature, - [161646] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7948), 1, + ACTIONS(4348), 6, anon_sym_COMMA, - ACTIONS(7950), 1, anon_sym_RBRACE, - STATE(4431), 1, - sym_comment, - STATE(5959), 1, - aux_sym_object_repeat1, - ACTIONS(4640), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [161671] = 8, + [161889] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4432), 1, + STATE(4438), 1, sym_comment, - STATE(5245), 1, + STATE(5216), 1, sym_type_annotation, - STATE(6135), 1, - sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7951), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [161698] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7593), 1, - anon_sym_LBRACE, - STATE(1242), 1, - sym_class_body, - STATE(4433), 1, - sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6425), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [161729] = 8, + anon_sym_PIPE_RBRACE, + [161912] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4434), 1, + STATE(4439), 1, sym_comment, - STATE(4989), 1, + STATE(5237), 1, sym_type_annotation, - STATE(5897), 1, + STATE(6105), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161756] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [161939] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7635), 1, - anon_sym_LBRACE, - STATE(4435), 1, - sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6474), 1, - sym_class_heritage, - STATE(6803), 1, - sym_class_body, - STATE(7268), 1, - sym_implements_clause, - [161787] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4436), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(7953), 1, + sym_identifier, + ACTIONS(7955), 1, + anon_sym_STAR, + STATE(4440), 1, sym_comment, - STATE(5071), 1, - sym_type_annotation, - STATE(5889), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161814] = 10, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6459), 1, + sym__call_signature, + [161970] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7639), 1, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(987), 1, sym_class_body, - STATE(4437), 1, + STATE(4441), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6369), 1, + STATE(6302), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [161845] = 10, + [162001] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7587), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(1012), 1, - sym_class_body, - STATE(4438), 1, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4442), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6296), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [161876] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(5383), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [162030] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7952), 1, - sym_identifier, - ACTIONS(7954), 1, - anon_sym_STAR, - STATE(4439), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4443), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [161907] = 10, + ACTIONS(7813), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162049] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(4440), 1, - sym_comment, - STATE(4909), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3114), 1, sym_class_body, - STATE(5692), 1, + STATE(4444), 1, + sym_comment, + STATE(5683), 1, sym_extends_clause, - STATE(6863), 1, + STATE(6858), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [161938] = 10, + [162080] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7956), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - ACTIONS(7958), 1, - anon_sym_QMARK, - STATE(4441), 1, + STATE(4445), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6559), 1, - sym__call_signature, - [161969] = 4, + STATE(5068), 1, + sym_type_annotation, + STATE(5895), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162107] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4442), 1, - sym_comment, - ACTIONS(6639), 7, + ACTIONS(7258), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [161988] = 8, + STATE(4446), 1, + sym_comment, + STATE(5167), 1, + sym_type_annotation, + STATE(6010), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162134] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4443), 1, + STATE(4447), 1, sym_comment, - STATE(5172), 1, + STATE(5187), 1, sym_type_annotation, - STATE(6016), 1, + STATE(6027), 1, sym__initializer, - ACTIONS(7455), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162015] = 10, + [162161] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7697), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(369), 1, - sym_class_body, - STATE(4444), 1, + STATE(4448), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6364), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162046] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7593), 1, - anon_sym_LBRACE, - STATE(1299), 1, + STATE(6011), 1, sym_class_body, - STATE(4445), 1, - sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6363), 1, + STATE(6575), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [162077] = 10, + [162192] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3153), 1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2465), 1, sym_class_body, - STATE(4446), 1, + STATE(4449), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6461), 1, + STATE(6577), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [162108] = 10, + [162223] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7958), 1, - anon_sym_QMARK, - ACTIONS(7960), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4447), 1, + STATE(4450), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6559), 1, - sym__call_signature, - [162139] = 10, + STATE(5064), 1, + sym_type_annotation, + STATE(5892), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162250] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4448), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4451), 1, sym_comment, - STATE(4895), 1, - sym_class_body, - STATE(5692), 1, - sym_extends_clause, - STATE(6824), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162170] = 8, + STATE(5049), 1, + sym_type_annotation, + STATE(5871), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162277] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4449), 1, + STATE(4452), 1, sym_comment, - STATE(5261), 1, + STATE(5208), 1, sym_type_annotation, - STATE(6087), 1, - sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7957), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162197] = 10, + anon_sym_PIPE_RBRACE, + [162300] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(7962), 1, + ACTIONS(7959), 1, sym_identifier, - ACTIONS(7964), 1, + ACTIONS(7961), 1, anon_sym_STAR, - STATE(4450), 1, + STATE(4453), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6454), 1, + STATE(6652), 1, sym__call_signature, - [162228] = 4, + [162331] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4451), 1, - sym_comment, - ACTIONS(7966), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7963), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [162247] = 8, + ACTIONS(7965), 1, + anon_sym_QMARK, + STATE(4454), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6563), 1, + sym__call_signature, + [162362] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4452), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4455), 1, sym_comment, - STATE(5224), 1, - sym_type_annotation, - STATE(5609), 1, - sym__initializer, - ACTIONS(7463), 3, + STATE(6808), 1, + sym_statement_block, + ACTIONS(7967), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162274] = 8, + anon_sym_PIPE_RBRACE, + [162385] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4453), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4456), 1, sym_comment, - STATE(4849), 1, - sym_type_annotation, - STATE(5623), 1, - sym__initializer, - ACTIONS(7463), 3, + STATE(6915), 1, + sym_statement_block, + ACTIONS(7967), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162301] = 10, + anon_sym_PIPE_RBRACE, + [162408] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - STATE(3027), 1, - sym_class_body, - STATE(4454), 1, + STATE(4457), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6800), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162332] = 10, + STATE(6805), 1, + sym_statement_block, + ACTIONS(7969), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162431] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(7968), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(7971), 1, sym_identifier, - STATE(2579), 1, - sym__type_query_member_expression, - STATE(2580), 1, - sym__type_query_subscript_expression, - STATE(2844), 1, - sym__type_query_call_expression, - STATE(2845), 1, - sym__type_query_instantiation_expression, - STATE(4455), 1, + ACTIONS(7973), 1, + anon_sym_STAR, + STATE(4458), 1, sym_comment, - STATE(5497), 1, - sym_import, - [162363] = 9, - ACTIONS(3), 1, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6933), 1, + sym__call_signature, + [162462] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4459), 1, + sym_comment, + ACTIONS(6383), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [162481] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, - STATE(4456), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7975), 1, + sym__automatic_semicolon, + STATE(4460), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5389), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [162392] = 9, + ACTIONS(2212), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162502] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(7913), 1, sym_identifier, - STATE(4457), 1, + STATE(4461), 1, sym_comment, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(5891), 1, + STATE(5472), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [162421] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4458), 1, - sym_comment, - STATE(5353), 1, - sym_type_annotation, - STATE(6273), 1, - sym__initializer, - ACTIONS(7907), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162448] = 8, + [162531] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + anon_sym_QMARK, + ACTIONS(7977), 1, anon_sym_COLON, - STATE(4459), 1, + STATE(4462), 1, sym_comment, - STATE(5367), 1, - sym_type_annotation, - STATE(6223), 1, - sym__initializer, - ACTIONS(7907), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162475] = 10, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6563), 1, + sym__call_signature, + [162562] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(7970), 1, + ACTIONS(7979), 1, sym_identifier, - ACTIONS(7972), 1, + ACTIONS(7981), 1, anon_sym_STAR, - STATE(4460), 1, + STATE(4463), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6454), 1, + STATE(6459), 1, sym__call_signature, - [162506] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4461), 1, - sym_comment, - ACTIONS(5964), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [162525] = 8, + [162593] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4462), 1, + STATE(4464), 1, sym_comment, - STATE(5010), 1, + STATE(5220), 1, sym_type_annotation, - STATE(5809), 1, + STATE(5862), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162552] = 8, + [162620] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4463), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4465), 1, sym_comment, - STATE(5057), 1, - sym_type_annotation, - STATE(5870), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(6685), 1, + sym_statement_block, + ACTIONS(7983), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162579] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + anon_sym_PIPE_RBRACE, + [162643] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4464), 1, - sym_comment, - STATE(5052), 1, - sym_type_annotation, - STATE(5868), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162606] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2497), 1, - sym_class_body, - STATE(4465), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(7985), 1, + sym_identifier, + ACTIONS(7987), 1, + anon_sym_STAR, + STATE(4466), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6446), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162637] = 8, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6459), 1, + sym__call_signature, + [162674] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4466), 1, + STATE(4467), 1, sym_comment, - STATE(5371), 1, + STATE(5232), 1, sym_type_annotation, - STATE(6221), 1, + STATE(6051), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162664] = 6, + [162701] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4467), 1, - sym_comment, - STATE(6359), 1, - sym_statement_block, - ACTIONS(7974), 5, + ACTIONS(7989), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162687] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(4468), 1, sym_comment, - ACTIONS(6600), 7, - anon_sym_EQ, + ACTIONS(2212), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [162706] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [162722] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7651), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, + STATE(443), 1, + sym_class_body, STATE(4469), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5381), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [162735] = 4, + STATE(5683), 1, + sym_extends_clause, + STATE(6925), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [162753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4470), 1, sym_comment, - ACTIONS(7611), 7, + ACTIONS(7761), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -346464,1143 +346525,1156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [162754] = 10, + [162772] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(408), 1, - sym_class_body, + ACTIONS(7408), 1, + anon_sym_EQ, STATE(4471), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6920), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162785] = 8, + STATE(5523), 1, + sym_constraint, + STATE(6698), 1, + sym_default_type, + ACTIONS(7413), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7991), 2, + anon_sym_COMMA, + anon_sym_GT, + [162799] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7394), 1, + ACTIONS(7258), 1, anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4472), 1, sym_comment, - STATE(5520), 1, - sym_constraint, - STATE(6696), 1, - sym_default_type, - ACTIONS(7399), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7976), 2, + STATE(5053), 1, + sym_type_annotation, + STATE(5874), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [162812] = 8, + anon_sym_SEMI, + [162826] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4473), 1, sym_comment, - STATE(5228), 1, + STATE(5051), 1, sym_type_annotation, - STATE(6158), 1, + STATE(5872), 1, sym__initializer, ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162839] = 6, + [162853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(4474), 1, sym_comment, - STATE(6698), 1, - sym_statement_block, - ACTIONS(7978), 5, + ACTIONS(7993), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [162862] = 6, + [162872] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4475), 1, sym_comment, - STATE(6434), 1, - sym_statement_block, - ACTIONS(7980), 5, + STATE(5370), 1, + sym_type_annotation, + STATE(6238), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162885] = 10, + [162899] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_class_body, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4476), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6737), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [162916] = 8, + STATE(5319), 1, + sym_type_annotation, + STATE(6198), 1, + sym__initializer, + ACTIONS(7440), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162926] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(4477), 1, sym_comment, - STATE(5106), 1, - sym_type_annotation, - STATE(5958), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(6669), 1, + sym_statement_block, + ACTIONS(7995), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162943] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [162949] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, STATE(4478), 1, sym_comment, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(5382), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [162972] = 10, + STATE(6667), 1, + sym_statement_block, + ACTIONS(7997), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_class_body, + ACTIONS(6203), 1, + sym__automatic_semicolon, STATE(4479), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6424), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [163003] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2190), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [162993] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7982), 1, - sym_identifier, - ACTIONS(7984), 1, - anon_sym_STAR, - STATE(4480), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [163034] = 8, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4480), 1, + sym_comment, + STATE(6795), 1, + sym_statement_block, + ACTIONS(7997), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163016] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4481), 1, sym_comment, - STATE(4980), 1, + STATE(5254), 1, sym_type_annotation, - STATE(5761), 1, + STATE(6064), 1, sym__initializer, - ACTIONS(7535), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163061] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163043] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7986), 1, - sym_identifier, - ACTIONS(7988), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4482), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6454), 1, - sym__call_signature, - [163092] = 5, + STATE(5006), 1, + sym_type_annotation, + STATE(5811), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163070] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7990), 1, - sym__automatic_semicolon, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4483), 1, sym_comment, - ACTIONS(2222), 6, + STATE(5260), 1, + sym_type_annotation, + STATE(6086), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163113] = 8, + [163097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(4484), 1, sym_comment, - STATE(5280), 1, - sym_type_annotation, - STATE(6110), 1, - sym__initializer, - ACTIONS(7432), 3, + STATE(6776), 1, + sym_statement_block, + ACTIONS(7995), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163140] = 6, + anon_sym_PIPE_RBRACE, + [163120] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4485), 1, sym_comment, - STATE(5213), 1, + STATE(5371), 1, sym_type_annotation, - ACTIONS(7992), 5, + STATE(6235), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163163] = 8, + [163147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4486), 1, sym_comment, - STATE(5283), 1, + STATE(5030), 1, sym_type_annotation, - STATE(6120), 1, + STATE(5858), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163190] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [163174] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7994), 1, - sym_identifier, - ACTIONS(7996), 1, - anon_sym_DOT, - STATE(4357), 1, - sym_nested_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, STATE(4487), 1, sym_comment, - STATE(4587), 1, - sym_string, - STATE(4991), 1, - sym__module, - [163221] = 10, + STATE(4933), 1, + sym_class_body, + STATE(5683), 1, + sym_extends_clause, + STATE(6930), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [163205] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7998), 1, - anon_sym_LT, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8002), 1, - anon_sym_LBRACE_PIPE, STATE(4488), 1, sym_comment, - STATE(4985), 1, - sym_object_type, - STATE(5016), 1, - sym_type_parameters, - STATE(5828), 1, - sym_extends_type_clause, - [163252] = 8, + ACTIONS(7999), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [163224] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4489), 1, sym_comment, - STATE(5044), 1, + STATE(5272), 1, sym_type_annotation, - STATE(5857), 1, + STATE(6104), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163279] = 10, + [163251] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7643), 1, - anon_sym_LBRACE, - STATE(1499), 1, - sym_class_body, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4490), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6666), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [163310] = 10, + STATE(5275), 1, + sym_type_annotation, + STATE(6113), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163278] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_class_body, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4491), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6521), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [163341] = 8, + STATE(5195), 1, + sym_type_annotation, + STATE(6046), 1, + sym__initializer, + ACTIONS(7436), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163305] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4492), 1, sym_comment, - STATE(5026), 1, + STATE(5374), 1, sym_type_annotation, - STATE(5852), 1, + STATE(6224), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163368] = 4, + [163332] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4493), 1, sym_comment, - ACTIONS(7633), 7, + STATE(5021), 1, + sym_type_annotation, + STATE(5849), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [163387] = 8, + [163359] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4494), 1, sym_comment, - STATE(5018), 1, + STATE(4982), 1, sym_type_annotation, - STATE(5836), 1, + STATE(5774), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163414] = 8, + [163386] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4495), 1, sym_comment, - STATE(5133), 1, + STATE(4974), 1, sym_type_annotation, - STATE(5999), 1, + STATE(5758), 1, sym__initializer, - ACTIONS(7436), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163441] = 8, + [163413] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(330), 1, + sym_class_body, STATE(4496), 1, sym_comment, - STATE(5235), 1, - sym_type_annotation, - STATE(6099), 1, - sym__initializer, - ACTIONS(7444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163468] = 6, + STATE(5683), 1, + sym_extends_clause, + STATE(6300), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [163444] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4497), 1, sym_comment, - STATE(6436), 1, - sym_statement_block, - ACTIONS(8004), 5, + STATE(5369), 1, + sym_type_annotation, + STATE(6222), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163491] = 5, + [163471] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8006), 1, - sym__automatic_semicolon, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4498), 1, sym_comment, - ACTIONS(2164), 6, + STATE(4958), 1, + sym_type_annotation, + STATE(5734), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [163512] = 10, + anon_sym_SEMI, + [163498] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(453), 1, - sym_class_body, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4499), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6671), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [163543] = 10, + STATE(4951), 1, + sym_type_annotation, + STATE(5729), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163525] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7635), 1, - anon_sym_LBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4500), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6419), 1, - sym_class_heritage, - STATE(6851), 1, - sym_class_body, - STATE(7268), 1, - sym_implements_clause, - [163574] = 8, + STATE(5228), 1, + sym_type_annotation, + STATE(6054), 1, + sym__initializer, + ACTIONS(7440), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163552] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4501), 1, sym_comment, - STATE(4856), 1, + STATE(5019), 1, sym_type_annotation, - STATE(5652), 1, + STATE(5840), 1, sym__initializer, - ACTIONS(8008), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163601] = 10, + [163579] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, - anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_identifier, + ACTIONS(8003), 1, + anon_sym_STAR, STATE(4502), 1, sym_comment, - STATE(4931), 1, - sym_class_body, - STATE(5692), 1, - sym_extends_clause, - STATE(6906), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [163632] = 6, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6652), 1, + sym__call_signature, + [163610] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4503), 1, sym_comment, - STATE(6801), 1, - sym_statement_block, - ACTIONS(8010), 5, + STATE(4897), 1, + sym_type_annotation, + STATE(5690), 1, + sym__initializer, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163655] = 8, + [163637] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4504), 1, sym_comment, - STATE(5108), 1, + STATE(5252), 1, sym_type_annotation, - STATE(5962), 1, + STATE(6067), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163682] = 8, + [163664] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4505), 1, sym_comment, - STATE(5309), 1, + STATE(4893), 1, sym_type_annotation, - STATE(6152), 1, + STATE(5688), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163709] = 4, + [163691] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4506), 1, sym_comment, - ACTIONS(4369), 7, - anon_sym_EQ, + STATE(4984), 1, + sym_type_annotation, + STATE(5763), 1, + sym__initializer, + ACTIONS(7545), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [163728] = 10, + anon_sym_SEMI, + [163718] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7998), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8012), 1, - anon_sym_LBRACE, - ACTIONS(8014), 1, - anon_sym_LBRACE_PIPE, - STATE(1406), 1, - sym_object_type, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8005), 1, + sym_identifier, + ACTIONS(8007), 1, + anon_sym_STAR, STATE(4507), 1, sym_comment, - STATE(5001), 1, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, sym_type_parameters, - STATE(5800), 1, - sym_extends_type_clause, - [163759] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6459), 1, + sym__call_signature, + [163749] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4196), 1, - anon_sym_DQUOTE, - ACTIONS(4198), 1, - anon_sym_SQUOTE, - ACTIONS(8016), 1, - sym_identifier, - ACTIONS(8018), 1, - anon_sym_DOT, - STATE(984), 1, - sym_nested_identifier, - STATE(1095), 1, - sym_string, - STATE(1481), 1, - sym__module, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3000), 1, + sym_class_body, STATE(4508), 1, sym_comment, - [163790] = 9, + STATE(5683), 1, + sym_extends_clause, + STATE(6680), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [163780] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4509), 1, + sym_comment, + STATE(5017), 1, + sym_type_annotation, + STATE(5836), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163807] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(8020), 1, + ACTIONS(8009), 1, sym_identifier, - STATE(4285), 1, + STATE(4175), 1, sym__destructuring_pattern, - STATE(4509), 1, + STATE(4510), 1, sym_comment, - STATE(5556), 1, + STATE(5559), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [163819] = 9, + [163836] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(8022), 1, + ACTIONS(8011), 1, sym_identifier, - STATE(4253), 1, + STATE(4181), 1, sym__destructuring_pattern, - STATE(4510), 1, + STATE(4511), 1, sym_comment, - STATE(5557), 1, + STATE(5560), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [163848] = 9, + [163865] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(8024), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4512), 1, + sym_comment, + STATE(4924), 1, + sym_class_body, + STATE(5683), 1, + sym_extends_clause, + STATE(6874), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [163896] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(8028), 1, - anon_sym_QMARK, - STATE(4511), 1, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4513), 1, sym_comment, - STATE(5534), 1, + STATE(5334), 1, sym_type_annotation, - STATE(6601), 1, + STATE(6216), 1, sym__initializer, - ACTIONS(8026), 2, + ACTIONS(7440), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [163877] = 10, + anon_sym_SEMI, + [163923] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7701), 1, anon_sym_LBRACE, - STATE(314), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3215), 1, sym_class_body, - STATE(4512), 1, + STATE(4514), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6861), 1, + STATE(6868), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [163908] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8030), 1, - sym_identifier, - STATE(3771), 1, - sym__type_query_subscript_expression, - STATE(3774), 1, - sym__type_query_member_expression, - STATE(3952), 1, - sym__type_query_call_expression, - STATE(4095), 1, - sym__type_query_instantiation_expression, - STATE(4513), 1, - sym_comment, - STATE(5503), 1, - sym_import, - [163939] = 8, + [163954] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4514), 1, + STATE(4515), 1, sym_comment, - STATE(5011), 1, + STATE(5333), 1, sym_type_annotation, - STATE(5819), 1, + STATE(6212), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163966] = 6, + [163981] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4515), 1, + STATE(4516), 1, sym_comment, - STATE(5204), 1, + STATE(5330), 1, sym_type_annotation, - ACTIONS(8032), 5, + STATE(6200), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163989] = 10, + [164008] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4516), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4517), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(5926), 1, - sym_class_body, - STATE(6456), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [164020] = 10, + STATE(5288), 1, + sym_type_annotation, + STATE(6003), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164035] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - STATE(3278), 1, - sym_class_body, - STATE(4517), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4518), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6659), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [164051] = 9, + STATE(5303), 1, + sym_type_annotation, + STATE(6134), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164062] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(7913), 1, sym_identifier, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(4518), 1, + STATE(4519), 1, sym_comment, - STATE(5388), 1, + STATE(5890), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [164080] = 8, + [164091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4519), 1, + STATE(4520), 1, sym_comment, - STATE(5351), 1, - sym_type_annotation, - STATE(6275), 1, - sym__initializer, - ACTIONS(7907), 3, + ACTIONS(8013), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164107] = 10, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [164110] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + STATE(4521), 1, + sym_comment, + ACTIONS(4446), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - STATE(3000), 1, - sym_class_body, - STATE(4520), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [164129] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4522), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6678), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [164138] = 10, + ACTIONS(5970), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [164148] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(3183), 1, - sym_class_body, - STATE(4521), 1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4523), 1, sym_comment, - STATE(5692), 1, + STATE(4909), 1, + sym_class_body, + STATE(5683), 1, sym_extends_clause, - STATE(6847), 1, + STATE(6864), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [164169] = 4, + [164179] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4522), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4524), 1, sym_comment, - ACTIONS(5928), 7, + STATE(5354), 1, + sym_type_annotation, + STATE(6279), 1, + sym__initializer, + ACTIONS(8015), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [164188] = 4, + [164206] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4523), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4525), 1, sym_comment, - ACTIONS(5970), 7, + STATE(5012), 1, + sym_type_annotation, + STATE(5815), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [164207] = 6, + [164233] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4524), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4526), 1, sym_comment, - STATE(6911), 1, - sym_statement_block, - ACTIONS(8034), 5, + STATE(5007), 1, + sym_type_annotation, + STATE(5813), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164230] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164260] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8036), 1, - sym_identifier, - ACTIONS(8038), 1, - anon_sym_STAR, - STATE(4525), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4527), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6454), 1, - sym__call_signature, - [164261] = 10, + ACTIONS(8017), 7, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_LT, + anon_sym_AT, + anon_sym_abstract, + [164279] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7631), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(1569), 1, - sym_class_body, - STATE(4526), 1, + STATE(4528), 1, sym_comment, - STATE(5692), 1, + STATE(4895), 1, + sym_class_body, + STATE(5683), 1, sym_extends_clause, - STATE(6546), 1, + STATE(6803), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [164292] = 8, + [164310] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4527), 1, + STATE(4529), 1, sym_comment, - STATE(5005), 1, + STATE(5144), 1, sym_type_annotation, - STATE(5806), 1, + STATE(5986), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164319] = 10, + [164337] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym_class_body, + STATE(4530), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6683), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [164368] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8040), 1, + ACTIONS(8019), 1, anon_sym_LBRACE, - ACTIONS(8042), 1, + ACTIONS(8021), 1, anon_sym_COMMA, - ACTIONS(8044), 1, + ACTIONS(8023), 1, anon_sym_DOT, - ACTIONS(8046), 1, + ACTIONS(8025), 1, anon_sym_LT, - ACTIONS(8048), 1, + ACTIONS(8027), 1, anon_sym_LBRACE_PIPE, - STATE(4528), 1, + STATE(4531), 1, sym_comment, - STATE(5459), 1, + STATE(5461), 1, aux_sym_extends_type_clause_repeat1, - STATE(5638), 1, + STATE(5641), 1, sym_type_arguments, - [164350] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4529), 1, - sym_comment, - STATE(5003), 1, - sym_type_annotation, - STATE(5802), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [164377] = 10, + [164399] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -347611,43 +347685,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(7481), 1, sym_identifier, - ACTIONS(7551), 1, + ACTIONS(7533), 1, anon_sym_type, - STATE(4530), 1, + STATE(4532), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6860), 1, + STATE(6875), 1, sym__import_identifier, - STATE(6989), 1, + STATE(6994), 1, sym__module_export_name, - [164408] = 8, + [164430] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4531), 1, + STATE(4533), 1, sym_comment, - STATE(5141), 1, + STATE(4855), 1, sym_type_annotation, - STATE(5985), 1, + STATE(5612), 1, sym__initializer, - ACTIONS(7459), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164435] = 4, + [164457] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4532), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4534), 1, + sym_comment, + STATE(4856), 1, + sym_type_annotation, + STATE(5615), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164484] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4535), 1, + sym_comment, + STATE(5356), 1, + sym_type_annotation, + STATE(6276), 1, + sym__initializer, + ACTIONS(8015), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164511] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4536), 1, sym_comment, - ACTIONS(2174), 7, + ACTIONS(2154), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -347655,14 +347767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [164454] = 4, + [164530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4533), 1, + STATE(4537), 1, sym_comment, - ACTIONS(2168), 7, + ACTIONS(2252), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -347670,2109 +347782,2215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [164473] = 10, + [164549] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4538), 1, + sym_comment, + ACTIONS(4452), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [164568] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7998), 1, + ACTIONS(7939), 1, anon_sym_LT, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8050), 1, + ACTIONS(8029), 1, anon_sym_LBRACE, - ACTIONS(8052), 1, + ACTIONS(8031), 1, anon_sym_LBRACE_PIPE, - STATE(1030), 1, + STATE(1161), 1, sym_object_type, - STATE(4534), 1, + STATE(4539), 1, sym_comment, - STATE(5358), 1, + STATE(5360), 1, sym_type_parameters, - STATE(6260), 1, + STATE(6266), 1, sym_extends_type_clause, - [164504] = 10, + [164599] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, + ACTIONS(4192), 1, anon_sym_DQUOTE, - ACTIONS(4180), 1, + ACTIONS(4194), 1, anon_sym_SQUOTE, - ACTIONS(8054), 1, + ACTIONS(8033), 1, sym_identifier, - ACTIONS(8056), 1, + ACTIONS(8035), 1, anon_sym_DOT, - STATE(970), 1, + STATE(948), 1, sym_nested_identifier, - STATE(976), 1, + STATE(997), 1, sym_string, - STATE(1211), 1, + STATE(1174), 1, sym__module, - STATE(4535), 1, + STATE(4540), 1, sym_comment, - [164535] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [164630] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8058), 1, - sym_identifier, - STATE(3832), 1, - sym__type_query_member_expression, - STATE(3834), 1, - sym__type_query_subscript_expression, - STATE(4054), 1, - sym__type_query_call_expression, - STATE(4203), 1, - sym__type_query_instantiation_expression, - STATE(4536), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4541), 1, sym_comment, - STATE(5432), 1, - sym_import, - [164566] = 8, + STATE(5004), 1, + sym_type_annotation, + STATE(5808), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164657] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4537), 1, + STATE(4542), 1, sym_comment, - STATE(5330), 1, + STATE(4997), 1, sym_type_annotation, - STATE(6196), 1, + STATE(5801), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164593] = 10, - ACTIONS(3), 1, + [164684] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4543), 1, + sym_comment, + ACTIONS(4370), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164703] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8060), 1, - sym_identifier, - ACTIONS(8062), 1, - anon_sym_STAR, - STATE(4538), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4544), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [164624] = 8, + STATE(5225), 1, + sym_type_annotation, + STATE(6041), 1, + sym__initializer, + ACTIONS(7465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164730] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(4323), 1, anon_sym_COLON, - STATE(4539), 1, + ACTIONS(8037), 1, + anon_sym_EQ, + ACTIONS(8041), 1, + anon_sym_QMARK, + STATE(4545), 1, sym_comment, - STATE(5332), 1, + STATE(5538), 1, sym_type_annotation, - STATE(6210), 1, + STATE(6607), 1, sym__initializer, - ACTIONS(7432), 3, - sym__automatic_semicolon, + ACTIONS(8039), 2, anon_sym_COMMA, - anon_sym_SEMI, - [164651] = 8, + anon_sym_RPAREN, + [164759] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4540), 1, + STATE(4546), 1, sym_comment, - STATE(5366), 1, + STATE(5357), 1, sym_type_annotation, - STATE(6215), 1, + STATE(6154), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164678] = 10, + [164786] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8064), 1, + ACTIONS(8043), 1, sym_identifier, - ACTIONS(8066), 1, + ACTIONS(8045), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4547), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6454), 1, + STATE(6652), 1, sym__call_signature, - [164709] = 8, + [164817] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4542), 1, + STATE(4548), 1, sym_comment, - STATE(5372), 1, + STATE(4994), 1, sym_type_annotation, - STATE(6218), 1, + STATE(5780), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164736] = 8, + [164844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4543), 1, + STATE(4549), 1, sym_comment, - STATE(5249), 1, - sym_type_annotation, - STATE(6149), 1, - sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7805), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [164763] = 8, + anon_sym_DOT, + [164863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4544), 1, + STATE(4550), 1, sym_comment, - STATE(5252), 1, - sym_type_annotation, - STATE(6150), 1, - sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7801), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [164790] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8068), 1, - sym_identifier, - ACTIONS(8070), 1, - anon_sym_STAR, - STATE(4545), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6648), 1, - sym__call_signature, - [164821] = 10, + anon_sym_SEMI, + anon_sym_DOT, + [164882] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7631), 1, + ACTIONS(7655), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1478), 1, sym_class_body, - STATE(4546), 1, + STATE(4551), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6679), 1, + STATE(6358), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [164852] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4547), 1, - sym_comment, - STATE(6805), 1, - sym_statement_block, - ACTIONS(8034), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164875] = 10, + [164913] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - STATE(2995), 1, + ACTIONS(7729), 1, + anon_sym_LBRACE, + STATE(1240), 1, sym_class_body, - STATE(4548), 1, + STATE(4552), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6639), 1, + STATE(6435), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [164906] = 8, + [164944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4549), 1, + STATE(4553), 1, sym_comment, - STATE(5368), 1, - sym_type_annotation, - STATE(6232), 1, - sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7797), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [164933] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4190), 1, - anon_sym_DQUOTE, - ACTIONS(4192), 1, - anon_sym_SQUOTE, - ACTIONS(8072), 1, - sym_identifier, - ACTIONS(8074), 1, anon_sym_DOT, - STATE(990), 1, - sym_nested_identifier, - STATE(1086), 1, - sym_string, - STATE(1431), 1, - sym__module, - STATE(4550), 1, - sym_comment, - [164964] = 10, + [164963] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8076), 1, + ACTIONS(8047), 1, sym_identifier, - ACTIONS(8078), 1, + ACTIONS(8049), 1, anon_sym_STAR, - STATE(4551), 1, + STATE(4554), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6648), 1, + STATE(6652), 1, sym__call_signature, - [164995] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4552), 1, - sym_comment, - STATE(5364), 1, - sym_type_annotation, - STATE(6243), 1, - sym__initializer, - ACTIONS(7432), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165022] = 10, + [164994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7998), 1, - anon_sym_LT, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8080), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(8082), 1, - anon_sym_LBRACE_PIPE, - STATE(1390), 1, - sym_object_type, - STATE(4553), 1, - sym_comment, - STATE(5258), 1, - sym_type_parameters, - STATE(6081), 1, - sym_extends_type_clause, - [165053] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4554), 1, + STATE(4555), 1, sym_comment, - STATE(4994), 1, - sym_type_annotation, - STATE(5777), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(6548), 1, + sym_statement_block, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165080] = 4, + anon_sym_PIPE_RBRACE, + [165017] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4555), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4556), 1, sym_comment, - ACTIONS(8084), 7, + STATE(6546), 1, + sym_statement_block, + ACTIONS(8053), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [165099] = 8, + [165040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4556), 1, + STATE(4557), 1, sym_comment, - STATE(5045), 1, - sym_type_annotation, - STATE(5858), 1, - sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7793), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [165126] = 4, + anon_sym_DOT, + [165059] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4557), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4558), 1, sym_comment, - ACTIONS(8086), 7, + STATE(6353), 1, + sym_statement_block, + ACTIONS(8055), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [165145] = 8, + [165082] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8057), 1, + sym_identifier, + ACTIONS(8059), 1, + anon_sym_STAR, + STATE(4559), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6572), 1, + sym__call_signature, + [165113] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4558), 1, + STATE(4560), 1, sym_comment, - STATE(5043), 1, + STATE(4975), 1, sym_type_annotation, - STATE(5835), 1, + STATE(5759), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165172] = 5, + [165140] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6187), 1, - sym__automatic_semicolon, - STATE(4559), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(1036), 1, + sym_class_body, + STATE(4561), 1, sym_comment, - ACTIONS(2222), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [165193] = 10, + STATE(5683), 1, + sym_extends_clause, + STATE(6325), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [165171] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7737), 1, anon_sym_LBRACE, - STATE(2563), 1, + STATE(1059), 1, sym_class_body, - STATE(4560), 1, + STATE(4562), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6576), 1, + STATE(6382), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [165224] = 4, + [165202] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4561), 1, - sym_comment, - ACTIONS(8088), 7, - sym__automatic_semicolon, + ACTIONS(7575), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [165243] = 10, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3145), 1, + sym_class_body, + STATE(4563), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6645), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [165233] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7657), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(4562), 1, + STATE(352), 1, + sym_class_body, + STATE(4564), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6009), 1, - sym_class_body, - STATE(6575), 1, + STATE(6372), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [165274] = 8, + [165264] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4563), 1, + STATE(4565), 1, sym_comment, - STATE(5359), 1, + STATE(4962), 1, sym_type_annotation, - STATE(6262), 1, + STATE(5744), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165301] = 8, + [165291] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4564), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7729), 1, + anon_sym_LBRACE, + STATE(1298), 1, + sym_class_body, + STATE(4566), 1, sym_comment, - STATE(5357), 1, - sym_type_annotation, - STATE(6266), 1, - sym__initializer, - ACTIONS(7432), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165328] = 8, + STATE(5683), 1, + sym_extends_clause, + STATE(6369), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [165322] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4565), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4567), 1, sym_comment, - STATE(5279), 1, - sym_type_annotation, - STATE(6170), 1, - sym__initializer, - ACTIONS(7444), 3, + STATE(6702), 1, + sym_statement_block, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165355] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8090), 1, - sym_identifier, - ACTIONS(8092), 1, - anon_sym_DOT, - STATE(4566), 1, - sym_comment, - STATE(4878), 1, - sym_nested_identifier, - STATE(5584), 1, - sym_string, - STATE(6342), 1, - sym__module, - [165386] = 8, + anon_sym_PIPE_RBRACE, + [165345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4567), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4568), 1, sym_comment, - STATE(5350), 1, - sym_type_annotation, - STATE(6276), 1, - sym__initializer, - ACTIONS(7432), 3, + STATE(6699), 1, + sym_statement_block, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165413] = 8, + anon_sym_PIPE_RBRACE, + [165368] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4568), 1, + STATE(4569), 1, sym_comment, - STATE(5349), 1, + STATE(4860), 1, sym_type_annotation, - STATE(6278), 1, + STATE(5656), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(8061), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165440] = 4, + [165395] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4569), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4570), 1, sym_comment, - ACTIONS(7629), 7, + STATE(5127), 1, + sym_type_annotation, + STATE(6000), 1, + sym__initializer, + ACTIONS(7460), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165459] = 10, + [165422] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7671), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(392), 1, + STATE(1187), 1, sym_class_body, - STATE(4570), 1, + STATE(4571), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6490), 1, + STATE(6313), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [165490] = 8, + [165453] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4571), 1, + STATE(4572), 1, sym_comment, - STATE(5345), 1, + STATE(5258), 1, sym_type_annotation, - STATE(6290), 1, + STATE(6089), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165517] = 6, + [165480] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8063), 1, + sym_identifier, + STATE(3760), 1, + sym__type_query_subscript_expression, + STATE(3777), 1, + sym__type_query_member_expression, + STATE(3953), 1, + sym__type_query_call_expression, + STATE(4072), 1, + sym__type_query_instantiation_expression, + STATE(4573), 1, + sym_comment, + STATE(5508), 1, + sym_import, + [165511] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4572), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8065), 1, + sym_identifier, + ACTIONS(8067), 1, + anon_sym_STAR, + STATE(4574), 1, sym_comment, - STATE(6545), 1, - sym_statement_block, - ACTIONS(8094), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165540] = 8, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6652), 1, + sym__call_signature, + [165542] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4573), 1, + STATE(4575), 1, sym_comment, - STATE(5342), 1, + STATE(5261), 1, sym_type_annotation, - STATE(5603), 1, + STATE(6093), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165567] = 6, + [165569] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7709), 1, anon_sym_LBRACE, - STATE(4574), 1, + STATE(377), 1, + sym_class_body, + STATE(4576), 1, sym_comment, - STATE(6681), 1, - sym_statement_block, - ACTIONS(8096), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165590] = 10, + STATE(5683), 1, + sym_extends_clause, + STATE(6410), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [165600] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(8069), 1, + sym_identifier, + ACTIONS(8071), 1, + anon_sym_LPAREN, + STATE(2612), 1, + sym_arguments, + STATE(4577), 1, + sym_comment, + STATE(6780), 1, + sym_type_arguments, + ACTIONS(8073), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [165629] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(2543), 1, + STATE(423), 1, sym_class_body, - STATE(4575), 1, + STATE(4578), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6562), 1, + STATE(6675), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [165621] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4576), 1, - sym_comment, - STATE(5335), 1, - sym_type_annotation, - STATE(6235), 1, - sym__initializer, - ACTIONS(7432), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165648] = 6, + [165660] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7655), 1, anon_sym_LBRACE, - STATE(4577), 1, + STATE(1452), 1, + sym_class_body, + STATE(4579), 1, sym_comment, - STATE(6542), 1, - sym_statement_block, - ACTIONS(7978), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165671] = 6, + STATE(5683), 1, + sym_extends_clause, + STATE(6417), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [165691] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(4578), 1, + STATE(4580), 1, sym_comment, - STATE(6701), 1, + STATE(6393), 1, sym_statement_block, - ACTIONS(8094), 5, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [165694] = 8, + [165714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4579), 1, + STATE(4581), 1, sym_comment, - STATE(5333), 1, - sym_type_annotation, - STATE(6231), 1, - sym__initializer, - ACTIONS(7432), 3, + ACTIONS(8077), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165721] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, anon_sym_COLON, - STATE(4580), 1, - sym_comment, - STATE(4950), 1, - sym_type_annotation, - STATE(5727), 1, - sym__initializer, - ACTIONS(7463), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165748] = 8, + anon_sym_PIPE_RBRACE, + [165733] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8079), 1, anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4581), 1, + ACTIONS(8081), 1, + anon_sym_DOT, + STATE(4582), 1, sym_comment, - STATE(5325), 1, - sym_type_annotation, - STATE(6222), 1, - sym__initializer, - ACTIONS(7432), 3, - sym__automatic_semicolon, + ACTIONS(7887), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [165775] = 9, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [165756] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(4206), 1, + anon_sym_DQUOTE, + ACTIONS(4208), 1, + anon_sym_SQUOTE, + ACTIONS(8083), 1, sym_identifier, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(4582), 1, - sym_comment, - STATE(5469), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165804] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(8085), 1, + anon_sym_DOT, + STATE(984), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_string, + STATE(1471), 1, + sym__module, STATE(4583), 1, sym_comment, - STATE(4967), 1, - sym_type_annotation, - STATE(5755), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165831] = 8, + [165787] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(4584), 1, sym_comment, - STATE(5112), 1, - sym_type_annotation, - STATE(5976), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(6391), 1, + sym_statement_block, + ACTIONS(7983), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165858] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(4585), 1, - sym_comment, - STATE(5563), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [165887] = 8, + anon_sym_PIPE_RBRACE, + [165810] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4586), 1, + STATE(4585), 1, sym_comment, - STATE(4977), 1, + STATE(5229), 1, sym_type_annotation, - STATE(5762), 1, + STATE(6066), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165914] = 6, + [165837] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(4587), 1, + STATE(4586), 1, sym_comment, - STATE(4850), 1, + STATE(6697), 1, sym_statement_block, - ACTIONS(2130), 5, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [165937] = 10, + [165860] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7695), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(1172), 1, + STATE(1492), 1, sym_class_body, - STATE(4588), 1, + STATE(4587), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6319), 1, + STATE(6670), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [165968] = 8, + [165891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + STATE(4588), 1, + sym_comment, + ACTIONS(6451), 7, anon_sym_EQ, - ACTIONS(7252), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [165910] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, STATE(4589), 1, sym_comment, - STATE(5317), 1, + STATE(4947), 1, sym_type_annotation, - STATE(6192), 1, + STATE(5728), 1, sym__initializer, - ACTIONS(7432), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165995] = 4, + [165937] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4590), 1, sym_comment, - ACTIONS(2164), 7, + STATE(5316), 1, + sym_type_annotation, + STATE(6185), 1, + sym__initializer, + ACTIONS(7467), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166014] = 4, + [165964] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, STATE(4591), 1, sym_comment, - ACTIONS(7789), 7, + STATE(5367), 1, + sym_type_annotation, + STATE(6219), 1, + sym__initializer, + ACTIONS(8015), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [166033] = 8, + [165991] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_LBRACE, STATE(4592), 1, sym_comment, - STATE(4877), 1, - sym_type_annotation, - STATE(5673), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2128), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166060] = 4, + anon_sym_PIPE_RBRACE, + [166014] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(4593), 1, sym_comment, - ACTIONS(2290), 7, + STATE(6676), 1, + sym_statement_block, + ACTIONS(8087), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166079] = 6, + [166037] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, STATE(4594), 1, sym_comment, - STATE(6680), 1, + STATE(6681), 1, sym_statement_block, - ACTIONS(8098), 5, + ACTIONS(8089), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [166102] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [166060] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, - STATE(4481), 1, - sym__destructuring_pattern, STATE(4595), 1, sym_comment, - STATE(5562), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [166131] = 10, + STATE(6664), 1, + sym_statement_block, + ACTIONS(8087), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166083] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(207), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7939), 1, + anon_sym_LT, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7805), 1, - anon_sym_LBRACE, - STATE(1231), 1, - sym_class_body, + ACTIONS(8091), 1, + anon_sym_LBRACE_PIPE, STATE(4596), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6355), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [166162] = 6, + STATE(5112), 1, + sym_type_parameters, + STATE(5935), 1, + sym_extends_type_clause, + STATE(6399), 1, + sym_object_type, + [166114] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8093), 1, + sym_identifier, + STATE(2447), 1, + sym__type_query_member_expression, + STATE(2579), 1, + sym__type_query_subscript_expression, + STATE(2846), 1, + sym__type_query_call_expression, + STATE(2847), 1, + sym__type_query_instantiation_expression, STATE(4597), 1, sym_comment, - STATE(6672), 1, - sym_statement_block, - ACTIONS(8096), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166185] = 10, + STATE(5499), 1, + sym_import, + [166145] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8095), 1, + sym_identifier, + STATE(3843), 1, + sym__type_query_member_expression, + STATE(3855), 1, + sym__type_query_subscript_expression, + STATE(4071), 1, + sym__type_query_call_expression, + STATE(4210), 1, + sym__type_query_instantiation_expression, + STATE(4598), 1, + sym_comment, + STATE(5435), 1, + sym_import, + [166176] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7998), 1, + ACTIONS(7939), 1, anon_sym_LT, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8100), 1, + ACTIONS(8097), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, anon_sym_LBRACE_PIPE, - STATE(4598), 1, + STATE(1406), 1, + sym_object_type, + STATE(4599), 1, sym_comment, - STATE(5107), 1, + STATE(5000), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5798), 1, sym_extends_type_clause, - STATE(6395), 1, - sym_object_type, - [166216] = 8, + [166207] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4599), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4600), 1, sym_comment, - STATE(5314), 1, - sym_type_annotation, - STATE(6179), 1, - sym__initializer, - ACTIONS(7465), 3, + STATE(6440), 1, + sym_statement_block, + ACTIONS(8101), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166243] = 8, + anon_sym_PIPE_RBRACE, + [166230] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4601), 1, + sym_comment, + STATE(6438), 1, + sym_statement_block, + ACTIONS(8103), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166253] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4600), 1, + STATE(4602), 1, sym_comment, - STATE(5270), 1, + STATE(5347), 1, sym_type_annotation, - STATE(6160), 1, + STATE(6293), 1, sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166270] = 5, + [166280] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8102), 1, - sym__automatic_semicolon, - STATE(4601), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_class_body, + STATE(4603), 1, sym_comment, - ACTIONS(2164), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166291] = 6, + STATE(5683), 1, + sym_extends_clause, + STATE(6816), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [166311] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4602), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4604), 1, sym_comment, - STATE(6389), 1, - sym_statement_block, - ACTIONS(8104), 5, + STATE(4941), 1, + sym_type_annotation, + STATE(5725), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166314] = 10, + [166338] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + ACTIONS(8105), 1, sym_identifier, - ACTIONS(8108), 1, - anon_sym_STAR, - STATE(4603), 1, + ACTIONS(8107), 1, + anon_sym_DOT, + STATE(972), 1, + sym_nested_identifier, + STATE(1053), 1, + sym_string, + STATE(1366), 1, + sym__module, + STATE(4605), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6567), 1, - sym__call_signature, - [166345] = 6, + [166369] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - STATE(4604), 1, + STATE(4606), 1, sym_comment, - ACTIONS(8110), 2, + ACTIONS(8109), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4640), 4, + ACTIONS(4642), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [166368] = 6, + [166392] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4605), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4607), 1, sym_comment, - STATE(6387), 1, - sym_statement_block, - ACTIONS(8113), 5, + STATE(5176), 1, + sym_type_annotation, + STATE(6017), 1, + sym__initializer, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166391] = 10, + [166419] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8115), 1, + ACTIONS(8112), 1, sym_identifier, - ACTIONS(8117), 1, + ACTIONS(8114), 1, anon_sym_STAR, - STATE(4606), 1, + STATE(4608), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6933), 1, + STATE(6459), 1, sym__call_signature, - [166422] = 8, + [166450] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4607), 1, + ACTIONS(7939), 1, + anon_sym_LT, + ACTIONS(7941), 1, + anon_sym_extends, + ACTIONS(8116), 1, + anon_sym_LBRACE, + ACTIONS(8118), 1, + anon_sym_LBRACE_PIPE, + STATE(1378), 1, + sym_object_type, + STATE(4609), 1, sym_comment, - STATE(4881), 1, - sym_type_annotation, - STATE(5678), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166449] = 8, + STATE(5259), 1, + sym_type_parameters, + STATE(6087), 1, + sym_extends_type_clause, + [166481] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, + ACTIONS(8122), 1, + anon_sym_DOT, + STATE(4610), 1, + sym_comment, + STATE(4880), 1, + sym_nested_identifier, + STATE(5587), 1, + sym_string, + STATE(6347), 1, + sym__module, + [166512] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4608), 1, + STATE(4611), 1, sym_comment, - STATE(4888), 1, + STATE(5309), 1, sym_type_annotation, - STATE(5680), 1, + STATE(6136), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166476] = 10, + [166539] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(1109), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3281), 1, sym_class_body, - STATE(4609), 1, + STATE(4612), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6468), 1, + STATE(6663), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [166507] = 8, + [166570] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4610), 1, + STATE(4613), 1, sym_comment, - STATE(4997), 1, + STATE(5368), 1, sym_type_annotation, - STATE(5788), 1, + STATE(6220), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(8015), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166534] = 8, + [166597] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4611), 1, + STATE(4614), 1, sym_comment, - STATE(4889), 1, + STATE(5346), 1, sym_type_annotation, - STATE(5683), 1, + STATE(5606), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166561] = 8, + [166624] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(4615), 1, + sym_comment, + STATE(5426), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [166653] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4612), 1, + STATE(4616), 1, sym_comment, - STATE(4892), 1, + STATE(4937), 1, sym_type_annotation, - STATE(5685), 1, + STATE(5715), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166588] = 8, + [166680] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4613), 1, + STATE(4617), 1, sym_comment, - STATE(5002), 1, + STATE(5351), 1, sym_type_annotation, - STATE(5793), 1, + STATE(6282), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166615] = 5, + [166707] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8119), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4614), 1, - sym_comment, - ACTIONS(4391), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7266), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [166636] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4121), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_LBRACK, - ACTIONS(7917), 1, - sym_identifier, - STATE(4481), 1, - sym__destructuring_pattern, - STATE(4615), 1, + STATE(4618), 1, sym_comment, - STATE(5583), 1, - sym_variable_declarator, - STATE(4591), 2, - sym_object_pattern, - sym_array_pattern, - [166665] = 8, + STATE(4921), 1, + sym_type_annotation, + STATE(5712), 1, + sym__initializer, + ACTIONS(7434), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166734] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4616), 1, + STATE(4619), 1, sym_comment, - STATE(4907), 1, + STATE(5337), 1, sym_type_annotation, - STATE(5693), 1, + STATE(6239), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166692] = 8, + [166761] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(8126), 1, + anon_sym_RBRACE, + STATE(4620), 1, + sym_comment, + STATE(5954), 1, + aux_sym_object_repeat1, + ACTIONS(4642), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [166786] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7709), 1, + anon_sym_LBRACE, + STATE(393), 1, + sym_class_body, + STATE(4621), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6494), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [166817] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4617), 1, + STATE(4622), 1, sym_comment, - STATE(4908), 1, + STATE(5335), 1, sym_type_annotation, - STATE(5701), 1, + STATE(6233), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166719] = 9, + [166844] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4288), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(8121), 1, - sym_identifier, - ACTIONS(8123), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - STATE(3087), 1, - sym_arguments, - STATE(4618), 1, + ACTIONS(8128), 1, + sym_identifier, + ACTIONS(8130), 1, + anon_sym_STAR, + STATE(4623), 1, sym_comment, - STATE(6749), 1, - sym_type_arguments, - ACTIONS(8125), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [166748] = 8, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6652), 1, + sym__call_signature, + [166875] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7737), 1, + anon_sym_LBRACE, + STATE(1142), 1, + sym_class_body, + STATE(4624), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6436), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [166906] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4619), 1, + STATE(4625), 1, sym_comment, - STATE(4933), 1, + STATE(4912), 1, sym_type_annotation, - STATE(5709), 1, + STATE(5699), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166775] = 8, + [166933] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8132), 1, + sym_identifier, + STATE(3703), 1, + sym__type_query_member_expression, + STATE(3704), 1, + sym__type_query_subscript_expression, + STATE(3759), 1, + sym__type_query_call_expression, + STATE(3880), 1, + sym__type_query_instantiation_expression, + STATE(4626), 1, + sym_comment, + STATE(5527), 1, + sym_import, + [166964] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4620), 1, + STATE(4627), 1, sym_comment, - STATE(4934), 1, + STATE(4911), 1, sym_type_annotation, - STATE(5711), 1, + STATE(5652), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166802] = 8, + [166991] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4621), 1, + STATE(4628), 1, sym_comment, - STATE(4962), 1, + STATE(5329), 1, sym_type_annotation, - STATE(5620), 1, + STATE(6223), 1, sym__initializer, - ACTIONS(7463), 3, + ACTIONS(7440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166829] = 10, + [167018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7998), 1, - anon_sym_LT, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8127), 1, - anon_sym_LBRACE, - ACTIONS(8129), 1, - anon_sym_LBRACE_PIPE, - STATE(1521), 1, - sym_object_type, - STATE(4622), 1, + STATE(4629), 1, sym_comment, - STATE(5023), 1, - sym_type_parameters, - STATE(5812), 1, - sym_extends_type_clause, - [166860] = 9, + ACTIONS(2202), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [167037] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4288), 1, - anon_sym_LT, - ACTIONS(8121), 1, + ACTIONS(8134), 1, sym_identifier, - ACTIONS(8131), 1, - anon_sym_LPAREN, - STATE(2649), 1, - sym_arguments, - STATE(4623), 1, + STATE(4630), 1, sym_comment, - STATE(6782), 1, - sym_type_arguments, - ACTIONS(8125), 2, + ACTIONS(4977), 6, + anon_sym_COMMA, anon_sym_LBRACK, - sym_private_property_identifier, - [166889] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [167058] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4111), 1, - anon_sym_SQUOTE, - ACTIONS(8133), 1, - sym_identifier, - ACTIONS(8135), 1, - anon_sym_DOT, - STATE(1047), 1, - sym_nested_identifier, - STATE(1381), 1, - sym_string, - STATE(1543), 1, - sym__module, - STATE(4624), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8136), 1, + anon_sym_EQ, + STATE(4631), 1, sym_comment, - [166920] = 7, + ACTIONS(4370), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [167079] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, anon_sym_LPAREN, ACTIONS(8139), 1, - anon_sym_DOT, - STATE(4625), 1, + sym_identifier, + ACTIONS(8141), 1, + anon_sym_STAR, + STATE(4632), 1, sym_comment, - STATE(5516), 1, - sym_arguments, - ACTIONS(8137), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [166945] = 6, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6459), 1, + sym__call_signature, + [167110] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4626), 1, + STATE(4633), 1, sym_comment, - STATE(5147), 1, + STATE(4879), 1, sym_type_annotation, - ACTIONS(8141), 5, + STATE(5677), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166968] = 6, + [167137] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(4627), 1, + ACTIONS(4292), 1, + anon_sym_LT, + ACTIONS(8069), 1, + sym_identifier, + ACTIONS(8143), 1, + anon_sym_LPAREN, + STATE(3020), 1, + sym_arguments, + STATE(4634), 1, sym_comment, - STATE(6695), 1, - sym_statement_block, - ACTIONS(8104), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166991] = 8, + STATE(6756), 1, + sym_type_arguments, + ACTIONS(8073), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [167166] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4628), 1, + STATE(4635), 1, sym_comment, - STATE(5188), 1, + STATE(5111), 1, sym_type_annotation, - STATE(6045), 1, + STATE(5980), 1, sym__initializer, - ACTIONS(7461), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167018] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4629), 1, - sym_comment, - ACTIONS(4456), 7, + ACTIONS(7434), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [167037] = 10, + [167193] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7805), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(1289), 1, + STATE(1514), 1, sym_class_body, - STATE(4630), 1, + STATE(4636), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6416), 1, + STATE(6549), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [167068] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4631), 1, - sym_comment, - STATE(4943), 1, - sym_type_annotation, - STATE(5722), 1, - sym__initializer, - ACTIONS(7446), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167095] = 8, + [167224] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4632), 1, + STATE(4637), 1, sym_comment, - STATE(4944), 1, + STATE(4966), 1, sym_type_annotation, - STATE(5724), 1, + STATE(5750), 1, sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167122] = 6, + [167251] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7939), 1, + anon_sym_LT, + ACTIONS(7941), 1, + anon_sym_extends, + ACTIONS(8145), 1, anon_sym_LBRACE, - STATE(4633), 1, + ACTIONS(8147), 1, + anon_sym_LBRACE_PIPE, + STATE(1599), 1, + sym_object_type, + STATE(4638), 1, sym_comment, - STATE(6682), 1, - sym_statement_block, - ACTIONS(8113), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167145] = 9, + STATE(5025), 1, + sym_type_parameters, + STATE(5807), 1, + sym_extends_type_clause, + [167282] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4121), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(7917), 1, + ACTIONS(7913), 1, sym_identifier, - STATE(4481), 1, + STATE(4506), 1, sym__destructuring_pattern, - STATE(4634), 1, + STATE(4639), 1, sym_comment, - STATE(5468), 1, + STATE(5566), 1, sym_variable_declarator, - STATE(4591), 2, + STATE(4654), 2, sym_object_pattern, sym_array_pattern, - [167174] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [167311] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4635), 1, - sym_comment, - ACTIONS(2302), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167193] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4636), 1, - sym_comment, - ACTIONS(4454), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4117), 1, + anon_sym_DQUOTE, + ACTIONS(4119), 1, + anon_sym_SQUOTE, + ACTIONS(8149), 1, + sym_identifier, + ACTIONS(8151), 1, anon_sym_DOT, - [167212] = 10, + STATE(1197), 1, + sym_nested_identifier, + STATE(1317), 1, + sym_string, + STATE(1559), 1, + sym__module, + STATE(4640), 1, + sym_comment, + [167342] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7573), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(7671), 1, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(403), 1, - sym_class_body, - STATE(4637), 1, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(4641), 1, sym_comment, - STATE(5692), 1, - sym_extends_clause, - STATE(6413), 1, - sym_class_heritage, - STATE(7268), 1, - sym_implements_clause, - [167243] = 10, + STATE(5565), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [167371] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7759), 1, + ACTIONS(7781), 1, anon_sym_LBRACE, - STATE(2556), 1, + STATE(3402), 1, sym_class_body, - STATE(4638), 1, + STATE(4642), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6936), 1, + STATE(6655), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [167274] = 4, + [167402] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4639), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4643), 1, sym_comment, - ACTIONS(7661), 7, + STATE(5274), 1, + sym_type_annotation, + STATE(6111), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [167293] = 4, + [167429] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4640), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4644), 1, sym_comment, - ACTIONS(7623), 7, + STATE(5284), 1, + sym_type_annotation, + STATE(6116), 1, + sym__initializer, + ACTIONS(7440), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [167312] = 8, + [167456] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7252), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4641), 1, + STATE(4645), 1, sym_comment, - STATE(5239), 1, + STATE(4885), 1, sym_type_annotation, - STATE(6112), 1, + STATE(5682), 1, sym__initializer, - ACTIONS(7444), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167339] = 4, + [167483] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4642), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4646), 1, sym_comment, - ACTIONS(7603), 7, + STATE(4887), 1, + sym_type_annotation, + STATE(5684), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [167358] = 6, + [167510] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + STATE(3250), 1, + sym_class_body, + STATE(4647), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6822), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [167541] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(4643), 1, + STATE(4648), 1, sym_comment, - STATE(5298), 1, + STATE(4892), 1, sym_type_annotation, - ACTIONS(8143), 5, + STATE(5687), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167381] = 4, + [167568] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4644), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(4649), 1, sym_comment, - ACTIONS(7709), 7, + STATE(4896), 1, + sym_type_annotation, + STATE(5689), 1, + sym__initializer, + ACTIONS(7434), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [167400] = 10, + [167595] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7579), 1, anon_sym_implements, - ACTIONS(7769), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(1165), 1, + STATE(367), 1, sym_class_body, - STATE(4645), 1, + STATE(4650), 1, sym_comment, - STATE(5692), 1, + STATE(5683), 1, sym_extends_clause, - STATE(6400), 1, + STATE(6525), 1, sym_class_heritage, - STATE(7268), 1, + STATE(7274), 1, sym_implements_clause, - [167431] = 4, + [167626] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4646), 1, + ACTIONS(7577), 1, + anon_sym_extends, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_class_body, + STATE(4651), 1, + sym_comment, + STATE(5683), 1, + sym_extends_clause, + STATE(6472), 1, + sym_class_heritage, + STATE(7274), 1, + sym_implements_clause, + [167657] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4109), 1, + anon_sym_LBRACE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_identifier, + STATE(4506), 1, + sym__destructuring_pattern, + STATE(4652), 1, sym_comment, - ACTIONS(2306), 7, + STATE(5425), 1, + sym_variable_declarator, + STATE(4654), 2, + sym_object_pattern, + sym_array_pattern, + [167686] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4653), 1, + sym_comment, + ACTIONS(2300), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -349780,14 +349998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [167450] = 4, + [167705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4647), 1, + STATE(4654), 1, sym_comment, - ACTIONS(7771), 7, + ACTIONS(7581), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -349795,1500 +350013,1379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [167469] = 8, + [167724] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4648), 1, + STATE(4655), 1, sym_comment, - STATE(4958), 1, - sym_type_annotation, - STATE(5744), 1, - sym__initializer, - ACTIONS(7446), 3, + STATE(4751), 1, + aux_sym_object_type_repeat1, + ACTIONS(8155), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167496] = 8, + [167746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(4649), 1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3490), 1, + sym_statement_block, + STATE(4656), 1, sym_comment, - STATE(4965), 1, - sym_type_annotation, - STATE(5749), 1, - sym__initializer, - ACTIONS(7446), 3, + ACTIONS(7997), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167523] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8145), 1, - sym_identifier, - STATE(4650), 1, - sym_comment, - ACTIONS(4963), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [167544] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8147), 1, - sym_identifier, - STATE(3700), 1, - sym__type_query_subscript_expression, - STATE(3701), 1, - sym__type_query_member_expression, - STATE(3761), 1, - sym__type_query_call_expression, - STATE(3840), 1, - sym__type_query_instantiation_expression, - STATE(4651), 1, - sym_comment, - STATE(5524), 1, - sym_import, - [167575] = 8, + [167768] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, + ACTIONS(8159), 1, anon_sym_default, - ACTIONS(8151), 1, + ACTIONS(8162), 1, anon_sym_RBRACE, - ACTIONS(8153), 1, - anon_sym_case, - STATE(4652), 1, - sym_comment, - STATE(4808), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [167601] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, + ACTIONS(8164), 1, anon_sym_case, - ACTIONS(8155), 1, - anon_sym_RBRACE, - STATE(4653), 1, + STATE(4657), 2, sym_comment, - STATE(4808), 1, aux_sym_switch_body_repeat1, STATE(5904), 2, sym_switch_case, sym_switch_default, - [167627] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4654), 1, - sym_comment, - STATE(4673), 1, - aux_sym_object_type_repeat1, - ACTIONS(8159), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8157), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167649] = 6, + [167792] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4655), 1, + STATE(4658), 1, sym_comment, - STATE(4747), 1, + STATE(4688), 1, aux_sym_object_type_repeat1, - ACTIONS(8163), 2, + ACTIONS(8169), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8161), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167671] = 6, + [167814] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4656), 1, + ACTIONS(8171), 1, + anon_sym_BQUOTE, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4659), 1, sym_comment, - STATE(4757), 1, - aux_sym_object_type_repeat1, - ACTIONS(8159), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8157), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167693] = 5, + STATE(4707), 1, + aux_sym_template_string_repeat1, + STATE(5573), 1, + sym_template_substitution, + ACTIONS(7857), 2, + sym__template_chars, + sym_escape_sequence, + [167840] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8165), 1, - sym_identifier, - STATE(4657), 1, - sym_comment, - ACTIONS(7104), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1973), 1, anon_sym_LT, - anon_sym_BQUOTE, - [167713] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8167), 1, - anon_sym_export, - ACTIONS(8169), 1, - anon_sym_class, - ACTIONS(8171), 1, - anon_sym_abstract, - STATE(4658), 1, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8175), 1, + sym_identifier, + STATE(4660), 1, sym_comment, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(5596), 1, - sym_decorator, - [167741] = 6, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6932), 1, + sym__call_signature, + [167868] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4659), 1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3511), 1, + sym_statement_block, + STATE(4661), 1, sym_comment, - STATE(4757), 1, - aux_sym_object_type_repeat1, - ACTIONS(8163), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8161), 3, + ACTIONS(7995), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167763] = 4, + [167890] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4660), 1, - sym_comment, - ACTIONS(4640), 6, - anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8177), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [167781] = 9, + ACTIONS(8179), 1, + anon_sym_GT, + STATE(4662), 1, + sym_comment, + STATE(5802), 1, + aux_sym_type_arguments_repeat1, + [167918] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8173), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7757), 1, + anon_sym_DOT, + ACTIONS(8181), 1, anon_sym_COMMA, - ACTIONS(8175), 1, + ACTIONS(8183), 1, anon_sym_GT, - STATE(4661), 1, + STATE(4367), 1, + sym_arguments, + STATE(4663), 1, sym_comment, STATE(5799), 1, aux_sym_type_arguments_repeat1, - [167809] = 6, + [167946] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8179), 1, - anon_sym_AT, - STATE(5596), 1, - sym_decorator, - STATE(4662), 2, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8187), 1, + anon_sym_RBRACE, + ACTIONS(8189), 1, + anon_sym_case, + STATE(4664), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(8177), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [167831] = 4, + STATE(4684), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [167972] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4663), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8191), 1, + anon_sym_BQUOTE, + STATE(4665), 1, sym_comment, - ACTIONS(7966), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [167849] = 9, + STATE(4726), 1, + aux_sym_template_string_repeat1, + STATE(5573), 1, + sym_template_substitution, + ACTIONS(7857), 2, + sym__template_chars, + sym_escape_sequence, + [167998] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8182), 1, - anon_sym_COMMA, - ACTIONS(8184), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, - STATE(4664), 1, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8193), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_switch_body_repeat1, + STATE(4666), 1, sym_comment, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - [167877] = 4, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [168024] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4665), 1, + STATE(4667), 1, sym_comment, - ACTIONS(8186), 6, + STATE(4714), 1, + aux_sym_object_type_repeat1, + ACTIONS(8197), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8195), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167895] = 4, + [168046] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4666), 1, + STATE(4668), 1, sym_comment, - ACTIONS(2164), 6, - anon_sym_COMMA, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8201), 2, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [167913] = 9, + anon_sym_PIPE_RBRACE, + ACTIONS(8199), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168068] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8188), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8203), 1, anon_sym_QMARK, - STATE(4667), 1, + STATE(4669), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6385), 1, + STATE(6539), 1, sym__call_signature, - [167941] = 6, + [168096] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_COLON, - STATE(4668), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8205), 1, + anon_sym_export, + ACTIONS(8207), 1, + anon_sym_class, + ACTIONS(8209), 1, + anon_sym_abstract, + STATE(4670), 1, sym_comment, - ACTIONS(7507), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6753), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [167963] = 9, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + [168124] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(8192), 1, - anon_sym_QMARK, - STATE(4669), 1, + ACTIONS(7757), 1, + anon_sym_DOT, + ACTIONS(8211), 1, + anon_sym_COMMA, + ACTIONS(8213), 1, + anon_sym_GT, + STATE(4367), 1, + sym_arguments, + STATE(4671), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6450), 1, - sym__call_signature, - [167991] = 6, + STATE(6196), 1, + aux_sym_type_arguments_repeat1, + [168152] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4670), 1, + STATE(4672), 1, sym_comment, - STATE(4757), 1, + STATE(4812), 1, aux_sym_object_type_repeat1, - ACTIONS(8196), 2, + ACTIONS(8197), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8194), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168013] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3503), 1, - sym_statement_block, - STATE(4671), 1, - sym_comment, - ACTIONS(8094), 4, + ACTIONS(8195), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168035] = 9, + [168174] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8200), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8215), 1, anon_sym_QMARK, - STATE(4672), 1, + STATE(4673), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6804), 1, + STATE(6400), 1, sym__call_signature, - [168063] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4673), 1, - sym_comment, - STATE(4757), 1, - aux_sym_object_type_repeat1, - ACTIONS(8204), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8202), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168085] = 6, + [168202] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(8217), 1, + anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, STATE(4674), 1, sym_comment, - STATE(4744), 1, - aux_sym_object_type_repeat1, - ACTIONS(8208), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8206), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168107] = 8, + STATE(4704), 1, + sym__call_signature, + STATE(6465), 1, + sym_type_parameters, + [168230] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_catch, - ACTIONS(8212), 1, - anon_sym_finally, + ACTIONS(8219), 1, + anon_sym_COLON, STATE(4675), 1, sym_comment, - STATE(5404), 1, - sym_catch_clause, - STATE(6307), 1, - sym_finally_clause, - ACTIONS(3125), 2, - anon_sym_else, - anon_sym_while, - [168133] = 8, + ACTIONS(7569), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6759), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [168252] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8214), 1, - anon_sym_BQUOTE, - ACTIONS(8216), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8221), 1, + anon_sym_export, + ACTIONS(8223), 1, + anon_sym_class, + ACTIONS(8225), 1, + anon_sym_abstract, STATE(4676), 1, sym_comment, - STATE(4820), 1, - aux_sym_template_string_repeat1, - STATE(5570), 1, - sym_template_substitution, - ACTIONS(7871), 2, - sym__template_chars, - sym_escape_sequence, - [168159] = 6, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(5599), 1, + sym_decorator, + [168280] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3500), 1, + STATE(3497), 1, sym_statement_block, STATE(4677), 1, sym_comment, - ACTIONS(7978), 4, + ACTIONS(8053), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168181] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168302] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8218), 1, - sym_identifier, - STATE(4678), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8229), 1, + anon_sym_AT, + STATE(5599), 1, + sym_decorator, + STATE(4678), 2, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6676), 1, - sym__call_signature, - [168209] = 6, + aux_sym_export_statement_repeat1, + ACTIONS(8227), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [168324] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3489), 1, - sym_statement_block, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8232), 1, + anon_sym_COMMA, + ACTIONS(8234), 1, + anon_sym_GT, STATE(4679), 1, sym_comment, - ACTIONS(8094), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168231] = 9, + STATE(6192), 1, + aux_sym_type_arguments_repeat1, + [168352] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(8220), 1, - anon_sym_QMARK, + ACTIONS(8236), 1, + sym_identifier, STATE(4680), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6717), 1, - sym__call_signature, - [168259] = 9, + ACTIONS(7106), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [168372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8222), 1, - anon_sym_COMMA, - ACTIONS(8224), 1, - anon_sym_GT, + STATE(4672), 1, + aux_sym_object_type_repeat1, STATE(4681), 1, sym_comment, - STATE(6077), 1, - aux_sym_type_arguments_repeat1, - [168287] = 9, + ACTIONS(8240), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8238), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168394] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8226), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3516), 1, + sym_statement_block, STATE(4682), 1, sym_comment, - STATE(5146), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [168315] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(7967), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168416] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8228), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8242), 1, + anon_sym_RBRACE, + STATE(4666), 1, + aux_sym_switch_body_repeat1, STATE(4683), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6929), 1, - sym__call_signature, - [168343] = 9, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [168442] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - ACTIONS(8230), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_formal_parameters, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8244), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_switch_body_repeat1, STATE(4684), 1, sym_comment, - STATE(4771), 1, - sym__call_signature, - STATE(6464), 1, - sym_type_parameters, - [168371] = 6, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [168468] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3493), 1, + STATE(3463), 1, sym_statement_block, STATE(4685), 1, sym_comment, - ACTIONS(7978), 4, + ACTIONS(7983), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168393] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168490] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, - anon_sym_DQUOTE, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(8054), 1, - sym_identifier, - STATE(970), 1, - sym_nested_identifier, - STATE(976), 1, - sym_string, - STATE(1134), 1, - sym__module, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(8246), 1, + anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, STATE(4686), 1, sym_comment, - [168421] = 6, + STATE(6465), 1, + sym_type_parameters, + [168518] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(8248), 1, + anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, + STATE(4682), 1, + sym__call_signature, STATE(4687), 1, sym_comment, - STATE(4726), 1, - aux_sym_object_type_repeat1, - ACTIONS(8196), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8194), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168443] = 4, + STATE(6465), 1, + sym_type_parameters, + [168546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4688), 1, sym_comment, - ACTIONS(8088), 6, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8252), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8250), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [168461] = 9, + [168568] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(8232), 1, + ACTIONS(8254), 1, anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, STATE(4689), 1, sym_comment, - STATE(5293), 1, - sym__call_signature, - STATE(6358), 1, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, sym_type_parameters, - [168489] = 9, + STATE(6404), 1, + sym__call_signature, + [168596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8234), 1, - anon_sym_COMMA, - ACTIONS(8236), 1, - anon_sym_GT, STATE(4690), 1, sym_comment, - STATE(6188), 1, - aux_sym_type_arguments_repeat1, - [168517] = 9, + ACTIONS(4642), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [168614] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8238), 1, - anon_sym_export, - ACTIONS(8240), 1, - anon_sym_class, - ACTIONS(8242), 1, - anon_sym_abstract, - STATE(4662), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8256), 1, + anon_sym_QMARK, STATE(4691), 1, sym_comment, - STATE(5596), 1, - sym_decorator, - [168545] = 8, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6828), 1, + sym__call_signature, + [168642] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8044), 1, - anon_sym_DOT, - ACTIONS(8046), 1, - anon_sym_LT, - ACTIONS(8244), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, + STATE(3479), 1, + sym_statement_block, STATE(4692), 1, sym_comment, - STATE(5638), 1, - sym_type_arguments, - ACTIONS(8246), 2, + ACTIONS(7967), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [168571] = 9, + anon_sym_SEMI, + [168664] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8248), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4547), 1, - sym__call_signature, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8258), 1, + anon_sym_COMMA, + ACTIONS(8260), 1, + anon_sym_GT, STATE(4693), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [168599] = 8, + STATE(6083), 1, + aux_sym_type_arguments_repeat1, + [168692] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8250), 1, - anon_sym_RBRACE, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7757), 1, + anon_sym_DOT, + ACTIONS(8262), 1, + anon_sym_COMMA, + ACTIONS(8264), 1, + anon_sym_GT, + STATE(4367), 1, + sym_arguments, STATE(4694), 1, sym_comment, - STATE(4808), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [168625] = 9, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + [168720] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8252), 1, + ACTIONS(8266), 1, anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, STATE(4695), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6404), 1, + STATE(4870), 1, sym__call_signature, - [168653] = 6, + STATE(6380), 1, + sym_type_parameters, + [168748] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym_statement_block, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8268), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, STATE(4696), 1, sym_comment, - ACTIONS(7915), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168675] = 9, + STATE(6197), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [168776] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(7254), 1, anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8254), 1, - anon_sym_COMMA, - ACTIONS(8256), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8270), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, STATE(4697), 1, sym_comment, - STATE(6194), 1, - aux_sym_type_arguments_repeat1, - [168703] = 6, + STATE(6023), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [168804] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4656), 1, - aux_sym_object_type_repeat1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8272), 1, + anon_sym_QMARK, STATE(4698), 1, sym_comment, - ACTIONS(8260), 2, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6665), 1, + sym__call_signature, + [168832] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4699), 1, + sym_comment, + STATE(4718), 1, + aux_sym_object_type_repeat1, + ACTIONS(8252), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8258), 3, + ACTIONS(8250), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168725] = 8, + [168854] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8262), 1, - anon_sym_RBRACE, - STATE(4653), 1, - aux_sym_switch_body_repeat1, - STATE(4699), 1, + STATE(4700), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [168751] = 7, + STATE(4745), 1, + aux_sym_object_type_repeat1, + ACTIONS(8276), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8274), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168876] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(4700), 1, - sym_comment, - ACTIONS(8264), 3, - anon_sym_EQ, + ACTIONS(8278), 1, anon_sym_COMMA, + ACTIONS(8280), 1, anon_sym_GT, - [168775] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3510), 1, - sym_statement_block, STATE(4701), 1, sym_comment, - ACTIONS(8010), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168797] = 9, + STATE(5812), 1, + aux_sym_type_arguments_repeat1, + [168904] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(8266), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, + ACTIONS(7757), 1, + anon_sym_DOT, + ACTIONS(8282), 1, + anon_sym_COMMA, + ACTIONS(8284), 1, + anon_sym_GT, + STATE(4367), 1, + sym_arguments, STATE(4702), 1, sym_comment, - STATE(6021), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [168825] = 9, + STATE(5821), 1, + aux_sym_type_arguments_repeat1, + [168932] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8268), 1, + ACTIONS(8286), 1, sym_identifier, STATE(4703), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6653), 1, + STATE(6659), 1, sym__call_signature, - [168853] = 6, + [168960] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3512), 1, + STATE(3496), 1, sym_statement_block, STATE(4704), 1, sym_comment, - ACTIONS(8113), 4, + ACTIONS(8053), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168875] = 6, + [168982] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3471), 1, + STATE(3492), 1, sym_statement_block, STATE(4705), 1, sym_comment, - ACTIONS(7974), 4, + ACTIONS(8051), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168897] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169004] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4196), 1, - anon_sym_DQUOTE, - ACTIONS(4198), 1, - anon_sym_SQUOTE, - ACTIONS(8016), 1, - sym_identifier, - STATE(984), 1, - sym_nested_identifier, - STATE(1095), 1, - sym_string, - STATE(1404), 1, - sym__module, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_statement_block, STATE(4706), 1, sym_comment, - [168925] = 9, + ACTIONS(8055), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169026] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8270), 1, - anon_sym_COMMA, - ACTIONS(8272), 1, - anon_sym_GT, - STATE(4707), 1, + ACTIONS(8291), 1, + anon_sym_BQUOTE, + ACTIONS(8293), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5573), 1, + sym_template_substitution, + ACTIONS(8288), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4707), 2, sym_comment, - STATE(5922), 1, - aux_sym_type_arguments_repeat1, - [168953] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + aux_sym_template_string_repeat1, + [169050] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4196), 1, - anon_sym_DQUOTE, - ACTIONS(4198), 1, - anon_sym_SQUOTE, - ACTIONS(8016), 1, - sym_identifier, - STATE(984), 1, - sym_nested_identifier, - STATE(1095), 1, - sym_string, - STATE(1481), 1, - sym__module, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3514), 1, + sym_statement_block, STATE(4708), 1, sym_comment, - [168981] = 4, + ACTIONS(8087), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3515), 1, + sym_statement_block, STATE(4709), 1, sym_comment, - ACTIONS(8084), 6, + ACTIONS(8089), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [168999] = 9, + [169094] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4475), 1, - sym__call_signature, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3501), 1, + sym_statement_block, STATE(4710), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [169027] = 9, + ACTIONS(7997), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169116] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8276), 1, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(8296), 1, anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, STATE(4711), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6564), 1, + STATE(4725), 1, sym__call_signature, - [169055] = 9, + STATE(6465), 1, + sym_type_parameters, + [169144] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3470), 1, + sym_statement_block, STATE(4712), 1, sym_comment, - STATE(4867), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [169083] = 9, + ACTIONS(8087), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169166] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(8280), 1, + ACTIONS(8298), 1, anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, STATE(4713), 1, sym_comment, - STATE(6190), 1, - sym__call_signature, - STATE(6358), 1, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, sym_type_parameters, - [169111] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6806), 1, + sym__call_signature, + [169194] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4178), 1, - anon_sym_DQUOTE, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(8054), 1, - sym_identifier, - STATE(970), 1, - sym_nested_identifier, - STATE(976), 1, - sym_string, - STATE(1211), 1, - sym__module, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(4714), 1, sym_comment, - [169139] = 4, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8302), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8300), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4715), 1, sym_comment, - ACTIONS(8282), 6, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [169157] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4728), 1, + aux_sym_object_type_repeat1, + ACTIONS(8306), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8304), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169238] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8284), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3519), 1, + sym_statement_block, STATE(4716), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6653), 1, - sym__call_signature, - [169185] = 9, + ACTIONS(7969), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8286), 1, - anon_sym_COMMA, - ACTIONS(8288), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, STATE(4717), 1, sym_comment, - STATE(6254), 1, - aux_sym_type_arguments_repeat1, - [169213] = 9, + ACTIONS(8308), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [169278] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_formal_parameters, STATE(4718), 1, sym_comment, - STATE(4819), 1, - sym__call_signature, - STATE(6464), 1, - sym_type_parameters, - [169241] = 9, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8312), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169300] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8292), 1, - anon_sym_COMMA, - ACTIONS(8294), 1, - anon_sym_GT, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym_statement_block, STATE(4719), 1, sym_comment, - STATE(6258), 1, - aux_sym_type_arguments_repeat1, - [169269] = 6, + ACTIONS(8051), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4720), 1, sym_comment, - STATE(4757), 1, - aux_sym_object_type_repeat1, - ACTIONS(8298), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8296), 3, + ACTIONS(7867), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [169291] = 9, + anon_sym_DOT, + [169340] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8300), 1, - anon_sym_COMMA, - ACTIONS(8302), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, + ACTIONS(8314), 1, + anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, STATE(4721), 1, sym_comment, - STATE(6073), 1, - aux_sym_type_arguments_repeat1, - [169319] = 9, + STATE(4743), 1, + sym__call_signature, + STATE(6465), 1, + sym_type_parameters, + [169368] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8304), 1, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + ACTIONS(8105), 1, sym_identifier, + STATE(972), 1, + sym_nested_identifier, + STATE(1053), 1, + sym_string, + STATE(1366), 1, + sym__module, STATE(4722), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6653), 1, - sym__call_signature, - [169347] = 9, + [169396] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(4178), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(4180), 1, anon_sym_SQUOTE, - ACTIONS(8090), 1, + ACTIONS(8105), 1, sym_identifier, - STATE(4723), 1, - sym_comment, - STATE(4878), 1, + STATE(972), 1, sym_nested_identifier, - STATE(5584), 1, + STATE(1053), 1, sym_string, - STATE(6342), 1, + STATE(1352), 1, sym__module, - [169375] = 9, + STATE(4723), 1, + sym_comment, + [169424] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8090), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8316), 1, sym_identifier, STATE(4724), 1, sym_comment, - STATE(4878), 1, - sym_nested_identifier, - STATE(5584), 1, - sym_string, - STATE(6381), 1, - sym__module, - [169403] = 6, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6659), 1, + sym__call_signature, + [169452] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3474), 1, + STATE(3509), 1, sym_statement_block, STATE(4725), 1, sym_comment, - ACTIONS(7919), 4, + ACTIONS(8103), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169425] = 6, + [169474] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8318), 1, + anon_sym_BQUOTE, + STATE(4707), 1, + aux_sym_template_string_repeat1, STATE(4726), 1, sym_comment, - STATE(4757), 1, - aux_sym_object_type_repeat1, - ACTIONS(8308), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8306), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169447] = 8, + STATE(5573), 1, + sym_template_substitution, + ACTIONS(7857), 2, + sym__template_chars, + sym_escape_sequence, + [169500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8310), 1, - anon_sym_RBRACE, - STATE(4694), 1, - aux_sym_switch_body_repeat1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, STATE(4727), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [169473] = 9, + ACTIONS(7995), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169522] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8312), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, STATE(4728), 1, sym_comment, - STATE(5203), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [169501] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4729), 1, - sym_comment, - STATE(4773), 1, + STATE(4812), 1, aux_sym_object_type_repeat1, - ACTIONS(8316), 2, + ACTIONS(8276), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8314), 3, + ACTIONS(8274), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169523] = 6, + [169544] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3480), 1, + STATE(3505), 1, sym_statement_block, + STATE(4729), 1, + sym_comment, + ACTIONS(8075), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169566] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(4194), 1, + anon_sym_SQUOTE, + ACTIONS(8033), 1, + sym_identifier, + STATE(948), 1, + sym_nested_identifier, + STATE(997), 1, + sym_string, + STATE(1122), 1, + sym__module, STATE(4730), 1, sym_comment, - ACTIONS(8096), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169545] = 9, + [169594] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8320), 1, + anon_sym_QMARK, + STATE(4731), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6717), 1, + sym__call_signature, + [169622] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(4194), 1, + anon_sym_SQUOTE, + ACTIONS(8033), 1, + sym_identifier, + STATE(948), 1, + sym_nested_identifier, + STATE(997), 1, + sym_string, + STATE(1174), 1, + sym__module, + STATE(4732), 1, + sym_comment, + [169650] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8318), 1, + ACTIONS(8322), 1, sym_identifier, - STATE(4731), 1, + STATE(4733), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6901), 1, + STATE(6917), 1, sym__call_signature, - [169573] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(8046), 1, - anon_sym_LT, - ACTIONS(8320), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_LBRACE_PIPE, - STATE(4732), 1, - sym_comment, - STATE(5458), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5637), 1, - sym_type_arguments, - [169601] = 8, + [169678] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -351299,528 +351396,529 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8326), 1, anon_sym_LBRACK, - STATE(4733), 1, + STATE(4734), 1, sym_comment, - STATE(5945), 1, + STATE(5973), 1, sym__destructuring_pattern, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - [169627] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [169704] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8328), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4594), 1, - sym__call_signature, - STATE(4734), 1, - sym_comment, - STATE(6358), 1, - sym_type_parameters, - [169655] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8330), 1, - anon_sym_RBRACE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8328), 1, + sym_identifier, STATE(4735), 1, sym_comment, - STATE(4774), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [169681] = 9, + STATE(5945), 1, + sym__destructuring_pattern, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + [169730] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7747), 1, + ACTIONS(7757), 1, anon_sym_DOT, - ACTIONS(8332), 1, + ACTIONS(8330), 1, anon_sym_COMMA, - ACTIONS(8334), 1, + ACTIONS(8332), 1, anon_sym_GT, - STATE(4380), 1, + STATE(4367), 1, sym_arguments, STATE(4736), 1, sym_comment, - STATE(5829), 1, + STATE(6260), 1, aux_sym_type_arguments_repeat1, - [169709] = 9, + [169758] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8334), 1, + sym_identifier, + STATE(4737), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6659), 1, + sym__call_signature, + [169786] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, ACTIONS(8336), 1, anon_sym_COMMA, ACTIONS(8338), 1, anon_sym_GT, - STATE(4737), 1, + STATE(4738), 1, sym_comment, - STATE(5808), 1, + STATE(6264), 1, aux_sym_type_arguments_repeat1, - [169737] = 6, + [169814] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3479), 1, + STATE(3518), 1, sym_statement_block, - STATE(4738), 1, + STATE(4739), 1, sym_comment, - ACTIONS(8098), 4, + ACTIONS(8101), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169759] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(8024), 1, - anon_sym_EQ, - STATE(4739), 1, - sym_comment, - STATE(5498), 1, - sym_type_annotation, - STATE(6937), 1, - sym__initializer, - ACTIONS(8340), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169785] = 6, + [169836] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + ACTIONS(8340), 1, + anon_sym_QMARK, + STATE(4226), 1, + sym_formal_parameters, + STATE(4709), 1, + sym__call_signature, STATE(4740), 1, sym_comment, - STATE(4797), 1, - aux_sym_object_type_repeat1, - ACTIONS(8344), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8342), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169807] = 9, + STATE(6465), 1, + sym_type_parameters, + [169864] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(8021), 1, + anon_sym_COMMA, + ACTIONS(8025), 1, anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8346), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4605), 1, - sym__call_signature, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(8344), 1, + anon_sym_LBRACE_PIPE, STATE(4741), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [169835] = 9, + STATE(5460), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5640), 1, + sym_type_arguments, + [169892] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8348), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4577), 1, - sym__call_signature, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8346), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_switch_body_repeat1, STATE(4742), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [169863] = 8, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [169918] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8216), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8350), 1, - anon_sym_BQUOTE, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3507), 1, + sym_statement_block, STATE(4743), 1, sym_comment, - STATE(4820), 1, - aux_sym_template_string_repeat1, - STATE(5570), 1, - sym_template_substitution, - ACTIONS(7871), 2, - sym__template_chars, - sym_escape_sequence, - [169889] = 6, + ACTIONS(7983), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169940] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3506), 1, + sym_statement_block, STATE(4744), 1, sym_comment, - STATE(4757), 1, + ACTIONS(8075), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169962] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4745), 1, + sym_comment, + STATE(4812), 1, aux_sym_object_type_repeat1, - ACTIONS(8316), 2, + ACTIONS(8350), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8314), 3, + ACTIONS(8348), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169911] = 9, + [169984] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, ACTIONS(8352), 1, anon_sym_QMARK, - STATE(4303), 1, + STATE(4746), 1, + sym_comment, + STATE(4817), 1, sym_formal_parameters, - STATE(4745), 1, + STATE(6363), 1, + sym_type_parameters, + STATE(6684), 1, + sym__call_signature, + [170012] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8354), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4747), 1, sym_comment, - STATE(4798), 1, + STATE(5327), 1, sym__call_signature, - STATE(6464), 1, + STATE(6380), 1, sym_type_parameters, - [169939] = 6, + [170040] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3470), 1, - sym_statement_block, - STATE(4746), 1, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8356), 1, + anon_sym_RBRACE, + STATE(4748), 1, + sym_comment, + STATE(4800), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [170066] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4749), 1, sym_comment, - ACTIONS(8096), 4, + ACTIONS(8013), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [169961] = 6, + anon_sym_COLON, + [170084] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4747), 1, + STATE(4750), 1, sym_comment, - STATE(4757), 1, + STATE(4812), 1, aux_sym_object_type_repeat1, - ACTIONS(8356), 2, + ACTIONS(8360), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8354), 3, + ACTIONS(8358), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169983] = 8, + [170106] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8216), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8358), 1, - anon_sym_BQUOTE, - STATE(4743), 1, - aux_sym_template_string_repeat1, - STATE(4748), 1, - sym_comment, - STATE(5570), 1, - sym_template_substitution, - ACTIONS(7871), 2, - sym__template_chars, - sym_escape_sequence, - [170009] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4190), 1, - anon_sym_DQUOTE, - ACTIONS(4192), 1, - anon_sym_SQUOTE, - ACTIONS(8072), 1, - sym_identifier, - STATE(990), 1, - sym_nested_identifier, - STATE(1086), 1, - sym_string, - STATE(1431), 1, - sym__module, - STATE(4749), 1, + STATE(4751), 1, sym_comment, - [170037] = 6, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8364), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8362), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170128] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4659), 1, + STATE(4668), 1, aux_sym_object_type_repeat1, - STATE(4750), 1, + STATE(4752), 1, sym_comment, - ACTIONS(8362), 2, + ACTIONS(8364), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8360), 3, + ACTIONS(8362), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170059] = 8, + [170150] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, + STATE(4753), 1, + sym_comment, + ACTIONS(2186), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [170168] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8185), 1, anon_sym_default, - ACTIONS(8153), 1, + ACTIONS(8189), 1, anon_sym_case, - ACTIONS(8364), 1, + ACTIONS(8366), 1, anon_sym_RBRACE, - STATE(4652), 1, + STATE(4742), 1, aux_sym_switch_body_repeat1, - STATE(4751), 1, + STATE(4754), 1, sym_comment, STATE(5904), 2, sym_switch_case, sym_switch_default, - [170085] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4190), 1, - anon_sym_DQUOTE, - ACTIONS(4192), 1, - anon_sym_SQUOTE, - ACTIONS(8072), 1, - sym_identifier, - STATE(990), 1, - sym_nested_identifier, - STATE(1086), 1, - sym_string, - STATE(1350), 1, - sym__module, - STATE(4752), 1, - sym_comment, - [170113] = 6, + [170194] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4753), 1, + STATE(4755), 1, sym_comment, - STATE(4776), 1, + STATE(4792), 1, aux_sym_object_type_repeat1, - ACTIONS(8368), 2, + ACTIONS(8370), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8366), 3, + ACTIONS(8368), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170135] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_formal_parameters, - STATE(4754), 1, - sym_comment, - STATE(4835), 1, - sym__call_signature, - STATE(6464), 1, - sym_type_parameters, - [170163] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8372), 1, - sym_identifier, - STATE(4755), 1, - sym_comment, - STATE(5973), 1, - sym__destructuring_pattern, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - [170189] = 6, + [170216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3485), 1, + STATE(3480), 1, sym_statement_block, STATE(4756), 1, sym_comment, - ACTIONS(8104), 4, + ACTIONS(7937), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170211] = 5, + [170238] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8377), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4757), 2, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(8037), 1, + anon_sym_EQ, + STATE(4757), 1, sym_comment, - aux_sym_object_type_repeat1, - ACTIONS(8374), 3, - sym__automatic_semicolon, + STATE(5501), 1, + sym_type_annotation, + STATE(6939), 1, + sym__initializer, + ACTIONS(8372), 2, anon_sym_COMMA, - anon_sym_SEMI, - [170231] = 9, + anon_sym_RPAREN, + [170264] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8379), 1, - anon_sym_export, - ACTIONS(8381), 1, - anon_sym_class, - ACTIONS(8383), 1, - anon_sym_abstract, - STATE(4662), 1, - aux_sym_export_statement_repeat1, STATE(4758), 1, sym_comment, - STATE(5596), 1, - sym_decorator, - [170259] = 6, + ACTIONS(8374), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4642), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [170284] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, + STATE(4759), 1, + sym_comment, + STATE(4880), 1, + sym_nested_identifier, + STATE(5587), 1, + sym_string, + STATE(6390), 1, + sym__module, + [170312] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3462), 1, - sym_statement_block, - STATE(4759), 1, + STATE(4760), 1, sym_comment, - ACTIONS(8104), 4, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8378), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170334] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4761), 1, + sym_comment, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8382), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8380), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170281] = 9, + [170356] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(8384), 1, sym_identifier, - STATE(4760), 1, + STATE(4762), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6653), 1, + STATE(6659), 1, sym__call_signature, - [170309] = 9, + [170384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - ACTIONS(8387), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_formal_parameters, - STATE(4738), 1, - sym__call_signature, - STATE(4761), 1, + STATE(4763), 1, sym_comment, - STATE(6464), 1, - sym_type_parameters, - [170337] = 9, + STATE(4810), 1, + aux_sym_object_type_repeat1, + ACTIONS(8388), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170406] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8389), 1, + ACTIONS(8390), 1, sym_identifier, - STATE(4762), 1, + STATE(4764), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6901), 1, + STATE(6917), 1, sym__call_signature, - [170365] = 8, + [170434] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -351829,295 +351927,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(8326), 1, anon_sym_LBRACK, - ACTIONS(8391), 1, + ACTIONS(8392), 1, sym_identifier, - STATE(4763), 1, + STATE(4765), 1, sym_comment, STATE(5905), 1, sym__destructuring_pattern, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - [170391] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8393), 1, - sym_identifier, - STATE(4764), 1, - sym_comment, - STATE(6742), 1, - sym__destructuring_pattern, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - [170417] = 6, + [170460] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3495), 1, - sym_statement_block, - STATE(4765), 1, + STATE(4766), 1, sym_comment, - ACTIONS(8034), 4, + STATE(4816), 1, + aux_sym_object_type_repeat1, + ACTIONS(8396), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8394), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170439] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4766), 1, - sym_comment, - ACTIONS(2290), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [170457] = 9, + [170482] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8395), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4391), 1, - sym__call_signature, + STATE(4750), 1, + aux_sym_object_type_repeat1, STATE(4767), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [170485] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3484), 1, - sym_statement_block, - STATE(4768), 1, - sym_comment, - ACTIONS(7913), 4, + ACTIONS(8382), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8380), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170507] = 9, + [170504] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8397), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8398), 1, anon_sym_QMARK, - STATE(4769), 1, + STATE(4768), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6540), 1, + STATE(6413), 1, sym__call_signature, - [170535] = 9, + [170532] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8399), 1, - anon_sym_LBRACE, - ACTIONS(8401), 1, - anon_sym_COMMA, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8400), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_switch_body_repeat1, + STATE(4769), 1, + sym_comment, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [170558] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_identifier, STATE(4770), 1, sym_comment, - STATE(5903), 1, - aux_sym_implements_clause_repeat1, - [170563] = 6, + STATE(4880), 1, + sym_nested_identifier, + STATE(5587), 1, + sym_string, + STATE(6347), 1, + sym__module, + [170586] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3483), 1, - sym_statement_block, STATE(4771), 1, sym_comment, - ACTIONS(8113), 4, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8404), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8402), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170585] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170608] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8403), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8406), 1, + anon_sym_catch, + ACTIONS(8408), 1, + anon_sym_finally, STATE(4772), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6901), 1, - sym__call_signature, - [170613] = 6, + STATE(5405), 1, + sym_catch_clause, + STATE(6384), 1, + sym_finally_clause, + ACTIONS(3129), 2, + anon_sym_else, + anon_sym_while, + [170634] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8410), 1, + anon_sym_QMARK, STATE(4773), 1, sym_comment, - ACTIONS(8407), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8405), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170635] = 8, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6386), 1, + sym__call_signature, + [170662] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8409), 1, - anon_sym_RBRACE, + ACTIONS(8023), 1, + anon_sym_DOT, + ACTIONS(8025), 1, + anon_sym_LT, + ACTIONS(8412), 1, + anon_sym_LBRACE, STATE(4774), 1, sym_comment, - STATE(4808), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [170661] = 6, + STATE(5641), 1, + sym_type_arguments, + ACTIONS(8414), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [170688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4775), 1, sym_comment, - STATE(4790), 1, - aux_sym_object_type_repeat1, - ACTIONS(8413), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8411), 3, - sym__automatic_semicolon, + ACTIONS(2212), 6, anon_sym_COMMA, - anon_sym_SEMI, - [170683] = 6, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [170706] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, STATE(4776), 1, sym_comment, - ACTIONS(8413), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8411), 3, - sym__automatic_semicolon, + ACTIONS(8416), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [170705] = 9, + anon_sym_GT, + [170730] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8415), 1, + ACTIONS(8418), 1, anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, STATE(4777), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6661), 1, + STATE(6090), 1, sym__call_signature, - [170733] = 9, + STATE(6380), 1, + sym_type_parameters, + [170758] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(8417), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, sym_identifier, STATE(4778), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6901), 1, - sym__call_signature, - [170761] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(8419), 1, - anon_sym_QMARK, - STATE(4779), 1, - sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6683), 1, - sym__call_signature, - [170789] = 8, + STATE(5465), 1, + sym__destructuring_pattern, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + [170784] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -352126,259 +352172,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(8326), 1, anon_sym_LBRACK, - ACTIONS(8421), 1, + ACTIONS(8422), 1, sym_identifier, - STATE(4780), 1, + STATE(4779), 1, sym_comment, - STATE(5464), 1, + STATE(6746), 1, sym__destructuring_pattern, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - [170815] = 9, + [170810] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8424), 1, + anon_sym_LBRACE, + ACTIONS(8426), 1, anon_sym_COMMA, - ACTIONS(8425), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, - STATE(4781), 1, + STATE(4780), 1, sym_comment, - STATE(5909), 1, - aux_sym_type_arguments_repeat1, - [170843] = 4, + STATE(5902), 1, + aux_sym_implements_clause_repeat1, + [170838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4782), 1, + STATE(4781), 1, sym_comment, - ACTIONS(8427), 6, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8430), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8428), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [170861] = 5, + [170860] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8432), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4782), 1, + sym_comment, + STATE(5207), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [170888] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8429), 1, + ACTIONS(8434), 1, sym_identifier, STATE(4783), 1, sym_comment, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [170881] = 4, + [170908] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + sym_identifier, STATE(4784), 1, sym_comment, - ACTIONS(8431), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [170899] = 6, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6917), 1, + sym__call_signature, + [170936] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(4206), 1, + anon_sym_DQUOTE, + ACTIONS(4208), 1, + anon_sym_SQUOTE, + ACTIONS(8083), 1, + sym_identifier, + STATE(984), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_string, + STATE(1471), 1, + sym__module, STATE(4785), 1, sym_comment, - STATE(4822), 1, - aux_sym_object_type_repeat1, - ACTIONS(8435), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170921] = 6, + [170964] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8438), 1, + sym_identifier, + STATE(4786), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6659), 1, + sym__call_signature, + [170992] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7931), 1, + sym_identifier, + STATE(4382), 1, + sym_nested_identifier, + STATE(4592), 1, + sym_string, + STATE(4787), 1, + sym_comment, + STATE(4851), 1, + sym__module, + [171020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, - STATE(4786), 1, + STATE(4788), 1, sym_comment, - ACTIONS(8439), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8437), 3, + ACTIONS(8077), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [170943] = 9, + anon_sym_COLON, + [171038] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8441), 1, + ACTIONS(8440), 1, sym_identifier, - STATE(4787), 1, + STATE(4789), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6653), 1, + STATE(6659), 1, sym__call_signature, - [170971] = 6, + [171066] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4670), 1, - aux_sym_object_type_repeat1, - STATE(4788), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8442), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4790), 1, sym_comment, - ACTIONS(8445), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170993] = 4, + STATE(5150), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [171094] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4789), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7931), 1, + sym_identifier, + STATE(4382), 1, + sym_nested_identifier, + STATE(4592), 1, + sym_string, + STATE(4791), 1, sym_comment, - ACTIONS(8447), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171011] = 6, + STATE(4991), 1, + sym__module, + [171122] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, - STATE(4790), 1, + STATE(4792), 1, sym_comment, - ACTIONS(8451), 2, + STATE(4812), 1, + aux_sym_object_type_repeat1, + ACTIONS(8446), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8449), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171033] = 5, + [171144] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8453), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + ACTIONS(7757), 1, anon_sym_DOT, - STATE(4791), 1, - sym_comment, - ACTIONS(7885), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(8448), 1, anon_sym_COMMA, - anon_sym_SEMI, - [171053] = 5, + ACTIONS(8450), 1, + anon_sym_GT, + STATE(4367), 1, + sym_arguments, + STATE(4793), 1, + sym_comment, + STATE(5912), 1, + aux_sym_type_arguments_repeat1, + [171172] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4792), 1, - sym_comment, - ACTIONS(8455), 2, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8452), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4640), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [171073] = 6, + ACTIONS(8454), 1, + anon_sym_GT, + STATE(4794), 1, + sym_comment, + STATE(5926), 1, + aux_sym_type_arguments_repeat1, + [171200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4793), 1, - sym_comment, - STATE(4823), 1, + STATE(4761), 1, aux_sym_object_type_repeat1, - ACTIONS(8459), 2, + STATE(4795), 1, + sym_comment, + ACTIONS(8458), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8457), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171095] = 9, + [171222] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(8461), 1, - anon_sym_QMARK, - STATE(4794), 1, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8460), 1, + anon_sym_RBRACE, + STATE(4769), 1, + aux_sym_switch_body_repeat1, + STATE(4796), 1, sym_comment, - STATE(4815), 1, - sym_formal_parameters, - STATE(6346), 1, - sym_type_parameters, - STATE(6802), 1, - sym__call_signature, - [171123] = 9, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [171248] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8463), 1, + ACTIONS(8462), 1, sym_identifier, - STATE(4795), 1, + STATE(4797), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6901), 1, + STATE(6917), 1, sym__call_signature, - [171151] = 8, + [171276] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -352387,1149 +352513,1167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(8326), 1, anon_sym_LBRACK, - ACTIONS(8465), 1, + ACTIONS(8464), 1, sym_identifier, - STATE(4796), 1, + STATE(4798), 1, sym_comment, - STATE(5872), 1, + STATE(5867), 1, sym__destructuring_pattern, - STATE(4286), 2, + STATE(4155), 2, sym_object_pattern, sym_array_pattern, - [171177] = 6, + [171302] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, - STATE(4797), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8466), 1, + anon_sym_export, + ACTIONS(8468), 1, + anon_sym_class, + ACTIONS(8470), 1, + anon_sym_abstract, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(4799), 1, sym_comment, - ACTIONS(8459), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8457), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171199] = 6, + STATE(5599), 1, + sym_decorator, + [171330] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3475), 1, - sym_statement_block, - STATE(4798), 1, + ACTIONS(8185), 1, + anon_sym_default, + ACTIONS(8189), 1, + anon_sym_case, + ACTIONS(8472), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_switch_body_repeat1, + STATE(4800), 1, sym_comment, - ACTIONS(7980), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171221] = 9, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [171356] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4117), 1, anon_sym_DQUOTE, - ACTIONS(4111), 1, + ACTIONS(4119), 1, anon_sym_SQUOTE, - ACTIONS(8133), 1, + ACTIONS(8149), 1, sym_identifier, - STATE(1047), 1, + STATE(1197), 1, sym_nested_identifier, - STATE(1381), 1, + STATE(1317), 1, sym_string, - STATE(1543), 1, + STATE(1559), 1, sym__module, - STATE(4799), 1, + STATE(4801), 1, sym_comment, - [171249] = 6, + [171384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3466), 1, - sym_statement_block, - STATE(4800), 1, + STATE(4771), 1, + aux_sym_object_type_repeat1, + STATE(4802), 1, sym_comment, - ACTIONS(7913), 4, + ACTIONS(8446), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8444), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171271] = 6, + [171406] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3476), 1, - sym_statement_block, - STATE(4801), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8474), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4455), 1, + sym__call_signature, + STATE(4803), 1, sym_comment, - ACTIONS(8004), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171293] = 9, + STATE(6380), 1, + sym_type_parameters, + [171434] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8467), 1, + ACTIONS(8476), 1, sym_identifier, - STATE(4802), 1, + STATE(4804), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6653), 1, + STATE(6659), 1, sym__call_signature, - [171321] = 6, + [171462] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, - STATE(4803), 1, + STATE(4805), 1, sym_comment, - ACTIONS(8471), 2, + STATE(4833), 1, + aux_sym_object_type_repeat1, + ACTIONS(8480), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8469), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171343] = 9, + [171484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - ACTIONS(8473), 1, - anon_sym_QMARK, - STATE(4128), 1, - sym_formal_parameters, - STATE(4804), 1, + STATE(4806), 1, sym_comment, - STATE(5324), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [171371] = 9, + ACTIONS(7999), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [171502] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8475), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8482), 1, anon_sym_QMARK, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4805), 1, + STATE(4807), 1, sym_comment, - STATE(6090), 1, + STATE(5197), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [171399] = 9, + [171530] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, + ACTIONS(4117), 1, anon_sym_DQUOTE, - ACTIONS(4111), 1, + ACTIONS(4119), 1, anon_sym_SQUOTE, - ACTIONS(8133), 1, + ACTIONS(8149), 1, sym_identifier, - STATE(1047), 1, + STATE(1197), 1, sym_nested_identifier, - STATE(1381), 1, + STATE(1317), 1, sym_string, - STATE(1540), 1, + STATE(1561), 1, sym__module, - STATE(4806), 1, + STATE(4808), 1, sym_comment, - [171427] = 9, + [171558] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8477), 1, + ACTIONS(8484), 1, sym_identifier, - STATE(4807), 1, + STATE(4809), 1, sym_comment, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6901), 1, + STATE(6917), 1, sym__call_signature, - [171455] = 7, + [171586] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8479), 1, - anon_sym_default, - ACTIONS(8482), 1, - anon_sym_RBRACE, - ACTIONS(8484), 1, - anon_sym_case, - STATE(4808), 2, + STATE(4810), 1, sym_comment, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [171479] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4757), 1, + STATE(4812), 1, aux_sym_object_type_repeat1, - STATE(4809), 1, - sym_comment, - ACTIONS(8489), 2, + ACTIONS(8480), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8487), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171501] = 4, + [171608] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LPAREN, + ACTIONS(8486), 1, + sym_identifier, + STATE(4811), 1, + sym_comment, + STATE(4817), 1, + sym_formal_parameters, + STATE(6363), 1, + sym_type_parameters, + STATE(6917), 1, + sym__call_signature, + [171636] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4810), 1, + ACTIONS(8491), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4812), 2, sym_comment, - ACTIONS(6374), 6, + aux_sym_object_type_repeat1, + ACTIONS(8488), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [171519] = 6, + [171656] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4803), 1, - aux_sym_object_type_repeat1, - STATE(4811), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8493), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4813), 1, sym_comment, - ACTIONS(8489), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8487), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171541] = 6, + STATE(5293), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [171684] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4809), 1, - aux_sym_object_type_repeat1, - STATE(4812), 1, + STATE(4814), 1, sym_comment, - ACTIONS(8493), 2, + STATE(4846), 1, + aux_sym_object_type_repeat1, + ACTIONS(8497), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8491), 3, + ACTIONS(8495), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171563] = 9, + [171706] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8495), 1, + ACTIONS(8499), 1, anon_sym_export, - ACTIONS(8497), 1, + ACTIONS(8501), 1, anon_sym_class, - ACTIONS(8499), 1, + ACTIONS(8503), 1, anon_sym_abstract, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(4813), 1, + STATE(4815), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [171591] = 8, + [171734] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8503), 1, - anon_sym_QMARK, - STATE(4814), 1, + STATE(4812), 1, + aux_sym_object_type_repeat1, + STATE(4816), 1, sym_comment, - ACTIONS(8501), 2, + ACTIONS(8497), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8495), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [171617] = 6, + anon_sym_SEMI, + [171756] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, + ACTIONS(8219), 1, anon_sym_COLON, - STATE(4815), 1, + STATE(4817), 1, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7501), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(6510), 3, + STATE(6509), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [171639] = 9, + [171778] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7994), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8505), 1, sym_identifier, - STATE(4357), 1, - sym_nested_identifier, - STATE(4587), 1, - sym_string, - STATE(4816), 1, + STATE(4818), 1, sym_comment, - STATE(4851), 1, - sym__module, - [171667] = 9, + STATE(6035), 1, + sym__destructuring_pattern, + STATE(4155), 2, + sym_object_pattern, + sym_array_pattern, + [171804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8505), 1, - anon_sym_export, - ACTIONS(8507), 1, - anon_sym_class, - ACTIONS(8509), 1, - anon_sym_abstract, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(4817), 1, + STATE(4819), 1, sym_comment, - STATE(5596), 1, - sym_decorator, - [171695] = 9, + ACTIONS(8507), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171822] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, - ACTIONS(8511), 1, + ACTIONS(8509), 1, sym_identifier, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4818), 1, + STATE(4820), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6653), 1, + STATE(6917), 1, sym__call_signature, - [171723] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3461), 1, - sym_statement_block, - STATE(4819), 1, - sym_comment, - ACTIONS(7915), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171745] = 7, + [171850] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8516), 1, - anon_sym_BQUOTE, - ACTIONS(8518), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5570), 1, - sym_template_substitution, - ACTIONS(8513), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4820), 2, - sym_comment, - aux_sym_template_string_repeat1, - [171769] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7994), 1, - sym_identifier, - STATE(4357), 1, - sym_nested_identifier, - STATE(4587), 1, - sym_string, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8511), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4594), 1, + sym__call_signature, STATE(4821), 1, sym_comment, - STATE(4991), 1, - sym__module, - [171797] = 6, + STATE(6380), 1, + sym_type_parameters, + [171878] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8513), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4584), 1, + sym__call_signature, STATE(4822), 1, sym_comment, - ACTIONS(8523), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8521), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171819] = 6, + STATE(6380), 1, + sym_type_parameters, + [171906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, STATE(4823), 1, sym_comment, - ACTIONS(8527), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8525), 3, + ACTIONS(8515), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171841] = 9, + anon_sym_PIPE_RBRACE, + [171924] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(8529), 1, + ACTIONS(8517), 1, anon_sym_QMARK, - STATE(4128), 1, + STATE(4817), 1, sym_formal_parameters, STATE(4824), 1, sym_comment, - STATE(5196), 1, - sym__call_signature, - STATE(6358), 1, + STATE(6363), 1, sym_type_parameters, - [171869] = 4, + STATE(6558), 1, + sym__call_signature, + [171952] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4781), 1, + aux_sym_object_type_repeat1, STATE(4825), 1, sym_comment, - ACTIONS(8086), 6, + ACTIONS(8378), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8376), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [171887] = 6, + [171974] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4206), 1, + anon_sym_DQUOTE, + ACTIONS(4208), 1, + anon_sym_SQUOTE, + ACTIONS(8083), 1, + sym_identifier, + STATE(984), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_string, + STATE(1235), 1, + sym__module, + STATE(4826), 1, + sym_comment, + [172002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4720), 1, + STATE(4760), 1, aux_sym_object_type_repeat1, - STATE(4826), 1, + STATE(4827), 1, sym_comment, - ACTIONS(8523), 2, + ACTIONS(8521), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8521), 3, + ACTIONS(8519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171909] = 9, + [172024] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(8531), 1, + ACTIONS(8523), 1, anon_sym_QMARK, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4827), 1, + STATE(4556), 1, + sym__call_signature, + STATE(4828), 1, sym_comment, - STATE(6346), 1, + STATE(6380), 1, sym_type_parameters, - STATE(6412), 1, - sym__call_signature, - [171937] = 9, + [172052] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(7254), 1, anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(8533), 1, - anon_sym_COMMA, - ACTIONS(8535), 1, - anon_sym_GT, - STATE(4380), 1, - sym_arguments, - STATE(4828), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8525), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4601), 1, + sym__call_signature, + STATE(4829), 1, sym_comment, - STATE(5820), 1, - aux_sym_type_arguments_repeat1, - [171965] = 9, + STATE(6380), 1, + sym_type_parameters, + [172080] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8537), 1, - anon_sym_COMMA, - ACTIONS(8539), 1, - anon_sym_GT, - STATE(4829), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + ACTIONS(8527), 1, + anon_sym_QMARK, + STATE(4817), 1, + sym_formal_parameters, + STATE(4830), 1, sym_comment, - STATE(5824), 1, - aux_sym_type_arguments_repeat1, - [171993] = 5, + STATE(6363), 1, + sym_type_parameters, + STATE(6451), 1, + sym__call_signature, + [172108] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8541), 1, + ACTIONS(8529), 1, sym_identifier, - STATE(4830), 1, + STATE(4831), 1, sym_comment, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172013] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8543), 1, - anon_sym_RBRACE, - STATE(4831), 1, - sym_comment, - STATE(4845), 1, - aux_sym_switch_body_repeat1, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [172039] = 9, + [172128] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(8545), 1, - anon_sym_QMARK, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8531), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_GT, STATE(4832), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6399), 1, - sym__call_signature, - [172067] = 8, + STATE(5830), 1, + aux_sym_type_arguments_repeat1, + [172156] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8216), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8547), 1, - anon_sym_BQUOTE, - STATE(4676), 1, - aux_sym_template_string_repeat1, + STATE(4812), 1, + aux_sym_object_type_repeat1, STATE(4833), 1, sym_comment, - STATE(5570), 1, - sym_template_substitution, - ACTIONS(7871), 2, - sym__template_chars, - sym_escape_sequence, - [172093] = 4, + ACTIONS(8537), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8535), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4834), 1, sym_comment, - ACTIONS(7881), 6, + ACTIONS(8539), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - [172111] = 6, + anon_sym_PIPE_RBRACE, + [172196] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3513), 1, - sym_statement_block, + ACTIONS(8173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8541), 1, + anon_sym_BQUOTE, + STATE(4659), 1, + aux_sym_template_string_repeat1, STATE(4835), 1, sym_comment, - ACTIONS(8034), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172133] = 9, + STATE(5573), 1, + sym_template_substitution, + ACTIONS(7857), 2, + sym__template_chars, + sym_escape_sequence, + [172222] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(8549), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_formal_parameters, - STATE(4677), 1, - sym__call_signature, + ACTIONS(7757), 1, + anon_sym_DOT, + ACTIONS(8543), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_GT, + STATE(4367), 1, + sym_arguments, STATE(4836), 1, sym_comment, - STATE(6464), 1, - sym_type_parameters, - [172161] = 6, + STATE(5826), 1, + aux_sym_type_arguments_repeat1, + [172250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4837), 1, sym_comment, - STATE(4838), 1, - aux_sym_object_type_repeat1, - ACTIONS(8553), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8551), 3, + ACTIONS(7993), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [172183] = 6, + anon_sym_COLON, + [172268] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4757), 1, - aux_sym_object_type_repeat1, + ACTIONS(8547), 1, + anon_sym_DOT, STATE(4838), 1, sym_comment, - ACTIONS(8557), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8555), 3, + ACTIONS(7887), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [172205] = 5, + [172288] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(8551), 1, + anon_sym_QMARK, + STATE(4839), 1, + sym_comment, + ACTIONS(8549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [172314] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8559), 1, + ACTIONS(8553), 1, sym_identifier, - STATE(4839), 1, + STATE(4840), 1, sym_comment, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172225] = 5, + [172334] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8561), 1, + ACTIONS(8555), 1, sym_identifier, - STATE(4840), 1, + STATE(4841), 1, sym_comment, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172245] = 5, + [172354] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8557), 1, + anon_sym_export, + ACTIONS(8559), 1, + anon_sym_class, + ACTIONS(8561), 1, + anon_sym_abstract, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(4842), 1, + sym_comment, + STATE(5599), 1, + sym_decorator, + [172382] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(8563), 1, sym_identifier, - STATE(4841), 1, + STATE(4843), 1, sym_comment, - ACTIONS(7104), 5, + ACTIONS(7106), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172265] = 9, + [172402] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7929), 1, + ACTIONS(7923), 1, anon_sym_LPAREN, ACTIONS(8565), 1, sym_identifier, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4842), 1, + STATE(4844), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6901), 1, + STATE(6666), 1, sym__call_signature, - [172293] = 6, + [172430] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4786), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(8567), 1, + anon_sym_QMARK, + STATE(4119), 1, + sym_formal_parameters, + STATE(4478), 1, + sym__call_signature, + STATE(4845), 1, + sym_comment, + STATE(6380), 1, + sym_type_parameters, + [172458] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4812), 1, aux_sym_object_type_repeat1, - STATE(4843), 1, + STATE(4846), 1, sym_comment, - ACTIONS(8557), 2, + ACTIONS(8571), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8555), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172315] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - ACTIONS(8326), 1, - anon_sym_LBRACK, - ACTIONS(8567), 1, - sym_identifier, - STATE(4844), 1, - sym_comment, - STATE(6037), 1, - sym__destructuring_pattern, - STATE(4286), 2, - sym_object_pattern, - sym_array_pattern, - [172341] = 8, + [172480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8149), 1, - anon_sym_default, - ACTIONS(8153), 1, - anon_sym_case, - ACTIONS(8569), 1, - anon_sym_RBRACE, - STATE(4808), 1, - aux_sym_switch_body_repeat1, - STATE(4845), 1, + STATE(4847), 1, sym_comment, - STATE(5904), 2, - sym_switch_case, - sym_switch_default, - [172367] = 6, + ACTIONS(6446), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [172498] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4846), 1, + STATE(4848), 1, sym_comment, STATE(6287), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172388] = 8, + [172519] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4847), 1, + STATE(4849), 1, sym_comment, - STATE(5069), 1, + STATE(5073), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [172413] = 7, + [172544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, - STATE(4848), 1, + STATE(4850), 1, sym_comment, - ACTIONS(8573), 2, + ACTIONS(2296), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172436] = 6, + anon_sym_PIPE_RBRACE, + [172561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4849), 1, + STATE(4851), 1, sym_comment, - STATE(6199), 1, - sym__initializer, - ACTIONS(8577), 3, + ACTIONS(2312), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172457] = 4, + anon_sym_PIPE_RBRACE, + [172578] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4850), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8470), 1, + anon_sym_abstract, + ACTIONS(8575), 1, + anon_sym_class, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(4852), 1, sym_comment, - ACTIONS(2180), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172474] = 4, + STATE(5599), 1, + sym_decorator, + [172603] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4851), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8503), 1, + anon_sym_abstract, + ACTIONS(8577), 1, + anon_sym_class, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(4853), 1, + sym_comment, + STATE(5599), 1, + sym_decorator, + [172628] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5455), 1, + anon_sym_in, + STATE(4854), 1, + sym_comment, + ACTIONS(6383), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [172647] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4855), 1, sym_comment, - ACTIONS(2198), 5, + STATE(6210), 1, + sym__initializer, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172491] = 8, + [172668] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8579), 1, - anon_sym_LBRACE, - ACTIONS(8581), 1, - anon_sym_SEMI, - ACTIONS(8583), 1, - sym__automatic_semicolon, - ACTIONS(8585), 1, - sym__function_signature_automatic_semicolon, - STATE(1174), 1, - sym_statement_block, - STATE(4852), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4856), 1, sym_comment, - [172516] = 7, + STATE(6204), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172689] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(4853), 1, + STATE(4857), 1, sym_comment, - ACTIONS(8587), 2, + ACTIONS(8581), 2, sym__automatic_semicolon, anon_sym_SEMI, - [172539] = 8, + [172712] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4705), 1, + STATE(4706), 1, sym__call_signature, - STATE(4854), 1, + STATE(4858), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [172564] = 8, + [172737] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8383), 1, - anon_sym_abstract, - ACTIONS(8589), 1, - anon_sym_class, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(4855), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, + STATE(4859), 1, sym_comment, - STATE(5596), 1, - sym_decorator, - [172589] = 6, + ACTIONS(8585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [172760] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4856), 1, + STATE(4860), 1, sym_comment, - STATE(6197), 1, + STATE(6203), 1, sym__initializer, - ACTIONS(8591), 3, + ACTIONS(8587), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172610] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8499), 1, - anon_sym_abstract, - ACTIONS(8593), 1, - anon_sym_class, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(4857), 1, - sym_comment, - STATE(5596), 1, - sym_decorator, - [172635] = 4, + [172781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4858), 1, + STATE(4861), 1, sym_comment, - ACTIONS(8595), 5, + ACTIONS(8589), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172652] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5456), 1, - anon_sym_in, - STATE(4859), 1, - sym_comment, - ACTIONS(6639), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [172671] = 8, + [172798] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8171), 1, + ACTIONS(8561), 1, anon_sym_abstract, - ACTIONS(8597), 1, + ACTIONS(8591), 1, anon_sym_class, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(4860), 1, + STATE(4862), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [172696] = 4, + [172823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4861), 1, + STATE(4863), 1, sym_comment, - ACTIONS(8599), 5, + ACTIONS(8593), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172713] = 4, + [172840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4862), 1, + STATE(4864), 1, sym_comment, - ACTIONS(8601), 5, + ACTIONS(8595), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172730] = 6, + [172857] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2168), 1, + ACTIONS(2252), 1, anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(5324), 1, anon_sym_LBRACE, - STATE(4863), 1, + STATE(4865), 1, sym_comment, - ACTIONS(5173), 3, + ACTIONS(5326), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [172751] = 6, + [172878] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2174), 1, + ACTIONS(2154), 1, anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(5324), 1, anon_sym_LBRACE, - STATE(4864), 1, + STATE(4866), 1, sym_comment, - ACTIONS(5173), 3, + ACTIONS(5326), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [172772] = 4, + [172899] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4865), 1, + ACTIONS(8597), 1, + anon_sym_EQ, + ACTIONS(8599), 1, + anon_sym_COMMA, + ACTIONS(8601), 1, + anon_sym_RBRACE, + STATE(4867), 1, + sym_comment, + STATE(5630), 1, + aux_sym_enum_body_repeat1, + STATE(6678), 1, + sym__initializer, + [172924] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4868), 1, sym_comment, ACTIONS(8603), 5, sym__automatic_semicolon, @@ -353537,212 +353681,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172789] = 4, + [172941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4866), 1, + STATE(4869), 1, sym_comment, - ACTIONS(8096), 5, + ACTIONS(8087), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172806] = 4, + [172958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4867), 1, + STATE(4870), 1, sym_comment, - ACTIONS(8098), 5, + ACTIONS(8089), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172823] = 8, + [172975] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, - anon_sym_EQ, - ACTIONS(8607), 1, + STATE(4871), 1, + sym_comment, + ACTIONS(3603), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8609), 1, anon_sym_RBRACE, - STATE(4868), 1, - sym_comment, - STATE(5624), 1, - aux_sym_enum_body_repeat1, - STATE(6674), 1, - sym__initializer, - [172848] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172992] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(4869), 1, + STATE(4872), 1, sym_comment, - STATE(5321), 1, + STATE(5322), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [172873] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4870), 1, - sym_comment, - ACTIONS(3589), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172890] = 4, + [173017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4871), 1, + STATE(4873), 1, sym_comment, - ACTIONS(3591), 5, + ACTIONS(3605), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172907] = 4, + [173034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4872), 1, + STATE(4874), 1, sym_comment, - ACTIONS(8096), 5, + ACTIONS(8087), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172924] = 7, + [173051] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(8611), 1, + ACTIONS(8605), 1, anon_sym_DOT, - STATE(4873), 1, + STATE(4875), 1, sym_comment, - STATE(6382), 1, + STATE(6408), 1, sym_statement_block, - ACTIONS(2130), 2, + ACTIONS(2128), 2, anon_sym_else, anon_sym_while, - [172947] = 4, + [173074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4874), 1, + STATE(4876), 1, sym_comment, - ACTIONS(3631), 5, + ACTIONS(3645), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172964] = 4, + [173091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4875), 1, + STATE(4877), 1, sym_comment, - ACTIONS(3633), 5, + ACTIONS(3647), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172981] = 6, + [173108] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4876), 1, + STATE(4878), 1, sym_comment, - STATE(6168), 1, + STATE(6169), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173002] = 6, + [173129] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4877), 1, + STATE(4879), 1, sym_comment, - STATE(6163), 1, + STATE(6157), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173023] = 7, + [173150] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(8615), 1, + ACTIONS(8609), 1, anon_sym_DOT, - STATE(4878), 1, + STATE(4880), 1, sym_comment, - STATE(6382), 1, + STATE(6408), 1, sym_statement_block, - ACTIONS(2130), 2, + ACTIONS(2128), 2, anon_sym_else, anon_sym_while, - [173046] = 4, + [173173] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4879), 1, + STATE(4881), 1, sym_comment, - ACTIONS(3545), 5, + ACTIONS(2364), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173063] = 4, + [173190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4880), 1, + STATE(4882), 1, sym_comment, ACTIONS(3473), 5, sym__automatic_semicolon, @@ -353750,55 +353877,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173080] = 6, + [173207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4881), 1, + STATE(4883), 1, sym_comment, - STATE(6151), 1, - sym__initializer, - ACTIONS(8613), 3, + ACTIONS(3483), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173101] = 4, + anon_sym_PIPE_RBRACE, + [173224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4882), 1, + STATE(4884), 1, sym_comment, - ACTIONS(3645), 5, + ACTIONS(3465), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173118] = 6, + [173241] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4883), 1, + STATE(4885), 1, sym_comment, - STATE(6207), 1, + STATE(6152), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173139] = 4, + [173262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4884), 1, + STATE(4886), 1, sym_comment, ACTIONS(3467), 5, sym__automatic_semicolon, @@ -353806,181 +353931,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173156] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8617), 1, - anon_sym_class, - ACTIONS(8619), 1, - anon_sym_abstract, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(4885), 1, - sym_comment, - STATE(5596), 1, - sym_decorator, - [173181] = 5, + [173279] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8621), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4886), 1, - sym_comment, - ACTIONS(4369), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173200] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(4887), 1, sym_comment, - ACTIONS(6245), 5, - anon_sym_EQ, + STATE(6151), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [173217] = 6, + anon_sym_SEMI, + [173300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, STATE(4888), 1, sym_comment, - STATE(6146), 1, - sym__initializer, - ACTIONS(8613), 3, + ACTIONS(3469), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173238] = 6, + anon_sym_PIPE_RBRACE, + [173317] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8611), 1, + anon_sym_class, + ACTIONS(8613), 1, + anon_sym_abstract, + STATE(4678), 1, + aux_sym_export_statement_repeat1, STATE(4889), 1, sym_comment, - STATE(6142), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173259] = 4, + STATE(5599), 1, + sym_decorator, + [173342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8615), 1, + anon_sym_EQ, STATE(4890), 1, sym_comment, - ACTIONS(3469), 5, - sym__automatic_semicolon, + ACTIONS(4370), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173276] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4891), 1, sym_comment, - ACTIONS(3471), 5, - sym__automatic_semicolon, + ACTIONS(6229), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173293] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173378] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(4892), 1, sym_comment, - STATE(6140), 1, + STATE(6148), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173314] = 6, + [173399] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(4893), 1, sym_comment, - STATE(6132), 1, + STATE(6211), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173335] = 4, + [173420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4894), 1, sym_comment, - ACTIONS(2398), 5, + ACTIONS(2332), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173352] = 4, + [173437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(4895), 1, sym_comment, - ACTIONS(3479), 5, + ACTIONS(3477), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173369] = 4, + [173454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(4896), 1, sym_comment, - ACTIONS(3481), 5, + STATE(6143), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173475] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4897), 1, + sym_comment, + STATE(6228), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173496] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4898), 1, + sym_comment, + ACTIONS(3479), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173386] = 4, + [173513] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4897), 1, + STATE(4899), 1, sym_comment, ACTIONS(3487), 5, sym__automatic_semicolon, @@ -353988,266 +354115,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173403] = 8, + [173530] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4900), 1, + sym_comment, + ACTIONS(3489), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173547] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4901), 1, + sym_comment, + ACTIONS(3491), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173564] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8509), 1, + ACTIONS(8225), 1, anon_sym_abstract, - ACTIONS(8626), 1, + ACTIONS(8618), 1, anon_sym_class, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(4898), 1, + STATE(4902), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [173428] = 4, + [173589] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4899), 1, + STATE(4903), 1, sym_comment, - ACTIONS(3489), 5, + ACTIONS(3493), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173445] = 6, + [173606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4900), 1, + STATE(4904), 1, sym_comment, - STATE(6208), 1, + STATE(6138), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173466] = 4, + [173627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4901), 1, + STATE(4905), 1, sym_comment, - ACTIONS(3491), 5, + ACTIONS(3495), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173483] = 4, + [173644] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4902), 1, + STATE(4906), 1, sym_comment, - ACTIONS(3493), 5, + ACTIONS(3497), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173500] = 4, + [173661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4903), 1, + STATE(4907), 1, sym_comment, - ACTIONS(3495), 5, + ACTIONS(3499), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173517] = 4, + [173678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4904), 1, + STATE(4908), 1, sym_comment, - ACTIONS(3497), 5, + ACTIONS(3507), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173534] = 4, + [173695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4905), 1, + STATE(4909), 1, sym_comment, - ACTIONS(3499), 5, + ACTIONS(2344), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173551] = 4, + [173712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4906), 1, + STATE(4910), 1, sym_comment, - ACTIONS(3509), 5, + ACTIONS(2348), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173568] = 6, + [173729] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4907), 1, + STATE(4911), 1, sym_comment, - STATE(5997), 1, + STATE(6127), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173589] = 6, + [173750] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(4912), 1, sym_comment, - STATE(6121), 1, + STATE(6117), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173610] = 4, + [173771] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4909), 1, + STATE(4913), 1, sym_comment, - ACTIONS(2380), 5, + ACTIONS(2358), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173627] = 8, + [173788] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4910), 1, + STATE(4914), 1, sym_comment, - STATE(5008), 1, + STATE(5010), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [173652] = 8, + [173813] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8628), 1, + ACTIONS(8622), 1, anon_sym_BQUOTE, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - STATE(4911), 1, + STATE(4915), 1, sym_comment, - STATE(5015), 1, + STATE(5016), 1, aux_sym_template_literal_type_repeat1, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [173677] = 6, + [173838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4912), 1, + STATE(4916), 1, sym_comment, - STATE(6111), 1, + STATE(6115), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173698] = 4, + [173859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4913), 1, + STATE(4917), 1, sym_comment, - ACTIONS(2376), 5, + ACTIONS(3509), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173715] = 4, + [173876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4914), 1, + STATE(4918), 1, sym_comment, - ACTIONS(2362), 5, + ACTIONS(3513), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173732] = 4, + [173893] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4915), 1, + STATE(4919), 1, sym_comment, - ACTIONS(3511), 5, + ACTIONS(3513), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173749] = 4, + [173910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4916), 1, + STATE(4920), 1, sym_comment, ACTIONS(3515), 5, sym__automatic_semicolon, @@ -354255,40 +354408,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173766] = 6, + [173927] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4917), 1, + STATE(4921), 1, sym_comment, - STATE(6217), 1, + STATE(6101), 1, sym__initializer, - ACTIONS(8634), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173787] = 4, + [173948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4918), 1, + STATE(4922), 1, sym_comment, - ACTIONS(3515), 5, + ACTIONS(3517), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173804] = 4, + [173965] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4919), 1, + STATE(4923), 1, sym_comment, ACTIONS(3519), 5, sym__automatic_semicolon, @@ -354296,64 +354449,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173821] = 4, + [173982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4920), 1, + STATE(4924), 1, sym_comment, - ACTIONS(3521), 5, + ACTIONS(3523), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173838] = 4, + [173999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4921), 1, + STATE(4925), 1, sym_comment, - ACTIONS(3523), 5, + ACTIONS(3525), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173855] = 4, + [174016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4922), 1, + STATE(4926), 1, sym_comment, - ACTIONS(3525), 5, + ACTIONS(3527), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173872] = 4, + [174033] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4923), 1, + STATE(4927), 1, sym_comment, - ACTIONS(3527), 5, + ACTIONS(3529), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173889] = 4, + [174050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4924), 1, + STATE(4928), 1, sym_comment, ACTIONS(3529), 5, sym__automatic_semicolon, @@ -354361,363 +354514,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173906] = 4, + [174067] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4925), 1, + STATE(4929), 1, sym_comment, - ACTIONS(3531), 5, + ACTIONS(3529), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173923] = 4, + [174084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4926), 1, + STATE(4930), 1, sym_comment, - ACTIONS(3531), 5, + ACTIONS(3545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173940] = 4, + [174101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4927), 1, + STATE(4931), 1, sym_comment, - ACTIONS(3531), 5, + ACTIONS(3555), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173957] = 4, + [174118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4928), 1, + STATE(4932), 1, sym_comment, - ACTIONS(3613), 5, + ACTIONS(3627), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173974] = 4, + [174135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4929), 1, + STATE(4933), 1, sym_comment, - ACTIONS(3551), 5, + ACTIONS(2376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173991] = 4, + [174152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4930), 1, + STATE(4934), 1, sym_comment, - ACTIONS(2358), 5, + ACTIONS(2380), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174008] = 4, + [174169] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4931), 1, + STATE(4935), 1, sym_comment, - ACTIONS(2348), 5, + ACTIONS(3559), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174025] = 4, + [174186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4932), 1, + STATE(4936), 1, sym_comment, - ACTIONS(2344), 5, + ACTIONS(3561), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174042] = 6, + [174203] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4933), 1, + STATE(4937), 1, sym_comment, STATE(6096), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174063] = 6, + [174224] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4934), 1, + STATE(4938), 1, sym_comment, - STATE(6095), 1, + STATE(6094), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174084] = 4, + [174245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4935), 1, + STATE(4939), 1, sym_comment, - ACTIONS(3553), 5, + ACTIONS(3561), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174101] = 6, + [174262] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4936), 1, + STATE(4940), 1, sym_comment, - STATE(6084), 1, + STATE(6061), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174122] = 6, + [174283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4937), 1, + STATE(4941), 1, sym_comment, - STATE(6053), 1, + STATE(6214), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174143] = 4, + [174304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4938), 1, + STATE(4942), 1, sym_comment, - ACTIONS(3555), 5, + ACTIONS(3567), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174160] = 4, + [174321] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4939), 1, + STATE(4943), 1, sym_comment, - ACTIONS(3555), 5, + ACTIONS(3571), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174177] = 4, + [174338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4940), 1, + STATE(4944), 1, sym_comment, - ACTIONS(3557), 5, + ACTIONS(3573), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174194] = 4, + [174355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4941), 1, + STATE(4945), 1, sym_comment, - ACTIONS(3561), 5, + ACTIONS(3575), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174211] = 4, + [174372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4942), 1, + STATE(4946), 1, sym_comment, - ACTIONS(3563), 5, + ACTIONS(3577), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174228] = 6, + [174389] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4943), 1, + STATE(4947), 1, sym_comment, - STATE(6033), 1, + STATE(6037), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174249] = 6, + [174410] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4944), 1, + STATE(4948), 1, sym_comment, - STATE(6025), 1, + STATE(6221), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174270] = 4, + [174431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4945), 1, + STATE(4949), 1, sym_comment, - ACTIONS(3565), 5, + ACTIONS(3583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174287] = 4, + [174448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4946), 1, + STATE(4950), 1, sym_comment, - ACTIONS(3567), 5, + ACTIONS(3583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174304] = 6, + [174465] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4947), 1, + STATE(4951), 1, sym_comment, - STATE(6023), 1, + STATE(6236), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174325] = 6, + [174486] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4948), 1, + STATE(4952), 1, sym_comment, - STATE(6219), 1, + STATE(6031), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174346] = 4, + [174507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4949), 1, + STATE(4953), 1, sym_comment, - ACTIONS(3569), 5, + ACTIONS(3583), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174363] = 6, + [174524] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4950), 1, - sym_comment, - STATE(6220), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, anon_sym_SEMI, - [174384] = 8, + ACTIONS(8634), 1, + sym__automatic_semicolon, + ACTIONS(8636), 1, + sym__function_signature_automatic_semicolon, + STATE(357), 1, + sym_statement_block, + STATE(4954), 1, + sym_comment, + [174549] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -354726,88 +354881,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(8636), 1, + ACTIONS(8638), 1, sym_identifier, - STATE(4951), 1, + STATE(4955), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(7054), 1, + STATE(7058), 1, sym__module_export_name, - [174409] = 4, + [174574] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4952), 1, + STATE(4956), 1, sym_comment, - ACTIONS(3569), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174426] = 8, + [174591] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8497), 1, + ACTIONS(8501), 1, anon_sym_class, - ACTIONS(8499), 1, + ACTIONS(8503), 1, anon_sym_abstract, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(4953), 1, + STATE(4957), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [174451] = 8, + [174616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8581), 1, - anon_sym_SEMI, - ACTIONS(8583), 1, - sym__automatic_semicolon, - ACTIONS(8585), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(363), 1, - sym_statement_block, - STATE(4954), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4958), 1, sym_comment, - [174476] = 4, + STATE(6243), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4955), 1, + STATE(4959), 1, sym_comment, - ACTIONS(3569), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174493] = 4, + [174654] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4956), 1, + STATE(4960), 1, sym_comment, - ACTIONS(3587), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174510] = 8, + [174671] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -354816,1057 +354969,1016 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(8636), 1, + ACTIONS(8638), 1, sym_identifier, - STATE(4957), 1, + STATE(4961), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(5892), 1, + STATE(5832), 1, sym__module_export_name, - [174535] = 6, + [174696] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4958), 1, + STATE(4962), 1, sym_comment, - STATE(5998), 1, + STATE(6005), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174556] = 4, + [174717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4959), 1, + STATE(4963), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174573] = 8, + [174734] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4960), 1, + STATE(4964), 1, sym_comment, - STATE(5031), 1, + STATE(5033), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [174598] = 4, + [174759] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4961), 1, + STATE(4965), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174615] = 6, + [174776] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4962), 1, + STATE(4966), 1, sym_comment, - STATE(6238), 1, + STATE(6004), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174636] = 4, + [174797] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4963), 1, + STATE(4967), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(2400), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174653] = 4, + [174814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4964), 1, + STATE(4968), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3617), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174670] = 6, + [174831] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4965), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, + STATE(4969), 1, sym_comment, - STATE(5996), 1, - sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8640), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174691] = 6, + [174854] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(4970), 1, sym_comment, - STATE(5989), 1, + STATE(6002), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174712] = 6, + [174875] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4967), 1, - sym_comment, - STATE(5983), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8642), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, anon_sym_SEMI, - [174733] = 5, + ACTIONS(8646), 1, + sym__automatic_semicolon, + ACTIONS(8648), 1, + sym__function_signature_automatic_semicolon, + STATE(1151), 1, + sym_statement_block, + STATE(4971), 1, + sym_comment, + [174900] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8640), 1, + ACTIONS(8650), 1, anon_sym_EQ, - STATE(4968), 1, + STATE(4972), 1, sym_comment, - ACTIONS(4391), 4, + ACTIONS(4348), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [174752] = 8, + [174919] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(4969), 1, + STATE(4973), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6836), 1, + STATE(6839), 1, sym__call_signature, - [174777] = 7, + [174944] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, - STATE(4970), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4974), 1, sym_comment, - ACTIONS(8642), 2, + STATE(6247), 1, + sym__initializer, + ACTIONS(8579), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [174800] = 6, + [174965] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4971), 1, + STATE(4975), 1, sym_comment, - STATE(5982), 1, + STATE(5990), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174821] = 4, + [174986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4972), 1, + STATE(4976), 1, sym_comment, - ACTIONS(2428), 5, + ACTIONS(3619), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174838] = 4, + [175003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4973), 1, + STATE(4977), 1, sym_comment, - ACTIONS(3603), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174855] = 8, + [175020] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(4974), 1, + STATE(4978), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6848), 1, + STATE(6853), 1, sym__call_signature, - [174880] = 4, + [175045] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4975), 1, + STATE(4979), 1, sym_comment, - ACTIONS(3605), 5, + ACTIONS(3615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174897] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8579), 1, - anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_SEMI, - ACTIONS(8646), 1, - sym__automatic_semicolon, - ACTIONS(8648), 1, - sym__function_signature_automatic_semicolon, - STATE(1139), 1, - sym_statement_block, - STATE(4976), 1, - sym_comment, - [174922] = 6, + [175062] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4977), 1, + STATE(4980), 1, sym_comment, - STATE(6244), 1, + STATE(5989), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174943] = 8, + [175083] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - ACTIONS(8650), 1, + ACTIONS(8652), 1, anon_sym_BQUOTE, - STATE(4978), 1, + STATE(4981), 1, sym_comment, - STATE(5013), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [174968] = 8, + [175108] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4640), 1, - anon_sym_COLON, ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(8652), 1, + STATE(4982), 1, + sym_comment, + STATE(6250), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [175129] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4642), 1, + anon_sym_COLON, + ACTIONS(7252), 1, + anon_sym_EQ, ACTIONS(8654), 1, + anon_sym_COMMA, + ACTIONS(8656), 1, anon_sym_RBRACE, - STATE(4979), 1, + STATE(4983), 1, sym_comment, - STATE(5840), 1, + STATE(5845), 1, aux_sym_object_pattern_repeat1, - [174993] = 6, + [175154] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4980), 1, + STATE(4984), 1, sym_comment, - STATE(5890), 1, + STATE(5885), 1, sym__initializer, - ACTIONS(8656), 3, + ACTIONS(8658), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175014] = 4, + [175175] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4981), 1, + STATE(4985), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3621), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175031] = 4, + [175192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4982), 1, + STATE(4986), 1, sym_comment, - ACTIONS(3601), 5, + ACTIONS(3623), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175048] = 4, + [175209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4983), 1, + STATE(4987), 1, sym_comment, - ACTIONS(3607), 5, + ACTIONS(3625), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175065] = 4, + [175226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4984), 1, + STATE(4988), 1, sym_comment, - ACTIONS(3609), 5, + ACTIONS(2428), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175082] = 4, + [175243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4985), 1, + STATE(4989), 1, sym_comment, - ACTIONS(3611), 5, + ACTIONS(3655), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175099] = 4, + [175260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4986), 1, + STATE(4990), 1, sym_comment, - ACTIONS(3663), 5, + ACTIONS(3659), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175116] = 4, + [175277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4987), 1, + STATE(4991), 1, sym_comment, - ACTIONS(3643), 5, + ACTIONS(3665), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175133] = 4, + [175294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4988), 1, + STATE(4992), 1, sym_comment, - ACTIONS(3649), 5, + ACTIONS(3667), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175150] = 6, + [175311] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4989), 1, + STATE(4993), 1, sym_comment, - STATE(5669), 1, + STATE(5977), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175171] = 6, + [175332] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4990), 1, + STATE(4994), 1, sym_comment, - STATE(5602), 1, + STATE(5942), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175192] = 4, + [175353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4991), 1, - sym_comment, - ACTIONS(3667), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175209] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4992), 1, + STATE(4995), 1, sym_comment, - ACTIONS(3669), 5, + ACTIONS(2428), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175226] = 4, + [175370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4993), 1, + STATE(4996), 1, sym_comment, - ACTIONS(2324), 5, + ACTIONS(3581), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175243] = 6, + [175387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4994), 1, + STATE(4997), 1, sym_comment, - STATE(5888), 1, + STATE(5921), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [175264] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, - sym__template_chars, - ACTIONS(8658), 1, - anon_sym_BQUOTE, - STATE(4995), 1, - sym_comment, - STATE(5084), 1, - aux_sym_template_literal_type_repeat1, - STATE(5790), 1, - sym_template_type, - [175289] = 5, + anon_sym_SEMI, + [175408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8660), 1, anon_sym_COMMA, - STATE(4996), 2, + STATE(4998), 2, sym_comment, aux_sym_sequence_expression_repeat1, - ACTIONS(5603), 3, + ACTIONS(5668), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [175308] = 6, + [175427] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(4997), 1, + ACTIONS(8624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8626), 1, + sym__template_chars, + ACTIONS(8663), 1, + anon_sym_BQUOTE, + STATE(4999), 1, sym_comment, - STATE(6247), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175329] = 4, + STATE(5088), 1, + aux_sym_template_literal_type_repeat1, + STATE(5792), 1, + sym_template_type, + [175452] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4998), 1, + ACTIONS(7941), 1, + anon_sym_extends, + ACTIONS(8097), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_LBRACE_PIPE, + STATE(1346), 1, + sym_object_type, + STATE(5000), 1, + sym_comment, + STATE(5664), 1, + sym_extends_type_clause, + [175477] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5001), 1, sym_comment, - ACTIONS(6270), 5, + ACTIONS(6589), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [175346] = 6, + [175494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5880), 1, + ACTIONS(5886), 1, anon_sym_COMMA, - STATE(4996), 1, + STATE(4998), 1, aux_sym_sequence_expression_repeat1, - STATE(4999), 1, + STATE(5002), 1, sym_comment, - ACTIONS(8663), 3, + ACTIONS(8665), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [175367] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5000), 1, - sym_comment, - ACTIONS(2324), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175384] = 8, + [175515] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8012), 1, - anon_sym_LBRACE, - ACTIONS(8014), 1, - anon_sym_LBRACE_PIPE, - STATE(1347), 1, - sym_object_type, - STATE(5001), 1, - sym_comment, - STATE(5663), 1, - sym_extends_type_clause, - [175409] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(5003), 1, sym_comment, - STATE(6249), 1, + STATE(6251), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175430] = 6, + [175536] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5003), 1, + STATE(5004), 1, sym_comment, - STATE(5877), 1, + STATE(5887), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175451] = 8, + [175557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - ACTIONS(8665), 1, - anon_sym_SEMI, ACTIONS(8667), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8669), 1, + sym__automatic_semicolon, + ACTIONS(8671), 1, sym__function_signature_automatic_semicolon, - STATE(3138), 1, + STATE(3121), 1, sym_statement_block, - STATE(5004), 1, + STATE(5005), 1, sym_comment, - [175476] = 6, + [175582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5005), 1, + STATE(5006), 1, sym_comment, - STATE(5874), 1, + STATE(6253), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175497] = 8, + [175603] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5007), 1, + sym_comment, + STATE(5883), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175624] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5006), 1, + STATE(5008), 1, sym_comment, - STATE(5077), 1, + STATE(5081), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [175522] = 8, + [175649] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5007), 1, + STATE(5009), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6904), 1, + STATE(6907), 1, sym__call_signature, - [175547] = 8, + [175674] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, - anon_sym_LBRACE, ACTIONS(8673), 1, - anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(8675), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8677), 1, + sym__automatic_semicolon, + ACTIONS(8679), 1, sym__function_signature_automatic_semicolon, - STATE(437), 1, + STATE(407), 1, sym_statement_block, - STATE(5008), 1, + STATE(5010), 1, sym_comment, - [175572] = 4, + [175699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5009), 1, + STATE(5011), 1, sym_comment, - ACTIONS(8679), 5, + ACTIONS(8681), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175589] = 6, + [175716] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5010), 1, + STATE(5012), 1, sym_comment, - STATE(5742), 1, + STATE(5748), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175610] = 6, + [175737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5011), 1, + STATE(5013), 1, sym_comment, - STATE(5867), 1, + STATE(5873), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175631] = 4, + [175758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5012), 1, + STATE(5014), 1, sym_comment, - ACTIONS(6143), 5, + ACTIONS(6221), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [175648] = 8, + [175775] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - ACTIONS(8681), 1, + ACTIONS(8683), 1, anon_sym_BQUOTE, - STATE(5013), 1, + STATE(5015), 1, sym_comment, - STATE(5102), 1, + STATE(5104), 1, aux_sym_template_literal_type_repeat1, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [175673] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5014), 1, - sym_comment, - STATE(6034), 1, - sym__initializer, - ACTIONS(8624), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175694] = 8, + [175800] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - ACTIONS(8683), 1, + ACTIONS(8685), 1, anon_sym_BQUOTE, - STATE(5015), 1, + STATE(5016), 1, sym_comment, - STATE(5102), 1, + STATE(5104), 1, aux_sym_template_literal_type_repeat1, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [175719] = 8, + [175825] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5017), 1, + sym_comment, + STATE(5860), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175846] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1379), 1, anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8002), 1, + ACTIONS(7943), 1, anon_sym_LBRACE_PIPE, - STATE(4942), 1, + STATE(4944), 1, sym_object_type, - STATE(5016), 1, + STATE(5018), 1, sym_comment, - STATE(5880), 1, + STATE(5886), 1, sym_extends_type_clause, - [175744] = 6, + [175871] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(5019), 1, sym_comment, - STATE(5821), 1, + STATE(5835), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175765] = 6, + [175892] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5018), 1, + STATE(5020), 1, sym_comment, - STATE(5810), 1, + STATE(5817), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175786] = 6, + [175913] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5019), 1, + STATE(5021), 1, sym_comment, - STATE(5805), 1, + STATE(5794), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175807] = 4, + [175934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5020), 1, + STATE(5022), 1, sym_comment, - ACTIONS(8685), 5, + ACTIONS(8687), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [175824] = 8, + [175951] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - ACTIONS(8665), 1, - anon_sym_SEMI, - ACTIONS(8667), 1, - sym__automatic_semicolon, - ACTIONS(8669), 1, - sym__function_signature_automatic_semicolon, - STATE(5021), 1, + ACTIONS(8624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8626), 1, + sym__template_chars, + ACTIONS(8689), 1, + anon_sym_BQUOTE, + STATE(5023), 1, sym_comment, - STATE(5334), 1, - sym_statement_block, - [175849] = 7, + STATE(5104), 1, + aux_sym_template_literal_type_repeat1, + STATE(5792), 1, + sym_template_type, + [175976] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, - STATE(5022), 1, - sym_comment, - ACTIONS(8687), 2, - sym__automatic_semicolon, + ACTIONS(7905), 1, + anon_sym_LBRACE, + ACTIONS(8667), 1, anon_sym_SEMI, - [175872] = 8, + ACTIONS(8669), 1, + sym__automatic_semicolon, + ACTIONS(8671), 1, + sym__function_signature_automatic_semicolon, + STATE(5024), 1, + sym_comment, + STATE(5339), 1, + sym_statement_block, + [176001] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8127), 1, + ACTIONS(8145), 1, anon_sym_LBRACE, - ACTIONS(8129), 1, + ACTIONS(8147), 1, anon_sym_LBRACE_PIPE, - STATE(1516), 1, + STATE(1624), 1, sym_object_type, - STATE(5023), 1, + STATE(5025), 1, sym_comment, - STATE(5953), 1, + STATE(5938), 1, sym_extends_type_clause, - [175897] = 8, + [176026] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, - sym__template_chars, - ACTIONS(8689), 1, - anon_sym_BQUOTE, - STATE(5024), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, + STATE(5026), 1, sym_comment, - STATE(5102), 1, - aux_sym_template_literal_type_repeat1, - STATE(5790), 1, - sym_template_type, - [175922] = 6, + ACTIONS(8691), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [176049] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, + ACTIONS(8219), 1, anon_sym_COLON, - ACTIONS(8691), 1, + ACTIONS(8693), 1, anon_sym_EQ_GT, - STATE(5025), 1, + STATE(5027), 1, sym_comment, - STATE(6510), 3, + STATE(6509), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [175943] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5026), 1, - sym_comment, - STATE(5787), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175964] = 8, + [176070] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8242), 1, + ACTIONS(8209), 1, anon_sym_abstract, - ACTIONS(8694), 1, + ACTIONS(8696), 1, anon_sym_class, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5027), 1, + STATE(5028), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [175989] = 8, + [176095] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -355875,1370 +355987,1385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(8636), 1, + ACTIONS(8638), 1, sym_identifier, - STATE(5028), 1, + STATE(5029), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6813), 1, + STATE(6817), 1, sym__module_export_name, - [176014] = 8, + [176120] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5030), 1, + sym_comment, + STATE(5786), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176141] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5029), 1, + STATE(5031), 1, sym_comment, - STATE(5116), 1, + STATE(5118), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176039] = 8, + [176166] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5030), 1, + STATE(5032), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6809), 1, + STATE(6813), 1, sym__call_signature, - [176064] = 8, + [176191] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_SEMI, ACTIONS(8675), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8677), 1, + sym__automatic_semicolon, + ACTIONS(8679), 1, sym__function_signature_automatic_semicolon, - ACTIONS(8696), 1, + ACTIONS(8698), 1, anon_sym_LBRACE, - STATE(1262), 1, + STATE(1230), 1, sym_statement_block, - STATE(5031), 1, + STATE(5033), 1, sym_comment, - [176089] = 7, + [176216] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5032), 1, + STATE(5034), 1, sym_comment, - ACTIONS(8698), 2, + ACTIONS(8700), 2, sym__automatic_semicolon, anon_sym_SEMI, - [176112] = 8, + [176239] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5033), 1, + STATE(5035), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6806), 1, + STATE(6809), 1, sym__call_signature, - [176137] = 8, + [176264] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - ACTIONS(8700), 1, - anon_sym_SEMI, ACTIONS(8702), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8704), 1, + sym__automatic_semicolon, + ACTIONS(8706), 1, sym__function_signature_automatic_semicolon, - STATE(3137), 1, + STATE(3011), 1, sym_statement_block, - STATE(5034), 1, + STATE(5036), 1, sym_comment, - [176162] = 8, + [176289] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5035), 1, + STATE(5037), 1, sym_comment, - STATE(6313), 1, + STATE(6319), 1, sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - [176187] = 8, + [176314] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5036), 1, + STATE(5038), 1, sym_comment, - STATE(6302), 1, + STATE(6308), 1, sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - [176212] = 8, + [176339] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5037), 1, + STATE(5039), 1, sym_comment, - STATE(6298), 1, + STATE(6304), 1, sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - [176237] = 8, + [176364] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5038), 1, + STATE(5040), 1, sym_comment, STATE(5344), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176262] = 8, + [176389] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5039), 1, + STATE(5041), 1, sym_comment, - STATE(6297), 1, + STATE(6303), 1, sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - [176287] = 8, + [176414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5040), 1, + STATE(5042), 1, sym_comment, - STATE(5352), 1, + STATE(5353), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176312] = 8, + [176439] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5041), 1, + STATE(5043), 1, sym_comment, - STATE(5355), 1, + STATE(5358), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176337] = 8, + [176464] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8381), 1, + ACTIONS(8468), 1, anon_sym_class, - ACTIONS(8383), 1, + ACTIONS(8470), 1, anon_sym_abstract, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5042), 1, + STATE(5044), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [176362] = 6, + [176489] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, + STATE(5045), 1, + sym_comment, + STATE(6363), 1, + sym_type_parameters, + STATE(6740), 1, + sym__call_signature, + [176514] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4226), 1, + sym_formal_parameters, + STATE(5046), 1, + sym_comment, + STATE(5365), 1, + sym__call_signature, + STATE(6465), 1, + sym_type_parameters, + [176539] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5043), 1, + STATE(5047), 1, sym_comment, - STATE(6126), 1, + STATE(5779), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176383] = 6, + [176560] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5044), 1, + STATE(5048), 1, sym_comment, - STATE(5780), 1, + STATE(5735), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176404] = 6, + [176581] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5045), 1, + STATE(5049), 1, sym_comment, STATE(6261), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176425] = 8, + [176602] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5046), 1, + STATE(5050), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6798), 1, + STATE(6791), 1, sym__call_signature, - [176450] = 8, + [176627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, - STATE(5047), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5051), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6793), 1, - sym__call_signature, - [176475] = 8, + STATE(5701), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176648] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4640), 1, + ACTIONS(4642), 1, anon_sym_COLON, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - ACTIONS(8652), 1, + ACTIONS(8654), 1, anon_sym_COMMA, - ACTIONS(8706), 1, + ACTIONS(8708), 1, anon_sym_RBRACE, - STATE(5048), 1, + STATE(5052), 1, sym_comment, - STATE(5734), 1, + STATE(5738), 1, aux_sym_object_pattern_repeat1, - [176500] = 6, + [176673] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5049), 1, + STATE(5053), 1, sym_comment, - STATE(5776), 1, + STATE(5697), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176521] = 6, + [176694] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5050), 1, - sym_comment, - STATE(5740), 1, - sym__initializer, - ACTIONS(8624), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, anon_sym_SEMI, - [176542] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_formal_parameters, - STATE(5051), 1, - sym_comment, - STATE(5363), 1, - sym__call_signature, - STATE(6464), 1, - sym_type_parameters, - [176567] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5052), 1, - sym_comment, - STATE(5703), 1, - sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8646), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176588] = 8, + ACTIONS(8648), 1, + sym__function_signature_automatic_semicolon, + STATE(363), 1, + sym_statement_block, + STATE(5054), 1, + sym_comment, + [176719] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5053), 1, + STATE(5055), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6403), 1, + STATE(6406), 1, sym__call_signature, - [176613] = 8, + [176744] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5054), 1, + STATE(5056), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6462), 1, + STATE(6464), 1, sym__call_signature, - [176638] = 8, + [176769] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5055), 1, + STATE(5057), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6467), 1, + STATE(6470), 1, sym__call_signature, - [176663] = 8, + [176794] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5056), 1, + STATE(5058), 1, sym_comment, - STATE(5307), 1, + STATE(5308), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176688] = 6, + [176819] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5057), 1, + STATE(5059), 1, sym_comment, - STATE(5702), 1, + STATE(5695), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176709] = 8, + [176840] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5058), 1, + STATE(5060), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6488), 1, + STATE(6492), 1, sym__call_signature, - [176734] = 8, + [176865] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5059), 1, + STATE(5061), 1, sym_comment, - STATE(5272), 1, + STATE(5278), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176759] = 8, + [176890] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5060), 1, + STATE(5062), 1, sym_comment, - STATE(5265), 1, + STATE(5266), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176784] = 8, + [176915] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8169), 1, + ACTIONS(8559), 1, anon_sym_class, - ACTIONS(8171), 1, + ACTIONS(8561), 1, anon_sym_abstract, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5061), 1, + STATE(5063), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [176809] = 8, + [176940] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8638), 1, - anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_SEMI, - ACTIONS(8646), 1, - sym__automatic_semicolon, - ACTIONS(8648), 1, - sym__function_signature_automatic_semicolon, - STATE(356), 1, - sym_statement_block, - STATE(5062), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5064), 1, sym_comment, - [176834] = 6, + STATE(5676), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176961] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8597), 1, anon_sym_EQ, - STATE(5063), 1, + ACTIONS(8710), 1, + anon_sym_COMMA, + ACTIONS(8712), 1, + anon_sym_RBRACE, + STATE(5065), 1, sym_comment, - STATE(5695), 1, + STATE(5922), 1, + aux_sym_enum_body_repeat1, + STATE(6678), 1, sym__initializer, - ACTIONS(8624), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176855] = 8, + [176986] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5064), 1, + STATE(5066), 1, sym_comment, - STATE(5250), 1, + STATE(5251), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [176880] = 4, + [177011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5065), 1, + STATE(5067), 1, sym_comment, - ACTIONS(6532), 5, + ACTIONS(6632), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [176897] = 8, + [177028] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(8708), 1, - anon_sym_COMMA, - ACTIONS(8710), 1, - anon_sym_RBRACE, - STATE(5066), 1, + STATE(5068), 1, sym_comment, - STATE(5916), 1, - aux_sym_enum_body_repeat1, - STATE(6674), 1, + STATE(5673), 1, sym__initializer, - [176922] = 4, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5067), 1, + STATE(5069), 1, sym_comment, - ACTIONS(6522), 5, + ACTIONS(6272), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [176939] = 4, + [177066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5068), 1, + STATE(5070), 1, sym_comment, - ACTIONS(6522), 5, + ACTIONS(6272), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [176956] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_SEMI, - ACTIONS(8714), 1, - sym__automatic_semicolon, - ACTIONS(8716), 1, - sym__function_signature_automatic_semicolon, - STATE(3010), 1, - sym_statement_block, - STATE(5069), 1, - sym_comment, - [176981] = 4, + [177083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5070), 1, + STATE(5071), 1, sym_comment, - ACTIONS(6522), 5, + ACTIONS(6272), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [176998] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5071), 1, - sym_comment, - STATE(5677), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177019] = 6, + [177100] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5072), 1, sym_comment, - STATE(5988), 1, + STATE(5991), 1, sym__initializer, - ACTIONS(8718), 3, + ACTIONS(8714), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177040] = 8, + [177121] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - ACTIONS(8700), 1, + ACTIONS(8716), 1, anon_sym_SEMI, - ACTIONS(8702), 1, + ACTIONS(8718), 1, sym__automatic_semicolon, - ACTIONS(8704), 1, + ACTIONS(8720), 1, sym__function_signature_automatic_semicolon, + STATE(3013), 1, + sym_statement_block, STATE(5073), 1, sym_comment, - STATE(5337), 1, - sym_statement_block, - [177065] = 8, + [177146] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(7905), 1, + anon_sym_LBRACE, + ACTIONS(8702), 1, + anon_sym_SEMI, + ACTIONS(8704), 1, + sym__automatic_semicolon, + ACTIONS(8706), 1, + sym__function_signature_automatic_semicolon, STATE(5074), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6708), 1, - sym__call_signature, - [177090] = 8, + STATE(5342), 1, + sym_statement_block, + [177171] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5075), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6867), 1, - sym__call_signature, - [177115] = 8, + ACTIONS(8722), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [177194] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5076), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6938), 1, + STATE(6297), 1, sym__call_signature, - [177140] = 8, + STATE(6363), 1, + sym_type_parameters, + [177219] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_SEMI, - ACTIONS(8722), 1, - sym__automatic_semicolon, - ACTIONS(8724), 1, - sym__function_signature_automatic_semicolon, - STATE(445), 1, - sym_statement_block, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5077), 1, sym_comment, - [177165] = 8, + STATE(6363), 1, + sym_type_parameters, + STATE(6922), 1, + sym__call_signature, + [177244] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5078), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6910), 1, + STATE(6941), 1, sym__call_signature, - [177190] = 6, + [177269] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_COLON, - ACTIONS(8726), 1, - anon_sym_EQ_GT, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4226), 1, + sym_formal_parameters, + STATE(5074), 1, + sym__call_signature, STATE(5079), 1, sym_comment, - STATE(6510), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177211] = 7, + STATE(6465), 1, + sym_type_parameters, + [177294] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5080), 1, sym_comment, - ACTIONS(8729), 2, + STATE(5667), 1, + sym__initializer, + ACTIONS(8607), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [177234] = 8, + [177315] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_formal_parameters, - STATE(5073), 1, - sym__call_signature, + ACTIONS(8673), 1, + anon_sym_LBRACE, + ACTIONS(8724), 1, + anon_sym_SEMI, + ACTIONS(8726), 1, + sym__automatic_semicolon, + ACTIONS(8728), 1, + sym__function_signature_automatic_semicolon, + STATE(445), 1, + sym_statement_block, STATE(5081), 1, sym_comment, - STATE(6464), 1, - sym_type_parameters, - [177259] = 6, + [177340] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5082), 1, sym_comment, - STATE(5655), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177280] = 8, + STATE(6363), 1, + sym_type_parameters, + STATE(6863), 1, + sym__call_signature, + [177365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8730), 1, + anon_sym_EQ_GT, STATE(5083), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6850), 1, - sym__call_signature, - [177305] = 8, + STATE(6509), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177386] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, - sym__template_chars, - ACTIONS(8731), 1, - anon_sym_BQUOTE, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5084), 1, sym_comment, - STATE(5102), 1, - aux_sym_template_literal_type_repeat1, - STATE(5790), 1, - sym_template_type, - [177330] = 8, + STATE(5665), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177407] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5034), 1, + STATE(5036), 1, sym__call_signature, STATE(5085), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [177355] = 6, + [177432] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5086), 1, sym_comment, - STATE(5651), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177376] = 8, + STATE(6363), 1, + sym_type_parameters, + STATE(6712), 1, + sym__call_signature, + [177457] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5021), 1, + STATE(5024), 1, sym__call_signature, STATE(5087), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [177401] = 8, + [177482] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8626), 1, + sym__template_chars, + ACTIONS(8733), 1, + anon_sym_BQUOTE, + STATE(5088), 1, + sym_comment, + STATE(5104), 1, + aux_sym_template_literal_type_repeat1, + STATE(5792), 1, + sym_template_type, + [177507] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8619), 1, + ACTIONS(8613), 1, anon_sym_abstract, - ACTIONS(8733), 1, + ACTIONS(8735), 1, anon_sym_class, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5088), 1, + STATE(5089), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [177426] = 4, + [177532] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5089), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5090), 1, + sym_comment, + STATE(5651), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177553] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5091), 1, sym_comment, - ACTIONS(7919), 5, + ACTIONS(7937), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177443] = 4, + [177570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5090), 1, + STATE(5092), 1, sym_comment, - ACTIONS(8735), 5, + ACTIONS(8737), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177460] = 7, + [177587] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5091), 1, + STATE(5093), 1, sym_comment, - ACTIONS(8737), 2, + ACTIONS(8739), 2, sym__automatic_semicolon, anon_sym_SEMI, - [177483] = 8, + [177610] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5004), 1, + STATE(5005), 1, sym__call_signature, - STATE(5092), 1, + STATE(5094), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [177508] = 4, + [177635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5093), 1, + STATE(5095), 1, sym_comment, - ACTIONS(8113), 5, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177525] = 6, + [177652] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4323), 1, anon_sym_COLON, - STATE(5094), 1, + STATE(5096), 1, sym_comment, - STATE(6856), 1, + STATE(6861), 1, sym_type_annotation, - ACTIONS(4369), 3, + ACTIONS(4370), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACK, - [177546] = 6, + [177673] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, + ACTIONS(8219), 1, anon_sym_COLON, - ACTIONS(8739), 1, + ACTIONS(8741), 1, anon_sym_EQ_GT, - STATE(5095), 1, + STATE(5097), 1, sym_comment, - STATE(6510), 3, + STATE(6509), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [177567] = 6, + [177694] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5096), 1, + STATE(5098), 1, sym_comment, - STATE(5647), 1, + STATE(6075), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177588] = 6, + [177715] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, + ACTIONS(8219), 1, anon_sym_COLON, - ACTIONS(8742), 1, + ACTIONS(8744), 1, anon_sym_EQ_GT, - STATE(5097), 1, + STATE(5099), 1, sym_comment, - STATE(6753), 3, + STATE(6759), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [177609] = 7, + [177736] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(5098), 1, + STATE(5100), 1, sym_comment, - ACTIONS(8745), 2, + ACTIONS(8747), 2, anon_sym_COMMA, anon_sym_RBRACK, - [177632] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5099), 1, - sym_comment, - STATE(5604), 1, - sym__initializer, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177653] = 6, + [177759] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7230), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(8747), 1, + ACTIONS(8749), 1, anon_sym_RBRACE, - STATE(5100), 1, + STATE(5101), 1, sym_comment, - ACTIONS(5280), 3, + ACTIONS(5067), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [177674] = 6, + [177780] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5101), 1, + STATE(5102), 1, sym_comment, - STATE(5606), 1, + STATE(5607), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177695] = 7, + [177801] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5103), 1, + sym_comment, + STATE(5626), 1, + sym__initializer, + ACTIONS(8607), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177822] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8749), 1, - anon_sym_BQUOTE, ACTIONS(8751), 1, + anon_sym_BQUOTE, + ACTIONS(8753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8754), 1, + ACTIONS(8756), 1, sym__template_chars, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - STATE(5102), 2, + STATE(5104), 2, sym_comment, aux_sym_template_literal_type_repeat1, - [177718] = 7, + [177845] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(5103), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8757), 2, + ACTIONS(8759), 2, anon_sym_COMMA, anon_sym_GT, - [177741] = 7, + [177868] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7747), 1, + ACTIONS(7757), 1, anon_sym_DOT, - STATE(4380), 1, + STATE(4367), 1, sym_arguments, - STATE(5104), 1, + STATE(5106), 1, sym_comment, - ACTIONS(8759), 2, + ACTIONS(8761), 2, anon_sym_COMMA, anon_sym_GT, - [177764] = 7, + [177891] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(5105), 1, + STATE(5107), 1, sym_comment, - ACTIONS(8761), 2, + ACTIONS(8763), 2, anon_sym_COMMA, anon_sym_GT, - [177787] = 6, + [177914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5106), 1, + STATE(5108), 1, sym_comment, - STATE(5625), 1, + STATE(5629), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177808] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8000), 1, - anon_sym_extends, - ACTIONS(8100), 1, - anon_sym_LBRACE_PIPE, - STATE(5107), 1, - sym_comment, - STATE(6047), 1, - sym_extends_type_clause, - STATE(6643), 1, - sym_object_type, - [177833] = 6, + [177935] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5108), 1, + STATE(5109), 1, sym_comment, - STATE(5629), 1, + STATE(5631), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177854] = 4, + [177956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5109), 1, + STATE(5110), 1, sym_comment, - ACTIONS(8763), 5, + ACTIONS(8765), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [177871] = 6, + [177973] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5110), 1, + STATE(5111), 1, sym_comment, - STATE(5633), 1, + STATE(5635), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8607), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177892] = 6, + [177994] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7941), 1, + anon_sym_extends, + ACTIONS(8091), 1, + anon_sym_LBRACE_PIPE, + STATE(5112), 1, + sym_comment, + STATE(6050), 1, + sym_extends_type_clause, + STATE(6647), 1, + sym_object_type, + [178019] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5113), 1, sym_comment, - STATE(6263), 1, + STATE(6267), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177913] = 6, + [178040] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5112), 1, + STATE(5114), 1, sym_comment, STATE(5864), 1, sym__initializer, - ACTIONS(8613), 3, + ACTIONS(8767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177934] = 8, + [178061] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, + ACTIONS(8597), 1, anon_sym_EQ, - ACTIONS(8765), 1, + ACTIONS(8769), 1, anon_sym_COMMA, - ACTIONS(8767), 1, + ACTIONS(8771), 1, anon_sym_RBRACE, - STATE(5113), 1, + STATE(5115), 1, sym_comment, - STATE(6011), 1, + STATE(6013), 1, aux_sym_enum_body_repeat1, - STATE(6674), 1, + STATE(6678), 1, sym__initializer, - [177959] = 8, + [178086] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -357247,1439 +357374,1428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(8636), 1, + ACTIONS(8638), 1, sym_identifier, - STATE(5114), 1, + STATE(5116), 1, sym_comment, - STATE(5555), 1, + STATE(5558), 1, sym_string, - STATE(6669), 1, + STATE(6673), 1, sym__module_export_name, - [177984] = 8, + [178111] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5115), 1, + STATE(5117), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6667), 1, + STATE(6671), 1, sym__call_signature, - [178009] = 8, + [178136] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8696), 1, + ACTIONS(8698), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(8724), 1, anon_sym_SEMI, - ACTIONS(8722), 1, + ACTIONS(8726), 1, sym__automatic_semicolon, - ACTIONS(8724), 1, + ACTIONS(8728), 1, sym__function_signature_automatic_semicolon, - STATE(1502), 1, + STATE(1488), 1, sym_statement_block, - STATE(5116), 1, + STATE(5118), 1, sym_comment, - [178034] = 7, + [178161] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5117), 1, + STATE(5119), 1, sym_comment, - ACTIONS(8769), 2, + ACTIONS(8773), 2, sym__automatic_semicolon, anon_sym_SEMI, - [178057] = 8, + [178184] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5118), 1, + STATE(5120), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6664), 1, + STATE(6668), 1, sym__call_signature, - [178082] = 8, + [178209] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5119), 1, + STATE(5121), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6660), 1, + STATE(6378), 1, sym__call_signature, - [178107] = 8, + [178234] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5120), 1, + STATE(5122), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6367), 1, + STATE(6356), 1, sym__call_signature, - [178132] = 8, + STATE(6363), 1, + sym_type_parameters, + [178259] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5121), 1, + STATE(5123), 1, sym_comment, - STATE(6329), 1, - sym__call_signature, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - [178157] = 8, + STATE(6662), 1, + sym__call_signature, + [178284] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5122), 1, + STATE(5124), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6423), 1, + STATE(6321), 1, sym__call_signature, - [178182] = 8, + STATE(6363), 1, + sym_type_parameters, + [178309] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4852), 1, - sym__call_signature, - STATE(5123), 1, + STATE(5125), 1, sym_comment, - STATE(6464), 1, + STATE(5227), 1, + sym__call_signature, + STATE(6465), 1, sym_type_parameters, - [178207] = 6, + [178334] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5124), 1, + STATE(5126), 1, sym_comment, - STATE(6267), 1, + STATE(6269), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178228] = 8, + [178355] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5127), 1, + sym_comment, + STATE(5657), 1, + sym__initializer, + ACTIONS(8775), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178376] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5125), 1, + STATE(5128), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6519), 1, + STATE(6524), 1, sym__call_signature, - [178253] = 8, + [178401] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, STATE(4954), 1, sym__call_signature, - STATE(5126), 1, + STATE(5129), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [178278] = 8, + [178426] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4976), 1, + STATE(4971), 1, sym__call_signature, - STATE(5127), 1, + STATE(5130), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [178303] = 8, + [178451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8507), 1, + ACTIONS(8223), 1, anon_sym_class, - ACTIONS(8509), 1, + ACTIONS(8225), 1, anon_sym_abstract, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5128), 1, + STATE(5131), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [178328] = 6, + [178476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5129), 1, + STATE(5132), 1, sym_comment, - STATE(5650), 1, - sym__initializer, - ACTIONS(8771), 3, + ACTIONS(8777), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178349] = 8, + anon_sym_PIPE_RBRACE, + [178493] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5062), 1, + STATE(5054), 1, sym__call_signature, - STATE(5130), 1, + STATE(5133), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [178374] = 6, + [178518] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8775), 1, + ACTIONS(8781), 1, anon_sym_in, - ACTIONS(8777), 1, + ACTIONS(8783), 1, anon_sym_of, - STATE(5131), 1, + STATE(5134), 1, sym_comment, - ACTIONS(8773), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178395] = 6, + [178539] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8779), 1, + ACTIONS(8785), 1, anon_sym_in, - ACTIONS(8781), 1, + ACTIONS(8787), 1, anon_sym_of, - STATE(5132), 1, + STATE(5135), 1, sym_comment, - ACTIONS(8773), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178416] = 6, + [178560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5133), 1, + STATE(5136), 1, sym_comment, - STATE(5653), 1, - sym__initializer, - ACTIONS(8783), 3, + ACTIONS(8789), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178437] = 4, + anon_sym_PIPE_RBRACE, + [178577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5134), 1, + STATE(5137), 1, sym_comment, - ACTIONS(6282), 5, + ACTIONS(6650), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178454] = 4, + [178594] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5135), 1, + STATE(5138), 1, sym_comment, - ACTIONS(6380), 5, + ACTIONS(6611), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178471] = 4, + [178611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5136), 1, + STATE(5139), 1, sym_comment, - ACTIONS(6380), 5, + ACTIONS(6611), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178488] = 8, + [178628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + STATE(5140), 1, + sym_comment, + ACTIONS(6611), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178645] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4800), 1, + STATE(4661), 1, sym__call_signature, - STATE(5137), 1, + STATE(5141), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [178513] = 8, + [178670] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5142), 1, + sym_comment, + STATE(6020), 1, + sym__initializer, + ACTIONS(8791), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178691] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7905), 1, anon_sym_LBRACE, - ACTIONS(8712), 1, + ACTIONS(8716), 1, anon_sym_SEMI, - ACTIONS(8714), 1, + ACTIONS(8718), 1, sym__automatic_semicolon, - ACTIONS(8716), 1, + ACTIONS(8720), 1, sym__function_signature_automatic_semicolon, - STATE(5138), 1, + STATE(5143), 1, sym_comment, STATE(6007), 1, sym_statement_block, - [178538] = 6, + [178716] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5139), 1, + STATE(5144), 1, sym_comment, - STATE(6018), 1, + STATE(6028), 1, sym__initializer, - ACTIONS(8785), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178559] = 7, + [178737] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5140), 1, - sym_comment, - ACTIONS(8787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [178582] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5141), 1, + STATE(5145), 1, sym_comment, - STATE(6027), 1, - sym__initializer, - ACTIONS(8789), 3, + ACTIONS(8795), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [178603] = 6, + [178760] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5142), 1, + STATE(5146), 1, sym_comment, STATE(6048), 1, sym__initializer, - ACTIONS(8791), 3, + ACTIONS(8797), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178624] = 4, + [178781] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5143), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4226), 1, + sym_formal_parameters, + STATE(4739), 1, + sym__call_signature, + STATE(5147), 1, sym_comment, - ACTIONS(8793), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178641] = 7, + STATE(6465), 1, + sym_type_parameters, + [178806] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(5144), 1, + STATE(5148), 1, sym_comment, - ACTIONS(8795), 2, + ACTIONS(8799), 2, anon_sym_LBRACE, anon_sym_COMMA, - [178664] = 8, + [178829] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(5145), 1, + STATE(5149), 1, sym_comment, - STATE(5200), 1, + STATE(5204), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [178689] = 4, + [178854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5146), 1, + STATE(5150), 1, sym_comment, - ACTIONS(8034), 5, + ACTIONS(7967), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178706] = 4, + [178871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5147), 1, + STATE(5151), 1, sym_comment, - ACTIONS(8797), 5, + ACTIONS(8801), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178723] = 6, + [178888] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5148), 1, + STATE(5152), 1, sym_comment, - STATE(6268), 1, - sym__initializer, - ACTIONS(8577), 3, + ACTIONS(7967), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178744] = 4, + anon_sym_PIPE_RBRACE, + [178905] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5149), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, + STATE(5153), 1, sym_comment, - ACTIONS(8034), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178761] = 4, + STATE(6363), 1, + sym_type_parameters, + STATE(6439), 1, + sym__call_signature, + [178930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5150), 1, + STATE(5154), 1, sym_comment, - ACTIONS(8799), 5, + ACTIONS(8803), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178778] = 4, + [178947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5151), 1, + STATE(5155), 1, sym_comment, - ACTIONS(8377), 5, + ACTIONS(8491), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178795] = 4, + [178964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5152), 1, + STATE(5156), 1, sym_comment, - ACTIONS(8010), 5, + ACTIONS(7969), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178812] = 4, + [178981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5153), 1, + STATE(5157), 1, sym_comment, - ACTIONS(8801), 5, + ACTIONS(8805), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178829] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5154), 1, - sym_comment, - ACTIONS(6380), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [178846] = 6, + [178998] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, + ACTIONS(8219), 1, anon_sym_COLON, - ACTIONS(8803), 1, + ACTIONS(8807), 1, anon_sym_EQ_GT, - STATE(5155), 1, + STATE(5158), 1, sym_comment, - STATE(6753), 3, + STATE(6759), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [178867] = 4, + [179019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5156), 1, + STATE(5159), 1, sym_comment, - ACTIONS(8806), 5, + ACTIONS(8810), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [178884] = 4, + [179036] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5157), 1, + STATE(5160), 1, sym_comment, - ACTIONS(8808), 5, + ACTIONS(8812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178901] = 8, + [179053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_formal_parameters, - STATE(4801), 1, - sym__call_signature, - STATE(5158), 1, + STATE(5161), 1, sym_comment, - STATE(6464), 1, - sym_type_parameters, - [178926] = 8, + ACTIONS(7983), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179070] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, - STATE(5159), 1, + ACTIONS(8624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8626), 1, + sym__template_chars, + ACTIONS(8814), 1, + anon_sym_BQUOTE, + STATE(5023), 1, + aux_sym_template_literal_type_repeat1, + STATE(5162), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6534), 1, - sym__call_signature, - [178951] = 4, + STATE(5792), 1, + sym_template_type, + [179095] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5160), 1, + STATE(5163), 1, sym_comment, - ACTIONS(8810), 5, + ACTIONS(8816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178968] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - ACTIONS(8812), 1, - anon_sym_SEMI, - ACTIONS(8814), 1, - sym__automatic_semicolon, - ACTIONS(8816), 1, - sym__function_signature_automatic_semicolon, - STATE(3104), 1, - sym_statement_block, - STATE(5161), 1, - sym_comment, - [178993] = 8, + [179112] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5162), 1, + STATE(5164), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6543), 1, + STATE(6547), 1, sym__call_signature, - [179018] = 4, + [179137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5163), 1, + STATE(5165), 1, sym_comment, - ACTIONS(6364), 5, + ACTIONS(6646), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [179035] = 8, + [179154] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, - sym__template_chars, + ACTIONS(4987), 1, + anon_sym_LBRACE, ACTIONS(8818), 1, - anon_sym_BQUOTE, - STATE(5164), 1, + anon_sym_SEMI, + ACTIONS(8820), 1, + sym__automatic_semicolon, + ACTIONS(8822), 1, + sym__function_signature_automatic_semicolon, + STATE(3107), 1, + sym_statement_block, + STATE(5166), 1, sym_comment, - STATE(5256), 1, - aux_sym_template_literal_type_repeat1, - STATE(5790), 1, - sym_template_type, - [179060] = 8, + [179179] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5167), 1, + sym_comment, + STATE(6274), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179200] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(8820), 1, + ACTIONS(8824), 1, anon_sym_as, - ACTIONS(8822), 1, + ACTIONS(8826), 1, anon_sym_RBRACK, - STATE(5165), 1, + STATE(5168), 1, sym_comment, - [179085] = 8, + [179225] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - ACTIONS(8824), 1, + ACTIONS(8828), 1, anon_sym_BQUOTE, - STATE(5024), 1, - aux_sym_template_literal_type_repeat1, - STATE(5166), 1, + STATE(5169), 1, sym_comment, - STATE(5790), 1, + STATE(5257), 1, + aux_sym_template_literal_type_repeat1, + STATE(5792), 1, sym_template_type, - [179110] = 4, + [179250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5167), 1, + STATE(5170), 1, sym_comment, - ACTIONS(8826), 5, + ACTIONS(8830), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179127] = 8, + [179267] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4671), 1, - sym__call_signature, - STATE(5168), 1, + STATE(5171), 1, sym_comment, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - [179152] = 8, + STATE(6398), 1, + sym__call_signature, + [179292] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4226), 1, sym_formal_parameters, - STATE(5169), 1, + STATE(4719), 1, + sym__call_signature, + STATE(5172), 1, sym_comment, - STATE(6346), 1, + STATE(6465), 1, sym_type_parameters, - STATE(6397), 1, - sym__call_signature, - [179177] = 8, + [179317] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5170), 1, + STATE(5173), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, STATE(6401), 1, sym__call_signature, - [179202] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5171), 1, - sym_comment, - STATE(6068), 1, - sym__initializer, - ACTIONS(8828), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179223] = 6, + [179342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5172), 1, + STATE(5174), 1, sym_comment, - STATE(6069), 1, + STATE(6070), 1, sym__initializer, - ACTIONS(8830), 3, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179244] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, - STATE(5173), 1, - sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6405), 1, - sym__call_signature, - [179269] = 8, + [179363] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(5174), 1, - sym_comment, - STATE(6076), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [179294] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, + STATE(4817), 1, sym_formal_parameters, STATE(5175), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6415), 1, + STATE(6405), 1, sym__call_signature, - [179319] = 6, + [179388] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5176), 1, sym_comment, - STATE(6103), 1, + STATE(6071), 1, sym__initializer, - ACTIONS(8832), 3, + ACTIONS(8834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179340] = 8, + [179409] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5177), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6449), 1, + STATE(6419), 1, sym__call_signature, - [179365] = 8, + [179434] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + STATE(4119), 1, sym_formal_parameters, STATE(5178), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6455), 1, + STATE(6088), 1, sym__call_signature, - [179390] = 8, + STATE(6380), 1, + sym_type_parameters, + [179459] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5179), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6457), 1, + STATE(6445), 1, sym__call_signature, - [179415] = 6, + [179484] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5180), 1, sym_comment, - STATE(6116), 1, + STATE(6109), 1, sym__initializer, - ACTIONS(8832), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179436] = 8, + [179505] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5181), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6525), 1, + STATE(6452), 1, sym__call_signature, - [179461] = 6, + [179530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5182), 1, sym_comment, - STATE(6137), 1, - sym__initializer, - ACTIONS(8832), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179482] = 6, + STATE(6363), 1, + sym_type_parameters, + STATE(6456), 1, + sym__call_signature, + [179555] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_COLON, - ACTIONS(8834), 1, - anon_sym_EQ_GT, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5183), 1, sym_comment, - STATE(6510), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [179503] = 6, + STATE(6363), 1, + sym_type_parameters, + STATE(6521), 1, + sym__call_signature, + [179580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_COLON, - ACTIONS(8837), 1, - anon_sym_EQ_GT, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5184), 1, sym_comment, - STATE(6753), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [179524] = 6, + STATE(6122), 1, + sym__initializer, + ACTIONS(8836), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179601] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5185), 1, sym_comment, - STATE(6153), 1, + STATE(6144), 1, sym__initializer, - ACTIONS(8832), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179545] = 8, + [179622] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5186), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6553), 1, + STATE(6554), 1, sym__call_signature, - [179570] = 8, + [179647] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5187), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6554), 1, - sym__call_signature, - [179595] = 6, + STATE(6275), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179668] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8838), 1, + anon_sym_EQ_GT, STATE(5188), 1, sym_comment, - STATE(6154), 1, - sym__initializer, - ACTIONS(8840), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179616] = 6, + STATE(6509), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179689] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8841), 1, + anon_sym_EQ_GT, STATE(5189), 1, sym_comment, - STATE(6270), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179637] = 8, + STATE(6759), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179710] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5190), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6569), 1, + STATE(6556), 1, sym__call_signature, - [179662] = 8, + [179735] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5191), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6574), 1, - sym__call_signature, - [179687] = 4, + STATE(6159), 1, + sym__initializer, + ACTIONS(8836), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179756] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5192), 1, sym_comment, - ACTIONS(8842), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179704] = 4, + STATE(6363), 1, + sym_type_parameters, + STATE(6568), 1, + sym__call_signature, + [179781] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5193), 1, sym_comment, - ACTIONS(8104), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179721] = 8, + STATE(6363), 1, + sym_type_parameters, + STATE(6574), 1, + sym__call_signature, + [179806] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, STATE(5194), 1, sym_comment, - STATE(5210), 1, + STATE(5215), 1, sym__call_signature, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [179746] = 6, + [179831] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5195), 1, sym_comment, - STATE(6155), 1, + STATE(6160), 1, sym__initializer, - ACTIONS(8840), 3, + ACTIONS(8844), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179767] = 4, + [179852] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5196), 1, sym_comment, - ACTIONS(8113), 5, + STATE(6161), 1, + sym__initializer, + ACTIONS(8844), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179784] = 8, + [179873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, - anon_sym_EQ, - ACTIONS(8844), 1, - anon_sym_COMMA, - ACTIONS(8846), 1, - anon_sym_RBRACE, STATE(5197), 1, sym_comment, - STATE(6136), 1, - aux_sym_enum_body_repeat1, - STATE(6674), 1, - sym__initializer, - [179809] = 6, + ACTIONS(7983), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179890] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(4874), 1, + sym__call_signature, STATE(5198), 1, sym_comment, - STATE(6162), 1, - sym__initializer, - ACTIONS(8832), 3, + STATE(6380), 1, + sym_type_parameters, + [179915] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5199), 1, + sym_comment, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179830] = 6, + anon_sym_PIPE_RBRACE, + [179932] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5199), 1, + STATE(5200), 1, sym_comment, - STATE(6173), 1, + STATE(6167), 1, sym__initializer, - ACTIONS(8832), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179851] = 4, + [179953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5200), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5201), 1, sym_comment, - ACTIONS(7913), 5, + STATE(6179), 1, + sym__initializer, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179868] = 8, + [179974] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(5201), 1, + ACTIONS(8597), 1, + anon_sym_EQ, + ACTIONS(8846), 1, + anon_sym_COMMA, + ACTIONS(8848), 1, + anon_sym_RBRACE, + STATE(5202), 1, sym_comment, - STATE(5290), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [179893] = 8, + STATE(6150), 1, + aux_sym_enum_body_repeat1, + STATE(6678), 1, + sym__initializer, + [179999] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, - STATE(5202), 1, + STATE(5203), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, STATE(6650), 1, sym__call_signature, - [179918] = 4, + [180024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5203), 1, + STATE(5204), 1, sym_comment, - ACTIONS(7915), 5, + ACTIONS(7995), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179935] = 4, + [180041] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5204), 1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(5205), 1, sym_comment, - ACTIONS(8848), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179952] = 8, + STATE(5291), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [180066] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(5161), 1, + STATE(5166), 1, sym__call_signature, - STATE(5205), 1, + STATE(5206), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [179977] = 4, + [180091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5206), 1, + STATE(5207), 1, sym_comment, - ACTIONS(7915), 5, + ACTIONS(7997), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179994] = 4, + [180108] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5207), 1, + STATE(5208), 1, sym_comment, ACTIONS(8850), 5, sym__automatic_semicolon, @@ -358687,67 +358803,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180011] = 4, + [180125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5208), 1, + STATE(5209), 1, sym_comment, - ACTIONS(5964), 5, + ACTIONS(5978), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [180028] = 4, + [180142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5209), 1, + STATE(5210), 1, sym_comment, - ACTIONS(7913), 5, + ACTIONS(7997), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180045] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - ACTIONS(8812), 1, - anon_sym_SEMI, - ACTIONS(8814), 1, - sym__automatic_semicolon, - ACTIONS(8816), 1, - sym__function_signature_automatic_semicolon, - STATE(5210), 1, - sym_comment, - STATE(5929), 1, - sym_statement_block, - [180070] = 8, + [180159] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(4815), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, sym_formal_parameters, STATE(5211), 1, sym_comment, - STATE(6346), 1, + STATE(6363), 1, sym_type_parameters, - STATE(6707), 1, + STATE(6710), 1, sym__call_signature, - [180095] = 4, + [180184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -358760,1329 +358859,1329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180112] = 4, + [180201] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5213), 1, sym_comment, - ACTIONS(8854), 5, + ACTIONS(7995), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180129] = 7, + [180218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, STATE(5214), 1, sym_comment, - ACTIONS(8856), 2, + ACTIONS(8854), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180152] = 8, + anon_sym_PIPE_RBRACE, + [180235] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_formal_parameters, - STATE(5138), 1, - sym__call_signature, + ACTIONS(7905), 1, + anon_sym_LBRACE, + ACTIONS(8818), 1, + anon_sym_SEMI, + ACTIONS(8820), 1, + sym__automatic_semicolon, + ACTIONS(8822), 1, + sym__function_signature_automatic_semicolon, STATE(5215), 1, sym_comment, - STATE(6464), 1, - sym_type_parameters, - [180177] = 8, + STATE(5959), 1, + sym_statement_block, + [180260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8240), 1, - anon_sym_class, - ACTIONS(8242), 1, - anon_sym_abstract, - STATE(4662), 1, - aux_sym_export_statement_repeat1, STATE(5216), 1, sym_comment, - STATE(5596), 1, - sym_decorator, - [180202] = 8, + ACTIONS(8856), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180277] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4128), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4872), 1, + STATE(5143), 1, sym__call_signature, STATE(5217), 1, sym_comment, - STATE(6358), 1, + STATE(6465), 1, sym_type_parameters, - [180227] = 7, + [180302] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8207), 1, + anon_sym_class, + ACTIONS(8209), 1, + anon_sym_abstract, + STATE(4678), 1, + aux_sym_export_statement_repeat1, STATE(5218), 1, sym_comment, - ACTIONS(8858), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [180250] = 7, + STATE(5599), 1, + sym_decorator, + [180327] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8046), 1, - anon_sym_LT, - ACTIONS(8860), 1, - anon_sym_LBRACE, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5219), 1, sym_comment, - STATE(5637), 1, - sym_type_arguments, - ACTIONS(8862), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [180273] = 4, + ACTIONS(8858), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180350] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5220), 1, sym_comment, - ACTIONS(8104), 5, + STATE(6132), 1, + sym__initializer, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180290] = 6, + [180371] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5221), 1, sym_comment, - STATE(6277), 1, - sym__initializer, - ACTIONS(8634), 3, + ACTIONS(8860), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [180311] = 8, + [180394] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(8025), 1, anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, + ACTIONS(8862), 1, + anon_sym_LBRACE, STATE(5222), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6388), 1, - sym__call_signature, - [180336] = 6, + STATE(5640), 1, + sym_type_arguments, + ACTIONS(8864), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [180417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5223), 1, sym_comment, - STATE(5664), 1, + STATE(5668), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180357] = 6, + [180438] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5224), 1, sym_comment, - STATE(6205), 1, + STATE(6280), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180378] = 8, + [180459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(4403), 1, - sym__call_signature, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5225), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [180403] = 8, + STATE(6281), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180480] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4817), 1, sym_formal_parameters, - STATE(4756), 1, - sym__call_signature, STATE(5226), 1, sym_comment, - STATE(6464), 1, + STATE(6363), 1, sym_type_parameters, - [180428] = 6, + STATE(6392), 1, + sym__call_signature, + [180505] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8632), 1, + anon_sym_SEMI, + ACTIONS(8634), 1, + sym__automatic_semicolon, + ACTIONS(8636), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8642), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_statement_block, STATE(5227), 1, sym_comment, - STATE(6279), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180449] = 6, + [180530] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5228), 1, sym_comment, - STATE(6178), 1, + STATE(5669), 1, sym__initializer, ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180470] = 6, + [180551] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5229), 1, sym_comment, - STATE(6182), 1, + STATE(6184), 1, sym__initializer, ACTIONS(8868), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180491] = 6, + [180572] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(4477), 1, + sym__call_signature, STATE(5230), 1, sym_comment, - STATE(6281), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180512] = 6, + STATE(6380), 1, + sym_type_parameters, + [180597] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5231), 1, sym_comment, - STATE(5665), 1, + STATE(6187), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8870), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180533] = 4, + [180618] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5232), 1, sym_comment, - ACTIONS(8870), 5, + STATE(6283), 1, + sym__initializer, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180550] = 8, + [180639] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5233), 1, sym_comment, - STATE(6184), 1, - sym__call_signature, - STATE(6358), 1, - sym_type_parameters, - [180575] = 6, + STATE(5670), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180660] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, STATE(5234), 1, sym_comment, - STATE(6200), 1, - sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8872), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180596] = 6, + anon_sym_PIPE_RBRACE, + [180677] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, STATE(5235), 1, sym_comment, - STATE(6274), 1, - sym__initializer, - ACTIONS(8872), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180617] = 6, + STATE(6191), 1, + sym__call_signature, + STATE(6380), 1, + sym_type_parameters, + [180702] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5236), 1, sym_comment, - STATE(6211), 1, + STATE(6205), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180638] = 6, + [180723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5237), 1, sym_comment, - STATE(6227), 1, + STATE(6206), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180659] = 6, + [180744] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5238), 1, sym_comment, - STATE(6237), 1, + STATE(6215), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180680] = 6, + [180765] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5239), 1, sym_comment, - STATE(6240), 1, + STATE(6230), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180701] = 6, + [180786] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5240), 1, sym_comment, STATE(6242), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180722] = 6, + [180807] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_COLON, - ACTIONS(8874), 1, - anon_sym_EQ_GT, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5241), 1, sym_comment, - STATE(6753), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [180743] = 6, + STATE(6245), 1, + sym__initializer, + ACTIONS(8874), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180828] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5242), 1, sym_comment, - STATE(6148), 1, + STATE(6248), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180764] = 6, + [180849] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5243), 1, sym_comment, - STATE(6257), 1, + STATE(6273), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180785] = 6, + [180870] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5244), 1, sym_comment, - STATE(6255), 1, + STATE(6259), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180806] = 6, + [180891] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5245), 1, sym_comment, - STATE(6253), 1, + STATE(6256), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180827] = 6, + [180912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8219), 1, + anon_sym_COLON, + ACTIONS(8876), 1, + anon_sym_EQ_GT, STATE(5246), 1, sym_comment, - STATE(6229), 1, + STATE(6759), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [180933] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5247), 1, + sym_comment, + STATE(6255), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180848] = 6, + [180954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5247), 1, + STATE(5248), 1, sym_comment, - STATE(6216), 1, + STATE(6232), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180869] = 6, + [180975] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5248), 1, + STATE(5249), 1, sym_comment, - STATE(6206), 1, + STATE(6218), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180890] = 6, + [180996] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5249), 1, + STATE(5250), 1, sym_comment, - STATE(6204), 1, + STATE(6209), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180911] = 8, + [181017] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8877), 1, - anon_sym_LBRACE, ACTIONS(8879), 1, - anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(8881), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8883), 1, + sym__automatic_semicolon, + ACTIONS(8885), 1, sym__function_signature_automatic_semicolon, - STATE(390), 1, + STATE(391), 1, sym_statement_block, - STATE(5250), 1, + STATE(5251), 1, sym_comment, - [180936] = 6, + [181042] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5251), 1, + STATE(5252), 1, sym_comment, - STATE(6283), 1, + STATE(5671), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180957] = 6, + [181063] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5252), 1, + STATE(5253), 1, sym_comment, - STATE(6203), 1, + STATE(6208), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180978] = 6, + [181084] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5253), 1, + STATE(5254), 1, sym_comment, - STATE(5666), 1, + STATE(6285), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180999] = 6, + [181105] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5254), 1, + STATE(5255), 1, sym_comment, - STATE(5667), 1, + STATE(5672), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181020] = 6, + [181126] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5255), 1, + STATE(5256), 1, sym_comment, - STATE(6288), 1, + STATE(6207), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181041] = 8, + [181147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8630), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8626), 1, sym__template_chars, - ACTIONS(8885), 1, + ACTIONS(8889), 1, anon_sym_BQUOTE, - STATE(5102), 1, + STATE(5104), 1, aux_sym_template_literal_type_repeat1, - STATE(5256), 1, + STATE(5257), 1, sym_comment, - STATE(5790), 1, + STATE(5792), 1, sym_template_type, - [181066] = 6, + [181172] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5257), 1, + STATE(5258), 1, sym_comment, - STATE(5668), 1, + STATE(5678), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181087] = 8, + [181193] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8080), 1, + ACTIONS(8116), 1, anon_sym_LBRACE, - ACTIONS(8082), 1, + ACTIONS(8118), 1, anon_sym_LBRACE_PIPE, - STATE(1330), 1, + STATE(1421), 1, sym_object_type, - STATE(5258), 1, + STATE(5259), 1, sym_comment, - STATE(6131), 1, + STATE(6137), 1, sym_extends_type_clause, - [181112] = 6, + [181218] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5259), 1, + STATE(5260), 1, sym_comment, - STATE(6189), 1, + STATE(6289), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181133] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(4572), 1, - sym__call_signature, - STATE(5260), 1, - sym_comment, - STATE(6358), 1, - sym_type_parameters, - [181158] = 6, + [181239] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5261), 1, sym_comment, - STATE(5674), 1, + STATE(5679), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181179] = 6, + [181260] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5262), 1, sym_comment, - STATE(5675), 1, + STATE(5680), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181200] = 6, + [181281] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5263), 1, sym_comment, - STATE(6139), 1, + STATE(6178), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181221] = 6, + [181302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5264), 1, sym_comment, - STATE(5676), 1, + STATE(5685), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181242] = 8, + [181323] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8879), 1, - anon_sym_SEMI, - ACTIONS(8881), 1, - sym__automatic_semicolon, - ACTIONS(8883), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8889), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_statement_block, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(4555), 1, + sym__call_signature, STATE(5265), 1, sym_comment, - [181267] = 6, + STATE(6380), 1, + sym_type_parameters, + [181348] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8881), 1, + anon_sym_SEMI, + ACTIONS(8883), 1, + sym__automatic_semicolon, + ACTIONS(8885), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8891), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_statement_block, STATE(5266), 1, sym_comment, - STATE(6105), 1, - sym__initializer, - ACTIONS(8571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181288] = 6, + [181373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, STATE(5267), 1, sym_comment, - STATE(6083), 1, - sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8507), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181309] = 6, + [181390] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5268), 1, sym_comment, - STATE(5681), 1, + STATE(6026), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181330] = 6, + [181411] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4226), 1, + sym_formal_parameters, + STATE(4744), 1, + sym__call_signature, STATE(5269), 1, sym_comment, - STATE(6289), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181351] = 6, + STATE(6465), 1, + sym_type_parameters, + [181436] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5270), 1, sym_comment, - STATE(6080), 1, + STATE(6102), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181372] = 7, + [181457] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, STATE(5271), 1, sym_comment, - ACTIONS(8891), 2, + ACTIONS(8893), 2, sym__automatic_semicolon, anon_sym_SEMI, - [181395] = 8, + [181480] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8877), 1, - anon_sym_LBRACE, - ACTIONS(8893), 1, - anon_sym_SEMI, - ACTIONS(8895), 1, - sym__automatic_semicolon, - ACTIONS(8897), 1, - sym__function_signature_automatic_semicolon, - STATE(372), 1, - sym_statement_block, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5272), 1, sym_comment, - [181420] = 6, + STATE(6292), 1, + sym__initializer, + ACTIONS(8579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181501] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5273), 1, sym_comment, - STATE(6291), 1, + STATE(6084), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181441] = 7, + [181522] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5274), 1, sym_comment, - ACTIONS(8899), 2, + STATE(5692), 1, + sym__initializer, + ACTIONS(8866), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [181464] = 6, + [181543] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5275), 1, sym_comment, - STATE(6078), 1, + STATE(6294), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181485] = 4, + [181564] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5276), 1, sym_comment, - ACTIONS(8427), 5, + STATE(6082), 1, + sym__initializer, + ACTIONS(8874), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181502] = 6, + [181585] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5277), 1, sym_comment, - STATE(6057), 1, + STATE(6080), 1, sym__initializer, - ACTIONS(8571), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181523] = 6, + [181606] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(8879), 1, + anon_sym_LBRACE, + ACTIONS(8895), 1, + anon_sym_SEMI, + ACTIONS(8897), 1, + sym__automatic_semicolon, + ACTIONS(8899), 1, + sym__function_signature_automatic_semicolon, + STATE(383), 1, + sym_statement_block, STATE(5278), 1, sym_comment, - STATE(6032), 1, - sym__initializer, - ACTIONS(8571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181544] = 6, + [181631] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5279), 1, sym_comment, - STATE(6031), 1, - sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8901), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [181565] = 6, + [181654] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, STATE(5280), 1, sym_comment, - STATE(5688), 1, - sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8515), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181586] = 8, + [181671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(4602), 1, - sym__call_signature, STATE(5281), 1, sym_comment, - STATE(6358), 1, - sym_type_parameters, - [181611] = 4, + ACTIONS(8539), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [181688] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5282), 1, sym_comment, - ACTIONS(8431), 5, + STATE(6059), 1, + sym__initializer, + ACTIONS(8573), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181628] = 6, + [181709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5283), 1, sym_comment, - STATE(5689), 1, + STATE(6036), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181649] = 6, + [181730] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5284), 1, sym_comment, - STATE(6030), 1, + STATE(5693), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181751] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5285), 1, + sym_comment, + STATE(5694), 1, sym__initializer, - ACTIONS(8872), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181670] = 8, + [181772] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(4597), 1, + STATE(4580), 1, sym__call_signature, - STATE(5285), 1, + STATE(5286), 1, sym_comment, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [181695] = 4, + [181797] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5286), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5287), 1, sym_comment, - ACTIONS(8447), 5, + STATE(5708), 1, + sym__initializer, + ACTIONS(8887), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181712] = 6, + [181818] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5287), 1, + STATE(5288), 1, sym_comment, - STATE(5646), 1, + STATE(6295), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181733] = 6, + [181839] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5288), 1, + STATE(5289), 1, sym_comment, - STATE(5706), 1, + STATE(6033), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181754] = 8, + [181860] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(4497), 1, + STATE(4593), 1, sym__call_signature, - STATE(5289), 1, + STATE(5290), 1, sym_comment, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [181779] = 4, + [181885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5290), 1, + STATE(5291), 1, sym_comment, - ACTIONS(8094), 5, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181796] = 8, + [181902] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, - sym_formal_parameters, - STATE(5220), 1, - sym__call_signature, - STATE(5291), 1, - sym_comment, - STATE(6358), 1, - sym_type_parameters, - [181821] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4128), 1, + STATE(4119), 1, sym_formal_parameters, - STATE(4467), 1, + STATE(5199), 1, sym__call_signature, STATE(5292), 1, sym_comment, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [181846] = 4, + [181927] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5293), 1, sym_comment, - ACTIONS(7978), 5, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181863] = 4, + [181944] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(4600), 1, + sym__call_signature, STATE(5294), 1, sym_comment, - ACTIONS(8094), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181880] = 4, + STATE(6380), 1, + sym_type_parameters, + [181969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5295), 1, sym_comment, - ACTIONS(8901), 5, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181897] = 4, + [181986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5296), 1, sym_comment, - ACTIONS(7978), 5, + ACTIONS(8903), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181914] = 4, + [182003] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, + sym_formal_parameters, + STATE(4558), 1, + sym__call_signature, STATE(5297), 1, sym_comment, - ACTIONS(8903), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181931] = 4, + STATE(6380), 1, + sym_type_parameters, + [182028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5298), 1, sym_comment, - ACTIONS(8905), 5, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181948] = 8, + [182045] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(4815), 1, - sym_formal_parameters, STATE(5299), 1, sym_comment, - STATE(6346), 1, - sym_type_parameters, - STATE(6673), 1, - sym__call_signature, - [181973] = 4, + ACTIONS(8905), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -360095,163 +360194,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181990] = 6, + [182079] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4817), 1, + sym_formal_parameters, STATE(5301), 1, sym_comment, - STATE(6292), 1, - sym__initializer, - ACTIONS(8577), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182011] = 6, + STATE(6363), 1, + sym_type_parameters, + STATE(6677), 1, + sym__call_signature, + [182104] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5302), 1, sym_comment, - STATE(6259), 1, + STATE(5723), 1, sym__initializer, - ACTIONS(8577), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182032] = 6, + [182125] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5303), 1, sym_comment, - STATE(5719), 1, + STATE(6265), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182053] = 8, + [182146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, - anon_sym_EQ, - ACTIONS(8909), 1, + STATE(5304), 1, + sym_comment, + ACTIONS(8909), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182163] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8597), 1, + anon_sym_EQ, ACTIONS(8911), 1, + anon_sym_COMMA, + ACTIONS(8913), 1, anon_sym_RBRACE, - STATE(5304), 1, + STATE(5305), 1, sym_comment, - STATE(6167), 1, + STATE(6173), 1, aux_sym_enum_body_repeat1, - STATE(6674), 1, + STATE(6678), 1, sym__initializer, - [182078] = 4, + [182188] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5305), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5306), 1, + sym_comment, + STATE(5731), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182209] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5307), 1, sym_comment, - ACTIONS(8913), 5, + ACTIONS(8915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182095] = 6, + [182226] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8891), 1, + anon_sym_LBRACE, + ACTIONS(8895), 1, + anon_sym_SEMI, + ACTIONS(8897), 1, + sym__automatic_semicolon, + ACTIONS(8899), 1, + sym__function_signature_automatic_semicolon, + STATE(1200), 1, + sym_statement_block, + STATE(5308), 1, + sym_comment, + [182251] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5306), 1, + STATE(5309), 1, sym_comment, - STATE(5733), 1, + STATE(5736), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182116] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8889), 1, - anon_sym_LBRACE, - ACTIONS(8893), 1, - anon_sym_SEMI, - ACTIONS(8895), 1, - sym__automatic_semicolon, - ACTIONS(8897), 1, - sym__function_signature_automatic_semicolon, - STATE(1124), 1, - sym_statement_block, - STATE(5307), 1, - sym_comment, - [182141] = 7, + [182272] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5308), 1, + STATE(5310), 1, sym_comment, - ACTIONS(8915), 2, + ACTIONS(8917), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182164] = 6, + [182295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5309), 1, + STATE(5311), 1, sym_comment, - STATE(5735), 1, + STATE(5739), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182185] = 4, + [182316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5310), 1, + STATE(5312), 1, + sym_comment, + ACTIONS(8919), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182333] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5313), 1, sym_comment, - ACTIONS(5928), 5, + ACTIONS(5989), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [182202] = 4, + [182350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5311), 1, + STATE(5314), 1, sym_comment, ACTIONS(5970), 5, anon_sym_EQ, @@ -360259,1269 +360401,1242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [182219] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5312), 1, - sym_comment, - ACTIONS(8917), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182236] = 8, + [182367] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7272), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(4303), 1, + STATE(4226), 1, sym_formal_parameters, - STATE(4730), 1, + STATE(4708), 1, sym__call_signature, - STATE(5313), 1, + STATE(5315), 1, sym_comment, - STATE(6464), 1, + STATE(6465), 1, sym_type_parameters, - [182261] = 6, + [182392] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5314), 1, + STATE(5316), 1, sym_comment, - STATE(6005), 1, + STATE(6009), 1, sym__initializer, - ACTIONS(8919), 3, + ACTIONS(8921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182282] = 6, + [182413] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5315), 1, + STATE(5317), 1, sym_comment, - STATE(5994), 1, + STATE(5995), 1, sym__initializer, - ACTIONS(8921), 3, + ACTIONS(8923), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182303] = 8, + [182434] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(5316), 1, + STATE(5318), 1, sym_comment, - STATE(5980), 1, + STATE(5983), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [182328] = 6, + [182459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5317), 1, + STATE(5319), 1, sym_comment, - STATE(5979), 1, + STATE(5982), 1, sym__initializer, - ACTIONS(8864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182349] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5318), 1, - sym_comment, - ACTIONS(8186), 5, + ACTIONS(8866), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182366] = 6, + [182480] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5319), 1, + STATE(5320), 1, sym_comment, - STATE(5738), 1, + STATE(6034), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8874), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182387] = 6, + [182501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(5320), 1, + STATE(5321), 1, sym_comment, - STATE(5977), 1, - sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8308), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182408] = 4, + [182518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5321), 1, + STATE(5322), 1, sym_comment, - ACTIONS(8004), 5, + ACTIONS(8101), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182425] = 8, + [182535] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4128), 1, + ACTIONS(7256), 1, + anon_sym_LT, + STATE(4119), 1, sym_formal_parameters, - STATE(5322), 1, + STATE(5323), 1, sym_comment, STATE(5341), 1, sym__call_signature, - STATE(6358), 1, + STATE(6380), 1, sym_type_parameters, - [182450] = 6, + [182560] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5323), 1, + STATE(5324), 1, sym_comment, - STATE(5968), 1, + STATE(5751), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182471] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5324), 1, - sym_comment, - ACTIONS(7980), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182488] = 6, + [182581] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5325), 1, sym_comment, - STATE(5967), 1, + STATE(5765), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182509] = 6, + [182602] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5326), 1, sym_comment, - STATE(5750), 1, + STATE(5972), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182530] = 7, + [182623] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, STATE(5327), 1, sym_comment, - ACTIONS(8923), 2, + ACTIONS(8103), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182553] = 6, + anon_sym_PIPE_RBRACE, + [182640] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5328), 1, sym_comment, - STATE(5966), 1, - sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8925), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [182574] = 6, + [182663] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5329), 1, sym_comment, - STATE(5690), 1, + STATE(5970), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182595] = 6, + [182684] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5330), 1, sym_comment, - STATE(5768), 1, + STATE(5766), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182616] = 6, + [182705] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5331), 1, sym_comment, - STATE(5769), 1, + STATE(5696), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182637] = 6, + [182726] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5332), 1, sym_comment, - STATE(5778), 1, + STATE(5969), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182658] = 6, + [182747] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5333), 1, sym_comment, - STATE(5964), 1, + STATE(5782), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182679] = 5, + [182768] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6528), 1, - sym__automatic_semicolon, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5334), 1, sym_comment, - ACTIONS(2352), 4, + STATE(5783), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182698] = 6, + [182789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5335), 1, sym_comment, - STATE(5963), 1, + STATE(5968), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182719] = 7, + [182810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, STATE(5336), 1, sym_comment, - ACTIONS(8925), 2, + ACTIONS(8927), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182742] = 5, + [182833] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6526), 1, - sym__automatic_semicolon, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5337), 1, sym_comment, - ACTIONS(2366), 4, + STATE(5965), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182761] = 5, + [182854] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6272), 1, - sym__automatic_semicolon, + ACTIONS(7258), 1, + anon_sym_EQ, STATE(5338), 1, sym_comment, - ACTIONS(2370), 4, + STATE(5953), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182780] = 6, + [182875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(6498), 1, + sym__automatic_semicolon, STATE(5339), 1, sym_comment, - STATE(5950), 1, - sym__initializer, - ACTIONS(8887), 3, - sym__automatic_semicolon, + ACTIONS(2370), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182801] = 5, + anon_sym_PIPE_RBRACE, + [182894] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6435), 1, - sym__automatic_semicolon, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5340), 1, sym_comment, - ACTIONS(2388), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(8929), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182820] = 4, + [182917] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5341), 1, sym_comment, - ACTIONS(7974), 5, + ACTIONS(8055), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182837] = 6, + [182934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(6349), 1, + sym__automatic_semicolon, STATE(5342), 1, sym_comment, - STATE(5948), 1, - sym__initializer, - ACTIONS(8864), 3, - sym__automatic_semicolon, + ACTIONS(2354), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182858] = 7, + anon_sym_PIPE_RBRACE, + [182953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, + ACTIONS(6601), 1, + sym__automatic_semicolon, STATE(5343), 1, sym_comment, - ACTIONS(8927), 2, - sym__automatic_semicolon, + ACTIONS(2318), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182881] = 8, + anon_sym_PIPE_RBRACE, + [182972] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8929), 1, - anon_sym_LBRACE, ACTIONS(8931), 1, - anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(8933), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8935), 1, + sym__automatic_semicolon, + ACTIONS(8937), 1, sym__function_signature_automatic_semicolon, - STATE(998), 1, + STATE(983), 1, sym_statement_block, STATE(5344), 1, sym_comment, - [182906] = 6, + [182997] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, - anon_sym_EQ, + ACTIONS(6585), 1, + sym__automatic_semicolon, STATE(5345), 1, sym_comment, - STATE(5947), 1, - sym__initializer, - ACTIONS(8864), 3, - sym__automatic_semicolon, + ACTIONS(2328), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182927] = 8, + anon_sym_PIPE_RBRACE, + [183016] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(8937), 1, - anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACE, STATE(5346), 1, sym_comment, - STATE(6252), 1, - aux_sym_enum_body_repeat1, - STATE(6674), 1, + STATE(5952), 1, sym__initializer, - [182952] = 6, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183037] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5347), 1, sym_comment, - STATE(5894), 1, + STATE(5951), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182973] = 6, + [183058] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8597), 1, anon_sym_EQ, + ACTIONS(8939), 1, + anon_sym_COMMA, + ACTIONS(8941), 1, + anon_sym_RBRACE, STATE(5348), 1, sym_comment, - STATE(5912), 1, + STATE(6246), 1, + aux_sym_enum_body_repeat1, + STATE(6678), 1, sym__initializer, - ACTIONS(8887), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182994] = 6, + [183083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5349), 1, sym_comment, - STATE(5901), 1, + STATE(5927), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183015] = 6, + [183104] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5350), 1, sym_comment, - STATE(5900), 1, + STATE(5906), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183036] = 6, + [183125] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, STATE(5351), 1, sym_comment, - STATE(6233), 1, + STATE(5903), 1, sym__initializer, - ACTIONS(8941), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183057] = 8, + [183146] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8931), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5352), 1, + sym_comment, + STATE(5981), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [183167] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(8933), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8935), 1, + sym__automatic_semicolon, + ACTIONS(8937), 1, sym__function_signature_automatic_semicolon, ACTIONS(8943), 1, anon_sym_LBRACE, - STATE(303), 1, + STATE(318), 1, sym_statement_block, - STATE(5352), 1, + STATE(5353), 1, sym_comment, - [183082] = 6, + [183192] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5353), 1, + STATE(5354), 1, sym_comment, STATE(6234), 1, sym__initializer, - ACTIONS(8941), 3, + ACTIONS(8945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183103] = 7, + [183213] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_extends, - ACTIONS(8575), 1, + ACTIONS(8583), 1, anon_sym_PIPE, - STATE(5354), 1, + STATE(5355), 1, sym_comment, - ACTIONS(8945), 2, + ACTIONS(8947), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183126] = 8, + [183236] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8929), 1, - anon_sym_LBRACE, - ACTIONS(8947), 1, - anon_sym_SEMI, - ACTIONS(8949), 1, - sym__automatic_semicolon, - ACTIONS(8951), 1, - sym__function_signature_automatic_semicolon, - STATE(981), 1, - sym_statement_block, - STATE(5355), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5356), 1, sym_comment, - [183151] = 6, + STATE(6240), 1, + sym__initializer, + ACTIONS(8945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183257] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5356), 1, + STATE(5357), 1, sym_comment, - STATE(5886), 1, + STATE(5772), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183172] = 6, + [183278] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(8931), 1, + anon_sym_LBRACE, + ACTIONS(8949), 1, + anon_sym_SEMI, + ACTIONS(8951), 1, + sym__automatic_semicolon, + ACTIONS(8953), 1, + sym__function_signature_automatic_semicolon, + STATE(994), 1, + sym_statement_block, + STATE(5358), 1, + sym_comment, + [183303] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5357), 1, + STATE(5359), 1, sym_comment, - STATE(5879), 1, + STATE(5882), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183193] = 8, + [183324] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8000), 1, + ACTIONS(7941), 1, anon_sym_extends, - ACTIONS(8050), 1, + ACTIONS(8029), 1, anon_sym_LBRACE, - ACTIONS(8052), 1, + ACTIONS(8031), 1, anon_sym_LBRACE_PIPE, - STATE(1080), 1, + STATE(1180), 1, sym_object_type, - STATE(5358), 1, + STATE(5360), 1, sym_comment, - STATE(6282), 1, + STATE(6288), 1, sym_extends_type_clause, - [183218] = 6, + [183349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5359), 1, + STATE(5361), 1, sym_comment, - STATE(5876), 1, + STATE(5881), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183239] = 6, + [183370] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5360), 1, + STATE(5362), 1, sym_comment, - STATE(5866), 1, + STATE(5880), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183260] = 6, + [183391] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5361), 1, + STATE(5363), 1, sym_comment, - STATE(5843), 1, + STATE(5870), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183281] = 6, + [183412] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5362), 1, + STATE(5364), 1, sym_comment, - STATE(5830), 1, + STATE(5843), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183302] = 8, + [183433] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8943), 1, anon_sym_LBRACE, - ACTIONS(8947), 1, - anon_sym_SEMI, ACTIONS(8949), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(8951), 1, + sym__automatic_semicolon, + ACTIONS(8953), 1, sym__function_signature_automatic_semicolon, - STATE(315), 1, + STATE(328), 1, sym_statement_block, - STATE(5363), 1, + STATE(5365), 1, sym_comment, - [183327] = 6, + [183458] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5364), 1, + STATE(5366), 1, sym_comment, - STATE(5827), 1, + STATE(5831), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183348] = 6, + [183479] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5367), 1, sym_comment, - STATE(6239), 1, + STATE(6258), 1, sym__initializer, - ACTIONS(8941), 3, + ACTIONS(8945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183369] = 6, + [183500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5366), 1, + STATE(5368), 1, sym_comment, - STATE(5779), 1, + STATE(6241), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183390] = 6, + [183521] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5367), 1, + STATE(5369), 1, sym_comment, - STATE(6236), 1, + STATE(5784), 1, sym__initializer, - ACTIONS(8941), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183411] = 6, + [183542] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5368), 1, + STATE(5370), 1, sym_comment, - STATE(5825), 1, + STATE(5829), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183432] = 6, + [183563] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5369), 1, + STATE(5371), 1, sym_comment, - STATE(5807), 1, + STATE(5827), 1, sym__initializer, - ACTIONS(8887), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183453] = 6, + [183584] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5370), 1, + STATE(5372), 1, sym_comment, - STATE(5795), 1, + STATE(5810), 1, sym__initializer, ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183474] = 6, + [183605] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5371), 1, + STATE(5373), 1, sym_comment, - STATE(5782), 1, + STATE(5787), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183495] = 6, + [183626] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7244), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5372), 1, + STATE(5374), 1, sym_comment, - STATE(5781), 1, + STATE(5785), 1, sym__initializer, - ACTIONS(8864), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183516] = 7, + [183647] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, + ACTIONS(8081), 1, anon_sym_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(8957), 1, anon_sym_GT, - STATE(5373), 1, + STATE(5375), 1, sym_comment, - STATE(6256), 1, + STATE(6262), 1, aux_sym_type_arguments_repeat1, - [183538] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183669] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8957), 1, - anon_sym_DQUOTE, - STATE(5374), 1, - sym_comment, - STATE(5435), 1, - aux_sym_string_repeat1, - ACTIONS(8959), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183558] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8957), 1, - anon_sym_SQUOTE, - STATE(5375), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5376), 1, sym_comment, - STATE(5436), 1, - aux_sym_string_repeat2, - ACTIONS(8961), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183578] = 6, + STATE(6301), 1, + sym__from_clause, + ACTIONS(6007), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183689] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8963), 1, + ACTIONS(8961), 1, anon_sym_SQUOTE, - STATE(5376), 1, + STATE(5377), 1, sym_comment, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183598] = 6, + [183709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8965), 1, - anon_sym_from, - STATE(5377), 1, + anon_sym_COMMA, + STATE(5378), 1, sym_comment, - STATE(6295), 1, - sym__from_clause, - ACTIONS(6043), 2, + STATE(5502), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8967), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183618] = 6, + [183729] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8963), 1, + ACTIONS(8969), 1, anon_sym_DQUOTE, - STATE(5378), 1, + STATE(5379), 1, sym_comment, - STATE(5530), 1, + STATE(5440), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183638] = 6, + [183749] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(8969), 1, + anon_sym_SQUOTE, + STATE(5380), 1, + sym_comment, + STATE(5441), 1, + aux_sym_string_repeat2, + ACTIONS(8963), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183769] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, - anon_sym_COMMA, - STATE(5379), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8961), 1, + anon_sym_DQUOTE, + STATE(5381), 1, sym_comment, - STATE(5501), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183658] = 6, + STATE(5536), 1, + aux_sym_string_repeat1, + ACTIONS(8971), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5380), 1, + STATE(5382), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8971), 2, + ACTIONS(8973), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183678] = 6, + [183809] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5380), 1, + STATE(5382), 1, aux_sym_variable_declaration_repeat1, - STATE(5381), 1, + STATE(5383), 1, sym_comment, - ACTIONS(8973), 2, + ACTIONS(8975), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183698] = 6, + [183829] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5379), 1, + STATE(5378), 1, aux_sym_variable_declaration_repeat1, - STATE(5382), 1, + STATE(5384), 1, sym_comment, - ACTIONS(8975), 2, + ACTIONS(8977), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183718] = 6, + [183849] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8977), 1, + ACTIONS(8979), 1, anon_sym_DQUOTE, - STATE(5383), 1, + STATE(5385), 1, sym_comment, - STATE(5390), 1, + STATE(5392), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183738] = 6, + [183869] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5384), 1, + STATE(5386), 1, sym_comment, - STATE(6322), 1, + STATE(6323), 1, sym__from_clause, - ACTIONS(8979), 2, + ACTIONS(8981), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183758] = 6, + [183889] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8977), 1, + ACTIONS(8979), 1, anon_sym_SQUOTE, - STATE(5385), 1, + STATE(5387), 1, sym_comment, - STATE(5392), 1, + STATE(5393), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183778] = 6, + [183909] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8981), 1, + ACTIONS(8983), 1, anon_sym_SQUOTE, - STATE(5376), 1, + STATE(5377), 1, aux_sym_string_repeat2, - STATE(5386), 1, + STATE(5388), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183798] = 6, + [183929] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8981), 1, + ACTIONS(8983), 1, anon_sym_DQUOTE, - STATE(5378), 1, + STATE(5381), 1, aux_sym_string_repeat1, - STATE(5387), 1, + STATE(5389), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183818] = 6, + [183949] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5388), 1, + STATE(5390), 1, sym_comment, - STATE(5394), 1, + STATE(5396), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8983), 2, + ACTIONS(8985), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183838] = 6, + [183969] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5389), 1, + STATE(5391), 1, sym_comment, - STATE(5395), 1, + STATE(5397), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8985), 2, + ACTIONS(8987), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183858] = 6, + [183989] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8987), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - STATE(5390), 1, + STATE(5392), 1, sym_comment, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183878] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(8989), 1, - anon_sym_COLON, - STATE(5391), 1, - sym_comment, - [183900] = 6, + [184009] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8987), 1, + ACTIONS(8989), 1, anon_sym_SQUOTE, - STATE(5392), 1, + STATE(5393), 1, sym_comment, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183920] = 7, + [184029] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, - anon_sym_DOT, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, ACTIONS(8991), 1, - anon_sym_COMMA, - ACTIONS(8993), 1, - anon_sym_GT, - STATE(5393), 1, + anon_sym_COLON, + STATE(5394), 1, sym_comment, - STATE(6191), 1, - aux_sym_type_arguments_repeat1, - [183942] = 6, + [184051] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8081), 1, + anon_sym_DOT, + ACTIONS(8993), 1, anon_sym_COMMA, - STATE(5394), 1, + ACTIONS(8995), 1, + anon_sym_GT, + STATE(5395), 1, sym_comment, - STATE(5501), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183962] = 6, + STATE(6194), 1, + aux_sym_type_arguments_repeat1, + [184073] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5395), 1, + STATE(5396), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, ACTIONS(8997), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183982] = 6, + [184093] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8965), 1, - anon_sym_from, - STATE(5396), 1, + anon_sym_COMMA, + STATE(5397), 1, sym_comment, - STATE(6760), 1, - sym__from_clause, + STATE(5502), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(8999), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184002] = 7, + [184113] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361530,71 +361645,57 @@ static const uint16_t ts_small_parse_table[] = { sym__glimmer_template_content, ACTIONS(9003), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(2648), 1, + STATE(2611), 1, sym_glimmer_closing_tag, - STATE(5397), 1, + STATE(5398), 1, sym_comment, - STATE(5816), 1, + STATE(5818), 1, aux_sym_glimmer_template_repeat1, - [184024] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [184135] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9005), 1, - anon_sym_DQUOTE, - STATE(5398), 1, - sym_comment, - STATE(5402), 1, - aux_sym_string_repeat1, - ACTIONS(8959), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184044] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, ACTIONS(9005), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, STATE(5399), 1, sym_comment, - STATE(5403), 1, - aux_sym_string_repeat2, - ACTIONS(8961), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184064] = 7, + [184157] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, ACTIONS(9007), 1, anon_sym_RBRACK, STATE(5400), 1, sym_comment, - [184086] = 7, + [184179] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9009), 1, - anon_sym_RBRACK, + ACTIONS(8959), 1, + anon_sym_from, STATE(5401), 1, sym_comment, - [184108] = 6, + STATE(6760), 1, + sym__from_clause, + ACTIONS(9009), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184199] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361603,12 +361704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5402), 1, sym_comment, - STATE(5530), 1, + STATE(5407), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184128] = 6, + [184219] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361617,56 +361718,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(5403), 1, sym_comment, - STATE(5529), 1, + STATE(5408), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184148] = 6, + [184239] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_finally, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9013), 1, + anon_sym_RBRACK, STATE(5404), 1, sym_comment, - STATE(6611), 1, - sym_finally_clause, - ACTIONS(3181), 2, - anon_sym_else, - anon_sym_while, - [184168] = 7, + [184261] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9013), 1, - anon_sym_RBRACK, + ACTIONS(8408), 1, + anon_sym_finally, STATE(5405), 1, sym_comment, - [184190] = 7, + STATE(6613), 1, + sym_finally_clause, + ACTIONS(3191), 2, + anon_sym_else, + anon_sym_while, + [184281] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, ACTIONS(9015), 1, anon_sym_RBRACK, STATE(5406), 1, sym_comment, - [184212] = 6, + [184303] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361675,12 +361776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5407), 1, sym_comment, - STATE(5409), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184232] = 6, + [184323] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361689,12 +361790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(5408), 1, sym_comment, - STATE(5410), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184252] = 6, + [184343] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361703,12 +361804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, STATE(5409), 1, sym_comment, - STATE(5530), 1, + STATE(5411), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184272] = 6, + [184363] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361717,366 +361818,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(5410), 1, sym_comment, - STATE(5529), 1, + STATE(5412), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184292] = 7, + [184383] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, ACTIONS(9021), 1, - anon_sym_COLON, + anon_sym_DQUOTE, STATE(5411), 1, sym_comment, - [184314] = 6, + STATE(5536), 1, + aux_sym_string_repeat1, + ACTIONS(8971), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184403] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9023), 1, - anon_sym_DQUOTE, + ACTIONS(9021), 1, + anon_sym_SQUOTE, STATE(5412), 1, sym_comment, - STATE(5415), 1, - aux_sym_string_repeat1, - ACTIONS(8959), 2, - sym_unescaped_double_string_fragment, + STATE(5533), 1, + aux_sym_string_repeat2, + ACTIONS(8963), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [184334] = 7, + [184423] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - ACTIONS(9027), 1, - anon_sym_SEMI, - ACTIONS(9029), 1, - sym__automatic_semicolon, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9023), 1, + anon_sym_COLON, STATE(5413), 1, sym_comment, - STATE(6465), 1, - sym_import_attribute, - [184356] = 6, + [184445] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9023), 1, - anon_sym_SQUOTE, + ACTIONS(9025), 1, + anon_sym_DQUOTE, STATE(5414), 1, sym_comment, STATE(5416), 1, - aux_sym_string_repeat2, - ACTIONS(8961), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184376] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9031), 1, - anon_sym_DQUOTE, - STATE(5415), 1, - sym_comment, - STATE(5530), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184396] = 6, + [184465] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9031), 1, + ACTIONS(9025), 1, anon_sym_SQUOTE, - STATE(5416), 1, + STATE(5415), 1, sym_comment, - STATE(5529), 1, + STATE(5418), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184416] = 6, + [184485] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9033), 1, + ACTIONS(9027), 1, anon_sym_DQUOTE, - STATE(5417), 1, + STATE(5416), 1, sym_comment, - STATE(5423), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184436] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - STATE(5418), 1, - sym_comment, - STATE(6814), 1, - sym_import_attribute, - ACTIONS(9035), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184456] = 6, + [184505] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5419), 1, - sym_comment, - STATE(6816), 1, - sym_import_attribute, - ACTIONS(9037), 2, - sym__automatic_semicolon, + ACTIONS(9031), 1, anon_sym_SEMI, - [184476] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8967), 1, - anon_sym_COMMA, - STATE(5420), 1, - sym_comment, - STATE(5488), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9039), 2, + ACTIONS(9033), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [184496] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8967), 1, - anon_sym_COMMA, - STATE(5421), 1, + STATE(5417), 1, sym_comment, - STATE(5489), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184516] = 6, + STATE(6467), 1, + sym_import_attribute, + [184527] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9033), 1, + ACTIONS(9027), 1, anon_sym_SQUOTE, - STATE(5422), 1, + STATE(5418), 1, sym_comment, - STATE(5424), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184536] = 6, + [184547] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9043), 1, + ACTIONS(9035), 1, anon_sym_DQUOTE, - STATE(5423), 1, + STATE(5419), 1, sym_comment, - STATE(5530), 1, + STATE(5421), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184556] = 6, + [184567] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9043), 1, + ACTIONS(9035), 1, anon_sym_SQUOTE, - STATE(5424), 1, + STATE(5420), 1, sym_comment, - STATE(5529), 1, + STATE(5422), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184576] = 6, + [184587] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9045), 1, + ACTIONS(9037), 1, anon_sym_DQUOTE, - STATE(5425), 1, + STATE(5421), 1, sym_comment, - STATE(5427), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184596] = 6, + [184607] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9045), 1, + ACTIONS(9037), 1, anon_sym_SQUOTE, - STATE(5426), 1, + STATE(5422), 1, sym_comment, - STATE(5428), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184616] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [184627] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9047), 1, - anon_sym_DQUOTE, - STATE(5427), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5423), 1, sym_comment, - STATE(5530), 1, - aux_sym_string_repeat1, - ACTIONS(8959), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184636] = 6, - ACTIONS(3), 1, + STATE(6888), 1, + sym_import_attribute, + ACTIONS(9039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184647] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5424), 1, + sym_comment, + STATE(6820), 1, + sym_import_attribute, + ACTIONS(9041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184667] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9047), 1, - anon_sym_SQUOTE, - STATE(5428), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COMMA, + STATE(5425), 1, sym_comment, - STATE(5529), 1, - aux_sym_string_repeat2, - ACTIONS(8961), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184656] = 7, + STATE(5493), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184687] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9049), 1, - anon_sym_RPAREN, + ACTIONS(8965), 1, + anon_sym_COMMA, + STATE(5426), 1, + sym_comment, + STATE(5494), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9045), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184707] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9047), 1, + anon_sym_DQUOTE, + STATE(5427), 1, + sym_comment, STATE(5429), 1, + aux_sym_string_repeat1, + ACTIONS(8971), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184727] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9047), 1, + anon_sym_SQUOTE, + STATE(5428), 1, sym_comment, - [184678] = 6, + STATE(5430), 1, + aux_sym_string_repeat2, + ACTIONS(8963), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184747] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9051), 1, + ACTIONS(9049), 1, anon_sym_DQUOTE, - STATE(5430), 1, + STATE(5429), 1, sym_comment, - STATE(5433), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184698] = 6, + [184767] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9051), 1, + ACTIONS(9049), 1, anon_sym_SQUOTE, - STATE(5431), 1, + STATE(5430), 1, sym_comment, - STATE(5434), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184718] = 7, + [184787] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, - anon_sym_LPAREN, - ACTIONS(7198), 1, - anon_sym_LT, - STATE(4076), 1, - sym_arguments, - STATE(4294), 1, - sym_type_arguments, - STATE(5432), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9051), 1, + anon_sym_RPAREN, + STATE(5431), 1, sym_comment, - [184740] = 6, + [184809] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9053), 1, anon_sym_DQUOTE, - STATE(5433), 1, + STATE(5432), 1, sym_comment, - STATE(5530), 1, + STATE(5434), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184760] = 6, + [184829] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9053), 1, anon_sym_SQUOTE, - STATE(5434), 1, + STATE(5433), 1, sym_comment, - STATE(5529), 1, + STATE(5436), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184780] = 6, + [184849] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9055), 1, anon_sym_DQUOTE, - STATE(5435), 1, + STATE(5434), 1, sym_comment, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184800] = 6, + [184869] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7222), 1, + anon_sym_LT, + STATE(4098), 1, + sym_arguments, + STATE(4298), 1, + sym_type_arguments, + STATE(5435), 1, + sym_comment, + [184891] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -362085,1620 +362186,1645 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(5436), 1, sym_comment, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184820] = 7, + [184911] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, ACTIONS(9057), 1, anon_sym_RBRACK, STATE(5437), 1, sym_comment, - [184842] = 6, + [184933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, STATE(5438), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, ACTIONS(9059), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184862] = 6, + [184953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, STATE(5439), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, ACTIONS(9061), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184882] = 7, + [184973] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, ACTIONS(9063), 1, - anon_sym_SEMI, - ACTIONS(9065), 1, - sym__automatic_semicolon, + anon_sym_DQUOTE, STATE(5440), 1, sym_comment, - STATE(6492), 1, - sym_import_attribute, - [184904] = 6, + STATE(5536), 1, + aux_sym_string_repeat1, + ACTIONS(8971), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184993] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, + ACTIONS(9063), 1, + anon_sym_SQUOTE, STATE(5441), 1, sym_comment, - STATE(6495), 1, - sym_import_attribute, - ACTIONS(9067), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184924] = 7, + STATE(5533), 1, + aux_sym_string_repeat2, + ACTIONS(8963), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185013] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9069), 1, + ACTIONS(9065), 1, anon_sym_RBRACK, STATE(5442), 1, sym_comment, - [184946] = 6, + [185035] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, + ACTIONS(9067), 1, + anon_sym_SEMI, + ACTIONS(9069), 1, + sym__automatic_semicolon, STATE(5443), 1, sym_comment, + STATE(6496), 1, + sym_import_attribute, + [185057] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5444), 1, + sym_comment, STATE(6499), 1, sym_import_attribute, ACTIONS(9071), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184966] = 7, + [185077] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5445), 1, + sym_comment, + STATE(6501), 1, + sym_import_attribute, + ACTIONS(9073), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185097] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(9073), 1, + ACTIONS(9075), 1, anon_sym_class, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5444), 1, + STATE(5446), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [184988] = 7, + [185119] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5445), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5447), 1, sym_comment, - STATE(6589), 1, + STATE(6595), 1, sym_type_parameters, - STATE(6959), 1, + STATE(6963), 1, sym_formal_parameters, - [185010] = 6, + [185141] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8605), 1, - anon_sym_EQ, - STATE(5446), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5448), 1, sym_comment, - STATE(6674), 1, - sym__initializer, - ACTIONS(9075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [185030] = 6, + STATE(6507), 1, + sym__from_clause, + ACTIONS(5926), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185161] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5447), 1, + ACTIONS(8597), 1, + anon_sym_EQ, + STATE(5449), 1, sym_comment, - STATE(6506), 1, - sym__from_clause, - ACTIONS(5980), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185050] = 6, + STATE(6678), 1, + sym__initializer, + ACTIONS(9077), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [185181] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9077), 1, - anon_sym_LBRACE, ACTIONS(9079), 1, + anon_sym_LBRACE, + ACTIONS(9081), 1, anon_sym_COMMA, - ACTIONS(9082), 1, + ACTIONS(9084), 1, anon_sym_LBRACE_PIPE, - STATE(5448), 2, + STATE(5450), 2, sym_comment, aux_sym_extends_type_clause_repeat1, - [185070] = 7, + [185201] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9084), 1, + ACTIONS(9086), 1, anon_sym_COLON, - STATE(5449), 1, + STATE(5451), 1, sym_comment, - [185092] = 7, + [185223] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5450), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5452), 1, sym_comment, - STATE(6610), 1, + STATE(6616), 1, sym_type_parameters, - STATE(7146), 1, + STATE(7156), 1, sym_formal_parameters, - [185114] = 7, + [185245] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, ACTIONS(9088), 1, - anon_sym_const, + sym_identifier, ACTIONS(9090), 1, + anon_sym_const, + ACTIONS(9092), 1, anon_sym_GT, - STATE(5451), 1, + STATE(5453), 1, sym_comment, - STATE(6833), 1, + STATE(6838), 1, sym_type_parameter, - [185136] = 7, + [185267] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9092), 1, + ACTIONS(9094), 1, anon_sym_RBRACK, - STATE(5452), 1, - sym_comment, - [185158] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5453), 1, + STATE(5454), 1, sym_comment, - ACTIONS(3335), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(9094), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185176] = 7, + [185289] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, + ACTIONS(8081), 1, anon_sym_DOT, ACTIONS(9096), 1, anon_sym_COMMA, ACTIONS(9098), 1, anon_sym_GT, - STATE(5454), 1, + STATE(5455), 1, sym_comment, - STATE(6075), 1, + STATE(6081), 1, aux_sym_type_arguments_repeat1, - [185198] = 7, + [185311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5456), 1, + sym_comment, + ACTIONS(3287), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(9100), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185329] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9100), 1, + ACTIONS(9102), 1, anon_sym_RBRACK, - STATE(5455), 1, + STATE(5457), 1, sym_comment, - [185220] = 7, + [185351] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9102), 1, + ACTIONS(9104), 1, anon_sym_RBRACK, - STATE(5456), 1, + STATE(5458), 1, sym_comment, - [185242] = 7, + [185373] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(8021), 1, anon_sym_COMMA, - ACTIONS(9104), 1, - anon_sym_LBRACE, ACTIONS(9106), 1, + anon_sym_LBRACE, + ACTIONS(9108), 1, anon_sym_LBRACE_PIPE, - STATE(5448), 1, + STATE(5450), 1, aux_sym_extends_type_clause_repeat1, - STATE(5457), 1, + STATE(5459), 1, sym_comment, - [185264] = 7, + [185395] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(8021), 1, anon_sym_COMMA, - ACTIONS(9104), 1, - anon_sym_LBRACE, ACTIONS(9106), 1, + anon_sym_LBRACE, + ACTIONS(9108), 1, anon_sym_LBRACE_PIPE, - STATE(5448), 1, + STATE(5450), 1, aux_sym_extends_type_clause_repeat1, - STATE(5458), 1, + STATE(5460), 1, sym_comment, - [185286] = 7, + [185417] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(8021), 1, anon_sym_COMMA, - ACTIONS(9108), 1, - anon_sym_LBRACE, ACTIONS(9110), 1, + anon_sym_LBRACE, + ACTIONS(9112), 1, anon_sym_LBRACE_PIPE, - STATE(5448), 1, + STATE(5450), 1, aux_sym_extends_type_clause_repeat1, - STATE(5459), 1, + STATE(5461), 1, sym_comment, - [185308] = 7, + [185439] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9112), 1, + ACTIONS(9114), 1, sym_identifier, - STATE(5219), 1, + STATE(5222), 1, sym_nested_type_identifier, - STATE(5460), 1, + STATE(5462), 1, sym_comment, - STATE(6059), 1, + STATE(6058), 1, sym_generic_type, - STATE(6953), 1, + STATE(6959), 1, sym_nested_identifier, - [185330] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7923), 1, - anon_sym_DOT, - ACTIONS(9114), 1, - anon_sym_COMMA, - ACTIONS(9116), 1, - anon_sym_GT, - STATE(5461), 1, - sym_comment, - STATE(5811), 1, - aux_sym_type_arguments_repeat1, - [185352] = 7, + [185461] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - ACTIONS(9118), 1, + ACTIONS(9116), 1, anon_sym_SEMI, - ACTIONS(9120), 1, + ACTIONS(9118), 1, sym__automatic_semicolon, - STATE(5462), 1, + STATE(5463), 1, sym_comment, - STATE(6549), 1, + STATE(6542), 1, sym_import_attribute, - [185374] = 5, + [185483] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9124), 1, + ACTIONS(9122), 1, anon_sym_COMMA, - ACTIONS(9122), 2, + ACTIONS(9120), 2, anon_sym_LBRACE, anon_sym_implements, - STATE(5463), 2, + STATE(5464), 2, sym_comment, aux_sym_extends_clause_repeat1, - [185392] = 6, + [185501] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9127), 1, + ACTIONS(9125), 1, anon_sym_EQ, - STATE(5464), 1, + STATE(5465), 1, sym_comment, - STATE(6652), 1, + STATE(6656), 1, sym__initializer, - ACTIONS(7539), 2, + ACTIONS(7549), 2, anon_sym_in, anon_sym_of, - [185412] = 6, + [185521] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8081), 1, + anon_sym_DOT, + ACTIONS(9127), 1, + anon_sym_COMMA, + ACTIONS(9129), 1, + anon_sym_GT, + STATE(5466), 1, + sym_comment, + STATE(5814), 1, + aux_sym_type_arguments_repeat1, + [185543] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5467), 1, + sym_comment, + STATE(6793), 1, + sym_type_parameters, + STATE(7023), 1, + sym_formal_parameters, + [185565] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9129), 1, + ACTIONS(9131), 1, anon_sym_SQUOTE, - STATE(5465), 1, + STATE(5468), 1, sym_comment, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185432] = 6, + [185585] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9129), 1, + ACTIONS(9131), 1, anon_sym_DQUOTE, - STATE(5466), 1, + STATE(5469), 1, sym_comment, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185452] = 7, + [185605] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(5467), 1, + ACTIONS(8021), 1, + anon_sym_COMMA, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(8344), 1, + anon_sym_LBRACE_PIPE, + STATE(5459), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5470), 1, sym_comment, - STATE(6787), 1, - sym_type_parameters, - STATE(7013), 1, - sym_formal_parameters, - [185474] = 6, + [185627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, STATE(5438), 1, aux_sym_variable_declaration_repeat1, - STATE(5468), 1, + STATE(5471), 1, sym_comment, - ACTIONS(9131), 2, + ACTIONS(9133), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185494] = 6, + [185647] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, STATE(5439), 1, aux_sym_variable_declaration_repeat1, - STATE(5469), 1, + STATE(5472), 1, sym_comment, - ACTIONS(9133), 2, + ACTIONS(9135), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185514] = 6, + [185667] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5470), 1, + STATE(5473), 1, sym_comment, - STATE(6605), 1, + STATE(6591), 1, sym_import_attribute, - ACTIONS(9135), 2, + ACTIONS(9137), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185534] = 6, + [185687] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5471), 1, + STATE(5474), 1, sym_comment, - STATE(6606), 1, + STATE(6593), 1, sym_import_attribute, - ACTIONS(9137), 2, + ACTIONS(9139), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185554] = 7, + [185707] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5472), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5475), 1, sym_comment, - STATE(6795), 1, + STATE(6801), 1, sym_type_parameters, - STATE(7275), 1, + STATE(7279), 1, sym_formal_parameters, - [185576] = 6, + [185729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5473), 1, + STATE(5476), 1, sym_comment, - STATE(6619), 1, - sym__from_clause, - ACTIONS(9139), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185596] = 6, + ACTIONS(9141), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [185745] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5474), 1, + STATE(5477), 1, sym_comment, - STATE(6616), 1, + STATE(6611), 1, sym__from_clause, - ACTIONS(5993), 2, + ACTIONS(9143), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185616] = 7, + [185765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(8320), 1, - anon_sym_LBRACE, - ACTIONS(8322), 1, - anon_sym_LBRACE_PIPE, - STATE(5457), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5475), 1, + STATE(5478), 1, sym_comment, - [185638] = 4, + ACTIONS(9145), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185781] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5476), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5479), 1, sym_comment, - ACTIONS(9141), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [185654] = 7, + STATE(6628), 1, + sym__from_clause, + ACTIONS(5890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185801] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, anon_sym_const, - ACTIONS(9143), 1, + ACTIONS(9147), 1, anon_sym_GT, - STATE(5477), 1, + STATE(5480), 1, sym_comment, - STATE(6833), 1, + STATE(6838), 1, sym_type_parameter, - [185676] = 6, + [185823] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9149), 1, + anon_sym_RBRACK, + STATE(5481), 1, + sym_comment, + [185845] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9145), 1, + ACTIONS(9151), 1, anon_sym_SQUOTE, - STATE(5465), 1, + STATE(5468), 1, aux_sym_string_repeat2, - STATE(5478), 1, + STATE(5482), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185696] = 6, + [185865] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9145), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - STATE(5466), 1, + STATE(5469), 1, aux_sym_string_repeat1, - STATE(5479), 1, + STATE(5483), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185716] = 7, + [185885] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9147), 1, - anon_sym_RBRACK, - STATE(5480), 1, + ACTIONS(9153), 1, + anon_sym_QMARK, + STATE(5484), 1, sym_comment, - [185738] = 7, + [185907] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9149), 1, - anon_sym_QMARK, - STATE(5481), 1, + ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, + anon_sym_const, + ACTIONS(9155), 1, + anon_sym_GT, + STATE(5485), 1, sym_comment, - [185760] = 5, + STATE(6838), 1, + sym_type_parameter, + [185929] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8747), 1, + ACTIONS(8749), 1, anon_sym_RBRACE, - STATE(5482), 1, + STATE(5486), 1, sym_comment, - ACTIONS(5280), 3, + ACTIONS(5067), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [185778] = 6, + [185947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9157), 1, + sym_escape_sequence, + STATE(5487), 1, + sym_comment, + ACTIONS(9159), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185965] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5483), 1, + STATE(5488), 1, sym_comment, - STATE(6565), 1, + STATE(6564), 1, sym_import_attribute, - ACTIONS(9151), 2, + ACTIONS(9162), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185798] = 6, + [185985] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5484), 1, + STATE(5489), 1, sym_comment, - STATE(6561), 1, + STATE(6562), 1, sym_import_attribute, - ACTIONS(9153), 2, + ACTIONS(9164), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185818] = 7, + [186005] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - ACTIONS(9155), 1, + ACTIONS(9166), 1, anon_sym_SEMI, - ACTIONS(9157), 1, + ACTIONS(9168), 1, sym__automatic_semicolon, - STATE(5485), 1, + STATE(5490), 1, sym_comment, - STATE(6557), 1, + STATE(6544), 1, sym_import_attribute, - [185840] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186027] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_const, - ACTIONS(9159), 1, - anon_sym_GT, - STATE(5486), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7408), 1, + anon_sym_EQ, + STATE(5491), 1, sym_comment, - STATE(6833), 1, - sym_type_parameter, - [185862] = 5, + STATE(6692), 1, + sym_default_type, + ACTIONS(9170), 2, + anon_sym_COMMA, + anon_sym_GT, + [186047] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9161), 1, - sym_escape_sequence, - STATE(5487), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5492), 1, sym_comment, - ACTIONS(9163), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [185880] = 6, + STATE(6911), 1, + sym_type_parameters, + STATE(7068), 1, + sym_formal_parameters, + [186069] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5488), 1, + STATE(5493), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9166), 2, + ACTIONS(9172), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185900] = 6, + [186089] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5489), 1, + STATE(5494), 1, sym_comment, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9168), 2, + ACTIONS(9174), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185920] = 6, + [186109] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7394), 1, - anon_sym_EQ, - STATE(5490), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9176), 1, + anon_sym_COLON, + STATE(5495), 1, sym_comment, - STATE(6688), 1, - sym_default_type, - ACTIONS(9170), 2, - anon_sym_COMMA, - anon_sym_GT, - [185940] = 7, + [186131] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5491), 1, + STATE(4438), 1, + sym_formal_parameters, + STATE(5496), 1, sym_comment, - STATE(6905), 1, + STATE(6706), 1, sym_type_parameters, - STATE(7078), 1, - sym_formal_parameters, - [185962] = 7, + [186153] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9172), 1, - anon_sym_COLON, - STATE(5492), 1, + ACTIONS(9178), 1, + anon_sym_RPAREN, + STATE(5497), 1, sym_comment, - [185984] = 7, + [186175] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(7260), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(4485), 1, - sym_formal_parameters, - STATE(5493), 1, + STATE(5498), 1, sym_comment, - STATE(6702), 1, + STATE(6919), 1, sym_type_parameters, - [186006] = 7, + STATE(6973), 1, + sym_formal_parameters, + [186197] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(9180), 1, anon_sym_LT, - STATE(5494), 1, - sym_comment, - STATE(6913), 1, - sym_type_parameters, - STATE(6980), 1, - sym_formal_parameters, - [186028] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9174), 1, - anon_sym_RPAREN, - STATE(5495), 1, + STATE(2982), 1, + sym_arguments, + STATE(2983), 1, + sym_type_arguments, + STATE(5499), 1, sym_comment, - [186050] = 6, + [186219] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9178), 1, + ACTIONS(9184), 1, anon_sym_COMMA, - STATE(5463), 1, + STATE(5464), 1, aux_sym_extends_clause_repeat1, - STATE(5496), 1, + STATE(5500), 1, sym_comment, - ACTIONS(9176), 2, + ACTIONS(9182), 2, anon_sym_LBRACE, anon_sym_implements, - [186070] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - ACTIONS(9180), 1, - anon_sym_LT, - STATE(2977), 1, - sym_arguments, - STATE(2979), 1, - sym_type_arguments, - STATE(5497), 1, - sym_comment, - [186092] = 6, + [186239] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8024), 1, + ACTIONS(8037), 1, anon_sym_EQ, - STATE(5498), 1, + STATE(5501), 1, sym_comment, - STATE(6739), 1, + STATE(6743), 1, sym__initializer, - ACTIONS(9182), 2, + ACTIONS(9186), 2, anon_sym_COMMA, anon_sym_RPAREN, - [186112] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9184), 1, - anon_sym_RBRACK, - STATE(5499), 1, - sym_comment, - [186134] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_LT, - STATE(5500), 1, - sym_comment, - STATE(6892), 1, - sym_type_parameters, - STATE(7202), 1, - sym_formal_parameters, - [186156] = 5, + [186259] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9186), 1, + ACTIONS(9188), 1, anon_sym_COMMA, - ACTIONS(9189), 2, + ACTIONS(9191), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5501), 2, + STATE(5502), 2, sym_comment, aux_sym_variable_declaration_repeat1, - [186174] = 7, + [186277] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5502), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5503), 1, sym_comment, - STATE(6877), 1, + STATE(6891), 1, sym_type_parameters, - STATE(7243), 1, + STATE(7222), 1, sym_formal_parameters, - [186196] = 7, + [186299] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_LPAREN, - ACTIONS(7134), 1, - anon_sym_LT, - STATE(3961), 1, - sym_arguments, - STATE(4080), 1, - sym_type_arguments, - STATE(5503), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9193), 1, + anon_sym_RBRACK, + STATE(5504), 1, sym_comment, - [186218] = 7, + [186321] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - ACTIONS(9191), 1, - anon_sym_SEMI, - ACTIONS(9193), 1, - sym__automatic_semicolon, - STATE(5504), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5505), 1, sym_comment, - STATE(6785), 1, - sym_import_attribute, - [186240] = 6, + STATE(6883), 1, + sym_type_parameters, + STATE(7248), 1, + sym_formal_parameters, + [186343] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - STATE(5505), 1, + STATE(5506), 1, sym_comment, ACTIONS(9195), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186260] = 6, + [186363] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - STATE(5506), 1, + STATE(5507), 1, sym_comment, ACTIONS(9197), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186280] = 7, + [186383] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(3963), 1, + sym_arguments, + STATE(4085), 1, + sym_type_arguments, + STATE(5508), 1, + sym_comment, + [186405] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, anon_sym_with, ACTIONS(9199), 1, anon_sym_SEMI, ACTIONS(9201), 1, sym__automatic_semicolon, - STATE(5507), 1, + STATE(5509), 1, sym_comment, - STATE(6700), 1, + STATE(6787), 1, sym_import_attribute, - [186302] = 6, + [186427] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5508), 1, + ACTIONS(9203), 1, + anon_sym_SEMI, + ACTIONS(9205), 1, + sym__automatic_semicolon, + STATE(5510), 1, sym_comment, - STATE(6704), 1, + STATE(6703), 1, sym_import_attribute, - ACTIONS(9203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186322] = 6, + [186449] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5509), 1, + STATE(5511), 1, sym_comment, - STATE(6705), 1, + STATE(6707), 1, sym_import_attribute, - ACTIONS(9205), 2, + ACTIONS(9207), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186342] = 7, + [186469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9207), 1, - anon_sym_RPAREN, - STATE(5510), 1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5512), 1, sym_comment, - [186364] = 6, + STATE(6708), 1, + sym_import_attribute, + ACTIONS(9209), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4640), 1, + ACTIONS(4642), 1, anon_sym_COLON, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_EQ, - STATE(5511), 1, + STATE(5513), 1, sym_comment, - ACTIONS(9209), 2, + ACTIONS(9211), 2, anon_sym_COMMA, anon_sym_RBRACE, - [186384] = 6, + [186509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5512), 1, + STATE(5514), 1, sym_comment, - STATE(6743), 1, + STATE(6739), 1, sym__from_clause, - ACTIONS(6035), 2, + ACTIONS(5987), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186404] = 7, + [186529] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9213), 1, + anon_sym_RPAREN, + STATE(5515), 1, + sym_comment, + [186551] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, anon_sym_with, - ACTIONS(9211), 1, + ACTIONS(9215), 1, anon_sym_SEMI, - ACTIONS(9213), 1, + ACTIONS(9217), 1, sym__automatic_semicolon, - STATE(5513), 1, + STATE(5516), 1, sym_comment, - STATE(6926), 1, + STATE(6927), 1, sym_import_attribute, - [186426] = 5, + [186573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9215), 1, + ACTIONS(9219), 1, anon_sym_COMMA, - ACTIONS(5603), 2, + ACTIONS(5668), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5514), 2, + STATE(5517), 2, sym_comment, aux_sym_sequence_expression_repeat1, - [186444] = 7, + [186591] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9218), 1, + ACTIONS(9222), 1, sym_identifier, - STATE(4732), 1, + STATE(4741), 1, sym_nested_type_identifier, - STATE(5475), 1, + STATE(5470), 1, sym_generic_type, - STATE(5515), 1, + STATE(5518), 1, sym_comment, - STATE(6953), 1, + STATE(6959), 1, sym_nested_identifier, - [186466] = 4, + [186613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5516), 1, + STATE(5519), 1, sym_comment, - ACTIONS(9220), 4, + ACTIONS(9224), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [186482] = 7, + [186629] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, anon_sym_const, - ACTIONS(9222), 1, + ACTIONS(9226), 1, anon_sym_GT, - STATE(5517), 1, + STATE(5520), 1, sym_comment, - STATE(6833), 1, + STATE(6838), 1, sym_type_parameter, - [186504] = 7, + [186651] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5518), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5521), 1, sym_comment, - STATE(6841), 1, + STATE(6846), 1, sym_type_parameters, - STATE(7010), 1, + STATE(7014), 1, sym_formal_parameters, - [186526] = 7, + [186673] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9224), 1, + ACTIONS(9228), 1, anon_sym_QMARK, - STATE(5519), 1, + STATE(5522), 1, sym_comment, - [186548] = 6, + [186695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7394), 1, + ACTIONS(7408), 1, anon_sym_EQ, - STATE(5520), 1, + STATE(5523), 1, sym_comment, - STATE(6843), 1, + STATE(6848), 1, sym_default_type, - ACTIONS(9226), 2, + ACTIONS(9230), 2, anon_sym_COMMA, anon_sym_GT, - [186568] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9228), 1, - anon_sym_RPAREN, - STATE(5521), 1, - sym_comment, - [186590] = 6, + [186715] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_BQUOTE, - STATE(5522), 1, + STATE(5524), 1, sym_comment, - STATE(2625), 2, + STATE(2647), 2, sym_template_string, sym_arguments, - [186610] = 7, + [186735] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, + ACTIONS(7148), 1, anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9232), 1, + anon_sym_RPAREN, + STATE(5525), 1, + sym_comment, + [186757] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9230), 1, + ACTIONS(9234), 1, anon_sym_RPAREN, - STATE(5523), 1, + STATE(5526), 1, sym_comment, - [186632] = 7, + [186779] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_LT, - STATE(3750), 1, + STATE(3767), 1, sym_arguments, - STATE(3890), 1, + STATE(3893), 1, sym_type_arguments, - STATE(5524), 1, + STATE(5527), 1, sym_comment, - [186654] = 7, + [186801] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(9232), 1, + ACTIONS(9236), 1, anon_sym_export, - STATE(4662), 1, + STATE(4678), 1, aux_sym_export_statement_repeat1, - STATE(5525), 1, + STATE(5528), 1, sym_comment, - STATE(5596), 1, + STATE(5599), 1, sym_decorator, - [186676] = 7, + [186823] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - ACTIONS(9234), 1, - anon_sym_LT, - STATE(2373), 1, - sym_type_arguments, - STATE(2374), 1, - sym_arguments, - STATE(5526), 1, - sym_comment, - [186698] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9178), 1, + ACTIONS(9184), 1, anon_sym_COMMA, - STATE(5496), 1, + STATE(5500), 1, aux_sym_extends_clause_repeat1, - STATE(5527), 1, + STATE(5529), 1, sym_comment, - ACTIONS(9236), 2, + ACTIONS(9238), 2, anon_sym_LBRACE, anon_sym_implements, - [186718] = 4, + [186843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5528), 1, + STATE(5530), 1, sym_comment, - ACTIONS(6885), 4, + ACTIONS(6863), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186734] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9238), 1, - anon_sym_SQUOTE, - ACTIONS(9240), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - STATE(5529), 2, - sym_comment, - aux_sym_string_repeat2, - [186752] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9243), 1, - anon_sym_DQUOTE, - ACTIONS(9245), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(5530), 2, - sym_comment, - aux_sym_string_repeat1, - [186770] = 6, + [186859] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, - anon_sym_COMMA, - STATE(5501), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(9240), 1, + anon_sym_LT, + STATE(2347), 1, + sym_type_arguments, + STATE(2349), 1, + sym_arguments, STATE(5531), 1, sym_comment, - ACTIONS(9248), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186790] = 7, + [186881] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, + ACTIONS(8081), 1, anon_sym_DOT, - ACTIONS(9250), 1, + ACTIONS(9242), 1, anon_sym_COMMA, - ACTIONS(9252), 1, + ACTIONS(9244), 1, anon_sym_GT, STATE(5532), 1, sym_comment, STATE(5920), 1, aux_sym_type_arguments_repeat1, - [186812] = 6, + [186903] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9246), 1, + anon_sym_SQUOTE, + ACTIONS(9248), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(5533), 2, + sym_comment, + aux_sym_string_repeat2, + [186921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - STATE(5533), 1, + STATE(5534), 1, sym_comment, - ACTIONS(9254), 2, + ACTIONS(9251), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186832] = 6, + [186941] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8024), 1, - anon_sym_EQ, - STATE(5534), 1, + ACTIONS(8965), 1, + anon_sym_COMMA, + STATE(5502), 1, + aux_sym_variable_declaration_repeat1, + STATE(5535), 1, + sym_comment, + ACTIONS(9253), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186961] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9255), 1, + anon_sym_DQUOTE, + ACTIONS(9257), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(5536), 2, sym_comment, - STATE(6932), 1, - sym__initializer, - ACTIONS(9256), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [186852] = 7, + aux_sym_string_repeat1, + [186979] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - ACTIONS(9258), 1, - anon_sym_SEMI, ACTIONS(9260), 1, + anon_sym_SEMI, + ACTIONS(9262), 1, sym__automatic_semicolon, - STATE(5535), 1, + STATE(5537), 1, sym_comment, - STATE(6837), 1, + STATE(6854), 1, sym_import_attribute, - [186874] = 6, + [187001] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - STATE(5536), 1, + ACTIONS(8037), 1, + anon_sym_EQ, + STATE(5538), 1, sym_comment, - STATE(6832), 1, - sym_import_attribute, - ACTIONS(9262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186894] = 6, + STATE(6937), 1, + sym__initializer, + ACTIONS(9264), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [187021] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5537), 1, + STATE(5539), 1, sym_comment, - STATE(6829), 1, + STATE(6843), 1, sym_import_attribute, - ACTIONS(9264), 2, + ACTIONS(9266), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186914] = 6, + [187041] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5538), 1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5540), 1, sym_comment, - STATE(6765), 1, - sym__from_clause, - ACTIONS(5650), 2, + STATE(6842), 1, + sym_import_attribute, + ACTIONS(9268), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186934] = 6, + [187061] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9266), 1, + ACTIONS(9270), 1, anon_sym_STAR, - ACTIONS(9268), 1, + ACTIONS(9272), 1, anon_sym_LBRACE, - STATE(5539), 1, + STATE(5541), 1, sym_comment, - STATE(6966), 2, + STATE(6969), 2, sym_namespace_import, sym_named_imports, - [186954] = 6, + [187081] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, - anon_sym_COMMA, - STATE(5501), 1, - aux_sym_variable_declaration_repeat1, - STATE(5540), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5542), 1, sym_comment, - ACTIONS(9270), 2, + STATE(6810), 1, + sym__from_clause, + ACTIONS(5847), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186974] = 7, + [187101] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, - anon_sym_DOT, - ACTIONS(9272), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - ACTIONS(9274), 1, - anon_sym_GT, - STATE(5541), 1, + STATE(5502), 1, + aux_sym_variable_declaration_repeat1, + STATE(5543), 1, sym_comment, - STATE(5822), 1, - aux_sym_type_arguments_repeat1, - [186996] = 6, + ACTIONS(9274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187121] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5501), 1, + STATE(5502), 1, aux_sym_variable_declaration_repeat1, - STATE(5542), 1, + STATE(5544), 1, sym_comment, ACTIONS(9276), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187016] = 7, + [187141] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, ACTIONS(9278), 1, anon_sym_SEMI, ACTIONS(9280), 1, sym__automatic_semicolon, - STATE(5543), 1, + STATE(5545), 1, sym_comment, - STATE(6883), 1, + STATE(6894), 1, sym_import_attribute, - [187038] = 6, + [187163] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(8081), 1, + anon_sym_DOT, + ACTIONS(9282), 1, + anon_sym_COMMA, + ACTIONS(9284), 1, + anon_sym_GT, + STATE(5546), 1, + sym_comment, + STATE(5828), 1, + aux_sym_type_arguments_repeat1, + [187185] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5544), 1, + STATE(5547), 1, sym_comment, - STATE(6853), 1, + STATE(6857), 1, sym_import_attribute, - ACTIONS(9282), 2, + ACTIONS(9286), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187058] = 6, + [187205] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5545), 1, + STATE(5548), 1, sym_comment, - STATE(6852), 1, + STATE(6856), 1, sym_import_attribute, - ACTIONS(9284), 2, + ACTIONS(9288), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187078] = 6, + [187225] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9286), 1, + ACTIONS(9290), 1, anon_sym_SQUOTE, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - STATE(5546), 1, + STATE(5549), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187098] = 6, + [187245] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9286), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - STATE(5547), 1, + STATE(5550), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187118] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - ACTIONS(9288), 1, - anon_sym_SEMI, - ACTIONS(9290), 1, - sym__automatic_semicolon, - STATE(5548), 1, - sym_comment, - STATE(6435), 1, - sym_import_attribute, - [187140] = 7, + [187265] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -363709,370 +363835,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(9296), 1, anon_sym_RBRACK, - STATE(5549), 1, + STATE(5551), 1, sym_comment, - STATE(5887), 1, + STATE(5893), 1, aux_sym_array_pattern_repeat1, - [187162] = 5, + [187287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(9298), 1, anon_sym_EQ_GT, - STATE(5550), 1, + STATE(5552), 1, sym_comment, - ACTIONS(4640), 3, + ACTIONS(4642), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [187180] = 5, + [187305] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(9300), 1, anon_sym_EQ_GT, - STATE(5551), 1, + STATE(5553), 1, sym_comment, - ACTIONS(4640), 3, + ACTIONS(4642), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [187198] = 6, + [187323] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + ACTIONS(9302), 1, + anon_sym_SEMI, + ACTIONS(9304), 1, + sym__automatic_semicolon, + STATE(5554), 1, + sym_comment, + STATE(6345), 1, + sym_import_attribute, + [187345] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9302), 1, + ACTIONS(9306), 1, anon_sym_SQUOTE, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - STATE(5552), 1, + STATE(5555), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187218] = 6, + [187365] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9302), 1, + ACTIONS(9306), 1, anon_sym_DQUOTE, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - STATE(5553), 1, + STATE(5556), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187238] = 7, + [187385] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - STATE(5554), 1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5557), 1, sym_comment, - STATE(6692), 1, + STATE(6695), 1, sym_type_parameters, - STATE(7107), 1, + STATE(7113), 1, sym_formal_parameters, - [187260] = 4, + [187407] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5555), 1, + STATE(5558), 1, sym_comment, - ACTIONS(9304), 4, + ACTIONS(9308), 4, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, - [187276] = 6, + [187423] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5531), 1, + STATE(5534), 1, aux_sym_variable_declaration_repeat1, - STATE(5556), 1, + STATE(5559), 1, sym_comment, - ACTIONS(9306), 2, + ACTIONS(9310), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187296] = 6, + [187443] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5533), 1, + STATE(5535), 1, aux_sym_variable_declaration_repeat1, - STATE(5557), 1, + STATE(5560), 1, sym_comment, - ACTIONS(9308), 2, + ACTIONS(9312), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187316] = 6, + [187463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5558), 1, + STATE(5561), 1, sym_comment, - STATE(6756), 1, + STATE(6769), 1, sym__from_clause, - ACTIONS(5591), 2, + ACTIONS(5708), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187336] = 6, + [187483] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5559), 1, + STATE(5562), 1, sym_comment, - STATE(6693), 1, + STATE(6701), 1, sym_import_attribute, - ACTIONS(9310), 2, + ACTIONS(9314), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187503] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5563), 1, + sym_comment, + STATE(6696), 1, + sym_import_attribute, + ACTIONS(9316), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187356] = 7, + [187523] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9001), 1, sym__glimmer_template_content, - ACTIONS(9312), 1, + ACTIONS(9318), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(3089), 1, + STATE(3019), 1, sym_glimmer_closing_tag, - STATE(5560), 1, + STATE(5564), 1, sym_comment, - STATE(5816), 1, + STATE(5818), 1, aux_sym_glimmer_template_repeat1, - [187378] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - STATE(5561), 1, - sym_comment, - STATE(6691), 1, - sym_import_attribute, - ACTIONS(9314), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187398] = 6, + [187545] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5505), 1, + STATE(5506), 1, aux_sym_variable_declaration_repeat1, - STATE(5562), 1, + STATE(5565), 1, sym_comment, - ACTIONS(9316), 2, + ACTIONS(9320), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187418] = 6, + [187565] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5506), 1, + STATE(5507), 1, aux_sym_variable_declaration_repeat1, - STATE(5563), 1, + STATE(5566), 1, sym_comment, - ACTIONS(9318), 2, + ACTIONS(9322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187438] = 6, + [187585] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, - anon_sym_with, - STATE(5564), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5567), 1, sym_comment, - STATE(6844), 1, - sym_import_attribute, - ACTIONS(9320), 2, + STATE(6639), 1, + sym__from_clause, + ACTIONS(9324), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187458] = 6, + [187605] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5565), 1, + ACTIONS(9029), 1, + anon_sym_with, + STATE(5568), 1, sym_comment, - STATE(6630), 1, - sym__from_clause, - ACTIONS(9322), 2, + STATE(6851), 1, + sym_import_attribute, + ACTIONS(9326), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187478] = 6, + [187625] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5566), 1, + STATE(5569), 1, sym_comment, - STATE(6840), 1, + STATE(6850), 1, sym_import_attribute, - ACTIONS(9324), 2, + ACTIONS(9328), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187498] = 6, + [187645] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5420), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - STATE(5514), 1, + STATE(5517), 1, aux_sym_sequence_expression_repeat1, - STATE(5567), 1, + STATE(5570), 1, sym_comment, - ACTIONS(8663), 2, + ACTIONS(8665), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187518] = 6, + [187665] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5466), 1, + ACTIONS(5465), 1, anon_sym_BQUOTE, - STATE(5568), 1, + STATE(5571), 1, sym_comment, - STATE(3115), 2, + STATE(3071), 2, sym_template_string, sym_arguments, - [187538] = 4, + [187685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5569), 1, + STATE(5572), 1, sym_comment, - ACTIONS(8137), 4, + ACTIONS(7731), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [187554] = 4, + [187701] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5570), 1, + STATE(5573), 1, sym_comment, - ACTIONS(9161), 4, + ACTIONS(9157), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [187570] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9326), 1, - anon_sym_SQUOTE, - STATE(5552), 1, - aux_sym_string_repeat2, - STATE(5571), 1, - sym_comment, - ACTIONS(8961), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187590] = 6, + [187717] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5572), 1, + STATE(5574), 1, sym_comment, - STATE(6780), 1, + STATE(6824), 1, sym__from_clause, - ACTIONS(9328), 2, + ACTIONS(9330), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187610] = 6, + [187737] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9332), 1, + anon_sym_SQUOTE, + STATE(5555), 1, + aux_sym_string_repeat2, + STATE(5575), 1, + sym_comment, + ACTIONS(8963), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187757] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9326), 1, + ACTIONS(9332), 1, anon_sym_DQUOTE, - STATE(5553), 1, + STATE(5556), 1, aux_sym_string_repeat1, - STATE(5573), 1, + STATE(5576), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187630] = 7, + [187777] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, + ACTIONS(8081), 1, anon_sym_DOT, - ACTIONS(9330), 1, + ACTIONS(9334), 1, anon_sym_COMMA, - ACTIONS(9332), 1, + ACTIONS(9336), 1, anon_sym_GT, - STATE(5574), 1, + STATE(5577), 1, sym_comment, - STATE(5797), 1, + STATE(5800), 1, aux_sym_type_arguments_repeat1, - [187652] = 6, + [187799] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9334), 1, + ACTIONS(9338), 1, anon_sym_SQUOTE, - STATE(5529), 1, + STATE(5533), 1, aux_sym_string_repeat2, - STATE(5575), 1, + STATE(5578), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187672] = 7, + [187819] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -364081,55 +364222,55 @@ static const uint16_t ts_small_parse_table[] = { sym__glimmer_template_content, ACTIONS(9003), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(2508), 1, + STATE(2556), 1, sym_glimmer_closing_tag, - STATE(5397), 1, + STATE(5398), 1, aux_sym_glimmer_template_repeat1, - STATE(5576), 1, + STATE(5579), 1, sym_comment, - [187694] = 6, + [187841] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9334), 1, + ACTIONS(9338), 1, anon_sym_DQUOTE, - STATE(5530), 1, + STATE(5536), 1, aux_sym_string_repeat1, - STATE(5577), 1, + STATE(5580), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187714] = 6, + [187861] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9336), 1, + ACTIONS(9340), 1, anon_sym_SQUOTE, - STATE(5546), 1, + STATE(5549), 1, aux_sym_string_repeat2, - STATE(5578), 1, + STATE(5581), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187734] = 6, + [187881] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9336), 1, + ACTIONS(9340), 1, anon_sym_DQUOTE, - STATE(5547), 1, + STATE(5550), 1, aux_sym_string_repeat1, - STATE(5579), 1, + STATE(5582), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187754] = 7, + [187901] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -364138,2647 +364279,2649 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(9338), 1, + ACTIONS(9342), 1, anon_sym_RBRACK, - STATE(5580), 1, + STATE(5583), 1, sym_comment, - STATE(5774), 1, + STATE(5777), 1, aux_sym_array_pattern_repeat1, - [187776] = 7, + [187923] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9340), 1, + ACTIONS(9344), 1, anon_sym_QMARK, - STATE(5581), 1, + STATE(5584), 1, sym_comment, - [187798] = 6, + [187945] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5540), 1, + STATE(5543), 1, aux_sym_variable_declaration_repeat1, - STATE(5582), 1, + STATE(5585), 1, sym_comment, - ACTIONS(9342), 2, + ACTIONS(9346), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187818] = 6, + [187965] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8967), 1, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5542), 1, + STATE(5544), 1, aux_sym_variable_declaration_repeat1, - STATE(5583), 1, + STATE(5586), 1, sym_comment, - ACTIONS(9344), 2, + ACTIONS(9348), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187838] = 6, + [187985] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(5584), 1, + STATE(5587), 1, sym_comment, - STATE(6382), 1, + STATE(6408), 1, sym_statement_block, - ACTIONS(2130), 2, + ACTIONS(2128), 2, anon_sym_else, anon_sym_while, - [187858] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9346), 1, - anon_sym_RBRACK, - STATE(5585), 1, - sym_comment, - [187880] = 6, + [188005] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5586), 1, + STATE(5588), 1, sym_comment, - STATE(6581), 1, + STATE(6587), 1, sym_import_attribute, - ACTIONS(9348), 2, + ACTIONS(9350), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187900] = 4, + [188025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5587), 1, + STATE(5589), 1, sym_comment, - ACTIONS(2168), 4, + ACTIONS(2252), 4, anon_sym_LBRACE, anon_sym_else, anon_sym_while, anon_sym_DOT, - [187916] = 4, + [188041] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5588), 1, + STATE(5590), 1, sym_comment, - ACTIONS(2174), 4, + ACTIONS(2154), 4, anon_sym_LBRACE, anon_sym_else, anon_sym_while, anon_sym_DOT, - [187932] = 6, + [188057] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9025), 1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9352), 1, + anon_sym_RBRACK, + STATE(5591), 1, + sym_comment, + [188079] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9029), 1, anon_sym_with, - STATE(5589), 1, + STATE(5592), 1, sym_comment, - STATE(6580), 1, + STATE(6583), 1, sym_import_attribute, - ACTIONS(9350), 2, + ACTIONS(9354), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187952] = 7, + [188099] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9352), 1, + ACTIONS(9356), 1, anon_sym_QMARK, - STATE(5590), 1, + STATE(5593), 1, sym_comment, - [187974] = 4, + [188121] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5591), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(9358), 1, + anon_sym_class, + STATE(4678), 1, + aux_sym_export_statement_repeat1, + STATE(5594), 1, sym_comment, - ACTIONS(3209), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [187990] = 4, + STATE(5599), 1, + sym_decorator, + [188143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5592), 1, + STATE(5595), 1, sym_comment, - ACTIONS(3215), 4, + ACTIONS(3207), 4, sym__automatic_semicolon, anon_sym_else, anon_sym_while, anon_sym_SEMI, - [188006] = 7, + [188159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(9354), 1, - anon_sym_class, - STATE(4662), 1, - aux_sym_export_statement_repeat1, - STATE(5593), 1, - sym_comment, STATE(5596), 1, - sym_decorator, - [188028] = 7, + sym_comment, + ACTIONS(3165), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + [188175] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - ACTIONS(9356), 1, + ACTIONS(9360), 1, anon_sym_QMARK, - STATE(5594), 1, + STATE(5597), 1, sym_comment, - [188050] = 6, + [188197] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - STATE(5595), 1, + STATE(5598), 1, sym_comment, - STATE(6532), 1, + STATE(6531), 1, sym__from_clause, - ACTIONS(9358), 2, + ACTIONS(9362), 2, sym__automatic_semicolon, anon_sym_SEMI, - [188070] = 4, + [188217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5596), 1, + STATE(5599), 1, sym_comment, - ACTIONS(9360), 4, + ACTIONS(9364), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [188086] = 7, + [188233] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym_PIPE, + ACTIONS(7164), 1, + anon_sym_extends, + ACTIONS(9366), 1, + anon_sym_COLON, + STATE(5600), 1, + sym_comment, + [188255] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9001), 1, sym__glimmer_template_content, - ACTIONS(9312), 1, + ACTIONS(9318), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(3091), 1, + STATE(3176), 1, sym_glimmer_closing_tag, - STATE(5560), 1, + STATE(5564), 1, aux_sym_glimmer_template_repeat1, - STATE(5597), 1, - sym_comment, - [188108] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, - ACTIONS(7148), 1, - anon_sym_PIPE, - ACTIONS(7150), 1, - anon_sym_extends, - ACTIONS(9362), 1, - anon_sym_COLON, - STATE(5598), 1, + STATE(5601), 1, sym_comment, - [188130] = 5, + [188277] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9364), 1, + ACTIONS(9368), 1, anon_sym_EQ, - STATE(5599), 1, + STATE(5602), 1, sym_comment, - ACTIONS(4369), 3, + ACTIONS(4370), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [188148] = 6, + [188295] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9367), 1, + ACTIONS(9371), 1, anon_sym_SQUOTE, - STATE(5575), 1, + STATE(5578), 1, aux_sym_string_repeat2, - STATE(5600), 1, + STATE(5603), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(8963), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [188168] = 6, + [188315] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9367), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE, - STATE(5577), 1, + STATE(5580), 1, aux_sym_string_repeat1, - STATE(5601), 1, + STATE(5604), 1, sym_comment, - ACTIONS(8959), 2, + ACTIONS(8971), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [188188] = 4, + [188335] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5602), 1, + ACTIONS(9373), 1, + sym_identifier, + ACTIONS(9375), 1, + anon_sym_require, + STATE(5605), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188203] = 4, + STATE(5746), 1, + sym_nested_identifier, + [188354] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5603), 1, + STATE(5606), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188218] = 4, + [188369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5604), 1, + STATE(5607), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188233] = 6, + [188384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9373), 1, + ACTIONS(9381), 1, anon_sym_LPAREN, - ACTIONS(9375), 1, + ACTIONS(9383), 1, anon_sym_await, - STATE(89), 1, + STATE(108), 1, sym__for_header, - STATE(5605), 1, - sym_comment, - [188252] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5606), 1, + STATE(5608), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188267] = 6, + [188403] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9379), 1, + ACTIONS(9385), 1, sym_identifier, - ACTIONS(9381), 1, + ACTIONS(9387), 1, anon_sym_SEMI, - ACTIONS(9383), 1, + ACTIONS(9389), 1, sym__automatic_semicolon, - STATE(5607), 1, + STATE(5609), 1, sym_comment, - [188286] = 6, + [188422] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9385), 1, + ACTIONS(9391), 1, sym_identifier, - ACTIONS(9387), 1, + ACTIONS(9393), 1, anon_sym_SEMI, - ACTIONS(9389), 1, + ACTIONS(9395), 1, sym__automatic_semicolon, - STATE(5608), 1, + STATE(5610), 1, sym_comment, - [188305] = 4, + [188441] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5609), 1, + ACTIONS(4463), 1, + anon_sym_LBRACE, + STATE(5611), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, + ACTIONS(5155), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188320] = 5, + anon_sym_LBRACE_PIPE, + [188458] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, - anon_sym_LBRACE, - STATE(5610), 1, + STATE(5612), 1, sym_comment, - ACTIONS(5155), 2, + ACTIONS(9397), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188337] = 6, + anon_sym_SEMI, + [188473] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9393), 1, + ACTIONS(9399), 1, sym_identifier, - STATE(4625), 1, + STATE(4238), 1, sym_decorator_member_expression, - STATE(5569), 1, + STATE(5572), 1, sym_decorator_call_expression, - STATE(5611), 1, + STATE(5613), 1, sym_comment, - [188356] = 5, + [188492] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, + ACTIONS(4465), 1, anon_sym_LBRACE, - STATE(5612), 1, + STATE(5614), 1, sym_comment, - ACTIONS(5151), 2, + ACTIONS(5265), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188373] = 5, + [188509] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5615), 1, + sym_comment, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, + ACTIONS(4467), 1, anon_sym_LBRACE, - STATE(5613), 1, + STATE(5616), 1, sym_comment, - ACTIONS(5149), 2, + ACTIONS(5280), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188390] = 5, + [188541] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4494), 1, + ACTIONS(4482), 1, anon_sym_LBRACE, - STATE(5614), 1, + STATE(5617), 1, sym_comment, - ACTIONS(5135), 2, + ACTIONS(5356), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188407] = 6, + [188558] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - ACTIONS(9395), 1, + ACTIONS(9401), 1, anon_sym_as, - STATE(5615), 1, + STATE(5618), 1, sym_comment, - STATE(6516), 1, + STATE(6514), 1, sym__from_clause, - [188426] = 6, + [188577] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9397), 1, + ACTIONS(9403), 1, sym_identifier, - ACTIONS(9399), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - STATE(5558), 1, + STATE(5561), 1, sym_export_clause, - STATE(5616), 1, + STATE(5619), 1, sym_comment, - [188445] = 6, + [188596] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(9401), 1, + ACTIONS(9407), 1, anon_sym_EQ, - STATE(5617), 1, + STATE(5620), 1, sym_comment, - STATE(7379), 1, + STATE(7385), 1, sym_type_parameters, - [188464] = 5, + [188615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_LBRACE, - STATE(5618), 1, + STATE(5621), 1, sym_comment, - ACTIONS(5153), 2, + ACTIONS(5345), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188481] = 5, + [188632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_LBRACE, - STATE(5619), 1, + STATE(5622), 1, sym_comment, - ACTIONS(5153), 2, + ACTIONS(5345), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188498] = 4, + [188649] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5620), 1, + ACTIONS(4486), 1, + anon_sym_LBRACE, + STATE(5623), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, + ACTIONS(5278), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188513] = 5, + anon_sym_LBRACE_PIPE, + [188666] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, + ACTIONS(4486), 1, anon_sym_LBRACE, - STATE(5621), 1, + STATE(5624), 1, sym_comment, - ACTIONS(5161), 2, + ACTIONS(5278), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188530] = 5, + [188683] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, - anon_sym_LBRACE, - STATE(5622), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(9409), 1, + anon_sym_EQ, + STATE(5625), 1, sym_comment, - ACTIONS(5161), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188547] = 4, + STATE(7176), 1, + sym_type_parameters, + [188702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5623), 1, + STATE(5626), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188562] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9403), 1, - anon_sym_COMMA, - ACTIONS(9405), 1, - anon_sym_RBRACE, - STATE(5624), 1, - sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [188581] = 4, + [188717] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5625), 1, + ACTIONS(4492), 1, + anon_sym_LBRACE, + STATE(5627), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, + ACTIONS(5320), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188596] = 6, + anon_sym_LBRACE_PIPE, + [188734] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9407), 1, + ACTIONS(8654), 1, anon_sym_COMMA, - ACTIONS(9409), 1, + ACTIONS(9413), 1, anon_sym_RBRACE, - STATE(5626), 1, + STATE(5628), 1, sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [188615] = 6, + STATE(5743), 1, + aux_sym_object_pattern_repeat1, + [188753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(9411), 1, - anon_sym_EQ, - STATE(5627), 1, + STATE(5629), 1, sym_comment, - STATE(7170), 1, - sym_type_parameters, - [188634] = 5, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188768] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(5628), 1, - sym_comment, - ACTIONS(5234), 2, + ACTIONS(9415), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [188651] = 4, + ACTIONS(9417), 1, + anon_sym_RBRACE, + STATE(5630), 1, + sym_comment, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [188787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5629), 1, + STATE(5631), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188666] = 6, + [188802] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, + ACTIONS(9419), 1, anon_sym_COMMA, - ACTIONS(9413), 1, + ACTIONS(9421), 1, anon_sym_RBRACE, - STATE(5630), 1, + STATE(5632), 1, sym_comment, - STATE(5741), 1, - aux_sym_object_pattern_repeat1, - [188685] = 6, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [188821] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - ACTIONS(9415), 1, + ACTIONS(9423), 1, anon_sym_RBRACE, - STATE(5631), 1, + STATE(5633), 1, sym_comment, - STATE(5743), 1, + STATE(5745), 1, aux_sym_object_repeat1, - [188704] = 6, + [188840] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, + ACTIONS(8654), 1, anon_sym_COMMA, ACTIONS(9413), 1, anon_sym_RBRACE, - STATE(5632), 1, + STATE(5634), 1, sym_comment, - STATE(5747), 1, + STATE(5752), 1, aux_sym_object_pattern_repeat1, - [188723] = 4, + [188859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5633), 1, + STATE(5635), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188738] = 5, + [188874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9417), 1, + ACTIONS(9425), 1, anon_sym_EQ, - STATE(5634), 1, + STATE(5636), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [188755] = 6, + [188891] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(9421), 1, + ACTIONS(9429), 1, anon_sym_EQ, - STATE(5635), 1, + STATE(5637), 1, sym_comment, - STATE(7357), 1, + STATE(7363), 1, sym_type_parameters, - [188774] = 5, + [188910] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4460), 1, + ACTIONS(4490), 1, anon_sym_LBRACE, - STATE(5636), 1, + STATE(5638), 1, sym_comment, - ACTIONS(5236), 2, + ACTIONS(5316), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188791] = 5, + [188927] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7907), 1, + anon_sym_DOT, + STATE(5639), 1, + sym_comment, + ACTIONS(9431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [188944] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5244), 1, + ACTIONS(5282), 1, anon_sym_LBRACE, - STATE(5637), 1, + STATE(5640), 1, sym_comment, - ACTIONS(5246), 2, + ACTIONS(5284), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188808] = 5, + [188961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5296), 1, + ACTIONS(5382), 1, anon_sym_LBRACE, - STATE(5638), 1, + STATE(5641), 1, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5384), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [188825] = 5, + [188978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9423), 1, + ACTIONS(9433), 1, anon_sym_EQ, - STATE(5639), 1, + STATE(5642), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [188842] = 6, + [188995] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9425), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - ACTIONS(9427), 1, + ACTIONS(9437), 1, anon_sym_await, - STATE(76), 1, + STATE(96), 1, sym__for_header, - STATE(5640), 1, + STATE(5643), 1, sym_comment, - [188861] = 5, + [189014] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9429), 1, + ACTIONS(9439), 1, anon_sym_EQ, - STATE(5641), 1, + STATE(5644), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [188878] = 6, + [189031] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, + ACTIONS(7256), 1, anon_sym_LT, - ACTIONS(9431), 1, + ACTIONS(9441), 1, anon_sym_EQ, - STATE(5642), 1, + STATE(5645), 1, sym_comment, - STATE(7329), 1, + STATE(7335), 1, sym_type_parameters, - [188897] = 4, + [189050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5643), 1, + STATE(5646), 1, sym_comment, - ACTIONS(7966), 3, + ACTIONS(8013), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [188912] = 6, + [189065] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9433), 1, + ACTIONS(9443), 1, anon_sym_COMMA, - ACTIONS(9435), 1, + ACTIONS(9445), 1, anon_sym_RPAREN, - STATE(5644), 1, + STATE(5647), 1, sym_comment, - STATE(5765), 1, + STATE(5768), 1, aux_sym_formal_parameters_repeat1, - [188931] = 6, + [189084] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9437), 1, + ACTIONS(9447), 1, sym_identifier, - ACTIONS(9439), 1, + ACTIONS(9449), 1, anon_sym_SEMI, - ACTIONS(9441), 1, - sym__automatic_semicolon, - STATE(5645), 1, - sym_comment, - [188950] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5646), 1, - sym_comment, - ACTIONS(9443), 3, + ACTIONS(9451), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188965] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5647), 1, + STATE(5648), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188980] = 6, + [189103] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9445), 1, + ACTIONS(9453), 1, sym_identifier, - ACTIONS(9447), 1, + ACTIONS(9455), 1, anon_sym_SEMI, - ACTIONS(9449), 1, + ACTIONS(9457), 1, sym__automatic_semicolon, - STATE(5648), 1, + STATE(5649), 1, sym_comment, - [188999] = 6, + [189122] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - ACTIONS(9415), 1, + ACTIONS(9423), 1, anon_sym_RBRACE, - STATE(5649), 1, - sym_comment, - STATE(5746), 1, - aux_sym_object_repeat1, - [189018] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5650), 1, sym_comment, - ACTIONS(9451), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189033] = 4, + STATE(5749), 1, + aux_sym_object_repeat1, + [189141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5651), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189048] = 4, + [189156] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5652), 1, sym_comment, - ACTIONS(9453), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189063] = 4, + [189171] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9342), 1, + anon_sym_RBRACK, STATE(5653), 1, sym_comment, - ACTIONS(9455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189078] = 6, + STATE(5777), 1, + aux_sym_array_pattern_repeat1, + [189190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, + ACTIONS(5892), 1, anon_sym_COMMA, - ACTIONS(9338), 1, + ACTIONS(6026), 1, anon_sym_RBRACK, STATE(5654), 1, sym_comment, - STATE(5774), 1, - aux_sym_array_pattern_repeat1, - [189097] = 4, + STATE(5776), 1, + aux_sym_array_repeat1, + [189209] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5892), 1, + anon_sym_COMMA, + ACTIONS(6026), 1, + anon_sym_RBRACK, STATE(5655), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189112] = 6, + STATE(5778), 1, + aux_sym_array_repeat1, + [189228] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(5984), 1, - anon_sym_RBRACK, STATE(5656), 1, sym_comment, - STATE(5772), 1, - aux_sym_array_repeat1, - [189131] = 6, + ACTIONS(9461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(5984), 1, - anon_sym_RBRACK, STATE(5657), 1, sym_comment, - STATE(5775), 1, - aux_sym_array_repeat1, - [189150] = 5, + ACTIONS(9463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189258] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9457), 1, + ACTIONS(9465), 1, anon_sym_EQ, STATE(5658), 1, sym_comment, - ACTIONS(4369), 2, + ACTIONS(4370), 2, anon_sym_COMMA, anon_sym_RBRACK, - [189167] = 6, + [189275] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(9468), 1, + anon_sym_RPAREN, + STATE(5659), 1, + sym_comment, + STATE(5803), 1, + aux_sym_array_repeat1, + [189294] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(9338), 1, + ACTIONS(9342), 1, anon_sym_RBRACK, - STATE(5659), 1, + STATE(5660), 1, sym_comment, - STATE(5783), 1, + STATE(5781), 1, aux_sym_array_pattern_repeat1, - [189186] = 5, + [189313] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9460), 1, + ACTIONS(9470), 1, anon_sym_EQ, - STATE(5660), 1, + STATE(5661), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [189203] = 6, + [189330] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RPAREN, - STATE(5661), 1, + ACTIONS(7256), 1, + anon_sym_LT, + ACTIONS(9472), 1, + anon_sym_EQ, + STATE(5662), 1, sym_comment, - STATE(5801), 1, - aux_sym_array_repeat1, - [189222] = 6, + STATE(7300), 1, + sym_type_parameters, + [189349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9464), 1, + ACTIONS(9474), 1, anon_sym_COMMA, - ACTIONS(9466), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(5626), 1, + STATE(5632), 1, aux_sym_enum_body_repeat1, - STATE(5662), 1, + STATE(5663), 1, sym_comment, - [189241] = 6, + [189368] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8012), 1, + ACTIONS(8097), 1, anon_sym_LBRACE, - ACTIONS(8014), 1, + ACTIONS(8099), 1, anon_sym_LBRACE_PIPE, - STATE(1298), 1, + STATE(1294), 1, sym_object_type, - STATE(5663), 1, - sym_comment, - [189260] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5664), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189275] = 4, + [189387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5665), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189290] = 4, + [189402] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9478), 1, + anon_sym_DQUOTE, STATE(5666), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189305] = 4, + ACTIONS(9480), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [189419] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5667), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189320] = 4, + [189434] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5668), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189335] = 4, + [189449] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5669), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189350] = 4, + [189464] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5670), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189365] = 6, + [189479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(9472), 1, - anon_sym_EQ, STATE(5671), 1, sym_comment, - STATE(7294), 1, - sym_type_parameters, - [189384] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189494] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9474), 1, - anon_sym_DQUOTE, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(5672), 1, sym_comment, - ACTIONS(9476), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [189401] = 4, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5673), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189416] = 4, + [189524] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5674), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189431] = 4, + [189539] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9486), 1, + anon_sym_SQUOTE, STATE(5675), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189446] = 4, + ACTIONS(9488), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [189556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5676), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189461] = 4, + [189571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5677), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189476] = 4, + [189586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5678), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189491] = 4, + [189601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5679), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189506] = 4, + [189616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5680), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189521] = 4, + [189631] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, + anon_sym_const, + STATE(5681), 1, + sym_comment, + STATE(5703), 1, + sym_type_parameter, + [189650] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5681), 1, + STATE(5682), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189536] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189665] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9478), 1, - anon_sym_SQUOTE, - STATE(5682), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7579), 1, + anon_sym_implements, + ACTIONS(9490), 1, + anon_sym_LBRACE, + STATE(5683), 1, sym_comment, - ACTIONS(9480), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [189553] = 4, + STATE(7131), 1, + sym_implements_clause, + [189684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5683), 1, + STATE(5684), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189568] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_const, - STATE(5684), 1, - sym_comment, - STATE(5700), 1, - sym_type_parameter, - [189587] = 4, + [189699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5685), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189602] = 6, + [189714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9482), 1, + ACTIONS(9492), 1, anon_sym_COMMA, - ACTIONS(9484), 1, + ACTIONS(9494), 1, anon_sym_RBRACK, STATE(5686), 1, sym_comment, - STATE(6002), 1, + STATE(6001), 1, aux_sym_tuple_type_repeat1, - [189621] = 4, + [189733] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5687), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189636] = 4, + [189748] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5688), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189651] = 4, + [189763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5689), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189666] = 4, + [189778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5690), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189681] = 4, + [189793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5691), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189696] = 6, + [189808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7575), 1, - anon_sym_implements, - ACTIONS(9488), 1, - anon_sym_LBRACE, STATE(5692), 1, sym_comment, - STATE(7125), 1, - sym_implements_clause, - [189715] = 4, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5693), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189730] = 6, + [189838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9490), 1, - anon_sym_LPAREN, - ACTIONS(9492), 1, - anon_sym_await, - STATE(116), 1, - sym__for_header, STATE(5694), 1, sym_comment, - [189749] = 4, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5695), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189764] = 6, + [189868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(9494), 1, - anon_sym_DOT, - STATE(4351), 1, - sym_arguments, STATE(5696), 1, sym_comment, - [189783] = 6, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189883] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, - anon_sym_COMMA, - ACTIONS(9496), 1, - anon_sym_RBRACE, STATE(5697), 1, sym_comment, - STATE(5842), 1, - aux_sym_object_pattern_repeat1, - [189802] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189898] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4284), 1, + anon_sym_LPAREN, ACTIONS(9498), 1, - sym_identifier, - ACTIONS(9500), 1, - anon_sym_SEMI, - ACTIONS(9502), 1, - sym__automatic_semicolon, + anon_sym_DOT, + STATE(4368), 1, + sym_arguments, STATE(5698), 1, sym_comment, - [189821] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189917] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9504), 1, - sym_identifier, - ACTIONS(9506), 1, - anon_sym_SEMI, - ACTIONS(9508), 1, - sym__automatic_semicolon, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(5699), 1, sym_comment, - [189840] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189932] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9510), 1, - anon_sym_COMMA, - ACTIONS(9512), 1, - anon_sym_GT, + ACTIONS(9500), 1, + anon_sym_LPAREN, + ACTIONS(9502), 1, + anon_sym_await, + STATE(121), 1, + sym__for_header, STATE(5700), 1, sym_comment, - STATE(5804), 1, - aux_sym_type_parameters_repeat1, - [189859] = 4, + [189951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5701), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189874] = 4, + [189966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8654), 1, + anon_sym_COMMA, + ACTIONS(9504), 1, + anon_sym_RBRACE, STATE(5702), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189889] = 4, + STATE(5911), 1, + aux_sym_object_pattern_repeat1, + [189985] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9506), 1, + anon_sym_COMMA, + ACTIONS(9508), 1, + anon_sym_GT, STATE(5703), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189904] = 4, + STATE(5806), 1, + aux_sym_type_parameters_repeat1, + [190004] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9510), 1, + sym_identifier, + ACTIONS(9512), 1, + anon_sym_SEMI, + ACTIONS(9514), 1, + sym__automatic_semicolon, STATE(5704), 1, sym_comment, - ACTIONS(9514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189919] = 4, + [190023] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9516), 1, + sym_identifier, + ACTIONS(9518), 1, + anon_sym_SEMI, + ACTIONS(9520), 1, + sym__automatic_semicolon, STATE(5705), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189934] = 4, + [190042] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(9522), 1, + anon_sym_RBRACE, STATE(5706), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189949] = 4, + STATE(5848), 1, + aux_sym_object_repeat1, + [190061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5707), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189964] = 6, + [190076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9516), 1, - anon_sym_RBRACE, STATE(5708), 1, sym_comment, - STATE(5846), 1, - aux_sym_object_repeat1, - [189983] = 4, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5709), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189998] = 6, + [190106] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9518), 1, + ACTIONS(9526), 1, sym_identifier, - ACTIONS(9520), 1, + ACTIONS(9528), 1, anon_sym_LBRACK, - ACTIONS(9522), 1, + ACTIONS(9530), 1, sym_private_property_identifier, STATE(5710), 1, sym_comment, - [190017] = 4, + [190125] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(9522), 1, + anon_sym_RBRACE, STATE(5711), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190032] = 6, + STATE(5749), 1, + aux_sym_object_repeat1, + [190144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9516), 1, - anon_sym_RBRACE, STATE(5712), 1, sym_comment, - STATE(5746), 1, - aux_sym_object_repeat1, - [190051] = 5, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190159] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8121), 1, + ACTIONS(9532), 1, sym_identifier, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9536), 1, + sym_private_property_identifier, STATE(5713), 1, sym_comment, - ACTIONS(8125), 2, + [190178] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8069), 1, + sym_identifier, + STATE(5714), 1, + sym_comment, + ACTIONS(8073), 2, anon_sym_LBRACK, sym_private_property_identifier, - [190068] = 4, + [190195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5714), 1, + STATE(5715), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190083] = 6, + [190210] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, + ACTIONS(8654), 1, anon_sym_COMMA, - ACTIONS(9496), 1, + ACTIONS(9504), 1, anon_sym_RBRACE, - STATE(5715), 1, + STATE(5716), 1, sym_comment, - STATE(5747), 1, + STATE(5752), 1, aux_sym_object_pattern_repeat1, - [190102] = 6, + [190229] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5717), 1, + sym_comment, + ACTIONS(9496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190244] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9524), 1, + ACTIONS(9538), 1, sym_identifier, - ACTIONS(9526), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9528), 1, + ACTIONS(9542), 1, sym_private_property_identifier, - STATE(5716), 1, + STATE(5718), 1, sym_comment, - [190121] = 6, + [190263] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9530), 1, + ACTIONS(9544), 1, sym_identifier, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_LBRACK, - ACTIONS(9534), 1, + ACTIONS(9548), 1, sym_private_property_identifier, - STATE(5717), 1, - sym_comment, - [190140] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5718), 1, + STATE(5719), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190155] = 4, + [190282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5719), 1, + STATE(5720), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190170] = 6, + [190297] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9536), 1, + ACTIONS(9550), 1, anon_sym_COMMA, - ACTIONS(9538), 1, + ACTIONS(9552), 1, anon_sym_RPAREN, - STATE(5720), 1, + STATE(5721), 1, sym_comment, - STATE(5873), 1, + STATE(5875), 1, aux_sym_formal_parameters_repeat1, - [190189] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190316] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9540), 1, - sym_identifier, - ACTIONS(9542), 1, - anon_sym_LBRACK, - ACTIONS(9544), 1, - sym_private_property_identifier, - STATE(5721), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9554), 1, + anon_sym_DQUOTE, + ACTIONS(9556), 1, + anon_sym_SQUOTE, + STATE(5722), 1, sym_comment, - [190208] = 4, + STATE(5822), 1, + sym_string, + [190335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5722), 1, + STATE(5723), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190223] = 6, + [190350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9546), 1, - anon_sym_DQUOTE, - ACTIONS(9548), 1, - anon_sym_SQUOTE, - STATE(5723), 1, + STATE(5724), 1, sym_comment, - STATE(5826), 1, - sym_string, - [190242] = 4, + ACTIONS(9558), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [190365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5724), 1, + STATE(5725), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190257] = 6, + [190380] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9550), 1, + ACTIONS(9560), 1, sym_identifier, - ACTIONS(9552), 1, + ACTIONS(9562), 1, anon_sym_LBRACK, - ACTIONS(9554), 1, + ACTIONS(9564), 1, sym_private_property_identifier, - STATE(5725), 1, - sym_comment, - [190276] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(5726), 1, sym_comment, - ACTIONS(9556), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [190291] = 4, + [190399] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9566), 1, + anon_sym_COMMA, + ACTIONS(9568), 1, + anon_sym_RBRACE, STATE(5727), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190306] = 6, + STATE(5837), 1, + aux_sym_export_clause_repeat1, + [190418] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9558), 1, - anon_sym_COMMA, - ACTIONS(9560), 1, - anon_sym_RBRACE, STATE(5728), 1, sym_comment, - STATE(5838), 1, - aux_sym_export_clause_repeat1, - [190325] = 5, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190433] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9562), 1, - anon_sym_as, STATE(5729), 1, sym_comment, - ACTIONS(9564), 2, + ACTIONS(9397), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [190342] = 4, + anon_sym_SEMI, + [190448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5730), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190357] = 6, + [190463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, - anon_sym_COMMA, - ACTIONS(9296), 1, - anon_sym_RBRACK, STATE(5731), 1, sym_comment, - STATE(5887), 1, - aux_sym_array_pattern_repeat1, - [190376] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9566), 1, - anon_sym_RBRACE, + ACTIONS(9570), 1, + anon_sym_as, STATE(5732), 1, sym_comment, - STATE(5746), 1, - aux_sym_object_repeat1, - [190395] = 4, + ACTIONS(9572), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [190495] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9296), 1, + anon_sym_RBRACK, STATE(5733), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190410] = 6, + STATE(5893), 1, + aux_sym_array_pattern_repeat1, + [190514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, - anon_sym_COMMA, - ACTIONS(9568), 1, - anon_sym_RBRACE, STATE(5734), 1, sym_comment, - STATE(5747), 1, - aux_sym_object_pattern_repeat1, - [190429] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5735), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190444] = 6, + [190544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(6006), 1, - anon_sym_RBRACK, STATE(5736), 1, sym_comment, - STATE(5885), 1, - aux_sym_array_repeat1, - [190463] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190559] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - ACTIONS(6006), 1, - anon_sym_RBRACK, + ACTIONS(9574), 1, + anon_sym_RBRACE, STATE(5737), 1, sym_comment, - STATE(5775), 1, - aux_sym_array_repeat1, - [190482] = 4, + STATE(5749), 1, + aux_sym_object_repeat1, + [190578] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8654), 1, + anon_sym_COMMA, + ACTIONS(9576), 1, + anon_sym_RBRACE, STATE(5738), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190497] = 6, + STATE(5752), 1, + aux_sym_object_pattern_repeat1, + [190597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, - anon_sym_COMMA, - ACTIONS(9296), 1, - anon_sym_RBRACK, STATE(5739), 1, sym_comment, - STATE(5783), 1, - aux_sym_array_pattern_repeat1, - [190516] = 4, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190612] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5892), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RBRACK, STATE(5740), 1, sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190531] = 6, + STATE(5891), 1, + aux_sym_array_repeat1, + [190631] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, + ACTIONS(5892), 1, anon_sym_COMMA, - ACTIONS(9570), 1, - anon_sym_RBRACE, + ACTIONS(5894), 1, + anon_sym_RBRACK, STATE(5741), 1, sym_comment, - STATE(5747), 1, - aux_sym_object_pattern_repeat1, - [190550] = 4, + STATE(5778), 1, + aux_sym_array_repeat1, + [190650] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9296), 1, + anon_sym_RBRACK, STATE(5742), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190565] = 6, + STATE(5781), 1, + aux_sym_array_pattern_repeat1, + [190669] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, + ACTIONS(8654), 1, anon_sym_COMMA, - ACTIONS(9572), 1, + ACTIONS(9578), 1, anon_sym_RBRACE, STATE(5743), 1, sym_comment, - STATE(5746), 1, - aux_sym_object_repeat1, - [190584] = 4, + STATE(5752), 1, + aux_sym_object_pattern_repeat1, + [190688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5744), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190599] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, - STATE(5745), 1, - sym_comment, - ACTIONS(9574), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [190616] = 5, + [190703] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9576), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - ACTIONS(9579), 1, + ACTIONS(9580), 1, anon_sym_RBRACE, - STATE(5746), 2, + STATE(5745), 1, sym_comment, + STATE(5749), 1, aux_sym_object_repeat1, - [190633] = 5, + [190722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9581), 1, - anon_sym_COMMA, - ACTIONS(9584), 1, - anon_sym_RBRACE, - STATE(5747), 2, + ACTIONS(7909), 1, + anon_sym_DOT, + STATE(5746), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [190650] = 6, + ACTIONS(9431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [190739] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9586), 1, + ACTIONS(9582), 1, sym_identifier, - STATE(1971), 1, + STATE(1951), 1, sym_decorator_member_expression, STATE(2083), 1, sym_decorator_call_expression, - STATE(5748), 1, + STATE(5747), 1, sym_comment, - [190669] = 4, + [190758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5749), 1, + STATE(5748), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190684] = 4, + [190773] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9584), 1, + anon_sym_COMMA, + ACTIONS(9587), 1, + anon_sym_RBRACE, + STATE(5749), 2, + sym_comment, + aux_sym_object_repeat1, + [190790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5750), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190699] = 5, + [190805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, STATE(5751), 1, sym_comment, - ACTIONS(9574), 2, + ACTIONS(9484), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [190716] = 4, + [190820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5752), 1, - sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, + ACTIONS(9589), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190731] = 4, + ACTIONS(9592), 1, + anon_sym_RBRACE, + STATE(5752), 2, + sym_comment, + aux_sym_object_pattern_repeat1, + [190837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5753), 1, sym_comment, - ACTIONS(9588), 3, + ACTIONS(9594), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, - [190746] = 5, + [190852] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9590), 1, + ACTIONS(9596), 1, anon_sym_EQ, STATE(5754), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [190763] = 4, + [190869] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9308), 1, + anon_sym_as, STATE(5755), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, + ACTIONS(9427), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190778] = 5, + anon_sym_RBRACE, + [190886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9304), 1, - anon_sym_as, STATE(5756), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9459), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [190795] = 6, + anon_sym_SEMI, + [190901] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9592), 1, + ACTIONS(9598), 1, anon_sym_COMMA, - ACTIONS(9594), 1, + ACTIONS(9600), 1, anon_sym_RBRACE, STATE(5757), 1, sym_comment, - STATE(5861), 1, + STATE(5865), 1, aux_sym_named_imports_repeat1, - [190814] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190920] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9596), 1, - sym_identifier, - ACTIONS(9598), 1, - anon_sym_require, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(5758), 1, sym_comment, - STATE(5869), 1, - sym_nested_identifier, - [190833] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5759), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190848] = 4, + [190950] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9375), 1, + anon_sym_require, + ACTIONS(9602), 1, + sym_identifier, + STATE(5760), 1, + sym_comment, + STATE(5868), 1, + sym_nested_identifier, + [190969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5760), 1, + STATE(5761), 1, sym_comment, - ACTIONS(8773), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190863] = 4, + [190984] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5761), 1, + STATE(5762), 1, sym_comment, - ACTIONS(8773), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190878] = 4, + [190999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5762), 1, + STATE(5763), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190893] = 5, + [191014] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9600), 1, + ACTIONS(9604), 1, anon_sym_EQ, - STATE(5763), 1, + STATE(5764), 1, sym_comment, - ACTIONS(4445), 2, + ACTIONS(4442), 2, anon_sym_in, anon_sym_of, - [190910] = 4, + [191031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5764), 1, + STATE(5765), 1, + sym_comment, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191046] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5766), 1, + sym_comment, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191061] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5767), 1, sym_comment, - ACTIONS(8088), 3, + ACTIONS(7999), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [190925] = 6, + [191076] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9602), 1, + ACTIONS(9606), 1, anon_sym_COMMA, - ACTIONS(9604), 1, + ACTIONS(9608), 1, anon_sym_RPAREN, - STATE(5765), 1, + STATE(5768), 1, sym_comment, STATE(5896), 1, aux_sym_formal_parameters_repeat1, - [190944] = 6, + [191095] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4250), 1, anon_sym_LPAREN, - ACTIONS(9606), 1, + ACTIONS(9610), 1, anon_sym_DOT, - STATE(4360), 1, + STATE(4356), 1, sym_arguments, - STATE(5766), 1, + STATE(5769), 1, sym_comment, - [190963] = 6, + [191114] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9608), 1, + ACTIONS(9612), 1, anon_sym_LBRACE, - ACTIONS(9610), 1, + ACTIONS(9614), 1, anon_sym_LPAREN, - STATE(1456), 1, + STATE(1335), 1, sym_statement_block, - STATE(5767), 1, + STATE(5770), 1, sym_comment, - [190982] = 4, + [191133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5768), 1, + STATE(5771), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, + ACTIONS(6205), 3, anon_sym_COMMA, - anon_sym_SEMI, - [190997] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [191148] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5769), 1, + STATE(5772), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191012] = 4, + [191163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5770), 1, + ACTIONS(9292), 1, + anon_sym_EQ, + STATE(5773), 1, sym_comment, - ACTIONS(6180), 3, + ACTIONS(9616), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_RBRACK, - [191027] = 5, + [191180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, - anon_sym_EQ, - STATE(5771), 1, + STATE(5774), 1, sym_comment, - ACTIONS(9612), 2, + ACTIONS(9397), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [191044] = 6, + anon_sym_SEMI, + [191195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(9614), 1, - anon_sym_RBRACK, - STATE(5772), 1, - sym_comment, STATE(5775), 1, - aux_sym_array_repeat1, - [191063] = 4, + sym_comment, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191210] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5773), 1, - sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, + ACTIONS(5892), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191078] = 6, + ACTIONS(9618), 1, + anon_sym_RBRACK, + STATE(5776), 1, + sym_comment, + STATE(5778), 1, + aux_sym_array_repeat1, + [191229] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(9616), 1, + ACTIONS(9620), 1, anon_sym_RBRACK, - STATE(5774), 1, + STATE(5777), 1, sym_comment, - STATE(5783), 1, + STATE(5781), 1, aux_sym_array_pattern_repeat1, - [191097] = 5, + [191248] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6180), 1, + ACTIONS(6205), 1, anon_sym_RBRACK, - ACTIONS(9618), 1, + ACTIONS(9622), 1, anon_sym_COMMA, - STATE(5775), 2, + STATE(5778), 2, sym_comment, aux_sym_array_repeat1, - [191114] = 4, + [191265] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5776), 1, + STATE(5779), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191129] = 4, + [191280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5777), 1, + STATE(5780), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191144] = 4, + [191295] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5778), 1, - sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, + ACTIONS(9616), 1, + anon_sym_RBRACK, + ACTIONS(9625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191159] = 4, + STATE(5781), 2, + sym_comment, + aux_sym_array_pattern_repeat1, + [191312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5779), 1, + STATE(5782), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191174] = 4, + [191327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5780), 1, + STATE(5783), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191189] = 4, + [191342] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5781), 1, + STATE(5784), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191204] = 4, + [191357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5782), 1, + STATE(5785), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191219] = 5, + [191372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9612), 1, - anon_sym_RBRACK, - ACTIONS(9621), 1, - anon_sym_COMMA, - STATE(5783), 2, + STATE(5786), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [191236] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9624), 1, + ACTIONS(9411), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9626), 1, - anon_sym_GT, - STATE(5784), 1, - sym_comment, - STATE(5923), 1, - aux_sym_type_parameters_repeat1, - [191255] = 4, + anon_sym_SEMI, + [191387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5785), 1, + STATE(5787), 1, sym_comment, - ACTIONS(6885), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191270] = 6, + [191402] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9628), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9630), 1, - anon_sym_RBRACK, - STATE(5786), 1, + ACTIONS(5903), 1, + anon_sym_RPAREN, + STATE(5788), 1, sym_comment, - STATE(5924), 1, - aux_sym_tuple_type_repeat1, - [191289] = 4, + STATE(5803), 1, + aux_sym_array_repeat1, + [191421] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5787), 1, + STATE(5789), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(6863), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191304] = 4, + [191436] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5788), 1, - sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, + ACTIONS(9628), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191319] = 6, + ACTIONS(9630), 1, + anon_sym_GT, + STATE(5790), 1, + sym_comment, + STATE(5930), 1, + aux_sym_type_parameters_repeat1, + [191455] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(9632), 1, anon_sym_COMMA, - ACTIONS(5995), 1, - anon_sym_RPAREN, - STATE(5789), 1, + ACTIONS(9634), 1, + anon_sym_RBRACK, + STATE(5791), 1, sym_comment, - STATE(5801), 1, - aux_sym_array_repeat1, - [191338] = 4, + STATE(5929), 1, + aux_sym_tuple_type_repeat1, + [191474] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5790), 1, + STATE(5792), 1, sym_comment, - ACTIONS(9632), 3, + ACTIONS(9636), 3, sym__template_chars, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [191353] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9634), 1, - sym_identifier, - ACTIONS(9636), 1, - anon_sym_LBRACK, - ACTIONS(9638), 1, - sym_private_property_identifier, - STATE(5791), 1, - sym_comment, - [191372] = 6, + [191489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(5995), 1, + ACTIONS(5903), 1, anon_sym_RPAREN, - STATE(5661), 1, + STATE(5659), 1, aux_sym_array_repeat1, - STATE(5792), 1, + STATE(5793), 1, sym_comment, - [191391] = 4, + [191508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5793), 1, + STATE(5794), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191406] = 6, + [191523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5795), 1, + sym_comment, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191538] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7146), 1, - anon_sym_AMP, ACTIONS(7148), 1, + anon_sym_AMP, + ACTIONS(7162), 1, anon_sym_PIPE, - ACTIONS(7150), 1, + ACTIONS(7164), 1, anon_sym_extends, - STATE(5794), 1, + STATE(5796), 1, + sym_comment, + [191557] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9638), 1, + sym_identifier, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9642), 1, + sym_private_property_identifier, + STATE(5797), 1, sym_comment, - [191425] = 4, + [191576] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5795), 1, + ACTIONS(8097), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_LBRACE_PIPE, + STATE(1347), 1, + sym_object_type, + STATE(5798), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191440] = 6, + [191595] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9640), 1, + ACTIONS(9644), 1, anon_sym_COMMA, - ACTIONS(9642), 1, + ACTIONS(9646), 1, anon_sym_GT, - STATE(5796), 1, + STATE(5799), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [191459] = 6, + [191614] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9644), 1, + ACTIONS(9648), 1, anon_sym_COMMA, - ACTIONS(9646), 1, + ACTIONS(9650), 1, anon_sym_GT, - STATE(5797), 1, + STATE(5800), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [191478] = 6, + [191633] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9648), 1, - anon_sym_LBRACE, - ACTIONS(9650), 1, - anon_sym_LPAREN, - STATE(1045), 1, - sym_statement_block, - STATE(5798), 1, + STATE(5801), 1, sym_comment, - [191497] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191648] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -366787,139 +366930,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(9654), 1, anon_sym_GT, - STATE(5799), 1, + STATE(5802), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [191516] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8012), 1, - anon_sym_LBRACE, - ACTIONS(8014), 1, - anon_sym_LBRACE_PIPE, - STATE(1348), 1, - sym_object_type, - STATE(5800), 1, - sym_comment, - [191535] = 5, + [191667] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6180), 1, + ACTIONS(6205), 1, anon_sym_RPAREN, ACTIONS(9656), 1, anon_sym_COMMA, - STATE(5801), 2, + STATE(5803), 2, sym_comment, aux_sym_array_repeat1, - [191552] = 4, + [191684] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5802), 1, + ACTIONS(9659), 1, + anon_sym_LBRACE, + ACTIONS(9661), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_statement_block, + STATE(5804), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191567] = 4, + [191703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5803), 1, + STATE(5805), 1, sym_comment, - ACTIONS(3457), 3, + ACTIONS(3455), 3, anon_sym_else, anon_sym_while, anon_sym_finally, - [191582] = 6, + [191718] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9659), 1, + ACTIONS(9663), 1, anon_sym_COMMA, - ACTIONS(9661), 1, + ACTIONS(9665), 1, anon_sym_GT, - STATE(5804), 1, + STATE(5806), 1, sym_comment, - STATE(5937), 1, + STATE(5936), 1, aux_sym_type_parameters_repeat1, - [191601] = 4, + [191737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5805), 1, - sym_comment, - ACTIONS(9377), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191616] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5806), 1, + ACTIONS(8145), 1, + anon_sym_LBRACE, + ACTIONS(8147), 1, + anon_sym_LBRACE_PIPE, + STATE(1505), 1, + sym_object_type, + STATE(5807), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191631] = 4, + [191756] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5807), 1, + STATE(5808), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191646] = 6, + [191771] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9663), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9665), 1, - anon_sym_GT, - STATE(5808), 1, + ACTIONS(5918), 1, + anon_sym_RPAREN, + STATE(5809), 1, sym_comment, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - [191665] = 4, + STATE(5941), 1, + aux_sym_array_repeat1, + [191790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5809), 1, + STATE(5810), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191680] = 4, + [191805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5810), 1, + STATE(5811), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191695] = 6, + [191820] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -366928,24 +367051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(9669), 1, anon_sym_GT, - STATE(5811), 1, + STATE(5812), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [191714] = 6, + [191839] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8127), 1, - anon_sym_LBRACE, - ACTIONS(8129), 1, - anon_sym_LBRACE_PIPE, - STATE(1518), 1, - sym_object_type, - STATE(5812), 1, + STATE(5813), 1, sym_comment, - [191733] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191854] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -366953,38 +367074,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9671), 1, anon_sym_COMMA, ACTIONS(9673), 1, - anon_sym_RBRACK, - STATE(5813), 1, + anon_sym_GT, + STATE(5814), 1, sym_comment, - STATE(5871), 1, - aux_sym_tuple_type_repeat1, - [191752] = 6, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + [191873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5966), 1, - anon_sym_RPAREN, - STATE(5814), 1, + STATE(5815), 1, sym_comment, - STATE(5940), 1, - aux_sym_array_repeat1, - [191771] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191888] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(5966), 1, + ACTIONS(5918), 1, anon_sym_RPAREN, - STATE(5801), 1, + STATE(5803), 1, aux_sym_array_repeat1, - STATE(5815), 1, + STATE(5816), 1, + sym_comment, + [191907] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5817), 1, sym_comment, - [191790] = 5, + ACTIONS(9379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191922] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -366993,46 +367123,35 @@ static const uint16_t ts_small_parse_table[] = { sym__glimmer_template_content, ACTIONS(9678), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(5816), 2, + STATE(5818), 2, sym_comment, aux_sym_glimmer_template_repeat1, - [191807] = 6, + [191939] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5031), 1, - anon_sym_extends, ACTIONS(9680), 1, - anon_sym_AMP, + anon_sym_COMMA, ACTIONS(9682), 1, - anon_sym_PIPE, - STATE(5817), 1, + anon_sym_RBRACK, + STATE(5819), 1, sym_comment, - [191826] = 5, + STATE(5877), 1, + aux_sym_tuple_type_repeat1, + [191958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(9684), 1, anon_sym_EQ, - STATE(5818), 1, + STATE(5820), 1, sym_comment, - ACTIONS(9419), 2, + ACTIONS(9427), 2, anon_sym_COMMA, anon_sym_from, - [191843] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5819), 1, - sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191858] = 6, + [191975] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -367041,905 +367160,892 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(9688), 1, anon_sym_GT, - STATE(5820), 1, + STATE(5821), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [191877] = 4, + [191994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5821), 1, + STATE(5822), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9690), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [191892] = 6, + [192009] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9690), 1, - anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_extends, ACTIONS(9692), 1, - anon_sym_GT, - STATE(5822), 1, - sym_comment, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - [191911] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + anon_sym_AMP, + ACTIONS(9694), 1, + anon_sym_PIPE, STATE(5823), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191926] = 6, + [192028] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9694), 1, - anon_sym_COMMA, + ACTIONS(7256), 1, + anon_sym_LT, ACTIONS(9696), 1, - anon_sym_GT, + anon_sym_EQ, STATE(5824), 1, sym_comment, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - [191945] = 4, + STATE(7083), 1, + sym_type_parameters, + [192047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5825), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191960] = 4, + [192062] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9698), 1, + anon_sym_COMMA, + ACTIONS(9700), 1, + anon_sym_GT, STATE(5826), 1, sym_comment, - ACTIONS(9698), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [191975] = 4, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + [192081] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5827), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191990] = 6, + [192096] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8002), 1, - anon_sym_LBRACE_PIPE, - STATE(4945), 1, - sym_object_type, + ACTIONS(9702), 1, + anon_sym_COMMA, + ACTIONS(9704), 1, + anon_sym_GT, STATE(5828), 1, sym_comment, - [192009] = 6, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + [192115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9700), 1, - anon_sym_COMMA, - ACTIONS(9702), 1, - anon_sym_GT, STATE(5829), 1, sym_comment, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - [192028] = 4, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192130] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9706), 1, + anon_sym_COMMA, + ACTIONS(9708), 1, + anon_sym_GT, STATE(5830), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192043] = 6, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + [192149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7254), 1, - anon_sym_LT, - ACTIONS(9704), 1, - anon_sym_EQ, STATE(5831), 1, sym_comment, - STATE(7077), 1, - sym_type_parameters, - [192062] = 6, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - anon_sym_RPAREN, + ACTIONS(9710), 1, + anon_sym_as, STATE(5832), 1, sym_comment, - STATE(5883), 1, - aux_sym_array_repeat1, - [192081] = 6, + ACTIONS(9712), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(5833), 1, sym_comment, - [192100] = 4, + ACTIONS(9714), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [192196] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1379), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7943), 1, + anon_sym_LBRACE_PIPE, + STATE(4945), 1, + sym_object_type, STATE(5834), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192115] = 4, + [192215] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5835), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192130] = 4, + [192230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5836), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192145] = 4, + [192245] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9716), 1, + anon_sym_COMMA, + ACTIONS(9718), 1, + anon_sym_RBRACE, STATE(5837), 1, sym_comment, - ACTIONS(9706), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [192160] = 6, + STATE(5944), 1, + aux_sym_export_clause_repeat1, + [192264] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9708), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9710), 1, - anon_sym_RBRACE, + ACTIONS(5976), 1, + anon_sym_RPAREN, STATE(5838), 1, sym_comment, - STATE(5943), 1, - aux_sym_export_clause_repeat1, - [192179] = 6, + STATE(5889), 1, + aux_sym_array_repeat1, + [192283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9712), 1, - anon_sym_RBRACE, - STATE(5746), 1, - aux_sym_object_repeat1, + ACTIONS(5976), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(5839), 1, sym_comment, - [192198] = 6, + [192302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, - anon_sym_COMMA, - ACTIONS(9714), 1, - anon_sym_RBRACE, - STATE(5747), 1, - aux_sym_object_pattern_repeat1, STATE(5840), 1, sym_comment, - [192217] = 4, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192317] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5841), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192232] = 6, + ACTIONS(3461), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [192332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8652), 1, - anon_sym_COMMA, - ACTIONS(9716), 1, - anon_sym_RBRACE, - STATE(5747), 1, - aux_sym_object_pattern_repeat1, STATE(5842), 1, sym_comment, - [192251] = 4, + ACTIONS(9496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5843), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192266] = 6, + [192362] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_extends, - ACTIONS(8575), 1, - anon_sym_PIPE, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(9720), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_repeat1, STATE(5844), 1, sym_comment, - [192285] = 5, + [192381] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9292), 1, - anon_sym_EQ, - STATE(5845), 1, - sym_comment, - ACTIONS(9718), 2, + ACTIONS(8654), 1, anon_sym_COMMA, + ACTIONS(9722), 1, anon_sym_RBRACE, - [192302] = 6, + STATE(5752), 1, + aux_sym_object_pattern_repeat1, + STATE(5845), 1, + sym_comment, + [192400] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9720), 1, - anon_sym_RBRACE, - STATE(5746), 1, - aux_sym_object_repeat1, + ACTIONS(9292), 1, + anon_sym_EQ, STATE(5846), 1, sym_comment, - [192321] = 4, + ACTIONS(9724), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_extends, + ACTIONS(8583), 1, + anon_sym_PIPE, STATE(5847), 1, sym_comment, - ACTIONS(3461), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [192336] = 5, + [192436] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(9726), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_repeat1, STATE(5848), 1, sym_comment, - ACTIONS(9722), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [192353] = 5, + [192455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, STATE(5849), 1, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9459), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192370] = 5, + [192470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6609), 1, + ACTIONS(6599), 1, sym__automatic_semicolon, STATE(5850), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2332), 2, anon_sym_else, anon_sym_while, - [192387] = 5, + [192487] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6582), 1, - sym__automatic_semicolon, + ACTIONS(9728), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_RBRACK, + STATE(5686), 1, + aux_sym_tuple_type_repeat1, STATE(5851), 1, sym_comment, - ACTIONS(2388), 2, - anon_sym_else, - anon_sym_while, - [192404] = 4, + [192506] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6573), 1, + sym__automatic_semicolon, STATE(5852), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192419] = 6, + ACTIONS(2328), 2, + anon_sym_else, + anon_sym_while, + [192523] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - ACTIONS(9724), 1, + ACTIONS(9732), 1, sym_identifier, - STATE(5377), 1, + STATE(5376), 1, sym_export_clause, STATE(5853), 1, sym_comment, - [192438] = 6, + [192542] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9726), 1, - anon_sym_COMMA, - ACTIONS(9728), 1, - anon_sym_RBRACK, - STATE(5686), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(5854), 1, sym_comment, - [192457] = 6, + ACTIONS(9734), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [192559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - ACTIONS(9395), 1, - anon_sym_as, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(5855), 1, sym_comment, - STATE(6330), 1, - sym__from_clause, - [192476] = 5, + ACTIONS(9734), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [192576] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9730), 1, + ACTIONS(8959), 1, + anon_sym_from, + ACTIONS(9401), 1, anon_sym_as, STATE(5856), 1, sym_comment, - ACTIONS(9588), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192493] = 4, + STATE(6327), 1, + sym__from_clause, + [192595] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9736), 1, + anon_sym_as, STATE(5857), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, + ACTIONS(9594), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192508] = 4, + anon_sym_RBRACE, + [192612] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5858), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192523] = 6, + [192627] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - ACTIONS(9732), 1, + ACTIONS(9738), 1, sym_identifier, STATE(5859), 1, sym_comment, STATE(6778), 1, sym__import_identifier, - [192542] = 6, + [192646] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5860), 1, + sym_comment, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192661] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - ACTIONS(9732), 1, + ACTIONS(9738), 1, sym_identifier, - STATE(5860), 1, + STATE(5861), 1, sym_comment, STATE(6772), 1, sym__import_identifier, - [192561] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9734), 1, - anon_sym_COMMA, - ACTIONS(9736), 1, - anon_sym_RBRACE, - STATE(5861), 1, - sym_comment, - STATE(5961), 1, - aux_sym_named_imports_repeat1, - [192580] = 5, + [192680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, STATE(5862), 1, sym_comment, - ACTIONS(9738), 2, + ACTIONS(9397), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192597] = 4, + [192695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5863), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192612] = 4, + [192710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5864), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9740), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192627] = 4, + [192725] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9742), 1, + anon_sym_COMMA, + ACTIONS(9744), 1, + anon_sym_RBRACE, STATE(5865), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192642] = 4, + STATE(5960), 1, + aux_sym_named_imports_repeat1, + [192744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(5866), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9746), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192657] = 4, + [192761] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(9748), 1, + anon_sym_RPAREN, STATE(5867), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192672] = 4, + STATE(6993), 1, + sym_type_annotation, + [192780] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(5868), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9746), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192687] = 5, + [192797] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, STATE(5869), 1, sym_comment, - ACTIONS(9738), 2, + ACTIONS(9496), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [192704] = 4, + [192812] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5870), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192719] = 6, + [192827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9740), 1, - anon_sym_COMMA, - ACTIONS(9742), 1, - anon_sym_RBRACK, STATE(5871), 1, sym_comment, - STATE(6002), 1, - aux_sym_tuple_type_repeat1, - [192738] = 6, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(9744), 1, - anon_sym_RPAREN, STATE(5872), 1, sym_comment, - STATE(6987), 1, - sym_type_annotation, - [192757] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9746), 1, - anon_sym_COMMA, - ACTIONS(9748), 1, - anon_sym_RPAREN, STATE(5873), 1, sym_comment, - STATE(5896), 1, - aux_sym_formal_parameters_repeat1, - [192776] = 4, + ACTIONS(9379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5874), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192791] = 4, + [192887] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9750), 1, + anon_sym_COMMA, + ACTIONS(9752), 1, + anon_sym_RPAREN, STATE(5875), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192806] = 4, + STATE(5896), 1, + aux_sym_formal_parameters_repeat1, + [192906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5876), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192821] = 4, + [192921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9754), 1, + anon_sym_COMMA, + ACTIONS(9756), 1, + anon_sym_RBRACK, STATE(5877), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192836] = 6, + STATE(6001), 1, + aux_sym_tuple_type_repeat1, + [192940] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - ACTIONS(9750), 1, + ACTIONS(9758), 1, anon_sym_LPAREN, STATE(5878), 1, sym_comment, - STATE(6042), 1, + STATE(6043), 1, sym_statement_block, - [192855] = 4, + [192959] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9375), 1, + anon_sym_require, + ACTIONS(9760), 1, + sym_identifier, STATE(5879), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192870] = 6, + STATE(6278), 1, + sym_nested_identifier, + [192978] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8002), 1, - anon_sym_LBRACE_PIPE, - STATE(4921), 1, - sym_object_type, STATE(5880), 1, sym_comment, - [192889] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192993] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9598), 1, - anon_sym_require, - ACTIONS(9752), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(5881), 1, sym_comment, - STATE(6272), 1, - sym_nested_identifier, - [192908] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9754), 1, - anon_sym_COMMA, - ACTIONS(9756), 1, - anon_sym_RBRACE, STATE(5882), 1, sym_comment, - STATE(5918), 1, - aux_sym_enum_body_repeat1, - [192927] = 6, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(5883), 1, sym_comment, - [192946] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5884), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(9762), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192961] = 6, + [193053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(9762), 1, - anon_sym_RBRACK, - STATE(5775), 1, - aux_sym_array_repeat1, STATE(5885), 1, sym_comment, - [192980] = 4, + ACTIONS(9764), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193068] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1379), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7943), 1, + anon_sym_LBRACE_PIPE, + STATE(4923), 1, + sym_object_type, STATE(5886), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192995] = 6, + [193087] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9294), 1, - anon_sym_COMMA, - ACTIONS(9764), 1, - anon_sym_RBRACK, - STATE(5783), 1, - aux_sym_array_pattern_repeat1, STATE(5887), 1, sym_comment, - [193014] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193102] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9766), 1, + anon_sym_COMMA, + ACTIONS(9768), 1, + anon_sym_RBRACE, STATE(5888), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193029] = 4, + STATE(5924), 1, + aux_sym_enum_body_repeat1, + [193121] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(9770), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(5889), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193044] = 4, + [193140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5890), 1, sym_comment, - ACTIONS(9766), 3, + ACTIONS(9191), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193059] = 4, + [193155] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5892), 1, + anon_sym_COMMA, + ACTIONS(9772), 1, + anon_sym_RBRACK, + STATE(5778), 1, + aux_sym_array_repeat1, STATE(5891), 1, sym_comment, - ACTIONS(9189), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193074] = 5, + [193174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9768), 1, - anon_sym_as, STATE(5892), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(9459), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [193091] = 4, + anon_sym_SEMI, + [193189] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9774), 1, + anon_sym_RBRACK, + STATE(5781), 1, + aux_sym_array_pattern_repeat1, STATE(5893), 1, sym_comment, - ACTIONS(8086), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [193106] = 4, + [193208] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5894), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193121] = 6, + ACTIONS(7993), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [193223] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9772), 1, - anon_sym_LBRACE, - ACTIONS(9774), 1, - anon_sym_LPAREN, - STATE(1105), 1, - sym_statement_block, STATE(5895), 1, sym_comment, - [193140] = 5, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -367951,1133 +368057,1135 @@ static const uint16_t ts_small_parse_table[] = { STATE(5896), 2, sym_comment, aux_sym_formal_parameters_repeat1, - [193157] = 4, + [193255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9781), 1, + anon_sym_LBRACE, + ACTIONS(9783), 1, + anon_sym_LPAREN, + STATE(1184), 1, + sym_statement_block, STATE(5897), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193172] = 6, + [193274] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - ACTIONS(9781), 1, + ACTIONS(9785), 1, sym_identifier, - STATE(5447), 1, + STATE(5448), 1, sym_export_clause, STATE(5898), 1, sym_comment, - [193191] = 6, + [193293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - ACTIONS(9395), 1, + ACTIONS(9401), 1, anon_sym_as, STATE(5899), 1, sym_comment, - STATE(6622), 1, + STATE(6623), 1, sym__from_clause, - [193210] = 4, + [193312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5900), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193225] = 4, + [193327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5901), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9787), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193240] = 4, + [193342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8426), 1, + anon_sym_COMMA, + ACTIONS(9789), 1, + anon_sym_LBRACE, STATE(5902), 1, sym_comment, - ACTIONS(9783), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193255] = 6, + STATE(5996), 1, + aux_sym_implements_clause_repeat1, + [193361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(9785), 1, - anon_sym_LBRACE, STATE(5903), 1, sym_comment, - STATE(5993), 1, - aux_sym_implements_clause_repeat1, - [193274] = 4, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5904), 1, sym_comment, - ACTIONS(9787), 3, + ACTIONS(9791), 3, anon_sym_default, anon_sym_RBRACE, anon_sym_case, - [193289] = 6, + [193391] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4323), 1, anon_sym_COLON, - ACTIONS(9789), 1, + ACTIONS(9793), 1, anon_sym_RPAREN, STATE(5905), 1, sym_comment, - STATE(6950), 1, + STATE(6951), 1, sym_type_annotation, - [193308] = 6, + [193410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9791), 1, - anon_sym_COMMA, - ACTIONS(9793), 1, - anon_sym_RBRACK, STATE(5906), 1, sym_comment, - STATE(6044), 1, - aux_sym_tuple_type_repeat1, - [193327] = 6, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193425] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6099), 1, - anon_sym_extends, ACTIONS(9795), 1, - anon_sym_AMP, + anon_sym_COMMA, ACTIONS(9797), 1, - anon_sym_PIPE, + anon_sym_RPAREN, + STATE(5896), 1, + aux_sym_formal_parameters_repeat1, STATE(5907), 1, sym_comment, - [193346] = 6, + [193444] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9799), 1, + anon_sym_COMMA, + ACTIONS(9801), 1, + anon_sym_RBRACK, + STATE(5908), 1, + sym_comment, + STATE(6044), 1, + aux_sym_tuple_type_repeat1, + [193463] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9598), 1, + ACTIONS(9375), 1, anon_sym_require, - ACTIONS(9799), 1, + ACTIONS(9803), 1, sym_identifier, - STATE(5908), 1, + STATE(5909), 1, sym_comment, - STATE(6102), 1, + STATE(6108), 1, sym_nested_identifier, - [193365] = 6, + [193482] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9801), 1, + ACTIONS(6146), 1, + anon_sym_extends, + ACTIONS(9805), 1, + anon_sym_AMP, + ACTIONS(9807), 1, + anon_sym_PIPE, + STATE(5910), 1, + sym_comment, + [193501] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8654), 1, anon_sym_COMMA, - ACTIONS(9803), 1, + ACTIONS(9809), 1, + anon_sym_RBRACE, + STATE(5752), 1, + aux_sym_object_pattern_repeat1, + STATE(5911), 1, + sym_comment, + [193520] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9811), 1, + anon_sym_COMMA, + ACTIONS(9813), 1, anon_sym_GT, - STATE(5909), 1, + STATE(5912), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [193384] = 6, + [193539] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9805), 1, + ACTIONS(9815), 1, sym_identifier, - ACTIONS(9807), 1, + ACTIONS(9817), 1, anon_sym_LBRACK, - ACTIONS(9809), 1, + ACTIONS(9819), 1, sym_private_property_identifier, - STATE(5910), 1, + STATE(5913), 1, sym_comment, - [193403] = 6, + [193558] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9811), 1, + ACTIONS(9821), 1, sym_identifier, - ACTIONS(9813), 1, + ACTIONS(9823), 1, anon_sym_LBRACK, - ACTIONS(9815), 1, + ACTIONS(9825), 1, sym_private_property_identifier, - STATE(5911), 1, - sym_comment, - [193422] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5912), 1, + STATE(5914), 1, sym_comment, - ACTIONS(9443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193437] = 6, + [193577] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9817), 1, + ACTIONS(9827), 1, sym_identifier, - ACTIONS(9819), 1, + ACTIONS(9829), 1, anon_sym_LBRACK, - ACTIONS(9821), 1, + ACTIONS(9831), 1, sym_private_property_identifier, - STATE(5913), 1, + STATE(5915), 1, sym_comment, - [193456] = 6, + [193596] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - ACTIONS(9823), 1, + ACTIONS(9833), 1, sym_identifier, - STATE(5538), 1, + STATE(5542), 1, sym_export_clause, - STATE(5914), 1, + STATE(5916), 1, sym_comment, - [193475] = 6, + [193615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(8959), 1, anon_sym_from, - ACTIONS(9395), 1, + ACTIONS(9401), 1, anon_sym_as, - STATE(5915), 1, + STATE(5917), 1, sym_comment, - STATE(6627), 1, + STATE(6633), 1, sym__from_clause, - [193494] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9825), 1, - anon_sym_COMMA, - ACTIONS(9827), 1, - anon_sym_RBRACE, - STATE(5916), 1, - sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [193513] = 4, + [193634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5917), 1, + STATE(5918), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193528] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9829), 1, - anon_sym_COMMA, - ACTIONS(9831), 1, - anon_sym_RBRACE, - STATE(5918), 1, - sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [193547] = 6, + [193649] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9833), 1, - sym_identifier, ACTIONS(9835), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(9837), 1, + anon_sym_LBRACK, + ACTIONS(9839), 1, sym_private_property_identifier, STATE(5919), 1, sym_comment, - [193566] = 6, + [193668] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9839), 1, - anon_sym_COMMA, ACTIONS(9841), 1, + anon_sym_COMMA, + ACTIONS(9843), 1, anon_sym_GT, STATE(5920), 1, sym_comment, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, - [193585] = 6, + [193687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9843), 1, - anon_sym_COMMA, - ACTIONS(9845), 1, - anon_sym_RPAREN, - STATE(5896), 1, - aux_sym_formal_parameters_repeat1, STATE(5921), 1, sym_comment, - [193604] = 6, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193702] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9847), 1, + ACTIONS(9845), 1, anon_sym_COMMA, - ACTIONS(9849), 1, - anon_sym_GT, + ACTIONS(9847), 1, + anon_sym_RBRACE, STATE(5922), 1, sym_comment, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - [193623] = 6, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [193721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9851), 1, - anon_sym_COMMA, - ACTIONS(9853), 1, - anon_sym_GT, STATE(5923), 1, sym_comment, - STATE(5937), 1, - aux_sym_type_parameters_repeat1, - [193642] = 6, + ACTIONS(9459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193736] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9855), 1, + ACTIONS(9849), 1, anon_sym_COMMA, - ACTIONS(9857), 1, - anon_sym_RBRACK, + ACTIONS(9851), 1, + anon_sym_RBRACE, STATE(5924), 1, sym_comment, - STATE(6002), 1, - aux_sym_tuple_type_repeat1, - [193661] = 4, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [193755] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6552), 1, + sym__automatic_semicolon, STATE(5925), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193676] = 5, + ACTIONS(2344), 2, + anon_sym_else, + anon_sym_while, + [193772] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6544), 1, - sym__automatic_semicolon, + ACTIONS(9853), 1, + anon_sym_COMMA, + ACTIONS(9855), 1, + anon_sym_GT, STATE(5926), 1, sym_comment, - ACTIONS(2380), 2, - anon_sym_else, - anon_sym_while, - [193693] = 5, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + [193791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6542), 1, - sym__automatic_semicolon, STATE(5927), 1, sym_comment, - ACTIONS(2376), 2, - anon_sym_else, - anon_sym_while, - [193710] = 5, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193806] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6499), 1, + ACTIONS(6548), 1, sym__automatic_semicolon, STATE(5928), 1, sym_comment, - ACTIONS(2370), 2, + ACTIONS(2348), 2, anon_sym_else, anon_sym_while, - [193727] = 5, + [193823] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6497), 1, - sym__automatic_semicolon, + ACTIONS(9857), 1, + anon_sym_COMMA, + ACTIONS(9859), 1, + anon_sym_RBRACK, STATE(5929), 1, sym_comment, - ACTIONS(2366), 2, - anon_sym_else, - anon_sym_while, - [193744] = 5, + STATE(6001), 1, + aux_sym_tuple_type_repeat1, + [193842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7923), 1, - anon_sym_DOT, - STATE(5930), 1, - sym_comment, - ACTIONS(9859), 2, + ACTIONS(9861), 1, anon_sym_COMMA, + ACTIONS(9863), 1, anon_sym_GT, - [193761] = 6, + STATE(5930), 1, + sym_comment, + STATE(5936), 1, + aux_sym_type_parameters_repeat1, + [193861] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8100), 1, - anon_sym_LBRACE_PIPE, + ACTIONS(6488), 1, + sym__automatic_semicolon, STATE(5931), 1, sym_comment, - STATE(6632), 1, - sym_object_type, - [193780] = 5, + ACTIONS(2318), 2, + anon_sym_else, + anon_sym_while, + [193878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8761), 1, - anon_sym_GT, - ACTIONS(9861), 1, - anon_sym_COMMA, - STATE(5932), 2, + ACTIONS(6477), 1, + sym__automatic_semicolon, + STATE(5932), 1, sym_comment, - aux_sym_type_arguments_repeat1, - [193797] = 5, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + [193895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6495), 1, - sym__automatic_semicolon, + ACTIONS(8081), 1, + anon_sym_DOT, STATE(5933), 1, sym_comment, - ACTIONS(2362), 2, - anon_sym_else, - anon_sym_while, - [193814] = 6, + ACTIONS(9865), 2, + anon_sym_COMMA, + anon_sym_GT, + [193912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(8763), 1, + anon_sym_GT, + ACTIONS(9867), 1, anon_sym_COMMA, - ACTIONS(6004), 1, - anon_sym_RPAREN, - STATE(5934), 1, + STATE(5934), 2, sym_comment, - STATE(6052), 1, - aux_sym_array_repeat1, - [193833] = 6, + aux_sym_type_arguments_repeat1, + [193929] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(207), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6004), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, + ACTIONS(8091), 1, + anon_sym_LBRACE_PIPE, STATE(5935), 1, sym_comment, - [193852] = 5, + STATE(6646), 1, + sym_object_type, + [193948] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4458), 1, - anon_sym_LBRACE, - STATE(5936), 1, - sym_comment, - ACTIONS(5242), 2, + ACTIONS(9870), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [193869] = 5, + ACTIONS(9873), 1, + anon_sym_GT, + STATE(5936), 2, + sym_comment, + aux_sym_type_parameters_repeat1, + [193965] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9864), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9867), 1, - anon_sym_GT, - STATE(5937), 2, + ACTIONS(5928), 1, + anon_sym_RPAREN, + STATE(5937), 1, sym_comment, - aux_sym_type_parameters_repeat1, - [193886] = 4, + STATE(6055), 1, + aux_sym_array_repeat1, + [193984] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8145), 1, + anon_sym_LBRACE, + ACTIONS(8147), 1, + anon_sym_LBRACE_PIPE, + STATE(1509), 1, + sym_object_type, STATE(5938), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193901] = 6, + [194003] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9869), 1, + ACTIONS(5901), 1, anon_sym_COMMA, - ACTIONS(9871), 1, - anon_sym_RBRACE, + ACTIONS(5928), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(5939), 1, sym_comment, - STATE(6012), 1, - aux_sym_enum_body_repeat1, - [193920] = 6, + [194022] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(9875), 1, anon_sym_COMMA, - ACTIONS(9873), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, + ACTIONS(9877), 1, + anon_sym_RBRACE, STATE(5940), 1, sym_comment, - [193939] = 4, + STATE(6014), 1, + aux_sym_enum_body_repeat1, + [194041] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(9879), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(5941), 1, sym_comment, - ACTIONS(9875), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [193954] = 4, + [194060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5942), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193969] = 5, + [194075] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9877), 1, - anon_sym_COMMA, - ACTIONS(9880), 1, - anon_sym_RBRACE, - STATE(5943), 2, + STATE(5943), 1, sym_comment, - aux_sym_export_clause_repeat1, - [193986] = 4, + ACTIONS(9881), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [194090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5944), 1, - sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, + ACTIONS(9883), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194001] = 6, + ACTIONS(9886), 1, + anon_sym_RBRACE, + STATE(5944), 2, + sym_comment, + aux_sym_export_clause_repeat1, + [194107] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4323), 1, anon_sym_COLON, - ACTIONS(9882), 1, + ACTIONS(9888), 1, anon_sym_RPAREN, STATE(5945), 1, sym_comment, - STATE(7028), 1, + STATE(7037), 1, sym_type_annotation, - [194020] = 4, + [194126] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9890), 1, + anon_sym_LBRACE, STATE(5946), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194035] = 4, + ACTIONS(8810), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [194143] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4488), 1, + anon_sym_LBRACE, STATE(5947), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, + ACTIONS(5290), 2, anon_sym_COMMA, - anon_sym_SEMI, - [194050] = 4, + anon_sym_LBRACE_PIPE, + [194160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5948), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194065] = 5, + [194175] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9884), 1, - anon_sym_LBRACE, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(9892), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_repeat1, STATE(5949), 1, sym_comment, - ACTIONS(8806), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [194082] = 4, + [194194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5950), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194097] = 6, + [194209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9886), 1, - anon_sym_LPAREN, - ACTIONS(9888), 1, - anon_sym_await, - STATE(88), 1, - sym__for_header, STATE(5951), 1, sym_comment, - [194116] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9890), 1, - anon_sym_RBRACE, - STATE(5746), 1, - aux_sym_object_repeat1, STATE(5952), 1, sym_comment, - [194135] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194239] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8127), 1, - anon_sym_LBRACE, - ACTIONS(8129), 1, - anon_sym_LBRACE_PIPE, - STATE(1548), 1, - sym_object_type, STATE(5953), 1, sym_comment, - [194154] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194254] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7264), 1, - anon_sym_type, - ACTIONS(9732), 1, - sym_identifier, - STATE(5954), 1, - sym_comment, - STATE(6656), 1, - sym__import_identifier, - [194173] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9892), 1, - sym_identifier, + ACTIONS(8124), 1, + anon_sym_COMMA, ACTIONS(9894), 1, - anon_sym_SEMI, - ACTIONS(9896), 1, - sym__automatic_semicolon, - STATE(5955), 1, - sym_comment, - [194192] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9898), 1, - sym_identifier, - ACTIONS(9900), 1, - anon_sym_SEMI, - ACTIONS(9902), 1, - sym__automatic_semicolon, - STATE(5956), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_repeat1, + STATE(5954), 1, sym_comment, - [194211] = 6, + [194273] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9598), 1, - anon_sym_require, - ACTIONS(9904), 1, + ACTIONS(7248), 1, + anon_sym_type, + ACTIONS(9738), 1, sym_identifier, - STATE(5745), 1, - sym_nested_identifier, - STATE(5957), 1, + STATE(5955), 1, sym_comment, - [194230] = 4, + STATE(6592), 1, + sym__import_identifier, + [194292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5958), 1, + STATE(5956), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194245] = 6, + [194307] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(9906), 1, - anon_sym_RBRACE, - STATE(5746), 1, - aux_sym_object_repeat1, - STATE(5959), 1, + ACTIONS(9896), 1, + anon_sym_LPAREN, + ACTIONS(9898), 1, + anon_sym_await, + STATE(77), 1, + sym__for_header, + STATE(5957), 1, sym_comment, - [194264] = 6, + [194326] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7264), 1, + ACTIONS(7248), 1, anon_sym_type, - ACTIONS(9732), 1, + ACTIONS(9738), 1, sym_identifier, - STATE(5960), 1, + STATE(5958), 1, sym_comment, - STATE(6657), 1, + STATE(6661), 1, sym__import_identifier, - [194283] = 5, + [194345] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6486), 1, + sym__automatic_semicolon, + STATE(5959), 1, + sym_comment, + ACTIONS(2354), 2, + anon_sym_else, + anon_sym_while, + [194362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9908), 1, + ACTIONS(9900), 1, anon_sym_COMMA, - ACTIONS(9911), 1, + ACTIONS(9903), 1, anon_sym_RBRACE, - STATE(5961), 2, + STATE(5960), 2, sym_comment, aux_sym_named_imports_repeat1, - [194300] = 4, + [194379] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9905), 1, + sym_identifier, + ACTIONS(9907), 1, + anon_sym_SEMI, + ACTIONS(9909), 1, + sym__automatic_semicolon, + STATE(5961), 1, + sym_comment, + [194398] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9911), 1, + sym_identifier, + ACTIONS(9913), 1, + anon_sym_SEMI, + ACTIONS(9915), 1, + sym__automatic_semicolon, STATE(5962), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194315] = 4, + [194417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, STATE(5963), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194330] = 4, + STATE(7126), 1, + sym_string, + [194436] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5964), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194345] = 6, + [194451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7152), 1, - anon_sym_DQUOTE, - ACTIONS(7154), 1, - anon_sym_SQUOTE, STATE(5965), 1, sym_comment, - STATE(7119), 1, - sym_string, - [194364] = 4, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194466] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9405), 1, + anon_sym_LBRACE, + ACTIONS(9917), 1, + sym_identifier, + STATE(5479), 1, + sym_export_clause, STATE(5966), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194379] = 4, + [194485] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + ACTIONS(9401), 1, + anon_sym_as, STATE(5967), 1, sym_comment, - ACTIONS(9468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194394] = 4, + STATE(6722), 1, + sym__from_clause, + [194504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5968), 1, sym_comment, - ACTIONS(9443), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194409] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194519] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, - anon_sym_LBRACE, - ACTIONS(9913), 1, - sym_identifier, - STATE(5474), 1, - sym_export_clause, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(5969), 1, sym_comment, - [194428] = 6, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - ACTIONS(9395), 1, - anon_sym_as, STATE(5970), 1, sym_comment, - STATE(6720), 1, - sym__from_clause, - [194447] = 4, + ACTIONS(9482), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194549] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5971), 1, sym_comment, - ACTIONS(9470), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194462] = 4, + ACTIONS(8077), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [194564] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5972), 1, sym_comment, - ACTIONS(8084), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [194477] = 6, + ACTIONS(9484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194579] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4323), 1, anon_sym_COLON, - ACTIONS(9915), 1, + ACTIONS(9919), 1, anon_sym_RPAREN, STATE(5973), 1, sym_comment, - STATE(7122), 1, + STATE(7128), 1, sym_type_annotation, - [194496] = 4, + [194598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5974), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194511] = 4, + [194613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5975), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(9921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194526] = 4, + [194628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5976), 1, sym_comment, - ACTIONS(9470), 3, + ACTIONS(9921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194541] = 4, + [194643] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5977), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194556] = 4, + [194658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5978), 1, sym_comment, - ACTIONS(9919), 3, + ACTIONS(9923), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194571] = 4, + [194673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5979), 1, sym_comment, - ACTIONS(9468), 3, + ACTIONS(9921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194586] = 4, + [194688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5980), 1, sym_comment, - ACTIONS(9921), 3, + ACTIONS(9459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194601] = 4, + [194703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5981), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194616] = 4, + [194718] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5982), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194631] = 4, + [194733] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5983), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9925), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194646] = 4, + [194748] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5984), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194661] = 4, + [194763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5985), 1, sym_comment, - ACTIONS(9923), 3, + ACTIONS(9927), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194676] = 4, + [194778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5986), 1, sym_comment, - ACTIONS(9923), 3, + ACTIONS(9929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194691] = 4, + [194793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5987), 1, sym_comment, - ACTIONS(9925), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194706] = 4, + [194808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5988), 1, sym_comment, - ACTIONS(9927), 3, + ACTIONS(9929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194721] = 4, + [194823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5989), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194736] = 4, + [194838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5990), 1, sym_comment, - ACTIONS(9929), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194751] = 4, + [194853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -369085,10 +369193,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(5991), 1, sym_comment, ACTIONS(9931), 3, - anon_sym_LBRACE, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [194766] = 4, + anon_sym_SEMI, + [194868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -369099,265 +369207,263 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194781] = 5, + [194883] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8795), 1, - anon_sym_LBRACE, - ACTIONS(9935), 1, - anon_sym_COMMA, - STATE(5993), 2, + STATE(5993), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [194798] = 4, + ACTIONS(9935), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194898] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(5994), 1, sym_comment, - ACTIONS(9938), 3, - sym__automatic_semicolon, + ACTIONS(9937), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [194813] = 5, + anon_sym_implements, + [194913] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, STATE(5995), 1, sym_comment, - ACTIONS(9940), 2, + ACTIONS(9939), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194830] = 4, + [194928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5996), 1, - sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, + ACTIONS(8799), 1, + anon_sym_LBRACE, + ACTIONS(9941), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194845] = 4, + STATE(5996), 2, + sym_comment, + aux_sym_implements_clause_repeat1, + [194945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(5997), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9944), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [194860] = 4, + [194962] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(5998), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9944), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [194875] = 4, + [194979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6396), 1, + sym__automatic_semicolon, STATE(5999), 1, sym_comment, - ACTIONS(9925), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194890] = 5, + ACTIONS(2364), 2, + anon_sym_else, + anon_sym_while, + [194996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, STATE(6000), 1, sym_comment, - ACTIONS(9940), 2, + ACTIONS(9927), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194907] = 5, + [195011] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6421), 1, - sym__automatic_semicolon, - STATE(6001), 1, + ACTIONS(9946), 1, + anon_sym_COMMA, + ACTIONS(9949), 1, + anon_sym_RBRACK, + STATE(6001), 2, sym_comment, - ACTIONS(2358), 2, - anon_sym_else, - anon_sym_while, - [194924] = 5, + aux_sym_tuple_type_repeat1, + [195028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9942), 1, - anon_sym_COMMA, - ACTIONS(9945), 1, - anon_sym_RBRACK, - STATE(6002), 2, + STATE(6002), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [194941] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195043] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6003), 1, sym_comment, - ACTIONS(9947), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [194956] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195058] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6004), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194971] = 4, + [195073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6005), 1, sym_comment, - ACTIONS(9949), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194986] = 4, + [195088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6006), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195001] = 5, + ACTIONS(9951), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [195103] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6372), 1, + ACTIONS(6351), 1, sym__automatic_semicolon, STATE(6007), 1, sym_comment, - ACTIONS(2352), 2, + ACTIONS(2370), 2, anon_sym_else, anon_sym_while, - [195018] = 6, + [195120] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, anon_sym_const, STATE(6008), 1, sym_comment, - STATE(6833), 1, + STATE(6838), 1, sym_type_parameter, - [195037] = 5, + [195139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6322), 1, - sym__automatic_semicolon, STATE(6009), 1, sym_comment, - ACTIONS(2348), 2, - anon_sym_else, - anon_sym_while, - [195054] = 5, + ACTIONS(9953), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6320), 1, - sym__automatic_semicolon, STATE(6010), 1, sym_comment, - ACTIONS(2344), 2, - anon_sym_else, - anon_sym_while, - [195071] = 6, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9951), 1, - anon_sym_COMMA, - ACTIONS(9953), 1, - anon_sym_RBRACE, + ACTIONS(6309), 1, + sym__automatic_semicolon, STATE(6011), 1, sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [195090] = 6, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + [195186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9955), 1, - anon_sym_COMMA, - ACTIONS(9957), 1, - anon_sym_RBRACE, + ACTIONS(6305), 1, + sym__automatic_semicolon, STATE(6012), 1, sym_comment, - STATE(6061), 1, - aux_sym_enum_body_repeat1, - [195109] = 4, + ACTIONS(2380), 2, + anon_sym_else, + anon_sym_while, + [195203] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9955), 1, + anon_sym_COMMA, + ACTIONS(9957), 1, + anon_sym_RBRACE, STATE(6013), 1, sym_comment, - ACTIONS(9959), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [195124] = 6, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [195222] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, - anon_sym_LPAREN, + ACTIONS(9959), 1, + anon_sym_COMMA, ACTIONS(9961), 1, - anon_sym_DOT, - STATE(4810), 1, - sym_arguments, + anon_sym_RBRACE, STATE(6014), 1, sym_comment, - [195143] = 4, + STATE(6060), 1, + aux_sym_enum_body_repeat1, + [195241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -369366,9 +369472,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9963), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [195158] = 4, + [195256] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -369379,62 +369485,64 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195173] = 4, + [195271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6017), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9967), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195188] = 4, + [195286] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(9969), 1, + anon_sym_DOT, + STATE(4847), 1, + sym_arguments, STATE(6018), 1, sym_comment, - ACTIONS(9967), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195203] = 4, + [195305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6019), 1, sym_comment, - ACTIONS(9963), 3, + ACTIONS(9967), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195218] = 4, + [195320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6020), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9971), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195233] = 4, + [195335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6021), 1, sym_comment, - ACTIONS(9971), 3, + ACTIONS(9965), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195248] = 5, + [195350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -369443,606 +369551,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(6022), 1, sym_comment, - ACTIONS(8763), 2, + ACTIONS(8765), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [195265] = 4, + [195367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6023), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195280] = 4, + [195382] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6024), 1, sym_comment, - ACTIONS(9975), 3, + ACTIONS(9977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195295] = 4, + [195397] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6025), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9967), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195310] = 4, + [195412] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6026), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195325] = 4, + [195427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6027), 1, sym_comment, - ACTIONS(9977), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195340] = 4, + [195442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6028), 1, sym_comment, - ACTIONS(9971), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195355] = 4, + [195457] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6029), 1, sym_comment, - ACTIONS(9963), 3, + ACTIONS(9975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195370] = 4, + [195472] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6030), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9965), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195385] = 4, + [195487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6031), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195400] = 4, + [195502] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6032), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195415] = 4, + [195517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6033), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195430] = 4, + [195532] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6034), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195445] = 4, + [195547] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(9987), 1, + anon_sym_RPAREN, STATE(6035), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195460] = 4, + STATE(7141), 1, + sym_type_annotation, + [195566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6036), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195475] = 6, + [195581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(9985), 1, - anon_sym_RPAREN, STATE(6037), 1, sym_comment, - STATE(7136), 1, - sym_type_annotation, - [195494] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6038), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195509] = 4, + [195611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6039), 1, sym_comment, - ACTIONS(9983), 3, + ACTIONS(9524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195524] = 4, + [195626] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6040), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195539] = 4, + [195641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6041), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195554] = 4, + [195656] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6042), 1, sym_comment, - ACTIONS(3341), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [195569] = 4, + ACTIONS(9983), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6043), 1, sym_comment, - ACTIONS(9983), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195584] = 6, + ACTIONS(3433), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [195686] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9987), 1, - anon_sym_COMMA, ACTIONS(9989), 1, + anon_sym_COMMA, + ACTIONS(9991), 1, anon_sym_RBRACK, - STATE(6002), 1, + STATE(6001), 1, aux_sym_tuple_type_repeat1, STATE(6044), 1, sym_comment, - [195603] = 4, + [195705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6045), 1, sym_comment, - ACTIONS(9991), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195618] = 4, + [195720] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6046), 1, sym_comment, - ACTIONS(9991), 3, + ACTIONS(9993), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195633] = 6, + [195735] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8100), 1, - anon_sym_LBRACE_PIPE, STATE(6047), 1, sym_comment, - STATE(6807), 1, - sym_object_type, - [195652] = 4, + ACTIONS(9993), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195750] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6048), 1, sym_comment, - ACTIONS(9993), 3, + ACTIONS(9995), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195667] = 6, + [195765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_RBRACE, STATE(6049), 1, sym_comment, - STATE(6144), 1, - aux_sym_enum_body_repeat1, - [195686] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6050), 1, - sym_comment, ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195701] = 6, + [195780] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9999), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(10001), 1, - anon_sym_LPAREN, - STATE(992), 1, - sym_statement_block, - STATE(6051), 1, - sym_comment, - [195720] = 6, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(10003), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, - STATE(6052), 1, + ACTIONS(8091), 1, + anon_sym_LBRACE_PIPE, + STATE(6050), 1, sym_comment, - [195739] = 4, + STATE(6807), 1, + sym_object_type, + [195799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6053), 1, + STATE(6051), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195754] = 4, + [195814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6054), 1, + STATE(6052), 1, sym_comment, ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195769] = 4, + [195829] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6055), 1, - sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, + ACTIONS(9997), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195784] = 4, + ACTIONS(9999), 1, + anon_sym_RBRACE, + STATE(6053), 1, + sym_comment, + STATE(6153), 1, + aux_sym_enum_body_repeat1, + [195848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6056), 1, + STATE(6054), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195799] = 4, + [195863] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6057), 1, - sym_comment, - ACTIONS(9981), 3, - sym__automatic_semicolon, + ACTIONS(5901), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195814] = 6, + ACTIONS(10001), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, + STATE(6055), 1, + sym_comment, + [195882] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9598), 1, + ACTIONS(9375), 1, anon_sym_require, - ACTIONS(10005), 1, + ACTIONS(10003), 1, sym_identifier, - STATE(6000), 1, + STATE(5998), 1, sym_nested_identifier, - STATE(6058), 1, + STATE(6056), 1, sym_comment, - [195833] = 5, + [195901] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8860), 1, + ACTIONS(10005), 1, anon_sym_LBRACE, - STATE(6059), 1, + ACTIONS(10007), 1, + anon_sym_LPAREN, + STATE(998), 1, + sym_statement_block, + STATE(6057), 1, + sym_comment, + [195920] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8862), 1, + anon_sym_LBRACE, + STATE(6058), 1, sym_comment, - ACTIONS(8862), 2, + ACTIONS(8864), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [195850] = 4, + [195937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6060), 1, + STATE(6059), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195865] = 5, + [195952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10007), 1, + ACTIONS(10009), 1, anon_sym_COMMA, - ACTIONS(10010), 1, + ACTIONS(10012), 1, anon_sym_RBRACE, - STATE(6061), 2, + STATE(6060), 2, sym_comment, aux_sym_enum_body_repeat1, - [195882] = 4, + [195969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6062), 1, + STATE(6061), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195897] = 4, + [195984] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 1, + anon_sym_const, + STATE(5790), 1, + sym_type_parameter, + STATE(6062), 1, + sym_comment, + [196003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6063), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195912] = 4, + [196018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6064), 1, sym_comment, - ACTIONS(10012), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [195927] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196033] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_const, - STATE(5784), 1, - sym_type_parameter, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6065), 1, sym_comment, - [195946] = 6, + ACTIONS(10014), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [196048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10014), 1, - anon_sym_COMMA, - ACTIONS(10016), 1, - anon_sym_RBRACK, STATE(6066), 1, sym_comment, - STATE(6122), 1, - aux_sym_tuple_type_repeat1, - [195965] = 4, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6067), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195980] = 4, + [196078] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6068), 1, sym_comment, - ACTIONS(10020), 3, + ACTIONS(10016), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195995] = 4, + [196093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6069), 1, sym_comment, - ACTIONS(10022), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196010] = 6, + [196108] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE, - ACTIONS(7621), 1, - anon_sym_extends, STATE(6070), 1, sym_comment, - [196029] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6071), 1, - sym_comment, - ACTIONS(10024), 3, + ACTIONS(10020), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196044] = 4, + [196123] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6072), 1, + STATE(6071), 1, sym_comment, - ACTIONS(10024), 3, + ACTIONS(10022), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196059] = 6, + [196138] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10026), 1, + ACTIONS(10024), 1, anon_sym_COMMA, - ACTIONS(10028), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - STATE(6073), 1, + ACTIONS(10026), 1, + anon_sym_RBRACK, + STATE(6072), 1, sym_comment, - [196078] = 4, + STATE(6128), 1, + aux_sym_tuple_type_repeat1, + [196157] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6074), 1, + STATE(6073), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10028), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196093] = 6, + [196172] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370050,281 +370143,294 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(10030), 1, anon_sym_COMMA, ACTIONS(10032), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, - STATE(6075), 1, + anon_sym_RPAREN, + STATE(5907), 1, + aux_sym_formal_parameters_repeat1, + STATE(6074), 1, sym_comment, - [196112] = 4, + [196191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6076), 1, + STATE(6075), 1, sym_comment, - ACTIONS(10034), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196127] = 6, + [196206] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10036), 1, - anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(7627), 1, + anon_sym_AMP, + ACTIONS(7629), 1, + anon_sym_PIPE, + ACTIONS(7631), 1, + anon_sym_extends, + STATE(6076), 1, + sym_comment, + [196225] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9405), 1, + anon_sym_LBRACE, + ACTIONS(10034), 1, + sym_identifier, + STATE(5514), 1, + sym_export_clause, STATE(6077), 1, sym_comment, - [196146] = 4, + [196244] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + ACTIONS(9401), 1, + anon_sym_as, STATE(6078), 1, sym_comment, - ACTIONS(9979), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196161] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6742), 1, + sym__from_clause, + [196263] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9399), 1, - anon_sym_LBRACE, - ACTIONS(10040), 1, - sym_identifier, - STATE(5512), 1, - sym_export_clause, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10036), 1, + anon_sym_COMMA, + ACTIONS(10038), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6079), 1, sym_comment, - [196180] = 4, + [196282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6080), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196195] = 6, + [196297] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8080), 1, - anon_sym_LBRACE, - ACTIONS(8082), 1, - anon_sym_LBRACE_PIPE, - STATE(1332), 1, - sym_object_type, + ACTIONS(10040), 1, + anon_sym_COMMA, + ACTIONS(10042), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6081), 1, sym_comment, - [196214] = 6, + [196316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10042), 1, - anon_sym_COMMA, - ACTIONS(10044), 1, - anon_sym_RPAREN, - STATE(5921), 1, - aux_sym_formal_parameters_repeat1, STATE(6082), 1, sym_comment, - [196233] = 4, + ACTIONS(9985), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196331] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10044), 1, + anon_sym_COMMA, + ACTIONS(10046), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6083), 1, sym_comment, - ACTIONS(9981), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196248] = 4, + [196350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6084), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196263] = 6, + [196365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5974), 1, - anon_sym_RPAREN, STATE(6085), 1, sym_comment, - STATE(6134), 1, - aux_sym_array_repeat1, - [196282] = 6, + ACTIONS(10028), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5974), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(6086), 1, sym_comment, - [196301] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8116), 1, + anon_sym_LBRACE, + ACTIONS(8118), 1, + anon_sym_LBRACE_PIPE, + STATE(1420), 1, + sym_object_type, STATE(6087), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196316] = 6, + [196414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - ACTIONS(9395), 1, - anon_sym_as, STATE(6088), 1, sym_comment, - STATE(6725), 1, - sym__from_clause, - [196335] = 4, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196429] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6089), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196350] = 4, + [196444] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6090), 1, sym_comment, - ACTIONS(10046), 3, + ACTIONS(10050), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196365] = 4, + [196459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6012), 1, + anon_sym_RPAREN, STATE(6091), 1, sym_comment, - ACTIONS(10034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196380] = 4, + STATE(6140), 1, + aux_sym_array_repeat1, + [196478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6012), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6092), 1, sym_comment, - ACTIONS(10018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196395] = 4, + [196497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6093), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196410] = 4, + [196512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6094), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196425] = 4, + [196527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6095), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196440] = 4, + [196542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6096), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196455] = 4, + [196557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6097), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196470] = 6, + [196572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(10050), 1, - anon_sym_RBRACE, - STATE(5746), 1, - aux_sym_object_repeat1, STATE(6098), 1, sym_comment, - [196489] = 4, + ACTIONS(10016), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370335,132 +370441,134 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196504] = 4, + [196602] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6100), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196519] = 5, + [196617] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, STATE(6101), 1, sym_comment, - ACTIONS(10054), 2, + ACTIONS(9411), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196536] = 5, + [196632] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, STATE(6102), 1, sym_comment, - ACTIONS(10054), 2, + ACTIONS(9979), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196553] = 4, + [196647] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(10054), 1, + anon_sym_RBRACE, + STATE(5749), 1, + aux_sym_object_repeat1, STATE(6103), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196568] = 4, + [196666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6104), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9397), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196583] = 4, + [196681] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6105), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196598] = 4, + [196696] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6106), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196613] = 4, + [196711] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(6107), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(10058), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [196628] = 4, + [196728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(6108), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10058), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [196643] = 6, + [196745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7948), 1, - anon_sym_COMMA, - ACTIONS(10050), 1, - anon_sym_RBRACE, - STATE(5952), 1, - aux_sym_object_repeat1, STATE(6109), 1, sym_comment, - [196662] = 4, + ACTIONS(10060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196760] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8124), 1, + anon_sym_COMMA, + ACTIONS(10054), 1, + anon_sym_RBRACE, + STATE(5949), 1, + aux_sym_object_repeat1, STATE(6110), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196677] = 4, + [196779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370471,7 +370579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196692] = 4, + [196794] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370482,20 +370590,18 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196707] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196809] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10058), 1, - sym_identifier, - ACTIONS(10060), 1, - anon_sym_LBRACK, - ACTIONS(10062), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6113), 1, sym_comment, - [196726] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196824] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370506,169 +370612,171 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196741] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196839] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10064), 1, - sym_identifier, - ACTIONS(10066), 1, - anon_sym_LBRACK, - ACTIONS(10068), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6115), 1, sym_comment, - [196760] = 4, + ACTIONS(9379), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6116), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196775] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196869] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10070), 1, - sym_identifier, - ACTIONS(10072), 1, - anon_sym_LBRACK, - ACTIONS(10074), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6117), 1, sym_comment, - [196794] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6118), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196809] = 6, + [196899] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10076), 1, + ACTIONS(10062), 1, sym_identifier, - ACTIONS(10078), 1, + ACTIONS(10064), 1, anon_sym_LBRACK, - ACTIONS(10080), 1, + ACTIONS(10066), 1, sym_private_property_identifier, STATE(6119), 1, sym_comment, - [196828] = 4, + [196918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6120), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196843] = 4, + [196933] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10068), 1, + sym_identifier, + ACTIONS(10070), 1, + anon_sym_LBRACK, + ACTIONS(10072), 1, + sym_private_property_identifier, STATE(6121), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196858] = 6, + [196952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10082), 1, - anon_sym_COMMA, - ACTIONS(10084), 1, - anon_sym_RBRACK, - STATE(6002), 1, - aux_sym_tuple_type_repeat1, STATE(6122), 1, sym_comment, - [196877] = 4, + ACTIONS(10060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196967] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10074), 1, + sym_identifier, + ACTIONS(10076), 1, + anon_sym_LBRACK, + ACTIONS(10078), 1, + sym_private_property_identifier, STATE(6123), 1, sym_comment, - ACTIONS(10048), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196892] = 4, + [196986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6124), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196907] = 4, + [197001] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10080), 1, + sym_identifier, + ACTIONS(10082), 1, + anon_sym_LBRACK, + ACTIONS(10084), 1, + sym_private_property_identifier, STATE(6125), 1, sym_comment, - ACTIONS(9969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196922] = 4, + [197020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6126), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196937] = 4, + [197035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6127), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196952] = 4, + [197050] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10086), 1, + anon_sym_COMMA, + ACTIONS(10088), 1, + anon_sym_RBRACK, + STATE(6001), 1, + aux_sym_tuple_type_repeat1, STATE(6128), 1, sym_comment, - ACTIONS(9391), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196967] = 4, + [197069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370679,227 +370787,223 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196982] = 4, + [197084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6130), 1, sym_comment, - ACTIONS(9391), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196997] = 6, + [197099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8080), 1, - anon_sym_LBRACE, - ACTIONS(8082), 1, - anon_sym_LBRACE_PIPE, - STATE(1284), 1, - sym_object_type, STATE(6131), 1, sym_comment, - [197016] = 4, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6132), 1, sym_comment, - ACTIONS(9377), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197031] = 6, + [197129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10088), 1, - anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACE, STATE(6133), 1, sym_comment, - STATE(6169), 1, - aux_sym_enum_body_repeat1, - [197050] = 6, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(10092), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(6134), 1, sym_comment, - [197069] = 4, + ACTIONS(9397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6135), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197084] = 6, + [197174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10094), 1, - anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6136), 1, sym_comment, - [197103] = 4, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197189] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8116), 1, + anon_sym_LBRACE, + ACTIONS(8118), 1, + anon_sym_LBRACE_PIPE, + STATE(1453), 1, + sym_object_type, STATE(6137), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197118] = 4, + [197208] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6138), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9379), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197133] = 4, + [197223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10092), 1, + anon_sym_COMMA, + ACTIONS(10094), 1, + anon_sym_RBRACE, STATE(6139), 1, sym_comment, - ACTIONS(9981), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197148] = 4, + STATE(6175), 1, + aux_sym_enum_body_repeat1, + [197242] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(10096), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6140), 1, sym_comment, - ACTIONS(9369), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197163] = 5, + [197261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6586), 1, + ACTIONS(6638), 1, sym__automatic_semicolon, STATE(6141), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(2400), 2, anon_sym_else, anon_sym_while, - [197180] = 4, + [197278] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6142), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197195] = 4, + [197293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6143), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197210] = 6, + [197308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10098), 1, - anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6144), 1, sym_comment, - [197229] = 4, + ACTIONS(10060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6145), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197244] = 4, + [197338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6146), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197259] = 4, + [197353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6147), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197274] = 4, + [197368] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6148), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197289] = 4, + [197383] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -370910,95 +371014,99 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197304] = 4, + [197398] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10098), 1, + anon_sym_COMMA, + ACTIONS(10100), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6150), 1, sym_comment, - ACTIONS(10052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197319] = 4, + [197417] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6151), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197334] = 4, + [197432] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6152), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197349] = 4, + [197447] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10102), 1, + anon_sym_COMMA, + ACTIONS(10104), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6153), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197364] = 4, + [197466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6154), 1, sym_comment, - ACTIONS(10102), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197379] = 4, + [197481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6155), 1, sym_comment, - ACTIONS(10102), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197394] = 4, + [197496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6156), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197409] = 4, + [197511] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6157), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197424] = 4, + [197526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -371009,132 +371117,128 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197439] = 4, + [197541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6159), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197454] = 4, + [197556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6160), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197469] = 4, + [197571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6161), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197484] = 4, + [197586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6162), 1, sym_comment, - ACTIONS(10056), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197499] = 4, + [197601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6163), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197514] = 4, + [197616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6164), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197529] = 4, + [197631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6165), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197544] = 4, + [197646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6166), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197559] = 6, + [197661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10104), 1, - anon_sym_COMMA, - ACTIONS(10106), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6167), 1, sym_comment, - [197578] = 4, + ACTIONS(10060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6168), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197593] = 6, + [197691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10108), 1, - anon_sym_COMMA, - ACTIONS(10110), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6169), 1, sym_comment, - [197612] = 4, + ACTIONS(9411), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -371145,168 +371249,172 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197627] = 4, + [197721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6171), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197642] = 4, + [197736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6172), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197657] = 4, + [197751] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10108), 1, + anon_sym_COMMA, + ACTIONS(10110), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6173), 1, sym_comment, - ACTIONS(10056), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197672] = 5, + [197770] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5603), 1, + ACTIONS(5668), 1, anon_sym_RPAREN, ACTIONS(10112), 1, anon_sym_COMMA, STATE(6174), 2, sym_comment, aux_sym_sequence_expression_repeat1, - [197689] = 5, + [197787] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10115), 1, - anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(10117), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6175), 1, sym_comment, - ACTIONS(8685), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [197706] = 5, + [197806] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8119), 1, - anon_sym_EQ, STATE(6176), 1, sym_comment, - ACTIONS(4445), 2, - anon_sym_in, - anon_sym_of, - [197723] = 6, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3251), 1, - anon_sym_while, - ACTIONS(10117), 1, - anon_sym_else, STATE(6177), 1, sym_comment, - STATE(6596), 1, - sym_else_clause, - [197742] = 4, + ACTIONS(10056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197836] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6178), 1, sym_comment, - ACTIONS(10119), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197757] = 4, + [197851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6179), 1, sym_comment, - ACTIONS(10121), 3, + ACTIONS(10060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197772] = 6, + [197866] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(10123), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, + ACTIONS(10119), 1, + anon_sym_LBRACE, STATE(6180), 1, sym_comment, - [197791] = 4, + ACTIONS(8687), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [197883] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_EQ, STATE(6181), 1, sym_comment, - ACTIONS(10121), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197806] = 4, + ACTIONS(4442), 2, + anon_sym_in, + anon_sym_of, + [197900] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(3313), 1, + anon_sym_while, + ACTIONS(10121), 1, + anon_sym_else, STATE(6182), 1, sym_comment, - ACTIONS(10125), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197821] = 4, + STATE(6602), 1, + sym_else_clause, + [197919] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(10123), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6183), 1, sym_comment, - ACTIONS(10127), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197836] = 4, + [197938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6184), 1, sym_comment, - ACTIONS(10129), 3, + ACTIONS(10125), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197851] = 4, + [197953] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -371317,643 +371425,643 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197866] = 6, + [197968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6021), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(6186), 1, sym_comment, - [197885] = 6, + ACTIONS(10127), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6021), 1, - anon_sym_RPAREN, - STATE(6180), 1, - aux_sym_array_repeat1, STATE(6187), 1, sym_comment, - [197904] = 6, + ACTIONS(10129), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10131), 1, - anon_sym_COMMA, - ACTIONS(10133), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, STATE(6188), 1, sym_comment, - [197923] = 4, + ACTIONS(10131), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198013] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6001), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6189), 1, sym_comment, - ACTIONS(9981), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197938] = 4, + [198032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6001), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_array_repeat1, STATE(6190), 1, sym_comment, - ACTIONS(10135), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197953] = 6, + [198051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10137), 1, - anon_sym_COMMA, - ACTIONS(10139), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, STATE(6191), 1, sym_comment, - [197972] = 4, + ACTIONS(10133), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198066] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10135), 1, + anon_sym_COMMA, + ACTIONS(10137), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6192), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197987] = 4, + [198085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6193), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10131), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198002] = 6, + [198100] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10141), 1, + ACTIONS(10139), 1, anon_sym_COMMA, - ACTIONS(10143), 1, + ACTIONS(10141), 1, anon_sym_GT, - STATE(5932), 1, + STATE(5934), 1, aux_sym_type_arguments_repeat1, STATE(6194), 1, sym_comment, - [198021] = 6, + [198119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RPAREN, - STATE(6174), 1, - aux_sym_sequence_expression_repeat1, STATE(6195), 1, sym_comment, - [198040] = 4, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198134] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10143), 1, + anon_sym_COMMA, + ACTIONS(10145), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6196), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198055] = 4, + [198153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6197), 1, sym_comment, - ACTIONS(10145), 3, + ACTIONS(10147), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198070] = 4, + [198168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6198), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198085] = 4, + [198183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6199), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198100] = 4, + [198198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6200), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198115] = 4, + [198213] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5175), 1, + anon_sym_COMMA, + ACTIONS(8665), 1, + anon_sym_RPAREN, + STATE(6174), 1, + aux_sym_sequence_expression_repeat1, STATE(6201), 1, sym_comment, - ACTIONS(9969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198130] = 4, + [198232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6202), 1, sym_comment, - ACTIONS(10052), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198145] = 4, + [198247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6203), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10149), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198160] = 4, + [198262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6204), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198175] = 4, + [198277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6205), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198190] = 4, + [198292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6206), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198205] = 4, + [198307] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6207), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198220] = 4, + [198322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6208), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198235] = 4, + [198337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6209), 1, sym_comment, - ACTIONS(10147), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198250] = 4, + [198352] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6210), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198265] = 4, + [198367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6211), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198382] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6212), 1, + sym_comment, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198280] = 6, + [198397] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10149), 1, + ACTIONS(10151), 1, sym_identifier, - STATE(3549), 1, + STATE(3481), 1, sym_decorator_member_expression, - STATE(3662), 1, + STATE(3663), 1, sym_decorator_call_expression, - STATE(6212), 1, - sym_comment, - [198299] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(6213), 1, sym_comment, - ACTIONS(9969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198314] = 4, + [198416] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6214), 1, sym_comment, - ACTIONS(9514), 3, + ACTIONS(9411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198329] = 4, + [198431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6215), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198344] = 4, + [198446] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6216), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198359] = 4, + [198461] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6217), 1, sym_comment, - ACTIONS(10151), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198374] = 4, + [198476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6218), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198389] = 4, + [198491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6219), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198404] = 4, + [198506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6220), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198419] = 4, + [198521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6221), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198434] = 4, + [198536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6222), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198449] = 4, + [198551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6223), 1, sym_comment, - ACTIONS(10147), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198464] = 4, + [198566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6224), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198479] = 4, + [198581] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10157), 1, + sym_identifier, + ACTIONS(10159), 1, + anon_sym_SEMI, + ACTIONS(10161), 1, + sym__automatic_semicolon, STATE(6225), 1, sym_comment, - ACTIONS(9969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198494] = 6, + [198600] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10153), 1, + ACTIONS(10163), 1, sym_identifier, - ACTIONS(10155), 1, + ACTIONS(10165), 1, anon_sym_SEMI, - ACTIONS(10157), 1, + ACTIONS(10167), 1, sym__automatic_semicolon, STATE(6226), 1, sym_comment, - [198513] = 4, + [198619] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6227), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198528] = 4, + [198634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6228), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198543] = 4, + [198649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6229), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198558] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198664] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10159), 1, - sym_identifier, - ACTIONS(10161), 1, - anon_sym_SEMI, - ACTIONS(10163), 1, - sym__automatic_semicolon, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6230), 1, sym_comment, - [198577] = 4, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198679] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6231), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198592] = 4, + [198694] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6232), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198607] = 4, + [198709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6233), 1, sym_comment, - ACTIONS(10165), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198622] = 4, + [198724] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6234), 1, sym_comment, - ACTIONS(10165), 3, + ACTIONS(10169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198637] = 4, + [198739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6235), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198652] = 4, + [198754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6236), 1, sym_comment, - ACTIONS(10165), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198667] = 4, + [198769] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10171), 1, + anon_sym_LPAREN, + ACTIONS(10173), 1, + anon_sym_await, + STATE(98), 1, + sym__for_header, STATE(6237), 1, sym_comment, - ACTIONS(9981), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198682] = 4, + [198788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6238), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198697] = 4, + [198803] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6239), 1, sym_comment, - ACTIONS(10165), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198712] = 4, + [198818] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6240), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198727] = 6, + [198833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10167), 1, - anon_sym_LPAREN, - ACTIONS(10169), 1, - anon_sym_await, - STATE(77), 1, - sym__for_header, STATE(6241), 1, sym_comment, - [198746] = 4, + ACTIONS(10169), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -371964,1105 +372072,1108 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198761] = 4, + [198863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6243), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198776] = 4, + [198878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10175), 1, + anon_sym_COMMA, + ACTIONS(10177), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6244), 1, sym_comment, - ACTIONS(10086), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198791] = 6, + [198897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10171), 1, - anon_sym_COMMA, - ACTIONS(10173), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6245), 1, sym_comment, - [198810] = 4, + ACTIONS(9985), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10179), 1, + anon_sym_COMMA, + ACTIONS(10181), 1, + anon_sym_RBRACE, + STATE(6060), 1, + aux_sym_enum_body_repeat1, STATE(6246), 1, sym_comment, - ACTIONS(9969), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198825] = 4, + [198931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6247), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198840] = 4, + [198946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6248), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198855] = 4, + [198961] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6249), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198870] = 4, + [198976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6250), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198885] = 4, + [198991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6251), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198900] = 6, + [199006] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10175), 1, - anon_sym_COMMA, - ACTIONS(10177), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_enum_body_repeat1, STATE(6252), 1, sym_comment, - [198919] = 4, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6253), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198934] = 6, + [199036] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10179), 1, - anon_sym_COMMA, - ACTIONS(10181), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, STATE(6254), 1, sym_comment, - [198953] = 4, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6255), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(9985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198968] = 6, + [199066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10183), 1, - anon_sym_COMMA, - ACTIONS(10185), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, STATE(6256), 1, sym_comment, - [198987] = 4, + ACTIONS(9985), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199081] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6257), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199002] = 6, + [199096] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10187), 1, - anon_sym_COMMA, - ACTIONS(10189), 1, - anon_sym_GT, - STATE(5932), 1, - aux_sym_type_arguments_repeat1, STATE(6258), 1, sym_comment, - [199021] = 4, + ACTIONS(10169), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199111] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6259), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199036] = 6, + [199126] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8050), 1, - anon_sym_LBRACE, - ACTIONS(8052), 1, - anon_sym_LBRACE_PIPE, - STATE(1088), 1, - sym_object_type, + ACTIONS(10183), 1, + anon_sym_COMMA, + ACTIONS(10185), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6260), 1, sym_comment, - [199055] = 4, + [199145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6261), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199070] = 4, + [199160] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10187), 1, + anon_sym_COMMA, + ACTIONS(10189), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, STATE(6262), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199085] = 4, + [199179] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6263), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199100] = 6, + [199194] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, + ACTIONS(10191), 1, anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RPAREN, - STATE(6264), 1, - sym_comment, - STATE(6285), 1, - aux_sym_array_repeat1, - [199119] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, - STATE(6265), 1, + ACTIONS(10193), 1, + anon_sym_GT, + STATE(5934), 1, + aux_sym_type_arguments_repeat1, + STATE(6264), 1, sym_comment, - [199138] = 4, + [199213] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6266), 1, + STATE(6265), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199153] = 4, + [199228] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8029), 1, + anon_sym_LBRACE, + ACTIONS(8031), 1, + anon_sym_LBRACE_PIPE, + STATE(1181), 1, + sym_object_type, + STATE(6266), 1, + sym_comment, + [199247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6267), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199168] = 4, + [199262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6268), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199183] = 4, + [199277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6269), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199198] = 4, + [199292] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_RPAREN, STATE(6270), 1, sym_comment, - ACTIONS(10086), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199213] = 5, + STATE(6291), 1, + aux_sym_array_repeat1, + [199311] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_DOT, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6271), 1, sym_comment, - ACTIONS(10191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199230] = 5, + [199330] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7867), 1, - anon_sym_DOT, STATE(6272), 1, sym_comment, - ACTIONS(10191), 2, + ACTIONS(10018), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [199247] = 4, + [199345] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6273), 1, sym_comment, - ACTIONS(10147), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199262] = 4, + [199360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6274), 1, sym_comment, - ACTIONS(9979), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199277] = 4, + [199375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6275), 1, sym_comment, - ACTIONS(10147), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199292] = 4, + [199390] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6276), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199307] = 4, + [199405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7907), 1, + anon_sym_DOT, STATE(6277), 1, sym_comment, - ACTIONS(10151), 3, + ACTIONS(10195), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [199322] = 4, + [199422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7909), 1, + anon_sym_DOT, STATE(6278), 1, sym_comment, - ACTIONS(9371), 3, + ACTIONS(10195), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [199337] = 4, + [199439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6279), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10153), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199352] = 4, + [199454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6280), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199367] = 4, + [199469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6281), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199382] = 6, + [199484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8050), 1, - anon_sym_LBRACE, - ACTIONS(8052), 1, - anon_sym_LBRACE_PIPE, - STATE(1092), 1, - sym_object_type, STATE(6282), 1, sym_comment, - [199401] = 4, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199499] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6283), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199416] = 6, + [199514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10195), 1, - anon_sym_RBRACE, - STATE(6245), 1, - aux_sym_enum_body_repeat1, STATE(6284), 1, sym_comment, - [199435] = 6, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(10197), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_array_repeat1, STATE(6285), 1, sym_comment, - [199454] = 4, + ACTIONS(10090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6286), 1, sym_comment, - ACTIONS(9969), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199469] = 4, + [199559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6287), 1, sym_comment, - ACTIONS(9981), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199484] = 4, + [199574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8029), 1, + anon_sym_LBRACE, + ACTIONS(8031), 1, + anon_sym_LBRACE_PIPE, + STATE(1086), 1, + sym_object_type, STATE(6288), 1, sym_comment, - ACTIONS(10086), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199499] = 4, + [199593] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6289), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199514] = 4, + [199608] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10197), 1, + anon_sym_COMMA, + ACTIONS(10199), 1, + anon_sym_RBRACE, + STATE(6244), 1, + aux_sym_enum_body_repeat1, STATE(6290), 1, sym_comment, - ACTIONS(9371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199529] = 4, + [199627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(10201), 1, + anon_sym_RPAREN, + STATE(5803), 1, + aux_sym_array_repeat1, STATE(6291), 1, sym_comment, - ACTIONS(10086), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199544] = 4, + [199646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6292), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(10090), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199559] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199661] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10199), 1, - sym_identifier, - ACTIONS(10201), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6293), 1, sym_comment, - [199575] = 4, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6294), 1, sym_comment, - ACTIONS(3509), 2, - anon_sym_else, - anon_sym_while, - [199589] = 5, + ACTIONS(10090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10203), 1, - anon_sym_SEMI, - ACTIONS(10205), 1, - sym__automatic_semicolon, STATE(6295), 1, sym_comment, - [199605] = 5, + ACTIONS(10090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(975), 1, - sym_class_body, STATE(6296), 1, sym_comment, - [199621] = 5, + ACTIONS(3615), 2, + anon_sym_else, + anon_sym_while, + [199720] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8943), 1, + ACTIONS(7905), 1, anon_sym_LBRACE, - STATE(322), 1, + STATE(5345), 1, sym_statement_block, STATE(6297), 1, sym_comment, - [199637] = 5, + [199736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8929), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(999), 1, - sym_statement_block, + STATE(1088), 1, + sym_class_body, STATE(6298), 1, sym_comment, - [199653] = 5, + [199752] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, + ACTIONS(7585), 1, anon_sym_LBRACE, - STATE(974), 1, + STATE(305), 1, sym_class_body, STATE(6299), 1, sym_comment, - [199669] = 4, + [199768] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(319), 1, + sym_class_body, STATE(6300), 1, sym_comment, - ACTIONS(10207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199683] = 5, + [199784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1014), 1, - sym_class_body, + ACTIONS(10203), 1, + anon_sym_SEMI, + ACTIONS(10205), 1, + sym__automatic_semicolon, STATE(6301), 1, sym_comment, - [199699] = 5, + [199800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8943), 1, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(332), 1, - sym_statement_block, + STATE(1012), 1, + sym_class_body, STATE(6302), 1, sym_comment, - [199715] = 5, + [199816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7695), 1, + ACTIONS(8943), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym_class_body, + STATE(317), 1, + sym_statement_block, STATE(6303), 1, sym_comment, - [199731] = 5, + [199832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7701), 1, + ACTIONS(8931), 1, anon_sym_LBRACE, - STATE(328), 1, - sym_class_body, + STATE(982), 1, + sym_statement_block, STATE(6304), 1, sym_comment, - [199747] = 5, + [199848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7695), 1, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(1192), 1, + STATE(1002), 1, sym_class_body, STATE(6305), 1, sym_comment, - [199763] = 5, + [199864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym_parenthesized_expression, STATE(6306), 1, sym_comment, - [199779] = 4, + ACTIONS(10207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_class_body, STATE(6307), 1, sym_comment, - ACTIONS(3623), 2, - anon_sym_else, - anon_sym_while, - [199793] = 5, + [199894] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, + ACTIONS(8943), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_statement_block, STATE(6308), 1, sym_comment, - [199809] = 5, + [199910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_parenthesized_expression, STATE(6309), 1, sym_comment, - [199825] = 5, + ACTIONS(3633), 2, + anon_sym_else, + anon_sym_while, + [199924] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7701), 1, - anon_sym_LBRACE, - STATE(336), 1, - sym_class_body, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym_parenthesized_expression, STATE(6310), 1, sym_comment, - [199841] = 5, + [199940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7695), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(1025), 1, sym_class_body, STATE(6311), 1, sym_comment, - [199857] = 5, + [199956] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3499), 1, - sym_statement_block, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym_parenthesized_expression, STATE(6312), 1, sym_comment, - [199873] = 5, + [199972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8929), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(1006), 1, - sym_statement_block, + STATE(1195), 1, + sym_class_body, STATE(6313), 1, sym_comment, - [199889] = 5, + [199988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(1000), 1, - sym_class_body, + ACTIONS(10211), 1, + anon_sym_LPAREN, STATE(6314), 1, sym_comment, - [199905] = 5, + STATE(6426), 1, + sym_parenthesized_expression, + [200004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7701), 1, + ACTIONS(10213), 1, anon_sym_LBRACE, - STATE(311), 1, - sym_class_body, + STATE(1048), 1, + sym_enum_body, STATE(6315), 1, sym_comment, - [199921] = 5, + [200020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, + ACTIONS(7585), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_class_body, STATE(6316), 1, sym_comment, - STATE(6418), 1, - sym_parenthesized_expression, - [199937] = 5, + [200036] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10213), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_enum_body, + STATE(1030), 1, + sym_class_body, STATE(6317), 1, sym_comment, - [199953] = 5, + [200052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10209), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(95), 1, sym_parenthesized_expression, STATE(6318), 1, sym_comment, - [199969] = 5, + [200068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7695), 1, + ACTIONS(8931), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_class_body, + STATE(981), 1, + sym_statement_block, STATE(6319), 1, sym_comment, - [199985] = 5, + [200084] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym_parenthesized_expression, + ACTIONS(7583), 1, + anon_sym_LBRACE, + STATE(1011), 1, + sym_class_body, STATE(6320), 1, sym_comment, - [200001] = 5, + [200100] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10215), 1, + ACTIONS(8642), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(1050), 1, sym_statement_block, STATE(6321), 1, sym_comment, - [200017] = 5, + [200116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10217), 1, - anon_sym_SEMI, - ACTIONS(10219), 1, - sym__automatic_semicolon, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_parenthesized_expression, STATE(6322), 1, sym_comment, - [200033] = 4, + [200132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10215), 1, + anon_sym_SEMI, + ACTIONS(10217), 1, + sym__automatic_semicolon, STATE(6323), 1, sym_comment, - ACTIONS(3659), 2, - anon_sym_else, - anon_sym_while, - [200047] = 5, + [200148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10221), 1, + ACTIONS(10219), 1, anon_sym_SEMI, - ACTIONS(10223), 1, + ACTIONS(10221), 1, sym__automatic_semicolon, STATE(6324), 1, sym_comment, - [200063] = 5, + [200164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10225), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + STATE(1095), 1, + sym_class_body, STATE(6325), 1, sym_comment, - [200079] = 4, + [200180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym_parenthesized_expression, STATE(6326), 1, sym_comment, - ACTIONS(3661), 2, - anon_sym_else, - anon_sym_while, - [200093] = 4, + [200196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10223), 1, + anon_sym_SEMI, + ACTIONS(10225), 1, + sym__automatic_semicolon, STATE(6327), 1, sym_comment, - ACTIONS(2324), 2, - anon_sym_else, - anon_sym_while, - [200107] = 4, + [200212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6328), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3537), 2, anon_sym_else, anon_sym_while, - [200121] = 5, + [200226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_statement_block, STATE(6329), 1, sym_comment, - [200137] = 5, + ACTIONS(3553), 2, + anon_sym_else, + anon_sym_while, + [200240] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10227), 1, - anon_sym_SEMI, - ACTIONS(10229), 1, - sym__automatic_semicolon, STATE(6330), 1, sym_comment, - [200153] = 4, + ACTIONS(2428), 2, + anon_sym_else, + anon_sym_while, + [200254] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10213), 1, + anon_sym_LBRACE, + STATE(1166), 1, + sym_enum_body, STATE(6331), 1, sym_comment, - ACTIONS(2324), 2, - anon_sym_else, - anon_sym_while, - [200167] = 5, + [200270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10213), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym_enum_body, STATE(6332), 1, sym_comment, - [200183] = 5, + ACTIONS(3581), 2, + anon_sym_else, + anon_sym_while, + [200284] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3514), 1, - sym_statement_block, STATE(6333), 1, sym_comment, - [200199] = 4, + ACTIONS(2428), 2, + anon_sym_else, + anon_sym_while, + [200298] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3462), 1, + sym_statement_block, STATE(6334), 1, sym_comment, - ACTIONS(3673), 2, - anon_sym_else, - anon_sym_while, - [200213] = 4, + [200314] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10227), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_statement_block, STATE(6335), 1, sym_comment, - ACTIONS(10231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200227] = 4, + [200330] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10229), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_statement_block, STATE(6336), 1, sym_comment, - ACTIONS(3675), 2, - anon_sym_else, - anon_sym_while, - [200241] = 4, + [200346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6337), 1, sym_comment, - ACTIONS(3677), 2, + ACTIONS(3675), 2, anon_sym_else, anon_sym_while, - [200255] = 5, + [200360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10233), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_statement_block, STATE(6338), 1, sym_comment, - [200271] = 4, + ACTIONS(3673), 2, + anon_sym_else, + anon_sym_while, + [200374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10231), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_statement_block, STATE(6339), 1, sym_comment, - ACTIONS(10235), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200285] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200390] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6340), 1, sym_comment, - ACTIONS(10237), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [200299] = 4, + ACTIONS(3671), 2, + anon_sym_else, + anon_sym_while, + [200404] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6341), 1, sym_comment, - ACTIONS(3669), 2, - anon_sym_else, - anon_sym_while, - [200313] = 4, + ACTIONS(10233), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200418] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -373072,273 +373183,270 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3667), 2, anon_sym_else, anon_sym_while, - [200327] = 4, + [200432] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3497), 1, + sym_statement_block, STATE(6343), 1, sym_comment, - ACTIONS(2302), 2, - anon_sym_else, - anon_sym_while, - [200341] = 5, + [200448] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(7737), 1, anon_sym_LBRACE, - STATE(3493), 1, - sym_statement_block, + STATE(1052), 1, + sym_class_body, STATE(6344), 1, sym_comment, - [200357] = 4, + [200464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10235), 1, + anon_sym_SEMI, + ACTIONS(10237), 1, + sym__automatic_semicolon, STATE(6345), 1, sym_comment, - ACTIONS(5428), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200371] = 5, + [200480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - STATE(4668), 1, - sym_formal_parameters, STATE(6346), 1, sym_comment, - [200387] = 5, + ACTIONS(10239), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_statement_block, STATE(6347), 1, sym_comment, - [200403] = 4, + ACTIONS(3665), 2, + anon_sym_else, + anon_sym_while, + [200508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6348), 1, sym_comment, - ACTIONS(3665), 2, + ACTIONS(3663), 2, anon_sym_else, anon_sym_while, - [200417] = 4, + [200522] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, STATE(6349), 1, sym_comment, - ACTIONS(5767), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200431] = 5, + ACTIONS(10241), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [200536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3489), 1, - sym_statement_block, STATE(6350), 1, sym_comment, - [200447] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2300), 2, + anon_sym_else, + anon_sym_while, + [200550] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10239), 1, - sym_identifier, - ACTIONS(10241), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6351), 1, sym_comment, - [200463] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5595), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200564] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10243), 1, - sym_identifier, - ACTIONS(10245), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3488), 1, + sym_statement_block, STATE(6352), 1, sym_comment, - [200479] = 5, + [200580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_statement_block, STATE(6353), 1, sym_comment, - [200495] = 5, + ACTIONS(6879), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [200594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9999), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(978), 1, + STATE(3492), 1, sym_statement_block, STATE(6354), 1, sym_comment, - [200511] = 5, + [200610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7805), 1, - anon_sym_LBRACE, - STATE(1222), 1, - sym_class_body, STATE(6355), 1, sym_comment, - [200527] = 4, + ACTIONS(3659), 2, + anon_sym_else, + anon_sym_while, + [200624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(340), 1, + sym_statement_block, STATE(6356), 1, sym_comment, - ACTIONS(5789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200541] = 4, + [200640] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10005), 1, + anon_sym_LBRACE, + STATE(978), 1, + sym_statement_block, STATE(6357), 1, sym_comment, - ACTIONS(3649), 2, - anon_sym_else, - anon_sym_while, - [200555] = 5, + [200656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4121), 1, - sym_formal_parameters, + ACTIONS(7655), 1, + anon_sym_LBRACE, + STATE(1484), 1, + sym_class_body, STATE(6358), 1, sym_comment, - [200571] = 4, + [200672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6359), 1, sym_comment, - ACTIONS(6827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200585] = 5, + ACTIONS(3657), 2, + anon_sym_else, + anon_sym_while, + [200686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3487), 1, + sym_statement_block, STATE(6360), 1, sym_comment, - STATE(6531), 1, - sym__from_clause, - [200601] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200702] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10247), 1, - sym_identifier, - ACTIONS(10249), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6361), 1, sym_comment, - [200617] = 4, + ACTIONS(5869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6362), 1, sym_comment, - ACTIONS(3647), 2, - anon_sym_else, - anon_sym_while, - [200631] = 5, + ACTIONS(5796), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7593), 1, - anon_sym_LBRACE, - STATE(1255), 1, - sym_class_body, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(4675), 1, + sym_formal_parameters, STATE(6363), 1, sym_comment, - [200647] = 5, + [200746] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_class_body, + ACTIONS(10243), 1, + sym_identifier, + ACTIONS(10245), 1, + anon_sym_STAR, STATE(6364), 1, sym_comment, - [200663] = 5, + [200762] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7593), 1, - anon_sym_LBRACE, - STATE(1245), 1, - sym_class_body, + ACTIONS(10247), 1, + sym_identifier, + ACTIONS(10249), 1, + anon_sym_STAR, STATE(6365), 1, sym_comment, - [200679] = 4, + [200778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6366), 1, sym_comment, - ACTIONS(3643), 2, + ACTIONS(3655), 2, anon_sym_else, anon_sym_while, - [200693] = 5, + [200792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8579), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_statement_block, + ACTIONS(8959), 1, + anon_sym_from, STATE(6367), 1, sym_comment, - [200709] = 5, + STATE(6529), 1, + sym__from_clause, + [200808] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373349,645 +373457,648 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, STATE(6368), 1, sym_comment, - [200725] = 5, + [200824] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, + ACTIONS(7729), 1, anon_sym_LBRACE, - STATE(1205), 1, + STATE(1253), 1, sym_class_body, STATE(6369), 1, sym_comment, - [200741] = 4, + [200840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6370), 1, sym_comment, - ACTIONS(3639), 2, + ACTIONS(3653), 2, anon_sym_else, anon_sym_while, - [200755] = 4, + [200854] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10255), 1, + sym_identifier, + ACTIONS(10257), 1, + anon_sym_STAR, STATE(6371), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_else, - anon_sym_while, - [200769] = 4, + [200870] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_class_body, STATE(6372), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_else, - anon_sym_while, - [200783] = 4, + [200886] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7729), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym_class_body, STATE(6373), 1, sym_comment, - ACTIONS(3633), 2, - anon_sym_else, - anon_sym_while, - [200797] = 4, + [200902] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6374), 1, sym_comment, - ACTIONS(3631), 2, + ACTIONS(3651), 2, anon_sym_else, anon_sym_while, - [200811] = 5, + [200916] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9772), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_statement_block, STATE(6375), 1, sym_comment, - [200827] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3649), 2, + anon_sym_else, + anon_sym_while, + [200930] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10255), 1, - sym_identifier, - ACTIONS(10257), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6376), 1, sym_comment, - [200843] = 4, + ACTIONS(3647), 2, + anon_sym_else, + anon_sym_while, + [200944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6377), 1, sym_comment, - ACTIONS(3629), 2, + ACTIONS(3645), 2, anon_sym_else, anon_sym_while, - [200857] = 5, + [200958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5543), 1, - sym__from_clause, + ACTIONS(8642), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_statement_block, STATE(6378), 1, sym_comment, - [200873] = 4, + [200974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6379), 1, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3643), 2, anon_sym_else, anon_sym_while, - [200887] = 4, + [200988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + STATE(4150), 1, + sym_formal_parameters, STATE(6380), 1, sym_comment, - ACTIONS(3625), 2, - anon_sym_else, - anon_sym_while, - [200901] = 4, + [201004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6381), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(3641), 2, anon_sym_else, anon_sym_while, - [200915] = 4, + [201018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_LBRACE, + STATE(1213), 1, + sym_class_body, STATE(6382), 1, sym_comment, - ACTIONS(2180), 2, - anon_sym_else, - anon_sym_while, - [200929] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201034] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10259), 1, - sym_identifier, - ACTIONS(10261), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6383), 1, sym_comment, - [200945] = 5, + ACTIONS(3639), 2, + anon_sym_else, + anon_sym_while, + [201048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10263), 1, - anon_sym_COMMA, - ACTIONS(10265), 1, - anon_sym_from, STATE(6384), 1, sym_comment, - [200961] = 5, + ACTIONS(3637), 2, + anon_sym_else, + anon_sym_while, + [201062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(6385), 1, sym_comment, - STATE(6680), 1, - sym_statement_block, - [200977] = 4, + ACTIONS(3677), 2, + anon_sym_else, + anon_sym_while, + [201076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(6386), 1, sym_comment, - ACTIONS(3621), 2, - anon_sym_else, - anon_sym_while, - [200991] = 4, + STATE(6681), 1, + sym_statement_block, + [201092] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9781), 1, + anon_sym_LBRACE, + STATE(1209), 1, + sym_statement_block, STATE(6387), 1, sym_comment, - ACTIONS(6851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201005] = 5, + [201108] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, + ACTIONS(10259), 1, + sym_identifier, + ACTIONS(10261), 1, + anon_sym_STAR, STATE(6388), 1, sym_comment, - STATE(6672), 1, - sym_statement_block, - [201021] = 4, + [201124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5545), 1, + sym__from_clause, STATE(6389), 1, sym_comment, - ACTIONS(6807), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201035] = 4, + [201140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6390), 1, sym_comment, - ACTIONS(3619), 2, + ACTIONS(2312), 2, anon_sym_else, anon_sym_while, - [201049] = 4, + [201154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6391), 1, sym_comment, - ACTIONS(3671), 2, - anon_sym_else, - anon_sym_while, - [201063] = 4, + ACTIONS(6809), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201168] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(6392), 1, sym_comment, - ACTIONS(3615), 2, - anon_sym_else, - anon_sym_while, - [201077] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6676), 1, + sym_statement_block, + [201184] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10267), 1, - sym_identifier, - ACTIONS(10269), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6393), 1, sym_comment, - [201093] = 4, + ACTIONS(6842), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6394), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3631), 2, anon_sym_else, anon_sym_while, - [201107] = 4, + [201212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6395), 1, sym_comment, - ACTIONS(3611), 2, + ACTIONS(3629), 2, anon_sym_else, anon_sym_while, - [201121] = 4, + [201226] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10005), 1, + anon_sym_LBRACE, + STATE(980), 1, + sym_statement_block, STATE(6396), 1, sym_comment, - ACTIONS(3609), 2, - anon_sym_else, - anon_sym_while, - [201135] = 5, + [201242] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3471), 1, - sym_statement_block, STATE(6397), 1, sym_comment, - [201151] = 5, + ACTIONS(3627), 2, + anon_sym_else, + anon_sym_while, + [201256] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9999), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(3512), 1, sym_statement_block, STATE(6398), 1, sym_comment, - [201167] = 5, + [201272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3475), 1, - sym_statement_block, STATE(6399), 1, sym_comment, - [201183] = 5, + ACTIONS(3625), 2, + anon_sym_else, + anon_sym_while, + [201286] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1186), 1, - sym_class_body, + STATE(3509), 1, + sym_statement_block, STATE(6400), 1, sym_comment, - [201199] = 5, + [201302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3476), 1, + STATE(3518), 1, sym_statement_block, STATE(6401), 1, sym_comment, - [201215] = 5, + [201318] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(75), 1, - sym_parenthesized_expression, + ACTIONS(10263), 1, + sym_identifier, + ACTIONS(10265), 1, + sym_private_property_identifier, STATE(6402), 1, sym_comment, - [201231] = 5, + [201334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8889), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_statement_block, STATE(6403), 1, sym_comment, - [201247] = 5, + ACTIONS(3623), 2, + anon_sym_else, + anon_sym_while, + [201348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3479), 1, + STATE(3515), 1, sym_statement_block, STATE(6404), 1, sym_comment, - [201263] = 5, + [201364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3480), 1, + STATE(3514), 1, sym_statement_block, STATE(6405), 1, sym_comment, - [201279] = 5, + [201380] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8891), 1, anon_sym_LBRACE, - STATE(3509), 1, + STATE(1194), 1, sym_statement_block, STATE(6406), 1, sym_comment, - [201295] = 5, + [201396] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(5803), 1, + STATE(3508), 1, sym_statement_block, STATE(6407), 1, sym_comment, - [201311] = 5, + [201412] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(95), 1, - sym_parenthesized_expression, STATE(6408), 1, sym_comment, - [201327] = 5, + ACTIONS(2296), 2, + anon_sym_else, + anon_sym_while, + [201426] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7655), 1, anon_sym_LBRACE, - STATE(4675), 1, - sym_statement_block, + STATE(1477), 1, + sym_class_body, STATE(6409), 1, sym_comment, - [201343] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201442] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10271), 1, - sym_identifier, - ACTIONS(10273), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7709), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_class_body, STATE(6410), 1, sym_comment, - [201359] = 5, + [201458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7805), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(1236), 1, - sym_class_body, + STATE(5805), 1, + sym_statement_block, STATE(6411), 1, sym_comment, - [201375] = 5, + [201474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3483), 1, + STATE(3465), 1, sym_statement_block, STATE(6412), 1, sym_comment, - [201391] = 5, + [201490] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7671), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_class_body, + STATE(3507), 1, + sym_statement_block, STATE(6413), 1, sym_comment, - [201407] = 5, + [201506] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3498), 1, - sym_statement_block, + ACTIONS(10267), 1, + sym_identifier, + ACTIONS(10269), 1, + anon_sym_STAR, STATE(6414), 1, sym_comment, - [201423] = 5, + [201522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3485), 1, - sym_statement_block, + ACTIONS(10271), 1, + anon_sym_COMMA, + ACTIONS(10273), 1, + anon_sym_from, STATE(6415), 1, sym_comment, - [201439] = 5, + [201538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7805), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_class_body, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(100), 1, + sym_parenthesized_expression, STATE(6416), 1, sym_comment, - [201455] = 5, + [201554] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(7655), 1, anon_sym_LBRACE, - STATE(3494), 1, - sym_statement_block, + STATE(1467), 1, + sym_class_body, STATE(6417), 1, sym_comment, - [201471] = 5, + [201570] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10275), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1560), 1, - sym_switch_body, + STATE(3504), 1, + sym_statement_block, STATE(6418), 1, sym_comment, - [201487] = 5, + [201586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7635), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, + STATE(3506), 1, + sym_statement_block, STATE(6419), 1, sym_comment, - STATE(6726), 1, - sym_class_body, - [201503] = 5, + [201602] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, + ACTIONS(10209), 1, anon_sym_LPAREN, - STATE(98), 1, - sym__for_header, + STATE(88), 1, + sym_parenthesized_expression, STATE(6420), 1, sym_comment, - [201519] = 5, + [201618] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3492), 1, + STATE(3500), 1, sym_statement_block, STATE(6421), 1, sym_comment, - [201535] = 4, + [201634] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(4772), 1, + sym_statement_block, STATE(6422), 1, sym_comment, - ACTIONS(3607), 2, - anon_sym_else, - anon_sym_while, - [201549] = 5, + [201650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8579), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1177), 1, - sym_statement_block, STATE(6423), 1, sym_comment, - [201565] = 5, + STATE(6731), 1, + sym_class_body, + [201666] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1173), 1, - sym_class_body, + ACTIONS(10275), 1, + sym_identifier, + ACTIONS(10277), 1, + anon_sym_STAR, STATE(6424), 1, sym_comment, - [201581] = 5, + [201682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7593), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_class_body, + STATE(3498), 1, + sym_statement_block, STATE(6425), 1, sym_comment, - [201597] = 5, + [201698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9772), 1, + ACTIONS(10279), 1, anon_sym_LBRACE, - STATE(1214), 1, - sym_statement_block, + STATE(1542), 1, + sym_switch_body, STATE(6426), 1, sym_comment, - [201613] = 4, + [201714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10281), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym__for_header, STATE(6427), 1, sym_comment, - ACTIONS(10279), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201627] = 4, + [201730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(354), 1, + sym_class_body, STATE(6428), 1, sym_comment, - ACTIONS(10281), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201641] = 4, + [201746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -373995,82 +374106,82 @@ static const uint16_t ts_small_parse_table[] = { STATE(6429), 1, sym_comment, ACTIONS(10283), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201655] = 5, + anon_sym_COMMA, + anon_sym_RPAREN, + [201760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_class_body, STATE(6430), 1, sym_comment, - [201671] = 4, + ACTIONS(10285), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6431), 1, sym_comment, - ACTIONS(5690), 2, + ACTIONS(10287), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201685] = 4, + [201788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6432), 1, sym_comment, - ACTIONS(5747), 2, + ACTIONS(5612), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201699] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201802] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10285), 1, - sym_identifier, - ACTIONS(10287), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6433), 1, sym_comment, - [201715] = 4, + ACTIONS(5606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201816] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10291), 1, + anon_sym_STAR, STATE(6434), 1, sym_comment, - ACTIONS(6839), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201729] = 5, + [201832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10289), 1, - anon_sym_SEMI, - ACTIONS(10291), 1, - sym__automatic_semicolon, + ACTIONS(7729), 1, + anon_sym_LBRACE, + STATE(1237), 1, + sym_class_body, STATE(6435), 1, sym_comment, - [201745] = 4, + [201848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_class_body, STATE(6436), 1, sym_comment, - ACTIONS(6843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201759] = 5, + [201864] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -374081,501 +374192,512 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, STATE(6437), 1, sym_comment, - [201775] = 5, + [201880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3497), 1, - sym_statement_block, STATE(6438), 1, sym_comment, - [201791] = 4, + ACTIONS(6875), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201894] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6353), 1, + sym_statement_block, STATE(6439), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [201805] = 5, + [201910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3478), 1, - sym_statement_block, STATE(6440), 1, sym_comment, - [201821] = 5, + ACTIONS(6887), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7593), 1, - anon_sym_LBRACE, - STATE(1300), 1, - sym_class_body, STATE(6441), 1, sym_comment, - [201837] = 4, + ACTIONS(3621), 2, + anon_sym_else, + anon_sym_while, + [201938] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3489), 1, + sym_statement_block, STATE(6442), 1, sym_comment, - ACTIONS(2306), 2, - anon_sym_else, - anon_sym_while, - [201851] = 4, + [201954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(5841), 1, + sym_statement_block, STATE(6443), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [201865] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201970] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10297), 1, - sym_identifier, - ACTIONS(10299), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2609), 1, + sym_class_body, STATE(6444), 1, sym_comment, - [201881] = 5, + [201986] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - STATE(5847), 1, + STATE(2608), 1, sym_statement_block, STATE(6445), 1, sym_comment, - [201897] = 5, + [202002] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7729), 1, anon_sym_LBRACE, - STATE(2470), 1, + STATE(1299), 1, sym_class_body, STATE(6446), 1, sym_comment, - [201913] = 5, + [202018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3477), 1, - sym_statement_block, STATE(6447), 1, sym_comment, - [201929] = 5, + ACTIONS(2202), 2, + anon_sym_else, + anon_sym_while, + [202032] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_parenthesized_expression, + ACTIONS(10297), 1, + sym_identifier, + ACTIONS(10299), 1, + anon_sym_STAR, STATE(6448), 1, sym_comment, - [201945] = 5, + [202048] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(2471), 1, + STATE(3477), 1, sym_statement_block, STATE(6449), 1, sym_comment, - [201961] = 5, + [202064] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3500), 1, + STATE(3478), 1, sym_statement_block, STATE(6450), 1, sym_comment, - [201977] = 5, + [202080] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3112), 1, - sym_class_body, + STATE(3496), 1, + sym_statement_block, STATE(6451), 1, sym_comment, - [201993] = 5, + [202096] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_parenthesized_expression, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym_statement_block, STATE(6452), 1, sym_comment, - [202009] = 4, + [202112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3173), 1, + sym_class_body, STATE(6453), 1, sym_comment, - ACTIONS(5733), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202023] = 5, + [202128] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3110), 1, - sym_statement_block, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_parenthesized_expression, STATE(6454), 1, sym_comment, - [202039] = 5, + [202144] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(3503), 1, - sym_statement_block, + STATE(5850), 1, + sym_class_body, STATE(6455), 1, sym_comment, - [202055] = 5, + [202160] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, + ACTIONS(7905), 1, anon_sym_LBRACE, - STATE(5850), 1, - sym_class_body, + STATE(5852), 1, + sym_statement_block, STATE(6456), 1, sym_comment, - [202071] = 5, + [202176] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(5851), 1, - sym_statement_block, STATE(6457), 1, sym_comment, - [202087] = 4, + ACTIONS(3635), 2, + anon_sym_else, + anon_sym_while, + [202190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6458), 1, sym_comment, - ACTIONS(10301), 2, + ACTIONS(5650), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202101] = 4, + [202204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_statement_block, STATE(6459), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_else, - anon_sym_while, - [202115] = 5, + [202220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7635), 1, - anon_sym_LBRACE, STATE(6460), 1, sym_comment, - STATE(6880), 1, - sym_class_body, - [202131] = 5, + ACTIONS(10301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3207), 1, - sym_class_body, + ACTIONS(7589), 1, + anon_sym_LBRACE, STATE(6461), 1, sym_comment, - [202147] = 5, + STATE(6881), 1, + sym_class_body, + [202250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8877), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - STATE(352), 1, - sym_statement_block, + STATE(3210), 1, + sym_class_body, STATE(6462), 1, sym_comment, - [202163] = 4, + [202266] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6463), 1, sym_comment, - ACTIONS(3603), 2, + ACTIONS(3615), 2, anon_sym_else, anon_sym_while, - [202177] = 5, + [202280] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7272), 1, - anon_sym_LPAREN, - STATE(4323), 1, - sym_formal_parameters, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_statement_block, STATE(6464), 1, sym_comment, - [202193] = 5, + [202296] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10303), 1, - anon_sym_SEMI, - ACTIONS(10305), 1, - sym__automatic_semicolon, + ACTIONS(7264), 1, + anon_sym_LPAREN, + STATE(4317), 1, + sym_formal_parameters, STATE(6465), 1, sym_comment, - [202209] = 5, + [202312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_LBRACE, - STATE(1164), 1, - sym_class_body, STATE(6466), 1, sym_comment, - [202225] = 5, + ACTIONS(3619), 2, + anon_sym_else, + anon_sym_while, + [202326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8889), 1, - anon_sym_LBRACE, - STATE(1129), 1, - sym_statement_block, + ACTIONS(10303), 1, + anon_sym_SEMI, + ACTIONS(10305), 1, + sym__automatic_semicolon, STATE(6467), 1, sym_comment, - [202241] = 5, + [202342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(1161), 1, + STATE(1186), 1, sym_class_body, STATE(6468), 1, sym_comment, - [202257] = 5, + [202358] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7671), 1, - anon_sym_LBRACE, - STATE(339), 1, - sym_class_body, STATE(6469), 1, sym_comment, - [202273] = 5, + ACTIONS(3617), 2, + anon_sym_else, + anon_sym_while, + [202372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8891), 1, anon_sym_LBRACE, - STATE(3496), 1, + STATE(1212), 1, sym_statement_block, STATE(6470), 1, sym_comment, - [202289] = 5, + [202388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10307), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, STATE(6471), 1, sym_comment, - [202305] = 4, + STATE(6657), 1, + sym_class_body, + [202404] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_class_body, STATE(6472), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [202319] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202420] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10309), 1, - sym_identifier, - ACTIONS(10311), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3467), 1, + sym_statement_block, STATE(6473), 1, sym_comment, - [202335] = 5, + [202436] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7635), 1, - anon_sym_LBRACE, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym_parenthesized_expression, STATE(6474), 1, sym_comment, - STATE(6919), 1, - sym_class_body, - [202351] = 5, + [202452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7805), 1, + ACTIONS(7709), 1, anon_sym_LBRACE, - STATE(1290), 1, + STATE(379), 1, sym_class_body, STATE(6475), 1, sym_comment, - [202367] = 4, + [202468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10307), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_statement_block, STATE(6476), 1, sym_comment, - ACTIONS(10313), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202381] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - STATE(6477), 1, - sym_comment, - STATE(7087), 1, - sym_formal_parameters, - [202397] = 5, + [202484] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10315), 1, + ACTIONS(10309), 1, sym_identifier, - ACTIONS(10317), 1, + ACTIONS(10311), 1, sym_private_property_identifier, + STATE(6477), 1, + sym_comment, + [202500] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6478), 1, sym_comment, - [202413] = 4, + ACTIONS(3615), 2, + anon_sym_else, + anon_sym_while, + [202514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7655), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_class_body, STATE(6479), 1, sym_comment, - ACTIONS(10319), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202427] = 4, + [202530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6480), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [202441] = 5, + STATE(7093), 1, + sym_formal_parameters, + [202546] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6481), 1, + sym_comment, + ACTIONS(10313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202560] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10321), 1, + ACTIONS(10315), 1, sym_identifier, - ACTIONS(10323), 1, + ACTIONS(10317), 1, sym_private_property_identifier, - STATE(6481), 1, + STATE(6482), 1, sym_comment, - [202457] = 5, + [202576] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3517), 1, - sym_statement_block, - STATE(6482), 1, + ACTIONS(10319), 1, + sym_identifier, + ACTIONS(10321), 1, + sym_private_property_identifier, + STATE(6483), 1, sym_comment, - [202473] = 4, + [202592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6483), 1, + ACTIONS(10323), 1, + anon_sym_LBRACE, + STATE(1629), 1, + sym_statement_block, + STATE(6484), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [202487] = 5, + [202608] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -374584,3651 +374706,3641 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(10327), 1, sym_private_property_identifier, - STATE(6484), 1, + STATE(6485), 1, sym_comment, - [202503] = 5, + [202624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10329), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(3472), 1, sym_statement_block, - STATE(6485), 1, - sym_comment, - [202519] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10058), 1, - sym_identifier, - ACTIONS(10062), 1, - sym_private_property_identifier, STATE(6486), 1, sym_comment, - [202535] = 5, + [202640] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10331), 1, + ACTIONS(10329), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1588), 1, sym_enum_body, STATE(6487), 1, sym_comment, - [202551] = 5, + [202656] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8877), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_statement_block, STATE(6488), 1, sym_comment, - [202567] = 5, + ACTIONS(10331), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202670] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_statement_block, + ACTIONS(10333), 1, + sym_identifier, + ACTIONS(10335), 1, + sym_private_property_identifier, STATE(6489), 1, sym_comment, - [202583] = 5, + [202686] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7671), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_class_body, + ACTIONS(10062), 1, + sym_identifier, + ACTIONS(10066), 1, + sym_private_property_identifier, STATE(6490), 1, sym_comment, - [202599] = 5, + [202702] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10333), 1, + ACTIONS(10337), 1, sym_identifier, - ACTIONS(10335), 1, + ACTIONS(10339), 1, sym_private_property_identifier, STATE(6491), 1, sym_comment, - [202615] = 5, + [202718] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10337), 1, - anon_sym_SEMI, - ACTIONS(10339), 1, - sym__automatic_semicolon, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_statement_block, STATE(6492), 1, sym_comment, - [202631] = 5, + [202734] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3484), 1, + STATE(3476), 1, sym_statement_block, STATE(6493), 1, sym_comment, - [202647] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202750] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9524), 1, - sym_identifier, - ACTIONS(9528), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7709), 1, + anon_sym_LBRACE, + STATE(389), 1, + sym_class_body, STATE(6494), 1, sym_comment, - [202663] = 4, + [202766] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9544), 1, + sym_identifier, + ACTIONS(9548), 1, + sym_private_property_identifier, STATE(6495), 1, sym_comment, - ACTIONS(10341), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202677] = 4, + [202782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10341), 1, + anon_sym_SEMI, + ACTIONS(10343), 1, + sym__automatic_semicolon, STATE(6496), 1, sym_comment, - ACTIONS(5669), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202691] = 5, + [202798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, STATE(6497), 1, sym_comment, - [202707] = 5, + [202814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, + ACTIONS(10345), 1, + anon_sym_LBRACE, + STATE(6379), 1, + sym_switch_body, STATE(6498), 1, sym_comment, - STATE(6504), 1, - sym_parenthesized_expression, - [202723] = 4, + [202830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6499), 1, sym_comment, - ACTIONS(10343), 2, + ACTIONS(10347), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202737] = 5, + [202844] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym_statement_block, STATE(6500), 1, sym_comment, - [202753] = 5, + ACTIONS(10349), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [202858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_class_body, STATE(6501), 1, sym_comment, - [202769] = 4, + ACTIONS(10351), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3501), 1, + sym_statement_block, STATE(6502), 1, sym_comment, - ACTIONS(10345), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202783] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202888] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10347), 1, - sym_identifier, - ACTIONS(10349), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(115), 1, + sym_parenthesized_expression, STATE(6503), 1, sym_comment, - [202799] = 5, + [202904] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10351), 1, - anon_sym_LBRACE, - STATE(6377), 1, - sym_switch_body, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6498), 1, + sym_parenthesized_expression, STATE(6504), 1, sym_comment, - [202815] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202920] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_class_body, STATE(6505), 1, sym_comment, - ACTIONS(10353), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [202829] = 5, + [202936] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_SEMI, - ACTIONS(10357), 1, - sym__automatic_semicolon, STATE(6506), 1, sym_comment, - [202845] = 5, + ACTIONS(10353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202950] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(115), 1, - sym__for_header, + ACTIONS(10355), 1, + anon_sym_SEMI, + ACTIONS(10357), 1, + sym__automatic_semicolon, STATE(6507), 1, sym_comment, - [202861] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10359), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_switch_body, - STATE(6508), 1, - sym_comment, - [202877] = 5, + [202966] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, + ACTIONS(10281), 1, anon_sym_LPAREN, - STATE(94), 1, + STATE(80), 1, sym__for_header, - STATE(6509), 1, + STATE(6508), 1, sym_comment, - [202893] = 4, + [202982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6510), 1, + STATE(6509), 1, sym_comment, - ACTIONS(8186), 2, + ACTIONS(8308), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [202907] = 5, + [202996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3464), 1, - sym_statement_block, - STATE(6511), 1, + STATE(6510), 1, sym_comment, - [202923] = 5, + ACTIONS(5521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203010] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10361), 1, + ACTIONS(10359), 1, sym_identifier, - ACTIONS(10363), 1, + ACTIONS(10361), 1, sym_private_property_identifier, - STATE(6512), 1, + STATE(6511), 1, sym_comment, - [202939] = 5, - ACTIONS(3), 1, + [203026] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10363), 1, + anon_sym_LBRACE, + STATE(1432), 1, + sym_switch_body, + STATE(6512), 1, + sym_comment, + [203042] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9550), 1, - sym_identifier, - ACTIONS(9554), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10281), 1, + anon_sym_LPAREN, + STATE(104), 1, + sym__for_header, STATE(6513), 1, sym_comment, - [202955] = 5, + [203058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, + ACTIONS(10365), 1, + anon_sym_SEMI, + ACTIONS(10367), 1, + sym__automatic_semicolon, STATE(6514), 1, sym_comment, - STATE(6777), 1, - sym__from_clause, - [202971] = 5, + [203074] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(1178), 1, - sym_class_body, + STATE(3469), 1, + sym_statement_block, STATE(6515), 1, sym_comment, - [202987] = 5, + [203090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10365), 1, - anon_sym_SEMI, - ACTIONS(10367), 1, - sym__automatic_semicolon, STATE(6516), 1, sym_comment, - [203003] = 4, + ACTIONS(3615), 2, + anon_sym_else, + anon_sym_while, + [203104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6517), 1, sym_comment, - ACTIONS(10369), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203017] = 4, + ACTIONS(3577), 2, + anon_sym_else, + anon_sym_while, + [203118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6518), 1, sym_comment, - ACTIONS(10371), 2, + ACTIONS(10369), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203031] = 5, + [203132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym_statement_block, STATE(6519), 1, sym_comment, - [203047] = 4, + ACTIONS(10371), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203146] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, STATE(6520), 1, sym_comment, - ACTIONS(5656), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203061] = 5, + STATE(6811), 1, + sym__from_clause, + [203162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7697), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(362), 1, - sym_class_body, + STATE(3185), 1, + sym_statement_block, STATE(6521), 1, sym_comment, - [203077] = 4, + [203178] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(9560), 1, + sym_identifier, + ACTIONS(9564), 1, + sym_private_property_identifier, STATE(6522), 1, sym_comment, - ACTIONS(3601), 2, - anon_sym_else, - anon_sym_while, - [203091] = 4, + [203194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6523), 1, sym_comment, - ACTIONS(3605), 2, - anon_sym_else, - anon_sym_while, - [203105] = 5, + ACTIONS(5427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10373), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - STATE(1377), 1, - sym_switch_body, + STATE(338), 1, + sym_statement_block, STATE(6524), 1, sym_comment, - [203121] = 5, + [203224] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(3182), 1, - sym_statement_block, + STATE(358), 1, + sym_class_body, STATE(6525), 1, sym_comment, - [203137] = 5, + [203240] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5507), 1, - sym__from_clause, STATE(6526), 1, sym_comment, - [203153] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9608), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_statement_block, - STATE(6527), 1, - sym_comment, - [203169] = 5, + ACTIONS(3615), 2, + anon_sym_else, + anon_sym_while, + [203254] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10375), 1, + ACTIONS(10373), 1, sym_identifier, - ACTIONS(10377), 1, + ACTIONS(10375), 1, anon_sym_STAR, - STATE(6528), 1, + STATE(6527), 1, sym_comment, - [203185] = 4, + [203270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6529), 1, + STATE(6528), 1, sym_comment, - ACTIONS(5654), 2, + ACTIONS(5690), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203199] = 5, + [203284] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10377), 1, + anon_sym_SEMI, + ACTIONS(10379), 1, + sym__automatic_semicolon, + STATE(6529), 1, + sym_comment, + [203300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(9612), 1, anon_sym_LBRACE, - STATE(3490), 1, + STATE(1487), 1, sym_statement_block, STATE(6530), 1, sym_comment, - [203215] = 5, + [203316] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10379), 1, - anon_sym_SEMI, ACTIONS(10381), 1, + anon_sym_SEMI, + ACTIONS(10383), 1, sym__automatic_semicolon, STATE(6531), 1, sym_comment, - [203231] = 5, + [203332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_SEMI, - ACTIONS(10385), 1, - sym__automatic_semicolon, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5510), 1, + sym__from_clause, STATE(6532), 1, sym_comment, - [203247] = 5, + [203348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(96), 1, - sym__for_header, + ACTIONS(9781), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_statement_block, STATE(6533), 1, sym_comment, - [203263] = 5, + [203364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6359), 1, - sym_statement_block, + ACTIONS(10281), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym__for_header, STATE(6534), 1, sym_comment, - [203279] = 4, + [203380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6535), 1, sym_comment, - ACTIONS(3597), 2, - anon_sym_else, - anon_sym_while, - [203293] = 4, + ACTIONS(9592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3475), 1, + sym_statement_block, STATE(6536), 1, sym_comment, - ACTIONS(10387), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203307] = 4, + [203410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6537), 1, sym_comment, - ACTIONS(9584), 2, + ACTIONS(9587), 2, anon_sym_COMMA, anon_sym_RBRACE, - [203321] = 4, + [203424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6538), 1, sym_comment, - ACTIONS(9579), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203335] = 5, + ACTIONS(10385), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6391), 1, + sym_statement_block, STATE(6539), 1, sym_comment, - STATE(6988), 1, - sym_formal_parameters, - [203351] = 5, + [203454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(6387), 1, + STATE(3468), 1, sym_statement_block, STATE(6540), 1, sym_comment, - [203367] = 4, + [203470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6541), 1, sym_comment, - ACTIONS(3595), 2, + ACTIONS(3615), 2, anon_sym_else, anon_sym_while, - [203381] = 4, + [203484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10387), 1, + anon_sym_SEMI, + ACTIONS(10389), 1, + sym__automatic_semicolon, STATE(6542), 1, sym_comment, - ACTIONS(6815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203395] = 5, + [203500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6389), 1, - sym_statement_block, STATE(6543), 1, sym_comment, - [203411] = 4, + ACTIONS(3611), 2, + anon_sym_else, + anon_sym_while, + [203514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10391), 1, + anon_sym_SEMI, + ACTIONS(10393), 1, + sym__automatic_semicolon, STATE(6544), 1, sym_comment, - ACTIONS(10389), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203425] = 4, + [203530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6545), 1, sym_comment, - ACTIONS(6811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203439] = 5, + STATE(6997), 1, + sym_formal_parameters, + [203546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7631), 1, - anon_sym_LBRACE, - STATE(1611), 1, - sym_class_body, STATE(6546), 1, sym_comment, - [203455] = 4, + ACTIONS(6815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203560] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6393), 1, + sym_statement_block, STATE(6547), 1, sym_comment, - ACTIONS(10391), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203469] = 4, + [203576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6548), 1, sym_comment, - ACTIONS(10393), 2, + ACTIONS(6805), 2, anon_sym_COMMA, anon_sym_RBRACE, - [203483] = 5, + [203590] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10395), 1, - anon_sym_SEMI, - ACTIONS(10397), 1, - sym__automatic_semicolon, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym_class_body, STATE(6549), 1, sym_comment, - [203499] = 4, + [203606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6550), 1, sym_comment, - ACTIONS(3595), 2, - anon_sym_else, - anon_sym_while, - [203513] = 5, + ACTIONS(10395), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3511), 1, - sym_statement_block, STATE(6551), 1, sym_comment, - [203529] = 5, + ACTIONS(5744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2498), 1, - sym_class_body, STATE(6552), 1, sym_comment, - [203545] = 5, + ACTIONS(10397), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(7781), 1, anon_sym_LBRACE, - STATE(2499), 1, - sym_statement_block, + STATE(2577), 1, + sym_class_body, STATE(6553), 1, sym_comment, - [203561] = 5, + [203664] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - STATE(2500), 1, + STATE(2576), 1, sym_statement_block, STATE(6554), 1, sym_comment, - [203577] = 4, + [203680] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7709), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_class_body, STATE(6555), 1, sym_comment, - ACTIONS(5700), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203591] = 4, + [203696] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5314), 1, + anon_sym_LBRACE, + STATE(2573), 1, + sym_statement_block, STATE(6556), 1, sym_comment, - ACTIONS(5704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203605] = 5, + [203712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10399), 1, - anon_sym_SEMI, - ACTIONS(10401), 1, - sym__automatic_semicolon, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2569), 1, + sym_class_body, STATE(6557), 1, sym_comment, - [203621] = 5, + [203728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(2550), 1, - sym_class_body, + STATE(3490), 1, + sym_statement_block, STATE(6558), 1, sym_comment, - [203637] = 5, + [203744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, STATE(6559), 1, sym_comment, - STATE(6839), 1, - sym_statement_block, - [203653] = 5, + ACTIONS(10399), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3487), 1, - sym_statement_block, STATE(6560), 1, sym_comment, - [203669] = 4, + ACTIONS(5626), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203772] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6561), 1, sym_comment, - ACTIONS(10403), 2, + ACTIONS(5621), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203683] = 5, + [203786] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2501), 1, - sym_class_body, STATE(6562), 1, sym_comment, - [203699] = 5, + ACTIONS(10401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5504), 1, - sym__from_clause, + ACTIONS(7935), 1, + anon_sym_LBRACE, STATE(6563), 1, sym_comment, - [203715] = 5, + STATE(6844), 1, + sym_statement_block, + [203816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3461), 1, - sym_statement_block, STATE(6564), 1, sym_comment, - [203731] = 4, + ACTIONS(10403), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5509), 1, + sym__from_clause, STATE(6565), 1, sym_comment, - ACTIONS(10405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203745] = 4, + [203846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3482), 1, + sym_statement_block, STATE(6566), 1, sym_comment, - ACTIONS(10407), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203759] = 5, + [203862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(7737), 1, anon_sym_LBRACE, - STATE(2562), 1, - sym_statement_block, + STATE(1136), 1, + sym_class_body, STATE(6567), 1, sym_comment, - [203775] = 5, + [203878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10409), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, + STATE(3511), 1, + sym_statement_block, STATE(6568), 1, sym_comment, - STATE(6895), 1, - sym_object, - [203791] = 5, + [203894] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3466), 1, - sym_statement_block, STATE(6569), 1, sym_comment, - [203807] = 4, + ACTIONS(10405), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6570), 1, sym_comment, - ACTIONS(3593), 2, + ACTIONS(3609), 2, anon_sym_else, anon_sym_while, - [203821] = 5, + [203922] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, + ACTIONS(10407), 1, anon_sym_LBRACE, - STATE(5927), 1, - sym_class_body, + STATE(1255), 1, + sym_switch_body, STATE(6571), 1, sym_comment, - [203837] = 5, + [203938] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5462), 1, - sym__from_clause, + ACTIONS(5314), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, STATE(6572), 1, sym_comment, - [203853] = 4, + [203954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(5928), 1, + sym_class_body, STATE(6573), 1, sym_comment, - ACTIONS(5745), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203867] = 5, + [203970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7905), 1, anon_sym_LBRACE, - STATE(5928), 1, + STATE(5931), 1, sym_statement_block, STATE(6574), 1, sym_comment, - [203883] = 5, + [203986] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(5933), 1, + STATE(5932), 1, sym_class_body, STATE(6575), 1, sym_comment, - [203899] = 5, + [204002] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2511), 1, - sym_class_body, STATE(6576), 1, sym_comment, - [203915] = 4, + ACTIONS(3609), 2, + anon_sym_else, + anon_sym_while, + [204016] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2565), 1, + sym_class_body, STATE(6577), 1, sym_comment, - ACTIONS(3591), 2, - anon_sym_else, - anon_sym_while, - [203929] = 5, + [204032] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_class_body, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5463), 1, + sym__from_clause, STATE(6578), 1, sym_comment, - [203945] = 4, + [204048] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10231), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_statement_block, STATE(6579), 1, sym_comment, - ACTIONS(3589), 2, - anon_sym_else, - anon_sym_while, - [203959] = 4, + [204064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6580), 1, sym_comment, - ACTIONS(10411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203973] = 4, + ACTIONS(3607), 2, + anon_sym_else, + anon_sym_while, + [204078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3154), 1, + sym_class_body, STATE(6581), 1, sym_comment, - ACTIONS(9282), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203987] = 4, + [204094] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10409), 1, + anon_sym_LBRACE, STATE(6582), 1, sym_comment, - ACTIONS(3587), 2, - anon_sym_else, - anon_sym_while, - [204001] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6898), 1, + sym_object, + [204110] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10413), 1, - sym_identifier, - ACTIONS(10415), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6583), 1, sym_comment, - [204017] = 4, + ACTIONS(10411), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204124] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6584), 1, sym_comment, - ACTIONS(5743), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204031] = 5, + ACTIONS(3605), 2, + anon_sym_else, + anon_sym_while, + [204138] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3491), 1, - sym_statement_block, + ACTIONS(10413), 1, + sym_identifier, + ACTIONS(10415), 1, + sym_private_property_identifier, STATE(6585), 1, sym_comment, - [204047] = 5, + [204154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7671), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_class_body, + ACTIONS(10417), 1, + anon_sym_LPAREN, + STATE(999), 1, + sym_parenthesized_expression, STATE(6586), 1, sym_comment, - [204063] = 5, + [204170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10233), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_statement_block, STATE(6587), 1, sym_comment, - [204079] = 5, + ACTIONS(9286), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204184] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - STATE(5184), 1, - sym_formal_parameters, + ACTIONS(10419), 1, + anon_sym_LBRACE, + STATE(1413), 1, + sym_enum_body, STATE(6588), 1, sym_comment, - [204095] = 5, + [204200] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym_statement_block, STATE(6589), 1, sym_comment, - STATE(7144), 1, - sym_formal_parameters, - [204111] = 5, + [204216] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10417), 1, - anon_sym_LPAREN, - STATE(995), 1, - sym_parenthesized_expression, STATE(6590), 1, sym_comment, - [204127] = 5, + ACTIONS(5742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7252), 1, - anon_sym_COLON, - STATE(5884), 1, - sym_type_annotation, STATE(6591), 1, sym_comment, - [204143] = 5, + ACTIONS(9071), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10331), 1, - anon_sym_LBRACE, - STATE(1615), 1, - sym_enum_body, STATE(6592), 1, sym_comment, - [204159] = 5, + ACTIONS(10421), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3463), 1, - sym_statement_block, STATE(6593), 1, sym_comment, - [204175] = 5, + ACTIONS(10423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(1136), 1, - sym_class_body, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5189), 1, + sym_formal_parameters, STATE(6594), 1, sym_comment, - [204191] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204288] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10419), 1, - sym_identifier, - STATE(6000), 1, - sym_nested_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6595), 1, sym_comment, - [204207] = 4, + STATE(7155), 1, + sym_formal_parameters, + [204304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6596), 1, sym_comment, - ACTIONS(3585), 2, + ACTIONS(3603), 2, anon_sym_else, anon_sym_while, - [204221] = 5, + [204318] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7635), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, STATE(6597), 1, sym_comment, - STATE(6799), 1, + STATE(6800), 1, sym_class_body, - [204237] = 5, + [204334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10421), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_enum_body, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(5884), 1, + sym_type_annotation, STATE(6598), 1, sym_comment, - [204253] = 4, + [204350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6599), 1, sym_comment, - ACTIONS(3583), 2, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [204267] = 4, + [204364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3463), 1, + sym_statement_block, STATE(6600), 1, sym_comment, - ACTIONS(3579), 2, - anon_sym_else, - anon_sym_while, - [204281] = 4, + [204380] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10425), 1, + sym_identifier, + STATE(5998), 1, + sym_nested_identifier, STATE(6601), 1, sym_comment, - ACTIONS(10423), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [204295] = 4, + [204396] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6602), 1, sym_comment, - ACTIONS(10425), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204309] = 5, + ACTIONS(3597), 2, + anon_sym_else, + anon_sym_while, + [204410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10427), 1, - anon_sym_LPAREN, - STATE(1455), 1, - sym_parenthesized_expression, STATE(6603), 1, sym_comment, - [204325] = 5, + ACTIONS(3595), 2, + anon_sym_else, + anon_sym_while, + [204424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(10329), 1, anon_sym_LBRACE, - STATE(4928), 1, - sym_statement_block, + STATE(1594), 1, + sym_enum_body, STATE(6604), 1, sym_comment, - [204341] = 4, + [204440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6605), 1, sym_comment, - ACTIONS(9067), 2, + ACTIONS(10427), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204355] = 4, + [204454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_class_body, STATE(6606), 1, sym_comment, - ACTIONS(10429), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204369] = 4, + [204470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6607), 1, sym_comment, - ACTIONS(3577), 2, - anon_sym_else, - anon_sym_while, - [204383] = 5, + ACTIONS(10429), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [204484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(10431), 1, anon_sym_LPAREN, - STATE(5241), 1, - sym_formal_parameters, + STATE(1340), 1, + sym_parenthesized_expression, STATE(6608), 1, sym_comment, - [204399] = 5, + [204500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10329), 1, - anon_sym_LBRACE, - STATE(1619), 1, - sym_statement_block, STATE(6609), 1, sym_comment, - [204415] = 5, + ACTIONS(3593), 2, + anon_sym_else, + anon_sym_while, + [204514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_statement_block, STATE(6610), 1, sym_comment, - STATE(7244), 1, - sym_formal_parameters, - [204431] = 4, + [204530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10433), 1, + anon_sym_SEMI, + ACTIONS(10435), 1, + sym__automatic_semicolon, STATE(6611), 1, sym_comment, - ACTIONS(3573), 2, - anon_sym_else, - anon_sym_while, - [204445] = 4, + [204546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6612), 1, sym_comment, - ACTIONS(3571), 2, + ACTIONS(3591), 2, anon_sym_else, anon_sym_while, - [204459] = 4, + [204560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6613), 1, sym_comment, - ACTIONS(3569), 2, + ACTIONS(3589), 2, anon_sym_else, anon_sym_while, - [204473] = 4, + [204574] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5246), 1, + sym_formal_parameters, STATE(6614), 1, sym_comment, - ACTIONS(9612), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204487] = 4, + [204590] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10437), 1, + anon_sym_SEMI, + ACTIONS(10439), 1, + sym__automatic_semicolon, STATE(6615), 1, sym_comment, - ACTIONS(3569), 2, - anon_sym_else, - anon_sym_while, - [204501] = 5, + [204606] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10431), 1, - anon_sym_SEMI, - ACTIONS(10433), 1, - sym__automatic_semicolon, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6616), 1, sym_comment, - [204517] = 5, + STATE(7253), 1, + sym_formal_parameters, + [204622] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3506), 1, + STATE(3486), 1, sym_statement_block, STATE(6617), 1, sym_comment, - [204533] = 4, + [204638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6618), 1, sym_comment, - ACTIONS(3569), 2, + ACTIONS(3587), 2, anon_sym_else, anon_sym_while, - [204547] = 5, + [204652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10435), 1, - anon_sym_SEMI, - ACTIONS(10437), 1, - sym__automatic_semicolon, STATE(6619), 1, sym_comment, - [204563] = 5, + ACTIONS(3583), 2, + anon_sym_else, + anon_sym_while, + [204666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3495), 1, - sym_statement_block, STATE(6620), 1, sym_comment, - [204579] = 5, + ACTIONS(3583), 2, + anon_sym_else, + anon_sym_while, + [204680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10439), 1, - anon_sym_SEMI, - ACTIONS(10441), 1, - sym__automatic_semicolon, STATE(6621), 1, sym_comment, - [204595] = 5, + ACTIONS(3583), 2, + anon_sym_else, + anon_sym_while, + [204694] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10443), 1, - anon_sym_SEMI, - ACTIONS(10445), 1, - sym__automatic_semicolon, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3466), 1, + sym_statement_block, STATE(6622), 1, sym_comment, - [204611] = 5, + [204710] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10447), 1, - anon_sym_LBRACE, - STATE(4984), 1, - sym_enum_body, + ACTIONS(10441), 1, + anon_sym_SEMI, + ACTIONS(10443), 1, + sym__automatic_semicolon, STATE(6623), 1, sym_comment, - [204627] = 5, + [204726] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3481), 1, + STATE(3479), 1, sym_statement_block, STATE(6624), 1, sym_comment, - [204643] = 5, + [204742] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10421), 1, + ACTIONS(10419), 1, anon_sym_LBRACE, - STATE(1378), 1, + STATE(1379), 1, sym_enum_body, STATE(6625), 1, sym_comment, - [204659] = 5, + [204758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10449), 1, + ACTIONS(10445), 1, anon_sym_LBRACE, - STATE(1395), 1, + STATE(1377), 1, sym_statement_block, STATE(6626), 1, sym_comment, - [204675] = 5, + [204774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10451), 1, - anon_sym_SEMI, - ACTIONS(10453), 1, - sym__automatic_semicolon, STATE(6627), 1, sym_comment, - [204691] = 5, + ACTIONS(9616), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10455), 1, + ACTIONS(10447), 1, anon_sym_SEMI, - ACTIONS(10457), 1, + ACTIONS(10449), 1, sym__automatic_semicolon, STATE(6628), 1, sym_comment, - [204707] = 4, + [204804] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7905), 1, + anon_sym_LBRACE, + STATE(4932), 1, + sym_statement_block, STATE(6629), 1, sym_comment, - ACTIONS(3567), 2, - anon_sym_else, - anon_sym_while, - [204721] = 5, + [204820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10459), 1, - anon_sym_SEMI, - ACTIONS(10461), 1, - sym__automatic_semicolon, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3485), 1, + sym_statement_block, STATE(6630), 1, sym_comment, - [204737] = 4, + [204836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10451), 1, + anon_sym_LBRACE, + STATE(4986), 1, + sym_enum_body, STATE(6631), 1, sym_comment, - ACTIONS(5836), 2, + [204852] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10453), 1, + sym_identifier, + ACTIONS(10455), 1, + sym_private_property_identifier, + STATE(6632), 1, + sym_comment, + [204868] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10457), 1, + anon_sym_SEMI, + ACTIONS(10459), 1, sym__automatic_semicolon, + STATE(6633), 1, + sym_comment, + [204884] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10461), 1, anon_sym_SEMI, - [204751] = 4, + ACTIONS(10463), 1, + sym__automatic_semicolon, + STATE(6634), 1, + sym_comment, + [204900] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6632), 1, + STATE(6635), 1, sym_comment, - ACTIONS(3565), 2, - anon_sym_else, - anon_sym_while, - [204765] = 4, + ACTIONS(5757), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6633), 1, + STATE(6636), 1, sym_comment, - ACTIONS(5832), 2, + ACTIONS(5740), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204779] = 5, + [204928] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10463), 1, - sym_identifier, ACTIONS(10465), 1, + sym_identifier, + ACTIONS(10467), 1, sym_private_property_identifier, - STATE(6634), 1, - sym_comment, - [204795] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_class_body, - STATE(6635), 1, + STATE(6637), 1, sym_comment, - [204811] = 5, + [204944] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10467), 1, - sym_identifier, ACTIONS(10469), 1, + sym_identifier, + ACTIONS(10471), 1, sym_private_property_identifier, - STATE(6636), 1, + STATE(6638), 1, sym_comment, - [204827] = 4, + [204960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6637), 1, + ACTIONS(10473), 1, + anon_sym_SEMI, + ACTIONS(10475), 1, + sym__automatic_semicolon, + STATE(6639), 1, sym_comment, - ACTIONS(3541), 2, - anon_sym_else, - anon_sym_while, - [204841] = 4, + [204976] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6638), 1, + ACTIONS(10477), 1, + sym_identifier, + ACTIONS(10479), 1, + sym_private_property_identifier, + STATE(6640), 1, sym_comment, - ACTIONS(5531), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204855] = 5, + [204992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(3034), 1, + STATE(454), 1, sym_class_body, - STATE(6639), 1, - sym_comment, - [204871] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10471), 1, - anon_sym_in, - ACTIONS(10473), 1, - anon_sym_COLON, - STATE(6640), 1, - sym_comment, - [204887] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10475), 1, - sym_identifier, - ACTIONS(10477), 1, - sym_private_property_identifier, STATE(6641), 1, sym_comment, - [204903] = 5, + [205008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6394), 1, - sym_statement_block, STATE(6642), 1, sym_comment, - [204919] = 4, + ACTIONS(5842), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205022] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6643), 1, sym_comment, - ACTIONS(3563), 2, + ACTIONS(3541), 2, anon_sym_else, anon_sym_while, - [204933] = 4, + [205036] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10481), 1, + anon_sym_in, + ACTIONS(10483), 1, + anon_sym_COLON, STATE(6644), 1, sym_comment, - ACTIONS(3561), 2, - anon_sym_else, - anon_sym_while, - [204947] = 4, + [205052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_class_body, STATE(6645), 1, sym_comment, - ACTIONS(3557), 2, - anon_sym_else, - anon_sym_while, - [204961] = 4, + [205068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6646), 1, sym_comment, - ACTIONS(3555), 2, + ACTIONS(3575), 2, anon_sym_else, anon_sym_while, - [204975] = 4, + [205082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6647), 1, sym_comment, - ACTIONS(3555), 2, + ACTIONS(3573), 2, anon_sym_else, anon_sym_while, - [204989] = 5, + [205096] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_statement_block, STATE(6648), 1, sym_comment, - [205005] = 5, + ACTIONS(3571), 2, + anon_sym_else, + anon_sym_while, + [205110] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9608), 1, - anon_sym_LBRACE, - STATE(1401), 1, - sym_statement_block, STATE(6649), 1, sym_comment, - [205021] = 5, + ACTIONS(3567), 2, + anon_sym_else, + anon_sym_while, + [205124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(3105), 1, + STATE(3108), 1, sym_statement_block, STATE(6650), 1, sym_comment, - [205037] = 5, + [205140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3403), 1, - sym_class_body, STATE(6651), 1, sym_comment, - [205053] = 5, + ACTIONS(3561), 2, + anon_sym_else, + anon_sym_while, + [205154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8775), 1, - anon_sym_in, - ACTIONS(8777), 1, - anon_sym_of, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_statement_block, STATE(6652), 1, sym_comment, - [205069] = 5, + [205170] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(9612), 1, anon_sym_LBRACE, - STATE(3063), 1, + STATE(1254), 1, sym_statement_block, STATE(6653), 1, sym_comment, - [205085] = 4, + [205186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6654), 1, sym_comment, - ACTIONS(5577), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205099] = 5, + ACTIONS(3561), 2, + anon_sym_else, + anon_sym_while, + [205200] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10479), 1, + ACTIONS(7781), 1, anon_sym_LBRACE, - STATE(6396), 1, - sym_enum_body, + STATE(3393), 1, + sym_class_body, STATE(6655), 1, sym_comment, - [205115] = 4, + [205216] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8781), 1, + anon_sym_in, + ACTIONS(8783), 1, + anon_sym_of, STATE(6656), 1, sym_comment, - ACTIONS(10481), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205129] = 4, + [205232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6657), 1, sym_comment, - ACTIONS(10483), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205143] = 4, + ACTIONS(3495), 2, + anon_sym_else, + anon_sym_while, + [205246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6658), 1, sym_comment, - ACTIONS(3493), 2, - anon_sym_else, - anon_sym_while, - [205157] = 5, + ACTIONS(5750), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205260] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(3179), 1, - sym_class_body, + STATE(3240), 1, + sym_statement_block, STATE(6659), 1, sym_comment, - [205173] = 5, + [205276] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(3180), 1, + STATE(6397), 1, sym_statement_block, STATE(6660), 1, sym_comment, - [205189] = 5, + [205292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6542), 1, - sym_statement_block, STATE(6661), 1, sym_comment, - [205205] = 4, + ACTIONS(10485), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3248), 1, + sym_statement_block, STATE(6662), 1, sym_comment, - ACTIONS(3553), 2, - anon_sym_else, - anon_sym_while, - [205219] = 4, + [205322] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3247), 1, + sym_class_body, STATE(6663), 1, sym_comment, - ACTIONS(6803), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205233] = 5, + [205338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6545), 1, - sym_statement_block, STATE(6664), 1, sym_comment, - [205249] = 4, + ACTIONS(6819), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205352] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6546), 1, + sym_statement_block, STATE(6665), 1, sym_comment, - ACTIONS(6819), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205263] = 5, + [205368] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7643), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - STATE(1412), 1, - sym_class_body, + STATE(2539), 1, + sym_statement_block, STATE(6666), 1, sym_comment, - [205279] = 5, + [205384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8696), 1, - anon_sym_LBRACE, - STATE(1413), 1, - sym_statement_block, STATE(6667), 1, sym_comment, - [205295] = 4, + ACTIONS(6838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205398] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6548), 1, + sym_statement_block, STATE(6668), 1, sym_comment, - ACTIONS(10485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205309] = 4, + [205414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6669), 1, sym_comment, - ACTIONS(10487), 2, + ACTIONS(6830), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205323] = 5, + [205428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7631), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(1571), 1, + STATE(1288), 1, sym_class_body, STATE(6670), 1, sym_comment, - [205339] = 5, + [205444] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7719), 1, + ACTIONS(8698), 1, anon_sym_LBRACE, - STATE(409), 1, - sym_class_body, + STATE(1287), 1, + sym_statement_block, STATE(6671), 1, sym_comment, - [205355] = 4, + [205460] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10281), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__for_header, STATE(6672), 1, sym_comment, - ACTIONS(6823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205369] = 5, + [205476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6436), 1, - sym_statement_block, STATE(6673), 1, sym_comment, - [205385] = 4, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205490] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(1522), 1, + sym_class_body, STATE(6674), 1, sym_comment, - ACTIONS(10489), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205399] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205506] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10491), 1, - sym_identifier, - ACTIONS(10493), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7651), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_class_body, STATE(6675), 1, sym_comment, - [205415] = 5, + [205522] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, - anon_sym_LBRACE, - STATE(2528), 1, - sym_statement_block, STATE(6676), 1, sym_comment, - [205431] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6819), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205536] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9634), 1, - sym_identifier, - ACTIONS(9638), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6440), 1, + sym_statement_block, STATE(6677), 1, sym_comment, - [205447] = 5, + [205552] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3098), 1, - sym_class_body, STATE(6678), 1, sym_comment, - [205463] = 5, + ACTIONS(10489), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7631), 1, - anon_sym_LBRACE, - STATE(1587), 1, - sym_class_body, STATE(6679), 1, sym_comment, - [205479] = 4, + ACTIONS(3559), 2, + anon_sym_else, + anon_sym_while, + [205580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3101), 1, + sym_class_body, STATE(6680), 1, sym_comment, - ACTIONS(6847), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205493] = 4, + [205596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6681), 1, sym_comment, - ACTIONS(6823), 2, + ACTIONS(6883), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205507] = 4, + [205610] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10491), 1, + anon_sym_LBRACE, + STATE(6403), 1, + sym_enum_body, STATE(6682), 1, sym_comment, - ACTIONS(6851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205521] = 5, + [205626] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(6434), 1, - sym_statement_block, + STATE(1538), 1, + sym_class_body, STATE(6683), 1, sym_comment, - [205537] = 5, + [205642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10495), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(1407), 1, + STATE(6438), 1, sym_statement_block, STATE(6684), 1, sym_comment, - [205553] = 4, + [205658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6685), 1, sym_comment, - ACTIONS(9945), 2, + ACTIONS(6809), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [205567] = 4, + anon_sym_RBRACE, + [205672] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10493), 1, + sym_identifier, + ACTIONS(10495), 1, + sym_private_property_identifier, STATE(6686), 1, sym_comment, - ACTIONS(10497), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [205581] = 5, + [205688] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - STATE(5097), 1, - sym_formal_parameters, + ACTIONS(9638), 1, + sym_identifier, + ACTIONS(9642), 1, + sym_private_property_identifier, STATE(6687), 1, sym_comment, - [205597] = 4, + [205704] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5099), 1, + sym_formal_parameters, STATE(6688), 1, sym_comment, - ACTIONS(10499), 2, - anon_sym_COMMA, - anon_sym_GT, - [205611] = 5, + [205720] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, STATE(6689), 1, sym_comment, - STATE(6856), 1, - sym_type_annotation, - [205627] = 4, + ACTIONS(9949), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [205734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6690), 1, sym_comment, - ACTIONS(8501), 2, + ACTIONS(10497), 2, anon_sym_COMMA, anon_sym_RBRACK, - [205641] = 4, + [205748] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6691), 1, sym_comment, - ACTIONS(10501), 2, + ACTIONS(5861), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205655] = 5, + [205762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, STATE(6692), 1, sym_comment, - STATE(6992), 1, - sym_formal_parameters, - [205671] = 4, + ACTIONS(10499), 2, + anon_sym_COMMA, + anon_sym_GT, + [205776] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4323), 1, + anon_sym_COLON, STATE(6693), 1, sym_comment, - ACTIONS(9262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205685] = 4, + STATE(6861), 1, + sym_type_annotation, + [205792] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6694), 1, sym_comment, - ACTIONS(3551), 2, - anon_sym_else, - anon_sym_while, - [205699] = 4, + ACTIONS(8549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [205806] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6695), 1, sym_comment, - ACTIONS(6807), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205713] = 4, + STATE(6996), 1, + sym_formal_parameters, + [205822] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6696), 1, sym_comment, - ACTIONS(10503), 2, - anon_sym_COMMA, - anon_sym_GT, - [205727] = 5, + ACTIONS(10501), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205836] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10447), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_enum_body, STATE(6697), 1, sym_comment, - [205743] = 4, + ACTIONS(6842), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6698), 1, sym_comment, - ACTIONS(6815), 2, + ACTIONS(10503), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [205757] = 4, + anon_sym_GT, + [205864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6699), 1, sym_comment, - ACTIONS(3599), 2, - anon_sym_else, - anon_sym_while, - [205771] = 5, + ACTIONS(6815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10505), 1, - anon_sym_SEMI, - ACTIONS(10507), 1, - sym__automatic_semicolon, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(3404), 1, + sym_class_body, STATE(6700), 1, sym_comment, - [205787] = 4, + [205894] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6701), 1, sym_comment, - ACTIONS(6811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205801] = 5, + ACTIONS(9266), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4643), 1, - sym_formal_parameters, STATE(6702), 1, sym_comment, - [205817] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6805), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205922] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10509), 1, - sym_identifier, - ACTIONS(10511), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10505), 1, + anon_sym_SEMI, + ACTIONS(10507), 1, + sym__automatic_semicolon, STATE(6703), 1, sym_comment, - [205833] = 4, + [205938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6704), 1, sym_comment, - ACTIONS(10513), 2, + ACTIONS(5859), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205847] = 4, + [205952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10509), 1, + anon_sym_LBRACE, + STATE(1405), 1, + sym_enum_body, STATE(6705), 1, sym_comment, - ACTIONS(10515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205861] = 4, + [205968] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LPAREN, + STATE(4408), 1, + sym_formal_parameters, STATE(6706), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [205875] = 5, + [205984] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, - anon_sym_LBRACE, - STATE(2542), 1, - sym_statement_block, STATE(6707), 1, sym_comment, - [205891] = 5, + ACTIONS(10511), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_statement_block, STATE(6708), 1, sym_comment, - [205907] = 4, + ACTIONS(10513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6709), 1, sym_comment, - ACTIONS(5795), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205921] = 4, + ACTIONS(3555), 2, + anon_sym_else, + anon_sym_while, + [206026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5314), 1, + anon_sym_LBRACE, + STATE(2458), 1, + sym_statement_block, STATE(6710), 1, sym_comment, - ACTIONS(3549), 2, - anon_sym_else, - anon_sym_while, - [205935] = 5, + [206042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2545), 1, - sym_class_body, STATE(6711), 1, sym_comment, - [205951] = 4, + ACTIONS(3613), 2, + anon_sym_else, + anon_sym_while, + [206056] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_statement_block, STATE(6712), 1, sym_comment, - ACTIONS(5799), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205965] = 5, + [206072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3510), 1, - sym_statement_block, STATE(6713), 1, sym_comment, - [205981] = 4, + ACTIONS(10515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2460), 1, + sym_class_body, STATE(6714), 1, sym_comment, - ACTIONS(10517), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205995] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206102] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10519), 1, - sym_identifier, - ACTIONS(10521), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3519), 1, + sym_statement_block, STATE(6715), 1, sym_comment, - [206011] = 5, + [206118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10523), 1, - anon_sym_LPAREN, - STATE(1046), 1, - sym_parenthesized_expression, STATE(6716), 1, sym_comment, - [206027] = 5, + ACTIONS(10517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(3513), 1, + STATE(3516), 1, sym_statement_block, STATE(6717), 1, sym_comment, - [206043] = 5, + [206148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10277), 1, + ACTIONS(10519), 1, anon_sym_LPAREN, - STATE(101), 1, - sym__for_header, + STATE(3669), 1, + sym_arguments, STATE(6718), 1, sym_comment, - [206059] = 5, + [206164] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10525), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_switch_body, + ACTIONS(10521), 1, + sym_identifier, + ACTIONS(10523), 1, + sym_private_property_identifier, STATE(6719), 1, sym_comment, - [206075] = 5, + [206180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10527), 1, - anon_sym_SEMI, - ACTIONS(10529), 1, - sym__automatic_semicolon, + ACTIONS(10525), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_switch_body, STATE(6720), 1, sym_comment, - [206091] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206196] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10531), 1, - sym_identifier, - ACTIONS(10533), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6721), 1, sym_comment, - [206107] = 5, + ACTIONS(3551), 2, + anon_sym_else, + anon_sym_while, + [206210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10449), 1, - anon_sym_LBRACE, - STATE(1478), 1, - sym_statement_block, + ACTIONS(10527), 1, + anon_sym_SEMI, + ACTIONS(10529), 1, + sym__automatic_semicolon, STATE(6722), 1, sym_comment, - [206123] = 5, + [206226] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, STATE(3470), 1, sym_statement_block, STATE(6723), 1, sym_comment, - [206139] = 5, + [206242] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym_class_body, STATE(6724), 1, sym_comment, - [206155] = 5, + ACTIONS(5849), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206256] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10535), 1, - anon_sym_SEMI, - ACTIONS(10537), 1, - sym__automatic_semicolon, + ACTIONS(10531), 1, + sym_identifier, + ACTIONS(10533), 1, + sym_private_property_identifier, STATE(6725), 1, sym_comment, - [206171] = 4, + [206272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10451), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_enum_body, STATE(6726), 1, sym_comment, - ACTIONS(3473), 2, - anon_sym_else, - anon_sym_while, - [206185] = 4, + [206288] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10535), 1, + sym_identifier, + ACTIONS(10537), 1, + sym_private_property_identifier, STATE(6727), 1, sym_comment, - ACTIONS(3477), 2, - anon_sym_else, - anon_sym_while, - [206199] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206304] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10539), 1, - sym_identifier, - ACTIONS(10541), 1, - anon_sym_STAR, + anon_sym_LPAREN, + STATE(1047), 1, + sym_parenthesized_expression, STATE(6728), 1, sym_comment, - [206215] = 4, + [206320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6729), 1, sym_comment, - ACTIONS(3547), 2, + ACTIONS(3549), 2, anon_sym_else, anon_sym_while, - [206229] = 5, + [206334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10543), 1, - anon_sym_SEMI, - ACTIONS(10545), 1, - sym__automatic_semicolon, + ACTIONS(10445), 1, + anon_sym_LBRACE, + STATE(1281), 1, + sym_statement_block, STATE(6730), 1, sym_comment, - [206245] = 4, + [206350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6731), 1, sym_comment, - ACTIONS(3545), 2, + ACTIONS(3473), 2, anon_sym_else, anon_sym_while, - [206259] = 5, + [206364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8198), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - STATE(3462), 1, - sym_statement_block, + STATE(3112), 1, + sym_class_body, STATE(6732), 1, sym_comment, - [206275] = 4, + [206380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6733), 1, sym_comment, - ACTIONS(3543), 2, + ACTIONS(3475), 2, anon_sym_else, anon_sym_while, - [206289] = 5, + [206394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(6010), 1, - sym_class_body, + ACTIONS(4284), 1, + anon_sym_LPAREN, + STATE(5476), 1, + sym_arguments, STATE(6734), 1, sym_comment, - [206305] = 5, + [206410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3268), 1, - sym_class_body, STATE(6735), 1, sym_comment, - [206321] = 4, + ACTIONS(3547), 2, + anon_sym_else, + anon_sym_while, + [206424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8157), 1, + anon_sym_LBRACE, + STATE(3505), 1, + sym_statement_block, STATE(6736), 1, sym_comment, - ACTIONS(3645), 2, - anon_sym_else, - anon_sym_while, - [206335] = 5, + [206440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7779), 1, anon_sym_LBRACE, - STATE(3382), 1, + STATE(6012), 1, sym_class_body, STATE(6737), 1, sym_comment, - [206351] = 5, + [206456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3385), 1, - sym_class_body, STATE(6738), 1, sym_comment, - [206367] = 4, + ACTIONS(10541), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10543), 1, + anon_sym_SEMI, + ACTIONS(10545), 1, + sym__automatic_semicolon, STATE(6739), 1, sym_comment, - ACTIONS(10547), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206381] = 4, + [206486] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3236), 1, + sym_statement_block, STATE(6740), 1, sym_comment, - ACTIONS(10549), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206395] = 4, + [206502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_class_body, STATE(6741), 1, sym_comment, - ACTIONS(5825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206409] = 4, + [206518] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10547), 1, + anon_sym_SEMI, + ACTIONS(10549), 1, + sym__automatic_semicolon, STATE(6742), 1, sym_comment, - ACTIONS(7539), 2, - anon_sym_in, - anon_sym_of, - [206423] = 5, + [206534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10551), 1, - anon_sym_SEMI, - ACTIONS(10553), 1, - sym__automatic_semicolon, STATE(6743), 1, sym_comment, - [206439] = 5, + ACTIONS(10551), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym_parenthesized_expression, STATE(6744), 1, sym_comment, - [206455] = 5, + ACTIONS(3545), 2, + anon_sym_else, + anon_sym_while, + [206562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6508), 1, - sym_parenthesized_expression, + ACTIONS(10553), 1, + anon_sym_SEMI, + ACTIONS(10555), 1, + sym__automatic_semicolon, STATE(6745), 1, sym_comment, - [206471] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206578] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10555), 1, - sym_identifier, - ACTIONS(10557), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6746), 1, sym_comment, - [206487] = 4, + ACTIONS(7549), 2, + anon_sym_in, + anon_sym_of, + [206592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2466), 1, + sym_class_body, STATE(6747), 1, sym_comment, - ACTIONS(3467), 2, - anon_sym_else, - anon_sym_while, - [206501] = 4, + [206608] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_STAR, STATE(6748), 1, sym_comment, - ACTIONS(3543), 2, - anon_sym_else, - anon_sym_while, - [206515] = 5, + [206624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5424), 1, - anon_sym_LPAREN, - STATE(3066), 1, - sym_arguments, STATE(6749), 1, sym_comment, - [206531] = 4, + ACTIONS(3483), 2, + anon_sym_else, + anon_sym_while, + [206638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(97), 1, + sym_parenthesized_expression, STATE(6750), 1, sym_comment, - ACTIONS(3469), 2, - anon_sym_else, - anon_sym_while, - [206545] = 4, + [206654] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6512), 1, + sym_parenthesized_expression, STATE(6751), 1, sym_comment, - ACTIONS(8431), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206559] = 5, + [206670] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2564), 1, - sym_class_body, STATE(6752), 1, sym_comment, - [206575] = 4, + ACTIONS(3543), 2, + anon_sym_else, + anon_sym_while, + [206684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6753), 1, sym_comment, - ACTIONS(8427), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206589] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3056), 1, - sym_class_body, - STATE(6754), 1, - sym_comment, - [206605] = 5, + ACTIONS(3543), 2, + anon_sym_else, + anon_sym_while, + [206698] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10559), 1, - sym_identifier, ACTIONS(10561), 1, + sym_identifier, + ACTIONS(10563), 1, sym_private_property_identifier, + STATE(6754), 1, + sym_comment, + [206714] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6755), 1, sym_comment, - [206621] = 5, + ACTIONS(3465), 2, + anon_sym_else, + anon_sym_while, + [206728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10563), 1, - anon_sym_SEMI, - ACTIONS(10565), 1, - sym__automatic_semicolon, + ACTIONS(5411), 1, + anon_sym_LPAREN, + STATE(3243), 1, + sym_arguments, STATE(6756), 1, sym_comment, - [206637] = 4, + [206744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6757), 1, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3467), 2, anon_sym_else, anon_sym_while, - [206651] = 5, + [206758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(6730), 1, - sym__from_clause, STATE(6758), 1, sym_comment, - [206667] = 4, + ACTIONS(8515), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206772] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6759), 1, sym_comment, - ACTIONS(2150), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206681] = 5, + ACTIONS(8507), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206786] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10567), 1, + ACTIONS(10565), 1, anon_sym_SEMI, - ACTIONS(10569), 1, + ACTIONS(10567), 1, sym__automatic_semicolon, STATE(6760), 1, sym_comment, - [206697] = 5, + [206802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5485), 1, - sym__from_clause, STATE(6761), 1, sym_comment, - [206713] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2146), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206816] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10571), 1, - sym_identifier, - ACTIONS(10573), 1, - anon_sym_STAR, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3249), 1, + sym_class_body, STATE(6762), 1, sym_comment, - [206729] = 4, + [206832] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6763), 1, sym_comment, - ACTIONS(10575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206743] = 4, + ACTIONS(3469), 2, + anon_sym_else, + anon_sym_while, + [206846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(6745), 1, + sym__from_clause, STATE(6764), 1, sym_comment, - ACTIONS(8447), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206757] = 5, + [206862] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10577), 1, - anon_sym_SEMI, - ACTIONS(10579), 1, - sym__automatic_semicolon, STATE(6765), 1, sym_comment, - [206773] = 4, + ACTIONS(10569), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6766), 1, sym_comment, - ACTIONS(9911), 2, + ACTIONS(9903), 2, anon_sym_COMMA, anon_sym_RBRACE, - [206787] = 4, + [206890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5490), 1, + sym__from_clause, STATE(6767), 1, sym_comment, - ACTIONS(3539), 2, - anon_sym_else, - anon_sym_while, - [206801] = 5, + [206906] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_statement_block, + ACTIONS(10571), 1, + sym_identifier, + ACTIONS(10573), 1, + anon_sym_STAR, STATE(6768), 1, sym_comment, - [206817] = 5, + [206922] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(10575), 1, + anon_sym_SEMI, + ACTIONS(10577), 1, + sym__automatic_semicolon, STATE(6769), 1, sym_comment, - STATE(7086), 1, - sym_formal_parameters, - [206833] = 4, + [206938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6770), 1, sym_comment, - ACTIONS(6819), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206847] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8539), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206952] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10581), 1, - sym_identifier, - STATE(5869), 1, - sym_nested_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10579), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_statement_block, STATE(6771), 1, sym_comment, - [206863] = 4, + [206968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6772), 1, sym_comment, - ACTIONS(10583), 2, + ACTIONS(10581), 2, anon_sym_COMMA, anon_sym_RBRACE, - [206877] = 5, + [206982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7643), 1, - anon_sym_LBRACE, - STATE(1267), 1, - sym_class_body, STATE(6773), 1, sym_comment, - [206893] = 4, + ACTIONS(3539), 2, + anon_sym_else, + anon_sym_while, + [206996] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10583), 1, + sym_identifier, + ACTIONS(10585), 1, + sym_private_property_identifier, STATE(6774), 1, sym_comment, - ACTIONS(3537), 2, - anon_sym_else, - anon_sym_while, - [206907] = 5, + [207012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, STATE(6775), 1, sym_comment, - [206923] = 4, + STATE(7079), 1, + sym_formal_parameters, + [207028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6776), 1, sym_comment, - ACTIONS(3535), 2, - anon_sym_else, - anon_sym_while, - [206937] = 5, + ACTIONS(6830), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10585), 1, - anon_sym_SEMI, - ACTIONS(10587), 1, - sym__automatic_semicolon, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(81), 1, + sym_parenthesized_expression, STATE(6777), 1, sym_comment, - [206953] = 4, + [207058] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6778), 1, sym_comment, - ACTIONS(10589), 2, + ACTIONS(10587), 2, anon_sym_COMMA, anon_sym_RBRACE, - [206967] = 5, + [207072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5548), 1, - sym__from_clause, STATE(6779), 1, sym_comment, - [206983] = 5, + ACTIONS(9427), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10591), 1, - anon_sym_SEMI, - ACTIONS(10593), 1, - sym__automatic_semicolon, + ACTIONS(4927), 1, + anon_sym_LPAREN, + STATE(2467), 1, + sym_arguments, STATE(6780), 1, sym_comment, - [206999] = 4, + [207102] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10589), 1, + sym_identifier, + STATE(5868), 1, + sym_nested_identifier, STATE(6781), 1, sym_comment, - ACTIONS(9419), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207013] = 5, + [207118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, - anon_sym_LPAREN, - STATE(2568), 1, - sym_arguments, STATE(6782), 1, sym_comment, - [207029] = 4, + ACTIONS(3535), 2, + anon_sym_else, + anon_sym_while, + [207132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_class_body, STATE(6783), 1, sym_comment, - ACTIONS(3533), 2, - anon_sym_else, - anon_sym_while, - [207043] = 4, + [207148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym_parenthesized_expression, STATE(6784), 1, sym_comment, - ACTIONS(10595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207057] = 5, + [207164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10597), 1, - anon_sym_SEMI, - ACTIONS(10599), 1, - sym__automatic_semicolon, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5554), 1, + sym__from_clause, STATE(6785), 1, sym_comment, - [207073] = 5, + [207180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10601), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_statement_block, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym_parenthesized_expression, STATE(6786), 1, sym_comment, - [207089] = 5, + [207196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(10591), 1, + anon_sym_SEMI, + ACTIONS(10593), 1, + sym__automatic_semicolon, STATE(6787), 1, sym_comment, - STATE(7273), 1, - sym_formal_parameters, - [207105] = 4, + [207212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6788), 1, sym_comment, - ACTIONS(3531), 2, + ACTIONS(3533), 2, anon_sym_else, anon_sym_while, - [207119] = 4, + [207226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6789), 1, sym_comment, - ACTIONS(6803), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207133] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3531), 2, + anon_sym_else, + anon_sym_while, + [207240] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10603), 1, - sym_identifier, - STATE(5745), 1, - sym_nested_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3238), 1, + sym_class_body, STATE(6790), 1, sym_comment, - [207149] = 4, + [207256] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3237), 1, + sym_statement_block, STATE(6791), 1, sym_comment, - ACTIONS(3531), 2, - anon_sym_else, - anon_sym_while, - [207163] = 4, + [207272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6792), 1, sym_comment, - ACTIONS(3531), 2, + ACTIONS(3551), 2, anon_sym_else, anon_sym_while, - [207177] = 5, + [207286] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3267), 1, - sym_statement_block, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6793), 1, sym_comment, - [207193] = 4, + STATE(7277), 1, + sym_formal_parameters, + [207302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6794), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3529), 2, anon_sym_else, anon_sym_while, - [207207] = 5, + [207316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, STATE(6795), 1, sym_comment, - STATE(7364), 1, - sym_formal_parameters, - [207223] = 5, + ACTIONS(6838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207330] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym_parenthesized_expression, + ACTIONS(10595), 1, + sym_identifier, + STATE(5746), 1, + sym_nested_identifier, STATE(6796), 1, sym_comment, - [207239] = 5, + [207346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_parenthesized_expression, STATE(6797), 1, sym_comment, - [207255] = 5, + ACTIONS(3529), 2, + anon_sym_else, + anon_sym_while, + [207360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3266), 1, - sym_statement_block, STATE(6798), 1, sym_comment, - [207271] = 4, + ACTIONS(3527), 2, + anon_sym_else, + anon_sym_while, + [207374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9659), 1, + anon_sym_LBRACE, + STATE(1162), 1, + sym_statement_block, STATE(6799), 1, sym_comment, - ACTIONS(3527), 2, - anon_sym_else, - anon_sym_while, - [207285] = 5, + [207390] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3265), 1, - sym_class_body, STATE(6800), 1, sym_comment, - [207301] = 4, + ACTIONS(3525), 2, + anon_sym_else, + anon_sym_while, + [207404] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6801), 1, sym_comment, - ACTIONS(6878), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207315] = 5, + STATE(7366), 1, + sym_formal_parameters, + [207420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6663), 1, - sym_statement_block, STATE(6802), 1, sym_comment, - [207331] = 4, + ACTIONS(3523), 2, + anon_sym_else, + anon_sym_while, + [207434] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4882), 1, + sym_class_body, STATE(6803), 1, sym_comment, - ACTIONS(3525), 2, - anon_sym_else, - anon_sym_while, - [207345] = 5, + [207450] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, + STATE(3235), 1, + sym_class_body, STATE(6804), 1, sym_comment, - STATE(6805), 1, - sym_statement_block, - [207361] = 4, + [207466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6805), 1, sym_comment, - ACTIONS(6855), 2, + ACTIONS(6891), 2, anon_sym_COMMA, anon_sym_RBRACE, - [207375] = 5, + [207480] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(6665), 1, + STATE(6667), 1, sym_statement_block, STATE(6806), 1, sym_comment, - [207391] = 4, + [207496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6807), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3519), 2, anon_sym_else, anon_sym_while, - [207405] = 5, + [207510] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7643), 1, - anon_sym_LBRACE, - STATE(1500), 1, - sym_class_body, STATE(6808), 1, sym_comment, - [207421] = 5, + ACTIONS(6834), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8696), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(6669), 1, sym_statement_block, STATE(6809), 1, sym_comment, - [207437] = 4, + [207540] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10597), 1, + anon_sym_SEMI, + ACTIONS(10599), 1, + sym__automatic_semicolon, STATE(6810), 1, sym_comment, - ACTIONS(3521), 2, - anon_sym_else, - anon_sym_while, - [207451] = 4, + [207556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10601), 1, + anon_sym_SEMI, + ACTIONS(10603), 1, + sym__automatic_semicolon, STATE(6811), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_else, - anon_sym_while, - [207465] = 5, + [207572] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7643), 1, + ACTIONS(7667), 1, anon_sym_LBRACE, - STATE(1503), 1, + STATE(1490), 1, sym_class_body, STATE(6812), 1, sym_comment, - [207481] = 4, + [207588] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8698), 1, + anon_sym_LBRACE, + STATE(1489), 1, + sym_statement_block, STATE(6813), 1, sym_comment, - ACTIONS(10605), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207495] = 4, + [207604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6814), 1, sym_comment, - ACTIONS(10607), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207509] = 4, + ACTIONS(3517), 2, + anon_sym_else, + anon_sym_while, + [207618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6815), 1, sym_comment, - ACTIONS(9880), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207523] = 4, + ACTIONS(3515), 2, + anon_sym_else, + anon_sym_while, + [207632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7667), 1, + anon_sym_LBRACE, + STATE(1486), 1, + sym_class_body, STATE(6816), 1, sym_comment, - ACTIONS(9153), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207537] = 5, + [207648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4932), 1, - sym_class_body, STATE(6817), 1, sym_comment, - [207553] = 5, + ACTIONS(10605), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(10607), 1, anon_sym_LBRACE, - STATE(3263), 1, - sym_class_body, + STATE(1407), 1, + sym_statement_block, STATE(6818), 1, sym_comment, - [207569] = 5, + [207678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_class_body, STATE(6819), 1, sym_comment, - [207585] = 4, + ACTIONS(9886), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6820), 1, sym_comment, - ACTIONS(9718), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207599] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9164), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207706] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10609), 1, - sym_identifier, - ACTIONS(10611), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6821), 1, sym_comment, - [207615] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3513), 2, + anon_sym_else, + anon_sym_while, + [207720] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10613), 1, - sym_identifier, - ACTIONS(10615), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3219), 1, + sym_class_body, STATE(6822), 1, sym_comment, - [207631] = 5, + [207736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9648), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(1183), 1, - sym_statement_block, + STATE(424), 1, + sym_class_body, STATE(6823), 1, sym_comment, - [207647] = 5, + [207752] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4880), 1, - sym_class_body, + ACTIONS(10609), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + sym__automatic_semicolon, STATE(6824), 1, sym_comment, - [207663] = 4, + [207768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6825), 1, sym_comment, - ACTIONS(3515), 2, + ACTIONS(3471), 2, anon_sym_else, anon_sym_while, - [207677] = 5, + [207782] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7260), 1, - anon_sym_LPAREN, - STATE(4515), 1, - sym_formal_parameters, + ACTIONS(10613), 1, + sym_identifier, + ACTIONS(10615), 1, + sym_private_property_identifier, STATE(6826), 1, sym_comment, - [207693] = 4, + [207798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10509), 1, + anon_sym_LBRACE, + STATE(1382), 1, + sym_enum_body, STATE(6827), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_else, - anon_sym_while, - [207707] = 5, + [207814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7631), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_class_body, + STATE(6808), 1, + sym_statement_block, STATE(6828), 1, sym_comment, - [207723] = 4, + [207830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -378238,2385 +378350,2393 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(10617), 2, sym__automatic_semicolon, anon_sym_SEMI, - [207737] = 4, + [207844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6830), 1, sym_comment, - ACTIONS(3513), 2, - anon_sym_else, - anon_sym_while, - [207751] = 5, + ACTIONS(9724), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207858] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10619), 1, - anon_sym_LBRACE, - STATE(1405), 1, - sym_enum_body, + ACTIONS(7254), 1, + anon_sym_LPAREN, + STATE(4452), 1, + sym_formal_parameters, STATE(6831), 1, sym_comment, - [207767] = 4, + [207874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(1515), 1, + sym_class_body, STATE(6832), 1, sym_comment, - ACTIONS(10621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207781] = 4, + [207890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4934), 1, + sym_class_body, STATE(6833), 1, sym_comment, - ACTIONS(9867), 2, - anon_sym_COMMA, - anon_sym_GT, - [207795] = 5, + [207906] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10623), 1, + ACTIONS(10619), 1, sym_identifier, - STATE(6272), 1, + STATE(6278), 1, sym_nested_identifier, STATE(6834), 1, sym_comment, - [207811] = 4, + [207922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6835), 1, sym_comment, - ACTIONS(3511), 2, + ACTIONS(3513), 2, anon_sym_else, anon_sym_while, - [207825] = 5, + [207936] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, + ACTIONS(8157), 1, anon_sym_LBRACE, - STATE(6801), 1, + STATE(3480), 1, sym_statement_block, STATE(6836), 1, sym_comment, - [207841] = 5, + [207952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10625), 1, - anon_sym_SEMI, - ACTIONS(10627), 1, - sym__automatic_semicolon, STATE(6837), 1, sym_comment, - [207857] = 4, + ACTIONS(3511), 2, + anon_sym_else, + anon_sym_while, + [207966] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6838), 1, sym_comment, - ACTIONS(3475), 2, - anon_sym_else, - anon_sym_while, - [207871] = 4, + ACTIONS(9873), 2, + anon_sym_COMMA, + anon_sym_GT, + [207980] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7935), 1, + anon_sym_LBRACE, + STATE(6805), 1, + sym_statement_block, STATE(6839), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207885] = 4, + [207996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6840), 1, sym_comment, - ACTIONS(10629), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207899] = 5, + ACTIONS(3509), 2, + anon_sym_else, + anon_sym_while, + [208010] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(10621), 1, anon_sym_LPAREN, + STATE(2078), 1, + sym_arguments, STATE(6841), 1, sym_comment, - STATE(7113), 1, - sym_formal_parameters, - [207915] = 5, + [208026] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3029), 1, - sym_class_body, STATE(6842), 1, sym_comment, - [207931] = 4, + ACTIONS(10623), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6843), 1, sym_comment, - ACTIONS(10631), 2, - anon_sym_COMMA, - anon_sym_GT, - [207945] = 4, + ACTIONS(10625), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208054] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6844), 1, sym_comment, - ACTIONS(9203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207959] = 5, + ACTIONS(6846), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10479), 1, + ACTIONS(7575), 1, anon_sym_LBRACE, - STATE(6582), 1, - sym_enum_body, + STATE(3262), 1, + sym_class_body, STATE(6845), 1, sym_comment, - [207975] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208084] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10633), 1, - sym_identifier, - ACTIONS(10635), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6846), 1, sym_comment, - [207991] = 5, + STATE(7120), 1, + sym_formal_parameters, + [208100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3023), 1, - sym_class_body, STATE(6847), 1, sym_comment, - [208007] = 5, + ACTIONS(3477), 2, + anon_sym_else, + anon_sym_while, + [208114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_statement_block, STATE(6848), 1, sym_comment, - [208023] = 5, + ACTIONS(10627), 2, + anon_sym_COMMA, + anon_sym_GT, + [208128] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(6324), 1, - sym__from_clause, + ACTIONS(10629), 1, + sym_identifier, + ACTIONS(10631), 1, + sym_private_property_identifier, STATE(6849), 1, sym_comment, - [208039] = 5, + [208144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(2994), 1, - sym_statement_block, STATE(6850), 1, sym_comment, - [208055] = 4, + ACTIONS(10633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6851), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_else, - anon_sym_while, - [208069] = 4, + ACTIONS(9207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208172] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(6324), 1, + sym__from_clause, STATE(6852), 1, sym_comment, - ACTIONS(10637), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208083] = 4, + [208188] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3234), 1, + sym_statement_block, STATE(6853), 1, sym_comment, - ACTIONS(10639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208097] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208204] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10641), 1, - sym_identifier, - ACTIONS(10643), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10635), 1, + anon_sym_SEMI, + ACTIONS(10637), 1, + sym__automatic_semicolon, STATE(6854), 1, sym_comment, - [208113] = 4, + [208220] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10491), 1, + anon_sym_LBRACE, + STATE(6599), 1, + sym_enum_body, STATE(6855), 1, sym_comment, - ACTIONS(10645), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208127] = 4, + [208236] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6856), 1, sym_comment, - ACTIONS(10647), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208141] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10639), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208250] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6857), 1, sym_comment, - [208157] = 5, + ACTIONS(10641), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208264] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_COLON, - STATE(6686), 1, - sym_type_annotation, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3124), 1, + sym_class_body, STATE(6858), 1, sym_comment, - [208173] = 5, + [208280] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9648), 1, + ACTIONS(9659), 1, anon_sym_LBRACE, - STATE(1163), 1, + STATE(1175), 1, sym_statement_block, STATE(6859), 1, sym_comment, - [208189] = 4, + [208296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6860), 1, sym_comment, - ACTIONS(10653), 2, + ACTIONS(10643), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [208203] = 5, + anon_sym_RBRACK, + [208310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7701), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_class_body, STATE(6861), 1, sym_comment, - [208219] = 5, + ACTIONS(10645), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208324] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, - STATE(5155), 1, - sym_formal_parameters, + ACTIONS(4323), 1, + anon_sym_COLON, + STATE(6690), 1, + sym_type_annotation, STATE(6862), 1, sym_comment, - [208235] = 5, + [208340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(4894), 1, - sym_class_body, + STATE(3211), 1, + sym_statement_block, STATE(6863), 1, sym_comment, - [208251] = 5, + [208356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, - anon_sym_LPAREN, - STATE(93), 1, - sym_parenthesized_expression, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4894), 1, + sym_class_body, STATE(6864), 1, sym_comment, - [208267] = 5, + [208372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6524), 1, - sym_parenthesized_expression, + ACTIONS(7583), 1, + anon_sym_LBRACE, + STATE(985), 1, + sym_class_body, STATE(6865), 1, sym_comment, - [208283] = 4, + [208388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4898), 1, + sym_class_body, STATE(6866), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_else, - anon_sym_while, - [208297] = 5, + [208404] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(5340), 1, - sym_statement_block, + ACTIONS(7274), 1, + anon_sym_LPAREN, + STATE(5158), 1, + sym_formal_parameters, STATE(6867), 1, sym_comment, - [208313] = 4, + [208420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3190), 1, + sym_class_body, STATE(6868), 1, sym_comment, - ACTIONS(10655), 2, - anon_sym_COMMA, - anon_sym_GT, - [208327] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6869), 1, - sym_comment, - ACTIONS(10657), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208341] = 5, + [208436] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10659), 1, + ACTIONS(10647), 1, sym_identifier, - ACTIONS(10661), 1, + ACTIONS(10649), 1, sym_private_property_identifier, + STATE(6869), 1, + sym_comment, + [208452] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_parenthesized_expression, STATE(6870), 1, sym_comment, - [208357] = 5, + [208468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10619), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_enum_body, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6571), 1, + sym_parenthesized_expression, STATE(6871), 1, sym_comment, - [208373] = 5, + [208484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4896), 1, - sym_class_body, STATE(6872), 1, sym_comment, - [208389] = 5, + ACTIONS(3507), 2, + anon_sym_else, + anon_sym_while, + [208498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(3079), 1, - sym_class_body, STATE(6873), 1, sym_comment, - [208405] = 5, + ACTIONS(10651), 2, + anon_sym_COMMA, + anon_sym_GT, + [208512] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10663), 1, - anon_sym_LPAREN, - STATE(1104), 1, - sym_parenthesized_expression, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4905), 1, + sym_class_body, STATE(6874), 1, sym_comment, - [208421] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208528] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10665), 1, - sym_identifier, - ACTIONS(10667), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6875), 1, sym_comment, - [208437] = 5, + ACTIONS(10653), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208542] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4903), 1, - sym_class_body, + ACTIONS(10655), 1, + sym_identifier, + ACTIONS(10657), 1, + sym_private_property_identifier, STATE(6876), 1, sym_comment, - [208453] = 5, + [208558] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(10659), 1, + sym_identifier, + ACTIONS(10661), 1, + sym_private_property_identifier, STATE(6877), 1, sym_comment, - STATE(7311), 1, - sym_formal_parameters, - [208469] = 5, + [208574] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(6628), 1, - sym__from_clause, + ACTIONS(10663), 1, + sym_identifier, + ACTIONS(10665), 1, + sym_private_property_identifier, STATE(6878), 1, sym_comment, - [208485] = 5, + [208590] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10669), 1, + ACTIONS(10667), 1, sym_identifier, - ACTIONS(10671), 1, + ACTIONS(10669), 1, sym_private_property_identifier, STATE(6879), 1, sym_comment, - [208501] = 4, + [208606] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10671), 1, + sym_identifier, + ACTIONS(10673), 1, + sym_private_property_identifier, STATE(6880), 1, sym_comment, - ACTIONS(3481), 2, - anon_sym_else, - anon_sym_while, - [208515] = 5, + [208622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5535), 1, - sym__from_clause, STATE(6881), 1, sym_comment, - [208531] = 5, + ACTIONS(3479), 2, + anon_sym_else, + anon_sym_while, + [208636] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10673), 1, - sym_identifier, ACTIONS(10675), 1, + sym_identifier, + ACTIONS(10677), 1, sym_private_property_identifier, STATE(6882), 1, sym_comment, - [208547] = 5, + [208652] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10677), 1, - anon_sym_SEMI, - ACTIONS(10679), 1, - sym__automatic_semicolon, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6883), 1, sym_comment, - [208563] = 5, + STATE(7325), 1, + sym_formal_parameters, + [208668] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4923), 1, - sym_class_body, + ACTIONS(8959), 1, + anon_sym_from, + STATE(6634), 1, + sym__from_clause, STATE(6884), 1, sym_comment, - [208579] = 5, + [208684] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6885), 1, + sym_comment, + ACTIONS(3481), 2, + anon_sym_else, + anon_sym_while, + [208698] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10681), 1, + ACTIONS(10679), 1, sym_identifier, - ACTIONS(10683), 1, + ACTIONS(10681), 1, sym_private_property_identifier, - STATE(6885), 1, + STATE(6886), 1, sym_comment, - [208595] = 5, + [208714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10685), 1, - anon_sym_LPAREN, - STATE(5453), 1, - sym_parenthesized_expression, - STATE(6886), 1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5537), 1, + sym__from_clause, + STATE(6887), 1, sym_comment, - [208611] = 4, + [208730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6887), 1, + STATE(6888), 1, sym_comment, - ACTIONS(3505), 2, + ACTIONS(10683), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208744] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6889), 1, + sym_comment, + ACTIONS(3485), 2, anon_sym_else, anon_sym_while, - [208625] = 5, + [208758] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10687), 1, + ACTIONS(10685), 1, sym_identifier, - STATE(6102), 1, + STATE(6108), 1, sym_nested_identifier, - STATE(6888), 1, + STATE(6890), 1, sym_comment, - [208641] = 5, + [208774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, + ACTIONS(7274), 1, anon_sym_LPAREN, - STATE(6889), 1, + STATE(6891), 1, sym_comment, - STATE(7053), 1, + STATE(7247), 1, sym_formal_parameters, - [208657] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7697), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_class_body, - STATE(6890), 1, - sym_comment, - [208673] = 5, + [208790] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9805), 1, + ACTIONS(9815), 1, sym_identifier, - ACTIONS(9809), 1, + ACTIONS(9819), 1, sym_private_property_identifier, - STATE(6891), 1, - sym_comment, - [208689] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, STATE(6892), 1, sym_comment, - STATE(7241), 1, - sym_formal_parameters, - [208705] = 5, + [208806] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8198), 1, - anon_sym_LBRACE, - STATE(3474), 1, - sym_statement_block, + ACTIONS(10687), 1, + sym_identifier, + ACTIONS(10689), 1, + sym_private_property_identifier, STATE(6893), 1, sym_comment, - [208721] = 4, + [208822] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10691), 1, + anon_sym_SEMI, + ACTIONS(10693), 1, + sym__automatic_semicolon, STATE(6894), 1, sym_comment, - ACTIONS(3503), 2, - anon_sym_else, - anon_sym_while, - [208735] = 4, + [208838] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6895), 1, sym_comment, - ACTIONS(10689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208749] = 5, + STATE(7056), 1, + sym_formal_parameters, + [208854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7911), 1, - anon_sym_LBRACE, - STATE(6607), 1, - sym_statement_block, + ACTIONS(10695), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_parenthesized_expression, STATE(6896), 1, sym_comment, - [208765] = 4, + [208870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6897), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3505), 2, anon_sym_else, anon_sym_while, - [208779] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208884] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10691), 1, - sym_identifier, - ACTIONS(10693), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6898), 1, sym_comment, - [208795] = 5, + ACTIONS(10697), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208898] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5513), 1, - sym__from_clause, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4925), 1, + sym_class_body, STATE(6899), 1, sym_comment, - [208811] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208914] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10695), 1, - sym_identifier, - ACTIONS(10697), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5417), 1, + sym__from_clause, STATE(6900), 1, sym_comment, - [208827] = 5, + [208930] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(7935), 1, anon_sym_LBRACE, - STATE(3085), 1, + STATE(6612), 1, sym_statement_block, STATE(6901), 1, sym_comment, - [208843] = 5, + [208946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5413), 1, - sym__from_clause, STATE(6902), 1, sym_comment, - [208859] = 5, + ACTIONS(3487), 2, + anon_sym_else, + anon_sym_while, + [208960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(3053), 1, + STATE(368), 1, sym_class_body, STATE(6903), 1, sym_comment, - [208875] = 5, + [208976] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8671), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_statement_block, + ACTIONS(10699), 1, + sym_identifier, + ACTIONS(10701), 1, + sym_private_property_identifier, STATE(6904), 1, sym_comment, - [208891] = 5, + [208992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5516), 1, + sym__from_clause, STATE(6905), 1, sym_comment, - STATE(6981), 1, - sym_formal_parameters, - [208907] = 5, + [209008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4914), 1, - sym_class_body, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6906), 1, sym_comment, - [208923] = 5, + STATE(7229), 1, + sym_formal_parameters, + [209024] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10495), 1, + ACTIONS(8673), 1, anon_sym_LBRACE, - STATE(1369), 1, + STATE(444), 1, sym_statement_block, STATE(6907), 1, sym_comment, - [208939] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209040] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10699), 1, - sym_identifier, - STATE(5849), 1, - sym_nested_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(3216), 1, + sym_class_body, STATE(6908), 1, sym_comment, - [208955] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209056] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10701), 1, - sym_identifier, - ACTIONS(10703), 1, - sym_private_property_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10607), 1, + anon_sym_LBRACE, + STATE(1365), 1, + sym_statement_block, STATE(6909), 1, sym_comment, - [208971] = 5, + [209072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(5338), 1, - sym_statement_block, STATE(6910), 1, sym_comment, - [208987] = 4, + ACTIONS(3505), 2, + anon_sym_else, + anon_sym_while, + [209086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6911), 1, sym_comment, - ACTIONS(6855), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [209001] = 4, + STATE(6977), 1, + sym_formal_parameters, + [209102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6912), 1, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3503), 2, anon_sym_else, anon_sym_while, - [209015] = 5, + [209116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, STATE(6913), 1, sym_comment, - STATE(6977), 1, - sym_formal_parameters, - [209031] = 4, + ACTIONS(3489), 2, + anon_sym_else, + anon_sym_while, + [209130] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10703), 1, + sym_identifier, + STATE(5855), 1, + sym_nested_identifier, STATE(6914), 1, sym_comment, - ACTIONS(3499), 2, - anon_sym_else, - anon_sym_while, - [209045] = 4, + [209146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6915), 1, sym_comment, - ACTIONS(3485), 2, - anon_sym_else, - anon_sym_while, - [209059] = 5, + ACTIONS(6834), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [209160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7250), 1, - anon_sym_LPAREN, STATE(6916), 1, sym_comment, - STATE(7227), 1, - sym_formal_parameters, - [209075] = 4, + ACTIONS(3501), 2, + anon_sym_else, + anon_sym_while, + [209174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3109), 1, + sym_statement_block, STATE(6917), 1, sym_comment, - ACTIONS(3497), 2, - anon_sym_else, - anon_sym_while, - [209089] = 5, + [209190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7571), 1, - anon_sym_LBRACE, - STATE(2999), 1, - sym_class_body, STATE(6918), 1, sym_comment, - [209105] = 4, + ACTIONS(3499), 2, + anon_sym_else, + anon_sym_while, + [209204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7274), 1, + anon_sym_LPAREN, STATE(6919), 1, sym_comment, - ACTIONS(3495), 2, - anon_sym_else, - anon_sym_while, - [209119] = 5, + STATE(6988), 1, + sym_formal_parameters, + [209220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7719), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_class_body, STATE(6920), 1, sym_comment, - [209135] = 4, + ACTIONS(3497), 2, + anon_sym_else, + anon_sym_while, + [209234] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, + ACTIONS(10705), 1, + sym_identifier, + ACTIONS(10707), 1, + sym_private_property_identifier, STATE(6921), 1, sym_comment, - ACTIONS(3529), 2, - anon_sym_else, - anon_sym_while, - [209149] = 4, + [209250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_statement_block, STATE(6922), 1, sym_comment, - ACTIONS(3487), 2, - anon_sym_else, - anon_sym_while, - [209163] = 5, + [209266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7657), 1, - anon_sym_LBRACE, - STATE(4913), 1, - sym_class_body, + ACTIONS(8959), 1, + anon_sym_from, + STATE(5443), 1, + sym__from_clause, STATE(6923), 1, sym_comment, - [209179] = 5, + [209282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10705), 1, - anon_sym_LBRACE, - STATE(3520), 1, - sym_statement_block, STATE(6924), 1, sym_comment, - [209195] = 5, + ACTIONS(3529), 2, + anon_sym_else, + anon_sym_while, + [209296] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(5440), 1, - sym__from_clause, + ACTIONS(7651), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_class_body, STATE(6925), 1, sym_comment, - [209211] = 5, + [209312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10707), 1, - anon_sym_SEMI, - ACTIONS(10709), 1, - sym__automatic_semicolon, STATE(6926), 1, sym_comment, - [209227] = 4, + ACTIONS(3493), 2, + anon_sym_else, + anon_sym_while, + [209326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10709), 1, + anon_sym_SEMI, + ACTIONS(10711), 1, + sym__automatic_semicolon, STATE(6927), 1, sym_comment, - ACTIONS(3491), 2, - anon_sym_else, - anon_sym_while, - [209241] = 4, + [209342] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6928), 1, sym_comment, - ACTIONS(3489), 2, - anon_sym_else, - anon_sym_while, - [209255] = 5, + ACTIONS(10713), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(10715), 1, anon_sym_LBRACE, - STATE(2597), 1, + STATE(3528), 1, sym_statement_block, STATE(6929), 1, sym_comment, - [209271] = 5, + [209372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_LPAREN, - STATE(6719), 1, - sym_parenthesized_expression, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4913), 1, + sym_class_body, STATE(6930), 1, sym_comment, - [209287] = 5, + [209388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(3375), 1, - sym_class_body, + ACTIONS(8959), 1, + anon_sym_from, + STATE(6615), 1, + sym__from_clause, STATE(6931), 1, sym_comment, - [209303] = 4, + [209404] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5314), 1, + anon_sym_LBRACE, + STATE(2516), 1, + sym_statement_block, STATE(6932), 1, sym_comment, - ACTIONS(10711), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209317] = 5, + [209420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - STATE(2446), 1, + STATE(2521), 1, sym_statement_block, STATE(6933), 1, sym_comment, - [209333] = 4, + [209436] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(2525), 1, + sym_class_body, STATE(6934), 1, sym_comment, - ACTIONS(9779), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209347] = 5, + [209452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_from, - STATE(6621), 1, - sym__from_clause, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym_class_body, STATE(6935), 1, sym_comment, - [209363] = 5, + [209468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_LBRACE, - STATE(2608), 1, - sym_class_body, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6720), 1, + sym_parenthesized_expression, STATE(6936), 1, sym_comment, - [209379] = 4, + [209484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, STATE(6937), 1, sym_comment, - ACTIONS(10713), 2, + ACTIONS(10717), 2, anon_sym_COMMA, anon_sym_RPAREN, - [209393] = 5, + [209498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(3072), 1, - sym_statement_block, STATE(6938), 1, sym_comment, - [209409] = 4, + ACTIONS(3491), 2, + anon_sym_else, + anon_sym_while, + [209512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10715), 1, - anon_sym_EQ_GT, STATE(6939), 1, sym_comment, - [209422] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10719), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209526] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10717), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, STATE(6940), 1, sym_comment, - [209435] = 4, + ACTIONS(9779), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209540] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5932), 1, - anon_sym_RPAREN, + ACTIONS(7905), 1, + anon_sym_LBRACE, + STATE(5343), 1, + sym_statement_block, STATE(6941), 1, sym_comment, - [209448] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209556] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10719), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7779), 1, + anon_sym_LBRACE, + STATE(4910), 1, + sym_class_body, STATE(6942), 1, sym_comment, - [209461] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209572] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10721), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_LBRACE, + STATE(2998), 1, + sym_class_body, STATE(6943), 1, sym_comment, - [209474] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209588] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10723), 1, - sym_regex_pattern, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10721), 1, + anon_sym_LPAREN, + STATE(1073), 1, + sym_parenthesized_expression, STATE(6944), 1, sym_comment, - [209487] = 4, + [209604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10725), 1, - anon_sym_RBRACK, + ACTIONS(10723), 1, + anon_sym_EQ_GT, STATE(6945), 1, sym_comment, - [209500] = 4, + [209617] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10727), 1, - anon_sym_LBRACK, + ACTIONS(10725), 1, + sym_identifier, STATE(6946), 1, sym_comment, - [209513] = 4, + [209630] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10729), 1, - anon_sym_RBRACK, + ACTIONS(10727), 1, + sym_regex_pattern, STATE(6947), 1, sym_comment, - [209526] = 4, + [209643] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10731), 1, + ACTIONS(10729), 1, sym_identifier, STATE(6948), 1, sym_comment, - [209539] = 4, + [209656] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10733), 1, - anon_sym_while, + ACTIONS(10731), 1, + anon_sym_RBRACK, STATE(6949), 1, sym_comment, - [209552] = 4, + [209669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10735), 1, - anon_sym_RPAREN, + ACTIONS(10733), 1, + anon_sym_LBRACK, STATE(6950), 1, sym_comment, - [209565] = 4, + [209682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10737), 1, - anon_sym_COLON, + ACTIONS(10735), 1, + anon_sym_RPAREN, STATE(6951), 1, sym_comment, - [209578] = 4, + [209695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10739), 1, - anon_sym_RBRACK, + ACTIONS(5983), 1, + anon_sym_RPAREN, STATE(6952), 1, sym_comment, - [209591] = 4, + [209708] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10741), 1, - anon_sym_DOT, + ACTIONS(10737), 1, + anon_sym_COLON, STATE(6953), 1, sym_comment, - [209604] = 4, + [209721] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10739), 1, + sym_identifier, + STATE(6954), 1, + sym_comment, + [209734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10743), 1, - anon_sym_RBRACK, - STATE(6954), 1, + ACTIONS(10741), 1, + anon_sym_while, + STATE(6955), 1, sym_comment, - [209617] = 4, + [209747] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10745), 1, + ACTIONS(10743), 1, sym_identifier, - STATE(6955), 1, + STATE(6956), 1, + sym_comment, + [209760] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9801), 1, + anon_sym_RBRACK, + STATE(6957), 1, + sym_comment, + [209773] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10745), 1, + anon_sym_RBRACK, + STATE(6958), 1, sym_comment, - [209630] = 4, + [209786] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10747), 1, - anon_sym_RBRACK, - STATE(6956), 1, + anon_sym_DOT, + STATE(6959), 1, sym_comment, - [209643] = 4, + [209799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9793), 1, + ACTIONS(10749), 1, anon_sym_RBRACK, - STATE(6957), 1, + STATE(6960), 1, sym_comment, - [209656] = 4, + [209812] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10749), 1, + ACTIONS(10751), 1, sym_identifier, - STATE(6958), 1, + STATE(6961), 1, sym_comment, - [209669] = 4, + [209825] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10751), 1, - anon_sym_EQ_GT, - STATE(6959), 1, + ACTIONS(5896), 1, + anon_sym_is, + STATE(6962), 1, sym_comment, - [209682] = 4, + [209838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10753), 1, anon_sym_EQ_GT, - STATE(6960), 1, + STATE(6963), 1, sym_comment, - [209695] = 4, + [209851] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10755), 1, sym_identifier, - STATE(6961), 1, + STATE(6964), 1, sym_comment, - [209708] = 4, + [209864] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10757), 1, sym_identifier, - STATE(6962), 1, - sym_comment, - [209721] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6017), 1, - anon_sym_is, - STATE(6963), 1, - sym_comment, - [209734] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10759), 1, - anon_sym_RBRACK, - STATE(6964), 1, - sym_comment, - [209747] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10761), 1, - anon_sym_RBRACK, STATE(6965), 1, sym_comment, - [209760] = 4, + [209877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10763), 1, - anon_sym_from, + ACTIONS(10759), 1, + anon_sym_EQ_GT, STATE(6966), 1, sym_comment, - [209773] = 4, + [209890] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10765), 1, + ACTIONS(10761), 1, sym_identifier, STATE(6967), 1, sym_comment, - [209786] = 4, + [209903] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10767), 1, + ACTIONS(10763), 1, sym_identifier, STATE(6968), 1, sym_comment, - [209799] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209916] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10769), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10765), 1, + anon_sym_from, STATE(6969), 1, sym_comment, - [209812] = 4, + [209929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10771), 1, + ACTIONS(10767), 1, anon_sym_RBRACK, STATE(6970), 1, sym_comment, - [209825] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209942] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10773), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10769), 1, + anon_sym_RBRACK, STATE(6971), 1, sym_comment, - [209838] = 4, + [209955] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10775), 1, + ACTIONS(10771), 1, sym_identifier, STATE(6972), 1, sym_comment, - [209851] = 4, + [209968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10777), 1, - anon_sym_DOT, + ACTIONS(10773), 1, + anon_sym_EQ_GT, STATE(6973), 1, sym_comment, - [209864] = 4, + [209981] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10779), 1, - anon_sym_RBRACK, + ACTIONS(10775), 1, + sym_identifier, STATE(6974), 1, sym_comment, - [209877] = 4, + [209994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10781), 1, - anon_sym_while, + ACTIONS(10777), 1, + anon_sym_DOT, STATE(6975), 1, sym_comment, - [209890] = 4, + [210007] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9594), 1, - anon_sym_RBRACE, + ACTIONS(10779), 1, + anon_sym_RBRACK, STATE(6976), 1, sym_comment, - [209903] = 4, + [210020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10783), 1, + ACTIONS(10781), 1, anon_sym_EQ_GT, STATE(6977), 1, sym_comment, - [209916] = 4, + [210033] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10785), 1, + ACTIONS(10783), 1, sym_identifier, STATE(6978), 1, sym_comment, - [209929] = 4, + [210046] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10787), 1, - anon_sym_RPAREN, + ACTIONS(10785), 1, + anon_sym_while, STATE(6979), 1, sym_comment, - [209942] = 4, + [210059] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10789), 1, - anon_sym_EQ_GT, + ACTIONS(10787), 1, + sym_identifier, STATE(6980), 1, sym_comment, - [209955] = 4, + [210072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10791), 1, - anon_sym_EQ_GT, + ACTIONS(10789), 1, + anon_sym_RPAREN, STATE(6981), 1, sym_comment, - [209968] = 4, + [210085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10793), 1, - anon_sym_LPAREN, + ACTIONS(9600), 1, + anon_sym_RBRACE, STATE(6982), 1, sym_comment, - [209981] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210098] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10795), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10791), 1, + anon_sym_RBRACK, STATE(6983), 1, sym_comment, - [209994] = 4, + [210111] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10797), 1, + ACTIONS(10793), 1, sym_identifier, STATE(6984), 1, sym_comment, - [210007] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210124] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10799), 1, - sym_regex_pattern, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10795), 1, + anon_sym_RBRACK, STATE(6985), 1, sym_comment, - [210020] = 4, + [210137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10801), 1, - anon_sym_from, + ACTIONS(10797), 1, + anon_sym_RBRACK, STATE(6986), 1, sym_comment, - [210033] = 4, + [210150] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10803), 1, - anon_sym_RPAREN, + ACTIONS(10799), 1, + anon_sym_LPAREN, STATE(6987), 1, sym_comment, - [210046] = 4, + [210163] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10805), 1, + ACTIONS(10801), 1, anon_sym_EQ_GT, STATE(6988), 1, sym_comment, - [210059] = 4, + [210176] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10807), 1, - anon_sym_as, + ACTIONS(10803), 1, + sym_identifier, STATE(6989), 1, sym_comment, - [210072] = 4, + [210189] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10809), 1, - anon_sym_EQ, + ACTIONS(10805), 1, + sym_identifier, STATE(6990), 1, sym_comment, - [210085] = 4, + [210202] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10811), 1, - anon_sym_RBRACK, + ACTIONS(10807), 1, + anon_sym_from, STATE(6991), 1, sym_comment, - [210098] = 4, + [210215] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10813), 1, - anon_sym_EQ_GT, + ACTIONS(10809), 1, + sym_regex_pattern, STATE(6992), 1, sym_comment, - [210111] = 4, + [210228] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10815), 1, - anon_sym_RBRACK, + ACTIONS(10811), 1, + anon_sym_RPAREN, STATE(6993), 1, sym_comment, - [210124] = 4, + [210241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10817), 1, - anon_sym_RBRACK, + ACTIONS(10813), 1, + anon_sym_as, STATE(6994), 1, sym_comment, - [210137] = 4, + [210254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10819), 1, - anon_sym_require, + ACTIONS(10815), 1, + anon_sym_EQ, STATE(6995), 1, sym_comment, - [210150] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210267] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10821), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10817), 1, + anon_sym_EQ_GT, STATE(6996), 1, sym_comment, - [210163] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210280] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10823), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10819), 1, + anon_sym_EQ_GT, STATE(6997), 1, sym_comment, - [210176] = 4, + [210293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9728), 1, - anon_sym_RBRACK, + ACTIONS(10821), 1, + anon_sym_RPAREN, STATE(6998), 1, sym_comment, - [210189] = 4, + [210306] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10825), 1, - anon_sym_RBRACK, + ACTIONS(10823), 1, + anon_sym_EQ_GT, STATE(6999), 1, sym_comment, - [210202] = 4, + [210319] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10825), 1, + anon_sym_require, + STATE(7000), 1, + sym_comment, + [210332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10827), 1, anon_sym_from, - STATE(7000), 1, + STATE(7001), 1, sym_comment, - [210215] = 4, + [210345] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10829), 1, sym_identifier, - STATE(7001), 1, + STATE(7002), 1, sym_comment, - [210228] = 4, + [210358] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(10831), 1, - anon_sym_EQ_GT, - STATE(7002), 1, + sym_identifier, + STATE(7003), 1, sym_comment, - [210241] = 4, + [210371] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10833), 1, - anon_sym_EQ_GT, - STATE(7003), 1, - sym_comment, - [210254] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10835), 1, - sym_identifier, + ACTIONS(9730), 1, + anon_sym_RBRACK, STATE(7004), 1, sym_comment, - [210267] = 4, + [210384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10837), 1, + ACTIONS(10833), 1, anon_sym_EQ_GT, STATE(7005), 1, sym_comment, - [210280] = 4, + [210397] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10839), 1, - anon_sym_DOT, + ACTIONS(10835), 1, + anon_sym_EQ_GT, STATE(7006), 1, sym_comment, - [210293] = 4, + [210410] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10841), 1, + ACTIONS(10837), 1, sym_identifier, STATE(7007), 1, sym_comment, - [210306] = 4, + [210423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10843), 1, - anon_sym_EQ_GT, + ACTIONS(10839), 1, + anon_sym_RBRACK, STATE(7008), 1, sym_comment, - [210319] = 4, + [210436] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6352), 1, - anon_sym_in, + ACTIONS(10841), 1, + anon_sym_EQ_GT, STATE(7009), 1, sym_comment, - [210332] = 4, + [210449] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10845), 1, - anon_sym_EQ_GT, + ACTIONS(10843), 1, + sym_identifier, STATE(7010), 1, sym_comment, - [210345] = 4, + [210462] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10847), 1, - anon_sym_RBRACK, + ACTIONS(6339), 1, + anon_sym_in, STATE(7011), 1, sym_comment, - [210358] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10849), 1, - sym_identifier, - STATE(7012), 1, - sym_comment, - [210371] = 4, + [210475] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10851), 1, - anon_sym_EQ_GT, - STATE(7013), 1, + ACTIONS(10845), 1, + anon_sym_DOT, + STATE(7012), 1, sym_comment, - [210384] = 4, + [210488] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10853), 1, + ACTIONS(10847), 1, sym_identifier, - STATE(7014), 1, + STATE(7013), 1, sym_comment, - [210397] = 4, + [210501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10855), 1, - anon_sym_RBRACK, - STATE(7015), 1, + ACTIONS(10849), 1, + anon_sym_EQ_GT, + STATE(7014), 1, sym_comment, - [210410] = 4, + [210514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10857), 1, + ACTIONS(10851), 1, anon_sym_RBRACK, - STATE(7016), 1, + STATE(7015), 1, sym_comment, - [210423] = 4, + [210527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10859), 1, + ACTIONS(10853), 1, anon_sym_RBRACK, - STATE(7017), 1, + STATE(7016), 1, sym_comment, - [210436] = 4, + [210540] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10861), 1, - anon_sym_RBRACK, - STATE(7018), 1, + ACTIONS(10855), 1, + sym_identifier, + STATE(7017), 1, sym_comment, - [210449] = 4, + [210553] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10863), 1, + ACTIONS(10857), 1, sym_identifier, - STATE(7019), 1, + STATE(7018), 1, sym_comment, - [210462] = 4, + [210566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10865), 1, + ACTIONS(10859), 1, anon_sym_RBRACK, + STATE(7019), 1, + sym_comment, + [210579] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10861), 1, + sym_identifier, STATE(7020), 1, sym_comment, - [210475] = 4, + [210592] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10867), 1, - anon_sym_symbol, + ACTIONS(10863), 1, + anon_sym_RBRACK, STATE(7021), 1, sym_comment, - [210488] = 4, + [210605] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10869), 1, - anon_sym_RPAREN, + ACTIONS(10865), 1, + anon_sym_RBRACK, STATE(7022), 1, sym_comment, - [210501] = 4, + [210618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10871), 1, - anon_sym_COLON, + ACTIONS(10867), 1, + anon_sym_EQ_GT, STATE(7023), 1, sym_comment, - [210514] = 4, + [210631] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10873), 1, + ACTIONS(10869), 1, sym_identifier, STATE(7024), 1, sym_comment, - [210527] = 4, + [210644] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5882), 1, - anon_sym_RBRACK, + ACTIONS(10871), 1, + sym_identifier, STATE(7025), 1, sym_comment, - [210540] = 4, + [210657] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7144), 1, - anon_sym_is, + ACTIONS(10873), 1, + anon_sym_RBRACK, STATE(7026), 1, sym_comment, - [210553] = 4, + [210670] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5999), 1, - anon_sym_RBRACK, + ACTIONS(10875), 1, + sym_identifier, STATE(7027), 1, sym_comment, - [210566] = 4, + [210683] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10875), 1, - anon_sym_RPAREN, + ACTIONS(10877), 1, + anon_sym_COLON, STATE(7028), 1, sym_comment, - [210579] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10877), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10879), 1, + anon_sym_RBRACK, STATE(7029), 1, sym_comment, - [210592] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210709] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10879), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10881), 1, + anon_sym_RBRACK, STATE(7030), 1, sym_comment, - [210605] = 4, + [210722] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10881), 1, + ACTIONS(10883), 1, sym_identifier, STATE(7031), 1, sym_comment, - [210618] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10883), 1, - anon_sym_RBRACK, - STATE(7032), 1, - sym_comment, - [210631] = 4, + [210735] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10885), 1, sym_identifier, - STATE(7033), 1, + STATE(7032), 1, sym_comment, - [210644] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210748] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10887), 1, - sym_identifier, - STATE(7034), 1, + anon_sym_RBRACK, + STATE(7033), 1, sym_comment, - [210657] = 4, - ACTIONS(3), 1, + [210761] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5985), 1, + anon_sym_RBRACK, + STATE(7034), 1, + sym_comment, + [210774] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10889), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_is, STATE(7035), 1, sym_comment, - [210670] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [210787] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10891), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5922), 1, + anon_sym_RBRACK, STATE(7036), 1, sym_comment, - [210683] = 4, + [210800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10893), 1, - anon_sym_from, + ACTIONS(10889), 1, + anon_sym_RPAREN, STATE(7037), 1, sym_comment, - [210696] = 4, + [210813] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10895), 1, + ACTIONS(10891), 1, sym_identifier, STATE(7038), 1, sym_comment, - [210709] = 4, + [210826] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10897), 1, - anon_sym_DOT, + ACTIONS(10893), 1, + sym_identifier, STATE(7039), 1, sym_comment, - [210722] = 4, + [210839] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6081), 1, - anon_sym_in, + ACTIONS(10895), 1, + anon_sym_RBRACK, STATE(7040), 1, sym_comment, - [210735] = 4, + [210852] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10899), 1, + ACTIONS(10897), 1, sym_identifier, STATE(7041), 1, sym_comment, - [210748] = 4, + [210865] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10901), 1, - anon_sym_class, + ACTIONS(10899), 1, + sym_identifier, STATE(7042), 1, sym_comment, - [210761] = 4, + [210878] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10903), 1, - anon_sym_while, + ACTIONS(10901), 1, + sym_identifier, STATE(7043), 1, sym_comment, - [210774] = 4, + [210891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10905), 1, - anon_sym_EQ_GT, + ACTIONS(10903), 1, + anon_sym_EQ, STATE(7044), 1, sym_comment, - [210787] = 4, + [210904] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10907), 1, + ACTIONS(10905), 1, sym_identifier, STATE(7045), 1, sym_comment, - [210800] = 4, + [210917] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10909), 1, - anon_sym_EQ, + ACTIONS(6063), 1, + anon_sym_in, STATE(7046), 1, sym_comment, - [210813] = 4, + [210930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10911), 1, - anon_sym_namespace, + ACTIONS(10907), 1, + anon_sym_DOT, STATE(7047), 1, sym_comment, - [210826] = 4, + [210943] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6310), 1, - anon_sym_in, + ACTIONS(10909), 1, + anon_sym_class, STATE(7048), 1, sym_comment, - [210839] = 4, - ACTIONS(3), 1, + [210956] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10911), 1, + anon_sym_while, + STATE(7049), 1, + sym_comment, + [210969] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10913), 1, - sym_identifier, - STATE(7049), 1, + anon_sym_EQ_GT, + STATE(7050), 1, sym_comment, - [210852] = 4, + [210982] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10915), 1, sym_identifier, - STATE(7050), 1, - sym_comment, - [210865] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5947), 1, - anon_sym_COLON, STATE(7051), 1, sym_comment, - [210878] = 4, + [210995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5949), 1, - anon_sym_RPAREN, + ACTIONS(10917), 1, + anon_sym_EQ, STATE(7052), 1, sym_comment, - [210891] = 4, + [211008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10917), 1, - anon_sym_EQ_GT, + ACTIONS(10919), 1, + anon_sym_namespace, STATE(7053), 1, sym_comment, - [210904] = 4, + [211021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10919), 1, + ACTIONS(10921), 1, anon_sym_from, STATE(7054), 1, sym_comment, - [210917] = 4, + [211034] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10921), 1, + ACTIONS(10923), 1, sym_identifier, STATE(7055), 1, sym_comment, - [210930] = 4, + [211047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10923), 1, + ACTIONS(10925), 1, anon_sym_EQ_GT, STATE(7056), 1, sym_comment, - [210943] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [211060] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10925), 1, - anon_sym_EQ_GT, - STATE(7057), 1, - sym_comment, - [210956] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(10927), 1, - anon_sym_EQ_GT, - STATE(7058), 1, + sym_identifier, + STATE(7057), 1, sym_comment, - [210969] = 4, + [211073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10929), 1, - anon_sym_EQ_GT, - STATE(7059), 1, + anon_sym_from, + STATE(7058), 1, sym_comment, - [210982] = 4, + [211086] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(10931), 1, - anon_sym_EQ, - STATE(7060), 1, + sym_identifier, + STATE(7059), 1, sym_comment, - [210995] = 4, + [211099] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10933), 1, sym_identifier, - STATE(7061), 1, + STATE(7060), 1, sym_comment, - [211008] = 4, + [211112] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(10935), 1, sym_identifier, - STATE(7062), 1, + STATE(7061), 1, sym_comment, - [211021] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211125] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10937), 1, - sym_identifier, - STATE(7063), 1, + anon_sym_EQ_GT, + STATE(7062), 1, sym_comment, - [211034] = 4, - ACTIONS(3), 1, + [211138] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(6299), 1, + anon_sym_in, + STATE(7063), 1, + sym_comment, + [211151] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10939), 1, - sym_regex_pattern, + anon_sym_EQ_GT, STATE(7064), 1, sym_comment, - [211047] = 4, + [211164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5951), 1, - anon_sym_RPAREN, + ACTIONS(10941), 1, + anon_sym_EQ_GT, STATE(7065), 1, sym_comment, - [211060] = 4, + [211177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, - anon_sym_RBRACK, + ACTIONS(5991), 1, + anon_sym_COLON, STATE(7066), 1, sym_comment, - [211073] = 4, + [211190] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10941), 1, + ACTIONS(10943), 1, sym_identifier, STATE(7067), 1, sym_comment, - [211086] = 4, + [211203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10943), 1, - anon_sym_EQ, + ACTIONS(10945), 1, + anon_sym_EQ_GT, STATE(7068), 1, sym_comment, - [211099] = 4, + [211216] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10945), 1, - anon_sym_new, + ACTIONS(10947), 1, + sym_identifier, STATE(7069), 1, sym_comment, - [211112] = 4, + [211229] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10040), 1, - sym_identifier, + ACTIONS(10949), 1, + sym_regex_pattern, STATE(7070), 1, sym_comment, - [211125] = 4, + [211242] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10947), 1, - anon_sym_class, + ACTIONS(5916), 1, + anon_sym_RBRACK, STATE(7071), 1, sym_comment, - [211138] = 4, + [211255] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5953), 1, - anon_sym_RPAREN, + ACTIONS(9682), 1, + anon_sym_RBRACK, STATE(7072), 1, sym_comment, - [211151] = 4, + [211268] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10949), 1, - anon_sym_EQ, + ACTIONS(5993), 1, + anon_sym_RPAREN, STATE(7073), 1, sym_comment, - [211164] = 4, + [211281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -380625,1222 +380745,1222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(7074), 1, sym_comment, - [211177] = 4, + [211294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10953), 1, - anon_sym_EQ_GT, + anon_sym_new, STATE(7075), 1, sym_comment, - [211190] = 4, + [211307] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10955), 1, + ACTIONS(10034), 1, sym_identifier, STATE(7076), 1, sym_comment, - [211203] = 4, + [211320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10957), 1, - anon_sym_EQ, + ACTIONS(10955), 1, + anon_sym_class, STATE(7077), 1, sym_comment, - [211216] = 4, + [211333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10959), 1, - anon_sym_EQ_GT, + ACTIONS(5995), 1, + anon_sym_RPAREN, STATE(7078), 1, sym_comment, - [211229] = 4, + [211346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10961), 1, + ACTIONS(10957), 1, anon_sym_EQ_GT, STATE(7079), 1, sym_comment, - [211242] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211359] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10963), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10959), 1, + anon_sym_EQ, STATE(7080), 1, sym_comment, - [211255] = 4, + [211372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10965), 1, - anon_sym_EQ_GT, + ACTIONS(5997), 1, + anon_sym_RPAREN, STATE(7081), 1, sym_comment, - [211268] = 4, + [211385] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10967), 1, + ACTIONS(10961), 1, sym_identifier, STATE(7082), 1, sym_comment, - [211281] = 4, + [211398] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5955), 1, - anon_sym_RBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, STATE(7083), 1, sym_comment, - [211294] = 4, + [211411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9673), 1, - anon_sym_RBRACK, + ACTIONS(10965), 1, + anon_sym_EQ, STATE(7084), 1, sym_comment, - [211307] = 4, + [211424] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10969), 1, - anon_sym_RBRACK, + ACTIONS(10967), 1, + sym_identifier, STATE(7085), 1, sym_comment, - [211320] = 4, + [211437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10971), 1, + ACTIONS(10969), 1, anon_sym_EQ_GT, STATE(7086), 1, sym_comment, - [211333] = 4, + [211450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10973), 1, + ACTIONS(10971), 1, anon_sym_EQ_GT, STATE(7087), 1, sym_comment, - [211346] = 4, + [211463] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10975), 1, + ACTIONS(10973), 1, sym_identifier, STATE(7088), 1, sym_comment, - [211359] = 4, + [211476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10977), 1, - anon_sym_EQ, + ACTIONS(5920), 1, + anon_sym_RBRACE, STATE(7089), 1, sym_comment, - [211372] = 4, + [211489] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10979), 1, + ACTIONS(10975), 1, anon_sym_EQ_GT, STATE(7090), 1, sym_comment, - [211385] = 4, + [211502] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6672), 1, - anon_sym_in, + ACTIONS(10977), 1, + anon_sym_EQ_GT, STATE(7091), 1, sym_comment, - [211398] = 4, + [211515] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10981), 1, + ACTIONS(10979), 1, sym_identifier, STATE(7092), 1, sym_comment, - [211411] = 4, + [211528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5193), 1, - anon_sym_RPAREN, + ACTIONS(10981), 1, + anon_sym_EQ_GT, STATE(7093), 1, sym_comment, - [211424] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211541] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10983), 1, - sym_identifier, + anon_sym_EQ, STATE(7094), 1, sym_comment, - [211437] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211554] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(10985), 1, - sym_identifier, + anon_sym_EQ_GT, STATE(7095), 1, sym_comment, - [211450] = 4, + [211567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(10987), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, STATE(7096), 1, sym_comment, - [211463] = 4, + [211580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10989), 1, - anon_sym_EQ_GT, + ACTIONS(6689), 1, + anon_sym_in, STATE(7097), 1, sym_comment, - [211476] = 4, + [211593] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10991), 1, - anon_sym_RBRACK, + ACTIONS(10989), 1, + sym_identifier, STATE(7098), 1, sym_comment, - [211489] = 4, + [211606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10993), 1, - anon_sym_COLON, + ACTIONS(10991), 1, + anon_sym_RBRACK, STATE(7099), 1, sym_comment, - [211502] = 4, + [211619] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10995), 1, - anon_sym_RPAREN, + ACTIONS(10993), 1, + anon_sym_EQ, STATE(7100), 1, sym_comment, - [211515] = 4, + [211632] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10997), 1, - anon_sym_RBRACK, + ACTIONS(10995), 1, + sym_identifier, STATE(7101), 1, sym_comment, - [211528] = 4, + [211645] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10999), 1, - anon_sym_RBRACK, + ACTIONS(10997), 1, + sym_identifier, STATE(7102), 1, sym_comment, - [211541] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211658] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11001), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5221), 1, + anon_sym_RPAREN, STATE(7103), 1, sym_comment, - [211554] = 4, + [211671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11003), 1, + ACTIONS(10999), 1, anon_sym_RBRACK, STATE(7104), 1, sym_comment, - [211567] = 4, + [211684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11005), 1, - anon_sym_RBRACK, + ACTIONS(11001), 1, + anon_sym_COLON, STATE(7105), 1, sym_comment, - [211580] = 4, + [211697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11007), 1, + ACTIONS(11003), 1, anon_sym_RBRACK, STATE(7106), 1, sym_comment, - [211593] = 4, + [211710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11009), 1, - anon_sym_EQ_GT, + ACTIONS(11005), 1, + anon_sym_RBRACK, STATE(7107), 1, sym_comment, - [211606] = 4, + [211723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11011), 1, + ACTIONS(11007), 1, anon_sym_RBRACK, STATE(7108), 1, sym_comment, - [211619] = 4, + [211736] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11013), 1, - anon_sym_RBRACK, + ACTIONS(11009), 1, + sym_identifier, STATE(7109), 1, sym_comment, - [211632] = 4, + [211749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11015), 1, + ACTIONS(11011), 1, anon_sym_RBRACK, STATE(7110), 1, sym_comment, - [211645] = 4, + [211762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, + ACTIONS(11013), 1, anon_sym_RBRACK, STATE(7111), 1, sym_comment, - [211658] = 4, + [211775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11017), 1, - anon_sym_EQ_GT, + ACTIONS(11015), 1, + anon_sym_RBRACK, STATE(7112), 1, sym_comment, - [211671] = 4, + [211788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11019), 1, + ACTIONS(11017), 1, anon_sym_EQ_GT, STATE(7113), 1, sym_comment, - [211684] = 4, + [211801] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11021), 1, - anon_sym_EQ_GT, + ACTIONS(11019), 1, + sym_identifier, STATE(7114), 1, sym_comment, - [211697] = 4, + [211814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11023), 1, - anon_sym_EQ, + ACTIONS(11021), 1, + anon_sym_RBRACK, STATE(7115), 1, sym_comment, - [211710] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211827] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11025), 1, - anon_sym_SLASH2, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11023), 1, + anon_sym_RBRACK, STATE(7116), 1, sym_comment, - [211723] = 4, + [211840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11027), 1, + ACTIONS(9634), 1, anon_sym_RBRACK, STATE(7117), 1, sym_comment, - [211736] = 4, + [211853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11029), 1, - anon_sym_new, + ACTIONS(11025), 1, + anon_sym_EQ_GT, STATE(7118), 1, sym_comment, - [211749] = 4, + [211866] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11031), 1, - anon_sym_RPAREN, + ACTIONS(11027), 1, + anon_sym_EQ_GT, STATE(7119), 1, sym_comment, - [211762] = 4, + [211879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6041), 1, - anon_sym_RPAREN, + ACTIONS(11029), 1, + anon_sym_EQ_GT, STATE(7120), 1, sym_comment, - [211775] = 4, + [211892] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3209), 1, - anon_sym_LBRACE, + ACTIONS(11031), 1, + anon_sym_EQ_GT, STATE(7121), 1, sym_comment, - [211788] = 4, + [211905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11033), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, STATE(7122), 1, sym_comment, - [211801] = 4, + [211918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11035), 1, - anon_sym_COLON, + anon_sym_RBRACK, STATE(7123), 1, sym_comment, - [211814] = 4, + [211931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11037), 1, - anon_sym_RBRACK, + anon_sym_new, STATE(7124), 1, sym_comment, - [211827] = 4, + [211944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11039), 1, - anon_sym_LBRACE, + anon_sym_from, STATE(7125), 1, sym_comment, - [211840] = 4, + [211957] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11041), 1, - anon_sym_symbol, + anon_sym_RPAREN, STATE(7126), 1, sym_comment, - [211853] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211970] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11043), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5999), 1, + anon_sym_RPAREN, STATE(7127), 1, sym_comment, - [211866] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [211983] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11045), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11043), 1, + anon_sym_RPAREN, STATE(7128), 1, sym_comment, - [211879] = 4, + [211996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11047), 1, - anon_sym_symbol, + ACTIONS(3165), 1, + anon_sym_LBRACE, STATE(7129), 1, sym_comment, - [211892] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212009] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11049), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11045), 1, + anon_sym_COLON, STATE(7130), 1, sym_comment, - [211905] = 4, + [212022] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11051), 1, - anon_sym_readonly, + ACTIONS(11047), 1, + anon_sym_LBRACE, STATE(7131), 1, sym_comment, - [211918] = 4, + [212035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3215), 1, - anon_sym_LBRACE, + ACTIONS(11049), 1, + anon_sym_RBRACK, STATE(7132), 1, sym_comment, - [211931] = 4, + [212048] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11053), 1, - sym_identifier, + ACTIONS(11051), 1, + anon_sym_SLASH2, STATE(7133), 1, sym_comment, - [211944] = 4, + [212061] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11055), 1, - anon_sym_EQ_GT, + ACTIONS(11053), 1, + sym_identifier, STATE(7134), 1, sym_comment, - [211957] = 4, + [212074] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11057), 1, + ACTIONS(11055), 1, sym_identifier, STATE(7135), 1, sym_comment, - [211970] = 4, + [212087] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11059), 1, - anon_sym_RPAREN, + ACTIONS(11057), 1, + anon_sym_symbol, STATE(7136), 1, sym_comment, - [211983] = 4, + [212100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11061), 1, - sym_number, + ACTIONS(11059), 1, + anon_sym_readonly, STATE(7137), 1, sym_comment, - [211996] = 4, + [212113] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11063), 1, - anon_sym_SLASH2, + ACTIONS(11061), 1, + sym_identifier, STATE(7138), 1, sym_comment, - [212009] = 4, + [212126] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11065), 1, - anon_sym_EQ, + ACTIONS(11063), 1, + sym_number, STATE(7139), 1, sym_comment, - [212022] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212139] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11067), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11065), 1, + anon_sym_EQ_GT, STATE(7140), 1, sym_comment, - [212035] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212152] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11069), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11067), 1, + anon_sym_RPAREN, STATE(7141), 1, sym_comment, - [212048] = 4, + [212165] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11071), 1, - anon_sym_EQ_GT, + ACTIONS(11069), 1, + sym_number, STATE(7142), 1, sym_comment, - [212061] = 4, + [212178] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11073), 1, - anon_sym_EQ_GT, + ACTIONS(11071), 1, + sym_identifier, STATE(7143), 1, sym_comment, - [212074] = 4, + [212191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11075), 1, - anon_sym_EQ_GT, + ACTIONS(11073), 1, + anon_sym_symbol, STATE(7144), 1, sym_comment, - [212087] = 4, + [212204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11077), 1, + ACTIONS(11075), 1, anon_sym_EQ_GT, STATE(7145), 1, sym_comment, - [212100] = 4, + [212217] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11079), 1, - anon_sym_EQ_GT, + ACTIONS(11077), 1, + anon_sym_SLASH2, STATE(7146), 1, sym_comment, - [212113] = 4, + [212230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11081), 1, - anon_sym_EQ_GT, + ACTIONS(11079), 1, + anon_sym_EQ, STATE(7147), 1, sym_comment, - [212126] = 4, + [212243] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11083), 1, + ACTIONS(11081), 1, sym_identifier, STATE(7148), 1, sym_comment, - [212139] = 4, + [212256] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11085), 1, + ACTIONS(11083), 1, anon_sym_EQ_GT, STATE(7149), 1, sym_comment, - [212152] = 4, + [212269] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11087), 1, - anon_sym_EQ_GT, + ACTIONS(11085), 1, + sym_identifier, STATE(7150), 1, sym_comment, - [212165] = 4, + [212282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11089), 1, - anon_sym_RPAREN, + ACTIONS(11087), 1, + anon_sym_symbol, STATE(7151), 1, sym_comment, - [212178] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212295] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11091), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11089), 1, + anon_sym_symbol, STATE(7152), 1, sym_comment, - [212191] = 4, + [212308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11093), 1, - anon_sym_symbol, + ACTIONS(11091), 1, + anon_sym_EQ_GT, STATE(7153), 1, sym_comment, - [212204] = 4, + [212321] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11095), 1, - anon_sym_RPAREN, + ACTIONS(11093), 1, + sym_identifier, STATE(7154), 1, sym_comment, - [212217] = 4, + [212334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11097), 1, - sym_number, + ACTIONS(11095), 1, + anon_sym_EQ_GT, STATE(7155), 1, sym_comment, - [212230] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212347] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11099), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11097), 1, + anon_sym_EQ_GT, STATE(7156), 1, sym_comment, - [212243] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212360] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11101), 1, - anon_sym_SLASH2, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11099), 1, + anon_sym_RPAREN, STATE(7157), 1, sym_comment, - [212256] = 4, + [212373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11103), 1, - anon_sym_EQ, + ACTIONS(11101), 1, + sym_number, STATE(7158), 1, sym_comment, - [212269] = 4, + [212386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11105), 1, + ACTIONS(11103), 1, sym_number, STATE(7159), 1, sym_comment, - [212282] = 4, + [212399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11107), 1, - anon_sym_from, + ACTIONS(11105), 1, + anon_sym_EQ_GT, STATE(7160), 1, sym_comment, - [212295] = 4, + [212412] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5511), 1, - anon_sym_in, + ACTIONS(3207), 1, + anon_sym_LBRACE, STATE(7161), 1, sym_comment, - [212308] = 4, + [212425] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11109), 1, - anon_sym_EQ_GT, + ACTIONS(11107), 1, + sym_identifier, STATE(7162), 1, sym_comment, - [212321] = 4, + [212438] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11111), 1, - anon_sym_COLON, + ACTIONS(11109), 1, + anon_sym_SLASH2, STATE(7163), 1, sym_comment, - [212334] = 4, + [212451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11113), 1, + ACTIONS(11111), 1, anon_sym_EQ, STATE(7164), 1, sym_comment, - [212347] = 4, + [212464] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11115), 1, - anon_sym_EQ_GT, + ACTIONS(11113), 1, + anon_sym_SLASH2, STATE(7165), 1, sym_comment, - [212360] = 4, + [212477] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11117), 1, + ACTIONS(11115), 1, anon_sym_EQ_GT, STATE(7166), 1, sym_comment, - [212373] = 4, + [212490] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11119), 1, - anon_sym_EQ_GT, + ACTIONS(5499), 1, + anon_sym_in, STATE(7167), 1, sym_comment, - [212386] = 4, + [212503] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11121), 1, - anon_sym_RBRACK, + ACTIONS(11117), 1, + anon_sym_EQ_GT, STATE(7168), 1, sym_comment, - [212399] = 4, + [212516] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5934), 1, - anon_sym_RBRACK, + ACTIONS(11119), 1, + anon_sym_COLON, STATE(7169), 1, sym_comment, - [212412] = 4, + [212529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11123), 1, + ACTIONS(11121), 1, anon_sym_EQ, STATE(7170), 1, sym_comment, - [212425] = 4, + [212542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7565), 1, - anon_sym_is, + ACTIONS(11123), 1, + anon_sym_EQ_GT, STATE(7171), 1, sym_comment, - [212438] = 4, + [212555] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11125), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, STATE(7172), 1, sym_comment, - [212451] = 4, + [212568] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11127), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, STATE(7173), 1, sym_comment, - [212464] = 4, + [212581] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11129), 1, + sym_identifier, + STATE(7174), 1, + sym_comment, + [212594] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5294), 1, + ACTIONS(11131), 1, anon_sym_RPAREN, - STATE(7174), 1, + STATE(7175), 1, sym_comment, - [212477] = 4, + [212607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11129), 1, + ACTIONS(11133), 1, anon_sym_EQ, - STATE(7175), 1, + STATE(7176), 1, sym_comment, - [212490] = 4, + [212620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11131), 1, + ACTIONS(5888), 1, anon_sym_RBRACK, - STATE(7176), 1, + STATE(7177), 1, sym_comment, - [212503] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212633] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11133), 1, - sym_identifier, - STATE(7177), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7507), 1, + anon_sym_is, + STATE(7178), 1, sym_comment, - [212516] = 4, + [212646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11135), 1, - anon_sym_as, - STATE(7178), 1, + anon_sym_RBRACK, + STATE(7179), 1, sym_comment, - [212529] = 4, + [212659] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11137), 1, - anon_sym_SLASH2, - STATE(7179), 1, + sym_identifier, + STATE(7180), 1, sym_comment, - [212542] = 4, + [212672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11139), 1, - anon_sym_from, - STATE(7180), 1, + anon_sym_EQ, + STATE(7181), 1, sym_comment, - [212555] = 4, + [212685] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11141), 1, sym_identifier, - STATE(7181), 1, + STATE(7182), 1, sym_comment, - [212568] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212698] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11143), 1, - sym_identifier, - STATE(7182), 1, + anon_sym_RBRACK, + STATE(7183), 1, sym_comment, - [212581] = 4, + [212711] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11145), 1, - anon_sym_target, - STATE(7183), 1, + anon_sym_as, + STATE(7184), 1, sym_comment, - [212594] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212724] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11147), 1, - sym_identifier, - STATE(7184), 1, + anon_sym_RBRACK, + STATE(7185), 1, sym_comment, - [212607] = 4, + [212737] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11149), 1, - anon_sym_EQ, - STATE(7185), 1, + anon_sym_from, + STATE(7186), 1, sym_comment, - [212620] = 4, + [212750] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11151), 1, anon_sym_RBRACK, - STATE(7186), 1, + STATE(7187), 1, sym_comment, - [212633] = 4, + [212763] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11153), 1, sym_identifier, - STATE(7187), 1, + STATE(7188), 1, sym_comment, - [212646] = 4, + [212776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11155), 1, - anon_sym_RBRACK, - STATE(7188), 1, + anon_sym_target, + STATE(7189), 1, sym_comment, - [212659] = 4, + [212789] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11157), 1, - anon_sym_EQ_GT, - STATE(7189), 1, + anon_sym_RBRACK, + STATE(7190), 1, sym_comment, - [212672] = 4, + [212802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11159), 1, - anon_sym_EQ_GT, - STATE(7190), 1, + anon_sym_RBRACK, + STATE(7191), 1, sym_comment, - [212685] = 4, + [212815] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11161), 1, - anon_sym_RBRACK, - STATE(7191), 1, + anon_sym_EQ_GT, + STATE(7192), 1, sym_comment, - [212698] = 4, + [212828] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11163), 1, - anon_sym_RBRACK, - STATE(7192), 1, + sym_identifier, + STATE(7193), 1, sym_comment, - [212711] = 4, + [212841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11165), 1, anon_sym_EQ_GT, - STATE(7193), 1, + STATE(7194), 1, sym_comment, - [212724] = 4, + [212854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11167), 1, - anon_sym_RBRACK, - STATE(7194), 1, + anon_sym_EQ_GT, + STATE(7195), 1, sym_comment, - [212737] = 4, + [212867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11169), 1, - anon_sym_RBRACK, - STATE(7195), 1, + anon_sym_EQ_GT, + STATE(7196), 1, sym_comment, - [212750] = 4, + [212880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11171), 1, anon_sym_RBRACK, - STATE(7196), 1, - sym_comment, - [212763] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11173), 1, - sym_identifier, STATE(7197), 1, sym_comment, - [212776] = 4, + [212893] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11175), 1, - anon_sym_DOT, + ACTIONS(11173), 1, + anon_sym_RBRACK, STATE(7198), 1, sym_comment, - [212789] = 4, + [212906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11177), 1, - anon_sym_EQ, + ACTIONS(11175), 1, + anon_sym_RBRACK, STATE(7199), 1, sym_comment, - [212802] = 4, + [212919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5930), 1, - anon_sym_RPAREN, + ACTIONS(11177), 1, + anon_sym_RBRACK, STATE(7200), 1, sym_comment, - [212815] = 4, + [212932] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10016), 1, + ACTIONS(11179), 1, anon_sym_RBRACK, STATE(7201), 1, sym_comment, - [212828] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11179), 1, - anon_sym_EQ_GT, - STATE(7202), 1, - sym_comment, - [212841] = 4, + [212945] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11181), 1, sym_identifier, - STATE(7203), 1, + STATE(7202), 1, sym_comment, - [212854] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212958] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11183), 1, - sym_identifier, - STATE(7204), 1, + anon_sym_DOT, + STATE(7203), 1, sym_comment, - [212867] = 4, + [212971] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11185), 1, - anon_sym_RPAREN, - STATE(7205), 1, + anon_sym_while, + STATE(7204), 1, sym_comment, - [212880] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212984] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11187), 1, - sym_identifier, - STATE(7206), 1, + anon_sym_EQ, + STATE(7205), 1, sym_comment, - [212893] = 4, + [212997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11189), 1, anon_sym_RPAREN, - STATE(7207), 1, + STATE(7206), 1, sym_comment, - [212906] = 4, + [213010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5286), 1, + anon_sym_RPAREN, + STATE(7207), 1, + sym_comment, + [213023] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(11191), 1, - anon_sym_while, + sym_identifier, STATE(7208), 1, sym_comment, - [212919] = 4, + [213036] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11193), 1, - anon_sym_RPAREN, + sym_identifier, STATE(7209), 1, sym_comment, - [212932] = 4, + [213049] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -381849,52 +381969,52 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(7210), 1, sym_comment, - [212945] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213062] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11197), 1, - sym_identifier, + anon_sym_RPAREN, STATE(7211), 1, sym_comment, - [212958] = 4, + [213075] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11199), 1, - anon_sym_EQ, + sym_identifier, STATE(7212), 1, sym_comment, - [212971] = 4, + [213088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8640), 1, - anon_sym_EQ, + ACTIONS(11201), 1, + anon_sym_RPAREN, STATE(7213), 1, sym_comment, - [212984] = 4, + [213101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11201), 1, + ACTIONS(5884), 1, anon_sym_RPAREN, STATE(7214), 1, sym_comment, - [212997] = 4, + [213114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11203), 1, - sym_number, + anon_sym_RPAREN, STATE(7215), 1, sym_comment, - [213010] = 4, + [213127] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -381903,1889 +382023,1943 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(7216), 1, sym_comment, - [213023] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213140] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11207), 1, - sym_identifier, + anon_sym_EQ, STATE(7217), 1, sym_comment, - [213036] = 4, + [213153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9560), 1, - anon_sym_RBRACE, + ACTIONS(11209), 1, + anon_sym_EQ, STATE(7218), 1, sym_comment, - [213049] = 4, + [213166] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5203), 1, - anon_sym_RPAREN, + ACTIONS(8650), 1, + anon_sym_EQ, STATE(7219), 1, sym_comment, - [213062] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213179] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11209), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5179), 1, + anon_sym_RPAREN, STATE(7220), 1, sym_comment, - [213075] = 4, + [213192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11211), 1, + ACTIONS(10026), 1, anon_sym_RBRACK, STATE(7221), 1, sym_comment, - [213088] = 4, + [213205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5221), 1, - anon_sym_RPAREN, + ACTIONS(11211), 1, + anon_sym_EQ_GT, STATE(7222), 1, sym_comment, - [213101] = 4, + [213218] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11213), 1, - anon_sym_RBRACK, + sym_identifier, STATE(7223), 1, sym_comment, - [213114] = 4, + [213231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11215), 1, - anon_sym_RBRACK, + ACTIONS(9568), 1, + anon_sym_RBRACE, STATE(7224), 1, sym_comment, - [213127] = 4, + [213244] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11217), 1, + ACTIONS(11215), 1, sym_identifier, STATE(7225), 1, sym_comment, - [213140] = 4, + [213257] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11219), 1, - anon_sym_class, + ACTIONS(11217), 1, + sym_identifier, STATE(7226), 1, sym_comment, - [213153] = 4, + [213270] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11221), 1, - anon_sym_EQ_GT, + ACTIONS(11219), 1, + sym_identifier, STATE(7227), 1, sym_comment, - [213166] = 4, + [213283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11223), 1, - anon_sym_RBRACK, + ACTIONS(5223), 1, + anon_sym_RPAREN, STATE(7228), 1, sym_comment, - [213179] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213296] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11225), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11221), 1, + anon_sym_EQ_GT, STATE(7229), 1, sym_comment, - [213192] = 4, + [213309] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11227), 1, + ACTIONS(11223), 1, sym_identifier, STATE(7230), 1, sym_comment, - [213205] = 4, + [213322] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11229), 1, - sym_regex_pattern, + ACTIONS(11225), 1, + sym_identifier, STATE(7231), 1, sym_comment, - [213218] = 4, + [213335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11231), 1, - anon_sym_RBRACK, + ACTIONS(11227), 1, + anon_sym_class, STATE(7232), 1, sym_comment, - [213231] = 4, + [213348] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11233), 1, - anon_sym_RBRACK, + ACTIONS(11229), 1, + sym_regex_pattern, STATE(7233), 1, sym_comment, - [213244] = 4, + [213361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11235), 1, - anon_sym_EQ, + ACTIONS(11231), 1, + anon_sym_RBRACK, STATE(7234), 1, sym_comment, - [213257] = 4, + [213374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11237), 1, + ACTIONS(11233), 1, anon_sym_RBRACK, STATE(7235), 1, sym_comment, - [213270] = 4, + [213387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11239), 1, + ACTIONS(11235), 1, anon_sym_RBRACK, STATE(7236), 1, sym_comment, - [213283] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213400] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11241), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11237), 1, + anon_sym_EQ, STATE(7237), 1, sym_comment, - [213296] = 4, + [213413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11243), 1, - anon_sym_RBRACK, + ACTIONS(11239), 1, + anon_sym_EQ_GT, STATE(7238), 1, sym_comment, - [213309] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213426] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9397), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11241), 1, + anon_sym_RBRACK, STATE(7239), 1, sym_comment, - [213322] = 4, + [213439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11245), 1, - anon_sym_EQ_GT, + ACTIONS(11243), 1, + anon_sym_RBRACK, STATE(7240), 1, sym_comment, - [213335] = 4, + [213452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11247), 1, - anon_sym_EQ_GT, + ACTIONS(11245), 1, + anon_sym_RBRACK, STATE(7241), 1, sym_comment, - [213348] = 4, + [213465] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5559), 1, - anon_sym_in, + ACTIONS(11247), 1, + anon_sym_RBRACK, STATE(7242), 1, sym_comment, - [213361] = 4, + [213478] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11249), 1, - anon_sym_EQ_GT, + sym_identifier, STATE(7243), 1, sym_comment, - [213374] = 4, + [213491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11251), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, STATE(7244), 1, sym_comment, - [213387] = 4, + [213504] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11253), 1, - anon_sym_EQ_GT, + ACTIONS(9403), 1, + sym_identifier, STATE(7245), 1, sym_comment, - [213400] = 4, + [213517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11255), 1, - anon_sym_DOT, + ACTIONS(5580), 1, + anon_sym_in, STATE(7246), 1, sym_comment, - [213413] = 4, + [213530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4967), 1, - anon_sym_is, + ACTIONS(11253), 1, + anon_sym_EQ_GT, STATE(7247), 1, sym_comment, - [213426] = 4, + [213543] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11257), 1, - anon_sym_symbol, + ACTIONS(11255), 1, + anon_sym_EQ_GT, STATE(7248), 1, sym_comment, - [213439] = 4, + [213556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6471), 1, - anon_sym_in, + ACTIONS(11257), 1, + anon_sym_RBRACK, STATE(7249), 1, sym_comment, - [213452] = 4, + [213569] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11259), 1, - anon_sym_EQ_GT, + ACTIONS(4981), 1, + anon_sym_is, STATE(7250), 1, sym_comment, - [213465] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213582] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11261), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11259), 1, + anon_sym_EQ_GT, STATE(7251), 1, sym_comment, - [213478] = 4, + [213595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11263), 1, - anon_sym_EQ_GT, + ACTIONS(11261), 1, + anon_sym_DOT, STATE(7252), 1, sym_comment, - [213491] = 4, + [213608] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11265), 1, + ACTIONS(11263), 1, anon_sym_EQ_GT, STATE(7253), 1, sym_comment, - [213504] = 4, + [213621] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11267), 1, - anon_sym_EQ_GT, + ACTIONS(11265), 1, + anon_sym_symbol, STATE(7254), 1, sym_comment, - [213517] = 4, + [213634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11269), 1, - anon_sym_new, + ACTIONS(6434), 1, + anon_sym_in, STATE(7255), 1, sym_comment, - [213530] = 4, + [213647] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5939), 1, - anon_sym_RPAREN, + ACTIONS(11267), 1, + anon_sym_EQ_GT, STATE(7256), 1, sym_comment, - [213543] = 4, + [213660] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11271), 1, - sym_number, + ACTIONS(11269), 1, + sym_identifier, STATE(7257), 1, sym_comment, - [213556] = 4, + [213673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11273), 1, - anon_sym_RBRACK, + ACTIONS(11271), 1, + anon_sym_EQ_GT, STATE(7258), 1, sym_comment, - [213569] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213686] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11275), 1, - anon_sym_SLASH2, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11273), 1, + anon_sym_EQ_GT, STATE(7259), 1, sym_comment, - [213582] = 4, + [213699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11277), 1, - anon_sym_EQ, + ACTIONS(11275), 1, + anon_sym_EQ_GT, STATE(7260), 1, sym_comment, - [213595] = 4, + [213712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11279), 1, - anon_sym_target, + ACTIONS(11277), 1, + anon_sym_new, STATE(7261), 1, sym_comment, - [213608] = 4, + [213725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11281), 1, - anon_sym_EQ, + ACTIONS(6024), 1, + anon_sym_RPAREN, STATE(7262), 1, sym_comment, - [213621] = 4, + [213738] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11283), 1, - anon_sym_RBRACK, + ACTIONS(11279), 1, + sym_number, STATE(7263), 1, sym_comment, - [213634] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213751] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11285), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11281), 1, + anon_sym_RBRACK, STATE(7264), 1, sym_comment, - [213647] = 4, + [213764] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11287), 1, - anon_sym_EQ_GT, + ACTIONS(11283), 1, + anon_sym_SLASH2, STATE(7265), 1, sym_comment, - [213660] = 4, + [213777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9298), 1, - anon_sym_EQ_GT, + ACTIONS(11285), 1, + anon_sym_EQ, STATE(7266), 1, sym_comment, - [213673] = 4, + [213790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9300), 1, - anon_sym_EQ_GT, + ACTIONS(11287), 1, + anon_sym_target, STATE(7267), 1, sym_comment, - [213686] = 4, + [213803] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9488), 1, - anon_sym_LBRACE, + ACTIONS(11289), 1, + anon_sym_EQ, STATE(7268), 1, sym_comment, - [213699] = 4, + [213816] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11289), 1, + ACTIONS(11291), 1, sym_identifier, STATE(7269), 1, sym_comment, - [213712] = 4, + [213829] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11291), 1, - anon_sym_RBRACK, + ACTIONS(11293), 1, + sym_identifier, STATE(7270), 1, sym_comment, - [213725] = 4, + [213842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11293), 1, - anon_sym_RBRACK, + ACTIONS(11295), 1, + anon_sym_EQ_GT, STATE(7271), 1, sym_comment, - [213738] = 4, + [213855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8119), 1, - anon_sym_EQ, + ACTIONS(9298), 1, + anon_sym_EQ_GT, STATE(7272), 1, sym_comment, - [213751] = 4, + [213868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11295), 1, + ACTIONS(9300), 1, anon_sym_EQ_GT, STATE(7273), 1, sym_comment, - [213764] = 4, + [213881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11297), 1, - anon_sym_EQ_GT, + ACTIONS(9490), 1, + anon_sym_LBRACE, STATE(7274), 1, sym_comment, - [213777] = 4, + [213894] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11299), 1, - anon_sym_EQ_GT, + ACTIONS(11297), 1, + anon_sym_RBRACK, STATE(7275), 1, sym_comment, - [213790] = 4, + [213907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11301), 1, - anon_sym_class, + ACTIONS(11299), 1, + anon_sym_RBRACK, STATE(7276), 1, sym_comment, - [213803] = 4, + [213920] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11303), 1, - anon_sym_namespace, + ACTIONS(11301), 1, + anon_sym_EQ_GT, STATE(7277), 1, sym_comment, - [213816] = 4, + [213933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11305), 1, - anon_sym_RBRACK, + ACTIONS(7949), 1, + anon_sym_EQ, STATE(7278), 1, sym_comment, - [213829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213946] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11307), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11303), 1, + anon_sym_EQ_GT, STATE(7279), 1, sym_comment, - [213842] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213959] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11309), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11305), 1, + anon_sym_EQ_GT, STATE(7280), 1, sym_comment, - [213855] = 4, + [213972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11311), 1, + ACTIONS(11307), 1, anon_sym_RBRACK, STATE(7281), 1, sym_comment, - [213868] = 4, + [213985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11313), 1, - anon_sym_RBRACK, + ACTIONS(11309), 1, + anon_sym_class, STATE(7282), 1, sym_comment, - [213881] = 4, + [213998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7438), 1, - anon_sym_is, + ACTIONS(11311), 1, + anon_sym_namespace, STATE(7283), 1, sym_comment, - [213894] = 4, + [214011] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11315), 1, - anon_sym_RBRACK, + ACTIONS(11313), 1, + sym_identifier, STATE(7284), 1, sym_comment, - [213907] = 4, + [214024] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5105), 1, - anon_sym_in, + ACTIONS(11315), 1, + sym_identifier, STATE(7285), 1, sym_comment, - [213920] = 4, + [214037] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11317), 1, - anon_sym_new, + anon_sym_RBRACK, STATE(7286), 1, sym_comment, - [213933] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214050] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9913), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11319), 1, + anon_sym_RBRACK, STATE(7287), 1, sym_comment, - [213946] = 4, + [214063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11319), 1, - anon_sym_class, + ACTIONS(11321), 1, + anon_sym_RBRACK, STATE(7288), 1, sym_comment, - [213959] = 4, + [214076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11321), 1, + ACTIONS(11323), 1, anon_sym_RBRACK, STATE(7289), 1, sym_comment, - [213972] = 4, + [214089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11323), 1, + ACTIONS(11325), 1, anon_sym_RBRACK, STATE(7290), 1, sym_comment, - [213985] = 4, + [214102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11325), 1, - anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_in, STATE(7291), 1, sym_comment, - [213998] = 4, + [214115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11327), 1, - anon_sym_RBRACK, + anon_sym_new, STATE(7292), 1, sym_comment, - [214011] = 4, + [214128] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11329), 1, + ACTIONS(9917), 1, sym_identifier, STATE(7293), 1, sym_comment, - [214024] = 4, + [214141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11331), 1, - anon_sym_EQ, + ACTIONS(11329), 1, + anon_sym_class, STATE(7294), 1, sym_comment, - [214037] = 4, + [214154] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11333), 1, - anon_sym_RBRACK, + ACTIONS(11331), 1, + sym_identifier, STATE(7295), 1, sym_comment, - [214050] = 4, + [214167] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11335), 1, + ACTIONS(11333), 1, sym_identifier, STATE(7296), 1, sym_comment, - [214063] = 4, + [214180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11337), 1, - anon_sym_RBRACK, + ACTIONS(11335), 1, + anon_sym_EQ, STATE(7297), 1, sym_comment, - [214076] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214193] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11339), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11337), 1, + anon_sym_RBRACK, STATE(7298), 1, sym_comment, - [214089] = 4, + [214206] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11341), 1, + ACTIONS(11339), 1, sym_identifier, STATE(7299), 1, sym_comment, - [214102] = 4, + [214219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11343), 1, - anon_sym_COLON, + ACTIONS(11341), 1, + anon_sym_EQ, STATE(7300), 1, sym_comment, - [214115] = 4, + [214232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11345), 1, + ACTIONS(11343), 1, anon_sym_RBRACK, STATE(7301), 1, sym_comment, - [214128] = 4, + [214245] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11347), 1, - anon_sym_while, + ACTIONS(11345), 1, + sym_identifier, STATE(7302), 1, sym_comment, - [214141] = 4, + [214258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11349), 1, + ACTIONS(11347), 1, anon_sym_RBRACK, STATE(7303), 1, sym_comment, - [214154] = 4, + [214271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11351), 1, - anon_sym_RBRACK, + ACTIONS(7450), 1, + anon_sym_is, STATE(7304), 1, sym_comment, - [214167] = 4, + [214284] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5407), 1, - anon_sym_RPAREN, + ACTIONS(11349), 1, + anon_sym_RBRACK, STATE(7305), 1, sym_comment, - [214180] = 4, + [214297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11353), 1, - anon_sym_RBRACK, + ACTIONS(11351), 1, + anon_sym_COLON, STATE(7306), 1, sym_comment, - [214193] = 4, + [214310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11355), 1, + ACTIONS(11353), 1, anon_sym_RBRACK, STATE(7307), 1, sym_comment, - [214206] = 4, + [214323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11357), 1, - anon_sym_RBRACK, + ACTIONS(11355), 1, + anon_sym_while, STATE(7308), 1, sym_comment, - [214219] = 4, + [214336] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11359), 1, - anon_sym_EQ, + ACTIONS(11357), 1, + anon_sym_RBRACK, STATE(7309), 1, sym_comment, - [214232] = 4, + [214349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11361), 1, + ACTIONS(11359), 1, anon_sym_RBRACK, STATE(7310), 1, sym_comment, - [214245] = 4, + [214362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11363), 1, - anon_sym_EQ_GT, + ACTIONS(5288), 1, + anon_sym_RPAREN, STATE(7311), 1, sym_comment, - [214258] = 4, + [214375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11365), 1, - anon_sym_class, + ACTIONS(11361), 1, + anon_sym_RBRACK, STATE(7312), 1, sym_comment, - [214271] = 4, + [214388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11367), 1, - anon_sym_namespace, + ACTIONS(11363), 1, + anon_sym_RBRACK, STATE(7313), 1, sym_comment, - [214284] = 4, + [214401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11369), 1, - anon_sym_RPAREN, + ACTIONS(11365), 1, + anon_sym_RBRACK, STATE(7314), 1, sym_comment, - [214297] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214414] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11371), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11367), 1, + anon_sym_EQ, STATE(7315), 1, sym_comment, - [214310] = 4, + [214427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11373), 1, + ACTIONS(11369), 1, anon_sym_RBRACK, STATE(7316), 1, sym_comment, - [214323] = 4, + [214440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11375), 1, + ACTIONS(11371), 1, anon_sym_RBRACK, STATE(7317), 1, sym_comment, - [214336] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214453] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11377), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11373), 1, + anon_sym_class, STATE(7318), 1, sym_comment, - [214349] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214466] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11379), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11375), 1, + anon_sym_namespace, STATE(7319), 1, sym_comment, - [214362] = 4, + [214479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11381), 1, + ACTIONS(11377), 1, anon_sym_RBRACK, STATE(7320), 1, sym_comment, - [214375] = 4, + [214492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11383), 1, - anon_sym_new, + ACTIONS(11379), 1, + anon_sym_RBRACK, STATE(7321), 1, sym_comment, - [214388] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214505] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9823), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11381), 1, + anon_sym_RBRACK, STATE(7322), 1, sym_comment, - [214401] = 4, + [214518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11385), 1, - anon_sym_class, + ACTIONS(11383), 1, + anon_sym_RBRACK, STATE(7323), 1, sym_comment, - [214414] = 4, + [214531] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5358), 1, - anon_sym_RPAREN, + ACTIONS(11385), 1, + sym_identifier, STATE(7324), 1, sym_comment, - [214427] = 4, + [214544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11387), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, STATE(7325), 1, sym_comment, - [214440] = 4, + [214557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11389), 1, - anon_sym_EQ, + anon_sym_RBRACK, STATE(7326), 1, sym_comment, - [214453] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214570] = 4, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(11391), 1, - sym_identifier, + anon_sym_new, STATE(7327), 1, sym_comment, - [214466] = 4, + [214583] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11393), 1, + ACTIONS(9833), 1, sym_identifier, STATE(7328), 1, sym_comment, - [214479] = 4, + [214596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11395), 1, - anon_sym_EQ, + ACTIONS(11393), 1, + anon_sym_class, STATE(7329), 1, sym_comment, - [214492] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214609] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11397), 1, - sym_identifier, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11395), 1, + anon_sym_RPAREN, STATE(7330), 1, sym_comment, - [214505] = 4, + [214622] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11399), 1, + ACTIONS(11397), 1, sym_identifier, STATE(7331), 1, sym_comment, - [214518] = 4, + [214635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10265), 1, - anon_sym_from, + ACTIONS(11399), 1, + anon_sym_EQ, STATE(7332), 1, sym_comment, - [214531] = 4, + [214648] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11401), 1, - anon_sym_RBRACK, + sym_identifier, STATE(7333), 1, sym_comment, - [214544] = 4, + [214661] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, ACTIONS(11403), 1, - anon_sym_COLON, + sym_identifier, STATE(7334), 1, sym_comment, - [214557] = 4, + [214674] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11405), 1, - anon_sym_RBRACK, + anon_sym_EQ, STATE(7335), 1, sym_comment, - [214570] = 4, + [214687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11407), 1, - anon_sym_RBRACK, + ACTIONS(5351), 1, + anon_sym_RPAREN, STATE(7336), 1, sym_comment, - [214583] = 4, + [214700] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11409), 1, - anon_sym_as, + ACTIONS(11407), 1, + sym_identifier, STATE(7337), 1, sym_comment, - [214596] = 4, + [214713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11411), 1, - anon_sym_RBRACK, + ACTIONS(10273), 1, + anon_sym_from, STATE(7338), 1, sym_comment, - [214609] = 4, + [214726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11413), 1, - anon_sym_RBRACK, + ACTIONS(11409), 1, + anon_sym_RPAREN, STATE(7339), 1, sym_comment, - [214622] = 4, + [214739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11415), 1, - anon_sym_class, + ACTIONS(11411), 1, + anon_sym_COLON, STATE(7340), 1, sym_comment, - [214635] = 4, + [214752] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11417), 1, - anon_sym_namespace, + ACTIONS(11413), 1, + sym_identifier, STATE(7341), 1, sym_comment, - [214648] = 4, + [214765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5077), 1, - anon_sym_RPAREN, + ACTIONS(11415), 1, + anon_sym_RBRACK, STATE(7342), 1, sym_comment, - [214661] = 4, + [214778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11419), 1, - anon_sym_RBRACK, + ACTIONS(11417), 1, + anon_sym_as, STATE(7343), 1, sym_comment, - [214674] = 4, + [214791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11421), 1, + ACTIONS(11419), 1, anon_sym_RBRACK, STATE(7344), 1, sym_comment, - [214687] = 4, + [214804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11423), 1, + ACTIONS(11421), 1, anon_sym_RBRACK, STATE(7345), 1, sym_comment, - [214700] = 4, + [214817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11425), 1, - anon_sym_RBRACK, + ACTIONS(11423), 1, + anon_sym_class, STATE(7346), 1, sym_comment, - [214713] = 4, + [214830] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11425), 1, + anon_sym_namespace, + STATE(7347), 1, + sym_comment, + [214843] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(11427), 1, sym_identifier, - STATE(7347), 1, + STATE(7348), 1, sym_comment, - [214726] = 4, + [214856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11429), 1, anon_sym_RBRACK, - STATE(7348), 1, + STATE(7349), 1, sym_comment, - [214739] = 4, + [214869] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(11431), 1, + anon_sym_RBRACK, + STATE(7350), 1, + sym_comment, + [214882] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5255), 1, + anon_sym_RPAREN, + STATE(7351), 1, + sym_comment, + [214895] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11433), 1, + anon_sym_RBRACK, + STATE(7352), 1, + sym_comment, + [214908] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11435), 1, + sym_identifier, + STATE(7353), 1, + sym_comment, + [214921] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11437), 1, + anon_sym_RBRACK, + STATE(7354), 1, + sym_comment, + [214934] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11439), 1, anon_sym_new, - STATE(7349), 1, + STATE(7355), 1, sym_comment, - [214752] = 4, + [214947] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9781), 1, + ACTIONS(9785), 1, sym_identifier, - STATE(7350), 1, + STATE(7356), 1, sym_comment, - [214765] = 4, + [214960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11433), 1, + ACTIONS(11441), 1, anon_sym_class, - STATE(7351), 1, + STATE(7357), 1, sym_comment, - [214778] = 4, + [214973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11435), 1, + ACTIONS(11443), 1, anon_sym_EQ, - STATE(7352), 1, + STATE(7358), 1, sym_comment, - [214791] = 4, + [214986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11437), 1, + ACTIONS(11445), 1, anon_sym_RBRACK, - STATE(7353), 1, + STATE(7359), 1, sym_comment, - [214804] = 4, + [214999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11439), 1, + ACTIONS(11447), 1, anon_sym_EQ, - STATE(7354), 1, + STATE(7360), 1, sym_comment, - [214817] = 4, + [215012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11441), 1, + ACTIONS(11449), 1, anon_sym_RBRACK, - STATE(7355), 1, + STATE(7361), 1, sym_comment, - [214830] = 4, + [215025] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11443), 1, + ACTIONS(11451), 1, sym_identifier, - STATE(7356), 1, + STATE(7362), 1, sym_comment, - [214843] = 4, + [215038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11445), 1, + ACTIONS(11453), 1, anon_sym_EQ, - STATE(7357), 1, + STATE(7363), 1, sym_comment, - [214856] = 4, + [215051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11447), 1, + ACTIONS(11455), 1, anon_sym_RBRACK, - STATE(7358), 1, + STATE(7364), 1, sym_comment, - [214869] = 4, + [215064] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11449), 1, + ACTIONS(11457), 1, sym_identifier, - STATE(7359), 1, + STATE(7365), 1, sym_comment, - [214882] = 4, + [215077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11451), 1, - anon_sym_RBRACK, - STATE(7360), 1, + ACTIONS(11459), 1, + anon_sym_EQ_GT, + STATE(7366), 1, sym_comment, - [214895] = 4, + [215090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11453), 1, + ACTIONS(11461), 1, anon_sym_RBRACK, - STATE(7361), 1, + STATE(7367), 1, sym_comment, - [214908] = 4, + [215103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11455), 1, + ACTIONS(11463), 1, anon_sym_COLON, - STATE(7362), 1, + STATE(7368), 1, sym_comment, - [214921] = 4, + [215116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11457), 1, + ACTIONS(11465), 1, anon_sym_RBRACK, - STATE(7363), 1, + STATE(7369), 1, sym_comment, - [214934] = 4, + [215129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11459), 1, - anon_sym_EQ_GT, - STATE(7364), 1, + ACTIONS(11467), 1, + anon_sym_RBRACK, + STATE(7370), 1, sym_comment, - [214947] = 4, + [215142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11461), 1, + ACTIONS(11469), 1, anon_sym_class, - STATE(7365), 1, + STATE(7371), 1, sym_comment, - [214960] = 4, + [215155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11463), 1, + ACTIONS(11471), 1, anon_sym_namespace, - STATE(7366), 1, + STATE(7372), 1, sym_comment, - [214973] = 4, + [215168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11465), 1, + ACTIONS(11473), 1, anon_sym_RBRACK, - STATE(7367), 1, + STATE(7373), 1, sym_comment, - [214986] = 4, + [215181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11467), 1, + ACTIONS(11475), 1, anon_sym_RBRACK, - STATE(7368), 1, + STATE(7374), 1, sym_comment, - [214999] = 4, + [215194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11469), 1, + ACTIONS(11477), 1, anon_sym_RBRACK, - STATE(7369), 1, + STATE(7375), 1, sym_comment, - [215012] = 4, + [215207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11471), 1, + ACTIONS(11479), 1, anon_sym_RBRACK, - STATE(7370), 1, + STATE(7376), 1, sym_comment, - [215025] = 4, + [215220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11473), 1, - anon_sym_EQ, - STATE(7371), 1, + ACTIONS(11481), 1, + anon_sym_RBRACK, + STATE(7377), 1, sym_comment, - [215038] = 4, + [215233] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9724), 1, + ACTIONS(9732), 1, sym_identifier, - STATE(7372), 1, + STATE(7378), 1, sym_comment, - [215051] = 4, + [215246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11475), 1, + ACTIONS(11483), 1, anon_sym_class, - STATE(7373), 1, + STATE(7379), 1, sym_comment, - [215064] = 4, + [215259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11477), 1, + ACTIONS(11485), 1, anon_sym_function, - STATE(7374), 1, + STATE(7380), 1, sym_comment, - [215077] = 4, + [215272] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11479), 1, + ACTIONS(11487), 1, sym_identifier, - STATE(7375), 1, + STATE(7381), 1, sym_comment, - [215090] = 4, + [215285] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11481), 1, + ACTIONS(11489), 1, anon_sym_EQ, - STATE(7376), 1, + STATE(7382), 1, sym_comment, - [215103] = 4, + [215298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11483), 1, - anon_sym_EQ_GT, - STATE(7377), 1, + ACTIONS(11491), 1, + anon_sym_RBRACK, + STATE(7383), 1, sym_comment, - [215116] = 4, + [215311] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11485), 1, + ACTIONS(11493), 1, sym_identifier, - STATE(7378), 1, + STATE(7384), 1, sym_comment, - [215129] = 4, + [215324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11487), 1, + ACTIONS(11495), 1, anon_sym_EQ, - STATE(7379), 1, + STATE(7385), 1, sym_comment, - [215142] = 4, + [215337] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8165), 1, + ACTIONS(8236), 1, sym_identifier, - STATE(7380), 1, + STATE(7386), 1, sym_comment, - [215155] = 4, + [215350] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11489), 1, + ACTIONS(11497), 1, sym_identifier, - STATE(7381), 1, + STATE(7387), 1, sym_comment, - [215168] = 4, + [215363] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11491), 1, + ACTIONS(11499), 1, anon_sym_COLON, - STATE(7382), 1, + STATE(7388), 1, sym_comment, - [215181] = 4, + [215376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11493), 1, + ACTIONS(11501), 1, anon_sym_namespace, - STATE(7383), 1, + STATE(7389), 1, sym_comment, - [215194] = 4, + [215389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11495), 1, + ACTIONS(11503), 1, anon_sym_RBRACK, - STATE(7384), 1, + STATE(7390), 1, sym_comment, - [215207] = 4, + [215402] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11497), 1, + ACTIONS(11505), 1, anon_sym_RBRACK, - STATE(7385), 1, + STATE(7391), 1, sym_comment, - [215220] = 4, + [215415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5387), 1, - anon_sym_RPAREN, - STATE(7386), 1, + ACTIONS(11507), 1, + anon_sym_RBRACK, + STATE(7392), 1, sym_comment, - [215233] = 4, + [215428] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8541), 1, + ACTIONS(8529), 1, sym_identifier, - STATE(7387), 1, + STATE(7393), 1, sym_comment, - [215246] = 4, + [215441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11499), 1, + ACTIONS(11509), 1, anon_sym_function, - STATE(7388), 1, + STATE(7394), 1, sym_comment, - [215259] = 4, + [215454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11501), 1, + ACTIONS(11511), 1, anon_sym_RBRACK, - STATE(7389), 1, + STATE(7395), 1, sym_comment, - [215272] = 4, + [215467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5912), 1, - anon_sym_in, - STATE(7390), 1, + ACTIONS(11513), 1, + anon_sym_EQ, + STATE(7396), 1, sym_comment, - [215285] = 4, + [215480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9600), 1, + ACTIONS(9604), 1, anon_sym_EQ, - STATE(7391), 1, + STATE(7397), 1, sym_comment, - [215298] = 4, + [215493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11503), 1, + ACTIONS(11515), 1, anon_sym_EQ_GT, - STATE(7392), 1, + STATE(7398), 1, sym_comment, - [215311] = 4, + [215506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11505), 1, + ACTIONS(11517), 1, anon_sym_RBRACK, - STATE(7393), 1, + STATE(7399), 1, sym_comment, - [215324] = 4, + [215519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11507), 1, + ACTIONS(11519), 1, ts_builtin_sym_end, - STATE(7394), 1, + STATE(7400), 1, sym_comment, - [215337] = 4, + [215532] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11509), 1, + ACTIONS(11521), 1, sym_identifier, - STATE(7395), 1, + STATE(7401), 1, sym_comment, - [215350] = 4, + [215545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11511), 1, + ACTIONS(11523), 1, anon_sym_RBRACK, - STATE(7396), 1, + STATE(7402), 1, sym_comment, - [215363] = 4, + [215558] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11513), 1, + ACTIONS(11525), 1, sym_identifier, - STATE(7397), 1, + STATE(7403), 1, sym_comment, - [215376] = 4, + [215571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11515), 1, + ACTIONS(11527), 1, anon_sym_class, - STATE(7398), 1, + STATE(7404), 1, sym_comment, - [215389] = 4, + [215584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11517), 1, - anon_sym_RBRACK, - STATE(7399), 1, + ACTIONS(11529), 1, + anon_sym_EQ_GT, + STATE(7405), 1, sym_comment, - [215402] = 4, + [215597] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11519), 1, + ACTIONS(11531), 1, sym_identifier, - STATE(7400), 1, + STATE(7406), 1, sym_comment, - [215415] = 4, + [215610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5456), 1, + ACTIONS(5455), 1, anon_sym_in, - STATE(7401), 1, + STATE(7407), 1, sym_comment, - [215428] = 4, + [215623] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11521), 1, + ACTIONS(11533), 1, sym_regex_pattern, - STATE(7402), 1, + STATE(7408), 1, sym_comment, - [215441] = 4, + [215636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11523), 1, - anon_sym_RBRACK, - STATE(7403), 1, + ACTIONS(5905), 1, + anon_sym_RPAREN, + STATE(7409), 1, sym_comment, - [215454] = 4, + [215649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11525), 1, + ACTIONS(5960), 1, + anon_sym_in, + STATE(7410), 1, + sym_comment, + [215662] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11535), 1, anon_sym_RPAREN, - STATE(7404), 1, + STATE(7411), 1, sym_comment, - [215467] = 4, + [215675] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11527), 1, + ACTIONS(11537), 1, sym_identifier, - STATE(7405), 1, + STATE(7412), 1, sym_comment, - [215480] = 4, + [215688] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11529), 1, + ACTIONS(11539), 1, sym_identifier, - STATE(7406), 1, - sym_comment, - [215493] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11531), 1, - anon_sym_RBRACK, - STATE(7407), 1, + STATE(7413), 1, sym_comment, - [215506] = 4, + [215701] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8559), 1, + ACTIONS(8553), 1, sym_identifier, - STATE(7408), 1, + STATE(7414), 1, sym_comment, - [215519] = 4, + [215714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11533), 1, + ACTIONS(11541), 1, anon_sym_function, - STATE(7409), 1, + STATE(7415), 1, sym_comment, - [215532] = 4, + [215727] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5364), 1, + ACTIONS(5343), 1, anon_sym_RPAREN, - STATE(7410), 1, + STATE(7416), 1, sym_comment, - [215545] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215740] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11535), 1, - sym_identifier, - STATE(7411), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5225), 1, + anon_sym_RPAREN, + STATE(7417), 1, sym_comment, - [215558] = 4, + [215753] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11537), 1, + ACTIONS(11543), 1, sym_identifier, - STATE(7412), 1, + STATE(7418), 1, sym_comment, - [215571] = 4, + [215766] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8561), 1, + ACTIONS(8555), 1, sym_identifier, - STATE(7413), 1, + STATE(7419), 1, sym_comment, - [215584] = 4, + [215779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11539), 1, + ACTIONS(11545), 1, anon_sym_function, - STATE(7414), 1, + STATE(7420), 1, sym_comment, - [215597] = 4, + [215792] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11541), 1, + ACTIONS(11547), 1, sym_identifier, - STATE(7415), 1, + STATE(7421), 1, sym_comment, - [215610] = 4, + [215805] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(7416), 1, + ACTIONS(11549), 1, + sym_identifier, + STATE(7422), 1, sym_comment, - [215623] = 4, + [215818] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11543), 1, + ACTIONS(11551), 1, sym_identifier, - STATE(7417), 1, + STATE(7423), 1, sym_comment, - [215636] = 4, + [215831] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(8563), 1, sym_identifier, - STATE(7418), 1, + STATE(7424), 1, sym_comment, - [215649] = 4, + [215844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11545), 1, + ACTIONS(11553), 1, anon_sym_function, - STATE(7419), 1, + STATE(7425), 1, sym_comment, - [215662] = 4, + [215857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11547), 1, + ACTIONS(11555), 1, anon_sym_RPAREN, - STATE(7420), 1, + STATE(7426), 1, sym_comment, - [215675] = 4, + [215870] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11549), 1, + ACTIONS(11557), 1, sym_identifier, - STATE(7421), 1, + STATE(7427), 1, sym_comment, - [215688] = 4, + [215883] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11551), 1, + ACTIONS(11559), 1, sym_identifier, - STATE(7422), 1, + STATE(7428), 1, sym_comment, - [215701] = 4, + [215896] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8429), 1, + ACTIONS(8434), 1, sym_identifier, - STATE(7423), 1, + STATE(7429), 1, sym_comment, - [215714] = 4, + [215909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11553), 1, + ACTIONS(11561), 1, anon_sym_function, - STATE(7424), 1, + STATE(7430), 1, sym_comment, - [215727] = 4, + [215922] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11555), 1, + ACTIONS(11563), 1, sym_identifier, - STATE(7425), 1, + STATE(7431), 1, sym_comment, - [215740] = 1, - ACTIONS(11557), 1, + [215935] = 1, + ACTIONS(11565), 1, ts_builtin_sym_end, }; @@ -383794,7206 +383968,7212 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1914)] = 93, [SMALL_STATE(1915)] = 188, [SMALL_STATE(1916)] = 281, - [SMALL_STATE(1917)] = 356, - [SMALL_STATE(1918)] = 431, - [SMALL_STATE(1919)] = 506, - [SMALL_STATE(1920)] = 599, - [SMALL_STATE(1921)] = 694, - [SMALL_STATE(1922)] = 769, - [SMALL_STATE(1923)] = 862, - [SMALL_STATE(1924)] = 955, - [SMALL_STATE(1925)] = 1048, - [SMALL_STATE(1926)] = 1123, - [SMALL_STATE(1927)] = 1220, - [SMALL_STATE(1928)] = 1315, - [SMALL_STATE(1929)] = 1390, - [SMALL_STATE(1930)] = 1485, - [SMALL_STATE(1931)] = 1578, - [SMALL_STATE(1932)] = 1671, - [SMALL_STATE(1933)] = 1764, - [SMALL_STATE(1934)] = 1857, - [SMALL_STATE(1935)] = 1950, - [SMALL_STATE(1936)] = 2045, - [SMALL_STATE(1937)] = 2138, - [SMALL_STATE(1938)] = 2231, - [SMALL_STATE(1939)] = 2326, - [SMALL_STATE(1940)] = 2419, - [SMALL_STATE(1941)] = 2516, - [SMALL_STATE(1942)] = 2609, - [SMALL_STATE(1943)] = 2704, - [SMALL_STATE(1944)] = 2797, + [SMALL_STATE(1917)] = 374, + [SMALL_STATE(1918)] = 467, + [SMALL_STATE(1919)] = 560, + [SMALL_STATE(1920)] = 653, + [SMALL_STATE(1921)] = 728, + [SMALL_STATE(1922)] = 823, + [SMALL_STATE(1923)] = 918, + [SMALL_STATE(1924)] = 993, + [SMALL_STATE(1925)] = 1086, + [SMALL_STATE(1926)] = 1179, + [SMALL_STATE(1927)] = 1254, + [SMALL_STATE(1928)] = 1349, + [SMALL_STATE(1929)] = 1446, + [SMALL_STATE(1930)] = 1539, + [SMALL_STATE(1931)] = 1632, + [SMALL_STATE(1932)] = 1707, + [SMALL_STATE(1933)] = 1782, + [SMALL_STATE(1934)] = 1875, + [SMALL_STATE(1935)] = 1968, + [SMALL_STATE(1936)] = 2061, + [SMALL_STATE(1937)] = 2154, + [SMALL_STATE(1938)] = 2229, + [SMALL_STATE(1939)] = 2322, + [SMALL_STATE(1940)] = 2417, + [SMALL_STATE(1941)] = 2510, + [SMALL_STATE(1942)] = 2607, + [SMALL_STATE(1943)] = 2702, + [SMALL_STATE(1944)] = 2795, [SMALL_STATE(1945)] = 2890, - [SMALL_STATE(1946)] = 2985, + [SMALL_STATE(1946)] = 2965, [SMALL_STATE(1947)] = 3060, [SMALL_STATE(1948)] = 3153, - [SMALL_STATE(1949)] = 3249, - [SMALL_STATE(1950)] = 3323, - [SMALL_STATE(1951)] = 3415, - [SMALL_STATE(1952)] = 3507, - [SMALL_STATE(1953)] = 3603, - [SMALL_STATE(1954)] = 3703, - [SMALL_STATE(1955)] = 3795, - [SMALL_STATE(1956)] = 3887, - [SMALL_STATE(1957)] = 3983, - [SMALL_STATE(1958)] = 4075, - [SMALL_STATE(1959)] = 4153, - [SMALL_STATE(1960)] = 4249, - [SMALL_STATE(1961)] = 4343, - [SMALL_STATE(1962)] = 4435, - [SMALL_STATE(1963)] = 4509, - [SMALL_STATE(1964)] = 4603, - [SMALL_STATE(1965)] = 4694, - [SMALL_STATE(1966)] = 4777, - [SMALL_STATE(1967)] = 4868, - [SMALL_STATE(1968)] = 4963, - [SMALL_STATE(1969)] = 5054, - [SMALL_STATE(1970)] = 5151, - [SMALL_STATE(1971)] = 5242, - [SMALL_STATE(1972)] = 5319, - [SMALL_STATE(1973)] = 5414, - [SMALL_STATE(1974)] = 5505, - [SMALL_STATE(1975)] = 5584, - [SMALL_STATE(1976)] = 5679, - [SMALL_STATE(1977)] = 5770, - [SMALL_STATE(1978)] = 5853, - [SMALL_STATE(1979)] = 5944, - [SMALL_STATE(1980)] = 6037, - [SMALL_STATE(1981)] = 6132, - [SMALL_STATE(1982)] = 6217, - [SMALL_STATE(1983)] = 6308, - [SMALL_STATE(1984)] = 6399, - [SMALL_STATE(1985)] = 6490, - [SMALL_STATE(1986)] = 6581, - [SMALL_STATE(1987)] = 6678, - [SMALL_STATE(1988)] = 6753, - [SMALL_STATE(1989)] = 6836, - [SMALL_STATE(1990)] = 6927, - [SMALL_STATE(1991)] = 7010, - [SMALL_STATE(1992)] = 7083, - [SMALL_STATE(1993)] = 7174, - [SMALL_STATE(1994)] = 7247, - [SMALL_STATE(1995)] = 7338, - [SMALL_STATE(1996)] = 7433, - [SMALL_STATE(1997)] = 7523, - [SMALL_STATE(1998)] = 7593, - [SMALL_STATE(1999)] = 7683, - [SMALL_STATE(2000)] = 7763, - [SMALL_STATE(2001)] = 7845, - [SMALL_STATE(2002)] = 7927, - [SMALL_STATE(2003)] = 8011, - [SMALL_STATE(2004)] = 8105, - [SMALL_STATE(2005)] = 8199, - [SMALL_STATE(2006)] = 8289, - [SMALL_STATE(2007)] = 8373, - [SMALL_STATE(2008)] = 8461, - [SMALL_STATE(2009)] = 8553, - [SMALL_STATE(2010)] = 8635, - [SMALL_STATE(2011)] = 8717, - [SMALL_STATE(2012)] = 8787, - [SMALL_STATE(2013)] = 8881, - [SMALL_STATE(2014)] = 8969, - [SMALL_STATE(2015)] = 9051, - [SMALL_STATE(2016)] = 9135, - [SMALL_STATE(2017)] = 9229, - [SMALL_STATE(2018)] = 9309, - [SMALL_STATE(2019)] = 9403, - [SMALL_STATE(2020)] = 9497, - [SMALL_STATE(2021)] = 9567, - [SMALL_STATE(2022)] = 9636, - [SMALL_STATE(2023)] = 9713, - [SMALL_STATE(2024)] = 9792, - [SMALL_STATE(2025)] = 9871, - [SMALL_STATE(2026)] = 9948, - [SMALL_STATE(2027)] = 10027, - [SMALL_STATE(2028)] = 10110, - [SMALL_STATE(2029)] = 10187, - [SMALL_STATE(2030)] = 10266, - [SMALL_STATE(2031)] = 10335, - [SMALL_STATE(2032)] = 10412, - [SMALL_STATE(2033)] = 10493, - [SMALL_STATE(2034)] = 10572, - [SMALL_STATE(2035)] = 10665, - [SMALL_STATE(2036)] = 10736, - [SMALL_STATE(2037)] = 10823, - [SMALL_STATE(2038)] = 10894, - [SMALL_STATE(2039)] = 10963, - [SMALL_STATE(2040)] = 11032, - [SMALL_STATE(2041)] = 11101, - [SMALL_STATE(2042)] = 11180, - [SMALL_STATE(2043)] = 11261, - [SMALL_STATE(2044)] = 11344, - [SMALL_STATE(2045)] = 11433, - [SMALL_STATE(2046)] = 11502, - [SMALL_STATE(2047)] = 11583, - [SMALL_STATE(2048)] = 11660, - [SMALL_STATE(2049)] = 11743, - [SMALL_STATE(2050)] = 11820, - [SMALL_STATE(2051)] = 11901, - [SMALL_STATE(2052)] = 11990, - [SMALL_STATE(2053)] = 12067, - [SMALL_STATE(2054)] = 12160, - [SMALL_STATE(2055)] = 12237, - [SMALL_STATE(2056)] = 12318, - [SMALL_STATE(2057)] = 12407, - [SMALL_STATE(2058)] = 12486, - [SMALL_STATE(2059)] = 12565, - [SMALL_STATE(2060)] = 12634, - [SMALL_STATE(2061)] = 12703, - [SMALL_STATE(2062)] = 12780, - [SMALL_STATE(2063)] = 12851, - [SMALL_STATE(2064)] = 12926, - [SMALL_STATE(2065)] = 12995, - [SMALL_STATE(2066)] = 13080, - [SMALL_STATE(2067)] = 13157, - [SMALL_STATE(2068)] = 13230, - [SMALL_STATE(2069)] = 13319, - [SMALL_STATE(2070)] = 13390, - [SMALL_STATE(2071)] = 13461, - [SMALL_STATE(2072)] = 13538, - [SMALL_STATE(2073)] = 13615, - [SMALL_STATE(2074)] = 13686, - [SMALL_STATE(2075)] = 13757, - [SMALL_STATE(2076)] = 13830, - [SMALL_STATE(2077)] = 13901, - [SMALL_STATE(2078)] = 13972, - [SMALL_STATE(2079)] = 14051, - [SMALL_STATE(2080)] = 14136, - [SMALL_STATE(2081)] = 14207, - [SMALL_STATE(2082)] = 14278, - [SMALL_STATE(2083)] = 14357, - [SMALL_STATE(2084)] = 14426, - [SMALL_STATE(2085)] = 14498, - [SMALL_STATE(2086)] = 14574, - [SMALL_STATE(2087)] = 14648, - [SMALL_STATE(2088)] = 14716, - [SMALL_STATE(2089)] = 14784, - [SMALL_STATE(2090)] = 14852, - [SMALL_STATE(2091)] = 14928, - [SMALL_STATE(2092)] = 15002, - [SMALL_STATE(2093)] = 15080, - [SMALL_STATE(2094)] = 15154, - [SMALL_STATE(2095)] = 15232, - [SMALL_STATE(2096)] = 15308, - [SMALL_STATE(2097)] = 15386, - [SMALL_STATE(2098)] = 15468, - [SMALL_STATE(2099)] = 15546, - [SMALL_STATE(2100)] = 15628, - [SMALL_STATE(2101)] = 15706, - [SMALL_STATE(2102)] = 15784, - [SMALL_STATE(2103)] = 15860, - [SMALL_STATE(2104)] = 15928, - [SMALL_STATE(2105)] = 15996, - [SMALL_STATE(2106)] = 16074, - [SMALL_STATE(2107)] = 16142, - [SMALL_STATE(2108)] = 16210, - [SMALL_STATE(2109)] = 16278, - [SMALL_STATE(2110)] = 16346, - [SMALL_STATE(2111)] = 16414, - [SMALL_STATE(2112)] = 16492, - [SMALL_STATE(2113)] = 16570, - [SMALL_STATE(2114)] = 16654, - [SMALL_STATE(2115)] = 16736, - [SMALL_STATE(2116)] = 16812, - [SMALL_STATE(2117)] = 16884, - [SMALL_STATE(2118)] = 16962, - [SMALL_STATE(2119)] = 17038, - [SMALL_STATE(2120)] = 17126, - [SMALL_STATE(2121)] = 17204, - [SMALL_STATE(2122)] = 17280, - [SMALL_STATE(2123)] = 17358, - [SMALL_STATE(2124)] = 17434, - [SMALL_STATE(2125)] = 17516, - [SMALL_STATE(2126)] = 17598, - [SMALL_STATE(2127)] = 17666, - [SMALL_STATE(2128)] = 17743, - [SMALL_STATE(2129)] = 17822, - [SMALL_STATE(2130)] = 17897, - [SMALL_STATE(2131)] = 18024, - [SMALL_STATE(2132)] = 18151, - [SMALL_STATE(2133)] = 18226, - [SMALL_STATE(2134)] = 18307, - [SMALL_STATE(2135)] = 18378, - [SMALL_STATE(2136)] = 18505, - [SMALL_STATE(2137)] = 18632, - [SMALL_STATE(2138)] = 18703, - [SMALL_STATE(2139)] = 18778, - [SMALL_STATE(2140)] = 18905, - [SMALL_STATE(2141)] = 18980, - [SMALL_STATE(2142)] = 19107, - [SMALL_STATE(2143)] = 19234, - [SMALL_STATE(2144)] = 19361, - [SMALL_STATE(2145)] = 19434, - [SMALL_STATE(2146)] = 19507, - [SMALL_STATE(2147)] = 19582, - [SMALL_STATE(2148)] = 19661, - [SMALL_STATE(2149)] = 19740, - [SMALL_STATE(2150)] = 19817, - [SMALL_STATE(2151)] = 19896, - [SMALL_STATE(2152)] = 20023, + [SMALL_STATE(1949)] = 3231, + [SMALL_STATE(1950)] = 3305, + [SMALL_STATE(1951)] = 3401, + [SMALL_STATE(1952)] = 3483, + [SMALL_STATE(1953)] = 3575, + [SMALL_STATE(1954)] = 3667, + [SMALL_STATE(1955)] = 3759, + [SMALL_STATE(1956)] = 3851, + [SMALL_STATE(1957)] = 3943, + [SMALL_STATE(1958)] = 4039, + [SMALL_STATE(1959)] = 4133, + [SMALL_STATE(1960)] = 4207, + [SMALL_STATE(1961)] = 4301, + [SMALL_STATE(1962)] = 4397, + [SMALL_STATE(1963)] = 4493, + [SMALL_STATE(1964)] = 4585, + [SMALL_STATE(1965)] = 4685, + [SMALL_STATE(1966)] = 4776, + [SMALL_STATE(1967)] = 4859, + [SMALL_STATE(1968)] = 4956, + [SMALL_STATE(1969)] = 5047, + [SMALL_STATE(1970)] = 5130, + [SMALL_STATE(1971)] = 5225, + [SMALL_STATE(1972)] = 5316, + [SMALL_STATE(1973)] = 5407, + [SMALL_STATE(1974)] = 5498, + [SMALL_STATE(1975)] = 5589, + [SMALL_STATE(1976)] = 5682, + [SMALL_STATE(1977)] = 5765, + [SMALL_STATE(1978)] = 5860, + [SMALL_STATE(1979)] = 5933, + [SMALL_STATE(1980)] = 6006, + [SMALL_STATE(1981)] = 6101, + [SMALL_STATE(1982)] = 6192, + [SMALL_STATE(1983)] = 6275, + [SMALL_STATE(1984)] = 6360, + [SMALL_STATE(1985)] = 6451, + [SMALL_STATE(1986)] = 6546, + [SMALL_STATE(1987)] = 6637, + [SMALL_STATE(1988)] = 6712, + [SMALL_STATE(1989)] = 6809, + [SMALL_STATE(1990)] = 6900, + [SMALL_STATE(1991)] = 6991, + [SMALL_STATE(1992)] = 7086, + [SMALL_STATE(1993)] = 7177, + [SMALL_STATE(1994)] = 7268, + [SMALL_STATE(1995)] = 7347, + [SMALL_STATE(1996)] = 7438, + [SMALL_STATE(1997)] = 7520, + [SMALL_STATE(1998)] = 7610, + [SMALL_STATE(1999)] = 7704, + [SMALL_STATE(2000)] = 7786, + [SMALL_STATE(2001)] = 7876, + [SMALL_STATE(2002)] = 7970, + [SMALL_STATE(2003)] = 8050, + [SMALL_STATE(2004)] = 8132, + [SMALL_STATE(2005)] = 8224, + [SMALL_STATE(2006)] = 8318, + [SMALL_STATE(2007)] = 8406, + [SMALL_STATE(2008)] = 8490, + [SMALL_STATE(2009)] = 8560, + [SMALL_STATE(2010)] = 8642, + [SMALL_STATE(2011)] = 8722, + [SMALL_STATE(2012)] = 8816, + [SMALL_STATE(2013)] = 8898, + [SMALL_STATE(2014)] = 8968, + [SMALL_STATE(2015)] = 9058, + [SMALL_STATE(2016)] = 9142, + [SMALL_STATE(2017)] = 9212, + [SMALL_STATE(2018)] = 9306, + [SMALL_STATE(2019)] = 9390, + [SMALL_STATE(2020)] = 9484, + [SMALL_STATE(2021)] = 9572, + [SMALL_STATE(2022)] = 9643, + [SMALL_STATE(2023)] = 9712, + [SMALL_STATE(2024)] = 9783, + [SMALL_STATE(2025)] = 9876, + [SMALL_STATE(2026)] = 9947, + [SMALL_STATE(2027)] = 10018, + [SMALL_STATE(2028)] = 10087, + [SMALL_STATE(2029)] = 10168, + [SMALL_STATE(2030)] = 10245, + [SMALL_STATE(2031)] = 10324, + [SMALL_STATE(2032)] = 10403, + [SMALL_STATE(2033)] = 10486, + [SMALL_STATE(2034)] = 10563, + [SMALL_STATE(2035)] = 10632, + [SMALL_STATE(2036)] = 10703, + [SMALL_STATE(2037)] = 10780, + [SMALL_STATE(2038)] = 10851, + [SMALL_STATE(2039)] = 10930, + [SMALL_STATE(2040)] = 11009, + [SMALL_STATE(2041)] = 11088, + [SMALL_STATE(2042)] = 11175, + [SMALL_STATE(2043)] = 11254, + [SMALL_STATE(2044)] = 11331, + [SMALL_STATE(2045)] = 11408, + [SMALL_STATE(2046)] = 11497, + [SMALL_STATE(2047)] = 11578, + [SMALL_STATE(2048)] = 11649, + [SMALL_STATE(2049)] = 11726, + [SMALL_STATE(2050)] = 11795, + [SMALL_STATE(2051)] = 11866, + [SMALL_STATE(2052)] = 11947, + [SMALL_STATE(2053)] = 12026, + [SMALL_STATE(2054)] = 12109, + [SMALL_STATE(2055)] = 12190, + [SMALL_STATE(2056)] = 12263, + [SMALL_STATE(2057)] = 12340, + [SMALL_STATE(2058)] = 12409, + [SMALL_STATE(2059)] = 12494, + [SMALL_STATE(2060)] = 12583, + [SMALL_STATE(2061)] = 12662, + [SMALL_STATE(2062)] = 12741, + [SMALL_STATE(2063)] = 12822, + [SMALL_STATE(2064)] = 12897, + [SMALL_STATE(2065)] = 12966, + [SMALL_STATE(2066)] = 13043, + [SMALL_STATE(2067)] = 13136, + [SMALL_STATE(2068)] = 13225, + [SMALL_STATE(2069)] = 13296, + [SMALL_STATE(2070)] = 13367, + [SMALL_STATE(2071)] = 13444, + [SMALL_STATE(2072)] = 13517, + [SMALL_STATE(2073)] = 13588, + [SMALL_STATE(2074)] = 13665, + [SMALL_STATE(2075)] = 13754, + [SMALL_STATE(2076)] = 13837, + [SMALL_STATE(2077)] = 13906, + [SMALL_STATE(2078)] = 13975, + [SMALL_STATE(2079)] = 14044, + [SMALL_STATE(2080)] = 14129, + [SMALL_STATE(2081)] = 14208, + [SMALL_STATE(2082)] = 14285, + [SMALL_STATE(2083)] = 14362, + [SMALL_STATE(2084)] = 14431, + [SMALL_STATE(2085)] = 14500, + [SMALL_STATE(2086)] = 14572, + [SMALL_STATE(2087)] = 14650, + [SMALL_STATE(2088)] = 14722, + [SMALL_STATE(2089)] = 14796, + [SMALL_STATE(2090)] = 14884, + [SMALL_STATE(2091)] = 14962, + [SMALL_STATE(2092)] = 15038, + [SMALL_STATE(2093)] = 15114, + [SMALL_STATE(2094)] = 15192, + [SMALL_STATE(2095)] = 15270, + [SMALL_STATE(2096)] = 15338, + [SMALL_STATE(2097)] = 15412, + [SMALL_STATE(2098)] = 15480, + [SMALL_STATE(2099)] = 15548, + [SMALL_STATE(2100)] = 15626, + [SMALL_STATE(2101)] = 15702, + [SMALL_STATE(2102)] = 15780, + [SMALL_STATE(2103)] = 15864, + [SMALL_STATE(2104)] = 15946, + [SMALL_STATE(2105)] = 16022, + [SMALL_STATE(2106)] = 16104, + [SMALL_STATE(2107)] = 16186, + [SMALL_STATE(2108)] = 16264, + [SMALL_STATE(2109)] = 16342, + [SMALL_STATE(2110)] = 16410, + [SMALL_STATE(2111)] = 16484, + [SMALL_STATE(2112)] = 16552, + [SMALL_STATE(2113)] = 16628, + [SMALL_STATE(2114)] = 16696, + [SMALL_STATE(2115)] = 16774, + [SMALL_STATE(2116)] = 16842, + [SMALL_STATE(2117)] = 16910, + [SMALL_STATE(2118)] = 16986, + [SMALL_STATE(2119)] = 17054, + [SMALL_STATE(2120)] = 17122, + [SMALL_STATE(2121)] = 17190, + [SMALL_STATE(2122)] = 17272, + [SMALL_STATE(2123)] = 17354, + [SMALL_STATE(2124)] = 17430, + [SMALL_STATE(2125)] = 17508, + [SMALL_STATE(2126)] = 17586, + [SMALL_STATE(2127)] = 17664, + [SMALL_STATE(2128)] = 17740, + [SMALL_STATE(2129)] = 17821, + [SMALL_STATE(2130)] = 17948, + [SMALL_STATE(2131)] = 18075, + [SMALL_STATE(2132)] = 18148, + [SMALL_STATE(2133)] = 18227, + [SMALL_STATE(2134)] = 18302, + [SMALL_STATE(2135)] = 18429, + [SMALL_STATE(2136)] = 18506, + [SMALL_STATE(2137)] = 18585, + [SMALL_STATE(2138)] = 18660, + [SMALL_STATE(2139)] = 18787, + [SMALL_STATE(2140)] = 18862, + [SMALL_STATE(2141)] = 18989, + [SMALL_STATE(2142)] = 19064, + [SMALL_STATE(2143)] = 19191, + [SMALL_STATE(2144)] = 19262, + [SMALL_STATE(2145)] = 19341, + [SMALL_STATE(2146)] = 19420, + [SMALL_STATE(2147)] = 19497, + [SMALL_STATE(2148)] = 19624, + [SMALL_STATE(2149)] = 19699, + [SMALL_STATE(2150)] = 19826, + [SMALL_STATE(2151)] = 19897, + [SMALL_STATE(2152)] = 20024, [SMALL_STATE(2153)] = 20097, - [SMALL_STATE(2154)] = 20175, - [SMALL_STATE(2155)] = 20249, - [SMALL_STATE(2156)] = 20325, - [SMALL_STATE(2157)] = 20399, - [SMALL_STATE(2158)] = 20473, - [SMALL_STATE(2159)] = 20547, - [SMALL_STATE(2160)] = 20619, - [SMALL_STATE(2161)] = 20693, - [SMALL_STATE(2162)] = 20767, - [SMALL_STATE(2163)] = 20841, - [SMALL_STATE(2164)] = 20915, - [SMALL_STATE(2165)] = 20989, - [SMALL_STATE(2166)] = 21063, - [SMALL_STATE(2167)] = 21139, - [SMALL_STATE(2168)] = 21213, - [SMALL_STATE(2169)] = 21291, - [SMALL_STATE(2170)] = 21414, - [SMALL_STATE(2171)] = 21487, - [SMALL_STATE(2172)] = 21560, - [SMALL_STATE(2173)] = 21633, - [SMALL_STATE(2174)] = 21756, - [SMALL_STATE(2175)] = 21829, - [SMALL_STATE(2176)] = 21902, - [SMALL_STATE(2177)] = 22025, - [SMALL_STATE(2178)] = 22098, - [SMALL_STATE(2179)] = 22171, - [SMALL_STATE(2180)] = 22294, - [SMALL_STATE(2181)] = 22417, - [SMALL_STATE(2182)] = 22540, - [SMALL_STATE(2183)] = 22613, - [SMALL_STATE(2184)] = 22736, - [SMALL_STATE(2185)] = 22859, - [SMALL_STATE(2186)] = 22982, - [SMALL_STATE(2187)] = 23055, - [SMALL_STATE(2188)] = 23128, - [SMALL_STATE(2189)] = 23251, - [SMALL_STATE(2190)] = 23324, - [SMALL_STATE(2191)] = 23447, - [SMALL_STATE(2192)] = 23520, - [SMALL_STATE(2193)] = 23643, - [SMALL_STATE(2194)] = 23716, - [SMALL_STATE(2195)] = 23839, - [SMALL_STATE(2196)] = 23912, - [SMALL_STATE(2197)] = 23985, - [SMALL_STATE(2198)] = 24108, - [SMALL_STATE(2199)] = 24231, - [SMALL_STATE(2200)] = 24354, - [SMALL_STATE(2201)] = 24477, - [SMALL_STATE(2202)] = 24600, - [SMALL_STATE(2203)] = 24723, - [SMALL_STATE(2204)] = 24796, - [SMALL_STATE(2205)] = 24919, - [SMALL_STATE(2206)] = 24992, - [SMALL_STATE(2207)] = 25115, - [SMALL_STATE(2208)] = 25238, - [SMALL_STATE(2209)] = 25361, - [SMALL_STATE(2210)] = 25434, - [SMALL_STATE(2211)] = 25507, - [SMALL_STATE(2212)] = 25580, - [SMALL_STATE(2213)] = 25651, - [SMALL_STATE(2214)] = 25722, - [SMALL_STATE(2215)] = 25795, - [SMALL_STATE(2216)] = 25918, - [SMALL_STATE(2217)] = 26041, - [SMALL_STATE(2218)] = 26114, - [SMALL_STATE(2219)] = 26237, - [SMALL_STATE(2220)] = 26310, - [SMALL_STATE(2221)] = 26433, - [SMALL_STATE(2222)] = 26504, - [SMALL_STATE(2223)] = 26579, - [SMALL_STATE(2224)] = 26649, - [SMALL_STATE(2225)] = 26719, - [SMALL_STATE(2226)] = 26789, - [SMALL_STATE(2227)] = 26859, - [SMALL_STATE(2228)] = 26929, - [SMALL_STATE(2229)] = 26999, - [SMALL_STATE(2230)] = 27069, - [SMALL_STATE(2231)] = 27139, - [SMALL_STATE(2232)] = 27209, - [SMALL_STATE(2233)] = 27279, - [SMALL_STATE(2234)] = 27398, - [SMALL_STATE(2235)] = 27517, - [SMALL_STATE(2236)] = 27636, - [SMALL_STATE(2237)] = 27755, - [SMALL_STATE(2238)] = 27874, - [SMALL_STATE(2239)] = 27993, - [SMALL_STATE(2240)] = 28112, - [SMALL_STATE(2241)] = 28231, - [SMALL_STATE(2242)] = 28350, - [SMALL_STATE(2243)] = 28469, - [SMALL_STATE(2244)] = 28593, - [SMALL_STATE(2245)] = 28717, - [SMALL_STATE(2246)] = 28841, - [SMALL_STATE(2247)] = 28965, - [SMALL_STATE(2248)] = 29089, - [SMALL_STATE(2249)] = 29206, - [SMALL_STATE(2250)] = 29323, - [SMALL_STATE(2251)] = 29440, - [SMALL_STATE(2252)] = 29551, - [SMALL_STATE(2253)] = 29668, - [SMALL_STATE(2254)] = 29785, - [SMALL_STATE(2255)] = 29900, - [SMALL_STATE(2256)] = 30017, - [SMALL_STATE(2257)] = 30134, - [SMALL_STATE(2258)] = 30251, - [SMALL_STATE(2259)] = 30368, - [SMALL_STATE(2260)] = 30485, - [SMALL_STATE(2261)] = 30596, - [SMALL_STATE(2262)] = 30713, - [SMALL_STATE(2263)] = 30824, - [SMALL_STATE(2264)] = 30941, - [SMALL_STATE(2265)] = 31058, - [SMALL_STATE(2266)] = 31175, - [SMALL_STATE(2267)] = 31292, - [SMALL_STATE(2268)] = 31409, - [SMALL_STATE(2269)] = 31526, - [SMALL_STATE(2270)] = 31643, - [SMALL_STATE(2271)] = 31754, - [SMALL_STATE(2272)] = 31871, - [SMALL_STATE(2273)] = 31988, - [SMALL_STATE(2274)] = 32105, - [SMALL_STATE(2275)] = 32222, - [SMALL_STATE(2276)] = 32333, - [SMALL_STATE(2277)] = 32450, - [SMALL_STATE(2278)] = 32567, - [SMALL_STATE(2279)] = 32684, - [SMALL_STATE(2280)] = 32801, - [SMALL_STATE(2281)] = 32918, - [SMALL_STATE(2282)] = 33035, - [SMALL_STATE(2283)] = 33152, - [SMALL_STATE(2284)] = 33263, - [SMALL_STATE(2285)] = 33374, - [SMALL_STATE(2286)] = 33491, - [SMALL_STATE(2287)] = 33608, - [SMALL_STATE(2288)] = 33725, - [SMALL_STATE(2289)] = 33787, - [SMALL_STATE(2290)] = 33903, - [SMALL_STATE(2291)] = 34017, - [SMALL_STATE(2292)] = 34079, - [SMALL_STATE(2293)] = 34148, - [SMALL_STATE(2294)] = 34219, - [SMALL_STATE(2295)] = 34322, - [SMALL_STATE(2296)] = 34399, - [SMALL_STATE(2297)] = 34470, - [SMALL_STATE(2298)] = 34541, - [SMALL_STATE(2299)] = 34601, - [SMALL_STATE(2300)] = 34663, - [SMALL_STATE(2301)] = 34727, - [SMALL_STATE(2302)] = 34793, - [SMALL_STATE(2303)] = 34857, - [SMALL_STATE(2304)] = 34919, - [SMALL_STATE(2305)] = 34985, - [SMALL_STATE(2306)] = 35045, - [SMALL_STATE(2307)] = 35105, - [SMALL_STATE(2308)] = 35165, - [SMALL_STATE(2309)] = 35229, - [SMALL_STATE(2310)] = 35289, - [SMALL_STATE(2311)] = 35349, - [SMALL_STATE(2312)] = 35409, - [SMALL_STATE(2313)] = 35475, - [SMALL_STATE(2314)] = 35541, - [SMALL_STATE(2315)] = 35603, - [SMALL_STATE(2316)] = 35666, - [SMALL_STATE(2317)] = 35725, - [SMALL_STATE(2318)] = 35784, - [SMALL_STATE(2319)] = 35843, - [SMALL_STATE(2320)] = 35902, - [SMALL_STATE(2321)] = 35961, - [SMALL_STATE(2322)] = 36022, - [SMALL_STATE(2323)] = 36083, - [SMALL_STATE(2324)] = 36142, - [SMALL_STATE(2325)] = 36207, - [SMALL_STATE(2326)] = 36272, - [SMALL_STATE(2327)] = 36331, - [SMALL_STATE(2328)] = 36390, - [SMALL_STATE(2329)] = 36485, - [SMALL_STATE(2330)] = 36544, - [SMALL_STATE(2331)] = 36603, - [SMALL_STATE(2332)] = 36662, - [SMALL_STATE(2333)] = 36721, - [SMALL_STATE(2334)] = 36780, - [SMALL_STATE(2335)] = 36841, - [SMALL_STATE(2336)] = 36908, - [SMALL_STATE(2337)] = 37033, - [SMALL_STATE(2338)] = 37092, - [SMALL_STATE(2339)] = 37151, - [SMALL_STATE(2340)] = 37212, - [SMALL_STATE(2341)] = 37271, - [SMALL_STATE(2342)] = 37330, - [SMALL_STATE(2343)] = 37389, - [SMALL_STATE(2344)] = 37448, - [SMALL_STATE(2345)] = 37507, - [SMALL_STATE(2346)] = 37566, - [SMALL_STATE(2347)] = 37625, - [SMALL_STATE(2348)] = 37690, - [SMALL_STATE(2349)] = 37749, - [SMALL_STATE(2350)] = 37808, - [SMALL_STATE(2351)] = 37867, - [SMALL_STATE(2352)] = 37926, - [SMALL_STATE(2353)] = 37985, - [SMALL_STATE(2354)] = 38044, - [SMALL_STATE(2355)] = 38103, - [SMALL_STATE(2356)] = 38162, - [SMALL_STATE(2357)] = 38221, - [SMALL_STATE(2358)] = 38286, - [SMALL_STATE(2359)] = 38345, - [SMALL_STATE(2360)] = 38410, - [SMALL_STATE(2361)] = 38469, - [SMALL_STATE(2362)] = 38530, - [SMALL_STATE(2363)] = 38589, - [SMALL_STATE(2364)] = 38650, - [SMALL_STATE(2365)] = 38709, - [SMALL_STATE(2366)] = 38768, - [SMALL_STATE(2367)] = 38827, - [SMALL_STATE(2368)] = 38952, - [SMALL_STATE(2369)] = 39011, - [SMALL_STATE(2370)] = 39070, - [SMALL_STATE(2371)] = 39195, - [SMALL_STATE(2372)] = 39254, - [SMALL_STATE(2373)] = 39313, - [SMALL_STATE(2374)] = 39372, - [SMALL_STATE(2375)] = 39431, - [SMALL_STATE(2376)] = 39556, - [SMALL_STATE(2377)] = 39615, - [SMALL_STATE(2378)] = 39674, - [SMALL_STATE(2379)] = 39769, - [SMALL_STATE(2380)] = 39828, - [SMALL_STATE(2381)] = 39887, - [SMALL_STATE(2382)] = 39946, - [SMALL_STATE(2383)] = 40005, - [SMALL_STATE(2384)] = 40064, - [SMALL_STATE(2385)] = 40123, - [SMALL_STATE(2386)] = 40182, - [SMALL_STATE(2387)] = 40241, - [SMALL_STATE(2388)] = 40300, - [SMALL_STATE(2389)] = 40359, - [SMALL_STATE(2390)] = 40422, - [SMALL_STATE(2391)] = 40481, - [SMALL_STATE(2392)] = 40540, - [SMALL_STATE(2393)] = 40599, - [SMALL_STATE(2394)] = 40658, - [SMALL_STATE(2395)] = 40719, - [SMALL_STATE(2396)] = 40778, - [SMALL_STATE(2397)] = 40843, - [SMALL_STATE(2398)] = 40908, - [SMALL_STATE(2399)] = 40967, - [SMALL_STATE(2400)] = 41026, - [SMALL_STATE(2401)] = 41151, - [SMALL_STATE(2402)] = 41210, - [SMALL_STATE(2403)] = 41269, - [SMALL_STATE(2404)] = 41328, - [SMALL_STATE(2405)] = 41387, - [SMALL_STATE(2406)] = 41446, - [SMALL_STATE(2407)] = 41505, - [SMALL_STATE(2408)] = 41564, - [SMALL_STATE(2409)] = 41623, - [SMALL_STATE(2410)] = 41684, - [SMALL_STATE(2411)] = 41743, - [SMALL_STATE(2412)] = 41802, - [SMALL_STATE(2413)] = 41861, - [SMALL_STATE(2414)] = 41920, - [SMALL_STATE(2415)] = 41979, - [SMALL_STATE(2416)] = 42038, - [SMALL_STATE(2417)] = 42097, - [SMALL_STATE(2418)] = 42158, - [SMALL_STATE(2419)] = 42221, - [SMALL_STATE(2420)] = 42282, - [SMALL_STATE(2421)] = 42347, - [SMALL_STATE(2422)] = 42412, - [SMALL_STATE(2423)] = 42471, - [SMALL_STATE(2424)] = 42596, - [SMALL_STATE(2425)] = 42661, - [SMALL_STATE(2426)] = 42786, - [SMALL_STATE(2427)] = 42845, - [SMALL_STATE(2428)] = 42906, - [SMALL_STATE(2429)] = 42965, - [SMALL_STATE(2430)] = 43024, - [SMALL_STATE(2431)] = 43083, - [SMALL_STATE(2432)] = 43178, - [SMALL_STATE(2433)] = 43237, - [SMALL_STATE(2434)] = 43298, - [SMALL_STATE(2435)] = 43363, - [SMALL_STATE(2436)] = 43428, - [SMALL_STATE(2437)] = 43523, - [SMALL_STATE(2438)] = 43618, - [SMALL_STATE(2439)] = 43743, - [SMALL_STATE(2440)] = 43806, - [SMALL_STATE(2441)] = 43873, - [SMALL_STATE(2442)] = 43940, - [SMALL_STATE(2443)] = 44065, - [SMALL_STATE(2444)] = 44124, - [SMALL_STATE(2445)] = 44183, - [SMALL_STATE(2446)] = 44242, - [SMALL_STATE(2447)] = 44300, - [SMALL_STATE(2448)] = 44362, - [SMALL_STATE(2449)] = 44482, - [SMALL_STATE(2450)] = 44540, - [SMALL_STATE(2451)] = 44602, - [SMALL_STATE(2452)] = 44662, - [SMALL_STATE(2453)] = 44778, - [SMALL_STATE(2454)] = 44866, - [SMALL_STATE(2455)] = 44936, - [SMALL_STATE(2456)] = 45052, - [SMALL_STATE(2457)] = 45168, - [SMALL_STATE(2458)] = 45284, - [SMALL_STATE(2459)] = 45400, - [SMALL_STATE(2460)] = 45516, - [SMALL_STATE(2461)] = 45574, - [SMALL_STATE(2462)] = 45690, - [SMALL_STATE(2463)] = 45806, - [SMALL_STATE(2464)] = 45896, - [SMALL_STATE(2465)] = 45954, - [SMALL_STATE(2466)] = 46014, - [SMALL_STATE(2467)] = 46074, - [SMALL_STATE(2468)] = 46160, - [SMALL_STATE(2469)] = 46240, - [SMALL_STATE(2470)] = 46344, - [SMALL_STATE(2471)] = 46402, - [SMALL_STATE(2472)] = 46460, - [SMALL_STATE(2473)] = 46566, - [SMALL_STATE(2474)] = 46686, - [SMALL_STATE(2475)] = 46764, - [SMALL_STATE(2476)] = 46854, - [SMALL_STATE(2477)] = 46934, - [SMALL_STATE(2478)] = 47050, - [SMALL_STATE(2479)] = 47136, - [SMALL_STATE(2480)] = 47240, - [SMALL_STATE(2481)] = 47346, - [SMALL_STATE(2482)] = 47432, - [SMALL_STATE(2483)] = 47552, - [SMALL_STATE(2484)] = 47650, - [SMALL_STATE(2485)] = 47770, - [SMALL_STATE(2486)] = 47890, - [SMALL_STATE(2487)] = 47954, - [SMALL_STATE(2488)] = 48056, - [SMALL_STATE(2489)] = 48156, - [SMALL_STATE(2490)] = 48254, - [SMALL_STATE(2491)] = 48354, - [SMALL_STATE(2492)] = 48416, - [SMALL_STATE(2493)] = 48500, - [SMALL_STATE(2494)] = 48602, - [SMALL_STATE(2495)] = 48686, - [SMALL_STATE(2496)] = 48744, - [SMALL_STATE(2497)] = 48830, - [SMALL_STATE(2498)] = 48888, - [SMALL_STATE(2499)] = 48946, - [SMALL_STATE(2500)] = 49004, - [SMALL_STATE(2501)] = 49062, - [SMALL_STATE(2502)] = 49120, - [SMALL_STATE(2503)] = 49214, - [SMALL_STATE(2504)] = 49322, - [SMALL_STATE(2505)] = 49438, - [SMALL_STATE(2506)] = 49526, - [SMALL_STATE(2507)] = 49642, - [SMALL_STATE(2508)] = 49708, - [SMALL_STATE(2509)] = 49766, - [SMALL_STATE(2510)] = 49824, - [SMALL_STATE(2511)] = 49910, - [SMALL_STATE(2512)] = 49968, - [SMALL_STATE(2513)] = 50026, - [SMALL_STATE(2514)] = 50144, - [SMALL_STATE(2515)] = 50260, - [SMALL_STATE(2516)] = 50380, - [SMALL_STATE(2517)] = 50500, - [SMALL_STATE(2518)] = 50558, - [SMALL_STATE(2519)] = 50616, - [SMALL_STATE(2520)] = 50674, - [SMALL_STATE(2521)] = 50760, - [SMALL_STATE(2522)] = 50844, - [SMALL_STATE(2523)] = 50938, - [SMALL_STATE(2524)] = 51046, - [SMALL_STATE(2525)] = 51104, - [SMALL_STATE(2526)] = 51220, - [SMALL_STATE(2527)] = 51340, - [SMALL_STATE(2528)] = 51456, - [SMALL_STATE(2529)] = 51514, - [SMALL_STATE(2530)] = 51598, - [SMALL_STATE(2531)] = 51674, - [SMALL_STATE(2532)] = 51792, - [SMALL_STATE(2533)] = 51912, - [SMALL_STATE(2534)] = 52028, - [SMALL_STATE(2535)] = 52144, - [SMALL_STATE(2536)] = 52260, - [SMALL_STATE(2537)] = 52376, - [SMALL_STATE(2538)] = 52492, - [SMALL_STATE(2539)] = 52608, - [SMALL_STATE(2540)] = 52728, - [SMALL_STATE(2541)] = 52844, - [SMALL_STATE(2542)] = 52902, - [SMALL_STATE(2543)] = 52960, - [SMALL_STATE(2544)] = 53018, - [SMALL_STATE(2545)] = 53076, - [SMALL_STATE(2546)] = 53134, - [SMALL_STATE(2547)] = 53254, - [SMALL_STATE(2548)] = 53362, - [SMALL_STATE(2549)] = 53456, - [SMALL_STATE(2550)] = 53514, - [SMALL_STATE(2551)] = 53572, - [SMALL_STATE(2552)] = 53658, - [SMALL_STATE(2553)] = 53742, - [SMALL_STATE(2554)] = 53844, - [SMALL_STATE(2555)] = 53944, - [SMALL_STATE(2556)] = 54042, - [SMALL_STATE(2557)] = 54100, - [SMALL_STATE(2558)] = 54186, - [SMALL_STATE(2559)] = 54292, - [SMALL_STATE(2560)] = 54396, - [SMALL_STATE(2561)] = 54512, - [SMALL_STATE(2562)] = 54628, - [SMALL_STATE(2563)] = 54686, - [SMALL_STATE(2564)] = 54744, - [SMALL_STATE(2565)] = 54802, - [SMALL_STATE(2566)] = 54860, - [SMALL_STATE(2567)] = 54980, - [SMALL_STATE(2568)] = 55096, - [SMALL_STATE(2569)] = 55154, - [SMALL_STATE(2570)] = 55212, - [SMALL_STATE(2571)] = 55332, - [SMALL_STATE(2572)] = 55452, - [SMALL_STATE(2573)] = 55572, - [SMALL_STATE(2574)] = 55688, - [SMALL_STATE(2575)] = 55746, - [SMALL_STATE(2576)] = 55810, - [SMALL_STATE(2577)] = 55878, - [SMALL_STATE(2578)] = 55958, - [SMALL_STATE(2579)] = 56016, - [SMALL_STATE(2580)] = 56084, - [SMALL_STATE(2581)] = 56152, - [SMALL_STATE(2582)] = 56212, - [SMALL_STATE(2583)] = 56300, - [SMALL_STATE(2584)] = 56420, - [SMALL_STATE(2585)] = 56536, - [SMALL_STATE(2586)] = 56610, - [SMALL_STATE(2587)] = 56696, - [SMALL_STATE(2588)] = 56756, - [SMALL_STATE(2589)] = 56814, - [SMALL_STATE(2590)] = 56872, - [SMALL_STATE(2591)] = 56988, - [SMALL_STATE(2592)] = 57046, - [SMALL_STATE(2593)] = 57162, - [SMALL_STATE(2594)] = 57220, - [SMALL_STATE(2595)] = 57310, - [SMALL_STATE(2596)] = 57396, - [SMALL_STATE(2597)] = 57512, - [SMALL_STATE(2598)] = 57570, - [SMALL_STATE(2599)] = 57686, - [SMALL_STATE(2600)] = 57802, - [SMALL_STATE(2601)] = 57922, - [SMALL_STATE(2602)] = 57980, - [SMALL_STATE(2603)] = 58096, - [SMALL_STATE(2604)] = 58154, - [SMALL_STATE(2605)] = 58212, - [SMALL_STATE(2606)] = 58332, - [SMALL_STATE(2607)] = 58390, - [SMALL_STATE(2608)] = 58510, - [SMALL_STATE(2609)] = 58568, - [SMALL_STATE(2610)] = 58656, - [SMALL_STATE(2611)] = 58742, - [SMALL_STATE(2612)] = 58800, - [SMALL_STATE(2613)] = 58916, - [SMALL_STATE(2614)] = 59004, - [SMALL_STATE(2615)] = 59120, - [SMALL_STATE(2616)] = 59236, - [SMALL_STATE(2617)] = 59294, - [SMALL_STATE(2618)] = 59352, - [SMALL_STATE(2619)] = 59410, - [SMALL_STATE(2620)] = 59480, - [SMALL_STATE(2621)] = 59558, - [SMALL_STATE(2622)] = 59642, - [SMALL_STATE(2623)] = 59758, - [SMALL_STATE(2624)] = 59874, - [SMALL_STATE(2625)] = 59990, - [SMALL_STATE(2626)] = 60048, - [SMALL_STATE(2627)] = 60106, - [SMALL_STATE(2628)] = 60164, - [SMALL_STATE(2629)] = 60280, - [SMALL_STATE(2630)] = 60400, - [SMALL_STATE(2631)] = 60458, - [SMALL_STATE(2632)] = 60534, - [SMALL_STATE(2633)] = 60650, - [SMALL_STATE(2634)] = 60708, - [SMALL_STATE(2635)] = 60766, - [SMALL_STATE(2636)] = 60824, - [SMALL_STATE(2637)] = 60912, - [SMALL_STATE(2638)] = 61028, - [SMALL_STATE(2639)] = 61086, - [SMALL_STATE(2640)] = 61202, - [SMALL_STATE(2641)] = 61278, - [SMALL_STATE(2642)] = 61336, - [SMALL_STATE(2643)] = 61400, - [SMALL_STATE(2644)] = 61478, - [SMALL_STATE(2645)] = 61536, - [SMALL_STATE(2646)] = 61594, - [SMALL_STATE(2647)] = 61652, - [SMALL_STATE(2648)] = 61768, - [SMALL_STATE(2649)] = 61826, - [SMALL_STATE(2650)] = 61884, - [SMALL_STATE(2651)] = 61954, - [SMALL_STATE(2652)] = 62013, - [SMALL_STATE(2653)] = 62128, - [SMALL_STATE(2654)] = 62235, - [SMALL_STATE(2655)] = 62328, - [SMALL_STATE(2656)] = 62443, - [SMALL_STATE(2657)] = 62506, - [SMALL_STATE(2658)] = 62591, - [SMALL_STATE(2659)] = 62674, - [SMALL_STATE(2660)] = 62793, - [SMALL_STATE(2661)] = 62894, - [SMALL_STATE(2662)] = 62993, - [SMALL_STATE(2663)] = 63108, - [SMALL_STATE(2664)] = 63193, - [SMALL_STATE(2665)] = 63290, - [SMALL_STATE(2666)] = 63351, - [SMALL_STATE(2667)] = 63436, - [SMALL_STATE(2668)] = 63555, - [SMALL_STATE(2669)] = 63660, - [SMALL_STATE(2670)] = 63779, - [SMALL_STATE(2671)] = 63882, - [SMALL_STATE(2672)] = 63961, - [SMALL_STATE(2673)] = 64080, - [SMALL_STATE(2674)] = 64157, - [SMALL_STATE(2675)] = 64214, - [SMALL_STATE(2676)] = 64333, - [SMALL_STATE(2677)] = 64418, - [SMALL_STATE(2678)] = 64537, - [SMALL_STATE(2679)] = 64626, - [SMALL_STATE(2680)] = 64741, - [SMALL_STATE(2681)] = 64860, - [SMALL_STATE(2682)] = 64975, - [SMALL_STATE(2683)] = 65056, - [SMALL_STATE(2684)] = 65119, - [SMALL_STATE(2685)] = 65238, - [SMALL_STATE(2686)] = 65319, - [SMALL_STATE(2687)] = 65438, - [SMALL_STATE(2688)] = 65557, - [SMALL_STATE(2689)] = 65640, - [SMALL_STATE(2690)] = 65755, - [SMALL_STATE(2691)] = 65870, - [SMALL_STATE(2692)] = 65985, - [SMALL_STATE(2693)] = 66104, - [SMALL_STATE(2694)] = 66165, - [SMALL_STATE(2695)] = 66222, - [SMALL_STATE(2696)] = 66341, - [SMALL_STATE(2697)] = 66456, - [SMALL_STATE(2698)] = 66521, - [SMALL_STATE(2699)] = 66636, - [SMALL_STATE(2700)] = 66751, - [SMALL_STATE(2701)] = 66870, - [SMALL_STATE(2702)] = 66935, - [SMALL_STATE(2703)] = 66996, - [SMALL_STATE(2704)] = 67115, - [SMALL_STATE(2705)] = 67172, - [SMALL_STATE(2706)] = 67229, - [SMALL_STATE(2707)] = 67348, - [SMALL_STATE(2708)] = 67429, - [SMALL_STATE(2709)] = 67548, - [SMALL_STATE(2710)] = 67667, - [SMALL_STATE(2711)] = 67732, - [SMALL_STATE(2712)] = 67793, - [SMALL_STATE(2713)] = 67908, - [SMALL_STATE(2714)] = 68025, - [SMALL_STATE(2715)] = 68144, - [SMALL_STATE(2716)] = 68201, - [SMALL_STATE(2717)] = 68276, - [SMALL_STATE(2718)] = 68391, - [SMALL_STATE(2719)] = 68506, - [SMALL_STATE(2720)] = 68621, - [SMALL_STATE(2721)] = 68740, - [SMALL_STATE(2722)] = 68859, - [SMALL_STATE(2723)] = 68974, - [SMALL_STATE(2724)] = 69089, - [SMALL_STATE(2725)] = 69152, - [SMALL_STATE(2726)] = 69267, - [SMALL_STATE(2727)] = 69384, - [SMALL_STATE(2728)] = 69501, - [SMALL_STATE(2729)] = 69620, - [SMALL_STATE(2730)] = 69735, - [SMALL_STATE(2731)] = 69850, - [SMALL_STATE(2732)] = 69965, - [SMALL_STATE(2733)] = 70080, - [SMALL_STATE(2734)] = 70199, - [SMALL_STATE(2735)] = 70314, - [SMALL_STATE(2736)] = 70391, - [SMALL_STATE(2737)] = 70498, - [SMALL_STATE(2738)] = 70591, - [SMALL_STATE(2739)] = 70710, - [SMALL_STATE(2740)] = 70829, - [SMALL_STATE(2741)] = 70912, - [SMALL_STATE(2742)] = 71027, - [SMALL_STATE(2743)] = 71142, - [SMALL_STATE(2744)] = 71217, - [SMALL_STATE(2745)] = 71302, - [SMALL_STATE(2746)] = 71385, - [SMALL_STATE(2747)] = 71444, - [SMALL_STATE(2748)] = 71503, - [SMALL_STATE(2749)] = 71604, - [SMALL_STATE(2750)] = 71703, - [SMALL_STATE(2751)] = 71784, - [SMALL_STATE(2752)] = 71853, - [SMALL_STATE(2753)] = 71950, - [SMALL_STATE(2754)] = 72035, - [SMALL_STATE(2755)] = 72150, - [SMALL_STATE(2756)] = 72269, - [SMALL_STATE(2757)] = 72374, - [SMALL_STATE(2758)] = 72477, - [SMALL_STATE(2759)] = 72592, - [SMALL_STATE(2760)] = 72671, - [SMALL_STATE(2761)] = 72786, - [SMALL_STATE(2762)] = 72905, - [SMALL_STATE(2763)] = 72994, - [SMALL_STATE(2764)] = 73109, - [SMALL_STATE(2765)] = 73224, - [SMALL_STATE(2766)] = 73339, - [SMALL_STATE(2767)] = 73426, - [SMALL_STATE(2768)] = 73545, - [SMALL_STATE(2769)] = 73612, - [SMALL_STATE(2770)] = 73729, - [SMALL_STATE(2771)] = 73792, - [SMALL_STATE(2772)] = 73907, - [SMALL_STATE(2773)] = 74022, - [SMALL_STATE(2774)] = 74089, - [SMALL_STATE(2775)] = 74158, - [SMALL_STATE(2776)] = 74215, - [SMALL_STATE(2777)] = 74296, - [SMALL_STATE(2778)] = 74415, - [SMALL_STATE(2779)] = 74532, - [SMALL_STATE(2780)] = 74610, - [SMALL_STATE(2781)] = 74678, - [SMALL_STATE(2782)] = 74738, - [SMALL_STATE(2783)] = 74802, - [SMALL_STATE(2784)] = 74918, - [SMALL_STATE(2785)] = 75008, - [SMALL_STATE(2786)] = 75070, - [SMALL_STATE(2787)] = 75138, - [SMALL_STATE(2788)] = 75220, - [SMALL_STATE(2789)] = 75334, - [SMALL_STATE(2790)] = 75390, - [SMALL_STATE(2791)] = 75460, + [SMALL_STATE(2154)] = 20171, + [SMALL_STATE(2155)] = 20245, + [SMALL_STATE(2156)] = 20319, + [SMALL_STATE(2157)] = 20397, + [SMALL_STATE(2158)] = 20475, + [SMALL_STATE(2159)] = 20549, + [SMALL_STATE(2160)] = 20623, + [SMALL_STATE(2161)] = 20697, + [SMALL_STATE(2162)] = 20771, + [SMALL_STATE(2163)] = 20843, + [SMALL_STATE(2164)] = 20917, + [SMALL_STATE(2165)] = 20991, + [SMALL_STATE(2166)] = 21065, + [SMALL_STATE(2167)] = 21141, + [SMALL_STATE(2168)] = 21215, + [SMALL_STATE(2169)] = 21289, + [SMALL_STATE(2170)] = 21365, + [SMALL_STATE(2171)] = 21438, + [SMALL_STATE(2172)] = 21561, + [SMALL_STATE(2173)] = 21684, + [SMALL_STATE(2174)] = 21757, + [SMALL_STATE(2175)] = 21880, + [SMALL_STATE(2176)] = 22003, + [SMALL_STATE(2177)] = 22076, + [SMALL_STATE(2178)] = 22149, + [SMALL_STATE(2179)] = 22222, + [SMALL_STATE(2180)] = 22295, + [SMALL_STATE(2181)] = 22366, + [SMALL_STATE(2182)] = 22439, + [SMALL_STATE(2183)] = 22562, + [SMALL_STATE(2184)] = 22635, + [SMALL_STATE(2185)] = 22708, + [SMALL_STATE(2186)] = 22831, + [SMALL_STATE(2187)] = 22954, + [SMALL_STATE(2188)] = 23027, + [SMALL_STATE(2189)] = 23100, + [SMALL_STATE(2190)] = 23171, + [SMALL_STATE(2191)] = 23244, + [SMALL_STATE(2192)] = 23317, + [SMALL_STATE(2193)] = 23440, + [SMALL_STATE(2194)] = 23563, + [SMALL_STATE(2195)] = 23636, + [SMALL_STATE(2196)] = 23709, + [SMALL_STATE(2197)] = 23832, + [SMALL_STATE(2198)] = 23955, + [SMALL_STATE(2199)] = 24078, + [SMALL_STATE(2200)] = 24201, + [SMALL_STATE(2201)] = 24274, + [SMALL_STATE(2202)] = 24347, + [SMALL_STATE(2203)] = 24422, + [SMALL_STATE(2204)] = 24495, + [SMALL_STATE(2205)] = 24618, + [SMALL_STATE(2206)] = 24741, + [SMALL_STATE(2207)] = 24864, + [SMALL_STATE(2208)] = 24987, + [SMALL_STATE(2209)] = 25060, + [SMALL_STATE(2210)] = 25183, + [SMALL_STATE(2211)] = 25306, + [SMALL_STATE(2212)] = 25379, + [SMALL_STATE(2213)] = 25452, + [SMALL_STATE(2214)] = 25525, + [SMALL_STATE(2215)] = 25648, + [SMALL_STATE(2216)] = 25771, + [SMALL_STATE(2217)] = 25844, + [SMALL_STATE(2218)] = 25967, + [SMALL_STATE(2219)] = 26090, + [SMALL_STATE(2220)] = 26213, + [SMALL_STATE(2221)] = 26336, + [SMALL_STATE(2222)] = 26459, + [SMALL_STATE(2223)] = 26530, + [SMALL_STATE(2224)] = 26653, + [SMALL_STATE(2225)] = 26723, + [SMALL_STATE(2226)] = 26793, + [SMALL_STATE(2227)] = 26863, + [SMALL_STATE(2228)] = 26933, + [SMALL_STATE(2229)] = 27003, + [SMALL_STATE(2230)] = 27073, + [SMALL_STATE(2231)] = 27143, + [SMALL_STATE(2232)] = 27213, + [SMALL_STATE(2233)] = 27283, + [SMALL_STATE(2234)] = 27353, + [SMALL_STATE(2235)] = 27472, + [SMALL_STATE(2236)] = 27591, + [SMALL_STATE(2237)] = 27710, + [SMALL_STATE(2238)] = 27829, + [SMALL_STATE(2239)] = 27948, + [SMALL_STATE(2240)] = 28067, + [SMALL_STATE(2241)] = 28186, + [SMALL_STATE(2242)] = 28305, + [SMALL_STATE(2243)] = 28424, + [SMALL_STATE(2244)] = 28543, + [SMALL_STATE(2245)] = 28667, + [SMALL_STATE(2246)] = 28791, + [SMALL_STATE(2247)] = 28915, + [SMALL_STATE(2248)] = 29039, + [SMALL_STATE(2249)] = 29163, + [SMALL_STATE(2250)] = 29280, + [SMALL_STATE(2251)] = 29397, + [SMALL_STATE(2252)] = 29514, + [SMALL_STATE(2253)] = 29629, + [SMALL_STATE(2254)] = 29746, + [SMALL_STATE(2255)] = 29863, + [SMALL_STATE(2256)] = 29980, + [SMALL_STATE(2257)] = 30091, + [SMALL_STATE(2258)] = 30208, + [SMALL_STATE(2259)] = 30319, + [SMALL_STATE(2260)] = 30430, + [SMALL_STATE(2261)] = 30547, + [SMALL_STATE(2262)] = 30664, + [SMALL_STATE(2263)] = 30781, + [SMALL_STATE(2264)] = 30898, + [SMALL_STATE(2265)] = 31009, + [SMALL_STATE(2266)] = 31126, + [SMALL_STATE(2267)] = 31243, + [SMALL_STATE(2268)] = 31360, + [SMALL_STATE(2269)] = 31477, + [SMALL_STATE(2270)] = 31594, + [SMALL_STATE(2271)] = 31711, + [SMALL_STATE(2272)] = 31828, + [SMALL_STATE(2273)] = 31945, + [SMALL_STATE(2274)] = 32056, + [SMALL_STATE(2275)] = 32167, + [SMALL_STATE(2276)] = 32284, + [SMALL_STATE(2277)] = 32401, + [SMALL_STATE(2278)] = 32518, + [SMALL_STATE(2279)] = 32635, + [SMALL_STATE(2280)] = 32746, + [SMALL_STATE(2281)] = 32863, + [SMALL_STATE(2282)] = 32980, + [SMALL_STATE(2283)] = 33097, + [SMALL_STATE(2284)] = 33214, + [SMALL_STATE(2285)] = 33331, + [SMALL_STATE(2286)] = 33448, + [SMALL_STATE(2287)] = 33565, + [SMALL_STATE(2288)] = 33682, + [SMALL_STATE(2289)] = 33799, + [SMALL_STATE(2290)] = 33915, + [SMALL_STATE(2291)] = 33977, + [SMALL_STATE(2292)] = 34091, + [SMALL_STATE(2293)] = 34153, + [SMALL_STATE(2294)] = 34222, + [SMALL_STATE(2295)] = 34293, + [SMALL_STATE(2296)] = 34370, + [SMALL_STATE(2297)] = 34473, + [SMALL_STATE(2298)] = 34544, + [SMALL_STATE(2299)] = 34615, + [SMALL_STATE(2300)] = 34681, + [SMALL_STATE(2301)] = 34743, + [SMALL_STATE(2302)] = 34803, + [SMALL_STATE(2303)] = 34865, + [SMALL_STATE(2304)] = 34925, + [SMALL_STATE(2305)] = 34987, + [SMALL_STATE(2306)] = 35047, + [SMALL_STATE(2307)] = 35107, + [SMALL_STATE(2308)] = 35171, + [SMALL_STATE(2309)] = 35231, + [SMALL_STATE(2310)] = 35295, + [SMALL_STATE(2311)] = 35355, + [SMALL_STATE(2312)] = 35415, + [SMALL_STATE(2313)] = 35481, + [SMALL_STATE(2314)] = 35547, + [SMALL_STATE(2315)] = 35613, + [SMALL_STATE(2316)] = 35677, + [SMALL_STATE(2317)] = 35736, + [SMALL_STATE(2318)] = 35795, + [SMALL_STATE(2319)] = 35854, + [SMALL_STATE(2320)] = 35913, + [SMALL_STATE(2321)] = 35972, + [SMALL_STATE(2322)] = 36031, + [SMALL_STATE(2323)] = 36090, + [SMALL_STATE(2324)] = 36155, + [SMALL_STATE(2325)] = 36214, + [SMALL_STATE(2326)] = 36273, + [SMALL_STATE(2327)] = 36336, + [SMALL_STATE(2328)] = 36395, + [SMALL_STATE(2329)] = 36460, + [SMALL_STATE(2330)] = 36527, + [SMALL_STATE(2331)] = 36586, + [SMALL_STATE(2332)] = 36647, + [SMALL_STATE(2333)] = 36706, + [SMALL_STATE(2334)] = 36765, + [SMALL_STATE(2335)] = 36832, + [SMALL_STATE(2336)] = 36891, + [SMALL_STATE(2337)] = 36950, + [SMALL_STATE(2338)] = 37009, + [SMALL_STATE(2339)] = 37104, + [SMALL_STATE(2340)] = 37163, + [SMALL_STATE(2341)] = 37222, + [SMALL_STATE(2342)] = 37283, + [SMALL_STATE(2343)] = 37342, + [SMALL_STATE(2344)] = 37401, + [SMALL_STATE(2345)] = 37460, + [SMALL_STATE(2346)] = 37519, + [SMALL_STATE(2347)] = 37578, + [SMALL_STATE(2348)] = 37637, + [SMALL_STATE(2349)] = 37696, + [SMALL_STATE(2350)] = 37755, + [SMALL_STATE(2351)] = 37818, + [SMALL_STATE(2352)] = 37877, + [SMALL_STATE(2353)] = 37936, + [SMALL_STATE(2354)] = 38001, + [SMALL_STATE(2355)] = 38060, + [SMALL_STATE(2356)] = 38121, + [SMALL_STATE(2357)] = 38180, + [SMALL_STATE(2358)] = 38239, + [SMALL_STATE(2359)] = 38304, + [SMALL_STATE(2360)] = 38363, + [SMALL_STATE(2361)] = 38422, + [SMALL_STATE(2362)] = 38547, + [SMALL_STATE(2363)] = 38606, + [SMALL_STATE(2364)] = 38731, + [SMALL_STATE(2365)] = 38856, + [SMALL_STATE(2366)] = 38915, + [SMALL_STATE(2367)] = 39040, + [SMALL_STATE(2368)] = 39099, + [SMALL_STATE(2369)] = 39158, + [SMALL_STATE(2370)] = 39217, + [SMALL_STATE(2371)] = 39284, + [SMALL_STATE(2372)] = 39343, + [SMALL_STATE(2373)] = 39402, + [SMALL_STATE(2374)] = 39461, + [SMALL_STATE(2375)] = 39520, + [SMALL_STATE(2376)] = 39579, + [SMALL_STATE(2377)] = 39638, + [SMALL_STATE(2378)] = 39697, + [SMALL_STATE(2379)] = 39756, + [SMALL_STATE(2380)] = 39815, + [SMALL_STATE(2381)] = 39874, + [SMALL_STATE(2382)] = 39999, + [SMALL_STATE(2383)] = 40064, + [SMALL_STATE(2384)] = 40129, + [SMALL_STATE(2385)] = 40188, + [SMALL_STATE(2386)] = 40249, + [SMALL_STATE(2387)] = 40308, + [SMALL_STATE(2388)] = 40367, + [SMALL_STATE(2389)] = 40426, + [SMALL_STATE(2390)] = 40485, + [SMALL_STATE(2391)] = 40544, + [SMALL_STATE(2392)] = 40639, + [SMALL_STATE(2393)] = 40698, + [SMALL_STATE(2394)] = 40757, + [SMALL_STATE(2395)] = 40816, + [SMALL_STATE(2396)] = 40875, + [SMALL_STATE(2397)] = 40934, + [SMALL_STATE(2398)] = 40993, + [SMALL_STATE(2399)] = 41052, + [SMALL_STATE(2400)] = 41111, + [SMALL_STATE(2401)] = 41236, + [SMALL_STATE(2402)] = 41361, + [SMALL_STATE(2403)] = 41420, + [SMALL_STATE(2404)] = 41481, + [SMALL_STATE(2405)] = 41546, + [SMALL_STATE(2406)] = 41605, + [SMALL_STATE(2407)] = 41664, + [SMALL_STATE(2408)] = 41723, + [SMALL_STATE(2409)] = 41782, + [SMALL_STATE(2410)] = 41841, + [SMALL_STATE(2411)] = 41904, + [SMALL_STATE(2412)] = 41963, + [SMALL_STATE(2413)] = 42022, + [SMALL_STATE(2414)] = 42081, + [SMALL_STATE(2415)] = 42140, + [SMALL_STATE(2416)] = 42205, + [SMALL_STATE(2417)] = 42266, + [SMALL_STATE(2418)] = 42361, + [SMALL_STATE(2419)] = 42456, + [SMALL_STATE(2420)] = 42521, + [SMALL_STATE(2421)] = 42580, + [SMALL_STATE(2422)] = 42705, + [SMALL_STATE(2423)] = 42764, + [SMALL_STATE(2424)] = 42827, + [SMALL_STATE(2425)] = 42952, + [SMALL_STATE(2426)] = 43013, + [SMALL_STATE(2427)] = 43072, + [SMALL_STATE(2428)] = 43131, + [SMALL_STATE(2429)] = 43190, + [SMALL_STATE(2430)] = 43249, + [SMALL_STATE(2431)] = 43310, + [SMALL_STATE(2432)] = 43375, + [SMALL_STATE(2433)] = 43434, + [SMALL_STATE(2434)] = 43495, + [SMALL_STATE(2435)] = 43554, + [SMALL_STATE(2436)] = 43613, + [SMALL_STATE(2437)] = 43672, + [SMALL_STATE(2438)] = 43737, + [SMALL_STATE(2439)] = 43802, + [SMALL_STATE(2440)] = 43863, + [SMALL_STATE(2441)] = 43924, + [SMALL_STATE(2442)] = 43983, + [SMALL_STATE(2443)] = 44044, + [SMALL_STATE(2444)] = 44103, + [SMALL_STATE(2445)] = 44162, + [SMALL_STATE(2446)] = 44221, + [SMALL_STATE(2447)] = 44316, + [SMALL_STATE(2448)] = 44384, + [SMALL_STATE(2449)] = 44504, + [SMALL_STATE(2450)] = 44620, + [SMALL_STATE(2451)] = 44736, + [SMALL_STATE(2452)] = 44824, + [SMALL_STATE(2453)] = 44940, + [SMALL_STATE(2454)] = 45030, + [SMALL_STATE(2455)] = 45146, + [SMALL_STATE(2456)] = 45266, + [SMALL_STATE(2457)] = 45382, + [SMALL_STATE(2458)] = 45440, + [SMALL_STATE(2459)] = 45498, + [SMALL_STATE(2460)] = 45556, + [SMALL_STATE(2461)] = 45614, + [SMALL_STATE(2462)] = 45730, + [SMALL_STATE(2463)] = 45846, + [SMALL_STATE(2464)] = 45904, + [SMALL_STATE(2465)] = 45984, + [SMALL_STATE(2466)] = 46042, + [SMALL_STATE(2467)] = 46100, + [SMALL_STATE(2468)] = 46158, + [SMALL_STATE(2469)] = 46222, + [SMALL_STATE(2470)] = 46308, + [SMALL_STATE(2471)] = 46424, + [SMALL_STATE(2472)] = 46540, + [SMALL_STATE(2473)] = 46630, + [SMALL_STATE(2474)] = 46748, + [SMALL_STATE(2475)] = 46868, + [SMALL_STATE(2476)] = 46948, + [SMALL_STATE(2477)] = 47052, + [SMALL_STATE(2478)] = 47158, + [SMALL_STATE(2479)] = 47244, + [SMALL_STATE(2480)] = 47342, + [SMALL_STATE(2481)] = 47442, + [SMALL_STATE(2482)] = 47544, + [SMALL_STATE(2483)] = 47628, + [SMALL_STATE(2484)] = 47732, + [SMALL_STATE(2485)] = 47848, + [SMALL_STATE(2486)] = 47934, + [SMALL_STATE(2487)] = 48040, + [SMALL_STATE(2488)] = 48128, + [SMALL_STATE(2489)] = 48244, + [SMALL_STATE(2490)] = 48330, + [SMALL_STATE(2491)] = 48428, + [SMALL_STATE(2492)] = 48528, + [SMALL_STATE(2493)] = 48630, + [SMALL_STATE(2494)] = 48714, + [SMALL_STATE(2495)] = 48800, + [SMALL_STATE(2496)] = 48894, + [SMALL_STATE(2497)] = 48980, + [SMALL_STATE(2498)] = 49074, + [SMALL_STATE(2499)] = 49182, + [SMALL_STATE(2500)] = 49298, + [SMALL_STATE(2501)] = 49418, + [SMALL_STATE(2502)] = 49526, + [SMALL_STATE(2503)] = 49584, + [SMALL_STATE(2504)] = 49704, + [SMALL_STATE(2505)] = 49788, + [SMALL_STATE(2506)] = 49904, + [SMALL_STATE(2507)] = 50020, + [SMALL_STATE(2508)] = 50108, + [SMALL_STATE(2509)] = 50194, + [SMALL_STATE(2510)] = 50314, + [SMALL_STATE(2511)] = 50400, + [SMALL_STATE(2512)] = 50520, + [SMALL_STATE(2513)] = 50578, + [SMALL_STATE(2514)] = 50686, + [SMALL_STATE(2515)] = 50780, + [SMALL_STATE(2516)] = 50866, + [SMALL_STATE(2517)] = 50924, + [SMALL_STATE(2518)] = 50982, + [SMALL_STATE(2519)] = 51040, + [SMALL_STATE(2520)] = 51098, + [SMALL_STATE(2521)] = 51156, + [SMALL_STATE(2522)] = 51214, + [SMALL_STATE(2523)] = 51334, + [SMALL_STATE(2524)] = 51392, + [SMALL_STATE(2525)] = 51466, + [SMALL_STATE(2526)] = 51524, + [SMALL_STATE(2527)] = 51640, + [SMALL_STATE(2528)] = 51698, + [SMALL_STATE(2529)] = 51756, + [SMALL_STATE(2530)] = 51872, + [SMALL_STATE(2531)] = 51938, + [SMALL_STATE(2532)] = 51996, + [SMALL_STATE(2533)] = 52100, + [SMALL_STATE(2534)] = 52188, + [SMALL_STATE(2535)] = 52304, + [SMALL_STATE(2536)] = 52406, + [SMALL_STATE(2537)] = 52522, + [SMALL_STATE(2538)] = 52606, + [SMALL_STATE(2539)] = 52722, + [SMALL_STATE(2540)] = 52780, + [SMALL_STATE(2541)] = 52896, + [SMALL_STATE(2542)] = 53012, + [SMALL_STATE(2543)] = 53128, + [SMALL_STATE(2544)] = 53206, + [SMALL_STATE(2545)] = 53290, + [SMALL_STATE(2546)] = 53406, + [SMALL_STATE(2547)] = 53522, + [SMALL_STATE(2548)] = 53642, + [SMALL_STATE(2549)] = 53700, + [SMALL_STATE(2550)] = 53758, + [SMALL_STATE(2551)] = 53820, + [SMALL_STATE(2552)] = 53936, + [SMALL_STATE(2553)] = 54056, + [SMALL_STATE(2554)] = 54140, + [SMALL_STATE(2555)] = 54200, + [SMALL_STATE(2556)] = 54320, + [SMALL_STATE(2557)] = 54378, + [SMALL_STATE(2558)] = 54498, + [SMALL_STATE(2559)] = 54584, + [SMALL_STATE(2560)] = 54684, + [SMALL_STATE(2561)] = 54804, + [SMALL_STATE(2562)] = 54882, + [SMALL_STATE(2563)] = 54940, + [SMALL_STATE(2564)] = 54998, + [SMALL_STATE(2565)] = 55056, + [SMALL_STATE(2566)] = 55114, + [SMALL_STATE(2567)] = 55172, + [SMALL_STATE(2568)] = 55230, + [SMALL_STATE(2569)] = 55288, + [SMALL_STATE(2570)] = 55346, + [SMALL_STATE(2571)] = 55466, + [SMALL_STATE(2572)] = 55586, + [SMALL_STATE(2573)] = 55648, + [SMALL_STATE(2574)] = 55706, + [SMALL_STATE(2575)] = 55764, + [SMALL_STATE(2576)] = 55840, + [SMALL_STATE(2577)] = 55898, + [SMALL_STATE(2578)] = 55956, + [SMALL_STATE(2579)] = 56014, + [SMALL_STATE(2580)] = 56082, + [SMALL_STATE(2581)] = 56198, + [SMALL_STATE(2582)] = 56258, + [SMALL_STATE(2583)] = 56326, + [SMALL_STATE(2584)] = 56442, + [SMALL_STATE(2585)] = 56558, + [SMALL_STATE(2586)] = 56674, + [SMALL_STATE(2587)] = 56752, + [SMALL_STATE(2588)] = 56810, + [SMALL_STATE(2589)] = 56868, + [SMALL_STATE(2590)] = 56984, + [SMALL_STATE(2591)] = 57100, + [SMALL_STATE(2592)] = 57188, + [SMALL_STATE(2593)] = 57246, + [SMALL_STATE(2594)] = 57362, + [SMALL_STATE(2595)] = 57420, + [SMALL_STATE(2596)] = 57536, + [SMALL_STATE(2597)] = 57652, + [SMALL_STATE(2598)] = 57722, + [SMALL_STATE(2599)] = 57802, + [SMALL_STATE(2600)] = 57918, + [SMALL_STATE(2601)] = 58038, + [SMALL_STATE(2602)] = 58128, + [SMALL_STATE(2603)] = 58244, + [SMALL_STATE(2604)] = 58320, + [SMALL_STATE(2605)] = 58406, + [SMALL_STATE(2606)] = 58494, + [SMALL_STATE(2607)] = 58552, + [SMALL_STATE(2608)] = 58628, + [SMALL_STATE(2609)] = 58686, + [SMALL_STATE(2610)] = 58744, + [SMALL_STATE(2611)] = 58802, + [SMALL_STATE(2612)] = 58860, + [SMALL_STATE(2613)] = 58918, + [SMALL_STATE(2614)] = 58976, + [SMALL_STATE(2615)] = 59092, + [SMALL_STATE(2616)] = 59150, + [SMALL_STATE(2617)] = 59208, + [SMALL_STATE(2618)] = 59266, + [SMALL_STATE(2619)] = 59326, + [SMALL_STATE(2620)] = 59390, + [SMALL_STATE(2621)] = 59448, + [SMALL_STATE(2622)] = 59510, + [SMALL_STATE(2623)] = 59570, + [SMALL_STATE(2624)] = 59688, + [SMALL_STATE(2625)] = 59804, + [SMALL_STATE(2626)] = 59910, + [SMALL_STATE(2627)] = 59980, + [SMALL_STATE(2628)] = 60038, + [SMALL_STATE(2629)] = 60158, + [SMALL_STATE(2630)] = 60216, + [SMALL_STATE(2631)] = 60274, + [SMALL_STATE(2632)] = 60332, + [SMALL_STATE(2633)] = 60390, + [SMALL_STATE(2634)] = 60510, + [SMALL_STATE(2635)] = 60630, + [SMALL_STATE(2636)] = 60694, + [SMALL_STATE(2637)] = 60752, + [SMALL_STATE(2638)] = 60810, + [SMALL_STATE(2639)] = 60908, + [SMALL_STATE(2640)] = 61028, + [SMALL_STATE(2641)] = 61088, + [SMALL_STATE(2642)] = 61204, + [SMALL_STATE(2643)] = 61262, + [SMALL_STATE(2644)] = 61332, + [SMALL_STATE(2645)] = 61448, + [SMALL_STATE(2646)] = 61564, + [SMALL_STATE(2647)] = 61622, + [SMALL_STATE(2648)] = 61680, + [SMALL_STATE(2649)] = 61796, + [SMALL_STATE(2650)] = 61912, + [SMALL_STATE(2651)] = 61970, + [SMALL_STATE(2652)] = 62028, + [SMALL_STATE(2653)] = 62085, + [SMALL_STATE(2654)] = 62200, + [SMALL_STATE(2655)] = 62279, + [SMALL_STATE(2656)] = 62382, + [SMALL_STATE(2657)] = 62487, + [SMALL_STATE(2658)] = 62572, + [SMALL_STATE(2659)] = 62669, + [SMALL_STATE(2660)] = 62768, + [SMALL_STATE(2661)] = 62869, + [SMALL_STATE(2662)] = 62952, + [SMALL_STATE(2663)] = 63037, + [SMALL_STATE(2664)] = 63130, + [SMALL_STATE(2665)] = 63245, + [SMALL_STATE(2666)] = 63352, + [SMALL_STATE(2667)] = 63467, + [SMALL_STATE(2668)] = 63532, + [SMALL_STATE(2669)] = 63647, + [SMALL_STATE(2670)] = 63766, + [SMALL_STATE(2671)] = 63885, + [SMALL_STATE(2672)] = 64002, + [SMALL_STATE(2673)] = 64121, + [SMALL_STATE(2674)] = 64180, + [SMALL_STATE(2675)] = 64239, + [SMALL_STATE(2676)] = 64316, + [SMALL_STATE(2677)] = 64397, + [SMALL_STATE(2678)] = 64486, + [SMALL_STATE(2679)] = 64601, + [SMALL_STATE(2680)] = 64720, + [SMALL_STATE(2681)] = 64835, + [SMALL_STATE(2682)] = 64950, + [SMALL_STATE(2683)] = 65065, + [SMALL_STATE(2684)] = 65180, + [SMALL_STATE(2685)] = 65295, + [SMALL_STATE(2686)] = 65358, + [SMALL_STATE(2687)] = 65439, + [SMALL_STATE(2688)] = 65554, + [SMALL_STATE(2689)] = 65619, + [SMALL_STATE(2690)] = 65738, + [SMALL_STATE(2691)] = 65821, + [SMALL_STATE(2692)] = 65902, + [SMALL_STATE(2693)] = 65987, + [SMALL_STATE(2694)] = 66106, + [SMALL_STATE(2695)] = 66163, + [SMALL_STATE(2696)] = 66278, + [SMALL_STATE(2697)] = 66335, + [SMALL_STATE(2698)] = 66454, + [SMALL_STATE(2699)] = 66569, + [SMALL_STATE(2700)] = 66634, + [SMALL_STATE(2701)] = 66753, + [SMALL_STATE(2702)] = 66872, + [SMALL_STATE(2703)] = 66991, + [SMALL_STATE(2704)] = 67106, + [SMALL_STATE(2705)] = 67223, + [SMALL_STATE(2706)] = 67342, + [SMALL_STATE(2707)] = 67461, + [SMALL_STATE(2708)] = 67518, + [SMALL_STATE(2709)] = 67633, + [SMALL_STATE(2710)] = 67694, + [SMALL_STATE(2711)] = 67813, + [SMALL_STATE(2712)] = 67932, + [SMALL_STATE(2713)] = 68051, + [SMALL_STATE(2714)] = 68112, + [SMALL_STATE(2715)] = 68171, + [SMALL_STATE(2716)] = 68286, + [SMALL_STATE(2717)] = 68347, + [SMALL_STATE(2718)] = 68428, + [SMALL_STATE(2719)] = 68503, + [SMALL_STATE(2720)] = 68584, + [SMALL_STATE(2721)] = 68703, + [SMALL_STATE(2722)] = 68822, + [SMALL_STATE(2723)] = 68939, + [SMALL_STATE(2724)] = 69000, + [SMALL_STATE(2725)] = 69057, + [SMALL_STATE(2726)] = 69176, + [SMALL_STATE(2727)] = 69295, + [SMALL_STATE(2728)] = 69414, + [SMALL_STATE(2729)] = 69477, + [SMALL_STATE(2730)] = 69596, + [SMALL_STATE(2731)] = 69715, + [SMALL_STATE(2732)] = 69834, + [SMALL_STATE(2733)] = 69949, + [SMALL_STATE(2734)] = 70068, + [SMALL_STATE(2735)] = 70183, + [SMALL_STATE(2736)] = 70240, + [SMALL_STATE(2737)] = 70357, + [SMALL_STATE(2738)] = 70472, + [SMALL_STATE(2739)] = 70589, + [SMALL_STATE(2740)] = 70658, + [SMALL_STATE(2741)] = 70773, + [SMALL_STATE(2742)] = 70858, + [SMALL_STATE(2743)] = 70921, + [SMALL_STATE(2744)] = 71040, + [SMALL_STATE(2745)] = 71127, + [SMALL_STATE(2746)] = 71242, + [SMALL_STATE(2747)] = 71357, + [SMALL_STATE(2748)] = 71472, + [SMALL_STATE(2749)] = 71549, + [SMALL_STATE(2750)] = 71664, + [SMALL_STATE(2751)] = 71779, + [SMALL_STATE(2752)] = 71894, + [SMALL_STATE(2753)] = 71977, + [SMALL_STATE(2754)] = 72046, + [SMALL_STATE(2755)] = 72165, + [SMALL_STATE(2756)] = 72284, + [SMALL_STATE(2757)] = 72399, + [SMALL_STATE(2758)] = 72514, + [SMALL_STATE(2759)] = 72589, + [SMALL_STATE(2760)] = 72704, + [SMALL_STATE(2761)] = 72819, + [SMALL_STATE(2762)] = 72926, + [SMALL_STATE(2763)] = 73041, + [SMALL_STATE(2764)] = 73134, + [SMALL_STATE(2765)] = 73249, + [SMALL_STATE(2766)] = 73364, + [SMALL_STATE(2767)] = 73431, + [SMALL_STATE(2768)] = 73498, + [SMALL_STATE(2769)] = 73617, + [SMALL_STATE(2770)] = 73706, + [SMALL_STATE(2771)] = 73785, + [SMALL_STATE(2772)] = 73888, + [SMALL_STATE(2773)] = 73993, + [SMALL_STATE(2774)] = 74078, + [SMALL_STATE(2775)] = 74163, + [SMALL_STATE(2776)] = 74226, + [SMALL_STATE(2777)] = 74323, + [SMALL_STATE(2778)] = 74422, + [SMALL_STATE(2779)] = 74523, + [SMALL_STATE(2780)] = 74606, + [SMALL_STATE(2781)] = 74702, + [SMALL_STATE(2782)] = 74760, + [SMALL_STATE(2783)] = 74824, + [SMALL_STATE(2784)] = 74940, + [SMALL_STATE(2785)] = 74996, + [SMALL_STATE(2786)] = 75052, + [SMALL_STATE(2787)] = 75108, + [SMALL_STATE(2788)] = 75190, + [SMALL_STATE(2789)] = 75268, + [SMALL_STATE(2790)] = 75382, + [SMALL_STATE(2791)] = 75440, [SMALL_STATE(2792)] = 75530, - [SMALL_STATE(2793)] = 75586, - [SMALL_STATE(2794)] = 75676, - [SMALL_STATE(2795)] = 75732, - [SMALL_STATE(2796)] = 75790, - [SMALL_STATE(2797)] = 75846, - [SMALL_STATE(2798)] = 75902, - [SMALL_STATE(2799)] = 75958, - [SMALL_STATE(2800)] = 76072, - [SMALL_STATE(2801)] = 76140, - [SMALL_STATE(2802)] = 76196, - [SMALL_STATE(2803)] = 76252, - [SMALL_STATE(2804)] = 76308, - [SMALL_STATE(2805)] = 76364, - [SMALL_STATE(2806)] = 76420, - [SMALL_STATE(2807)] = 76510, - [SMALL_STATE(2808)] = 76624, - [SMALL_STATE(2809)] = 76706, - [SMALL_STATE(2810)] = 76820, - [SMALL_STATE(2811)] = 76900, - [SMALL_STATE(2812)] = 76978, - [SMALL_STATE(2813)] = 77092, - [SMALL_STATE(2814)] = 77160, - [SMALL_STATE(2815)] = 77216, - [SMALL_STATE(2816)] = 77272, - [SMALL_STATE(2817)] = 77328, - [SMALL_STATE(2818)] = 77384, - [SMALL_STATE(2819)] = 77440, - [SMALL_STATE(2820)] = 77496, - [SMALL_STATE(2821)] = 77552, - [SMALL_STATE(2822)] = 77608, - [SMALL_STATE(2823)] = 77664, - [SMALL_STATE(2824)] = 77720, - [SMALL_STATE(2825)] = 77802, - [SMALL_STATE(2826)] = 77876, - [SMALL_STATE(2827)] = 77932, - [SMALL_STATE(2828)] = 77988, - [SMALL_STATE(2829)] = 78044, - [SMALL_STATE(2830)] = 78100, - [SMALL_STATE(2831)] = 78156, - [SMALL_STATE(2832)] = 78212, - [SMALL_STATE(2833)] = 78268, - [SMALL_STATE(2834)] = 78358, - [SMALL_STATE(2835)] = 78474, - [SMALL_STATE(2836)] = 78530, - [SMALL_STATE(2837)] = 78644, - [SMALL_STATE(2838)] = 78712, - [SMALL_STATE(2839)] = 78826, - [SMALL_STATE(2840)] = 78884, - [SMALL_STATE(2841)] = 78998, - [SMALL_STATE(2842)] = 79054, - [SMALL_STATE(2843)] = 79112, - [SMALL_STATE(2844)] = 79168, - [SMALL_STATE(2845)] = 79226, - [SMALL_STATE(2846)] = 79282, - [SMALL_STATE(2847)] = 79370, - [SMALL_STATE(2848)] = 79484, - [SMALL_STATE(2849)] = 79562, - [SMALL_STATE(2850)] = 79644, - [SMALL_STATE(2851)] = 79700, - [SMALL_STATE(2852)] = 79762, - [SMALL_STATE(2853)] = 79864, - [SMALL_STATE(2854)] = 79932, - [SMALL_STATE(2855)] = 80000, - [SMALL_STATE(2856)] = 80090, - [SMALL_STATE(2857)] = 80194, - [SMALL_STATE(2858)] = 80250, - [SMALL_STATE(2859)] = 80306, - [SMALL_STATE(2860)] = 80364, - [SMALL_STATE(2861)] = 80420, - [SMALL_STATE(2862)] = 80476, - [SMALL_STATE(2863)] = 80532, - [SMALL_STATE(2864)] = 80594, - [SMALL_STATE(2865)] = 80656, - [SMALL_STATE(2866)] = 80714, - [SMALL_STATE(2867)] = 80772, - [SMALL_STATE(2868)] = 80828, - [SMALL_STATE(2869)] = 80942, - [SMALL_STATE(2870)] = 80998, - [SMALL_STATE(2871)] = 81054, - [SMALL_STATE(2872)] = 81138, - [SMALL_STATE(2873)] = 81202, - [SMALL_STATE(2874)] = 81298, - [SMALL_STATE(2875)] = 81396, - [SMALL_STATE(2876)] = 81458, - [SMALL_STATE(2877)] = 81514, - [SMALL_STATE(2878)] = 81570, - [SMALL_STATE(2879)] = 81632, - [SMALL_STATE(2880)] = 81688, - [SMALL_STATE(2881)] = 81752, - [SMALL_STATE(2882)] = 81816, - [SMALL_STATE(2883)] = 81876, - [SMALL_STATE(2884)] = 81932, - [SMALL_STATE(2885)] = 81990, - [SMALL_STATE(2886)] = 82048, - [SMALL_STATE(2887)] = 82104, - [SMALL_STATE(2888)] = 82160, - [SMALL_STATE(2889)] = 82216, - [SMALL_STATE(2890)] = 82272, - [SMALL_STATE(2891)] = 82348, - [SMALL_STATE(2892)] = 82404, - [SMALL_STATE(2893)] = 82494, - [SMALL_STATE(2894)] = 82550, - [SMALL_STATE(2895)] = 82606, - [SMALL_STATE(2896)] = 82662, - [SMALL_STATE(2897)] = 82776, - [SMALL_STATE(2898)] = 82832, - [SMALL_STATE(2899)] = 82888, - [SMALL_STATE(2900)] = 82944, - [SMALL_STATE(2901)] = 83006, - [SMALL_STATE(2902)] = 83084, - [SMALL_STATE(2903)] = 83140, - [SMALL_STATE(2904)] = 83196, - [SMALL_STATE(2905)] = 83252, - [SMALL_STATE(2906)] = 83352, - [SMALL_STATE(2907)] = 83434, - [SMALL_STATE(2908)] = 83518, - [SMALL_STATE(2909)] = 83610, - [SMALL_STATE(2910)] = 83716, - [SMALL_STATE(2911)] = 83830, - [SMALL_STATE(2912)] = 83944, - [SMALL_STATE(2913)] = 84026, - [SMALL_STATE(2914)] = 84140, - [SMALL_STATE(2915)] = 84254, - [SMALL_STATE(2916)] = 84368, - [SMALL_STATE(2917)] = 84428, - [SMALL_STATE(2918)] = 84490, - [SMALL_STATE(2919)] = 84548, - [SMALL_STATE(2920)] = 84604, - [SMALL_STATE(2921)] = 84718, - [SMALL_STATE(2922)] = 84782, - [SMALL_STATE(2923)] = 84844, - [SMALL_STATE(2924)] = 84924, - [SMALL_STATE(2925)] = 85006, - [SMALL_STATE(2926)] = 85068, - [SMALL_STATE(2927)] = 85182, - [SMALL_STATE(2928)] = 85272, - [SMALL_STATE(2929)] = 85386, - [SMALL_STATE(2930)] = 85500, - [SMALL_STATE(2931)] = 85614, - [SMALL_STATE(2932)] = 85672, - [SMALL_STATE(2933)] = 85786, - [SMALL_STATE(2934)] = 85842, - [SMALL_STATE(2935)] = 85956, - [SMALL_STATE(2936)] = 86070, - [SMALL_STATE(2937)] = 86186, - [SMALL_STATE(2938)] = 86248, - [SMALL_STATE(2939)] = 86306, - [SMALL_STATE(2940)] = 86420, - [SMALL_STATE(2941)] = 86476, - [SMALL_STATE(2942)] = 86532, - [SMALL_STATE(2943)] = 86588, - [SMALL_STATE(2944)] = 86644, - [SMALL_STATE(2945)] = 86702, - [SMALL_STATE(2946)] = 86818, - [SMALL_STATE(2947)] = 86874, - [SMALL_STATE(2948)] = 86930, - [SMALL_STATE(2949)] = 87012, - [SMALL_STATE(2950)] = 87068, - [SMALL_STATE(2951)] = 87130, - [SMALL_STATE(2952)] = 87192, - [SMALL_STATE(2953)] = 87256, - [SMALL_STATE(2954)] = 87318, - [SMALL_STATE(2955)] = 87432, - [SMALL_STATE(2956)] = 87546, - [SMALL_STATE(2957)] = 87602, - [SMALL_STATE(2958)] = 87660, - [SMALL_STATE(2959)] = 87774, - [SMALL_STATE(2960)] = 87890, - [SMALL_STATE(2961)] = 87946, - [SMALL_STATE(2962)] = 88002, - [SMALL_STATE(2963)] = 88060, - [SMALL_STATE(2964)] = 88116, - [SMALL_STATE(2965)] = 88172, - [SMALL_STATE(2966)] = 88228, - [SMALL_STATE(2967)] = 88284, - [SMALL_STATE(2968)] = 88346, - [SMALL_STATE(2969)] = 88402, - [SMALL_STATE(2970)] = 88518, - [SMALL_STATE(2971)] = 88574, - [SMALL_STATE(2972)] = 88656, - [SMALL_STATE(2973)] = 88724, - [SMALL_STATE(2974)] = 88792, - [SMALL_STATE(2975)] = 88848, - [SMALL_STATE(2976)] = 88910, - [SMALL_STATE(2977)] = 88970, - [SMALL_STATE(2978)] = 89026, - [SMALL_STATE(2979)] = 89084, - [SMALL_STATE(2980)] = 89140, - [SMALL_STATE(2981)] = 89196, - [SMALL_STATE(2982)] = 89310, - [SMALL_STATE(2983)] = 89366, - [SMALL_STATE(2984)] = 89422, - [SMALL_STATE(2985)] = 89536, - [SMALL_STATE(2986)] = 89592, - [SMALL_STATE(2987)] = 89654, - [SMALL_STATE(2988)] = 89722, - [SMALL_STATE(2989)] = 89800, - [SMALL_STATE(2990)] = 89880, - [SMALL_STATE(2991)] = 89958, - [SMALL_STATE(2992)] = 90040, - [SMALL_STATE(2993)] = 90095, - [SMALL_STATE(2994)] = 90154, - [SMALL_STATE(2995)] = 90213, - [SMALL_STATE(2996)] = 90268, - [SMALL_STATE(2997)] = 90343, - [SMALL_STATE(2998)] = 90402, - [SMALL_STATE(2999)] = 90515, - [SMALL_STATE(3000)] = 90574, - [SMALL_STATE(3001)] = 90633, - [SMALL_STATE(3002)] = 90746, - [SMALL_STATE(3003)] = 90803, - [SMALL_STATE(3004)] = 90862, - [SMALL_STATE(3005)] = 90917, - [SMALL_STATE(3006)] = 90990, - [SMALL_STATE(3007)] = 91045, - [SMALL_STATE(3008)] = 91110, - [SMALL_STATE(3009)] = 91223, - [SMALL_STATE(3010)] = 91336, - [SMALL_STATE(3011)] = 91395, - [SMALL_STATE(3012)] = 91452, - [SMALL_STATE(3013)] = 91513, - [SMALL_STATE(3014)] = 91586, - [SMALL_STATE(3015)] = 91651, - [SMALL_STATE(3016)] = 91710, - [SMALL_STATE(3017)] = 91823, - [SMALL_STATE(3018)] = 91882, - [SMALL_STATE(3019)] = 91995, - [SMALL_STATE(3020)] = 92108, - [SMALL_STATE(3021)] = 92175, - [SMALL_STATE(3022)] = 92248, - [SMALL_STATE(3023)] = 92321, - [SMALL_STATE(3024)] = 92378, - [SMALL_STATE(3025)] = 92433, - [SMALL_STATE(3026)] = 92488, - [SMALL_STATE(3027)] = 92561, - [SMALL_STATE(3028)] = 92616, - [SMALL_STATE(3029)] = 92679, - [SMALL_STATE(3030)] = 92734, - [SMALL_STATE(3031)] = 92791, - [SMALL_STATE(3032)] = 92858, - [SMALL_STATE(3033)] = 92913, - [SMALL_STATE(3034)] = 92988, - [SMALL_STATE(3035)] = 93043, - [SMALL_STATE(3036)] = 93156, - [SMALL_STATE(3037)] = 93231, - [SMALL_STATE(3038)] = 93290, - [SMALL_STATE(3039)] = 93345, - [SMALL_STATE(3040)] = 93420, - [SMALL_STATE(3041)] = 93475, - [SMALL_STATE(3042)] = 93548, - [SMALL_STATE(3043)] = 93623, - [SMALL_STATE(3044)] = 93678, - [SMALL_STATE(3045)] = 93759, - [SMALL_STATE(3046)] = 93872, - [SMALL_STATE(3047)] = 93935, - [SMALL_STATE(3048)] = 93996, - [SMALL_STATE(3049)] = 94059, - [SMALL_STATE(3050)] = 94114, - [SMALL_STATE(3051)] = 94187, - [SMALL_STATE(3052)] = 94242, - [SMALL_STATE(3053)] = 94355, - [SMALL_STATE(3054)] = 94412, - [SMALL_STATE(3055)] = 94525, - [SMALL_STATE(3056)] = 94582, - [SMALL_STATE(3057)] = 94637, - [SMALL_STATE(3058)] = 94692, - [SMALL_STATE(3059)] = 94805, - [SMALL_STATE(3060)] = 94872, - [SMALL_STATE(3061)] = 94931, - [SMALL_STATE(3062)] = 94998, - [SMALL_STATE(3063)] = 95071, - [SMALL_STATE(3064)] = 95126, - [SMALL_STATE(3065)] = 95209, - [SMALL_STATE(3066)] = 95284, - [SMALL_STATE(3067)] = 95339, - [SMALL_STATE(3068)] = 95420, - [SMALL_STATE(3069)] = 95475, - [SMALL_STATE(3070)] = 95548, - [SMALL_STATE(3071)] = 95661, - [SMALL_STATE(3072)] = 95718, - [SMALL_STATE(3073)] = 95777, - [SMALL_STATE(3074)] = 95852, - [SMALL_STATE(3075)] = 95925, - [SMALL_STATE(3076)] = 95980, - [SMALL_STATE(3077)] = 96035, - [SMALL_STATE(3078)] = 96148, - [SMALL_STATE(3079)] = 96203, - [SMALL_STATE(3080)] = 96260, - [SMALL_STATE(3081)] = 96335, - [SMALL_STATE(3082)] = 96410, - [SMALL_STATE(3083)] = 96523, - [SMALL_STATE(3084)] = 96596, - [SMALL_STATE(3085)] = 96651, - [SMALL_STATE(3086)] = 96706, - [SMALL_STATE(3087)] = 96763, - [SMALL_STATE(3088)] = 96818, - [SMALL_STATE(3089)] = 96873, - [SMALL_STATE(3090)] = 96928, - [SMALL_STATE(3091)] = 96983, - [SMALL_STATE(3092)] = 97038, - [SMALL_STATE(3093)] = 97151, - [SMALL_STATE(3094)] = 97224, - [SMALL_STATE(3095)] = 97297, - [SMALL_STATE(3096)] = 97410, - [SMALL_STATE(3097)] = 97515, - [SMALL_STATE(3098)] = 97572, - [SMALL_STATE(3099)] = 97631, - [SMALL_STATE(3100)] = 97744, - [SMALL_STATE(3101)] = 97835, - [SMALL_STATE(3102)] = 97896, - [SMALL_STATE(3103)] = 97959, - [SMALL_STATE(3104)] = 98014, - [SMALL_STATE(3105)] = 98073, - [SMALL_STATE(3106)] = 98132, - [SMALL_STATE(3107)] = 98245, - [SMALL_STATE(3108)] = 98308, - [SMALL_STATE(3109)] = 98363, - [SMALL_STATE(3110)] = 98436, - [SMALL_STATE(3111)] = 98491, - [SMALL_STATE(3112)] = 98550, - [SMALL_STATE(3113)] = 98605, - [SMALL_STATE(3114)] = 98678, - [SMALL_STATE(3115)] = 98733, - [SMALL_STATE(3116)] = 98788, - [SMALL_STATE(3117)] = 98869, - [SMALL_STATE(3118)] = 98944, - [SMALL_STATE(3119)] = 99025, - [SMALL_STATE(3120)] = 99080, - [SMALL_STATE(3121)] = 99155, - [SMALL_STATE(3122)] = 99238, - [SMALL_STATE(3123)] = 99351, - [SMALL_STATE(3124)] = 99464, - [SMALL_STATE(3125)] = 99539, - [SMALL_STATE(3126)] = 99652, - [SMALL_STATE(3127)] = 99713, - [SMALL_STATE(3128)] = 99796, - [SMALL_STATE(3129)] = 99909, - [SMALL_STATE(3130)] = 99968, - [SMALL_STATE(3131)] = 100049, - [SMALL_STATE(3132)] = 100104, - [SMALL_STATE(3133)] = 100163, - [SMALL_STATE(3134)] = 100230, - [SMALL_STATE(3135)] = 100343, - [SMALL_STATE(3136)] = 100410, - [SMALL_STATE(3137)] = 100523, - [SMALL_STATE(3138)] = 100582, - [SMALL_STATE(3139)] = 100641, - [SMALL_STATE(3140)] = 100732, - [SMALL_STATE(3141)] = 100813, - [SMALL_STATE(3142)] = 100872, - [SMALL_STATE(3143)] = 100931, - [SMALL_STATE(3144)] = 100990, - [SMALL_STATE(3145)] = 101049, - [SMALL_STATE(3146)] = 101148, - [SMALL_STATE(3147)] = 101231, - [SMALL_STATE(3148)] = 101292, - [SMALL_STATE(3149)] = 101359, - [SMALL_STATE(3150)] = 101434, - [SMALL_STATE(3151)] = 101547, - [SMALL_STATE(3152)] = 101606, - [SMALL_STATE(3153)] = 101719, - [SMALL_STATE(3154)] = 101778, - [SMALL_STATE(3155)] = 101841, - [SMALL_STATE(3156)] = 101936, - [SMALL_STATE(3157)] = 102029, - [SMALL_STATE(3158)] = 102142, - [SMALL_STATE(3159)] = 102207, - [SMALL_STATE(3160)] = 102282, - [SMALL_STATE(3161)] = 102365, - [SMALL_STATE(3162)] = 102440, - [SMALL_STATE(3163)] = 102543, - [SMALL_STATE(3164)] = 102644, - [SMALL_STATE(3165)] = 102699, - [SMALL_STATE(3166)] = 102772, - [SMALL_STATE(3167)] = 102849, - [SMALL_STATE(3168)] = 102962, - [SMALL_STATE(3169)] = 103017, - [SMALL_STATE(3170)] = 103104, - [SMALL_STATE(3171)] = 103171, - [SMALL_STATE(3172)] = 103284, - [SMALL_STATE(3173)] = 103397, - [SMALL_STATE(3174)] = 103510, - [SMALL_STATE(3175)] = 103571, - [SMALL_STATE(3176)] = 103684, - [SMALL_STATE(3177)] = 103745, - [SMALL_STATE(3178)] = 103858, - [SMALL_STATE(3179)] = 103939, - [SMALL_STATE(3180)] = 103994, - [SMALL_STATE(3181)] = 104049, - [SMALL_STATE(3182)] = 104112, - [SMALL_STATE(3183)] = 104171, - [SMALL_STATE(3184)] = 104228, - [SMALL_STATE(3185)] = 104293, - [SMALL_STATE(3186)] = 104376, - [SMALL_STATE(3187)] = 104489, - [SMALL_STATE(3188)] = 104546, - [SMALL_STATE(3189)] = 104619, - [SMALL_STATE(3190)] = 104694, - [SMALL_STATE(3191)] = 104755, - [SMALL_STATE(3192)] = 104814, - [SMALL_STATE(3193)] = 104873, - [SMALL_STATE(3194)] = 104930, - [SMALL_STATE(3195)] = 105045, - [SMALL_STATE(3196)] = 105120, - [SMALL_STATE(3197)] = 105233, - [SMALL_STATE(3198)] = 105300, - [SMALL_STATE(3199)] = 105413, - [SMALL_STATE(3200)] = 105476, - [SMALL_STATE(3201)] = 105539, - [SMALL_STATE(3202)] = 105652, - [SMALL_STATE(3203)] = 105765, - [SMALL_STATE(3204)] = 105826, - [SMALL_STATE(3205)] = 105923, - [SMALL_STATE(3206)] = 105980, - [SMALL_STATE(3207)] = 106037, - [SMALL_STATE(3208)] = 106096, - [SMALL_STATE(3209)] = 106169, - [SMALL_STATE(3210)] = 106224, - [SMALL_STATE(3211)] = 106299, - [SMALL_STATE(3212)] = 106380, - [SMALL_STATE(3213)] = 106493, - [SMALL_STATE(3214)] = 106550, - [SMALL_STATE(3215)] = 106623, - [SMALL_STATE(3216)] = 106736, - [SMALL_STATE(3217)] = 106803, - [SMALL_STATE(3218)] = 106916, - [SMALL_STATE(3219)] = 106999, - [SMALL_STATE(3220)] = 107072, - [SMALL_STATE(3221)] = 107185, - [SMALL_STATE(3222)] = 107298, - [SMALL_STATE(3223)] = 107375, - [SMALL_STATE(3224)] = 107450, - [SMALL_STATE(3225)] = 107533, - [SMALL_STATE(3226)] = 107614, - [SMALL_STATE(3227)] = 107727, - [SMALL_STATE(3228)] = 107800, - [SMALL_STATE(3229)] = 107881, - [SMALL_STATE(3230)] = 107936, - [SMALL_STATE(3231)] = 107997, - [SMALL_STATE(3232)] = 108096, - [SMALL_STATE(3233)] = 108209, - [SMALL_STATE(3234)] = 108306, - [SMALL_STATE(3235)] = 108401, - [SMALL_STATE(3236)] = 108484, - [SMALL_STATE(3237)] = 108587, - [SMALL_STATE(3238)] = 108660, - [SMALL_STATE(3239)] = 108741, - [SMALL_STATE(3240)] = 108824, - [SMALL_STATE(3241)] = 108937, - [SMALL_STATE(3242)] = 109038, - [SMALL_STATE(3243)] = 109151, - [SMALL_STATE(3244)] = 109238, - [SMALL_STATE(3245)] = 109315, - [SMALL_STATE(3246)] = 109416, - [SMALL_STATE(3247)] = 109493, - [SMALL_STATE(3248)] = 109596, - [SMALL_STATE(3249)] = 109683, - [SMALL_STATE(3250)] = 109766, - [SMALL_STATE(3251)] = 109861, - [SMALL_STATE(3252)] = 109958, - [SMALL_STATE(3253)] = 110021, - [SMALL_STATE(3254)] = 110094, - [SMALL_STATE(3255)] = 110161, - [SMALL_STATE(3256)] = 110274, - [SMALL_STATE(3257)] = 110341, - [SMALL_STATE(3258)] = 110440, - [SMALL_STATE(3259)] = 110521, - [SMALL_STATE(3260)] = 110604, - [SMALL_STATE(3261)] = 110695, - [SMALL_STATE(3262)] = 110800, - [SMALL_STATE(3263)] = 110913, - [SMALL_STATE(3264)] = 110968, - [SMALL_STATE(3265)] = 111081, - [SMALL_STATE(3266)] = 111136, - [SMALL_STATE(3267)] = 111191, - [SMALL_STATE(3268)] = 111246, - [SMALL_STATE(3269)] = 111301, - [SMALL_STATE(3270)] = 111368, - [SMALL_STATE(3271)] = 111435, - [SMALL_STATE(3272)] = 111548, - [SMALL_STATE(3273)] = 111631, - [SMALL_STATE(3274)] = 111686, - [SMALL_STATE(3275)] = 111767, - [SMALL_STATE(3276)] = 111880, - [SMALL_STATE(3277)] = 111985, - [SMALL_STATE(3278)] = 112098, - [SMALL_STATE(3279)] = 112153, - [SMALL_STATE(3280)] = 112210, - [SMALL_STATE(3281)] = 112265, - [SMALL_STATE(3282)] = 112333, - [SMALL_STATE(3283)] = 112433, - [SMALL_STATE(3284)] = 112501, - [SMALL_STATE(3285)] = 112569, - [SMALL_STATE(3286)] = 112627, - [SMALL_STATE(3287)] = 112683, - [SMALL_STATE(3288)] = 112751, - [SMALL_STATE(3289)] = 112819, - [SMALL_STATE(3290)] = 112895, - [SMALL_STATE(3291)] = 112963, - [SMALL_STATE(3292)] = 113031, - [SMALL_STATE(3293)] = 113099, - [SMALL_STATE(3294)] = 113167, - [SMALL_STATE(3295)] = 113235, - [SMALL_STATE(3296)] = 113309, - [SMALL_STATE(3297)] = 113389, - [SMALL_STATE(3298)] = 113499, - [SMALL_STATE(3299)] = 113567, - [SMALL_STATE(3300)] = 113623, - [SMALL_STATE(3301)] = 113681, - [SMALL_STATE(3302)] = 113749, - [SMALL_STATE(3303)] = 113817, - [SMALL_STATE(3304)] = 113879, - [SMALL_STATE(3305)] = 113947, - [SMALL_STATE(3306)] = 114009, - [SMALL_STATE(3307)] = 114071, - [SMALL_STATE(3308)] = 114155, - [SMALL_STATE(3309)] = 114265, - [SMALL_STATE(3310)] = 114333, - [SMALL_STATE(3311)] = 114443, - [SMALL_STATE(3312)] = 114499, - [SMALL_STATE(3313)] = 114567, - [SMALL_STATE(3314)] = 114677, - [SMALL_STATE(3315)] = 114745, - [SMALL_STATE(3316)] = 114855, - [SMALL_STATE(3317)] = 114965, - [SMALL_STATE(3318)] = 115027, - [SMALL_STATE(3319)] = 115083, - [SMALL_STATE(3320)] = 115151, - [SMALL_STATE(3321)] = 115219, - [SMALL_STATE(3322)] = 115329, - [SMALL_STATE(3323)] = 115397, - [SMALL_STATE(3324)] = 115507, - [SMALL_STATE(3325)] = 115567, - [SMALL_STATE(3326)] = 115677, - [SMALL_STATE(3327)] = 115745, - [SMALL_STATE(3328)] = 115801, - [SMALL_STATE(3329)] = 115905, - [SMALL_STATE(3330)] = 115995, - [SMALL_STATE(3331)] = 116071, - [SMALL_STATE(3332)] = 116181, - [SMALL_STATE(3333)] = 116257, - [SMALL_STATE(3334)] = 116337, - [SMALL_STATE(3335)] = 116397, - [SMALL_STATE(3336)] = 116459, - [SMALL_STATE(3337)] = 116519, - [SMALL_STATE(3338)] = 116581, - [SMALL_STATE(3339)] = 116691, - [SMALL_STATE(3340)] = 116789, - [SMALL_STATE(3341)] = 116849, - [SMALL_STATE(3342)] = 116931, - [SMALL_STATE(3343)] = 117007, - [SMALL_STATE(3344)] = 117073, - [SMALL_STATE(3345)] = 117149, - [SMALL_STATE(3346)] = 117245, - [SMALL_STATE(3347)] = 117339, - [SMALL_STATE(3348)] = 117401, - [SMALL_STATE(3349)] = 117511, - [SMALL_STATE(3350)] = 117593, - [SMALL_STATE(3351)] = 117695, - [SMALL_STATE(3352)] = 117777, - [SMALL_STATE(3353)] = 117833, - [SMALL_STATE(3354)] = 117921, - [SMALL_STATE(3355)] = 117997, - [SMALL_STATE(3356)] = 118107, - [SMALL_STATE(3357)] = 118175, - [SMALL_STATE(3358)] = 118285, - [SMALL_STATE(3359)] = 118341, - [SMALL_STATE(3360)] = 118451, - [SMALL_STATE(3361)] = 118561, - [SMALL_STATE(3362)] = 118637, - [SMALL_STATE(3363)] = 118723, - [SMALL_STATE(3364)] = 118781, - [SMALL_STATE(3365)] = 118857, - [SMALL_STATE(3366)] = 118929, - [SMALL_STATE(3367)] = 118997, - [SMALL_STATE(3368)] = 119070, - [SMALL_STATE(3369)] = 119163, - [SMALL_STATE(3370)] = 119218, - [SMALL_STATE(3371)] = 119279, - [SMALL_STATE(3372)] = 119334, - [SMALL_STATE(3373)] = 119403, - [SMALL_STATE(3374)] = 119482, - [SMALL_STATE(3375)] = 119555, - [SMALL_STATE(3376)] = 119610, - [SMALL_STATE(3377)] = 119685, - [SMALL_STATE(3378)] = 119744, - [SMALL_STATE(3379)] = 119803, - [SMALL_STATE(3380)] = 119872, - [SMALL_STATE(3381)] = 119945, - [SMALL_STATE(3382)] = 120018, - [SMALL_STATE(3383)] = 120073, - [SMALL_STATE(3384)] = 120128, - [SMALL_STATE(3385)] = 120187, - [SMALL_STATE(3386)] = 120242, - [SMALL_STATE(3387)] = 120297, - [SMALL_STATE(3388)] = 120356, - [SMALL_STATE(3389)] = 120433, - [SMALL_STATE(3390)] = 120508, - [SMALL_STATE(3391)] = 120563, - [SMALL_STATE(3392)] = 120636, - [SMALL_STATE(3393)] = 120695, - [SMALL_STATE(3394)] = 120764, - [SMALL_STATE(3395)] = 120823, - [SMALL_STATE(3396)] = 120878, - [SMALL_STATE(3397)] = 120933, - [SMALL_STATE(3398)] = 120992, - [SMALL_STATE(3399)] = 121047, - [SMALL_STATE(3400)] = 121106, - [SMALL_STATE(3401)] = 121175, - [SMALL_STATE(3402)] = 121248, - [SMALL_STATE(3403)] = 121307, - [SMALL_STATE(3404)] = 121362, - [SMALL_STATE(3405)] = 121421, - [SMALL_STATE(3406)] = 121490, - [SMALL_STATE(3407)] = 121556, + [SMALL_STATE(2793)] = 75592, + [SMALL_STATE(2794)] = 75706, + [SMALL_STATE(2795)] = 75820, + [SMALL_STATE(2796)] = 75876, + [SMALL_STATE(2797)] = 75992, + [SMALL_STATE(2798)] = 76054, + [SMALL_STATE(2799)] = 76134, + [SMALL_STATE(2800)] = 76198, + [SMALL_STATE(2801)] = 76260, + [SMALL_STATE(2802)] = 76338, + [SMALL_STATE(2803)] = 76420, + [SMALL_STATE(2804)] = 76476, + [SMALL_STATE(2805)] = 76566, + [SMALL_STATE(2806)] = 76644, + [SMALL_STATE(2807)] = 76724, + [SMALL_STATE(2808)] = 76814, + [SMALL_STATE(2809)] = 76870, + [SMALL_STATE(2810)] = 76984, + [SMALL_STATE(2811)] = 77098, + [SMALL_STATE(2812)] = 77154, + [SMALL_STATE(2813)] = 77210, + [SMALL_STATE(2814)] = 77266, + [SMALL_STATE(2815)] = 77322, + [SMALL_STATE(2816)] = 77404, + [SMALL_STATE(2817)] = 77518, + [SMALL_STATE(2818)] = 77576, + [SMALL_STATE(2819)] = 77632, + [SMALL_STATE(2820)] = 77688, + [SMALL_STATE(2821)] = 77744, + [SMALL_STATE(2822)] = 77800, + [SMALL_STATE(2823)] = 77860, + [SMALL_STATE(2824)] = 77918, + [SMALL_STATE(2825)] = 78008, + [SMALL_STATE(2826)] = 78078, + [SMALL_STATE(2827)] = 78152, + [SMALL_STATE(2828)] = 78208, + [SMALL_STATE(2829)] = 78264, + [SMALL_STATE(2830)] = 78334, + [SMALL_STATE(2831)] = 78448, + [SMALL_STATE(2832)] = 78562, + [SMALL_STATE(2833)] = 78624, + [SMALL_STATE(2834)] = 78740, + [SMALL_STATE(2835)] = 78796, + [SMALL_STATE(2836)] = 78864, + [SMALL_STATE(2837)] = 78920, + [SMALL_STATE(2838)] = 78976, + [SMALL_STATE(2839)] = 79032, + [SMALL_STATE(2840)] = 79090, + [SMALL_STATE(2841)] = 79146, + [SMALL_STATE(2842)] = 79204, + [SMALL_STATE(2843)] = 79260, + [SMALL_STATE(2844)] = 79316, + [SMALL_STATE(2845)] = 79398, + [SMALL_STATE(2846)] = 79454, + [SMALL_STATE(2847)] = 79512, + [SMALL_STATE(2848)] = 79568, + [SMALL_STATE(2849)] = 79624, + [SMALL_STATE(2850)] = 79680, + [SMALL_STATE(2851)] = 79736, + [SMALL_STATE(2852)] = 79792, + [SMALL_STATE(2853)] = 79848, + [SMALL_STATE(2854)] = 79910, + [SMALL_STATE(2855)] = 79990, + [SMALL_STATE(2856)] = 80058, + [SMALL_STATE(2857)] = 80126, + [SMALL_STATE(2858)] = 80182, + [SMALL_STATE(2859)] = 80238, + [SMALL_STATE(2860)] = 80294, + [SMALL_STATE(2861)] = 80350, + [SMALL_STATE(2862)] = 80408, + [SMALL_STATE(2863)] = 80464, + [SMALL_STATE(2864)] = 80520, + [SMALL_STATE(2865)] = 80576, + [SMALL_STATE(2866)] = 80638, + [SMALL_STATE(2867)] = 80700, + [SMALL_STATE(2868)] = 80758, + [SMALL_STATE(2869)] = 80816, + [SMALL_STATE(2870)] = 80872, + [SMALL_STATE(2871)] = 80928, + [SMALL_STATE(2872)] = 80984, + [SMALL_STATE(2873)] = 81040, + [SMALL_STATE(2874)] = 81154, + [SMALL_STATE(2875)] = 81232, + [SMALL_STATE(2876)] = 81308, + [SMALL_STATE(2877)] = 81390, + [SMALL_STATE(2878)] = 81504, + [SMALL_STATE(2879)] = 81620, + [SMALL_STATE(2880)] = 81684, + [SMALL_STATE(2881)] = 81746, + [SMALL_STATE(2882)] = 81808, + [SMALL_STATE(2883)] = 81922, + [SMALL_STATE(2884)] = 82012, + [SMALL_STATE(2885)] = 82126, + [SMALL_STATE(2886)] = 82182, + [SMALL_STATE(2887)] = 82238, + [SMALL_STATE(2888)] = 82300, + [SMALL_STATE(2889)] = 82356, + [SMALL_STATE(2890)] = 82412, + [SMALL_STATE(2891)] = 82468, + [SMALL_STATE(2892)] = 82524, + [SMALL_STATE(2893)] = 82580, + [SMALL_STATE(2894)] = 82638, + [SMALL_STATE(2895)] = 82694, + [SMALL_STATE(2896)] = 82750, + [SMALL_STATE(2897)] = 82806, + [SMALL_STATE(2898)] = 82862, + [SMALL_STATE(2899)] = 82976, + [SMALL_STATE(2900)] = 83032, + [SMALL_STATE(2901)] = 83088, + [SMALL_STATE(2902)] = 83202, + [SMALL_STATE(2903)] = 83292, + [SMALL_STATE(2904)] = 83352, + [SMALL_STATE(2905)] = 83466, + [SMALL_STATE(2906)] = 83580, + [SMALL_STATE(2907)] = 83668, + [SMALL_STATE(2908)] = 83750, + [SMALL_STATE(2909)] = 83864, + [SMALL_STATE(2910)] = 83932, + [SMALL_STATE(2911)] = 84010, + [SMALL_STATE(2912)] = 84078, + [SMALL_STATE(2913)] = 84138, + [SMALL_STATE(2914)] = 84240, + [SMALL_STATE(2915)] = 84344, + [SMALL_STATE(2916)] = 84428, + [SMALL_STATE(2917)] = 84492, + [SMALL_STATE(2918)] = 84554, + [SMALL_STATE(2919)] = 84610, + [SMALL_STATE(2920)] = 84666, + [SMALL_STATE(2921)] = 84728, + [SMALL_STATE(2922)] = 84796, + [SMALL_STATE(2923)] = 84860, + [SMALL_STATE(2924)] = 84916, + [SMALL_STATE(2925)] = 84972, + [SMALL_STATE(2926)] = 85030, + [SMALL_STATE(2927)] = 85086, + [SMALL_STATE(2928)] = 85142, + [SMALL_STATE(2929)] = 85256, + [SMALL_STATE(2930)] = 85312, + [SMALL_STATE(2931)] = 85368, + [SMALL_STATE(2932)] = 85424, + [SMALL_STATE(2933)] = 85480, + [SMALL_STATE(2934)] = 85536, + [SMALL_STATE(2935)] = 85650, + [SMALL_STATE(2936)] = 85706, + [SMALL_STATE(2937)] = 85788, + [SMALL_STATE(2938)] = 85844, + [SMALL_STATE(2939)] = 85900, + [SMALL_STATE(2940)] = 85956, + [SMALL_STATE(2941)] = 86012, + [SMALL_STATE(2942)] = 86068, + [SMALL_STATE(2943)] = 86124, + [SMALL_STATE(2944)] = 86222, + [SMALL_STATE(2945)] = 86322, + [SMALL_STATE(2946)] = 86404, + [SMALL_STATE(2947)] = 86462, + [SMALL_STATE(2948)] = 86546, + [SMALL_STATE(2949)] = 86614, + [SMALL_STATE(2950)] = 86696, + [SMALL_STATE(2951)] = 86786, + [SMALL_STATE(2952)] = 86868, + [SMALL_STATE(2953)] = 86982, + [SMALL_STATE(2954)] = 87074, + [SMALL_STATE(2955)] = 87188, + [SMALL_STATE(2956)] = 87294, + [SMALL_STATE(2957)] = 87408, + [SMALL_STATE(2958)] = 87522, + [SMALL_STATE(2959)] = 87638, + [SMALL_STATE(2960)] = 87706, + [SMALL_STATE(2961)] = 87820, + [SMALL_STATE(2962)] = 87888, + [SMALL_STATE(2963)] = 87966, + [SMALL_STATE(2964)] = 88080, + [SMALL_STATE(2965)] = 88194, + [SMALL_STATE(2966)] = 88308, + [SMALL_STATE(2967)] = 88366, + [SMALL_STATE(2968)] = 88480, + [SMALL_STATE(2969)] = 88594, + [SMALL_STATE(2970)] = 88708, + [SMALL_STATE(2971)] = 88764, + [SMALL_STATE(2972)] = 88822, + [SMALL_STATE(2973)] = 88878, + [SMALL_STATE(2974)] = 88946, + [SMALL_STATE(2975)] = 89008, + [SMALL_STATE(2976)] = 89066, + [SMALL_STATE(2977)] = 89122, + [SMALL_STATE(2978)] = 89184, + [SMALL_STATE(2979)] = 89240, + [SMALL_STATE(2980)] = 89300, + [SMALL_STATE(2981)] = 89362, + [SMALL_STATE(2982)] = 89478, + [SMALL_STATE(2983)] = 89534, + [SMALL_STATE(2984)] = 89590, + [SMALL_STATE(2985)] = 89646, + [SMALL_STATE(2986)] = 89702, + [SMALL_STATE(2987)] = 89758, + [SMALL_STATE(2988)] = 89814, + [SMALL_STATE(2989)] = 89870, + [SMALL_STATE(2990)] = 89926, + [SMALL_STATE(2991)] = 89988, + [SMALL_STATE(2992)] = 90052, + [SMALL_STATE(2993)] = 90114, + [SMALL_STATE(2994)] = 90195, + [SMALL_STATE(2995)] = 90254, + [SMALL_STATE(2996)] = 90315, + [SMALL_STATE(2997)] = 90392, + [SMALL_STATE(2998)] = 90493, + [SMALL_STATE(2999)] = 90552, + [SMALL_STATE(3000)] = 90655, + [SMALL_STATE(3001)] = 90714, + [SMALL_STATE(3002)] = 90797, + [SMALL_STATE(3003)] = 90892, + [SMALL_STATE(3004)] = 91005, + [SMALL_STATE(3005)] = 91102, + [SMALL_STATE(3006)] = 91201, + [SMALL_STATE(3007)] = 91282, + [SMALL_STATE(3008)] = 91365, + [SMALL_STATE(3009)] = 91420, + [SMALL_STATE(3010)] = 91483, + [SMALL_STATE(3011)] = 91540, + [SMALL_STATE(3012)] = 91599, + [SMALL_STATE(3013)] = 91690, + [SMALL_STATE(3014)] = 91749, + [SMALL_STATE(3015)] = 91854, + [SMALL_STATE(3016)] = 91967, + [SMALL_STATE(3017)] = 92080, + [SMALL_STATE(3018)] = 92135, + [SMALL_STATE(3019)] = 92210, + [SMALL_STATE(3020)] = 92265, + [SMALL_STATE(3021)] = 92320, + [SMALL_STATE(3022)] = 92375, + [SMALL_STATE(3023)] = 92450, + [SMALL_STATE(3024)] = 92513, + [SMALL_STATE(3025)] = 92594, + [SMALL_STATE(3026)] = 92661, + [SMALL_STATE(3027)] = 92774, + [SMALL_STATE(3028)] = 92841, + [SMALL_STATE(3029)] = 92908, + [SMALL_STATE(3030)] = 93021, + [SMALL_STATE(3031)] = 93094, + [SMALL_STATE(3032)] = 93161, + [SMALL_STATE(3033)] = 93274, + [SMALL_STATE(3034)] = 93387, + [SMALL_STATE(3035)] = 93500, + [SMALL_STATE(3036)] = 93613, + [SMALL_STATE(3037)] = 93726, + [SMALL_STATE(3038)] = 93813, + [SMALL_STATE(3039)] = 93890, + [SMALL_STATE(3040)] = 93957, + [SMALL_STATE(3041)] = 94070, + [SMALL_STATE(3042)] = 94137, + [SMALL_STATE(3043)] = 94224, + [SMALL_STATE(3044)] = 94337, + [SMALL_STATE(3045)] = 94450, + [SMALL_STATE(3046)] = 94551, + [SMALL_STATE(3047)] = 94654, + [SMALL_STATE(3048)] = 94737, + [SMALL_STATE(3049)] = 94832, + [SMALL_STATE(3050)] = 94929, + [SMALL_STATE(3051)] = 95028, + [SMALL_STATE(3052)] = 95089, + [SMALL_STATE(3053)] = 95152, + [SMALL_STATE(3054)] = 95233, + [SMALL_STATE(3055)] = 95316, + [SMALL_STATE(3056)] = 95391, + [SMALL_STATE(3057)] = 95482, + [SMALL_STATE(3058)] = 95587, + [SMALL_STATE(3059)] = 95700, + [SMALL_STATE(3060)] = 95813, + [SMALL_STATE(3061)] = 95880, + [SMALL_STATE(3062)] = 95993, + [SMALL_STATE(3063)] = 96060, + [SMALL_STATE(3064)] = 96119, + [SMALL_STATE(3065)] = 96232, + [SMALL_STATE(3066)] = 96345, + [SMALL_STATE(3067)] = 96408, + [SMALL_STATE(3068)] = 96463, + [SMALL_STATE(3069)] = 96536, + [SMALL_STATE(3070)] = 96649, + [SMALL_STATE(3071)] = 96762, + [SMALL_STATE(3072)] = 96817, + [SMALL_STATE(3073)] = 96930, + [SMALL_STATE(3074)] = 97043, + [SMALL_STATE(3075)] = 97156, + [SMALL_STATE(3076)] = 97269, + [SMALL_STATE(3077)] = 97328, + [SMALL_STATE(3078)] = 97401, + [SMALL_STATE(3079)] = 97514, + [SMALL_STATE(3080)] = 97627, + [SMALL_STATE(3081)] = 97708, + [SMALL_STATE(3082)] = 97821, + [SMALL_STATE(3083)] = 97882, + [SMALL_STATE(3084)] = 97995, + [SMALL_STATE(3085)] = 98056, + [SMALL_STATE(3086)] = 98111, + [SMALL_STATE(3087)] = 98168, + [SMALL_STATE(3088)] = 98229, + [SMALL_STATE(3089)] = 98292, + [SMALL_STATE(3090)] = 98355, + [SMALL_STATE(3091)] = 98430, + [SMALL_STATE(3092)] = 98505, + [SMALL_STATE(3093)] = 98560, + [SMALL_STATE(3094)] = 98633, + [SMALL_STATE(3095)] = 98696, + [SMALL_STATE(3096)] = 98779, + [SMALL_STATE(3097)] = 98862, + [SMALL_STATE(3098)] = 98975, + [SMALL_STATE(3099)] = 99040, + [SMALL_STATE(3100)] = 99097, + [SMALL_STATE(3101)] = 99212, + [SMALL_STATE(3102)] = 99271, + [SMALL_STATE(3103)] = 99344, + [SMALL_STATE(3104)] = 99407, + [SMALL_STATE(3105)] = 99482, + [SMALL_STATE(3106)] = 99543, + [SMALL_STATE(3107)] = 99616, + [SMALL_STATE(3108)] = 99675, + [SMALL_STATE(3109)] = 99734, + [SMALL_STATE(3110)] = 99789, + [SMALL_STATE(3111)] = 99902, + [SMALL_STATE(3112)] = 99957, + [SMALL_STATE(3113)] = 100014, + [SMALL_STATE(3114)] = 100127, + [SMALL_STATE(3115)] = 100184, + [SMALL_STATE(3116)] = 100245, + [SMALL_STATE(3117)] = 100320, + [SMALL_STATE(3118)] = 100393, + [SMALL_STATE(3119)] = 100458, + [SMALL_STATE(3120)] = 100523, + [SMALL_STATE(3121)] = 100636, + [SMALL_STATE(3122)] = 100695, + [SMALL_STATE(3123)] = 100762, + [SMALL_STATE(3124)] = 100817, + [SMALL_STATE(3125)] = 100874, + [SMALL_STATE(3126)] = 100929, + [SMALL_STATE(3127)] = 101022, + [SMALL_STATE(3128)] = 101079, + [SMALL_STATE(3129)] = 101140, + [SMALL_STATE(3130)] = 101253, + [SMALL_STATE(3131)] = 101326, + [SMALL_STATE(3132)] = 101399, + [SMALL_STATE(3133)] = 101456, + [SMALL_STATE(3134)] = 101515, + [SMALL_STATE(3135)] = 101628, + [SMALL_STATE(3136)] = 101691, + [SMALL_STATE(3137)] = 101758, + [SMALL_STATE(3138)] = 101817, + [SMALL_STATE(3139)] = 101898, + [SMALL_STATE(3140)] = 101957, + [SMALL_STATE(3141)] = 102012, + [SMALL_STATE(3142)] = 102079, + [SMALL_STATE(3143)] = 102162, + [SMALL_STATE(3144)] = 102223, + [SMALL_STATE(3145)] = 102336, + [SMALL_STATE(3146)] = 102391, + [SMALL_STATE(3147)] = 102472, + [SMALL_STATE(3148)] = 102545, + [SMALL_STATE(3149)] = 102608, + [SMALL_STATE(3150)] = 102683, + [SMALL_STATE(3151)] = 102758, + [SMALL_STATE(3152)] = 102823, + [SMALL_STATE(3153)] = 102878, + [SMALL_STATE(3154)] = 102991, + [SMALL_STATE(3155)] = 103050, + [SMALL_STATE(3156)] = 103123, + [SMALL_STATE(3157)] = 103182, + [SMALL_STATE(3158)] = 103239, + [SMALL_STATE(3159)] = 103294, + [SMALL_STATE(3160)] = 103367, + [SMALL_STATE(3161)] = 103440, + [SMALL_STATE(3162)] = 103523, + [SMALL_STATE(3163)] = 103604, + [SMALL_STATE(3164)] = 103659, + [SMALL_STATE(3165)] = 103714, + [SMALL_STATE(3166)] = 103797, + [SMALL_STATE(3167)] = 103852, + [SMALL_STATE(3168)] = 103927, + [SMALL_STATE(3169)] = 104000, + [SMALL_STATE(3170)] = 104055, + [SMALL_STATE(3171)] = 104110, + [SMALL_STATE(3172)] = 104165, + [SMALL_STATE(3173)] = 104224, + [SMALL_STATE(3174)] = 104279, + [SMALL_STATE(3175)] = 104360, + [SMALL_STATE(3176)] = 104417, + [SMALL_STATE(3177)] = 104472, + [SMALL_STATE(3178)] = 104585, + [SMALL_STATE(3179)] = 104658, + [SMALL_STATE(3180)] = 104713, + [SMALL_STATE(3181)] = 104768, + [SMALL_STATE(3182)] = 104841, + [SMALL_STATE(3183)] = 104954, + [SMALL_STATE(3184)] = 105035, + [SMALL_STATE(3185)] = 105110, + [SMALL_STATE(3186)] = 105169, + [SMALL_STATE(3187)] = 105224, + [SMALL_STATE(3188)] = 105299, + [SMALL_STATE(3189)] = 105372, + [SMALL_STATE(3190)] = 105447, + [SMALL_STATE(3191)] = 105504, + [SMALL_STATE(3192)] = 105579, + [SMALL_STATE(3193)] = 105634, + [SMALL_STATE(3194)] = 105747, + [SMALL_STATE(3195)] = 105860, + [SMALL_STATE(3196)] = 105973, + [SMALL_STATE(3197)] = 106046, + [SMALL_STATE(3198)] = 106121, + [SMALL_STATE(3199)] = 106178, + [SMALL_STATE(3200)] = 106233, + [SMALL_STATE(3201)] = 106346, + [SMALL_STATE(3202)] = 106459, + [SMALL_STATE(3203)] = 106518, + [SMALL_STATE(3204)] = 106631, + [SMALL_STATE(3205)] = 106690, + [SMALL_STATE(3206)] = 106745, + [SMALL_STATE(3207)] = 106826, + [SMALL_STATE(3208)] = 106901, + [SMALL_STATE(3209)] = 106974, + [SMALL_STATE(3210)] = 107057, + [SMALL_STATE(3211)] = 107116, + [SMALL_STATE(3212)] = 107175, + [SMALL_STATE(3213)] = 107242, + [SMALL_STATE(3214)] = 107309, + [SMALL_STATE(3215)] = 107384, + [SMALL_STATE(3216)] = 107441, + [SMALL_STATE(3217)] = 107498, + [SMALL_STATE(3218)] = 107589, + [SMALL_STATE(3219)] = 107650, + [SMALL_STATE(3220)] = 107705, + [SMALL_STATE(3221)] = 107764, + [SMALL_STATE(3222)] = 107819, + [SMALL_STATE(3223)] = 107874, + [SMALL_STATE(3224)] = 107987, + [SMALL_STATE(3225)] = 108092, + [SMALL_STATE(3226)] = 108205, + [SMALL_STATE(3227)] = 108262, + [SMALL_STATE(3228)] = 108321, + [SMALL_STATE(3229)] = 108434, + [SMALL_STATE(3230)] = 108501, + [SMALL_STATE(3231)] = 108574, + [SMALL_STATE(3232)] = 108633, + [SMALL_STATE(3233)] = 108692, + [SMALL_STATE(3234)] = 108775, + [SMALL_STATE(3235)] = 108830, + [SMALL_STATE(3236)] = 108885, + [SMALL_STATE(3237)] = 108940, + [SMALL_STATE(3238)] = 108995, + [SMALL_STATE(3239)] = 109050, + [SMALL_STATE(3240)] = 109105, + [SMALL_STATE(3241)] = 109160, + [SMALL_STATE(3242)] = 109235, + [SMALL_STATE(3243)] = 109312, + [SMALL_STATE(3244)] = 109367, + [SMALL_STATE(3245)] = 109480, + [SMALL_STATE(3246)] = 109593, + [SMALL_STATE(3247)] = 109706, + [SMALL_STATE(3248)] = 109761, + [SMALL_STATE(3249)] = 109816, + [SMALL_STATE(3250)] = 109871, + [SMALL_STATE(3251)] = 109926, + [SMALL_STATE(3252)] = 109999, + [SMALL_STATE(3253)] = 110112, + [SMALL_STATE(3254)] = 110193, + [SMALL_STATE(3255)] = 110268, + [SMALL_STATE(3256)] = 110381, + [SMALL_STATE(3257)] = 110494, + [SMALL_STATE(3258)] = 110581, + [SMALL_STATE(3259)] = 110658, + [SMALL_STATE(3260)] = 110759, + [SMALL_STATE(3261)] = 110816, + [SMALL_STATE(3262)] = 110873, + [SMALL_STATE(3263)] = 110928, + [SMALL_STATE(3264)] = 110983, + [SMALL_STATE(3265)] = 111042, + [SMALL_STATE(3266)] = 111097, + [SMALL_STATE(3267)] = 111170, + [SMALL_STATE(3268)] = 111253, + [SMALL_STATE(3269)] = 111312, + [SMALL_STATE(3270)] = 111385, + [SMALL_STATE(3271)] = 111498, + [SMALL_STATE(3272)] = 111579, + [SMALL_STATE(3273)] = 111638, + [SMALL_STATE(3274)] = 111693, + [SMALL_STATE(3275)] = 111796, + [SMALL_STATE(3276)] = 111879, + [SMALL_STATE(3277)] = 111974, + [SMALL_STATE(3278)] = 112071, + [SMALL_STATE(3279)] = 112170, + [SMALL_STATE(3280)] = 112229, + [SMALL_STATE(3281)] = 112284, + [SMALL_STATE(3282)] = 112339, + [SMALL_STATE(3283)] = 112399, + [SMALL_STATE(3284)] = 112455, + [SMALL_STATE(3285)] = 112513, + [SMALL_STATE(3286)] = 112589, + [SMALL_STATE(3287)] = 112657, + [SMALL_STATE(3288)] = 112741, + [SMALL_STATE(3289)] = 112809, + [SMALL_STATE(3290)] = 112877, + [SMALL_STATE(3291)] = 112935, + [SMALL_STATE(3292)] = 112991, + [SMALL_STATE(3293)] = 113073, + [SMALL_STATE(3294)] = 113135, + [SMALL_STATE(3295)] = 113211, + [SMALL_STATE(3296)] = 113285, + [SMALL_STATE(3297)] = 113365, + [SMALL_STATE(3298)] = 113433, + [SMALL_STATE(3299)] = 113493, + [SMALL_STATE(3300)] = 113603, + [SMALL_STATE(3301)] = 113691, + [SMALL_STATE(3302)] = 113767, + [SMALL_STATE(3303)] = 113865, + [SMALL_STATE(3304)] = 113945, + [SMALL_STATE(3305)] = 114013, + [SMALL_STATE(3306)] = 114069, + [SMALL_STATE(3307)] = 114155, + [SMALL_STATE(3308)] = 114217, + [SMALL_STATE(3309)] = 114273, + [SMALL_STATE(3310)] = 114363, + [SMALL_STATE(3311)] = 114423, + [SMALL_STATE(3312)] = 114527, + [SMALL_STATE(3313)] = 114637, + [SMALL_STATE(3314)] = 114695, + [SMALL_STATE(3315)] = 114805, + [SMALL_STATE(3316)] = 114915, + [SMALL_STATE(3317)] = 115025, + [SMALL_STATE(3318)] = 115093, + [SMALL_STATE(3319)] = 115161, + [SMALL_STATE(3320)] = 115271, + [SMALL_STATE(3321)] = 115333, + [SMALL_STATE(3322)] = 115393, + [SMALL_STATE(3323)] = 115455, + [SMALL_STATE(3324)] = 115565, + [SMALL_STATE(3325)] = 115661, + [SMALL_STATE(3326)] = 115755, + [SMALL_STATE(3327)] = 115811, + [SMALL_STATE(3328)] = 115893, + [SMALL_STATE(3329)] = 115969, + [SMALL_STATE(3330)] = 116037, + [SMALL_STATE(3331)] = 116105, + [SMALL_STATE(3332)] = 116173, + [SMALL_STATE(3333)] = 116283, + [SMALL_STATE(3334)] = 116393, + [SMALL_STATE(3335)] = 116461, + [SMALL_STATE(3336)] = 116571, + [SMALL_STATE(3337)] = 116653, + [SMALL_STATE(3338)] = 116721, + [SMALL_STATE(3339)] = 116789, + [SMALL_STATE(3340)] = 116855, + [SMALL_STATE(3341)] = 116931, + [SMALL_STATE(3342)] = 117033, + [SMALL_STATE(3343)] = 117101, + [SMALL_STATE(3344)] = 117211, + [SMALL_STATE(3345)] = 117311, + [SMALL_STATE(3346)] = 117373, + [SMALL_STATE(3347)] = 117483, + [SMALL_STATE(3348)] = 117551, + [SMALL_STATE(3349)] = 117619, + [SMALL_STATE(3350)] = 117675, + [SMALL_STATE(3351)] = 117747, + [SMALL_STATE(3352)] = 117823, + [SMALL_STATE(3353)] = 117933, + [SMALL_STATE(3354)] = 118001, + [SMALL_STATE(3355)] = 118069, + [SMALL_STATE(3356)] = 118137, + [SMALL_STATE(3357)] = 118247, + [SMALL_STATE(3358)] = 118315, + [SMALL_STATE(3359)] = 118425, + [SMALL_STATE(3360)] = 118501, + [SMALL_STATE(3361)] = 118557, + [SMALL_STATE(3362)] = 118625, + [SMALL_STATE(3363)] = 118693, + [SMALL_STATE(3364)] = 118755, + [SMALL_STATE(3365)] = 118823, + [SMALL_STATE(3366)] = 118933, + [SMALL_STATE(3367)] = 119009, + [SMALL_STATE(3368)] = 119071, + [SMALL_STATE(3369)] = 119130, + [SMALL_STATE(3370)] = 119189, + [SMALL_STATE(3371)] = 119248, + [SMALL_STATE(3372)] = 119307, + [SMALL_STATE(3373)] = 119366, + [SMALL_STATE(3374)] = 119425, + [SMALL_STATE(3375)] = 119494, + [SMALL_STATE(3376)] = 119567, + [SMALL_STATE(3377)] = 119640, + [SMALL_STATE(3378)] = 119709, + [SMALL_STATE(3379)] = 119778, + [SMALL_STATE(3380)] = 119851, + [SMALL_STATE(3381)] = 119924, + [SMALL_STATE(3382)] = 119997, + [SMALL_STATE(3383)] = 120072, + [SMALL_STATE(3384)] = 120127, + [SMALL_STATE(3385)] = 120200, + [SMALL_STATE(3386)] = 120255, + [SMALL_STATE(3387)] = 120310, + [SMALL_STATE(3388)] = 120403, + [SMALL_STATE(3389)] = 120458, + [SMALL_STATE(3390)] = 120527, + [SMALL_STATE(3391)] = 120606, + [SMALL_STATE(3392)] = 120661, + [SMALL_STATE(3393)] = 120716, + [SMALL_STATE(3394)] = 120771, + [SMALL_STATE(3395)] = 120826, + [SMALL_STATE(3396)] = 120885, + [SMALL_STATE(3397)] = 120944, + [SMALL_STATE(3398)] = 120999, + [SMALL_STATE(3399)] = 121054, + [SMALL_STATE(3400)] = 121115, + [SMALL_STATE(3401)] = 121174, + [SMALL_STATE(3402)] = 121251, + [SMALL_STATE(3403)] = 121306, + [SMALL_STATE(3404)] = 121365, + [SMALL_STATE(3405)] = 121420, + [SMALL_STATE(3406)] = 121495, + [SMALL_STATE(3407)] = 121564, [SMALL_STATE(3408)] = 121622, - [SMALL_STATE(3409)] = 121684, - [SMALL_STATE(3410)] = 121746, - [SMALL_STATE(3411)] = 121808, - [SMALL_STATE(3412)] = 121870, - [SMALL_STATE(3413)] = 121940, - [SMALL_STATE(3414)] = 122002, - [SMALL_STATE(3415)] = 122068, - [SMALL_STATE(3416)] = 122134, - [SMALL_STATE(3417)] = 122196, - [SMALL_STATE(3418)] = 122258, - [SMALL_STATE(3419)] = 122312, - [SMALL_STATE(3420)] = 122374, - [SMALL_STATE(3421)] = 122436, - [SMALL_STATE(3422)] = 122498, - [SMALL_STATE(3423)] = 122564, - [SMALL_STATE(3424)] = 122630, - [SMALL_STATE(3425)] = 122692, - [SMALL_STATE(3426)] = 122746, - [SMALL_STATE(3427)] = 122812, - [SMALL_STATE(3428)] = 122866, - [SMALL_STATE(3429)] = 122928, - [SMALL_STATE(3430)] = 122994, - [SMALL_STATE(3431)] = 123060, - [SMALL_STATE(3432)] = 123130, - [SMALL_STATE(3433)] = 123196, - [SMALL_STATE(3434)] = 123250, - [SMALL_STATE(3435)] = 123308, - [SMALL_STATE(3436)] = 123374, - [SMALL_STATE(3437)] = 123436, - [SMALL_STATE(3438)] = 123502, - [SMALL_STATE(3439)] = 123564, - [SMALL_STATE(3440)] = 123630, - [SMALL_STATE(3441)] = 123696, - [SMALL_STATE(3442)] = 123754, - [SMALL_STATE(3443)] = 123812, - [SMALL_STATE(3444)] = 123878, - [SMALL_STATE(3445)] = 123932, - [SMALL_STATE(3446)] = 123990, - [SMALL_STATE(3447)] = 124048, - [SMALL_STATE(3448)] = 124114, - [SMALL_STATE(3449)] = 124182, - [SMALL_STATE(3450)] = 124254, - [SMALL_STATE(3451)] = 124307, - [SMALL_STATE(3452)] = 124372, - [SMALL_STATE(3453)] = 124425, - [SMALL_STATE(3454)] = 124478, - [SMALL_STATE(3455)] = 124531, - [SMALL_STATE(3456)] = 124584, - [SMALL_STATE(3457)] = 124637, - [SMALL_STATE(3458)] = 124690, - [SMALL_STATE(3459)] = 124743, - [SMALL_STATE(3460)] = 124796, - [SMALL_STATE(3461)] = 124849, - [SMALL_STATE(3462)] = 124899, - [SMALL_STATE(3463)] = 124949, - [SMALL_STATE(3464)] = 124999, - [SMALL_STATE(3465)] = 125049, - [SMALL_STATE(3466)] = 125099, - [SMALL_STATE(3467)] = 125149, - [SMALL_STATE(3468)] = 125199, - [SMALL_STATE(3469)] = 125255, - [SMALL_STATE(3470)] = 125311, - [SMALL_STATE(3471)] = 125361, - [SMALL_STATE(3472)] = 125411, - [SMALL_STATE(3473)] = 125461, - [SMALL_STATE(3474)] = 125511, - [SMALL_STATE(3475)] = 125561, - [SMALL_STATE(3476)] = 125611, - [SMALL_STATE(3477)] = 125661, - [SMALL_STATE(3478)] = 125711, - [SMALL_STATE(3479)] = 125761, - [SMALL_STATE(3480)] = 125811, - [SMALL_STATE(3481)] = 125861, - [SMALL_STATE(3482)] = 125911, - [SMALL_STATE(3483)] = 125961, - [SMALL_STATE(3484)] = 126011, - [SMALL_STATE(3485)] = 126061, - [SMALL_STATE(3486)] = 126111, - [SMALL_STATE(3487)] = 126165, - [SMALL_STATE(3488)] = 126215, - [SMALL_STATE(3489)] = 126269, - [SMALL_STATE(3490)] = 126319, - [SMALL_STATE(3491)] = 126369, - [SMALL_STATE(3492)] = 126419, - [SMALL_STATE(3493)] = 126469, - [SMALL_STATE(3494)] = 126519, - [SMALL_STATE(3495)] = 126569, - [SMALL_STATE(3496)] = 126619, - [SMALL_STATE(3497)] = 126669, - [SMALL_STATE(3498)] = 126719, - [SMALL_STATE(3499)] = 126769, - [SMALL_STATE(3500)] = 126819, - [SMALL_STATE(3501)] = 126869, - [SMALL_STATE(3502)] = 126919, - [SMALL_STATE(3503)] = 126969, - [SMALL_STATE(3504)] = 127019, - [SMALL_STATE(3505)] = 127069, - [SMALL_STATE(3506)] = 127119, - [SMALL_STATE(3507)] = 127169, - [SMALL_STATE(3508)] = 127221, - [SMALL_STATE(3509)] = 127295, - [SMALL_STATE(3510)] = 127345, - [SMALL_STATE(3511)] = 127395, - [SMALL_STATE(3512)] = 127445, - [SMALL_STATE(3513)] = 127495, - [SMALL_STATE(3514)] = 127545, - [SMALL_STATE(3515)] = 127595, - [SMALL_STATE(3516)] = 127647, - [SMALL_STATE(3517)] = 127697, - [SMALL_STATE(3518)] = 127747, - [SMALL_STATE(3519)] = 127794, - [SMALL_STATE(3520)] = 127859, - [SMALL_STATE(3521)] = 127906, - [SMALL_STATE(3522)] = 127953, - [SMALL_STATE(3523)] = 128000, - [SMALL_STATE(3524)] = 128047, - [SMALL_STATE(3525)] = 128094, - [SMALL_STATE(3526)] = 128157, - [SMALL_STATE(3527)] = 128204, - [SMALL_STATE(3528)] = 128271, - [SMALL_STATE(3529)] = 128336, - [SMALL_STATE(3530)] = 128403, - [SMALL_STATE(3531)] = 128454, - [SMALL_STATE(3532)] = 128505, - [SMALL_STATE(3533)] = 128570, - [SMALL_STATE(3534)] = 128617, - [SMALL_STATE(3535)] = 128682, - [SMALL_STATE(3536)] = 128749, - [SMALL_STATE(3537)] = 128809, - [SMALL_STATE(3538)] = 128869, - [SMALL_STATE(3539)] = 128929, - [SMALL_STATE(3540)] = 128989, - [SMALL_STATE(3541)] = 129049, - [SMALL_STATE(3542)] = 129109, - [SMALL_STATE(3543)] = 129185, - [SMALL_STATE(3544)] = 129245, - [SMALL_STATE(3545)] = 129321, - [SMALL_STATE(3546)] = 129381, - [SMALL_STATE(3547)] = 129441, - [SMALL_STATE(3548)] = 129501, - [SMALL_STATE(3549)] = 129561, - [SMALL_STATE(3550)] = 129613, - [SMALL_STATE(3551)] = 129673, - [SMALL_STATE(3552)] = 129733, - [SMALL_STATE(3553)] = 129793, - [SMALL_STATE(3554)] = 129853, - [SMALL_STATE(3555)] = 129913, - [SMALL_STATE(3556)] = 129973, - [SMALL_STATE(3557)] = 130033, - [SMALL_STATE(3558)] = 130093, - [SMALL_STATE(3559)] = 130153, - [SMALL_STATE(3560)] = 130213, - [SMALL_STATE(3561)] = 130273, - [SMALL_STATE(3562)] = 130333, - [SMALL_STATE(3563)] = 130393, - [SMALL_STATE(3564)] = 130453, - [SMALL_STATE(3565)] = 130513, - [SMALL_STATE(3566)] = 130573, - [SMALL_STATE(3567)] = 130644, - [SMALL_STATE(3568)] = 130705, - [SMALL_STATE(3569)] = 130754, - [SMALL_STATE(3570)] = 130815, - [SMALL_STATE(3571)] = 130900, - [SMALL_STATE(3572)] = 130967, - [SMALL_STATE(3573)] = 131052, - [SMALL_STATE(3574)] = 131137, - [SMALL_STATE(3575)] = 131204, - [SMALL_STATE(3576)] = 131265, - [SMALL_STATE(3577)] = 131326, - [SMALL_STATE(3578)] = 131387, - [SMALL_STATE(3579)] = 131472, - [SMALL_STATE(3580)] = 131533, - [SMALL_STATE(3581)] = 131578, - [SMALL_STATE(3582)] = 131663, - [SMALL_STATE(3583)] = 131724, - [SMALL_STATE(3584)] = 131791, - [SMALL_STATE(3585)] = 131852, - [SMALL_STATE(3586)] = 131913, - [SMALL_STATE(3587)] = 131974, - [SMALL_STATE(3588)] = 132035, - [SMALL_STATE(3589)] = 132096, - [SMALL_STATE(3590)] = 132157, - [SMALL_STATE(3591)] = 132218, - [SMALL_STATE(3592)] = 132289, - [SMALL_STATE(3593)] = 132374, - [SMALL_STATE(3594)] = 132445, - [SMALL_STATE(3595)] = 132506, + [SMALL_STATE(3409)] = 121692, + [SMALL_STATE(3410)] = 121758, + [SMALL_STATE(3411)] = 121820, + [SMALL_STATE(3412)] = 121882, + [SMALL_STATE(3413)] = 121948, + [SMALL_STATE(3414)] = 122010, + [SMALL_STATE(3415)] = 122082, + [SMALL_STATE(3416)] = 122148, + [SMALL_STATE(3417)] = 122214, + [SMALL_STATE(3418)] = 122276, + [SMALL_STATE(3419)] = 122334, + [SMALL_STATE(3420)] = 122396, + [SMALL_STATE(3421)] = 122462, + [SMALL_STATE(3422)] = 122516, + [SMALL_STATE(3423)] = 122578, + [SMALL_STATE(3424)] = 122640, + [SMALL_STATE(3425)] = 122702, + [SMALL_STATE(3426)] = 122764, + [SMALL_STATE(3427)] = 122822, + [SMALL_STATE(3428)] = 122884, + [SMALL_STATE(3429)] = 122946, + [SMALL_STATE(3430)] = 123008, + [SMALL_STATE(3431)] = 123066, + [SMALL_STATE(3432)] = 123128, + [SMALL_STATE(3433)] = 123190, + [SMALL_STATE(3434)] = 123248, + [SMALL_STATE(3435)] = 123314, + [SMALL_STATE(3436)] = 123368, + [SMALL_STATE(3437)] = 123434, + [SMALL_STATE(3438)] = 123500, + [SMALL_STATE(3439)] = 123566, + [SMALL_STATE(3440)] = 123620, + [SMALL_STATE(3441)] = 123686, + [SMALL_STATE(3442)] = 123752, + [SMALL_STATE(3443)] = 123820, + [SMALL_STATE(3444)] = 123886, + [SMALL_STATE(3445)] = 123952, + [SMALL_STATE(3446)] = 124006, + [SMALL_STATE(3447)] = 124072, + [SMALL_STATE(3448)] = 124126, + [SMALL_STATE(3449)] = 124192, + [SMALL_STATE(3450)] = 124258, + [SMALL_STATE(3451)] = 124328, + [SMALL_STATE(3452)] = 124393, + [SMALL_STATE(3453)] = 124446, + [SMALL_STATE(3454)] = 124499, + [SMALL_STATE(3455)] = 124552, + [SMALL_STATE(3456)] = 124605, + [SMALL_STATE(3457)] = 124658, + [SMALL_STATE(3458)] = 124711, + [SMALL_STATE(3459)] = 124764, + [SMALL_STATE(3460)] = 124817, + [SMALL_STATE(3461)] = 124870, + [SMALL_STATE(3462)] = 124923, + [SMALL_STATE(3463)] = 124973, + [SMALL_STATE(3464)] = 125023, + [SMALL_STATE(3465)] = 125073, + [SMALL_STATE(3466)] = 125123, + [SMALL_STATE(3467)] = 125173, + [SMALL_STATE(3468)] = 125223, + [SMALL_STATE(3469)] = 125273, + [SMALL_STATE(3470)] = 125323, + [SMALL_STATE(3471)] = 125373, + [SMALL_STATE(3472)] = 125425, + [SMALL_STATE(3473)] = 125475, + [SMALL_STATE(3474)] = 125525, + [SMALL_STATE(3475)] = 125575, + [SMALL_STATE(3476)] = 125625, + [SMALL_STATE(3477)] = 125675, + [SMALL_STATE(3478)] = 125725, + [SMALL_STATE(3479)] = 125775, + [SMALL_STATE(3480)] = 125825, + [SMALL_STATE(3481)] = 125875, + [SMALL_STATE(3482)] = 125933, + [SMALL_STATE(3483)] = 125983, + [SMALL_STATE(3484)] = 126033, + [SMALL_STATE(3485)] = 126083, + [SMALL_STATE(3486)] = 126133, + [SMALL_STATE(3487)] = 126183, + [SMALL_STATE(3488)] = 126233, + [SMALL_STATE(3489)] = 126283, + [SMALL_STATE(3490)] = 126333, + [SMALL_STATE(3491)] = 126383, + [SMALL_STATE(3492)] = 126439, + [SMALL_STATE(3493)] = 126489, + [SMALL_STATE(3494)] = 126545, + [SMALL_STATE(3495)] = 126595, + [SMALL_STATE(3496)] = 126645, + [SMALL_STATE(3497)] = 126695, + [SMALL_STATE(3498)] = 126745, + [SMALL_STATE(3499)] = 126795, + [SMALL_STATE(3500)] = 126847, + [SMALL_STATE(3501)] = 126897, + [SMALL_STATE(3502)] = 126947, + [SMALL_STATE(3503)] = 127021, + [SMALL_STATE(3504)] = 127071, + [SMALL_STATE(3505)] = 127121, + [SMALL_STATE(3506)] = 127171, + [SMALL_STATE(3507)] = 127221, + [SMALL_STATE(3508)] = 127271, + [SMALL_STATE(3509)] = 127321, + [SMALL_STATE(3510)] = 127371, + [SMALL_STATE(3511)] = 127425, + [SMALL_STATE(3512)] = 127475, + [SMALL_STATE(3513)] = 127525, + [SMALL_STATE(3514)] = 127579, + [SMALL_STATE(3515)] = 127629, + [SMALL_STATE(3516)] = 127679, + [SMALL_STATE(3517)] = 127729, + [SMALL_STATE(3518)] = 127779, + [SMALL_STATE(3519)] = 127829, + [SMALL_STATE(3520)] = 127879, + [SMALL_STATE(3521)] = 127942, + [SMALL_STATE(3522)] = 128007, + [SMALL_STATE(3523)] = 128074, + [SMALL_STATE(3524)] = 128121, + [SMALL_STATE(3525)] = 128168, + [SMALL_STATE(3526)] = 128215, + [SMALL_STATE(3527)] = 128262, + [SMALL_STATE(3528)] = 128327, + [SMALL_STATE(3529)] = 128374, + [SMALL_STATE(3530)] = 128425, + [SMALL_STATE(3531)] = 128476, + [SMALL_STATE(3532)] = 128523, + [SMALL_STATE(3533)] = 128590, + [SMALL_STATE(3534)] = 128657, + [SMALL_STATE(3535)] = 128722, + [SMALL_STATE(3536)] = 128787, + [SMALL_STATE(3537)] = 128834, + [SMALL_STATE(3538)] = 128881, + [SMALL_STATE(3539)] = 128941, + [SMALL_STATE(3540)] = 129001, + [SMALL_STATE(3541)] = 129077, + [SMALL_STATE(3542)] = 129137, + [SMALL_STATE(3543)] = 129197, + [SMALL_STATE(3544)] = 129257, + [SMALL_STATE(3545)] = 129317, + [SMALL_STATE(3546)] = 129377, + [SMALL_STATE(3547)] = 129437, + [SMALL_STATE(3548)] = 129497, + [SMALL_STATE(3549)] = 129557, + [SMALL_STATE(3550)] = 129617, + [SMALL_STATE(3551)] = 129693, + [SMALL_STATE(3552)] = 129753, + [SMALL_STATE(3553)] = 129813, + [SMALL_STATE(3554)] = 129873, + [SMALL_STATE(3555)] = 129933, + [SMALL_STATE(3556)] = 129993, + [SMALL_STATE(3557)] = 130053, + [SMALL_STATE(3558)] = 130113, + [SMALL_STATE(3559)] = 130159, + [SMALL_STATE(3560)] = 130219, + [SMALL_STATE(3561)] = 130279, + [SMALL_STATE(3562)] = 130339, + [SMALL_STATE(3563)] = 130399, + [SMALL_STATE(3564)] = 130459, + [SMALL_STATE(3565)] = 130519, + [SMALL_STATE(3566)] = 130579, + [SMALL_STATE(3567)] = 130639, + [SMALL_STATE(3568)] = 130699, + [SMALL_STATE(3569)] = 130766, + [SMALL_STATE(3570)] = 130827, + [SMALL_STATE(3571)] = 130912, + [SMALL_STATE(3572)] = 130997, + [SMALL_STATE(3573)] = 131058, + [SMALL_STATE(3574)] = 131143, + [SMALL_STATE(3575)] = 131228, + [SMALL_STATE(3576)] = 131295, + [SMALL_STATE(3577)] = 131356, + [SMALL_STATE(3578)] = 131441, + [SMALL_STATE(3579)] = 131502, + [SMALL_STATE(3580)] = 131551, + [SMALL_STATE(3581)] = 131612, + [SMALL_STATE(3582)] = 131673, + [SMALL_STATE(3583)] = 131744, + [SMALL_STATE(3584)] = 131805, + [SMALL_STATE(3585)] = 131866, + [SMALL_STATE(3586)] = 131927, + [SMALL_STATE(3587)] = 132012, + [SMALL_STATE(3588)] = 132073, + [SMALL_STATE(3589)] = 132140, + [SMALL_STATE(3590)] = 132201, + [SMALL_STATE(3591)] = 132286, + [SMALL_STATE(3592)] = 132347, + [SMALL_STATE(3593)] = 132408, + [SMALL_STATE(3594)] = 132469, + [SMALL_STATE(3595)] = 132530, [SMALL_STATE(3596)] = 132591, - [SMALL_STATE(3597)] = 132652, + [SMALL_STATE(3597)] = 132676, [SMALL_STATE(3598)] = 132737, [SMALL_STATE(3599)] = 132822, - [SMALL_STATE(3600)] = 132883, - [SMALL_STATE(3601)] = 132968, - [SMALL_STATE(3602)] = 133029, - [SMALL_STATE(3603)] = 133090, - [SMALL_STATE(3604)] = 133151, - [SMALL_STATE(3605)] = 133236, - [SMALL_STATE(3606)] = 133297, - [SMALL_STATE(3607)] = 133358, - [SMALL_STATE(3608)] = 133425, - [SMALL_STATE(3609)] = 133486, - [SMALL_STATE(3610)] = 133547, - [SMALL_STATE(3611)] = 133632, - [SMALL_STATE(3612)] = 133693, - [SMALL_STATE(3613)] = 133754, - [SMALL_STATE(3614)] = 133815, - [SMALL_STATE(3615)] = 133876, - [SMALL_STATE(3616)] = 133937, - [SMALL_STATE(3617)] = 133998, - [SMALL_STATE(3618)] = 134062, - [SMALL_STATE(3619)] = 134108, - [SMALL_STATE(3620)] = 134172, - [SMALL_STATE(3621)] = 134236, - [SMALL_STATE(3622)] = 134300, - [SMALL_STATE(3623)] = 134364, - [SMALL_STATE(3624)] = 134422, - [SMALL_STATE(3625)] = 134486, - [SMALL_STATE(3626)] = 134550, - [SMALL_STATE(3627)] = 134614, - [SMALL_STATE(3628)] = 134678, - [SMALL_STATE(3629)] = 134742, - [SMALL_STATE(3630)] = 134806, - [SMALL_STATE(3631)] = 134870, - [SMALL_STATE(3632)] = 134930, - [SMALL_STATE(3633)] = 134994, - [SMALL_STATE(3634)] = 135058, - [SMALL_STATE(3635)] = 135122, - [SMALL_STATE(3636)] = 135182, - [SMALL_STATE(3637)] = 135246, - [SMALL_STATE(3638)] = 135301, - [SMALL_STATE(3639)] = 135356, - [SMALL_STATE(3640)] = 135411, - [SMALL_STATE(3641)] = 135466, - [SMALL_STATE(3642)] = 135523, - [SMALL_STATE(3643)] = 135578, - [SMALL_STATE(3644)] = 135635, - [SMALL_STATE(3645)] = 135690, - [SMALL_STATE(3646)] = 135747, - [SMALL_STATE(3647)] = 135802, - [SMALL_STATE(3648)] = 135857, - [SMALL_STATE(3649)] = 135914, - [SMALL_STATE(3650)] = 135971, - [SMALL_STATE(3651)] = 136026, - [SMALL_STATE(3652)] = 136083, - [SMALL_STATE(3653)] = 136126, - [SMALL_STATE(3654)] = 136169, - [SMALL_STATE(3655)] = 136224, - [SMALL_STATE(3656)] = 136281, - [SMALL_STATE(3657)] = 136336, - [SMALL_STATE(3658)] = 136391, - [SMALL_STATE(3659)] = 136446, - [SMALL_STATE(3660)] = 136501, - [SMALL_STATE(3661)] = 136556, - [SMALL_STATE(3662)] = 136611, - [SMALL_STATE(3663)] = 136654, - [SMALL_STATE(3664)] = 136697, - [SMALL_STATE(3665)] = 136752, - [SMALL_STATE(3666)] = 136809, - [SMALL_STATE(3667)] = 136864, - [SMALL_STATE(3668)] = 136919, - [SMALL_STATE(3669)] = 136962, - [SMALL_STATE(3670)] = 137019, - [SMALL_STATE(3671)] = 137076, - [SMALL_STATE(3672)] = 137131, - [SMALL_STATE(3673)] = 137186, - [SMALL_STATE(3674)] = 137241, - [SMALL_STATE(3675)] = 137298, - [SMALL_STATE(3676)] = 137355, - [SMALL_STATE(3677)] = 137410, - [SMALL_STATE(3678)] = 137465, - [SMALL_STATE(3679)] = 137520, - [SMALL_STATE(3680)] = 137575, - [SMALL_STATE(3681)] = 137630, - [SMALL_STATE(3682)] = 137673, - [SMALL_STATE(3683)] = 137728, - [SMALL_STATE(3684)] = 137783, - [SMALL_STATE(3685)] = 137838, - [SMALL_STATE(3686)] = 137893, - [SMALL_STATE(3687)] = 137950, - [SMALL_STATE(3688)] = 138005, - [SMALL_STATE(3689)] = 138060, - [SMALL_STATE(3690)] = 138115, - [SMALL_STATE(3691)] = 138170, - [SMALL_STATE(3692)] = 138225, - [SMALL_STATE(3693)] = 138280, - [SMALL_STATE(3694)] = 138335, - [SMALL_STATE(3695)] = 138390, - [SMALL_STATE(3696)] = 138445, - [SMALL_STATE(3697)] = 138500, - [SMALL_STATE(3698)] = 138557, - [SMALL_STATE(3699)] = 138597, - [SMALL_STATE(3700)] = 138632, - [SMALL_STATE(3701)] = 138679, - [SMALL_STATE(3702)] = 138726, - [SMALL_STATE(3703)] = 138761, - [SMALL_STATE(3704)] = 138808, - [SMALL_STATE(3705)] = 138843, - [SMALL_STATE(3706)] = 138877, - [SMALL_STATE(3707)] = 138911, - [SMALL_STATE(3708)] = 138944, - [SMALL_STATE(3709)] = 138977, - [SMALL_STATE(3710)] = 139010, - [SMALL_STATE(3711)] = 139043, - [SMALL_STATE(3712)] = 139076, - [SMALL_STATE(3713)] = 139109, - [SMALL_STATE(3714)] = 139142, - [SMALL_STATE(3715)] = 139175, - [SMALL_STATE(3716)] = 139208, - [SMALL_STATE(3717)] = 139241, - [SMALL_STATE(3718)] = 139274, - [SMALL_STATE(3719)] = 139307, - [SMALL_STATE(3720)] = 139340, - [SMALL_STATE(3721)] = 139373, - [SMALL_STATE(3722)] = 139406, - [SMALL_STATE(3723)] = 139439, - [SMALL_STATE(3724)] = 139472, - [SMALL_STATE(3725)] = 139505, - [SMALL_STATE(3726)] = 139538, - [SMALL_STATE(3727)] = 139571, - [SMALL_STATE(3728)] = 139604, - [SMALL_STATE(3729)] = 139637, - [SMALL_STATE(3730)] = 139670, - [SMALL_STATE(3731)] = 139703, - [SMALL_STATE(3732)] = 139736, - [SMALL_STATE(3733)] = 139769, - [SMALL_STATE(3734)] = 139802, - [SMALL_STATE(3735)] = 139835, - [SMALL_STATE(3736)] = 139868, - [SMALL_STATE(3737)] = 139901, - [SMALL_STATE(3738)] = 139934, - [SMALL_STATE(3739)] = 139967, - [SMALL_STATE(3740)] = 140008, - [SMALL_STATE(3741)] = 140041, - [SMALL_STATE(3742)] = 140074, - [SMALL_STATE(3743)] = 140128, - [SMALL_STATE(3744)] = 140166, - [SMALL_STATE(3745)] = 140220, - [SMALL_STATE(3746)] = 140274, - [SMALL_STATE(3747)] = 140328, - [SMALL_STATE(3748)] = 140382, - [SMALL_STATE(3749)] = 140413, - [SMALL_STATE(3750)] = 140444, - [SMALL_STATE(3751)] = 140475, - [SMALL_STATE(3752)] = 140506, - [SMALL_STATE(3753)] = 140537, - [SMALL_STATE(3754)] = 140568, - [SMALL_STATE(3755)] = 140599, - [SMALL_STATE(3756)] = 140630, - [SMALL_STATE(3757)] = 140661, - [SMALL_STATE(3758)] = 140692, - [SMALL_STATE(3759)] = 140723, - [SMALL_STATE(3760)] = 140758, - [SMALL_STATE(3761)] = 140789, - [SMALL_STATE(3762)] = 140824, - [SMALL_STATE(3763)] = 140857, - [SMALL_STATE(3764)] = 140888, - [SMALL_STATE(3765)] = 140921, - [SMALL_STATE(3766)] = 140952, - [SMALL_STATE(3767)] = 140983, - [SMALL_STATE(3768)] = 141014, - [SMALL_STATE(3769)] = 141057, - [SMALL_STATE(3770)] = 141088, - [SMALL_STATE(3771)] = 141119, - [SMALL_STATE(3772)] = 141162, - [SMALL_STATE(3773)] = 141193, - [SMALL_STATE(3774)] = 141224, - [SMALL_STATE(3775)] = 141267, - [SMALL_STATE(3776)] = 141298, - [SMALL_STATE(3777)] = 141330, - [SMALL_STATE(3778)] = 141362, - [SMALL_STATE(3779)] = 141394, - [SMALL_STATE(3780)] = 141424, - [SMALL_STATE(3781)] = 141454, - [SMALL_STATE(3782)] = 141483, - [SMALL_STATE(3783)] = 141512, - [SMALL_STATE(3784)] = 141547, - [SMALL_STATE(3785)] = 141576, - [SMALL_STATE(3786)] = 141605, - [SMALL_STATE(3787)] = 141642, - [SMALL_STATE(3788)] = 141671, - [SMALL_STATE(3789)] = 141698, - [SMALL_STATE(3790)] = 141733, - [SMALL_STATE(3791)] = 141760, - [SMALL_STATE(3792)] = 141789, - [SMALL_STATE(3793)] = 141820, - [SMALL_STATE(3794)] = 141849, - [SMALL_STATE(3795)] = 141878, - [SMALL_STATE(3796)] = 141907, - [SMALL_STATE(3797)] = 141936, - [SMALL_STATE(3798)] = 141965, - [SMALL_STATE(3799)] = 142004, - [SMALL_STATE(3800)] = 142033, - [SMALL_STATE(3801)] = 142062, - [SMALL_STATE(3802)] = 142089, - [SMALL_STATE(3803)] = 142118, - [SMALL_STATE(3804)] = 142147, - [SMALL_STATE(3805)] = 142176, - [SMALL_STATE(3806)] = 142205, - [SMALL_STATE(3807)] = 142244, - [SMALL_STATE(3808)] = 142273, - [SMALL_STATE(3809)] = 142302, - [SMALL_STATE(3810)] = 142331, - [SMALL_STATE(3811)] = 142360, - [SMALL_STATE(3812)] = 142397, - [SMALL_STATE(3813)] = 142424, - [SMALL_STATE(3814)] = 142453, - [SMALL_STATE(3815)] = 142482, - [SMALL_STATE(3816)] = 142511, - [SMALL_STATE(3817)] = 142538, - [SMALL_STATE(3818)] = 142573, - [SMALL_STATE(3819)] = 142602, - [SMALL_STATE(3820)] = 142631, - [SMALL_STATE(3821)] = 142660, - [SMALL_STATE(3822)] = 142689, - [SMALL_STATE(3823)] = 142728, - [SMALL_STATE(3824)] = 142757, - [SMALL_STATE(3825)] = 142786, - [SMALL_STATE(3826)] = 142813, - [SMALL_STATE(3827)] = 142840, - [SMALL_STATE(3828)] = 142879, - [SMALL_STATE(3829)] = 142916, - [SMALL_STATE(3830)] = 142955, - [SMALL_STATE(3831)] = 142994, - [SMALL_STATE(3832)] = 143029, - [SMALL_STATE(3833)] = 143068, - [SMALL_STATE(3834)] = 143097, - [SMALL_STATE(3835)] = 143136, - [SMALL_STATE(3836)] = 143167, - [SMALL_STATE(3837)] = 143196, - [SMALL_STATE(3838)] = 143223, - [SMALL_STATE(3839)] = 143262, - [SMALL_STATE(3840)] = 143291, - [SMALL_STATE(3841)] = 143320, - [SMALL_STATE(3842)] = 143359, - [SMALL_STATE(3843)] = 143398, - [SMALL_STATE(3844)] = 143437, - [SMALL_STATE(3845)] = 143466, - [SMALL_STATE(3846)] = 143495, - [SMALL_STATE(3847)] = 143532, - [SMALL_STATE(3848)] = 143571, - [SMALL_STATE(3849)] = 143600, - [SMALL_STATE(3850)] = 143635, - [SMALL_STATE(3851)] = 143664, - [SMALL_STATE(3852)] = 143703, - [SMALL_STATE(3853)] = 143730, - [SMALL_STATE(3854)] = 143759, - [SMALL_STATE(3855)] = 143798, - [SMALL_STATE(3856)] = 143835, - [SMALL_STATE(3857)] = 143864, - [SMALL_STATE(3858)] = 143893, - [SMALL_STATE(3859)] = 143922, - [SMALL_STATE(3860)] = 143953, - [SMALL_STATE(3861)] = 143984, - [SMALL_STATE(3862)] = 144013, - [SMALL_STATE(3863)] = 144042, - [SMALL_STATE(3864)] = 144075, - [SMALL_STATE(3865)] = 144110, - [SMALL_STATE(3866)] = 144139, - [SMALL_STATE(3867)] = 144170, - [SMALL_STATE(3868)] = 144199, - [SMALL_STATE(3869)] = 144228, - [SMALL_STATE(3870)] = 144265, - [SMALL_STATE(3871)] = 144294, - [SMALL_STATE(3872)] = 144323, - [SMALL_STATE(3873)] = 144352, - [SMALL_STATE(3874)] = 144391, - [SMALL_STATE(3875)] = 144420, - [SMALL_STATE(3876)] = 144449, - [SMALL_STATE(3877)] = 144478, - [SMALL_STATE(3878)] = 144507, - [SMALL_STATE(3879)] = 144546, - [SMALL_STATE(3880)] = 144575, - [SMALL_STATE(3881)] = 144604, - [SMALL_STATE(3882)] = 144633, - [SMALL_STATE(3883)] = 144662, - [SMALL_STATE(3884)] = 144701, - [SMALL_STATE(3885)] = 144730, - [SMALL_STATE(3886)] = 144759, - [SMALL_STATE(3887)] = 144788, - [SMALL_STATE(3888)] = 144817, - [SMALL_STATE(3889)] = 144846, - [SMALL_STATE(3890)] = 144875, - [SMALL_STATE(3891)] = 144904, - [SMALL_STATE(3892)] = 144931, - [SMALL_STATE(3893)] = 144966, - [SMALL_STATE(3894)] = 145014, - [SMALL_STATE(3895)] = 145058, - [SMALL_STATE(3896)] = 145102, - [SMALL_STATE(3897)] = 145150, - [SMALL_STATE(3898)] = 145198, - [SMALL_STATE(3899)] = 145246, - [SMALL_STATE(3900)] = 145280, - [SMALL_STATE(3901)] = 145328, - [SMALL_STATE(3902)] = 145376, - [SMALL_STATE(3903)] = 145424, + [SMALL_STATE(3600)] = 132893, + [SMALL_STATE(3601)] = 132954, + [SMALL_STATE(3602)] = 133015, + [SMALL_STATE(3603)] = 133076, + [SMALL_STATE(3604)] = 133161, + [SMALL_STATE(3605)] = 133222, + [SMALL_STATE(3606)] = 133283, + [SMALL_STATE(3607)] = 133344, + [SMALL_STATE(3608)] = 133405, + [SMALL_STATE(3609)] = 133466, + [SMALL_STATE(3610)] = 133527, + [SMALL_STATE(3611)] = 133598, + [SMALL_STATE(3612)] = 133683, + [SMALL_STATE(3613)] = 133744, + [SMALL_STATE(3614)] = 133805, + [SMALL_STATE(3615)] = 133866, + [SMALL_STATE(3616)] = 133951, + [SMALL_STATE(3617)] = 134018, + [SMALL_STATE(3618)] = 134079, + [SMALL_STATE(3619)] = 134139, + [SMALL_STATE(3620)] = 134203, + [SMALL_STATE(3621)] = 134267, + [SMALL_STATE(3622)] = 134331, + [SMALL_STATE(3623)] = 134395, + [SMALL_STATE(3624)] = 134459, + [SMALL_STATE(3625)] = 134517, + [SMALL_STATE(3626)] = 134581, + [SMALL_STATE(3627)] = 134645, + [SMALL_STATE(3628)] = 134709, + [SMALL_STATE(3629)] = 134755, + [SMALL_STATE(3630)] = 134819, + [SMALL_STATE(3631)] = 134883, + [SMALL_STATE(3632)] = 134947, + [SMALL_STATE(3633)] = 135011, + [SMALL_STATE(3634)] = 135075, + [SMALL_STATE(3635)] = 135135, + [SMALL_STATE(3636)] = 135199, + [SMALL_STATE(3637)] = 135263, + [SMALL_STATE(3638)] = 135327, + [SMALL_STATE(3639)] = 135382, + [SMALL_STATE(3640)] = 135439, + [SMALL_STATE(3641)] = 135482, + [SMALL_STATE(3642)] = 135537, + [SMALL_STATE(3643)] = 135592, + [SMALL_STATE(3644)] = 135647, + [SMALL_STATE(3645)] = 135702, + [SMALL_STATE(3646)] = 135757, + [SMALL_STATE(3647)] = 135812, + [SMALL_STATE(3648)] = 135867, + [SMALL_STATE(3649)] = 135922, + [SMALL_STATE(3650)] = 135979, + [SMALL_STATE(3651)] = 136036, + [SMALL_STATE(3652)] = 136093, + [SMALL_STATE(3653)] = 136148, + [SMALL_STATE(3654)] = 136205, + [SMALL_STATE(3655)] = 136260, + [SMALL_STATE(3656)] = 136315, + [SMALL_STATE(3657)] = 136370, + [SMALL_STATE(3658)] = 136425, + [SMALL_STATE(3659)] = 136480, + [SMALL_STATE(3660)] = 136535, + [SMALL_STATE(3661)] = 136590, + [SMALL_STATE(3662)] = 136647, + [SMALL_STATE(3663)] = 136702, + [SMALL_STATE(3664)] = 136745, + [SMALL_STATE(3665)] = 136800, + [SMALL_STATE(3666)] = 136855, + [SMALL_STATE(3667)] = 136910, + [SMALL_STATE(3668)] = 136953, + [SMALL_STATE(3669)] = 137008, + [SMALL_STATE(3670)] = 137051, + [SMALL_STATE(3671)] = 137108, + [SMALL_STATE(3672)] = 137163, + [SMALL_STATE(3673)] = 137218, + [SMALL_STATE(3674)] = 137273, + [SMALL_STATE(3675)] = 137316, + [SMALL_STATE(3676)] = 137371, + [SMALL_STATE(3677)] = 137426, + [SMALL_STATE(3678)] = 137483, + [SMALL_STATE(3679)] = 137526, + [SMALL_STATE(3680)] = 137569, + [SMALL_STATE(3681)] = 137624, + [SMALL_STATE(3682)] = 137679, + [SMALL_STATE(3683)] = 137734, + [SMALL_STATE(3684)] = 137791, + [SMALL_STATE(3685)] = 137848, + [SMALL_STATE(3686)] = 137903, + [SMALL_STATE(3687)] = 137960, + [SMALL_STATE(3688)] = 138015, + [SMALL_STATE(3689)] = 138070, + [SMALL_STATE(3690)] = 138127, + [SMALL_STATE(3691)] = 138182, + [SMALL_STATE(3692)] = 138237, + [SMALL_STATE(3693)] = 138292, + [SMALL_STATE(3694)] = 138347, + [SMALL_STATE(3695)] = 138404, + [SMALL_STATE(3696)] = 138459, + [SMALL_STATE(3697)] = 138514, + [SMALL_STATE(3698)] = 138571, + [SMALL_STATE(3699)] = 138626, + [SMALL_STATE(3700)] = 138681, + [SMALL_STATE(3701)] = 138721, + [SMALL_STATE(3702)] = 138756, + [SMALL_STATE(3703)] = 138803, + [SMALL_STATE(3704)] = 138850, + [SMALL_STATE(3705)] = 138897, + [SMALL_STATE(3706)] = 138932, + [SMALL_STATE(3707)] = 138967, + [SMALL_STATE(3708)] = 139001, + [SMALL_STATE(3709)] = 139035, + [SMALL_STATE(3710)] = 139068, + [SMALL_STATE(3711)] = 139109, + [SMALL_STATE(3712)] = 139142, + [SMALL_STATE(3713)] = 139175, + [SMALL_STATE(3714)] = 139208, + [SMALL_STATE(3715)] = 139241, + [SMALL_STATE(3716)] = 139274, + [SMALL_STATE(3717)] = 139307, + [SMALL_STATE(3718)] = 139340, + [SMALL_STATE(3719)] = 139373, + [SMALL_STATE(3720)] = 139406, + [SMALL_STATE(3721)] = 139439, + [SMALL_STATE(3722)] = 139472, + [SMALL_STATE(3723)] = 139505, + [SMALL_STATE(3724)] = 139538, + [SMALL_STATE(3725)] = 139571, + [SMALL_STATE(3726)] = 139604, + [SMALL_STATE(3727)] = 139637, + [SMALL_STATE(3728)] = 139670, + [SMALL_STATE(3729)] = 139703, + [SMALL_STATE(3730)] = 139736, + [SMALL_STATE(3731)] = 139769, + [SMALL_STATE(3732)] = 139802, + [SMALL_STATE(3733)] = 139835, + [SMALL_STATE(3734)] = 139868, + [SMALL_STATE(3735)] = 139901, + [SMALL_STATE(3736)] = 139934, + [SMALL_STATE(3737)] = 139967, + [SMALL_STATE(3738)] = 140000, + [SMALL_STATE(3739)] = 140033, + [SMALL_STATE(3740)] = 140066, + [SMALL_STATE(3741)] = 140099, + [SMALL_STATE(3742)] = 140132, + [SMALL_STATE(3743)] = 140165, + [SMALL_STATE(3744)] = 140198, + [SMALL_STATE(3745)] = 140252, + [SMALL_STATE(3746)] = 140290, + [SMALL_STATE(3747)] = 140344, + [SMALL_STATE(3748)] = 140398, + [SMALL_STATE(3749)] = 140452, + [SMALL_STATE(3750)] = 140506, + [SMALL_STATE(3751)] = 140537, + [SMALL_STATE(3752)] = 140568, + [SMALL_STATE(3753)] = 140599, + [SMALL_STATE(3754)] = 140630, + [SMALL_STATE(3755)] = 140661, + [SMALL_STATE(3756)] = 140692, + [SMALL_STATE(3757)] = 140723, + [SMALL_STATE(3758)] = 140754, + [SMALL_STATE(3759)] = 140785, + [SMALL_STATE(3760)] = 140820, + [SMALL_STATE(3761)] = 140863, + [SMALL_STATE(3762)] = 140894, + [SMALL_STATE(3763)] = 140927, + [SMALL_STATE(3764)] = 140958, + [SMALL_STATE(3765)] = 140989, + [SMALL_STATE(3766)] = 141032, + [SMALL_STATE(3767)] = 141063, + [SMALL_STATE(3768)] = 141094, + [SMALL_STATE(3769)] = 141125, + [SMALL_STATE(3770)] = 141160, + [SMALL_STATE(3771)] = 141191, + [SMALL_STATE(3772)] = 141222, + [SMALL_STATE(3773)] = 141253, + [SMALL_STATE(3774)] = 141286, + [SMALL_STATE(3775)] = 141317, + [SMALL_STATE(3776)] = 141348, + [SMALL_STATE(3777)] = 141379, + [SMALL_STATE(3778)] = 141422, + [SMALL_STATE(3779)] = 141452, + [SMALL_STATE(3780)] = 141484, + [SMALL_STATE(3781)] = 141516, + [SMALL_STATE(3782)] = 141548, + [SMALL_STATE(3783)] = 141578, + [SMALL_STATE(3784)] = 141609, + [SMALL_STATE(3785)] = 141638, + [SMALL_STATE(3786)] = 141667, + [SMALL_STATE(3787)] = 141696, + [SMALL_STATE(3788)] = 141725, + [SMALL_STATE(3789)] = 141752, + [SMALL_STATE(3790)] = 141791, + [SMALL_STATE(3791)] = 141820, + [SMALL_STATE(3792)] = 141849, + [SMALL_STATE(3793)] = 141884, + [SMALL_STATE(3794)] = 141923, + [SMALL_STATE(3795)] = 141962, + [SMALL_STATE(3796)] = 141999, + [SMALL_STATE(3797)] = 142028, + [SMALL_STATE(3798)] = 142055, + [SMALL_STATE(3799)] = 142084, + [SMALL_STATE(3800)] = 142111, + [SMALL_STATE(3801)] = 142146, + [SMALL_STATE(3802)] = 142183, + [SMALL_STATE(3803)] = 142220, + [SMALL_STATE(3804)] = 142249, + [SMALL_STATE(3805)] = 142278, + [SMALL_STATE(3806)] = 142307, + [SMALL_STATE(3807)] = 142346, + [SMALL_STATE(3808)] = 142375, + [SMALL_STATE(3809)] = 142404, + [SMALL_STATE(3810)] = 142431, + [SMALL_STATE(3811)] = 142460, + [SMALL_STATE(3812)] = 142495, + [SMALL_STATE(3813)] = 142530, + [SMALL_STATE(3814)] = 142569, + [SMALL_STATE(3815)] = 142608, + [SMALL_STATE(3816)] = 142635, + [SMALL_STATE(3817)] = 142674, + [SMALL_STATE(3818)] = 142703, + [SMALL_STATE(3819)] = 142742, + [SMALL_STATE(3820)] = 142769, + [SMALL_STATE(3821)] = 142806, + [SMALL_STATE(3822)] = 142833, + [SMALL_STATE(3823)] = 142862, + [SMALL_STATE(3824)] = 142901, + [SMALL_STATE(3825)] = 142928, + [SMALL_STATE(3826)] = 142957, + [SMALL_STATE(3827)] = 142986, + [SMALL_STATE(3828)] = 143025, + [SMALL_STATE(3829)] = 143062, + [SMALL_STATE(3830)] = 143101, + [SMALL_STATE(3831)] = 143130, + [SMALL_STATE(3832)] = 143159, + [SMALL_STATE(3833)] = 143196, + [SMALL_STATE(3834)] = 143225, + [SMALL_STATE(3835)] = 143254, + [SMALL_STATE(3836)] = 143283, + [SMALL_STATE(3837)] = 143312, + [SMALL_STATE(3838)] = 143341, + [SMALL_STATE(3839)] = 143372, + [SMALL_STATE(3840)] = 143401, + [SMALL_STATE(3841)] = 143430, + [SMALL_STATE(3842)] = 143469, + [SMALL_STATE(3843)] = 143498, + [SMALL_STATE(3844)] = 143537, + [SMALL_STATE(3845)] = 143566, + [SMALL_STATE(3846)] = 143595, + [SMALL_STATE(3847)] = 143624, + [SMALL_STATE(3848)] = 143653, + [SMALL_STATE(3849)] = 143682, + [SMALL_STATE(3850)] = 143711, + [SMALL_STATE(3851)] = 143740, + [SMALL_STATE(3852)] = 143769, + [SMALL_STATE(3853)] = 143798, + [SMALL_STATE(3854)] = 143827, + [SMALL_STATE(3855)] = 143856, + [SMALL_STATE(3856)] = 143895, + [SMALL_STATE(3857)] = 143924, + [SMALL_STATE(3858)] = 143953, + [SMALL_STATE(3859)] = 143984, + [SMALL_STATE(3860)] = 144023, + [SMALL_STATE(3861)] = 144050, + [SMALL_STATE(3862)] = 144081, + [SMALL_STATE(3863)] = 144112, + [SMALL_STATE(3864)] = 144145, + [SMALL_STATE(3865)] = 144180, + [SMALL_STATE(3866)] = 144215, + [SMALL_STATE(3867)] = 144244, + [SMALL_STATE(3868)] = 144273, + [SMALL_STATE(3869)] = 144302, + [SMALL_STATE(3870)] = 144331, + [SMALL_STATE(3871)] = 144360, + [SMALL_STATE(3872)] = 144389, + [SMALL_STATE(3873)] = 144418, + [SMALL_STATE(3874)] = 144447, + [SMALL_STATE(3875)] = 144476, + [SMALL_STATE(3876)] = 144505, + [SMALL_STATE(3877)] = 144540, + [SMALL_STATE(3878)] = 144569, + [SMALL_STATE(3879)] = 144598, + [SMALL_STATE(3880)] = 144627, + [SMALL_STATE(3881)] = 144656, + [SMALL_STATE(3882)] = 144685, + [SMALL_STATE(3883)] = 144714, + [SMALL_STATE(3884)] = 144753, + [SMALL_STATE(3885)] = 144782, + [SMALL_STATE(3886)] = 144811, + [SMALL_STATE(3887)] = 144840, + [SMALL_STATE(3888)] = 144867, + [SMALL_STATE(3889)] = 144906, + [SMALL_STATE(3890)] = 144935, + [SMALL_STATE(3891)] = 144964, + [SMALL_STATE(3892)] = 145003, + [SMALL_STATE(3893)] = 145032, + [SMALL_STATE(3894)] = 145061, + [SMALL_STATE(3895)] = 145090, + [SMALL_STATE(3896)] = 145138, + [SMALL_STATE(3897)] = 145182, + [SMALL_STATE(3898)] = 145230, + [SMALL_STATE(3899)] = 145278, + [SMALL_STATE(3900)] = 145326, + [SMALL_STATE(3901)] = 145360, + [SMALL_STATE(3902)] = 145394, + [SMALL_STATE(3903)] = 145428, [SMALL_STATE(3904)] = 145472, [SMALL_STATE(3905)] = 145520, [SMALL_STATE(3906)] = 145568, [SMALL_STATE(3907)] = 145616, [SMALL_STATE(3908)] = 145664, - [SMALL_STATE(3909)] = 145698, - [SMALL_STATE(3910)] = 145746, - [SMALL_STATE(3911)] = 145794, - [SMALL_STATE(3912)] = 145842, - [SMALL_STATE(3913)] = 145890, - [SMALL_STATE(3914)] = 145938, - [SMALL_STATE(3915)] = 145986, - [SMALL_STATE(3916)] = 146030, - [SMALL_STATE(3917)] = 146062, + [SMALL_STATE(3909)] = 145696, + [SMALL_STATE(3910)] = 145744, + [SMALL_STATE(3911)] = 145792, + [SMALL_STATE(3912)] = 145840, + [SMALL_STATE(3913)] = 145888, + [SMALL_STATE(3914)] = 145936, + [SMALL_STATE(3915)] = 145970, + [SMALL_STATE(3916)] = 146018, + [SMALL_STATE(3917)] = 146066, [SMALL_STATE(3918)] = 146110, - [SMALL_STATE(3919)] = 146144, + [SMALL_STATE(3919)] = 146158, [SMALL_STATE(3920)] = 146192, [SMALL_STATE(3921)] = 146240, - [SMALL_STATE(3922)] = 146274, - [SMALL_STATE(3923)] = 146322, - [SMALL_STATE(3924)] = 146356, - [SMALL_STATE(3925)] = 146400, - [SMALL_STATE(3926)] = 146448, - [SMALL_STATE(3927)] = 146496, - [SMALL_STATE(3928)] = 146544, - [SMALL_STATE(3929)] = 146588, - [SMALL_STATE(3930)] = 146636, - [SMALL_STATE(3931)] = 146684, - [SMALL_STATE(3932)] = 146718, - [SMALL_STATE(3933)] = 146766, - [SMALL_STATE(3934)] = 146791, - [SMALL_STATE(3935)] = 146818, - [SMALL_STATE(3936)] = 146843, - [SMALL_STATE(3937)] = 146876, - [SMALL_STATE(3938)] = 146901, - [SMALL_STATE(3939)] = 146926, - [SMALL_STATE(3940)] = 146953, - [SMALL_STATE(3941)] = 146980, - [SMALL_STATE(3942)] = 147005, - [SMALL_STATE(3943)] = 147032, - [SMALL_STATE(3944)] = 147059, - [SMALL_STATE(3945)] = 147084, - [SMALL_STATE(3946)] = 147109, - [SMALL_STATE(3947)] = 147136, - [SMALL_STATE(3948)] = 147161, - [SMALL_STATE(3949)] = 147186, - [SMALL_STATE(3950)] = 147211, - [SMALL_STATE(3951)] = 147252, - [SMALL_STATE(3952)] = 147277, - [SMALL_STATE(3953)] = 147308, - [SMALL_STATE(3954)] = 147335, - [SMALL_STATE(3955)] = 147378, - [SMALL_STATE(3956)] = 147403, - [SMALL_STATE(3957)] = 147444, - [SMALL_STATE(3958)] = 147469, - [SMALL_STATE(3959)] = 147494, - [SMALL_STATE(3960)] = 147521, - [SMALL_STATE(3961)] = 147546, - [SMALL_STATE(3962)] = 147573, - [SMALL_STATE(3963)] = 147598, - [SMALL_STATE(3964)] = 147623, - [SMALL_STATE(3965)] = 147664, - [SMALL_STATE(3966)] = 147689, - [SMALL_STATE(3967)] = 147714, - [SMALL_STATE(3968)] = 147739, - [SMALL_STATE(3969)] = 147764, - [SMALL_STATE(3970)] = 147789, - [SMALL_STATE(3971)] = 147814, - [SMALL_STATE(3972)] = 147855, - [SMALL_STATE(3973)] = 147886, - [SMALL_STATE(3974)] = 147919, - [SMALL_STATE(3975)] = 147944, - [SMALL_STATE(3976)] = 147969, - [SMALL_STATE(3977)] = 147994, - [SMALL_STATE(3978)] = 148019, - [SMALL_STATE(3979)] = 148060, - [SMALL_STATE(3980)] = 148085, - [SMALL_STATE(3981)] = 148110, - [SMALL_STATE(3982)] = 148151, - [SMALL_STATE(3983)] = 148180, - [SMALL_STATE(3984)] = 148205, - [SMALL_STATE(3985)] = 148246, - [SMALL_STATE(3986)] = 148273, - [SMALL_STATE(3987)] = 148298, - [SMALL_STATE(3988)] = 148325, - [SMALL_STATE(3989)] = 148350, - [SMALL_STATE(3990)] = 148377, - [SMALL_STATE(3991)] = 148402, - [SMALL_STATE(3992)] = 148429, - [SMALL_STATE(3993)] = 148458, - [SMALL_STATE(3994)] = 148499, - [SMALL_STATE(3995)] = 148540, - [SMALL_STATE(3996)] = 148567, - [SMALL_STATE(3997)] = 148592, - [SMALL_STATE(3998)] = 148619, - [SMALL_STATE(3999)] = 148660, - [SMALL_STATE(4000)] = 148687, - [SMALL_STATE(4001)] = 148714, - [SMALL_STATE(4002)] = 148756, - [SMALL_STATE(4003)] = 148798, - [SMALL_STATE(4004)] = 148840, - [SMALL_STATE(4005)] = 148868, - [SMALL_STATE(4006)] = 148906, - [SMALL_STATE(4007)] = 148944, - [SMALL_STATE(4008)] = 148988, - [SMALL_STATE(4009)] = 149026, - [SMALL_STATE(4010)] = 149068, - [SMALL_STATE(4011)] = 149112, - [SMALL_STATE(4012)] = 149138, - [SMALL_STATE(4013)] = 149172, - [SMALL_STATE(4014)] = 149214, - [SMALL_STATE(4015)] = 149256, - [SMALL_STATE(4016)] = 149294, - [SMALL_STATE(4017)] = 149320, - [SMALL_STATE(4018)] = 149362, - [SMALL_STATE(4019)] = 149406, - [SMALL_STATE(4020)] = 149444, - [SMALL_STATE(4021)] = 149472, - [SMALL_STATE(4022)] = 149514, - [SMALL_STATE(4023)] = 149550, - [SMALL_STATE(4024)] = 149588, - [SMALL_STATE(4025)] = 149630, - [SMALL_STATE(4026)] = 149672, - [SMALL_STATE(4027)] = 149710, - [SMALL_STATE(4028)] = 149752, - [SMALL_STATE(4029)] = 149790, - [SMALL_STATE(4030)] = 149832, - [SMALL_STATE(4031)] = 149874, - [SMALL_STATE(4032)] = 149908, - [SMALL_STATE(4033)] = 149950, - [SMALL_STATE(4034)] = 149988, - [SMALL_STATE(4035)] = 150030, - [SMALL_STATE(4036)] = 150074, - [SMALL_STATE(4037)] = 150112, - [SMALL_STATE(4038)] = 150154, - [SMALL_STATE(4039)] = 150196, - [SMALL_STATE(4040)] = 150238, - [SMALL_STATE(4041)] = 150272, - [SMALL_STATE(4042)] = 150306, - [SMALL_STATE(4043)] = 150348, - [SMALL_STATE(4044)] = 150390, - [SMALL_STATE(4045)] = 150424, - [SMALL_STATE(4046)] = 150454, - [SMALL_STATE(4047)] = 150496, - [SMALL_STATE(4048)] = 150538, - [SMALL_STATE(4049)] = 150574, - [SMALL_STATE(4050)] = 150616, - [SMALL_STATE(4051)] = 150660, - [SMALL_STATE(4052)] = 150688, - [SMALL_STATE(4053)] = 150713, - [SMALL_STATE(4054)] = 150736, - [SMALL_STATE(4055)] = 150763, - [SMALL_STATE(4056)] = 150788, - [SMALL_STATE(4057)] = 150813, - [SMALL_STATE(4058)] = 150838, - [SMALL_STATE(4059)] = 150863, - [SMALL_STATE(4060)] = 150888, - [SMALL_STATE(4061)] = 150913, - [SMALL_STATE(4062)] = 150940, - [SMALL_STATE(4063)] = 150965, - [SMALL_STATE(4064)] = 150990, - [SMALL_STATE(4065)] = 151013, - [SMALL_STATE(4066)] = 151038, - [SMALL_STATE(4067)] = 151063, - [SMALL_STATE(4068)] = 151088, - [SMALL_STATE(4069)] = 151115, - [SMALL_STATE(4070)] = 151144, - [SMALL_STATE(4071)] = 151169, - [SMALL_STATE(4072)] = 151194, - [SMALL_STATE(4073)] = 151219, - [SMALL_STATE(4074)] = 151244, - [SMALL_STATE(4075)] = 151269, - [SMALL_STATE(4076)] = 151292, - [SMALL_STATE(4077)] = 151315, - [SMALL_STATE(4078)] = 151338, - [SMALL_STATE(4079)] = 151363, - [SMALL_STATE(4080)] = 151392, - [SMALL_STATE(4081)] = 151417, - [SMALL_STATE(4082)] = 151446, - [SMALL_STATE(4083)] = 151473, - [SMALL_STATE(4084)] = 151498, - [SMALL_STATE(4085)] = 151529, - [SMALL_STATE(4086)] = 151556, - [SMALL_STATE(4087)] = 151581, - [SMALL_STATE(4088)] = 151606, - [SMALL_STATE(4089)] = 151631, - [SMALL_STATE(4090)] = 151660, - [SMALL_STATE(4091)] = 151685, - [SMALL_STATE(4092)] = 151710, - [SMALL_STATE(4093)] = 151735, - [SMALL_STATE(4094)] = 151760, - [SMALL_STATE(4095)] = 151785, - [SMALL_STATE(4096)] = 151810, - [SMALL_STATE(4097)] = 151839, - [SMALL_STATE(4098)] = 151864, - [SMALL_STATE(4099)] = 151889, - [SMALL_STATE(4100)] = 151918, - [SMALL_STATE(4101)] = 151943, - [SMALL_STATE(4102)] = 151968, - [SMALL_STATE(4103)] = 151991, - [SMALL_STATE(4104)] = 152018, - [SMALL_STATE(4105)] = 152041, - [SMALL_STATE(4106)] = 152064, - [SMALL_STATE(4107)] = 152089, - [SMALL_STATE(4108)] = 152112, - [SMALL_STATE(4109)] = 152137, - [SMALL_STATE(4110)] = 152162, - [SMALL_STATE(4111)] = 152187, - [SMALL_STATE(4112)] = 152230, - [SMALL_STATE(4113)] = 152255, - [SMALL_STATE(4114)] = 152284, - [SMALL_STATE(4115)] = 152313, - [SMALL_STATE(4116)] = 152340, - [SMALL_STATE(4117)] = 152380, - [SMALL_STATE(4118)] = 152420, - [SMALL_STATE(4119)] = 152460, - [SMALL_STATE(4120)] = 152500, - [SMALL_STATE(4121)] = 152540, - [SMALL_STATE(4122)] = 152566, - [SMALL_STATE(4123)] = 152606, - [SMALL_STATE(4124)] = 152646, - [SMALL_STATE(4125)] = 152670, - [SMALL_STATE(4126)] = 152710, - [SMALL_STATE(4127)] = 152736, - [SMALL_STATE(4128)] = 152776, - [SMALL_STATE(4129)] = 152802, - [SMALL_STATE(4130)] = 152842, - [SMALL_STATE(4131)] = 152882, - [SMALL_STATE(4132)] = 152920, - [SMALL_STATE(4133)] = 152954, - [SMALL_STATE(4134)] = 152994, - [SMALL_STATE(4135)] = 153028, - [SMALL_STATE(4136)] = 153068, - [SMALL_STATE(4137)] = 153108, - [SMALL_STATE(4138)] = 153148, - [SMALL_STATE(4139)] = 153186, - [SMALL_STATE(4140)] = 153208, - [SMALL_STATE(4141)] = 153236, - [SMALL_STATE(4142)] = 153276, - [SMALL_STATE(4143)] = 153298, - [SMALL_STATE(4144)] = 153338, - [SMALL_STATE(4145)] = 153366, - [SMALL_STATE(4146)] = 153390, - [SMALL_STATE(4147)] = 153418, - [SMALL_STATE(4148)] = 153458, - [SMALL_STATE(4149)] = 153482, - [SMALL_STATE(4150)] = 153522, - [SMALL_STATE(4151)] = 153559, - [SMALL_STATE(4152)] = 153580, - [SMALL_STATE(4153)] = 153601, - [SMALL_STATE(4154)] = 153622, - [SMALL_STATE(4155)] = 153645, - [SMALL_STATE(4156)] = 153666, - [SMALL_STATE(4157)] = 153687, - [SMALL_STATE(4158)] = 153720, - [SMALL_STATE(4159)] = 153757, - [SMALL_STATE(4160)] = 153794, - [SMALL_STATE(4161)] = 153827, - [SMALL_STATE(4162)] = 153864, - [SMALL_STATE(4163)] = 153885, - [SMALL_STATE(4164)] = 153916, - [SMALL_STATE(4165)] = 153953, - [SMALL_STATE(4166)] = 153990, - [SMALL_STATE(4167)] = 154011, - [SMALL_STATE(4168)] = 154042, - [SMALL_STATE(4169)] = 154063, - [SMALL_STATE(4170)] = 154084, - [SMALL_STATE(4171)] = 154121, - [SMALL_STATE(4172)] = 154152, - [SMALL_STATE(4173)] = 154185, - [SMALL_STATE(4174)] = 154206, - [SMALL_STATE(4175)] = 154237, - [SMALL_STATE(4176)] = 154270, - [SMALL_STATE(4177)] = 154291, - [SMALL_STATE(4178)] = 154322, - [SMALL_STATE(4179)] = 154353, - [SMALL_STATE(4180)] = 154380, - [SMALL_STATE(4181)] = 154401, - [SMALL_STATE(4182)] = 154434, - [SMALL_STATE(4183)] = 154455, - [SMALL_STATE(4184)] = 154482, - [SMALL_STATE(4185)] = 154519, - [SMALL_STATE(4186)] = 154540, - [SMALL_STATE(4187)] = 154577, - [SMALL_STATE(4188)] = 154600, - [SMALL_STATE(4189)] = 154637, - [SMALL_STATE(4190)] = 154672, - [SMALL_STATE(4191)] = 154709, - [SMALL_STATE(4192)] = 154732, - [SMALL_STATE(4193)] = 154769, - [SMALL_STATE(4194)] = 154802, - [SMALL_STATE(4195)] = 154835, - [SMALL_STATE(4196)] = 154866, - [SMALL_STATE(4197)] = 154903, - [SMALL_STATE(4198)] = 154938, - [SMALL_STATE(4199)] = 154959, - [SMALL_STATE(4200)] = 154980, - [SMALL_STATE(4201)] = 155013, - [SMALL_STATE(4202)] = 155046, - [SMALL_STATE(4203)] = 155083, - [SMALL_STATE(4204)] = 155104, - [SMALL_STATE(4205)] = 155137, - [SMALL_STATE(4206)] = 155158, - [SMALL_STATE(4207)] = 155179, - [SMALL_STATE(4208)] = 155202, - [SMALL_STATE(4209)] = 155223, - [SMALL_STATE(4210)] = 155244, - [SMALL_STATE(4211)] = 155265, - [SMALL_STATE(4212)] = 155292, - [SMALL_STATE(4213)] = 155317, - [SMALL_STATE(4214)] = 155340, - [SMALL_STATE(4215)] = 155363, - [SMALL_STATE(4216)] = 155396, - [SMALL_STATE(4217)] = 155417, - [SMALL_STATE(4218)] = 155450, - [SMALL_STATE(4219)] = 155471, - [SMALL_STATE(4220)] = 155504, - [SMALL_STATE(4221)] = 155525, - [SMALL_STATE(4222)] = 155546, - [SMALL_STATE(4223)] = 155567, - [SMALL_STATE(4224)] = 155600, - [SMALL_STATE(4225)] = 155637, - [SMALL_STATE(4226)] = 155672, - [SMALL_STATE(4227)] = 155709, - [SMALL_STATE(4228)] = 155730, - [SMALL_STATE(4229)] = 155767, - [SMALL_STATE(4230)] = 155804, - [SMALL_STATE(4231)] = 155841, - [SMALL_STATE(4232)] = 155878, - [SMALL_STATE(4233)] = 155899, - [SMALL_STATE(4234)] = 155936, - [SMALL_STATE(4235)] = 155969, - [SMALL_STATE(4236)] = 156006, - [SMALL_STATE(4237)] = 156027, - [SMALL_STATE(4238)] = 156048, - [SMALL_STATE(4239)] = 156081, - [SMALL_STATE(4240)] = 156114, - [SMALL_STATE(4241)] = 156151, - [SMALL_STATE(4242)] = 156188, - [SMALL_STATE(4243)] = 156221, - [SMALL_STATE(4244)] = 156254, - [SMALL_STATE(4245)] = 156291, - [SMALL_STATE(4246)] = 156324, - [SMALL_STATE(4247)] = 156357, - [SMALL_STATE(4248)] = 156378, - [SMALL_STATE(4249)] = 156411, - [SMALL_STATE(4250)] = 156432, - [SMALL_STATE(4251)] = 156469, - [SMALL_STATE(4252)] = 156506, - [SMALL_STATE(4253)] = 156535, - [SMALL_STATE(4254)] = 156566, - [SMALL_STATE(4255)] = 156587, - [SMALL_STATE(4256)] = 156616, - [SMALL_STATE(4257)] = 156637, - [SMALL_STATE(4258)] = 156664, - [SMALL_STATE(4259)] = 156701, - [SMALL_STATE(4260)] = 156722, - [SMALL_STATE(4261)] = 156743, - [SMALL_STATE(4262)] = 156780, - [SMALL_STATE(4263)] = 156801, - [SMALL_STATE(4264)] = 156822, - [SMALL_STATE(4265)] = 156855, - [SMALL_STATE(4266)] = 156882, - [SMALL_STATE(4267)] = 156919, - [SMALL_STATE(4268)] = 156956, - [SMALL_STATE(4269)] = 156987, - [SMALL_STATE(4270)] = 157020, - [SMALL_STATE(4271)] = 157057, - [SMALL_STATE(4272)] = 157090, - [SMALL_STATE(4273)] = 157111, - [SMALL_STATE(4274)] = 157132, - [SMALL_STATE(4275)] = 157165, - [SMALL_STATE(4276)] = 157202, - [SMALL_STATE(4277)] = 157239, - [SMALL_STATE(4278)] = 157260, - [SMALL_STATE(4279)] = 157293, - [SMALL_STATE(4280)] = 157326, - [SMALL_STATE(4281)] = 157359, - [SMALL_STATE(4282)] = 157396, - [SMALL_STATE(4283)] = 157429, - [SMALL_STATE(4284)] = 157466, - [SMALL_STATE(4285)] = 157497, - [SMALL_STATE(4286)] = 157528, - [SMALL_STATE(4287)] = 157549, - [SMALL_STATE(4288)] = 157586, - [SMALL_STATE(4289)] = 157607, - [SMALL_STATE(4290)] = 157628, - [SMALL_STATE(4291)] = 157651, - [SMALL_STATE(4292)] = 157672, - [SMALL_STATE(4293)] = 157709, - [SMALL_STATE(4294)] = 157730, - [SMALL_STATE(4295)] = 157751, - [SMALL_STATE(4296)] = 157782, - [SMALL_STATE(4297)] = 157803, - [SMALL_STATE(4298)] = 157824, - [SMALL_STATE(4299)] = 157845, - [SMALL_STATE(4300)] = 157878, - [SMALL_STATE(4301)] = 157913, - [SMALL_STATE(4302)] = 157946, - [SMALL_STATE(4303)] = 157969, - [SMALL_STATE(4304)] = 157994, - [SMALL_STATE(4305)] = 158015, - [SMALL_STATE(4306)] = 158036, - [SMALL_STATE(4307)] = 158073, - [SMALL_STATE(4308)] = 158094, - [SMALL_STATE(4309)] = 158125, - [SMALL_STATE(4310)] = 158158, - [SMALL_STATE(4311)] = 158185, - [SMALL_STATE(4312)] = 158206, - [SMALL_STATE(4313)] = 158233, - [SMALL_STATE(4314)] = 158270, - [SMALL_STATE(4315)] = 158301, - [SMALL_STATE(4316)] = 158338, - [SMALL_STATE(4317)] = 158361, - [SMALL_STATE(4318)] = 158398, - [SMALL_STATE(4319)] = 158419, - [SMALL_STATE(4320)] = 158442, - [SMALL_STATE(4321)] = 158463, - [SMALL_STATE(4322)] = 158500, - [SMALL_STATE(4323)] = 158537, - [SMALL_STATE(4324)] = 158562, - [SMALL_STATE(4325)] = 158599, - [SMALL_STATE(4326)] = 158636, - [SMALL_STATE(4327)] = 158673, - [SMALL_STATE(4328)] = 158710, - [SMALL_STATE(4329)] = 158747, - [SMALL_STATE(4330)] = 158784, - [SMALL_STATE(4331)] = 158817, - [SMALL_STATE(4332)] = 158854, - [SMALL_STATE(4333)] = 158891, - [SMALL_STATE(4334)] = 158928, - [SMALL_STATE(4335)] = 158951, - [SMALL_STATE(4336)] = 158984, - [SMALL_STATE(4337)] = 159017, - [SMALL_STATE(4338)] = 159050, - [SMALL_STATE(4339)] = 159071, - [SMALL_STATE(4340)] = 159104, - [SMALL_STATE(4341)] = 159125, - [SMALL_STATE(4342)] = 159146, - [SMALL_STATE(4343)] = 159167, - [SMALL_STATE(4344)] = 159204, - [SMALL_STATE(4345)] = 159237, - [SMALL_STATE(4346)] = 159263, - [SMALL_STATE(4347)] = 159295, - [SMALL_STATE(4348)] = 159323, - [SMALL_STATE(4349)] = 159351, - [SMALL_STATE(4350)] = 159379, - [SMALL_STATE(4351)] = 159405, - [SMALL_STATE(4352)] = 159427, - [SMALL_STATE(4353)] = 159459, - [SMALL_STATE(4354)] = 159485, - [SMALL_STATE(4355)] = 159513, - [SMALL_STATE(4356)] = 159545, - [SMALL_STATE(4357)] = 159571, - [SMALL_STATE(4358)] = 159597, - [SMALL_STATE(4359)] = 159629, - [SMALL_STATE(4360)] = 159663, - [SMALL_STATE(4361)] = 159683, - [SMALL_STATE(4362)] = 159717, - [SMALL_STATE(4363)] = 159737, - [SMALL_STATE(4364)] = 159765, - [SMALL_STATE(4365)] = 159799, - [SMALL_STATE(4366)] = 159827, - [SMALL_STATE(4367)] = 159849, - [SMALL_STATE(4368)] = 159881, - [SMALL_STATE(4369)] = 159915, - [SMALL_STATE(4370)] = 159943, - [SMALL_STATE(4371)] = 159971, - [SMALL_STATE(4372)] = 159999, - [SMALL_STATE(4373)] = 160029, - [SMALL_STATE(4374)] = 160061, - [SMALL_STATE(4375)] = 160093, - [SMALL_STATE(4376)] = 160127, - [SMALL_STATE(4377)] = 160161, - [SMALL_STATE(4378)] = 160195, - [SMALL_STATE(4379)] = 160221, - [SMALL_STATE(4380)] = 160247, - [SMALL_STATE(4381)] = 160269, - [SMALL_STATE(4382)] = 160303, - [SMALL_STATE(4383)] = 160330, - [SMALL_STATE(4384)] = 160357, - [SMALL_STATE(4385)] = 160388, - [SMALL_STATE(4386)] = 160415, - [SMALL_STATE(4387)] = 160442, - [SMALL_STATE(4388)] = 160469, - [SMALL_STATE(4389)] = 160500, - [SMALL_STATE(4390)] = 160523, - [SMALL_STATE(4391)] = 160546, - [SMALL_STATE(4392)] = 160569, - [SMALL_STATE(4393)] = 160598, - [SMALL_STATE(4394)] = 160625, - [SMALL_STATE(4395)] = 160652, - [SMALL_STATE(4396)] = 160683, - [SMALL_STATE(4397)] = 160714, - [SMALL_STATE(4398)] = 160737, - [SMALL_STATE(4399)] = 160760, - [SMALL_STATE(4400)] = 160779, - [SMALL_STATE(4401)] = 160806, - [SMALL_STATE(4402)] = 160833, - [SMALL_STATE(4403)] = 160860, - [SMALL_STATE(4404)] = 160883, - [SMALL_STATE(4405)] = 160910, - [SMALL_STATE(4406)] = 160941, - [SMALL_STATE(4407)] = 160968, - [SMALL_STATE(4408)] = 160989, - [SMALL_STATE(4409)] = 161016, - [SMALL_STATE(4410)] = 161043, - [SMALL_STATE(4411)] = 161070, - [SMALL_STATE(4412)] = 161101, - [SMALL_STATE(4413)] = 161128, - [SMALL_STATE(4414)] = 161155, - [SMALL_STATE(4415)] = 161182, - [SMALL_STATE(4416)] = 161209, - [SMALL_STATE(4417)] = 161236, - [SMALL_STATE(4418)] = 161263, - [SMALL_STATE(4419)] = 161294, - [SMALL_STATE(4420)] = 161321, - [SMALL_STATE(4421)] = 161348, - [SMALL_STATE(4422)] = 161379, - [SMALL_STATE(4423)] = 161406, - [SMALL_STATE(4424)] = 161437, - [SMALL_STATE(4425)] = 161464, - [SMALL_STATE(4426)] = 161493, - [SMALL_STATE(4427)] = 161524, - [SMALL_STATE(4428)] = 161555, - [SMALL_STATE(4429)] = 161584, - [SMALL_STATE(4430)] = 161615, - [SMALL_STATE(4431)] = 161646, - [SMALL_STATE(4432)] = 161671, - [SMALL_STATE(4433)] = 161698, - [SMALL_STATE(4434)] = 161729, - [SMALL_STATE(4435)] = 161756, - [SMALL_STATE(4436)] = 161787, - [SMALL_STATE(4437)] = 161814, - [SMALL_STATE(4438)] = 161845, - [SMALL_STATE(4439)] = 161876, - [SMALL_STATE(4440)] = 161907, - [SMALL_STATE(4441)] = 161938, - [SMALL_STATE(4442)] = 161969, - [SMALL_STATE(4443)] = 161988, - [SMALL_STATE(4444)] = 162015, - [SMALL_STATE(4445)] = 162046, - [SMALL_STATE(4446)] = 162077, - [SMALL_STATE(4447)] = 162108, - [SMALL_STATE(4448)] = 162139, - [SMALL_STATE(4449)] = 162170, - [SMALL_STATE(4450)] = 162197, - [SMALL_STATE(4451)] = 162228, - [SMALL_STATE(4452)] = 162247, - [SMALL_STATE(4453)] = 162274, - [SMALL_STATE(4454)] = 162301, - [SMALL_STATE(4455)] = 162332, - [SMALL_STATE(4456)] = 162363, - [SMALL_STATE(4457)] = 162392, - [SMALL_STATE(4458)] = 162421, - [SMALL_STATE(4459)] = 162448, - [SMALL_STATE(4460)] = 162475, - [SMALL_STATE(4461)] = 162506, - [SMALL_STATE(4462)] = 162525, - [SMALL_STATE(4463)] = 162552, - [SMALL_STATE(4464)] = 162579, - [SMALL_STATE(4465)] = 162606, - [SMALL_STATE(4466)] = 162637, - [SMALL_STATE(4467)] = 162664, - [SMALL_STATE(4468)] = 162687, - [SMALL_STATE(4469)] = 162706, - [SMALL_STATE(4470)] = 162735, - [SMALL_STATE(4471)] = 162754, - [SMALL_STATE(4472)] = 162785, - [SMALL_STATE(4473)] = 162812, - [SMALL_STATE(4474)] = 162839, - [SMALL_STATE(4475)] = 162862, - [SMALL_STATE(4476)] = 162885, - [SMALL_STATE(4477)] = 162916, - [SMALL_STATE(4478)] = 162943, + [SMALL_STATE(3922)] = 146288, + [SMALL_STATE(3923)] = 146336, + [SMALL_STATE(3924)] = 146370, + [SMALL_STATE(3925)] = 146418, + [SMALL_STATE(3926)] = 146466, + [SMALL_STATE(3927)] = 146514, + [SMALL_STATE(3928)] = 146558, + [SMALL_STATE(3929)] = 146606, + [SMALL_STATE(3930)] = 146654, + [SMALL_STATE(3931)] = 146702, + [SMALL_STATE(3932)] = 146750, + [SMALL_STATE(3933)] = 146798, + [SMALL_STATE(3934)] = 146842, + [SMALL_STATE(3935)] = 146890, + [SMALL_STATE(3936)] = 146919, + [SMALL_STATE(3937)] = 146944, + [SMALL_STATE(3938)] = 146969, + [SMALL_STATE(3939)] = 146994, + [SMALL_STATE(3940)] = 147019, + [SMALL_STATE(3941)] = 147044, + [SMALL_STATE(3942)] = 147069, + [SMALL_STATE(3943)] = 147094, + [SMALL_STATE(3944)] = 147127, + [SMALL_STATE(3945)] = 147152, + [SMALL_STATE(3946)] = 147193, + [SMALL_STATE(3947)] = 147220, + [SMALL_STATE(3948)] = 147261, + [SMALL_STATE(3949)] = 147286, + [SMALL_STATE(3950)] = 147317, + [SMALL_STATE(3951)] = 147342, + [SMALL_STATE(3952)] = 147371, + [SMALL_STATE(3953)] = 147396, + [SMALL_STATE(3954)] = 147427, + [SMALL_STATE(3955)] = 147452, + [SMALL_STATE(3956)] = 147477, + [SMALL_STATE(3957)] = 147504, + [SMALL_STATE(3958)] = 147529, + [SMALL_STATE(3959)] = 147554, + [SMALL_STATE(3960)] = 147595, + [SMALL_STATE(3961)] = 147620, + [SMALL_STATE(3962)] = 147645, + [SMALL_STATE(3963)] = 147670, + [SMALL_STATE(3964)] = 147697, + [SMALL_STATE(3965)] = 147722, + [SMALL_STATE(3966)] = 147747, + [SMALL_STATE(3967)] = 147772, + [SMALL_STATE(3968)] = 147797, + [SMALL_STATE(3969)] = 147824, + [SMALL_STATE(3970)] = 147865, + [SMALL_STATE(3971)] = 147890, + [SMALL_STATE(3972)] = 147915, + [SMALL_STATE(3973)] = 147958, + [SMALL_STATE(3974)] = 147983, + [SMALL_STATE(3975)] = 148008, + [SMALL_STATE(3976)] = 148033, + [SMALL_STATE(3977)] = 148058, + [SMALL_STATE(3978)] = 148099, + [SMALL_STATE(3979)] = 148124, + [SMALL_STATE(3980)] = 148151, + [SMALL_STATE(3981)] = 148178, + [SMALL_STATE(3982)] = 148219, + [SMALL_STATE(3983)] = 148246, + [SMALL_STATE(3984)] = 148287, + [SMALL_STATE(3985)] = 148314, + [SMALL_STATE(3986)] = 148339, + [SMALL_STATE(3987)] = 148366, + [SMALL_STATE(3988)] = 148393, + [SMALL_STATE(3989)] = 148418, + [SMALL_STATE(3990)] = 148445, + [SMALL_STATE(3991)] = 148470, + [SMALL_STATE(3992)] = 148497, + [SMALL_STATE(3993)] = 148524, + [SMALL_STATE(3994)] = 148565, + [SMALL_STATE(3995)] = 148590, + [SMALL_STATE(3996)] = 148617, + [SMALL_STATE(3997)] = 148658, + [SMALL_STATE(3998)] = 148685, + [SMALL_STATE(3999)] = 148712, + [SMALL_STATE(4000)] = 148739, + [SMALL_STATE(4001)] = 148780, + [SMALL_STATE(4002)] = 148805, + [SMALL_STATE(4003)] = 148838, + [SMALL_STATE(4004)] = 148880, + [SMALL_STATE(4005)] = 148922, + [SMALL_STATE(4006)] = 148960, + [SMALL_STATE(4007)] = 148994, + [SMALL_STATE(4008)] = 149030, + [SMALL_STATE(4009)] = 149056, + [SMALL_STATE(4010)] = 149098, + [SMALL_STATE(4011)] = 149136, + [SMALL_STATE(4012)] = 149164, + [SMALL_STATE(4013)] = 149206, + [SMALL_STATE(4014)] = 149244, + [SMALL_STATE(4015)] = 149286, + [SMALL_STATE(4016)] = 149328, + [SMALL_STATE(4017)] = 149356, + [SMALL_STATE(4018)] = 149400, + [SMALL_STATE(4019)] = 149442, + [SMALL_STATE(4020)] = 149470, + [SMALL_STATE(4021)] = 149504, + [SMALL_STATE(4022)] = 149542, + [SMALL_STATE(4023)] = 149580, + [SMALL_STATE(4024)] = 149614, + [SMALL_STATE(4025)] = 149658, + [SMALL_STATE(4026)] = 149700, + [SMALL_STATE(4027)] = 149742, + [SMALL_STATE(4028)] = 149780, + [SMALL_STATE(4029)] = 149818, + [SMALL_STATE(4030)] = 149860, + [SMALL_STATE(4031)] = 149902, + [SMALL_STATE(4032)] = 149940, + [SMALL_STATE(4033)] = 149982, + [SMALL_STATE(4034)] = 150012, + [SMALL_STATE(4035)] = 150054, + [SMALL_STATE(4036)] = 150096, + [SMALL_STATE(4037)] = 150134, + [SMALL_STATE(4038)] = 150176, + [SMALL_STATE(4039)] = 150218, + [SMALL_STATE(4040)] = 150262, + [SMALL_STATE(4041)] = 150304, + [SMALL_STATE(4042)] = 150348, + [SMALL_STATE(4043)] = 150382, + [SMALL_STATE(4044)] = 150424, + [SMALL_STATE(4045)] = 150466, + [SMALL_STATE(4046)] = 150508, + [SMALL_STATE(4047)] = 150544, + [SMALL_STATE(4048)] = 150586, + [SMALL_STATE(4049)] = 150620, + [SMALL_STATE(4050)] = 150664, + [SMALL_STATE(4051)] = 150702, + [SMALL_STATE(4052)] = 150744, + [SMALL_STATE(4053)] = 150770, + [SMALL_STATE(4054)] = 150812, + [SMALL_STATE(4055)] = 150839, + [SMALL_STATE(4056)] = 150864, + [SMALL_STATE(4057)] = 150887, + [SMALL_STATE(4058)] = 150912, + [SMALL_STATE(4059)] = 150937, + [SMALL_STATE(4060)] = 150966, + [SMALL_STATE(4061)] = 150995, + [SMALL_STATE(4062)] = 151020, + [SMALL_STATE(4063)] = 151043, + [SMALL_STATE(4064)] = 151068, + [SMALL_STATE(4065)] = 151093, + [SMALL_STATE(4066)] = 151122, + [SMALL_STATE(4067)] = 151147, + [SMALL_STATE(4068)] = 151172, + [SMALL_STATE(4069)] = 151197, + [SMALL_STATE(4070)] = 151222, + [SMALL_STATE(4071)] = 151245, + [SMALL_STATE(4072)] = 151272, + [SMALL_STATE(4073)] = 151297, + [SMALL_STATE(4074)] = 151322, + [SMALL_STATE(4075)] = 151347, + [SMALL_STATE(4076)] = 151372, + [SMALL_STATE(4077)] = 151397, + [SMALL_STATE(4078)] = 151422, + [SMALL_STATE(4079)] = 151465, + [SMALL_STATE(4080)] = 151490, + [SMALL_STATE(4081)] = 151519, + [SMALL_STATE(4082)] = 151544, + [SMALL_STATE(4083)] = 151569, + [SMALL_STATE(4084)] = 151594, + [SMALL_STATE(4085)] = 151619, + [SMALL_STATE(4086)] = 151644, + [SMALL_STATE(4087)] = 151675, + [SMALL_STATE(4088)] = 151702, + [SMALL_STATE(4089)] = 151727, + [SMALL_STATE(4090)] = 151752, + [SMALL_STATE(4091)] = 151775, + [SMALL_STATE(4092)] = 151800, + [SMALL_STATE(4093)] = 151825, + [SMALL_STATE(4094)] = 151850, + [SMALL_STATE(4095)] = 151875, + [SMALL_STATE(4096)] = 151904, + [SMALL_STATE(4097)] = 151933, + [SMALL_STATE(4098)] = 151958, + [SMALL_STATE(4099)] = 151981, + [SMALL_STATE(4100)] = 152010, + [SMALL_STATE(4101)] = 152037, + [SMALL_STATE(4102)] = 152062, + [SMALL_STATE(4103)] = 152085, + [SMALL_STATE(4104)] = 152110, + [SMALL_STATE(4105)] = 152139, + [SMALL_STATE(4106)] = 152166, + [SMALL_STATE(4107)] = 152191, + [SMALL_STATE(4108)] = 152214, + [SMALL_STATE(4109)] = 152241, + [SMALL_STATE(4110)] = 152266, + [SMALL_STATE(4111)] = 152291, + [SMALL_STATE(4112)] = 152314, + [SMALL_STATE(4113)] = 152339, + [SMALL_STATE(4114)] = 152366, + [SMALL_STATE(4115)] = 152391, + [SMALL_STATE(4116)] = 152416, + [SMALL_STATE(4117)] = 152441, + [SMALL_STATE(4118)] = 152464, + [SMALL_STATE(4119)] = 152504, + [SMALL_STATE(4120)] = 152530, + [SMALL_STATE(4121)] = 152570, + [SMALL_STATE(4122)] = 152598, + [SMALL_STATE(4123)] = 152622, + [SMALL_STATE(4124)] = 152662, + [SMALL_STATE(4125)] = 152684, + [SMALL_STATE(4126)] = 152712, + [SMALL_STATE(4127)] = 152740, + [SMALL_STATE(4128)] = 152764, + [SMALL_STATE(4129)] = 152804, + [SMALL_STATE(4130)] = 152844, + [SMALL_STATE(4131)] = 152884, + [SMALL_STATE(4132)] = 152908, + [SMALL_STATE(4133)] = 152948, + [SMALL_STATE(4134)] = 152974, + [SMALL_STATE(4135)] = 153014, + [SMALL_STATE(4136)] = 153054, + [SMALL_STATE(4137)] = 153094, + [SMALL_STATE(4138)] = 153132, + [SMALL_STATE(4139)] = 153172, + [SMALL_STATE(4140)] = 153212, + [SMALL_STATE(4141)] = 153252, + [SMALL_STATE(4142)] = 153286, + [SMALL_STATE(4143)] = 153326, + [SMALL_STATE(4144)] = 153366, + [SMALL_STATE(4145)] = 153388, + [SMALL_STATE(4146)] = 153422, + [SMALL_STATE(4147)] = 153460, + [SMALL_STATE(4148)] = 153500, + [SMALL_STATE(4149)] = 153540, + [SMALL_STATE(4150)] = 153580, + [SMALL_STATE(4151)] = 153606, + [SMALL_STATE(4152)] = 153646, + [SMALL_STATE(4153)] = 153667, + [SMALL_STATE(4154)] = 153704, + [SMALL_STATE(4155)] = 153741, + [SMALL_STATE(4156)] = 153762, + [SMALL_STATE(4157)] = 153799, + [SMALL_STATE(4158)] = 153836, + [SMALL_STATE(4159)] = 153873, + [SMALL_STATE(4160)] = 153910, + [SMALL_STATE(4161)] = 153947, + [SMALL_STATE(4162)] = 153980, + [SMALL_STATE(4163)] = 154013, + [SMALL_STATE(4164)] = 154046, + [SMALL_STATE(4165)] = 154079, + [SMALL_STATE(4166)] = 154112, + [SMALL_STATE(4167)] = 154145, + [SMALL_STATE(4168)] = 154178, + [SMALL_STATE(4169)] = 154211, + [SMALL_STATE(4170)] = 154244, + [SMALL_STATE(4171)] = 154271, + [SMALL_STATE(4172)] = 154308, + [SMALL_STATE(4173)] = 154339, + [SMALL_STATE(4174)] = 154372, + [SMALL_STATE(4175)] = 154393, + [SMALL_STATE(4176)] = 154424, + [SMALL_STATE(4177)] = 154457, + [SMALL_STATE(4178)] = 154494, + [SMALL_STATE(4179)] = 154525, + [SMALL_STATE(4180)] = 154546, + [SMALL_STATE(4181)] = 154567, + [SMALL_STATE(4182)] = 154598, + [SMALL_STATE(4183)] = 154635, + [SMALL_STATE(4184)] = 154666, + [SMALL_STATE(4185)] = 154703, + [SMALL_STATE(4186)] = 154734, + [SMALL_STATE(4187)] = 154771, + [SMALL_STATE(4188)] = 154804, + [SMALL_STATE(4189)] = 154835, + [SMALL_STATE(4190)] = 154856, + [SMALL_STATE(4191)] = 154889, + [SMALL_STATE(4192)] = 154910, + [SMALL_STATE(4193)] = 154947, + [SMALL_STATE(4194)] = 154968, + [SMALL_STATE(4195)] = 154989, + [SMALL_STATE(4196)] = 155022, + [SMALL_STATE(4197)] = 155055, + [SMALL_STATE(4198)] = 155076, + [SMALL_STATE(4199)] = 155097, + [SMALL_STATE(4200)] = 155130, + [SMALL_STATE(4201)] = 155165, + [SMALL_STATE(4202)] = 155198, + [SMALL_STATE(4203)] = 155219, + [SMALL_STATE(4204)] = 155246, + [SMALL_STATE(4205)] = 155283, + [SMALL_STATE(4206)] = 155316, + [SMALL_STATE(4207)] = 155349, + [SMALL_STATE(4208)] = 155370, + [SMALL_STATE(4209)] = 155391, + [SMALL_STATE(4210)] = 155428, + [SMALL_STATE(4211)] = 155449, + [SMALL_STATE(4212)] = 155486, + [SMALL_STATE(4213)] = 155507, + [SMALL_STATE(4214)] = 155528, + [SMALL_STATE(4215)] = 155551, + [SMALL_STATE(4216)] = 155572, + [SMALL_STATE(4217)] = 155593, + [SMALL_STATE(4218)] = 155614, + [SMALL_STATE(4219)] = 155641, + [SMALL_STATE(4220)] = 155666, + [SMALL_STATE(4221)] = 155689, + [SMALL_STATE(4222)] = 155712, + [SMALL_STATE(4223)] = 155733, + [SMALL_STATE(4224)] = 155754, + [SMALL_STATE(4225)] = 155775, + [SMALL_STATE(4226)] = 155796, + [SMALL_STATE(4227)] = 155821, + [SMALL_STATE(4228)] = 155854, + [SMALL_STATE(4229)] = 155891, + [SMALL_STATE(4230)] = 155924, + [SMALL_STATE(4231)] = 155961, + [SMALL_STATE(4232)] = 155994, + [SMALL_STATE(4233)] = 156031, + [SMALL_STATE(4234)] = 156062, + [SMALL_STATE(4235)] = 156095, + [SMALL_STATE(4236)] = 156128, + [SMALL_STATE(4237)] = 156165, + [SMALL_STATE(4238)] = 156202, + [SMALL_STATE(4239)] = 156233, + [SMALL_STATE(4240)] = 156270, + [SMALL_STATE(4241)] = 156307, + [SMALL_STATE(4242)] = 156344, + [SMALL_STATE(4243)] = 156381, + [SMALL_STATE(4244)] = 156418, + [SMALL_STATE(4245)] = 156455, + [SMALL_STATE(4246)] = 156492, + [SMALL_STATE(4247)] = 156521, + [SMALL_STATE(4248)] = 156558, + [SMALL_STATE(4249)] = 156591, + [SMALL_STATE(4250)] = 156628, + [SMALL_STATE(4251)] = 156661, + [SMALL_STATE(4252)] = 156694, + [SMALL_STATE(4253)] = 156715, + [SMALL_STATE(4254)] = 156736, + [SMALL_STATE(4255)] = 156757, + [SMALL_STATE(4256)] = 156792, + [SMALL_STATE(4257)] = 156821, + [SMALL_STATE(4258)] = 156858, + [SMALL_STATE(4259)] = 156879, + [SMALL_STATE(4260)] = 156900, + [SMALL_STATE(4261)] = 156937, + [SMALL_STATE(4262)] = 156970, + [SMALL_STATE(4263)] = 157007, + [SMALL_STATE(4264)] = 157040, + [SMALL_STATE(4265)] = 157071, + [SMALL_STATE(4266)] = 157092, + [SMALL_STATE(4267)] = 157129, + [SMALL_STATE(4268)] = 157150, + [SMALL_STATE(4269)] = 157171, + [SMALL_STATE(4270)] = 157204, + [SMALL_STATE(4271)] = 157225, + [SMALL_STATE(4272)] = 157256, + [SMALL_STATE(4273)] = 157277, + [SMALL_STATE(4274)] = 157310, + [SMALL_STATE(4275)] = 157347, + [SMALL_STATE(4276)] = 157384, + [SMALL_STATE(4277)] = 157421, + [SMALL_STATE(4278)] = 157456, + [SMALL_STATE(4279)] = 157489, + [SMALL_STATE(4280)] = 157522, + [SMALL_STATE(4281)] = 157559, + [SMALL_STATE(4282)] = 157582, + [SMALL_STATE(4283)] = 157605, + [SMALL_STATE(4284)] = 157626, + [SMALL_STATE(4285)] = 157663, + [SMALL_STATE(4286)] = 157684, + [SMALL_STATE(4287)] = 157705, + [SMALL_STATE(4288)] = 157726, + [SMALL_STATE(4289)] = 157749, + [SMALL_STATE(4290)] = 157784, + [SMALL_STATE(4291)] = 157821, + [SMALL_STATE(4292)] = 157844, + [SMALL_STATE(4293)] = 157865, + [SMALL_STATE(4294)] = 157898, + [SMALL_STATE(4295)] = 157919, + [SMALL_STATE(4296)] = 157940, + [SMALL_STATE(4297)] = 157977, + [SMALL_STATE(4298)] = 158010, + [SMALL_STATE(4299)] = 158031, + [SMALL_STATE(4300)] = 158052, + [SMALL_STATE(4301)] = 158073, + [SMALL_STATE(4302)] = 158094, + [SMALL_STATE(4303)] = 158115, + [SMALL_STATE(4304)] = 158148, + [SMALL_STATE(4305)] = 158171, + [SMALL_STATE(4306)] = 158202, + [SMALL_STATE(4307)] = 158239, + [SMALL_STATE(4308)] = 158276, + [SMALL_STATE(4309)] = 158297, + [SMALL_STATE(4310)] = 158318, + [SMALL_STATE(4311)] = 158355, + [SMALL_STATE(4312)] = 158376, + [SMALL_STATE(4313)] = 158407, + [SMALL_STATE(4314)] = 158428, + [SMALL_STATE(4315)] = 158451, + [SMALL_STATE(4316)] = 158472, + [SMALL_STATE(4317)] = 158499, + [SMALL_STATE(4318)] = 158524, + [SMALL_STATE(4319)] = 158545, + [SMALL_STATE(4320)] = 158572, + [SMALL_STATE(4321)] = 158593, + [SMALL_STATE(4322)] = 158630, + [SMALL_STATE(4323)] = 158651, + [SMALL_STATE(4324)] = 158674, + [SMALL_STATE(4325)] = 158695, + [SMALL_STATE(4326)] = 158732, + [SMALL_STATE(4327)] = 158759, + [SMALL_STATE(4328)] = 158796, + [SMALL_STATE(4329)] = 158817, + [SMALL_STATE(4330)] = 158850, + [SMALL_STATE(4331)] = 158881, + [SMALL_STATE(4332)] = 158914, + [SMALL_STATE(4333)] = 158951, + [SMALL_STATE(4334)] = 158988, + [SMALL_STATE(4335)] = 159025, + [SMALL_STATE(4336)] = 159046, + [SMALL_STATE(4337)] = 159083, + [SMALL_STATE(4338)] = 159110, + [SMALL_STATE(4339)] = 159147, + [SMALL_STATE(4340)] = 159184, + [SMALL_STATE(4341)] = 159205, + [SMALL_STATE(4342)] = 159228, + [SMALL_STATE(4343)] = 159259, + [SMALL_STATE(4344)] = 159280, + [SMALL_STATE(4345)] = 159313, + [SMALL_STATE(4346)] = 159334, + [SMALL_STATE(4347)] = 159355, + [SMALL_STATE(4348)] = 159392, + [SMALL_STATE(4349)] = 159420, + [SMALL_STATE(4350)] = 159452, + [SMALL_STATE(4351)] = 159486, + [SMALL_STATE(4352)] = 159520, + [SMALL_STATE(4353)] = 159548, + [SMALL_STATE(4354)] = 159576, + [SMALL_STATE(4355)] = 159604, + [SMALL_STATE(4356)] = 159632, + [SMALL_STATE(4357)] = 159652, + [SMALL_STATE(4358)] = 159672, + [SMALL_STATE(4359)] = 159698, + [SMALL_STATE(4360)] = 159724, + [SMALL_STATE(4361)] = 159750, + [SMALL_STATE(4362)] = 159778, + [SMALL_STATE(4363)] = 159810, + [SMALL_STATE(4364)] = 159836, + [SMALL_STATE(4365)] = 159868, + [SMALL_STATE(4366)] = 159900, + [SMALL_STATE(4367)] = 159934, + [SMALL_STATE(4368)] = 159956, + [SMALL_STATE(4369)] = 159978, + [SMALL_STATE(4370)] = 160000, + [SMALL_STATE(4371)] = 160028, + [SMALL_STATE(4372)] = 160056, + [SMALL_STATE(4373)] = 160090, + [SMALL_STATE(4374)] = 160124, + [SMALL_STATE(4375)] = 160158, + [SMALL_STATE(4376)] = 160184, + [SMALL_STATE(4377)] = 160218, + [SMALL_STATE(4378)] = 160250, + [SMALL_STATE(4379)] = 160282, + [SMALL_STATE(4380)] = 160314, + [SMALL_STATE(4381)] = 160342, + [SMALL_STATE(4382)] = 160368, + [SMALL_STATE(4383)] = 160394, + [SMALL_STATE(4384)] = 160424, + [SMALL_STATE(4385)] = 160458, + [SMALL_STATE(4386)] = 160485, + [SMALL_STATE(4387)] = 160504, + [SMALL_STATE(4388)] = 160523, + [SMALL_STATE(4389)] = 160552, + [SMALL_STATE(4390)] = 160575, + [SMALL_STATE(4391)] = 160594, + [SMALL_STATE(4392)] = 160625, + [SMALL_STATE(4393)] = 160654, + [SMALL_STATE(4394)] = 160685, + [SMALL_STATE(4395)] = 160704, + [SMALL_STATE(4396)] = 160735, + [SMALL_STATE(4397)] = 160766, + [SMALL_STATE(4398)] = 160785, + [SMALL_STATE(4399)] = 160816, + [SMALL_STATE(4400)] = 160843, + [SMALL_STATE(4401)] = 160870, + [SMALL_STATE(4402)] = 160897, + [SMALL_STATE(4403)] = 160924, + [SMALL_STATE(4404)] = 160943, + [SMALL_STATE(4405)] = 160974, + [SMALL_STATE(4406)] = 161005, + [SMALL_STATE(4407)] = 161026, + [SMALL_STATE(4408)] = 161053, + [SMALL_STATE(4409)] = 161076, + [SMALL_STATE(4410)] = 161103, + [SMALL_STATE(4411)] = 161134, + [SMALL_STATE(4412)] = 161165, + [SMALL_STATE(4413)] = 161192, + [SMALL_STATE(4414)] = 161211, + [SMALL_STATE(4415)] = 161242, + [SMALL_STATE(4416)] = 161265, + [SMALL_STATE(4417)] = 161296, + [SMALL_STATE(4418)] = 161325, + [SMALL_STATE(4419)] = 161356, + [SMALL_STATE(4420)] = 161383, + [SMALL_STATE(4421)] = 161412, + [SMALL_STATE(4422)] = 161443, + [SMALL_STATE(4423)] = 161470, + [SMALL_STATE(4424)] = 161501, + [SMALL_STATE(4425)] = 161530, + [SMALL_STATE(4426)] = 161557, + [SMALL_STATE(4427)] = 161584, + [SMALL_STATE(4428)] = 161611, + [SMALL_STATE(4429)] = 161638, + [SMALL_STATE(4430)] = 161665, + [SMALL_STATE(4431)] = 161692, + [SMALL_STATE(4432)] = 161719, + [SMALL_STATE(4433)] = 161750, + [SMALL_STATE(4434)] = 161781, + [SMALL_STATE(4435)] = 161808, + [SMALL_STATE(4436)] = 161837, + [SMALL_STATE(4437)] = 161868, + [SMALL_STATE(4438)] = 161889, + [SMALL_STATE(4439)] = 161912, + [SMALL_STATE(4440)] = 161939, + [SMALL_STATE(4441)] = 161970, + [SMALL_STATE(4442)] = 162001, + [SMALL_STATE(4443)] = 162030, + [SMALL_STATE(4444)] = 162049, + [SMALL_STATE(4445)] = 162080, + [SMALL_STATE(4446)] = 162107, + [SMALL_STATE(4447)] = 162134, + [SMALL_STATE(4448)] = 162161, + [SMALL_STATE(4449)] = 162192, + [SMALL_STATE(4450)] = 162223, + [SMALL_STATE(4451)] = 162250, + [SMALL_STATE(4452)] = 162277, + [SMALL_STATE(4453)] = 162300, + [SMALL_STATE(4454)] = 162331, + [SMALL_STATE(4455)] = 162362, + [SMALL_STATE(4456)] = 162385, + [SMALL_STATE(4457)] = 162408, + [SMALL_STATE(4458)] = 162431, + [SMALL_STATE(4459)] = 162462, + [SMALL_STATE(4460)] = 162481, + [SMALL_STATE(4461)] = 162502, + [SMALL_STATE(4462)] = 162531, + [SMALL_STATE(4463)] = 162562, + [SMALL_STATE(4464)] = 162593, + [SMALL_STATE(4465)] = 162620, + [SMALL_STATE(4466)] = 162643, + [SMALL_STATE(4467)] = 162674, + [SMALL_STATE(4468)] = 162701, + [SMALL_STATE(4469)] = 162722, + [SMALL_STATE(4470)] = 162753, + [SMALL_STATE(4471)] = 162772, + [SMALL_STATE(4472)] = 162799, + [SMALL_STATE(4473)] = 162826, + [SMALL_STATE(4474)] = 162853, + [SMALL_STATE(4475)] = 162872, + [SMALL_STATE(4476)] = 162899, + [SMALL_STATE(4477)] = 162926, + [SMALL_STATE(4478)] = 162949, [SMALL_STATE(4479)] = 162972, - [SMALL_STATE(4480)] = 163003, - [SMALL_STATE(4481)] = 163034, - [SMALL_STATE(4482)] = 163061, - [SMALL_STATE(4483)] = 163092, - [SMALL_STATE(4484)] = 163113, - [SMALL_STATE(4485)] = 163140, - [SMALL_STATE(4486)] = 163163, - [SMALL_STATE(4487)] = 163190, - [SMALL_STATE(4488)] = 163221, - [SMALL_STATE(4489)] = 163252, - [SMALL_STATE(4490)] = 163279, - [SMALL_STATE(4491)] = 163310, - [SMALL_STATE(4492)] = 163341, - [SMALL_STATE(4493)] = 163368, - [SMALL_STATE(4494)] = 163387, - [SMALL_STATE(4495)] = 163414, - [SMALL_STATE(4496)] = 163441, - [SMALL_STATE(4497)] = 163468, - [SMALL_STATE(4498)] = 163491, - [SMALL_STATE(4499)] = 163512, - [SMALL_STATE(4500)] = 163543, - [SMALL_STATE(4501)] = 163574, - [SMALL_STATE(4502)] = 163601, - [SMALL_STATE(4503)] = 163632, - [SMALL_STATE(4504)] = 163655, - [SMALL_STATE(4505)] = 163682, - [SMALL_STATE(4506)] = 163709, - [SMALL_STATE(4507)] = 163728, - [SMALL_STATE(4508)] = 163759, - [SMALL_STATE(4509)] = 163790, - [SMALL_STATE(4510)] = 163819, - [SMALL_STATE(4511)] = 163848, - [SMALL_STATE(4512)] = 163877, - [SMALL_STATE(4513)] = 163908, - [SMALL_STATE(4514)] = 163939, - [SMALL_STATE(4515)] = 163966, - [SMALL_STATE(4516)] = 163989, - [SMALL_STATE(4517)] = 164020, - [SMALL_STATE(4518)] = 164051, - [SMALL_STATE(4519)] = 164080, - [SMALL_STATE(4520)] = 164107, - [SMALL_STATE(4521)] = 164138, - [SMALL_STATE(4522)] = 164169, - [SMALL_STATE(4523)] = 164188, - [SMALL_STATE(4524)] = 164207, - [SMALL_STATE(4525)] = 164230, - [SMALL_STATE(4526)] = 164261, - [SMALL_STATE(4527)] = 164292, - [SMALL_STATE(4528)] = 164319, - [SMALL_STATE(4529)] = 164350, - [SMALL_STATE(4530)] = 164377, - [SMALL_STATE(4531)] = 164408, - [SMALL_STATE(4532)] = 164435, - [SMALL_STATE(4533)] = 164454, - [SMALL_STATE(4534)] = 164473, - [SMALL_STATE(4535)] = 164504, - [SMALL_STATE(4536)] = 164535, - [SMALL_STATE(4537)] = 164566, - [SMALL_STATE(4538)] = 164593, - [SMALL_STATE(4539)] = 164624, - [SMALL_STATE(4540)] = 164651, - [SMALL_STATE(4541)] = 164678, - [SMALL_STATE(4542)] = 164709, - [SMALL_STATE(4543)] = 164736, - [SMALL_STATE(4544)] = 164763, - [SMALL_STATE(4545)] = 164790, - [SMALL_STATE(4546)] = 164821, - [SMALL_STATE(4547)] = 164852, - [SMALL_STATE(4548)] = 164875, - [SMALL_STATE(4549)] = 164906, - [SMALL_STATE(4550)] = 164933, - [SMALL_STATE(4551)] = 164964, - [SMALL_STATE(4552)] = 164995, - [SMALL_STATE(4553)] = 165022, - [SMALL_STATE(4554)] = 165053, - [SMALL_STATE(4555)] = 165080, - [SMALL_STATE(4556)] = 165099, - [SMALL_STATE(4557)] = 165126, - [SMALL_STATE(4558)] = 165145, - [SMALL_STATE(4559)] = 165172, - [SMALL_STATE(4560)] = 165193, - [SMALL_STATE(4561)] = 165224, - [SMALL_STATE(4562)] = 165243, - [SMALL_STATE(4563)] = 165274, - [SMALL_STATE(4564)] = 165301, - [SMALL_STATE(4565)] = 165328, - [SMALL_STATE(4566)] = 165355, - [SMALL_STATE(4567)] = 165386, - [SMALL_STATE(4568)] = 165413, - [SMALL_STATE(4569)] = 165440, - [SMALL_STATE(4570)] = 165459, - [SMALL_STATE(4571)] = 165490, - [SMALL_STATE(4572)] = 165517, - [SMALL_STATE(4573)] = 165540, - [SMALL_STATE(4574)] = 165567, - [SMALL_STATE(4575)] = 165590, - [SMALL_STATE(4576)] = 165621, - [SMALL_STATE(4577)] = 165648, - [SMALL_STATE(4578)] = 165671, - [SMALL_STATE(4579)] = 165694, - [SMALL_STATE(4580)] = 165721, - [SMALL_STATE(4581)] = 165748, - [SMALL_STATE(4582)] = 165775, - [SMALL_STATE(4583)] = 165804, - [SMALL_STATE(4584)] = 165831, - [SMALL_STATE(4585)] = 165858, - [SMALL_STATE(4586)] = 165887, - [SMALL_STATE(4587)] = 165914, - [SMALL_STATE(4588)] = 165937, - [SMALL_STATE(4589)] = 165968, - [SMALL_STATE(4590)] = 165995, - [SMALL_STATE(4591)] = 166014, - [SMALL_STATE(4592)] = 166033, - [SMALL_STATE(4593)] = 166060, - [SMALL_STATE(4594)] = 166079, - [SMALL_STATE(4595)] = 166102, - [SMALL_STATE(4596)] = 166131, - [SMALL_STATE(4597)] = 166162, - [SMALL_STATE(4598)] = 166185, - [SMALL_STATE(4599)] = 166216, - [SMALL_STATE(4600)] = 166243, - [SMALL_STATE(4601)] = 166270, - [SMALL_STATE(4602)] = 166291, - [SMALL_STATE(4603)] = 166314, - [SMALL_STATE(4604)] = 166345, - [SMALL_STATE(4605)] = 166368, - [SMALL_STATE(4606)] = 166391, - [SMALL_STATE(4607)] = 166422, - [SMALL_STATE(4608)] = 166449, - [SMALL_STATE(4609)] = 166476, - [SMALL_STATE(4610)] = 166507, - [SMALL_STATE(4611)] = 166534, - [SMALL_STATE(4612)] = 166561, - [SMALL_STATE(4613)] = 166588, - [SMALL_STATE(4614)] = 166615, - [SMALL_STATE(4615)] = 166636, - [SMALL_STATE(4616)] = 166665, - [SMALL_STATE(4617)] = 166692, - [SMALL_STATE(4618)] = 166719, - [SMALL_STATE(4619)] = 166748, - [SMALL_STATE(4620)] = 166775, - [SMALL_STATE(4621)] = 166802, - [SMALL_STATE(4622)] = 166829, - [SMALL_STATE(4623)] = 166860, - [SMALL_STATE(4624)] = 166889, - [SMALL_STATE(4625)] = 166920, - [SMALL_STATE(4626)] = 166945, - [SMALL_STATE(4627)] = 166968, + [SMALL_STATE(4480)] = 162993, + [SMALL_STATE(4481)] = 163016, + [SMALL_STATE(4482)] = 163043, + [SMALL_STATE(4483)] = 163070, + [SMALL_STATE(4484)] = 163097, + [SMALL_STATE(4485)] = 163120, + [SMALL_STATE(4486)] = 163147, + [SMALL_STATE(4487)] = 163174, + [SMALL_STATE(4488)] = 163205, + [SMALL_STATE(4489)] = 163224, + [SMALL_STATE(4490)] = 163251, + [SMALL_STATE(4491)] = 163278, + [SMALL_STATE(4492)] = 163305, + [SMALL_STATE(4493)] = 163332, + [SMALL_STATE(4494)] = 163359, + [SMALL_STATE(4495)] = 163386, + [SMALL_STATE(4496)] = 163413, + [SMALL_STATE(4497)] = 163444, + [SMALL_STATE(4498)] = 163471, + [SMALL_STATE(4499)] = 163498, + [SMALL_STATE(4500)] = 163525, + [SMALL_STATE(4501)] = 163552, + [SMALL_STATE(4502)] = 163579, + [SMALL_STATE(4503)] = 163610, + [SMALL_STATE(4504)] = 163637, + [SMALL_STATE(4505)] = 163664, + [SMALL_STATE(4506)] = 163691, + [SMALL_STATE(4507)] = 163718, + [SMALL_STATE(4508)] = 163749, + [SMALL_STATE(4509)] = 163780, + [SMALL_STATE(4510)] = 163807, + [SMALL_STATE(4511)] = 163836, + [SMALL_STATE(4512)] = 163865, + [SMALL_STATE(4513)] = 163896, + [SMALL_STATE(4514)] = 163923, + [SMALL_STATE(4515)] = 163954, + [SMALL_STATE(4516)] = 163981, + [SMALL_STATE(4517)] = 164008, + [SMALL_STATE(4518)] = 164035, + [SMALL_STATE(4519)] = 164062, + [SMALL_STATE(4520)] = 164091, + [SMALL_STATE(4521)] = 164110, + [SMALL_STATE(4522)] = 164129, + [SMALL_STATE(4523)] = 164148, + [SMALL_STATE(4524)] = 164179, + [SMALL_STATE(4525)] = 164206, + [SMALL_STATE(4526)] = 164233, + [SMALL_STATE(4527)] = 164260, + [SMALL_STATE(4528)] = 164279, + [SMALL_STATE(4529)] = 164310, + [SMALL_STATE(4530)] = 164337, + [SMALL_STATE(4531)] = 164368, + [SMALL_STATE(4532)] = 164399, + [SMALL_STATE(4533)] = 164430, + [SMALL_STATE(4534)] = 164457, + [SMALL_STATE(4535)] = 164484, + [SMALL_STATE(4536)] = 164511, + [SMALL_STATE(4537)] = 164530, + [SMALL_STATE(4538)] = 164549, + [SMALL_STATE(4539)] = 164568, + [SMALL_STATE(4540)] = 164599, + [SMALL_STATE(4541)] = 164630, + [SMALL_STATE(4542)] = 164657, + [SMALL_STATE(4543)] = 164684, + [SMALL_STATE(4544)] = 164703, + [SMALL_STATE(4545)] = 164730, + [SMALL_STATE(4546)] = 164759, + [SMALL_STATE(4547)] = 164786, + [SMALL_STATE(4548)] = 164817, + [SMALL_STATE(4549)] = 164844, + [SMALL_STATE(4550)] = 164863, + [SMALL_STATE(4551)] = 164882, + [SMALL_STATE(4552)] = 164913, + [SMALL_STATE(4553)] = 164944, + [SMALL_STATE(4554)] = 164963, + [SMALL_STATE(4555)] = 164994, + [SMALL_STATE(4556)] = 165017, + [SMALL_STATE(4557)] = 165040, + [SMALL_STATE(4558)] = 165059, + [SMALL_STATE(4559)] = 165082, + [SMALL_STATE(4560)] = 165113, + [SMALL_STATE(4561)] = 165140, + [SMALL_STATE(4562)] = 165171, + [SMALL_STATE(4563)] = 165202, + [SMALL_STATE(4564)] = 165233, + [SMALL_STATE(4565)] = 165264, + [SMALL_STATE(4566)] = 165291, + [SMALL_STATE(4567)] = 165322, + [SMALL_STATE(4568)] = 165345, + [SMALL_STATE(4569)] = 165368, + [SMALL_STATE(4570)] = 165395, + [SMALL_STATE(4571)] = 165422, + [SMALL_STATE(4572)] = 165453, + [SMALL_STATE(4573)] = 165480, + [SMALL_STATE(4574)] = 165511, + [SMALL_STATE(4575)] = 165542, + [SMALL_STATE(4576)] = 165569, + [SMALL_STATE(4577)] = 165600, + [SMALL_STATE(4578)] = 165629, + [SMALL_STATE(4579)] = 165660, + [SMALL_STATE(4580)] = 165691, + [SMALL_STATE(4581)] = 165714, + [SMALL_STATE(4582)] = 165733, + [SMALL_STATE(4583)] = 165756, + [SMALL_STATE(4584)] = 165787, + [SMALL_STATE(4585)] = 165810, + [SMALL_STATE(4586)] = 165837, + [SMALL_STATE(4587)] = 165860, + [SMALL_STATE(4588)] = 165891, + [SMALL_STATE(4589)] = 165910, + [SMALL_STATE(4590)] = 165937, + [SMALL_STATE(4591)] = 165964, + [SMALL_STATE(4592)] = 165991, + [SMALL_STATE(4593)] = 166014, + [SMALL_STATE(4594)] = 166037, + [SMALL_STATE(4595)] = 166060, + [SMALL_STATE(4596)] = 166083, + [SMALL_STATE(4597)] = 166114, + [SMALL_STATE(4598)] = 166145, + [SMALL_STATE(4599)] = 166176, + [SMALL_STATE(4600)] = 166207, + [SMALL_STATE(4601)] = 166230, + [SMALL_STATE(4602)] = 166253, + [SMALL_STATE(4603)] = 166280, + [SMALL_STATE(4604)] = 166311, + [SMALL_STATE(4605)] = 166338, + [SMALL_STATE(4606)] = 166369, + [SMALL_STATE(4607)] = 166392, + [SMALL_STATE(4608)] = 166419, + [SMALL_STATE(4609)] = 166450, + [SMALL_STATE(4610)] = 166481, + [SMALL_STATE(4611)] = 166512, + [SMALL_STATE(4612)] = 166539, + [SMALL_STATE(4613)] = 166570, + [SMALL_STATE(4614)] = 166597, + [SMALL_STATE(4615)] = 166624, + [SMALL_STATE(4616)] = 166653, + [SMALL_STATE(4617)] = 166680, + [SMALL_STATE(4618)] = 166707, + [SMALL_STATE(4619)] = 166734, + [SMALL_STATE(4620)] = 166761, + [SMALL_STATE(4621)] = 166786, + [SMALL_STATE(4622)] = 166817, + [SMALL_STATE(4623)] = 166844, + [SMALL_STATE(4624)] = 166875, + [SMALL_STATE(4625)] = 166906, + [SMALL_STATE(4626)] = 166933, + [SMALL_STATE(4627)] = 166964, [SMALL_STATE(4628)] = 166991, [SMALL_STATE(4629)] = 167018, [SMALL_STATE(4630)] = 167037, - [SMALL_STATE(4631)] = 167068, - [SMALL_STATE(4632)] = 167095, - [SMALL_STATE(4633)] = 167122, - [SMALL_STATE(4634)] = 167145, - [SMALL_STATE(4635)] = 167174, + [SMALL_STATE(4631)] = 167058, + [SMALL_STATE(4632)] = 167079, + [SMALL_STATE(4633)] = 167110, + [SMALL_STATE(4634)] = 167137, + [SMALL_STATE(4635)] = 167166, [SMALL_STATE(4636)] = 167193, - [SMALL_STATE(4637)] = 167212, - [SMALL_STATE(4638)] = 167243, - [SMALL_STATE(4639)] = 167274, - [SMALL_STATE(4640)] = 167293, - [SMALL_STATE(4641)] = 167312, - [SMALL_STATE(4642)] = 167339, - [SMALL_STATE(4643)] = 167358, - [SMALL_STATE(4644)] = 167381, - [SMALL_STATE(4645)] = 167400, - [SMALL_STATE(4646)] = 167431, - [SMALL_STATE(4647)] = 167450, - [SMALL_STATE(4648)] = 167469, - [SMALL_STATE(4649)] = 167496, - [SMALL_STATE(4650)] = 167523, - [SMALL_STATE(4651)] = 167544, - [SMALL_STATE(4652)] = 167575, - [SMALL_STATE(4653)] = 167601, - [SMALL_STATE(4654)] = 167627, - [SMALL_STATE(4655)] = 167649, - [SMALL_STATE(4656)] = 167671, - [SMALL_STATE(4657)] = 167693, - [SMALL_STATE(4658)] = 167713, - [SMALL_STATE(4659)] = 167741, - [SMALL_STATE(4660)] = 167763, - [SMALL_STATE(4661)] = 167781, - [SMALL_STATE(4662)] = 167809, - [SMALL_STATE(4663)] = 167831, - [SMALL_STATE(4664)] = 167849, - [SMALL_STATE(4665)] = 167877, - [SMALL_STATE(4666)] = 167895, - [SMALL_STATE(4667)] = 167913, - [SMALL_STATE(4668)] = 167941, - [SMALL_STATE(4669)] = 167963, - [SMALL_STATE(4670)] = 167991, - [SMALL_STATE(4671)] = 168013, - [SMALL_STATE(4672)] = 168035, - [SMALL_STATE(4673)] = 168063, - [SMALL_STATE(4674)] = 168085, - [SMALL_STATE(4675)] = 168107, - [SMALL_STATE(4676)] = 168133, - [SMALL_STATE(4677)] = 168159, - [SMALL_STATE(4678)] = 168181, - [SMALL_STATE(4679)] = 168209, - [SMALL_STATE(4680)] = 168231, - [SMALL_STATE(4681)] = 168259, - [SMALL_STATE(4682)] = 168287, - [SMALL_STATE(4683)] = 168315, - [SMALL_STATE(4684)] = 168343, - [SMALL_STATE(4685)] = 168371, - [SMALL_STATE(4686)] = 168393, - [SMALL_STATE(4687)] = 168421, - [SMALL_STATE(4688)] = 168443, - [SMALL_STATE(4689)] = 168461, - [SMALL_STATE(4690)] = 168489, - [SMALL_STATE(4691)] = 168517, - [SMALL_STATE(4692)] = 168545, - [SMALL_STATE(4693)] = 168571, - [SMALL_STATE(4694)] = 168599, - [SMALL_STATE(4695)] = 168625, - [SMALL_STATE(4696)] = 168653, - [SMALL_STATE(4697)] = 168675, - [SMALL_STATE(4698)] = 168703, - [SMALL_STATE(4699)] = 168725, - [SMALL_STATE(4700)] = 168751, - [SMALL_STATE(4701)] = 168775, - [SMALL_STATE(4702)] = 168797, - [SMALL_STATE(4703)] = 168825, - [SMALL_STATE(4704)] = 168853, - [SMALL_STATE(4705)] = 168875, - [SMALL_STATE(4706)] = 168897, - [SMALL_STATE(4707)] = 168925, - [SMALL_STATE(4708)] = 168953, - [SMALL_STATE(4709)] = 168981, - [SMALL_STATE(4710)] = 168999, - [SMALL_STATE(4711)] = 169027, - [SMALL_STATE(4712)] = 169055, - [SMALL_STATE(4713)] = 169083, - [SMALL_STATE(4714)] = 169111, - [SMALL_STATE(4715)] = 169139, - [SMALL_STATE(4716)] = 169157, - [SMALL_STATE(4717)] = 169185, - [SMALL_STATE(4718)] = 169213, - [SMALL_STATE(4719)] = 169241, - [SMALL_STATE(4720)] = 169269, - [SMALL_STATE(4721)] = 169291, - [SMALL_STATE(4722)] = 169319, - [SMALL_STATE(4723)] = 169347, - [SMALL_STATE(4724)] = 169375, - [SMALL_STATE(4725)] = 169403, - [SMALL_STATE(4726)] = 169425, - [SMALL_STATE(4727)] = 169447, - [SMALL_STATE(4728)] = 169473, - [SMALL_STATE(4729)] = 169501, - [SMALL_STATE(4730)] = 169523, - [SMALL_STATE(4731)] = 169545, - [SMALL_STATE(4732)] = 169573, - [SMALL_STATE(4733)] = 169601, - [SMALL_STATE(4734)] = 169627, - [SMALL_STATE(4735)] = 169655, - [SMALL_STATE(4736)] = 169681, - [SMALL_STATE(4737)] = 169709, - [SMALL_STATE(4738)] = 169737, - [SMALL_STATE(4739)] = 169759, - [SMALL_STATE(4740)] = 169785, - [SMALL_STATE(4741)] = 169807, - [SMALL_STATE(4742)] = 169835, - [SMALL_STATE(4743)] = 169863, - [SMALL_STATE(4744)] = 169889, - [SMALL_STATE(4745)] = 169911, - [SMALL_STATE(4746)] = 169939, - [SMALL_STATE(4747)] = 169961, - [SMALL_STATE(4748)] = 169983, - [SMALL_STATE(4749)] = 170009, - [SMALL_STATE(4750)] = 170037, - [SMALL_STATE(4751)] = 170059, - [SMALL_STATE(4752)] = 170085, - [SMALL_STATE(4753)] = 170113, - [SMALL_STATE(4754)] = 170135, - [SMALL_STATE(4755)] = 170163, - [SMALL_STATE(4756)] = 170189, - [SMALL_STATE(4757)] = 170211, - [SMALL_STATE(4758)] = 170231, - [SMALL_STATE(4759)] = 170259, - [SMALL_STATE(4760)] = 170281, - [SMALL_STATE(4761)] = 170309, - [SMALL_STATE(4762)] = 170337, - [SMALL_STATE(4763)] = 170365, - [SMALL_STATE(4764)] = 170391, - [SMALL_STATE(4765)] = 170417, - [SMALL_STATE(4766)] = 170439, - [SMALL_STATE(4767)] = 170457, - [SMALL_STATE(4768)] = 170485, - [SMALL_STATE(4769)] = 170507, - [SMALL_STATE(4770)] = 170535, - [SMALL_STATE(4771)] = 170563, - [SMALL_STATE(4772)] = 170585, - [SMALL_STATE(4773)] = 170613, - [SMALL_STATE(4774)] = 170635, - [SMALL_STATE(4775)] = 170661, - [SMALL_STATE(4776)] = 170683, - [SMALL_STATE(4777)] = 170705, - [SMALL_STATE(4778)] = 170733, - [SMALL_STATE(4779)] = 170761, - [SMALL_STATE(4780)] = 170789, - [SMALL_STATE(4781)] = 170815, - [SMALL_STATE(4782)] = 170843, - [SMALL_STATE(4783)] = 170861, - [SMALL_STATE(4784)] = 170881, - [SMALL_STATE(4785)] = 170899, - [SMALL_STATE(4786)] = 170921, - [SMALL_STATE(4787)] = 170943, - [SMALL_STATE(4788)] = 170971, - [SMALL_STATE(4789)] = 170993, - [SMALL_STATE(4790)] = 171011, - [SMALL_STATE(4791)] = 171033, - [SMALL_STATE(4792)] = 171053, - [SMALL_STATE(4793)] = 171073, - [SMALL_STATE(4794)] = 171095, - [SMALL_STATE(4795)] = 171123, - [SMALL_STATE(4796)] = 171151, - [SMALL_STATE(4797)] = 171177, - [SMALL_STATE(4798)] = 171199, - [SMALL_STATE(4799)] = 171221, - [SMALL_STATE(4800)] = 171249, - [SMALL_STATE(4801)] = 171271, - [SMALL_STATE(4802)] = 171293, - [SMALL_STATE(4803)] = 171321, - [SMALL_STATE(4804)] = 171343, - [SMALL_STATE(4805)] = 171371, - [SMALL_STATE(4806)] = 171399, - [SMALL_STATE(4807)] = 171427, - [SMALL_STATE(4808)] = 171455, - [SMALL_STATE(4809)] = 171479, - [SMALL_STATE(4810)] = 171501, - [SMALL_STATE(4811)] = 171519, - [SMALL_STATE(4812)] = 171541, - [SMALL_STATE(4813)] = 171563, - [SMALL_STATE(4814)] = 171591, - [SMALL_STATE(4815)] = 171617, - [SMALL_STATE(4816)] = 171639, - [SMALL_STATE(4817)] = 171667, - [SMALL_STATE(4818)] = 171695, - [SMALL_STATE(4819)] = 171723, - [SMALL_STATE(4820)] = 171745, - [SMALL_STATE(4821)] = 171769, - [SMALL_STATE(4822)] = 171797, - [SMALL_STATE(4823)] = 171819, - [SMALL_STATE(4824)] = 171841, - [SMALL_STATE(4825)] = 171869, - [SMALL_STATE(4826)] = 171887, - [SMALL_STATE(4827)] = 171909, - [SMALL_STATE(4828)] = 171937, - [SMALL_STATE(4829)] = 171965, - [SMALL_STATE(4830)] = 171993, - [SMALL_STATE(4831)] = 172013, - [SMALL_STATE(4832)] = 172039, - [SMALL_STATE(4833)] = 172067, - [SMALL_STATE(4834)] = 172093, - [SMALL_STATE(4835)] = 172111, - [SMALL_STATE(4836)] = 172133, - [SMALL_STATE(4837)] = 172161, - [SMALL_STATE(4838)] = 172183, - [SMALL_STATE(4839)] = 172205, - [SMALL_STATE(4840)] = 172225, - [SMALL_STATE(4841)] = 172245, - [SMALL_STATE(4842)] = 172265, - [SMALL_STATE(4843)] = 172293, - [SMALL_STATE(4844)] = 172315, - [SMALL_STATE(4845)] = 172341, - [SMALL_STATE(4846)] = 172367, - [SMALL_STATE(4847)] = 172388, - [SMALL_STATE(4848)] = 172413, - [SMALL_STATE(4849)] = 172436, - [SMALL_STATE(4850)] = 172457, - [SMALL_STATE(4851)] = 172474, - [SMALL_STATE(4852)] = 172491, - [SMALL_STATE(4853)] = 172516, - [SMALL_STATE(4854)] = 172539, - [SMALL_STATE(4855)] = 172564, - [SMALL_STATE(4856)] = 172589, - [SMALL_STATE(4857)] = 172610, - [SMALL_STATE(4858)] = 172635, - [SMALL_STATE(4859)] = 172652, - [SMALL_STATE(4860)] = 172671, - [SMALL_STATE(4861)] = 172696, - [SMALL_STATE(4862)] = 172713, - [SMALL_STATE(4863)] = 172730, - [SMALL_STATE(4864)] = 172751, - [SMALL_STATE(4865)] = 172772, - [SMALL_STATE(4866)] = 172789, - [SMALL_STATE(4867)] = 172806, - [SMALL_STATE(4868)] = 172823, - [SMALL_STATE(4869)] = 172848, - [SMALL_STATE(4870)] = 172873, - [SMALL_STATE(4871)] = 172890, - [SMALL_STATE(4872)] = 172907, - [SMALL_STATE(4873)] = 172924, - [SMALL_STATE(4874)] = 172947, - [SMALL_STATE(4875)] = 172964, - [SMALL_STATE(4876)] = 172981, - [SMALL_STATE(4877)] = 173002, - [SMALL_STATE(4878)] = 173023, - [SMALL_STATE(4879)] = 173046, - [SMALL_STATE(4880)] = 173063, - [SMALL_STATE(4881)] = 173080, - [SMALL_STATE(4882)] = 173101, - [SMALL_STATE(4883)] = 173118, - [SMALL_STATE(4884)] = 173139, - [SMALL_STATE(4885)] = 173156, - [SMALL_STATE(4886)] = 173181, - [SMALL_STATE(4887)] = 173200, - [SMALL_STATE(4888)] = 173217, - [SMALL_STATE(4889)] = 173238, - [SMALL_STATE(4890)] = 173259, - [SMALL_STATE(4891)] = 173276, - [SMALL_STATE(4892)] = 173293, - [SMALL_STATE(4893)] = 173314, - [SMALL_STATE(4894)] = 173335, - [SMALL_STATE(4895)] = 173352, - [SMALL_STATE(4896)] = 173369, - [SMALL_STATE(4897)] = 173386, - [SMALL_STATE(4898)] = 173403, - [SMALL_STATE(4899)] = 173428, - [SMALL_STATE(4900)] = 173445, - [SMALL_STATE(4901)] = 173466, - [SMALL_STATE(4902)] = 173483, - [SMALL_STATE(4903)] = 173500, - [SMALL_STATE(4904)] = 173517, - [SMALL_STATE(4905)] = 173534, - [SMALL_STATE(4906)] = 173551, - [SMALL_STATE(4907)] = 173568, - [SMALL_STATE(4908)] = 173589, - [SMALL_STATE(4909)] = 173610, - [SMALL_STATE(4910)] = 173627, - [SMALL_STATE(4911)] = 173652, - [SMALL_STATE(4912)] = 173677, - [SMALL_STATE(4913)] = 173698, - [SMALL_STATE(4914)] = 173715, - [SMALL_STATE(4915)] = 173732, - [SMALL_STATE(4916)] = 173749, - [SMALL_STATE(4917)] = 173766, - [SMALL_STATE(4918)] = 173787, - [SMALL_STATE(4919)] = 173804, - [SMALL_STATE(4920)] = 173821, - [SMALL_STATE(4921)] = 173838, - [SMALL_STATE(4922)] = 173855, - [SMALL_STATE(4923)] = 173872, - [SMALL_STATE(4924)] = 173889, - [SMALL_STATE(4925)] = 173906, - [SMALL_STATE(4926)] = 173923, - [SMALL_STATE(4927)] = 173940, - [SMALL_STATE(4928)] = 173957, - [SMALL_STATE(4929)] = 173974, - [SMALL_STATE(4930)] = 173991, - [SMALL_STATE(4931)] = 174008, - [SMALL_STATE(4932)] = 174025, - [SMALL_STATE(4933)] = 174042, - [SMALL_STATE(4934)] = 174063, - [SMALL_STATE(4935)] = 174084, - [SMALL_STATE(4936)] = 174101, - [SMALL_STATE(4937)] = 174122, - [SMALL_STATE(4938)] = 174143, - [SMALL_STATE(4939)] = 174160, - [SMALL_STATE(4940)] = 174177, - [SMALL_STATE(4941)] = 174194, - [SMALL_STATE(4942)] = 174211, - [SMALL_STATE(4943)] = 174228, - [SMALL_STATE(4944)] = 174249, - [SMALL_STATE(4945)] = 174270, - [SMALL_STATE(4946)] = 174287, - [SMALL_STATE(4947)] = 174304, - [SMALL_STATE(4948)] = 174325, - [SMALL_STATE(4949)] = 174346, - [SMALL_STATE(4950)] = 174363, - [SMALL_STATE(4951)] = 174384, - [SMALL_STATE(4952)] = 174409, - [SMALL_STATE(4953)] = 174426, - [SMALL_STATE(4954)] = 174451, - [SMALL_STATE(4955)] = 174476, - [SMALL_STATE(4956)] = 174493, - [SMALL_STATE(4957)] = 174510, - [SMALL_STATE(4958)] = 174535, - [SMALL_STATE(4959)] = 174556, - [SMALL_STATE(4960)] = 174573, - [SMALL_STATE(4961)] = 174598, - [SMALL_STATE(4962)] = 174615, - [SMALL_STATE(4963)] = 174636, - [SMALL_STATE(4964)] = 174653, - [SMALL_STATE(4965)] = 174670, - [SMALL_STATE(4966)] = 174691, - [SMALL_STATE(4967)] = 174712, - [SMALL_STATE(4968)] = 174733, - [SMALL_STATE(4969)] = 174752, - [SMALL_STATE(4970)] = 174777, - [SMALL_STATE(4971)] = 174800, - [SMALL_STATE(4972)] = 174821, - [SMALL_STATE(4973)] = 174838, - [SMALL_STATE(4974)] = 174855, - [SMALL_STATE(4975)] = 174880, - [SMALL_STATE(4976)] = 174897, - [SMALL_STATE(4977)] = 174922, - [SMALL_STATE(4978)] = 174943, - [SMALL_STATE(4979)] = 174968, - [SMALL_STATE(4980)] = 174993, - [SMALL_STATE(4981)] = 175014, - [SMALL_STATE(4982)] = 175031, - [SMALL_STATE(4983)] = 175048, - [SMALL_STATE(4984)] = 175065, - [SMALL_STATE(4985)] = 175082, - [SMALL_STATE(4986)] = 175099, - [SMALL_STATE(4987)] = 175116, - [SMALL_STATE(4988)] = 175133, - [SMALL_STATE(4989)] = 175150, - [SMALL_STATE(4990)] = 175171, - [SMALL_STATE(4991)] = 175192, - [SMALL_STATE(4992)] = 175209, - [SMALL_STATE(4993)] = 175226, - [SMALL_STATE(4994)] = 175243, - [SMALL_STATE(4995)] = 175264, - [SMALL_STATE(4996)] = 175289, - [SMALL_STATE(4997)] = 175308, - [SMALL_STATE(4998)] = 175329, - [SMALL_STATE(4999)] = 175346, - [SMALL_STATE(5000)] = 175367, - [SMALL_STATE(5001)] = 175384, - [SMALL_STATE(5002)] = 175409, - [SMALL_STATE(5003)] = 175430, - [SMALL_STATE(5004)] = 175451, - [SMALL_STATE(5005)] = 175476, - [SMALL_STATE(5006)] = 175497, - [SMALL_STATE(5007)] = 175522, - [SMALL_STATE(5008)] = 175547, - [SMALL_STATE(5009)] = 175572, - [SMALL_STATE(5010)] = 175589, - [SMALL_STATE(5011)] = 175610, - [SMALL_STATE(5012)] = 175631, - [SMALL_STATE(5013)] = 175648, - [SMALL_STATE(5014)] = 175673, - [SMALL_STATE(5015)] = 175694, - [SMALL_STATE(5016)] = 175719, - [SMALL_STATE(5017)] = 175744, - [SMALL_STATE(5018)] = 175765, - [SMALL_STATE(5019)] = 175786, - [SMALL_STATE(5020)] = 175807, - [SMALL_STATE(5021)] = 175824, - [SMALL_STATE(5022)] = 175849, - [SMALL_STATE(5023)] = 175872, - [SMALL_STATE(5024)] = 175897, - [SMALL_STATE(5025)] = 175922, - [SMALL_STATE(5026)] = 175943, - [SMALL_STATE(5027)] = 175964, - [SMALL_STATE(5028)] = 175989, - [SMALL_STATE(5029)] = 176014, - [SMALL_STATE(5030)] = 176039, - [SMALL_STATE(5031)] = 176064, - [SMALL_STATE(5032)] = 176089, - [SMALL_STATE(5033)] = 176112, - [SMALL_STATE(5034)] = 176137, - [SMALL_STATE(5035)] = 176162, - [SMALL_STATE(5036)] = 176187, - [SMALL_STATE(5037)] = 176212, - [SMALL_STATE(5038)] = 176237, - [SMALL_STATE(5039)] = 176262, - [SMALL_STATE(5040)] = 176287, - [SMALL_STATE(5041)] = 176312, - [SMALL_STATE(5042)] = 176337, - [SMALL_STATE(5043)] = 176362, - [SMALL_STATE(5044)] = 176383, - [SMALL_STATE(5045)] = 176404, - [SMALL_STATE(5046)] = 176425, - [SMALL_STATE(5047)] = 176450, - [SMALL_STATE(5048)] = 176475, - [SMALL_STATE(5049)] = 176500, - [SMALL_STATE(5050)] = 176521, - [SMALL_STATE(5051)] = 176542, - [SMALL_STATE(5052)] = 176567, - [SMALL_STATE(5053)] = 176588, - [SMALL_STATE(5054)] = 176613, - [SMALL_STATE(5055)] = 176638, - [SMALL_STATE(5056)] = 176663, - [SMALL_STATE(5057)] = 176688, - [SMALL_STATE(5058)] = 176709, - [SMALL_STATE(5059)] = 176734, - [SMALL_STATE(5060)] = 176759, - [SMALL_STATE(5061)] = 176784, - [SMALL_STATE(5062)] = 176809, - [SMALL_STATE(5063)] = 176834, - [SMALL_STATE(5064)] = 176855, - [SMALL_STATE(5065)] = 176880, - [SMALL_STATE(5066)] = 176897, - [SMALL_STATE(5067)] = 176922, - [SMALL_STATE(5068)] = 176939, - [SMALL_STATE(5069)] = 176956, - [SMALL_STATE(5070)] = 176981, - [SMALL_STATE(5071)] = 176998, - [SMALL_STATE(5072)] = 177019, - [SMALL_STATE(5073)] = 177040, - [SMALL_STATE(5074)] = 177065, - [SMALL_STATE(5075)] = 177090, - [SMALL_STATE(5076)] = 177115, - [SMALL_STATE(5077)] = 177140, - [SMALL_STATE(5078)] = 177165, - [SMALL_STATE(5079)] = 177190, - [SMALL_STATE(5080)] = 177211, - [SMALL_STATE(5081)] = 177234, - [SMALL_STATE(5082)] = 177259, - [SMALL_STATE(5083)] = 177280, - [SMALL_STATE(5084)] = 177305, - [SMALL_STATE(5085)] = 177330, - [SMALL_STATE(5086)] = 177355, - [SMALL_STATE(5087)] = 177376, - [SMALL_STATE(5088)] = 177401, - [SMALL_STATE(5089)] = 177426, - [SMALL_STATE(5090)] = 177443, - [SMALL_STATE(5091)] = 177460, - [SMALL_STATE(5092)] = 177483, - [SMALL_STATE(5093)] = 177508, - [SMALL_STATE(5094)] = 177525, - [SMALL_STATE(5095)] = 177546, - [SMALL_STATE(5096)] = 177567, - [SMALL_STATE(5097)] = 177588, - [SMALL_STATE(5098)] = 177609, - [SMALL_STATE(5099)] = 177632, - [SMALL_STATE(5100)] = 177653, - [SMALL_STATE(5101)] = 177674, - [SMALL_STATE(5102)] = 177695, - [SMALL_STATE(5103)] = 177718, - [SMALL_STATE(5104)] = 177741, - [SMALL_STATE(5105)] = 177764, - [SMALL_STATE(5106)] = 177787, - [SMALL_STATE(5107)] = 177808, - [SMALL_STATE(5108)] = 177833, - [SMALL_STATE(5109)] = 177854, - [SMALL_STATE(5110)] = 177871, - [SMALL_STATE(5111)] = 177892, - [SMALL_STATE(5112)] = 177913, - [SMALL_STATE(5113)] = 177934, - [SMALL_STATE(5114)] = 177959, - [SMALL_STATE(5115)] = 177984, - [SMALL_STATE(5116)] = 178009, - [SMALL_STATE(5117)] = 178034, - [SMALL_STATE(5118)] = 178057, - [SMALL_STATE(5119)] = 178082, - [SMALL_STATE(5120)] = 178107, - [SMALL_STATE(5121)] = 178132, - [SMALL_STATE(5122)] = 178157, - [SMALL_STATE(5123)] = 178182, - [SMALL_STATE(5124)] = 178207, - [SMALL_STATE(5125)] = 178228, - [SMALL_STATE(5126)] = 178253, - [SMALL_STATE(5127)] = 178278, - [SMALL_STATE(5128)] = 178303, - [SMALL_STATE(5129)] = 178328, - [SMALL_STATE(5130)] = 178349, - [SMALL_STATE(5131)] = 178374, - [SMALL_STATE(5132)] = 178395, - [SMALL_STATE(5133)] = 178416, - [SMALL_STATE(5134)] = 178437, - [SMALL_STATE(5135)] = 178454, - [SMALL_STATE(5136)] = 178471, - [SMALL_STATE(5137)] = 178488, - [SMALL_STATE(5138)] = 178513, - [SMALL_STATE(5139)] = 178538, - [SMALL_STATE(5140)] = 178559, - [SMALL_STATE(5141)] = 178582, - [SMALL_STATE(5142)] = 178603, - [SMALL_STATE(5143)] = 178624, - [SMALL_STATE(5144)] = 178641, - [SMALL_STATE(5145)] = 178664, - [SMALL_STATE(5146)] = 178689, - [SMALL_STATE(5147)] = 178706, - [SMALL_STATE(5148)] = 178723, - [SMALL_STATE(5149)] = 178744, - [SMALL_STATE(5150)] = 178761, - [SMALL_STATE(5151)] = 178778, - [SMALL_STATE(5152)] = 178795, - [SMALL_STATE(5153)] = 178812, - [SMALL_STATE(5154)] = 178829, - [SMALL_STATE(5155)] = 178846, - [SMALL_STATE(5156)] = 178867, - [SMALL_STATE(5157)] = 178884, - [SMALL_STATE(5158)] = 178901, - [SMALL_STATE(5159)] = 178926, - [SMALL_STATE(5160)] = 178951, - [SMALL_STATE(5161)] = 178968, - [SMALL_STATE(5162)] = 178993, - [SMALL_STATE(5163)] = 179018, - [SMALL_STATE(5164)] = 179035, - [SMALL_STATE(5165)] = 179060, - [SMALL_STATE(5166)] = 179085, - [SMALL_STATE(5167)] = 179110, - [SMALL_STATE(5168)] = 179127, - [SMALL_STATE(5169)] = 179152, - [SMALL_STATE(5170)] = 179177, - [SMALL_STATE(5171)] = 179202, - [SMALL_STATE(5172)] = 179223, - [SMALL_STATE(5173)] = 179244, - [SMALL_STATE(5174)] = 179269, - [SMALL_STATE(5175)] = 179294, - [SMALL_STATE(5176)] = 179319, - [SMALL_STATE(5177)] = 179340, - [SMALL_STATE(5178)] = 179365, - [SMALL_STATE(5179)] = 179390, - [SMALL_STATE(5180)] = 179415, - [SMALL_STATE(5181)] = 179436, - [SMALL_STATE(5182)] = 179461, - [SMALL_STATE(5183)] = 179482, - [SMALL_STATE(5184)] = 179503, - [SMALL_STATE(5185)] = 179524, - [SMALL_STATE(5186)] = 179545, - [SMALL_STATE(5187)] = 179570, - [SMALL_STATE(5188)] = 179595, - [SMALL_STATE(5189)] = 179616, - [SMALL_STATE(5190)] = 179637, - [SMALL_STATE(5191)] = 179662, - [SMALL_STATE(5192)] = 179687, - [SMALL_STATE(5193)] = 179704, - [SMALL_STATE(5194)] = 179721, - [SMALL_STATE(5195)] = 179746, - [SMALL_STATE(5196)] = 179767, - [SMALL_STATE(5197)] = 179784, - [SMALL_STATE(5198)] = 179809, - [SMALL_STATE(5199)] = 179830, - [SMALL_STATE(5200)] = 179851, - [SMALL_STATE(5201)] = 179868, - [SMALL_STATE(5202)] = 179893, - [SMALL_STATE(5203)] = 179918, - [SMALL_STATE(5204)] = 179935, - [SMALL_STATE(5205)] = 179952, - [SMALL_STATE(5206)] = 179977, - [SMALL_STATE(5207)] = 179994, - [SMALL_STATE(5208)] = 180011, - [SMALL_STATE(5209)] = 180028, - [SMALL_STATE(5210)] = 180045, - [SMALL_STATE(5211)] = 180070, - [SMALL_STATE(5212)] = 180095, - [SMALL_STATE(5213)] = 180112, - [SMALL_STATE(5214)] = 180129, - [SMALL_STATE(5215)] = 180152, - [SMALL_STATE(5216)] = 180177, - [SMALL_STATE(5217)] = 180202, - [SMALL_STATE(5218)] = 180227, - [SMALL_STATE(5219)] = 180250, - [SMALL_STATE(5220)] = 180273, - [SMALL_STATE(5221)] = 180290, - [SMALL_STATE(5222)] = 180311, - [SMALL_STATE(5223)] = 180336, - [SMALL_STATE(5224)] = 180357, - [SMALL_STATE(5225)] = 180378, - [SMALL_STATE(5226)] = 180403, - [SMALL_STATE(5227)] = 180428, - [SMALL_STATE(5228)] = 180449, - [SMALL_STATE(5229)] = 180470, - [SMALL_STATE(5230)] = 180491, - [SMALL_STATE(5231)] = 180512, - [SMALL_STATE(5232)] = 180533, - [SMALL_STATE(5233)] = 180550, - [SMALL_STATE(5234)] = 180575, - [SMALL_STATE(5235)] = 180596, - [SMALL_STATE(5236)] = 180617, - [SMALL_STATE(5237)] = 180638, - [SMALL_STATE(5238)] = 180659, - [SMALL_STATE(5239)] = 180680, - [SMALL_STATE(5240)] = 180701, - [SMALL_STATE(5241)] = 180722, - [SMALL_STATE(5242)] = 180743, - [SMALL_STATE(5243)] = 180764, - [SMALL_STATE(5244)] = 180785, - [SMALL_STATE(5245)] = 180806, - [SMALL_STATE(5246)] = 180827, - [SMALL_STATE(5247)] = 180848, - [SMALL_STATE(5248)] = 180869, - [SMALL_STATE(5249)] = 180890, - [SMALL_STATE(5250)] = 180911, - [SMALL_STATE(5251)] = 180936, - [SMALL_STATE(5252)] = 180957, - [SMALL_STATE(5253)] = 180978, - [SMALL_STATE(5254)] = 180999, - [SMALL_STATE(5255)] = 181020, - [SMALL_STATE(5256)] = 181041, - [SMALL_STATE(5257)] = 181066, - [SMALL_STATE(5258)] = 181087, - [SMALL_STATE(5259)] = 181112, - [SMALL_STATE(5260)] = 181133, - [SMALL_STATE(5261)] = 181158, - [SMALL_STATE(5262)] = 181179, - [SMALL_STATE(5263)] = 181200, - [SMALL_STATE(5264)] = 181221, - [SMALL_STATE(5265)] = 181242, - [SMALL_STATE(5266)] = 181267, - [SMALL_STATE(5267)] = 181288, - [SMALL_STATE(5268)] = 181309, - [SMALL_STATE(5269)] = 181330, - [SMALL_STATE(5270)] = 181351, - [SMALL_STATE(5271)] = 181372, - [SMALL_STATE(5272)] = 181395, - [SMALL_STATE(5273)] = 181420, - [SMALL_STATE(5274)] = 181441, - [SMALL_STATE(5275)] = 181464, - [SMALL_STATE(5276)] = 181485, - [SMALL_STATE(5277)] = 181502, - [SMALL_STATE(5278)] = 181523, - [SMALL_STATE(5279)] = 181544, - [SMALL_STATE(5280)] = 181565, - [SMALL_STATE(5281)] = 181586, - [SMALL_STATE(5282)] = 181611, - [SMALL_STATE(5283)] = 181628, - [SMALL_STATE(5284)] = 181649, - [SMALL_STATE(5285)] = 181670, - [SMALL_STATE(5286)] = 181695, - [SMALL_STATE(5287)] = 181712, - [SMALL_STATE(5288)] = 181733, - [SMALL_STATE(5289)] = 181754, - [SMALL_STATE(5290)] = 181779, - [SMALL_STATE(5291)] = 181796, - [SMALL_STATE(5292)] = 181821, - [SMALL_STATE(5293)] = 181846, - [SMALL_STATE(5294)] = 181863, - [SMALL_STATE(5295)] = 181880, - [SMALL_STATE(5296)] = 181897, - [SMALL_STATE(5297)] = 181914, - [SMALL_STATE(5298)] = 181931, - [SMALL_STATE(5299)] = 181948, - [SMALL_STATE(5300)] = 181973, - [SMALL_STATE(5301)] = 181990, - [SMALL_STATE(5302)] = 182011, - [SMALL_STATE(5303)] = 182032, - [SMALL_STATE(5304)] = 182053, - [SMALL_STATE(5305)] = 182078, - [SMALL_STATE(5306)] = 182095, - [SMALL_STATE(5307)] = 182116, - [SMALL_STATE(5308)] = 182141, - [SMALL_STATE(5309)] = 182164, - [SMALL_STATE(5310)] = 182185, - [SMALL_STATE(5311)] = 182202, - [SMALL_STATE(5312)] = 182219, - [SMALL_STATE(5313)] = 182236, - [SMALL_STATE(5314)] = 182261, - [SMALL_STATE(5315)] = 182282, - [SMALL_STATE(5316)] = 182303, - [SMALL_STATE(5317)] = 182328, - [SMALL_STATE(5318)] = 182349, - [SMALL_STATE(5319)] = 182366, - [SMALL_STATE(5320)] = 182387, - [SMALL_STATE(5321)] = 182408, - [SMALL_STATE(5322)] = 182425, - [SMALL_STATE(5323)] = 182450, - [SMALL_STATE(5324)] = 182471, - [SMALL_STATE(5325)] = 182488, - [SMALL_STATE(5326)] = 182509, - [SMALL_STATE(5327)] = 182530, - [SMALL_STATE(5328)] = 182553, - [SMALL_STATE(5329)] = 182574, - [SMALL_STATE(5330)] = 182595, - [SMALL_STATE(5331)] = 182616, - [SMALL_STATE(5332)] = 182637, - [SMALL_STATE(5333)] = 182658, - [SMALL_STATE(5334)] = 182679, - [SMALL_STATE(5335)] = 182698, - [SMALL_STATE(5336)] = 182719, - [SMALL_STATE(5337)] = 182742, - [SMALL_STATE(5338)] = 182761, - [SMALL_STATE(5339)] = 182780, - [SMALL_STATE(5340)] = 182801, - [SMALL_STATE(5341)] = 182820, - [SMALL_STATE(5342)] = 182837, - [SMALL_STATE(5343)] = 182858, - [SMALL_STATE(5344)] = 182881, - [SMALL_STATE(5345)] = 182906, - [SMALL_STATE(5346)] = 182927, - [SMALL_STATE(5347)] = 182952, - [SMALL_STATE(5348)] = 182973, - [SMALL_STATE(5349)] = 182994, - [SMALL_STATE(5350)] = 183015, - [SMALL_STATE(5351)] = 183036, - [SMALL_STATE(5352)] = 183057, - [SMALL_STATE(5353)] = 183082, - [SMALL_STATE(5354)] = 183103, - [SMALL_STATE(5355)] = 183126, - [SMALL_STATE(5356)] = 183151, - [SMALL_STATE(5357)] = 183172, - [SMALL_STATE(5358)] = 183193, - [SMALL_STATE(5359)] = 183218, - [SMALL_STATE(5360)] = 183239, - [SMALL_STATE(5361)] = 183260, - [SMALL_STATE(5362)] = 183281, - [SMALL_STATE(5363)] = 183302, - [SMALL_STATE(5364)] = 183327, - [SMALL_STATE(5365)] = 183348, - [SMALL_STATE(5366)] = 183369, - [SMALL_STATE(5367)] = 183390, - [SMALL_STATE(5368)] = 183411, - [SMALL_STATE(5369)] = 183432, - [SMALL_STATE(5370)] = 183453, - [SMALL_STATE(5371)] = 183474, - [SMALL_STATE(5372)] = 183495, - [SMALL_STATE(5373)] = 183516, - [SMALL_STATE(5374)] = 183538, - [SMALL_STATE(5375)] = 183558, - [SMALL_STATE(5376)] = 183578, - [SMALL_STATE(5377)] = 183598, - [SMALL_STATE(5378)] = 183618, - [SMALL_STATE(5379)] = 183638, - [SMALL_STATE(5380)] = 183658, - [SMALL_STATE(5381)] = 183678, - [SMALL_STATE(5382)] = 183698, - [SMALL_STATE(5383)] = 183718, - [SMALL_STATE(5384)] = 183738, - [SMALL_STATE(5385)] = 183758, - [SMALL_STATE(5386)] = 183778, - [SMALL_STATE(5387)] = 183798, - [SMALL_STATE(5388)] = 183818, - [SMALL_STATE(5389)] = 183838, - [SMALL_STATE(5390)] = 183858, - [SMALL_STATE(5391)] = 183878, - [SMALL_STATE(5392)] = 183900, - [SMALL_STATE(5393)] = 183920, - [SMALL_STATE(5394)] = 183942, - [SMALL_STATE(5395)] = 183962, - [SMALL_STATE(5396)] = 183982, - [SMALL_STATE(5397)] = 184002, - [SMALL_STATE(5398)] = 184024, - [SMALL_STATE(5399)] = 184044, - [SMALL_STATE(5400)] = 184064, - [SMALL_STATE(5401)] = 184086, - [SMALL_STATE(5402)] = 184108, - [SMALL_STATE(5403)] = 184128, - [SMALL_STATE(5404)] = 184148, - [SMALL_STATE(5405)] = 184168, - [SMALL_STATE(5406)] = 184190, - [SMALL_STATE(5407)] = 184212, - [SMALL_STATE(5408)] = 184232, - [SMALL_STATE(5409)] = 184252, - [SMALL_STATE(5410)] = 184272, - [SMALL_STATE(5411)] = 184292, - [SMALL_STATE(5412)] = 184314, - [SMALL_STATE(5413)] = 184334, - [SMALL_STATE(5414)] = 184356, - [SMALL_STATE(5415)] = 184376, - [SMALL_STATE(5416)] = 184396, - [SMALL_STATE(5417)] = 184416, - [SMALL_STATE(5418)] = 184436, - [SMALL_STATE(5419)] = 184456, - [SMALL_STATE(5420)] = 184476, - [SMALL_STATE(5421)] = 184496, - [SMALL_STATE(5422)] = 184516, - [SMALL_STATE(5423)] = 184536, - [SMALL_STATE(5424)] = 184556, - [SMALL_STATE(5425)] = 184576, - [SMALL_STATE(5426)] = 184596, - [SMALL_STATE(5427)] = 184616, - [SMALL_STATE(5428)] = 184636, - [SMALL_STATE(5429)] = 184656, - [SMALL_STATE(5430)] = 184678, - [SMALL_STATE(5431)] = 184698, - [SMALL_STATE(5432)] = 184718, - [SMALL_STATE(5433)] = 184740, - [SMALL_STATE(5434)] = 184760, - [SMALL_STATE(5435)] = 184780, - [SMALL_STATE(5436)] = 184800, - [SMALL_STATE(5437)] = 184820, - [SMALL_STATE(5438)] = 184842, - [SMALL_STATE(5439)] = 184862, - [SMALL_STATE(5440)] = 184882, - [SMALL_STATE(5441)] = 184904, - [SMALL_STATE(5442)] = 184924, - [SMALL_STATE(5443)] = 184946, - [SMALL_STATE(5444)] = 184966, - [SMALL_STATE(5445)] = 184988, - [SMALL_STATE(5446)] = 185010, - [SMALL_STATE(5447)] = 185030, - [SMALL_STATE(5448)] = 185050, - [SMALL_STATE(5449)] = 185070, - [SMALL_STATE(5450)] = 185092, - [SMALL_STATE(5451)] = 185114, - [SMALL_STATE(5452)] = 185136, - [SMALL_STATE(5453)] = 185158, - [SMALL_STATE(5454)] = 185176, - [SMALL_STATE(5455)] = 185198, - [SMALL_STATE(5456)] = 185220, - [SMALL_STATE(5457)] = 185242, - [SMALL_STATE(5458)] = 185264, - [SMALL_STATE(5459)] = 185286, - [SMALL_STATE(5460)] = 185308, - [SMALL_STATE(5461)] = 185330, - [SMALL_STATE(5462)] = 185352, - [SMALL_STATE(5463)] = 185374, - [SMALL_STATE(5464)] = 185392, - [SMALL_STATE(5465)] = 185412, - [SMALL_STATE(5466)] = 185432, - [SMALL_STATE(5467)] = 185452, - [SMALL_STATE(5468)] = 185474, - [SMALL_STATE(5469)] = 185494, - [SMALL_STATE(5470)] = 185514, - [SMALL_STATE(5471)] = 185534, - [SMALL_STATE(5472)] = 185554, - [SMALL_STATE(5473)] = 185576, - [SMALL_STATE(5474)] = 185596, - [SMALL_STATE(5475)] = 185616, - [SMALL_STATE(5476)] = 185638, - [SMALL_STATE(5477)] = 185654, - [SMALL_STATE(5478)] = 185676, - [SMALL_STATE(5479)] = 185696, - [SMALL_STATE(5480)] = 185716, - [SMALL_STATE(5481)] = 185738, - [SMALL_STATE(5482)] = 185760, - [SMALL_STATE(5483)] = 185778, - [SMALL_STATE(5484)] = 185798, - [SMALL_STATE(5485)] = 185818, - [SMALL_STATE(5486)] = 185840, - [SMALL_STATE(5487)] = 185862, - [SMALL_STATE(5488)] = 185880, - [SMALL_STATE(5489)] = 185900, - [SMALL_STATE(5490)] = 185920, - [SMALL_STATE(5491)] = 185940, - [SMALL_STATE(5492)] = 185962, - [SMALL_STATE(5493)] = 185984, - [SMALL_STATE(5494)] = 186006, - [SMALL_STATE(5495)] = 186028, - [SMALL_STATE(5496)] = 186050, - [SMALL_STATE(5497)] = 186070, - [SMALL_STATE(5498)] = 186092, - [SMALL_STATE(5499)] = 186112, - [SMALL_STATE(5500)] = 186134, - [SMALL_STATE(5501)] = 186156, - [SMALL_STATE(5502)] = 186174, - [SMALL_STATE(5503)] = 186196, - [SMALL_STATE(5504)] = 186218, - [SMALL_STATE(5505)] = 186240, - [SMALL_STATE(5506)] = 186260, - [SMALL_STATE(5507)] = 186280, - [SMALL_STATE(5508)] = 186302, - [SMALL_STATE(5509)] = 186322, - [SMALL_STATE(5510)] = 186342, - [SMALL_STATE(5511)] = 186364, - [SMALL_STATE(5512)] = 186384, - [SMALL_STATE(5513)] = 186404, - [SMALL_STATE(5514)] = 186426, - [SMALL_STATE(5515)] = 186444, - [SMALL_STATE(5516)] = 186466, - [SMALL_STATE(5517)] = 186482, - [SMALL_STATE(5518)] = 186504, - [SMALL_STATE(5519)] = 186526, - [SMALL_STATE(5520)] = 186548, - [SMALL_STATE(5521)] = 186568, - [SMALL_STATE(5522)] = 186590, - [SMALL_STATE(5523)] = 186610, - [SMALL_STATE(5524)] = 186632, - [SMALL_STATE(5525)] = 186654, - [SMALL_STATE(5526)] = 186676, - [SMALL_STATE(5527)] = 186698, - [SMALL_STATE(5528)] = 186718, - [SMALL_STATE(5529)] = 186734, - [SMALL_STATE(5530)] = 186752, - [SMALL_STATE(5531)] = 186770, - [SMALL_STATE(5532)] = 186790, - [SMALL_STATE(5533)] = 186812, - [SMALL_STATE(5534)] = 186832, - [SMALL_STATE(5535)] = 186852, - [SMALL_STATE(5536)] = 186874, - [SMALL_STATE(5537)] = 186894, - [SMALL_STATE(5538)] = 186914, - [SMALL_STATE(5539)] = 186934, - [SMALL_STATE(5540)] = 186954, - [SMALL_STATE(5541)] = 186974, - [SMALL_STATE(5542)] = 186996, - [SMALL_STATE(5543)] = 187016, - [SMALL_STATE(5544)] = 187038, - [SMALL_STATE(5545)] = 187058, - [SMALL_STATE(5546)] = 187078, - [SMALL_STATE(5547)] = 187098, - [SMALL_STATE(5548)] = 187118, - [SMALL_STATE(5549)] = 187140, - [SMALL_STATE(5550)] = 187162, - [SMALL_STATE(5551)] = 187180, - [SMALL_STATE(5552)] = 187198, - [SMALL_STATE(5553)] = 187218, - [SMALL_STATE(5554)] = 187238, - [SMALL_STATE(5555)] = 187260, - [SMALL_STATE(5556)] = 187276, - [SMALL_STATE(5557)] = 187296, - [SMALL_STATE(5558)] = 187316, - [SMALL_STATE(5559)] = 187336, - [SMALL_STATE(5560)] = 187356, - [SMALL_STATE(5561)] = 187378, - [SMALL_STATE(5562)] = 187398, - [SMALL_STATE(5563)] = 187418, - [SMALL_STATE(5564)] = 187438, - [SMALL_STATE(5565)] = 187458, - [SMALL_STATE(5566)] = 187478, - [SMALL_STATE(5567)] = 187498, - [SMALL_STATE(5568)] = 187518, - [SMALL_STATE(5569)] = 187538, - [SMALL_STATE(5570)] = 187554, - [SMALL_STATE(5571)] = 187570, - [SMALL_STATE(5572)] = 187590, - [SMALL_STATE(5573)] = 187610, - [SMALL_STATE(5574)] = 187630, - [SMALL_STATE(5575)] = 187652, - [SMALL_STATE(5576)] = 187672, - [SMALL_STATE(5577)] = 187694, - [SMALL_STATE(5578)] = 187714, - [SMALL_STATE(5579)] = 187734, - [SMALL_STATE(5580)] = 187754, - [SMALL_STATE(5581)] = 187776, - [SMALL_STATE(5582)] = 187798, - [SMALL_STATE(5583)] = 187818, - [SMALL_STATE(5584)] = 187838, - [SMALL_STATE(5585)] = 187858, - [SMALL_STATE(5586)] = 187880, - [SMALL_STATE(5587)] = 187900, - [SMALL_STATE(5588)] = 187916, - [SMALL_STATE(5589)] = 187932, - [SMALL_STATE(5590)] = 187952, - [SMALL_STATE(5591)] = 187974, - [SMALL_STATE(5592)] = 187990, - [SMALL_STATE(5593)] = 188006, - [SMALL_STATE(5594)] = 188028, - [SMALL_STATE(5595)] = 188050, - [SMALL_STATE(5596)] = 188070, - [SMALL_STATE(5597)] = 188086, - [SMALL_STATE(5598)] = 188108, - [SMALL_STATE(5599)] = 188130, - [SMALL_STATE(5600)] = 188148, - [SMALL_STATE(5601)] = 188168, - [SMALL_STATE(5602)] = 188188, - [SMALL_STATE(5603)] = 188203, - [SMALL_STATE(5604)] = 188218, - [SMALL_STATE(5605)] = 188233, - [SMALL_STATE(5606)] = 188252, - [SMALL_STATE(5607)] = 188267, - [SMALL_STATE(5608)] = 188286, - [SMALL_STATE(5609)] = 188305, - [SMALL_STATE(5610)] = 188320, - [SMALL_STATE(5611)] = 188337, - [SMALL_STATE(5612)] = 188356, - [SMALL_STATE(5613)] = 188373, - [SMALL_STATE(5614)] = 188390, - [SMALL_STATE(5615)] = 188407, - [SMALL_STATE(5616)] = 188426, - [SMALL_STATE(5617)] = 188445, - [SMALL_STATE(5618)] = 188464, - [SMALL_STATE(5619)] = 188481, - [SMALL_STATE(5620)] = 188498, - [SMALL_STATE(5621)] = 188513, - [SMALL_STATE(5622)] = 188530, - [SMALL_STATE(5623)] = 188547, - [SMALL_STATE(5624)] = 188562, - [SMALL_STATE(5625)] = 188581, - [SMALL_STATE(5626)] = 188596, - [SMALL_STATE(5627)] = 188615, - [SMALL_STATE(5628)] = 188634, - [SMALL_STATE(5629)] = 188651, - [SMALL_STATE(5630)] = 188666, - [SMALL_STATE(5631)] = 188685, - [SMALL_STATE(5632)] = 188704, - [SMALL_STATE(5633)] = 188723, - [SMALL_STATE(5634)] = 188738, - [SMALL_STATE(5635)] = 188755, - [SMALL_STATE(5636)] = 188774, - [SMALL_STATE(5637)] = 188791, - [SMALL_STATE(5638)] = 188808, - [SMALL_STATE(5639)] = 188825, - [SMALL_STATE(5640)] = 188842, - [SMALL_STATE(5641)] = 188861, - [SMALL_STATE(5642)] = 188878, - [SMALL_STATE(5643)] = 188897, - [SMALL_STATE(5644)] = 188912, - [SMALL_STATE(5645)] = 188931, - [SMALL_STATE(5646)] = 188950, - [SMALL_STATE(5647)] = 188965, - [SMALL_STATE(5648)] = 188980, - [SMALL_STATE(5649)] = 188999, - [SMALL_STATE(5650)] = 189018, - [SMALL_STATE(5651)] = 189033, - [SMALL_STATE(5652)] = 189048, - [SMALL_STATE(5653)] = 189063, - [SMALL_STATE(5654)] = 189078, - [SMALL_STATE(5655)] = 189097, - [SMALL_STATE(5656)] = 189112, - [SMALL_STATE(5657)] = 189131, - [SMALL_STATE(5658)] = 189150, - [SMALL_STATE(5659)] = 189167, - [SMALL_STATE(5660)] = 189186, - [SMALL_STATE(5661)] = 189203, - [SMALL_STATE(5662)] = 189222, - [SMALL_STATE(5663)] = 189241, - [SMALL_STATE(5664)] = 189260, - [SMALL_STATE(5665)] = 189275, - [SMALL_STATE(5666)] = 189290, - [SMALL_STATE(5667)] = 189305, - [SMALL_STATE(5668)] = 189320, - [SMALL_STATE(5669)] = 189335, - [SMALL_STATE(5670)] = 189350, - [SMALL_STATE(5671)] = 189365, - [SMALL_STATE(5672)] = 189384, - [SMALL_STATE(5673)] = 189401, - [SMALL_STATE(5674)] = 189416, - [SMALL_STATE(5675)] = 189431, - [SMALL_STATE(5676)] = 189446, - [SMALL_STATE(5677)] = 189461, - [SMALL_STATE(5678)] = 189476, - [SMALL_STATE(5679)] = 189491, - [SMALL_STATE(5680)] = 189506, - [SMALL_STATE(5681)] = 189521, - [SMALL_STATE(5682)] = 189536, - [SMALL_STATE(5683)] = 189553, - [SMALL_STATE(5684)] = 189568, - [SMALL_STATE(5685)] = 189587, - [SMALL_STATE(5686)] = 189602, - [SMALL_STATE(5687)] = 189621, - [SMALL_STATE(5688)] = 189636, - [SMALL_STATE(5689)] = 189651, - [SMALL_STATE(5690)] = 189666, - [SMALL_STATE(5691)] = 189681, - [SMALL_STATE(5692)] = 189696, - [SMALL_STATE(5693)] = 189715, - [SMALL_STATE(5694)] = 189730, - [SMALL_STATE(5695)] = 189749, - [SMALL_STATE(5696)] = 189764, - [SMALL_STATE(5697)] = 189783, - [SMALL_STATE(5698)] = 189802, - [SMALL_STATE(5699)] = 189821, - [SMALL_STATE(5700)] = 189840, - [SMALL_STATE(5701)] = 189859, - [SMALL_STATE(5702)] = 189874, - [SMALL_STATE(5703)] = 189889, - [SMALL_STATE(5704)] = 189904, - [SMALL_STATE(5705)] = 189919, - [SMALL_STATE(5706)] = 189934, - [SMALL_STATE(5707)] = 189949, - [SMALL_STATE(5708)] = 189964, - [SMALL_STATE(5709)] = 189983, - [SMALL_STATE(5710)] = 189998, - [SMALL_STATE(5711)] = 190017, - [SMALL_STATE(5712)] = 190032, - [SMALL_STATE(5713)] = 190051, - [SMALL_STATE(5714)] = 190068, - [SMALL_STATE(5715)] = 190083, - [SMALL_STATE(5716)] = 190102, - [SMALL_STATE(5717)] = 190121, - [SMALL_STATE(5718)] = 190140, - [SMALL_STATE(5719)] = 190155, - [SMALL_STATE(5720)] = 190170, - [SMALL_STATE(5721)] = 190189, - [SMALL_STATE(5722)] = 190208, - [SMALL_STATE(5723)] = 190223, - [SMALL_STATE(5724)] = 190242, - [SMALL_STATE(5725)] = 190257, - [SMALL_STATE(5726)] = 190276, - [SMALL_STATE(5727)] = 190291, - [SMALL_STATE(5728)] = 190306, - [SMALL_STATE(5729)] = 190325, - [SMALL_STATE(5730)] = 190342, - [SMALL_STATE(5731)] = 190357, - [SMALL_STATE(5732)] = 190376, - [SMALL_STATE(5733)] = 190395, - [SMALL_STATE(5734)] = 190410, - [SMALL_STATE(5735)] = 190429, - [SMALL_STATE(5736)] = 190444, - [SMALL_STATE(5737)] = 190463, - [SMALL_STATE(5738)] = 190482, - [SMALL_STATE(5739)] = 190497, - [SMALL_STATE(5740)] = 190516, - [SMALL_STATE(5741)] = 190531, - [SMALL_STATE(5742)] = 190550, - [SMALL_STATE(5743)] = 190565, - [SMALL_STATE(5744)] = 190584, - [SMALL_STATE(5745)] = 190599, - [SMALL_STATE(5746)] = 190616, - [SMALL_STATE(5747)] = 190633, - [SMALL_STATE(5748)] = 190650, - [SMALL_STATE(5749)] = 190669, - [SMALL_STATE(5750)] = 190684, - [SMALL_STATE(5751)] = 190699, - [SMALL_STATE(5752)] = 190716, - [SMALL_STATE(5753)] = 190731, - [SMALL_STATE(5754)] = 190746, - [SMALL_STATE(5755)] = 190763, - [SMALL_STATE(5756)] = 190778, - [SMALL_STATE(5757)] = 190795, - [SMALL_STATE(5758)] = 190814, - [SMALL_STATE(5759)] = 190833, - [SMALL_STATE(5760)] = 190848, - [SMALL_STATE(5761)] = 190863, - [SMALL_STATE(5762)] = 190878, - [SMALL_STATE(5763)] = 190893, - [SMALL_STATE(5764)] = 190910, - [SMALL_STATE(5765)] = 190925, - [SMALL_STATE(5766)] = 190944, - [SMALL_STATE(5767)] = 190963, - [SMALL_STATE(5768)] = 190982, - [SMALL_STATE(5769)] = 190997, - [SMALL_STATE(5770)] = 191012, - [SMALL_STATE(5771)] = 191027, - [SMALL_STATE(5772)] = 191044, - [SMALL_STATE(5773)] = 191063, - [SMALL_STATE(5774)] = 191078, - [SMALL_STATE(5775)] = 191097, - [SMALL_STATE(5776)] = 191114, - [SMALL_STATE(5777)] = 191129, - [SMALL_STATE(5778)] = 191144, - [SMALL_STATE(5779)] = 191159, - [SMALL_STATE(5780)] = 191174, - [SMALL_STATE(5781)] = 191189, - [SMALL_STATE(5782)] = 191204, - [SMALL_STATE(5783)] = 191219, - [SMALL_STATE(5784)] = 191236, - [SMALL_STATE(5785)] = 191255, - [SMALL_STATE(5786)] = 191270, - [SMALL_STATE(5787)] = 191289, - [SMALL_STATE(5788)] = 191304, - [SMALL_STATE(5789)] = 191319, - [SMALL_STATE(5790)] = 191338, - [SMALL_STATE(5791)] = 191353, - [SMALL_STATE(5792)] = 191372, - [SMALL_STATE(5793)] = 191391, - [SMALL_STATE(5794)] = 191406, - [SMALL_STATE(5795)] = 191425, - [SMALL_STATE(5796)] = 191440, - [SMALL_STATE(5797)] = 191459, - [SMALL_STATE(5798)] = 191478, - [SMALL_STATE(5799)] = 191497, - [SMALL_STATE(5800)] = 191516, - [SMALL_STATE(5801)] = 191535, - [SMALL_STATE(5802)] = 191552, - [SMALL_STATE(5803)] = 191567, - [SMALL_STATE(5804)] = 191582, - [SMALL_STATE(5805)] = 191601, - [SMALL_STATE(5806)] = 191616, - [SMALL_STATE(5807)] = 191631, - [SMALL_STATE(5808)] = 191646, - [SMALL_STATE(5809)] = 191665, - [SMALL_STATE(5810)] = 191680, - [SMALL_STATE(5811)] = 191695, - [SMALL_STATE(5812)] = 191714, - [SMALL_STATE(5813)] = 191733, - [SMALL_STATE(5814)] = 191752, - [SMALL_STATE(5815)] = 191771, - [SMALL_STATE(5816)] = 191790, - [SMALL_STATE(5817)] = 191807, - [SMALL_STATE(5818)] = 191826, - [SMALL_STATE(5819)] = 191843, - [SMALL_STATE(5820)] = 191858, - [SMALL_STATE(5821)] = 191877, - [SMALL_STATE(5822)] = 191892, - [SMALL_STATE(5823)] = 191911, - [SMALL_STATE(5824)] = 191926, - [SMALL_STATE(5825)] = 191945, - [SMALL_STATE(5826)] = 191960, - [SMALL_STATE(5827)] = 191975, - [SMALL_STATE(5828)] = 191990, - [SMALL_STATE(5829)] = 192009, - [SMALL_STATE(5830)] = 192028, - [SMALL_STATE(5831)] = 192043, - [SMALL_STATE(5832)] = 192062, - [SMALL_STATE(5833)] = 192081, - [SMALL_STATE(5834)] = 192100, - [SMALL_STATE(5835)] = 192115, - [SMALL_STATE(5836)] = 192130, - [SMALL_STATE(5837)] = 192145, - [SMALL_STATE(5838)] = 192160, - [SMALL_STATE(5839)] = 192179, - [SMALL_STATE(5840)] = 192198, - [SMALL_STATE(5841)] = 192217, - [SMALL_STATE(5842)] = 192232, - [SMALL_STATE(5843)] = 192251, - [SMALL_STATE(5844)] = 192266, - [SMALL_STATE(5845)] = 192285, - [SMALL_STATE(5846)] = 192302, - [SMALL_STATE(5847)] = 192321, - [SMALL_STATE(5848)] = 192336, - [SMALL_STATE(5849)] = 192353, - [SMALL_STATE(5850)] = 192370, - [SMALL_STATE(5851)] = 192387, - [SMALL_STATE(5852)] = 192404, - [SMALL_STATE(5853)] = 192419, - [SMALL_STATE(5854)] = 192438, - [SMALL_STATE(5855)] = 192457, - [SMALL_STATE(5856)] = 192476, - [SMALL_STATE(5857)] = 192493, - [SMALL_STATE(5858)] = 192508, - [SMALL_STATE(5859)] = 192523, - [SMALL_STATE(5860)] = 192542, - [SMALL_STATE(5861)] = 192561, - [SMALL_STATE(5862)] = 192580, - [SMALL_STATE(5863)] = 192597, - [SMALL_STATE(5864)] = 192612, - [SMALL_STATE(5865)] = 192627, - [SMALL_STATE(5866)] = 192642, - [SMALL_STATE(5867)] = 192657, - [SMALL_STATE(5868)] = 192672, - [SMALL_STATE(5869)] = 192687, - [SMALL_STATE(5870)] = 192704, - [SMALL_STATE(5871)] = 192719, - [SMALL_STATE(5872)] = 192738, - [SMALL_STATE(5873)] = 192757, - [SMALL_STATE(5874)] = 192776, - [SMALL_STATE(5875)] = 192791, - [SMALL_STATE(5876)] = 192806, - [SMALL_STATE(5877)] = 192821, - [SMALL_STATE(5878)] = 192836, - [SMALL_STATE(5879)] = 192855, - [SMALL_STATE(5880)] = 192870, - [SMALL_STATE(5881)] = 192889, - [SMALL_STATE(5882)] = 192908, - [SMALL_STATE(5883)] = 192927, - [SMALL_STATE(5884)] = 192946, - [SMALL_STATE(5885)] = 192961, - [SMALL_STATE(5886)] = 192980, - [SMALL_STATE(5887)] = 192995, - [SMALL_STATE(5888)] = 193014, - [SMALL_STATE(5889)] = 193029, - [SMALL_STATE(5890)] = 193044, - [SMALL_STATE(5891)] = 193059, - [SMALL_STATE(5892)] = 193074, - [SMALL_STATE(5893)] = 193091, - [SMALL_STATE(5894)] = 193106, - [SMALL_STATE(5895)] = 193121, - [SMALL_STATE(5896)] = 193140, - [SMALL_STATE(5897)] = 193157, - [SMALL_STATE(5898)] = 193172, - [SMALL_STATE(5899)] = 193191, - [SMALL_STATE(5900)] = 193210, - [SMALL_STATE(5901)] = 193225, - [SMALL_STATE(5902)] = 193240, - [SMALL_STATE(5903)] = 193255, - [SMALL_STATE(5904)] = 193274, - [SMALL_STATE(5905)] = 193289, - [SMALL_STATE(5906)] = 193308, - [SMALL_STATE(5907)] = 193327, - [SMALL_STATE(5908)] = 193346, - [SMALL_STATE(5909)] = 193365, - [SMALL_STATE(5910)] = 193384, - [SMALL_STATE(5911)] = 193403, - [SMALL_STATE(5912)] = 193422, - [SMALL_STATE(5913)] = 193437, - [SMALL_STATE(5914)] = 193456, - [SMALL_STATE(5915)] = 193475, - [SMALL_STATE(5916)] = 193494, - [SMALL_STATE(5917)] = 193513, - [SMALL_STATE(5918)] = 193528, - [SMALL_STATE(5919)] = 193547, - [SMALL_STATE(5920)] = 193566, - [SMALL_STATE(5921)] = 193585, - [SMALL_STATE(5922)] = 193604, - [SMALL_STATE(5923)] = 193623, - [SMALL_STATE(5924)] = 193642, - [SMALL_STATE(5925)] = 193661, - [SMALL_STATE(5926)] = 193676, - [SMALL_STATE(5927)] = 193693, - [SMALL_STATE(5928)] = 193710, - [SMALL_STATE(5929)] = 193727, - [SMALL_STATE(5930)] = 193744, - [SMALL_STATE(5931)] = 193761, - [SMALL_STATE(5932)] = 193780, - [SMALL_STATE(5933)] = 193797, - [SMALL_STATE(5934)] = 193814, - [SMALL_STATE(5935)] = 193833, - [SMALL_STATE(5936)] = 193852, - [SMALL_STATE(5937)] = 193869, - [SMALL_STATE(5938)] = 193886, - [SMALL_STATE(5939)] = 193901, - [SMALL_STATE(5940)] = 193920, - [SMALL_STATE(5941)] = 193939, - [SMALL_STATE(5942)] = 193954, - [SMALL_STATE(5943)] = 193969, - [SMALL_STATE(5944)] = 193986, - [SMALL_STATE(5945)] = 194001, - [SMALL_STATE(5946)] = 194020, - [SMALL_STATE(5947)] = 194035, - [SMALL_STATE(5948)] = 194050, - [SMALL_STATE(5949)] = 194065, - [SMALL_STATE(5950)] = 194082, - [SMALL_STATE(5951)] = 194097, - [SMALL_STATE(5952)] = 194116, - [SMALL_STATE(5953)] = 194135, - [SMALL_STATE(5954)] = 194154, - [SMALL_STATE(5955)] = 194173, - [SMALL_STATE(5956)] = 194192, - [SMALL_STATE(5957)] = 194211, - [SMALL_STATE(5958)] = 194230, - [SMALL_STATE(5959)] = 194245, - [SMALL_STATE(5960)] = 194264, - [SMALL_STATE(5961)] = 194283, - [SMALL_STATE(5962)] = 194300, - [SMALL_STATE(5963)] = 194315, - [SMALL_STATE(5964)] = 194330, - [SMALL_STATE(5965)] = 194345, - [SMALL_STATE(5966)] = 194364, - [SMALL_STATE(5967)] = 194379, - [SMALL_STATE(5968)] = 194394, - [SMALL_STATE(5969)] = 194409, - [SMALL_STATE(5970)] = 194428, - [SMALL_STATE(5971)] = 194447, - [SMALL_STATE(5972)] = 194462, - [SMALL_STATE(5973)] = 194477, - [SMALL_STATE(5974)] = 194496, - [SMALL_STATE(5975)] = 194511, - [SMALL_STATE(5976)] = 194526, - [SMALL_STATE(5977)] = 194541, - [SMALL_STATE(5978)] = 194556, - [SMALL_STATE(5979)] = 194571, - [SMALL_STATE(5980)] = 194586, - [SMALL_STATE(5981)] = 194601, - [SMALL_STATE(5982)] = 194616, - [SMALL_STATE(5983)] = 194631, - [SMALL_STATE(5984)] = 194646, - [SMALL_STATE(5985)] = 194661, - [SMALL_STATE(5986)] = 194676, - [SMALL_STATE(5987)] = 194691, - [SMALL_STATE(5988)] = 194706, - [SMALL_STATE(5989)] = 194721, - [SMALL_STATE(5990)] = 194736, - [SMALL_STATE(5991)] = 194751, - [SMALL_STATE(5992)] = 194766, - [SMALL_STATE(5993)] = 194781, - [SMALL_STATE(5994)] = 194798, - [SMALL_STATE(5995)] = 194813, - [SMALL_STATE(5996)] = 194830, - [SMALL_STATE(5997)] = 194845, - [SMALL_STATE(5998)] = 194860, - [SMALL_STATE(5999)] = 194875, - [SMALL_STATE(6000)] = 194890, - [SMALL_STATE(6001)] = 194907, - [SMALL_STATE(6002)] = 194924, - [SMALL_STATE(6003)] = 194941, - [SMALL_STATE(6004)] = 194956, - [SMALL_STATE(6005)] = 194971, - [SMALL_STATE(6006)] = 194986, - [SMALL_STATE(6007)] = 195001, - [SMALL_STATE(6008)] = 195018, - [SMALL_STATE(6009)] = 195037, - [SMALL_STATE(6010)] = 195054, - [SMALL_STATE(6011)] = 195071, - [SMALL_STATE(6012)] = 195090, - [SMALL_STATE(6013)] = 195109, - [SMALL_STATE(6014)] = 195124, - [SMALL_STATE(6015)] = 195143, - [SMALL_STATE(6016)] = 195158, - [SMALL_STATE(6017)] = 195173, - [SMALL_STATE(6018)] = 195188, - [SMALL_STATE(6019)] = 195203, - [SMALL_STATE(6020)] = 195218, - [SMALL_STATE(6021)] = 195233, - [SMALL_STATE(6022)] = 195248, - [SMALL_STATE(6023)] = 195265, - [SMALL_STATE(6024)] = 195280, - [SMALL_STATE(6025)] = 195295, - [SMALL_STATE(6026)] = 195310, - [SMALL_STATE(6027)] = 195325, - [SMALL_STATE(6028)] = 195340, - [SMALL_STATE(6029)] = 195355, - [SMALL_STATE(6030)] = 195370, - [SMALL_STATE(6031)] = 195385, - [SMALL_STATE(6032)] = 195400, - [SMALL_STATE(6033)] = 195415, - [SMALL_STATE(6034)] = 195430, - [SMALL_STATE(6035)] = 195445, - [SMALL_STATE(6036)] = 195460, - [SMALL_STATE(6037)] = 195475, - [SMALL_STATE(6038)] = 195494, - [SMALL_STATE(6039)] = 195509, - [SMALL_STATE(6040)] = 195524, - [SMALL_STATE(6041)] = 195539, - [SMALL_STATE(6042)] = 195554, - [SMALL_STATE(6043)] = 195569, - [SMALL_STATE(6044)] = 195584, - [SMALL_STATE(6045)] = 195603, - [SMALL_STATE(6046)] = 195618, - [SMALL_STATE(6047)] = 195633, - [SMALL_STATE(6048)] = 195652, - [SMALL_STATE(6049)] = 195667, - [SMALL_STATE(6050)] = 195686, - [SMALL_STATE(6051)] = 195701, - [SMALL_STATE(6052)] = 195720, - [SMALL_STATE(6053)] = 195739, - [SMALL_STATE(6054)] = 195754, - [SMALL_STATE(6055)] = 195769, - [SMALL_STATE(6056)] = 195784, - [SMALL_STATE(6057)] = 195799, - [SMALL_STATE(6058)] = 195814, - [SMALL_STATE(6059)] = 195833, - [SMALL_STATE(6060)] = 195850, - [SMALL_STATE(6061)] = 195865, - [SMALL_STATE(6062)] = 195882, - [SMALL_STATE(6063)] = 195897, - [SMALL_STATE(6064)] = 195912, - [SMALL_STATE(6065)] = 195927, - [SMALL_STATE(6066)] = 195946, - [SMALL_STATE(6067)] = 195965, - [SMALL_STATE(6068)] = 195980, - [SMALL_STATE(6069)] = 195995, - [SMALL_STATE(6070)] = 196010, - [SMALL_STATE(6071)] = 196029, - [SMALL_STATE(6072)] = 196044, - [SMALL_STATE(6073)] = 196059, - [SMALL_STATE(6074)] = 196078, - [SMALL_STATE(6075)] = 196093, - [SMALL_STATE(6076)] = 196112, - [SMALL_STATE(6077)] = 196127, - [SMALL_STATE(6078)] = 196146, - [SMALL_STATE(6079)] = 196161, - [SMALL_STATE(6080)] = 196180, - [SMALL_STATE(6081)] = 196195, - [SMALL_STATE(6082)] = 196214, - [SMALL_STATE(6083)] = 196233, - [SMALL_STATE(6084)] = 196248, - [SMALL_STATE(6085)] = 196263, - [SMALL_STATE(6086)] = 196282, - [SMALL_STATE(6087)] = 196301, - [SMALL_STATE(6088)] = 196316, - [SMALL_STATE(6089)] = 196335, - [SMALL_STATE(6090)] = 196350, - [SMALL_STATE(6091)] = 196365, - [SMALL_STATE(6092)] = 196380, - [SMALL_STATE(6093)] = 196395, - [SMALL_STATE(6094)] = 196410, - [SMALL_STATE(6095)] = 196425, - [SMALL_STATE(6096)] = 196440, - [SMALL_STATE(6097)] = 196455, - [SMALL_STATE(6098)] = 196470, - [SMALL_STATE(6099)] = 196489, - [SMALL_STATE(6100)] = 196504, - [SMALL_STATE(6101)] = 196519, - [SMALL_STATE(6102)] = 196536, - [SMALL_STATE(6103)] = 196553, - [SMALL_STATE(6104)] = 196568, - [SMALL_STATE(6105)] = 196583, - [SMALL_STATE(6106)] = 196598, - [SMALL_STATE(6107)] = 196613, - [SMALL_STATE(6108)] = 196628, - [SMALL_STATE(6109)] = 196643, - [SMALL_STATE(6110)] = 196662, - [SMALL_STATE(6111)] = 196677, - [SMALL_STATE(6112)] = 196692, - [SMALL_STATE(6113)] = 196707, - [SMALL_STATE(6114)] = 196726, - [SMALL_STATE(6115)] = 196741, - [SMALL_STATE(6116)] = 196760, - [SMALL_STATE(6117)] = 196775, - [SMALL_STATE(6118)] = 196794, - [SMALL_STATE(6119)] = 196809, - [SMALL_STATE(6120)] = 196828, - [SMALL_STATE(6121)] = 196843, - [SMALL_STATE(6122)] = 196858, - [SMALL_STATE(6123)] = 196877, - [SMALL_STATE(6124)] = 196892, - [SMALL_STATE(6125)] = 196907, - [SMALL_STATE(6126)] = 196922, - [SMALL_STATE(6127)] = 196937, - [SMALL_STATE(6128)] = 196952, - [SMALL_STATE(6129)] = 196967, - [SMALL_STATE(6130)] = 196982, - [SMALL_STATE(6131)] = 196997, - [SMALL_STATE(6132)] = 197016, - [SMALL_STATE(6133)] = 197031, - [SMALL_STATE(6134)] = 197050, - [SMALL_STATE(6135)] = 197069, - [SMALL_STATE(6136)] = 197084, - [SMALL_STATE(6137)] = 197103, - [SMALL_STATE(6138)] = 197118, - [SMALL_STATE(6139)] = 197133, - [SMALL_STATE(6140)] = 197148, - [SMALL_STATE(6141)] = 197163, - [SMALL_STATE(6142)] = 197180, - [SMALL_STATE(6143)] = 197195, - [SMALL_STATE(6144)] = 197210, - [SMALL_STATE(6145)] = 197229, - [SMALL_STATE(6146)] = 197244, - [SMALL_STATE(6147)] = 197259, - [SMALL_STATE(6148)] = 197274, - [SMALL_STATE(6149)] = 197289, - [SMALL_STATE(6150)] = 197304, - [SMALL_STATE(6151)] = 197319, - [SMALL_STATE(6152)] = 197334, - [SMALL_STATE(6153)] = 197349, - [SMALL_STATE(6154)] = 197364, - [SMALL_STATE(6155)] = 197379, - [SMALL_STATE(6156)] = 197394, - [SMALL_STATE(6157)] = 197409, - [SMALL_STATE(6158)] = 197424, - [SMALL_STATE(6159)] = 197439, - [SMALL_STATE(6160)] = 197454, - [SMALL_STATE(6161)] = 197469, - [SMALL_STATE(6162)] = 197484, - [SMALL_STATE(6163)] = 197499, - [SMALL_STATE(6164)] = 197514, - [SMALL_STATE(6165)] = 197529, - [SMALL_STATE(6166)] = 197544, - [SMALL_STATE(6167)] = 197559, - [SMALL_STATE(6168)] = 197578, - [SMALL_STATE(6169)] = 197593, - [SMALL_STATE(6170)] = 197612, - [SMALL_STATE(6171)] = 197627, - [SMALL_STATE(6172)] = 197642, - [SMALL_STATE(6173)] = 197657, - [SMALL_STATE(6174)] = 197672, - [SMALL_STATE(6175)] = 197689, - [SMALL_STATE(6176)] = 197706, - [SMALL_STATE(6177)] = 197723, - [SMALL_STATE(6178)] = 197742, - [SMALL_STATE(6179)] = 197757, - [SMALL_STATE(6180)] = 197772, - [SMALL_STATE(6181)] = 197791, - [SMALL_STATE(6182)] = 197806, - [SMALL_STATE(6183)] = 197821, - [SMALL_STATE(6184)] = 197836, - [SMALL_STATE(6185)] = 197851, - [SMALL_STATE(6186)] = 197866, - [SMALL_STATE(6187)] = 197885, - [SMALL_STATE(6188)] = 197904, - [SMALL_STATE(6189)] = 197923, - [SMALL_STATE(6190)] = 197938, - [SMALL_STATE(6191)] = 197953, - [SMALL_STATE(6192)] = 197972, - [SMALL_STATE(6193)] = 197987, - [SMALL_STATE(6194)] = 198002, - [SMALL_STATE(6195)] = 198021, - [SMALL_STATE(6196)] = 198040, - [SMALL_STATE(6197)] = 198055, - [SMALL_STATE(6198)] = 198070, - [SMALL_STATE(6199)] = 198085, - [SMALL_STATE(6200)] = 198100, - [SMALL_STATE(6201)] = 198115, - [SMALL_STATE(6202)] = 198130, - [SMALL_STATE(6203)] = 198145, - [SMALL_STATE(6204)] = 198160, - [SMALL_STATE(6205)] = 198175, - [SMALL_STATE(6206)] = 198190, - [SMALL_STATE(6207)] = 198205, - [SMALL_STATE(6208)] = 198220, - [SMALL_STATE(6209)] = 198235, - [SMALL_STATE(6210)] = 198250, - [SMALL_STATE(6211)] = 198265, - [SMALL_STATE(6212)] = 198280, - [SMALL_STATE(6213)] = 198299, - [SMALL_STATE(6214)] = 198314, - [SMALL_STATE(6215)] = 198329, - [SMALL_STATE(6216)] = 198344, - [SMALL_STATE(6217)] = 198359, - [SMALL_STATE(6218)] = 198374, - [SMALL_STATE(6219)] = 198389, - [SMALL_STATE(6220)] = 198404, - [SMALL_STATE(6221)] = 198419, - [SMALL_STATE(6222)] = 198434, - [SMALL_STATE(6223)] = 198449, - [SMALL_STATE(6224)] = 198464, - [SMALL_STATE(6225)] = 198479, - [SMALL_STATE(6226)] = 198494, - [SMALL_STATE(6227)] = 198513, - [SMALL_STATE(6228)] = 198528, - [SMALL_STATE(6229)] = 198543, - [SMALL_STATE(6230)] = 198558, - [SMALL_STATE(6231)] = 198577, - [SMALL_STATE(6232)] = 198592, - [SMALL_STATE(6233)] = 198607, - [SMALL_STATE(6234)] = 198622, - [SMALL_STATE(6235)] = 198637, - [SMALL_STATE(6236)] = 198652, - [SMALL_STATE(6237)] = 198667, - [SMALL_STATE(6238)] = 198682, - [SMALL_STATE(6239)] = 198697, - [SMALL_STATE(6240)] = 198712, - [SMALL_STATE(6241)] = 198727, - [SMALL_STATE(6242)] = 198746, - [SMALL_STATE(6243)] = 198761, - [SMALL_STATE(6244)] = 198776, - [SMALL_STATE(6245)] = 198791, - [SMALL_STATE(6246)] = 198810, - [SMALL_STATE(6247)] = 198825, - [SMALL_STATE(6248)] = 198840, - [SMALL_STATE(6249)] = 198855, - [SMALL_STATE(6250)] = 198870, - [SMALL_STATE(6251)] = 198885, - [SMALL_STATE(6252)] = 198900, - [SMALL_STATE(6253)] = 198919, - [SMALL_STATE(6254)] = 198934, - [SMALL_STATE(6255)] = 198953, - [SMALL_STATE(6256)] = 198968, - [SMALL_STATE(6257)] = 198987, - [SMALL_STATE(6258)] = 199002, - [SMALL_STATE(6259)] = 199021, - [SMALL_STATE(6260)] = 199036, - [SMALL_STATE(6261)] = 199055, - [SMALL_STATE(6262)] = 199070, - [SMALL_STATE(6263)] = 199085, - [SMALL_STATE(6264)] = 199100, - [SMALL_STATE(6265)] = 199119, - [SMALL_STATE(6266)] = 199138, - [SMALL_STATE(6267)] = 199153, - [SMALL_STATE(6268)] = 199168, - [SMALL_STATE(6269)] = 199183, - [SMALL_STATE(6270)] = 199198, - [SMALL_STATE(6271)] = 199213, - [SMALL_STATE(6272)] = 199230, - [SMALL_STATE(6273)] = 199247, - [SMALL_STATE(6274)] = 199262, - [SMALL_STATE(6275)] = 199277, - [SMALL_STATE(6276)] = 199292, - [SMALL_STATE(6277)] = 199307, - [SMALL_STATE(6278)] = 199322, - [SMALL_STATE(6279)] = 199337, - [SMALL_STATE(6280)] = 199352, - [SMALL_STATE(6281)] = 199367, - [SMALL_STATE(6282)] = 199382, - [SMALL_STATE(6283)] = 199401, - [SMALL_STATE(6284)] = 199416, - [SMALL_STATE(6285)] = 199435, - [SMALL_STATE(6286)] = 199454, - [SMALL_STATE(6287)] = 199469, - [SMALL_STATE(6288)] = 199484, - [SMALL_STATE(6289)] = 199499, - [SMALL_STATE(6290)] = 199514, - [SMALL_STATE(6291)] = 199529, - [SMALL_STATE(6292)] = 199544, - [SMALL_STATE(6293)] = 199559, - [SMALL_STATE(6294)] = 199575, - [SMALL_STATE(6295)] = 199589, - [SMALL_STATE(6296)] = 199605, - [SMALL_STATE(6297)] = 199621, - [SMALL_STATE(6298)] = 199637, - [SMALL_STATE(6299)] = 199653, - [SMALL_STATE(6300)] = 199669, - [SMALL_STATE(6301)] = 199683, - [SMALL_STATE(6302)] = 199699, - [SMALL_STATE(6303)] = 199715, - [SMALL_STATE(6304)] = 199731, - [SMALL_STATE(6305)] = 199747, - [SMALL_STATE(6306)] = 199763, - [SMALL_STATE(6307)] = 199779, - [SMALL_STATE(6308)] = 199793, - [SMALL_STATE(6309)] = 199809, - [SMALL_STATE(6310)] = 199825, - [SMALL_STATE(6311)] = 199841, - [SMALL_STATE(6312)] = 199857, - [SMALL_STATE(6313)] = 199873, - [SMALL_STATE(6314)] = 199889, - [SMALL_STATE(6315)] = 199905, - [SMALL_STATE(6316)] = 199921, - [SMALL_STATE(6317)] = 199937, - [SMALL_STATE(6318)] = 199953, - [SMALL_STATE(6319)] = 199969, - [SMALL_STATE(6320)] = 199985, - [SMALL_STATE(6321)] = 200001, - [SMALL_STATE(6322)] = 200017, - [SMALL_STATE(6323)] = 200033, - [SMALL_STATE(6324)] = 200047, - [SMALL_STATE(6325)] = 200063, - [SMALL_STATE(6326)] = 200079, - [SMALL_STATE(6327)] = 200093, - [SMALL_STATE(6328)] = 200107, - [SMALL_STATE(6329)] = 200121, - [SMALL_STATE(6330)] = 200137, - [SMALL_STATE(6331)] = 200153, - [SMALL_STATE(6332)] = 200167, - [SMALL_STATE(6333)] = 200183, - [SMALL_STATE(6334)] = 200199, - [SMALL_STATE(6335)] = 200213, - [SMALL_STATE(6336)] = 200227, - [SMALL_STATE(6337)] = 200241, - [SMALL_STATE(6338)] = 200255, - [SMALL_STATE(6339)] = 200271, - [SMALL_STATE(6340)] = 200285, - [SMALL_STATE(6341)] = 200299, - [SMALL_STATE(6342)] = 200313, - [SMALL_STATE(6343)] = 200327, - [SMALL_STATE(6344)] = 200341, - [SMALL_STATE(6345)] = 200357, - [SMALL_STATE(6346)] = 200371, - [SMALL_STATE(6347)] = 200387, - [SMALL_STATE(6348)] = 200403, - [SMALL_STATE(6349)] = 200417, - [SMALL_STATE(6350)] = 200431, - [SMALL_STATE(6351)] = 200447, - [SMALL_STATE(6352)] = 200463, - [SMALL_STATE(6353)] = 200479, - [SMALL_STATE(6354)] = 200495, - [SMALL_STATE(6355)] = 200511, - [SMALL_STATE(6356)] = 200527, - [SMALL_STATE(6357)] = 200541, - [SMALL_STATE(6358)] = 200555, - [SMALL_STATE(6359)] = 200571, - [SMALL_STATE(6360)] = 200585, - [SMALL_STATE(6361)] = 200601, - [SMALL_STATE(6362)] = 200617, - [SMALL_STATE(6363)] = 200631, - [SMALL_STATE(6364)] = 200647, - [SMALL_STATE(6365)] = 200663, - [SMALL_STATE(6366)] = 200679, - [SMALL_STATE(6367)] = 200693, - [SMALL_STATE(6368)] = 200709, - [SMALL_STATE(6369)] = 200725, - [SMALL_STATE(6370)] = 200741, - [SMALL_STATE(6371)] = 200755, - [SMALL_STATE(6372)] = 200769, - [SMALL_STATE(6373)] = 200783, - [SMALL_STATE(6374)] = 200797, - [SMALL_STATE(6375)] = 200811, - [SMALL_STATE(6376)] = 200827, - [SMALL_STATE(6377)] = 200843, - [SMALL_STATE(6378)] = 200857, - [SMALL_STATE(6379)] = 200873, - [SMALL_STATE(6380)] = 200887, - [SMALL_STATE(6381)] = 200901, - [SMALL_STATE(6382)] = 200915, - [SMALL_STATE(6383)] = 200929, - [SMALL_STATE(6384)] = 200945, - [SMALL_STATE(6385)] = 200961, - [SMALL_STATE(6386)] = 200977, - [SMALL_STATE(6387)] = 200991, - [SMALL_STATE(6388)] = 201005, - [SMALL_STATE(6389)] = 201021, - [SMALL_STATE(6390)] = 201035, - [SMALL_STATE(6391)] = 201049, - [SMALL_STATE(6392)] = 201063, - [SMALL_STATE(6393)] = 201077, - [SMALL_STATE(6394)] = 201093, - [SMALL_STATE(6395)] = 201107, - [SMALL_STATE(6396)] = 201121, - [SMALL_STATE(6397)] = 201135, - [SMALL_STATE(6398)] = 201151, - [SMALL_STATE(6399)] = 201167, - [SMALL_STATE(6400)] = 201183, - [SMALL_STATE(6401)] = 201199, - [SMALL_STATE(6402)] = 201215, - [SMALL_STATE(6403)] = 201231, - [SMALL_STATE(6404)] = 201247, - [SMALL_STATE(6405)] = 201263, - [SMALL_STATE(6406)] = 201279, - [SMALL_STATE(6407)] = 201295, - [SMALL_STATE(6408)] = 201311, - [SMALL_STATE(6409)] = 201327, - [SMALL_STATE(6410)] = 201343, - [SMALL_STATE(6411)] = 201359, - [SMALL_STATE(6412)] = 201375, - [SMALL_STATE(6413)] = 201391, - [SMALL_STATE(6414)] = 201407, - [SMALL_STATE(6415)] = 201423, - [SMALL_STATE(6416)] = 201439, - [SMALL_STATE(6417)] = 201455, - [SMALL_STATE(6418)] = 201471, - [SMALL_STATE(6419)] = 201487, - [SMALL_STATE(6420)] = 201503, - [SMALL_STATE(6421)] = 201519, - [SMALL_STATE(6422)] = 201535, - [SMALL_STATE(6423)] = 201549, - [SMALL_STATE(6424)] = 201565, - [SMALL_STATE(6425)] = 201581, - [SMALL_STATE(6426)] = 201597, - [SMALL_STATE(6427)] = 201613, - [SMALL_STATE(6428)] = 201627, - [SMALL_STATE(6429)] = 201641, - [SMALL_STATE(6430)] = 201655, - [SMALL_STATE(6431)] = 201671, - [SMALL_STATE(6432)] = 201685, - [SMALL_STATE(6433)] = 201699, - [SMALL_STATE(6434)] = 201715, - [SMALL_STATE(6435)] = 201729, - [SMALL_STATE(6436)] = 201745, - [SMALL_STATE(6437)] = 201759, - [SMALL_STATE(6438)] = 201775, - [SMALL_STATE(6439)] = 201791, - [SMALL_STATE(6440)] = 201805, - [SMALL_STATE(6441)] = 201821, - [SMALL_STATE(6442)] = 201837, - [SMALL_STATE(6443)] = 201851, - [SMALL_STATE(6444)] = 201865, - [SMALL_STATE(6445)] = 201881, - [SMALL_STATE(6446)] = 201897, - [SMALL_STATE(6447)] = 201913, - [SMALL_STATE(6448)] = 201929, - [SMALL_STATE(6449)] = 201945, - [SMALL_STATE(6450)] = 201961, - [SMALL_STATE(6451)] = 201977, - [SMALL_STATE(6452)] = 201993, - [SMALL_STATE(6453)] = 202009, - [SMALL_STATE(6454)] = 202023, - [SMALL_STATE(6455)] = 202039, - [SMALL_STATE(6456)] = 202055, - [SMALL_STATE(6457)] = 202071, - [SMALL_STATE(6458)] = 202087, - [SMALL_STATE(6459)] = 202101, - [SMALL_STATE(6460)] = 202115, - [SMALL_STATE(6461)] = 202131, - [SMALL_STATE(6462)] = 202147, - [SMALL_STATE(6463)] = 202163, - [SMALL_STATE(6464)] = 202177, - [SMALL_STATE(6465)] = 202193, - [SMALL_STATE(6466)] = 202209, - [SMALL_STATE(6467)] = 202225, - [SMALL_STATE(6468)] = 202241, - [SMALL_STATE(6469)] = 202257, - [SMALL_STATE(6470)] = 202273, - [SMALL_STATE(6471)] = 202289, - [SMALL_STATE(6472)] = 202305, - [SMALL_STATE(6473)] = 202319, - [SMALL_STATE(6474)] = 202335, - [SMALL_STATE(6475)] = 202351, - [SMALL_STATE(6476)] = 202367, - [SMALL_STATE(6477)] = 202381, - [SMALL_STATE(6478)] = 202397, - [SMALL_STATE(6479)] = 202413, - [SMALL_STATE(6480)] = 202427, - [SMALL_STATE(6481)] = 202441, - [SMALL_STATE(6482)] = 202457, - [SMALL_STATE(6483)] = 202473, - [SMALL_STATE(6484)] = 202487, - [SMALL_STATE(6485)] = 202503, - [SMALL_STATE(6486)] = 202519, - [SMALL_STATE(6487)] = 202535, - [SMALL_STATE(6488)] = 202551, - [SMALL_STATE(6489)] = 202567, - [SMALL_STATE(6490)] = 202583, - [SMALL_STATE(6491)] = 202599, - [SMALL_STATE(6492)] = 202615, - [SMALL_STATE(6493)] = 202631, - [SMALL_STATE(6494)] = 202647, - [SMALL_STATE(6495)] = 202663, - [SMALL_STATE(6496)] = 202677, - [SMALL_STATE(6497)] = 202691, - [SMALL_STATE(6498)] = 202707, - [SMALL_STATE(6499)] = 202723, - [SMALL_STATE(6500)] = 202737, - [SMALL_STATE(6501)] = 202753, - [SMALL_STATE(6502)] = 202769, - [SMALL_STATE(6503)] = 202783, - [SMALL_STATE(6504)] = 202799, - [SMALL_STATE(6505)] = 202815, - [SMALL_STATE(6506)] = 202829, - [SMALL_STATE(6507)] = 202845, - [SMALL_STATE(6508)] = 202861, - [SMALL_STATE(6509)] = 202877, - [SMALL_STATE(6510)] = 202893, - [SMALL_STATE(6511)] = 202907, - [SMALL_STATE(6512)] = 202923, - [SMALL_STATE(6513)] = 202939, - [SMALL_STATE(6514)] = 202955, - [SMALL_STATE(6515)] = 202971, - [SMALL_STATE(6516)] = 202987, - [SMALL_STATE(6517)] = 203003, - [SMALL_STATE(6518)] = 203017, - [SMALL_STATE(6519)] = 203031, - [SMALL_STATE(6520)] = 203047, - [SMALL_STATE(6521)] = 203061, - [SMALL_STATE(6522)] = 203077, - [SMALL_STATE(6523)] = 203091, - [SMALL_STATE(6524)] = 203105, - [SMALL_STATE(6525)] = 203121, - [SMALL_STATE(6526)] = 203137, - [SMALL_STATE(6527)] = 203153, - [SMALL_STATE(6528)] = 203169, - [SMALL_STATE(6529)] = 203185, - [SMALL_STATE(6530)] = 203199, - [SMALL_STATE(6531)] = 203215, - [SMALL_STATE(6532)] = 203231, - [SMALL_STATE(6533)] = 203247, - [SMALL_STATE(6534)] = 203263, - [SMALL_STATE(6535)] = 203279, - [SMALL_STATE(6536)] = 203293, - [SMALL_STATE(6537)] = 203307, - [SMALL_STATE(6538)] = 203321, - [SMALL_STATE(6539)] = 203335, - [SMALL_STATE(6540)] = 203351, - [SMALL_STATE(6541)] = 203367, - [SMALL_STATE(6542)] = 203381, - [SMALL_STATE(6543)] = 203395, - [SMALL_STATE(6544)] = 203411, - [SMALL_STATE(6545)] = 203425, - [SMALL_STATE(6546)] = 203439, - [SMALL_STATE(6547)] = 203455, - [SMALL_STATE(6548)] = 203469, - [SMALL_STATE(6549)] = 203483, - [SMALL_STATE(6550)] = 203499, - [SMALL_STATE(6551)] = 203513, - [SMALL_STATE(6552)] = 203529, - [SMALL_STATE(6553)] = 203545, - [SMALL_STATE(6554)] = 203561, - [SMALL_STATE(6555)] = 203577, - [SMALL_STATE(6556)] = 203591, - [SMALL_STATE(6557)] = 203605, - [SMALL_STATE(6558)] = 203621, - [SMALL_STATE(6559)] = 203637, - [SMALL_STATE(6560)] = 203653, - [SMALL_STATE(6561)] = 203669, - [SMALL_STATE(6562)] = 203683, - [SMALL_STATE(6563)] = 203699, - [SMALL_STATE(6564)] = 203715, - [SMALL_STATE(6565)] = 203731, - [SMALL_STATE(6566)] = 203745, - [SMALL_STATE(6567)] = 203759, - [SMALL_STATE(6568)] = 203775, - [SMALL_STATE(6569)] = 203791, - [SMALL_STATE(6570)] = 203807, - [SMALL_STATE(6571)] = 203821, - [SMALL_STATE(6572)] = 203837, - [SMALL_STATE(6573)] = 203853, - [SMALL_STATE(6574)] = 203867, - [SMALL_STATE(6575)] = 203883, - [SMALL_STATE(6576)] = 203899, - [SMALL_STATE(6577)] = 203915, - [SMALL_STATE(6578)] = 203929, - [SMALL_STATE(6579)] = 203945, - [SMALL_STATE(6580)] = 203959, - [SMALL_STATE(6581)] = 203973, - [SMALL_STATE(6582)] = 203987, - [SMALL_STATE(6583)] = 204001, - [SMALL_STATE(6584)] = 204017, - [SMALL_STATE(6585)] = 204031, - [SMALL_STATE(6586)] = 204047, - [SMALL_STATE(6587)] = 204063, - [SMALL_STATE(6588)] = 204079, - [SMALL_STATE(6589)] = 204095, - [SMALL_STATE(6590)] = 204111, - [SMALL_STATE(6591)] = 204127, - [SMALL_STATE(6592)] = 204143, - [SMALL_STATE(6593)] = 204159, - [SMALL_STATE(6594)] = 204175, - [SMALL_STATE(6595)] = 204191, - [SMALL_STATE(6596)] = 204207, - [SMALL_STATE(6597)] = 204221, - [SMALL_STATE(6598)] = 204237, - [SMALL_STATE(6599)] = 204253, - [SMALL_STATE(6600)] = 204267, - [SMALL_STATE(6601)] = 204281, - [SMALL_STATE(6602)] = 204295, - [SMALL_STATE(6603)] = 204309, - [SMALL_STATE(6604)] = 204325, - [SMALL_STATE(6605)] = 204341, - [SMALL_STATE(6606)] = 204355, - [SMALL_STATE(6607)] = 204369, - [SMALL_STATE(6608)] = 204383, - [SMALL_STATE(6609)] = 204399, - [SMALL_STATE(6610)] = 204415, - [SMALL_STATE(6611)] = 204431, - [SMALL_STATE(6612)] = 204445, - [SMALL_STATE(6613)] = 204459, - [SMALL_STATE(6614)] = 204473, - [SMALL_STATE(6615)] = 204487, - [SMALL_STATE(6616)] = 204501, - [SMALL_STATE(6617)] = 204517, - [SMALL_STATE(6618)] = 204533, - [SMALL_STATE(6619)] = 204547, - [SMALL_STATE(6620)] = 204563, - [SMALL_STATE(6621)] = 204579, - [SMALL_STATE(6622)] = 204595, - [SMALL_STATE(6623)] = 204611, - [SMALL_STATE(6624)] = 204627, - [SMALL_STATE(6625)] = 204643, - [SMALL_STATE(6626)] = 204659, - [SMALL_STATE(6627)] = 204675, - [SMALL_STATE(6628)] = 204691, - [SMALL_STATE(6629)] = 204707, - [SMALL_STATE(6630)] = 204721, - [SMALL_STATE(6631)] = 204737, - [SMALL_STATE(6632)] = 204751, - [SMALL_STATE(6633)] = 204765, - [SMALL_STATE(6634)] = 204779, - [SMALL_STATE(6635)] = 204795, - [SMALL_STATE(6636)] = 204811, - [SMALL_STATE(6637)] = 204827, - [SMALL_STATE(6638)] = 204841, - [SMALL_STATE(6639)] = 204855, - [SMALL_STATE(6640)] = 204871, - [SMALL_STATE(6641)] = 204887, - [SMALL_STATE(6642)] = 204903, - [SMALL_STATE(6643)] = 204919, - [SMALL_STATE(6644)] = 204933, - [SMALL_STATE(6645)] = 204947, - [SMALL_STATE(6646)] = 204961, - [SMALL_STATE(6647)] = 204975, - [SMALL_STATE(6648)] = 204989, - [SMALL_STATE(6649)] = 205005, - [SMALL_STATE(6650)] = 205021, - [SMALL_STATE(6651)] = 205037, - [SMALL_STATE(6652)] = 205053, - [SMALL_STATE(6653)] = 205069, - [SMALL_STATE(6654)] = 205085, - [SMALL_STATE(6655)] = 205099, - [SMALL_STATE(6656)] = 205115, - [SMALL_STATE(6657)] = 205129, - [SMALL_STATE(6658)] = 205143, - [SMALL_STATE(6659)] = 205157, - [SMALL_STATE(6660)] = 205173, - [SMALL_STATE(6661)] = 205189, - [SMALL_STATE(6662)] = 205205, - [SMALL_STATE(6663)] = 205219, - [SMALL_STATE(6664)] = 205233, - [SMALL_STATE(6665)] = 205249, - [SMALL_STATE(6666)] = 205263, - [SMALL_STATE(6667)] = 205279, - [SMALL_STATE(6668)] = 205295, - [SMALL_STATE(6669)] = 205309, - [SMALL_STATE(6670)] = 205323, - [SMALL_STATE(6671)] = 205339, - [SMALL_STATE(6672)] = 205355, - [SMALL_STATE(6673)] = 205369, - [SMALL_STATE(6674)] = 205385, - [SMALL_STATE(6675)] = 205399, - [SMALL_STATE(6676)] = 205415, - [SMALL_STATE(6677)] = 205431, - [SMALL_STATE(6678)] = 205447, - [SMALL_STATE(6679)] = 205463, - [SMALL_STATE(6680)] = 205479, - [SMALL_STATE(6681)] = 205493, - [SMALL_STATE(6682)] = 205507, - [SMALL_STATE(6683)] = 205521, - [SMALL_STATE(6684)] = 205537, - [SMALL_STATE(6685)] = 205553, - [SMALL_STATE(6686)] = 205567, - [SMALL_STATE(6687)] = 205581, - [SMALL_STATE(6688)] = 205597, - [SMALL_STATE(6689)] = 205611, - [SMALL_STATE(6690)] = 205627, - [SMALL_STATE(6691)] = 205641, - [SMALL_STATE(6692)] = 205655, - [SMALL_STATE(6693)] = 205671, - [SMALL_STATE(6694)] = 205685, - [SMALL_STATE(6695)] = 205699, - [SMALL_STATE(6696)] = 205713, - [SMALL_STATE(6697)] = 205727, - [SMALL_STATE(6698)] = 205743, - [SMALL_STATE(6699)] = 205757, - [SMALL_STATE(6700)] = 205771, - [SMALL_STATE(6701)] = 205787, - [SMALL_STATE(6702)] = 205801, - [SMALL_STATE(6703)] = 205817, - [SMALL_STATE(6704)] = 205833, - [SMALL_STATE(6705)] = 205847, - [SMALL_STATE(6706)] = 205861, - [SMALL_STATE(6707)] = 205875, - [SMALL_STATE(6708)] = 205891, - [SMALL_STATE(6709)] = 205907, - [SMALL_STATE(6710)] = 205921, - [SMALL_STATE(6711)] = 205935, - [SMALL_STATE(6712)] = 205951, - [SMALL_STATE(6713)] = 205965, - [SMALL_STATE(6714)] = 205981, - [SMALL_STATE(6715)] = 205995, - [SMALL_STATE(6716)] = 206011, - [SMALL_STATE(6717)] = 206027, - [SMALL_STATE(6718)] = 206043, - [SMALL_STATE(6719)] = 206059, - [SMALL_STATE(6720)] = 206075, - [SMALL_STATE(6721)] = 206091, - [SMALL_STATE(6722)] = 206107, - [SMALL_STATE(6723)] = 206123, - [SMALL_STATE(6724)] = 206139, - [SMALL_STATE(6725)] = 206155, - [SMALL_STATE(6726)] = 206171, - [SMALL_STATE(6727)] = 206185, - [SMALL_STATE(6728)] = 206199, - [SMALL_STATE(6729)] = 206215, - [SMALL_STATE(6730)] = 206229, - [SMALL_STATE(6731)] = 206245, - [SMALL_STATE(6732)] = 206259, - [SMALL_STATE(6733)] = 206275, - [SMALL_STATE(6734)] = 206289, - [SMALL_STATE(6735)] = 206305, - [SMALL_STATE(6736)] = 206321, - [SMALL_STATE(6737)] = 206335, - [SMALL_STATE(6738)] = 206351, - [SMALL_STATE(6739)] = 206367, - [SMALL_STATE(6740)] = 206381, - [SMALL_STATE(6741)] = 206395, - [SMALL_STATE(6742)] = 206409, - [SMALL_STATE(6743)] = 206423, - [SMALL_STATE(6744)] = 206439, - [SMALL_STATE(6745)] = 206455, - [SMALL_STATE(6746)] = 206471, - [SMALL_STATE(6747)] = 206487, - [SMALL_STATE(6748)] = 206501, - [SMALL_STATE(6749)] = 206515, - [SMALL_STATE(6750)] = 206531, - [SMALL_STATE(6751)] = 206545, - [SMALL_STATE(6752)] = 206559, - [SMALL_STATE(6753)] = 206575, - [SMALL_STATE(6754)] = 206589, - [SMALL_STATE(6755)] = 206605, - [SMALL_STATE(6756)] = 206621, - [SMALL_STATE(6757)] = 206637, - [SMALL_STATE(6758)] = 206651, - [SMALL_STATE(6759)] = 206667, - [SMALL_STATE(6760)] = 206681, - [SMALL_STATE(6761)] = 206697, - [SMALL_STATE(6762)] = 206713, - [SMALL_STATE(6763)] = 206729, - [SMALL_STATE(6764)] = 206743, - [SMALL_STATE(6765)] = 206757, - [SMALL_STATE(6766)] = 206773, - [SMALL_STATE(6767)] = 206787, - [SMALL_STATE(6768)] = 206801, - [SMALL_STATE(6769)] = 206817, - [SMALL_STATE(6770)] = 206833, - [SMALL_STATE(6771)] = 206847, - [SMALL_STATE(6772)] = 206863, - [SMALL_STATE(6773)] = 206877, - [SMALL_STATE(6774)] = 206893, - [SMALL_STATE(6775)] = 206907, - [SMALL_STATE(6776)] = 206923, - [SMALL_STATE(6777)] = 206937, - [SMALL_STATE(6778)] = 206953, - [SMALL_STATE(6779)] = 206967, - [SMALL_STATE(6780)] = 206983, - [SMALL_STATE(6781)] = 206999, - [SMALL_STATE(6782)] = 207013, - [SMALL_STATE(6783)] = 207029, - [SMALL_STATE(6784)] = 207043, - [SMALL_STATE(6785)] = 207057, - [SMALL_STATE(6786)] = 207073, - [SMALL_STATE(6787)] = 207089, - [SMALL_STATE(6788)] = 207105, - [SMALL_STATE(6789)] = 207119, - [SMALL_STATE(6790)] = 207133, - [SMALL_STATE(6791)] = 207149, - [SMALL_STATE(6792)] = 207163, - [SMALL_STATE(6793)] = 207177, - [SMALL_STATE(6794)] = 207193, - [SMALL_STATE(6795)] = 207207, - [SMALL_STATE(6796)] = 207223, - [SMALL_STATE(6797)] = 207239, - [SMALL_STATE(6798)] = 207255, - [SMALL_STATE(6799)] = 207271, - [SMALL_STATE(6800)] = 207285, - [SMALL_STATE(6801)] = 207301, - [SMALL_STATE(6802)] = 207315, - [SMALL_STATE(6803)] = 207331, - [SMALL_STATE(6804)] = 207345, - [SMALL_STATE(6805)] = 207361, - [SMALL_STATE(6806)] = 207375, - [SMALL_STATE(6807)] = 207391, - [SMALL_STATE(6808)] = 207405, - [SMALL_STATE(6809)] = 207421, - [SMALL_STATE(6810)] = 207437, - [SMALL_STATE(6811)] = 207451, - [SMALL_STATE(6812)] = 207465, - [SMALL_STATE(6813)] = 207481, - [SMALL_STATE(6814)] = 207495, - [SMALL_STATE(6815)] = 207509, - [SMALL_STATE(6816)] = 207523, - [SMALL_STATE(6817)] = 207537, - [SMALL_STATE(6818)] = 207553, - [SMALL_STATE(6819)] = 207569, - [SMALL_STATE(6820)] = 207585, - [SMALL_STATE(6821)] = 207599, - [SMALL_STATE(6822)] = 207615, - [SMALL_STATE(6823)] = 207631, - [SMALL_STATE(6824)] = 207647, - [SMALL_STATE(6825)] = 207663, - [SMALL_STATE(6826)] = 207677, - [SMALL_STATE(6827)] = 207693, - [SMALL_STATE(6828)] = 207707, - [SMALL_STATE(6829)] = 207723, - [SMALL_STATE(6830)] = 207737, - [SMALL_STATE(6831)] = 207751, - [SMALL_STATE(6832)] = 207767, - [SMALL_STATE(6833)] = 207781, - [SMALL_STATE(6834)] = 207795, - [SMALL_STATE(6835)] = 207811, - [SMALL_STATE(6836)] = 207825, - [SMALL_STATE(6837)] = 207841, - [SMALL_STATE(6838)] = 207857, - [SMALL_STATE(6839)] = 207871, - [SMALL_STATE(6840)] = 207885, - [SMALL_STATE(6841)] = 207899, - [SMALL_STATE(6842)] = 207915, - [SMALL_STATE(6843)] = 207931, - [SMALL_STATE(6844)] = 207945, - [SMALL_STATE(6845)] = 207959, - [SMALL_STATE(6846)] = 207975, - [SMALL_STATE(6847)] = 207991, - [SMALL_STATE(6848)] = 208007, - [SMALL_STATE(6849)] = 208023, - [SMALL_STATE(6850)] = 208039, - [SMALL_STATE(6851)] = 208055, - [SMALL_STATE(6852)] = 208069, - [SMALL_STATE(6853)] = 208083, - [SMALL_STATE(6854)] = 208097, - [SMALL_STATE(6855)] = 208113, - [SMALL_STATE(6856)] = 208127, - [SMALL_STATE(6857)] = 208141, - [SMALL_STATE(6858)] = 208157, - [SMALL_STATE(6859)] = 208173, - [SMALL_STATE(6860)] = 208189, - [SMALL_STATE(6861)] = 208203, - [SMALL_STATE(6862)] = 208219, - [SMALL_STATE(6863)] = 208235, - [SMALL_STATE(6864)] = 208251, - [SMALL_STATE(6865)] = 208267, - [SMALL_STATE(6866)] = 208283, - [SMALL_STATE(6867)] = 208297, - [SMALL_STATE(6868)] = 208313, - [SMALL_STATE(6869)] = 208327, - [SMALL_STATE(6870)] = 208341, - [SMALL_STATE(6871)] = 208357, - [SMALL_STATE(6872)] = 208373, - [SMALL_STATE(6873)] = 208389, - [SMALL_STATE(6874)] = 208405, - [SMALL_STATE(6875)] = 208421, - [SMALL_STATE(6876)] = 208437, - [SMALL_STATE(6877)] = 208453, - [SMALL_STATE(6878)] = 208469, - [SMALL_STATE(6879)] = 208485, - [SMALL_STATE(6880)] = 208501, - [SMALL_STATE(6881)] = 208515, - [SMALL_STATE(6882)] = 208531, - [SMALL_STATE(6883)] = 208547, - [SMALL_STATE(6884)] = 208563, - [SMALL_STATE(6885)] = 208579, - [SMALL_STATE(6886)] = 208595, - [SMALL_STATE(6887)] = 208611, - [SMALL_STATE(6888)] = 208625, - [SMALL_STATE(6889)] = 208641, - [SMALL_STATE(6890)] = 208657, - [SMALL_STATE(6891)] = 208673, - [SMALL_STATE(6892)] = 208689, - [SMALL_STATE(6893)] = 208705, - [SMALL_STATE(6894)] = 208721, - [SMALL_STATE(6895)] = 208735, - [SMALL_STATE(6896)] = 208749, - [SMALL_STATE(6897)] = 208765, - [SMALL_STATE(6898)] = 208779, - [SMALL_STATE(6899)] = 208795, - [SMALL_STATE(6900)] = 208811, - [SMALL_STATE(6901)] = 208827, - [SMALL_STATE(6902)] = 208843, - [SMALL_STATE(6903)] = 208859, - [SMALL_STATE(6904)] = 208875, - [SMALL_STATE(6905)] = 208891, - [SMALL_STATE(6906)] = 208907, - [SMALL_STATE(6907)] = 208923, - [SMALL_STATE(6908)] = 208939, - [SMALL_STATE(6909)] = 208955, - [SMALL_STATE(6910)] = 208971, - [SMALL_STATE(6911)] = 208987, - [SMALL_STATE(6912)] = 209001, - [SMALL_STATE(6913)] = 209015, - [SMALL_STATE(6914)] = 209031, - [SMALL_STATE(6915)] = 209045, - [SMALL_STATE(6916)] = 209059, - [SMALL_STATE(6917)] = 209075, - [SMALL_STATE(6918)] = 209089, - [SMALL_STATE(6919)] = 209105, - [SMALL_STATE(6920)] = 209119, - [SMALL_STATE(6921)] = 209135, - [SMALL_STATE(6922)] = 209149, - [SMALL_STATE(6923)] = 209163, - [SMALL_STATE(6924)] = 209179, - [SMALL_STATE(6925)] = 209195, - [SMALL_STATE(6926)] = 209211, - [SMALL_STATE(6927)] = 209227, - [SMALL_STATE(6928)] = 209241, - [SMALL_STATE(6929)] = 209255, - [SMALL_STATE(6930)] = 209271, - [SMALL_STATE(6931)] = 209287, - [SMALL_STATE(6932)] = 209303, - [SMALL_STATE(6933)] = 209317, - [SMALL_STATE(6934)] = 209333, - [SMALL_STATE(6935)] = 209347, - [SMALL_STATE(6936)] = 209363, - [SMALL_STATE(6937)] = 209379, - [SMALL_STATE(6938)] = 209393, - [SMALL_STATE(6939)] = 209409, - [SMALL_STATE(6940)] = 209422, - [SMALL_STATE(6941)] = 209435, - [SMALL_STATE(6942)] = 209448, - [SMALL_STATE(6943)] = 209461, - [SMALL_STATE(6944)] = 209474, - [SMALL_STATE(6945)] = 209487, - [SMALL_STATE(6946)] = 209500, - [SMALL_STATE(6947)] = 209513, - [SMALL_STATE(6948)] = 209526, - [SMALL_STATE(6949)] = 209539, - [SMALL_STATE(6950)] = 209552, - [SMALL_STATE(6951)] = 209565, - [SMALL_STATE(6952)] = 209578, - [SMALL_STATE(6953)] = 209591, - [SMALL_STATE(6954)] = 209604, - [SMALL_STATE(6955)] = 209617, - [SMALL_STATE(6956)] = 209630, - [SMALL_STATE(6957)] = 209643, - [SMALL_STATE(6958)] = 209656, - [SMALL_STATE(6959)] = 209669, - [SMALL_STATE(6960)] = 209682, - [SMALL_STATE(6961)] = 209695, - [SMALL_STATE(6962)] = 209708, - [SMALL_STATE(6963)] = 209721, - [SMALL_STATE(6964)] = 209734, - [SMALL_STATE(6965)] = 209747, - [SMALL_STATE(6966)] = 209760, - [SMALL_STATE(6967)] = 209773, - [SMALL_STATE(6968)] = 209786, - [SMALL_STATE(6969)] = 209799, - [SMALL_STATE(6970)] = 209812, - [SMALL_STATE(6971)] = 209825, - [SMALL_STATE(6972)] = 209838, - [SMALL_STATE(6973)] = 209851, - [SMALL_STATE(6974)] = 209864, - [SMALL_STATE(6975)] = 209877, - [SMALL_STATE(6976)] = 209890, - [SMALL_STATE(6977)] = 209903, - [SMALL_STATE(6978)] = 209916, - [SMALL_STATE(6979)] = 209929, - [SMALL_STATE(6980)] = 209942, - [SMALL_STATE(6981)] = 209955, - [SMALL_STATE(6982)] = 209968, - [SMALL_STATE(6983)] = 209981, - [SMALL_STATE(6984)] = 209994, - [SMALL_STATE(6985)] = 210007, - [SMALL_STATE(6986)] = 210020, - [SMALL_STATE(6987)] = 210033, - [SMALL_STATE(6988)] = 210046, - [SMALL_STATE(6989)] = 210059, - [SMALL_STATE(6990)] = 210072, - [SMALL_STATE(6991)] = 210085, - [SMALL_STATE(6992)] = 210098, - [SMALL_STATE(6993)] = 210111, - [SMALL_STATE(6994)] = 210124, - [SMALL_STATE(6995)] = 210137, - [SMALL_STATE(6996)] = 210150, - [SMALL_STATE(6997)] = 210163, - [SMALL_STATE(6998)] = 210176, - [SMALL_STATE(6999)] = 210189, - [SMALL_STATE(7000)] = 210202, - [SMALL_STATE(7001)] = 210215, - [SMALL_STATE(7002)] = 210228, - [SMALL_STATE(7003)] = 210241, - [SMALL_STATE(7004)] = 210254, - [SMALL_STATE(7005)] = 210267, - [SMALL_STATE(7006)] = 210280, - [SMALL_STATE(7007)] = 210293, - [SMALL_STATE(7008)] = 210306, - [SMALL_STATE(7009)] = 210319, - [SMALL_STATE(7010)] = 210332, - [SMALL_STATE(7011)] = 210345, - [SMALL_STATE(7012)] = 210358, - [SMALL_STATE(7013)] = 210371, - [SMALL_STATE(7014)] = 210384, - [SMALL_STATE(7015)] = 210397, - [SMALL_STATE(7016)] = 210410, - [SMALL_STATE(7017)] = 210423, - [SMALL_STATE(7018)] = 210436, - [SMALL_STATE(7019)] = 210449, - [SMALL_STATE(7020)] = 210462, - [SMALL_STATE(7021)] = 210475, - [SMALL_STATE(7022)] = 210488, - [SMALL_STATE(7023)] = 210501, - [SMALL_STATE(7024)] = 210514, - [SMALL_STATE(7025)] = 210527, - [SMALL_STATE(7026)] = 210540, - [SMALL_STATE(7027)] = 210553, - [SMALL_STATE(7028)] = 210566, - [SMALL_STATE(7029)] = 210579, - [SMALL_STATE(7030)] = 210592, - [SMALL_STATE(7031)] = 210605, - [SMALL_STATE(7032)] = 210618, - [SMALL_STATE(7033)] = 210631, - [SMALL_STATE(7034)] = 210644, - [SMALL_STATE(7035)] = 210657, - [SMALL_STATE(7036)] = 210670, - [SMALL_STATE(7037)] = 210683, - [SMALL_STATE(7038)] = 210696, - [SMALL_STATE(7039)] = 210709, - [SMALL_STATE(7040)] = 210722, - [SMALL_STATE(7041)] = 210735, - [SMALL_STATE(7042)] = 210748, - [SMALL_STATE(7043)] = 210761, - [SMALL_STATE(7044)] = 210774, - [SMALL_STATE(7045)] = 210787, - [SMALL_STATE(7046)] = 210800, - [SMALL_STATE(7047)] = 210813, - [SMALL_STATE(7048)] = 210826, - [SMALL_STATE(7049)] = 210839, - [SMALL_STATE(7050)] = 210852, - [SMALL_STATE(7051)] = 210865, - [SMALL_STATE(7052)] = 210878, - [SMALL_STATE(7053)] = 210891, - [SMALL_STATE(7054)] = 210904, - [SMALL_STATE(7055)] = 210917, - [SMALL_STATE(7056)] = 210930, - [SMALL_STATE(7057)] = 210943, - [SMALL_STATE(7058)] = 210956, - [SMALL_STATE(7059)] = 210969, - [SMALL_STATE(7060)] = 210982, - [SMALL_STATE(7061)] = 210995, - [SMALL_STATE(7062)] = 211008, - [SMALL_STATE(7063)] = 211021, - [SMALL_STATE(7064)] = 211034, - [SMALL_STATE(7065)] = 211047, - [SMALL_STATE(7066)] = 211060, - [SMALL_STATE(7067)] = 211073, - [SMALL_STATE(7068)] = 211086, - [SMALL_STATE(7069)] = 211099, - [SMALL_STATE(7070)] = 211112, - [SMALL_STATE(7071)] = 211125, - [SMALL_STATE(7072)] = 211138, - [SMALL_STATE(7073)] = 211151, - [SMALL_STATE(7074)] = 211164, - [SMALL_STATE(7075)] = 211177, - [SMALL_STATE(7076)] = 211190, - [SMALL_STATE(7077)] = 211203, - [SMALL_STATE(7078)] = 211216, - [SMALL_STATE(7079)] = 211229, - [SMALL_STATE(7080)] = 211242, - [SMALL_STATE(7081)] = 211255, - [SMALL_STATE(7082)] = 211268, - [SMALL_STATE(7083)] = 211281, - [SMALL_STATE(7084)] = 211294, - [SMALL_STATE(7085)] = 211307, - [SMALL_STATE(7086)] = 211320, - [SMALL_STATE(7087)] = 211333, - [SMALL_STATE(7088)] = 211346, - [SMALL_STATE(7089)] = 211359, - [SMALL_STATE(7090)] = 211372, - [SMALL_STATE(7091)] = 211385, - [SMALL_STATE(7092)] = 211398, - [SMALL_STATE(7093)] = 211411, - [SMALL_STATE(7094)] = 211424, - [SMALL_STATE(7095)] = 211437, - [SMALL_STATE(7096)] = 211450, - [SMALL_STATE(7097)] = 211463, - [SMALL_STATE(7098)] = 211476, - [SMALL_STATE(7099)] = 211489, - [SMALL_STATE(7100)] = 211502, - [SMALL_STATE(7101)] = 211515, - [SMALL_STATE(7102)] = 211528, - [SMALL_STATE(7103)] = 211541, - [SMALL_STATE(7104)] = 211554, - [SMALL_STATE(7105)] = 211567, - [SMALL_STATE(7106)] = 211580, - [SMALL_STATE(7107)] = 211593, - [SMALL_STATE(7108)] = 211606, - [SMALL_STATE(7109)] = 211619, - [SMALL_STATE(7110)] = 211632, - [SMALL_STATE(7111)] = 211645, - [SMALL_STATE(7112)] = 211658, - [SMALL_STATE(7113)] = 211671, - [SMALL_STATE(7114)] = 211684, - [SMALL_STATE(7115)] = 211697, - [SMALL_STATE(7116)] = 211710, - [SMALL_STATE(7117)] = 211723, - [SMALL_STATE(7118)] = 211736, - [SMALL_STATE(7119)] = 211749, - [SMALL_STATE(7120)] = 211762, - [SMALL_STATE(7121)] = 211775, - [SMALL_STATE(7122)] = 211788, - [SMALL_STATE(7123)] = 211801, - [SMALL_STATE(7124)] = 211814, - [SMALL_STATE(7125)] = 211827, - [SMALL_STATE(7126)] = 211840, - [SMALL_STATE(7127)] = 211853, - [SMALL_STATE(7128)] = 211866, - [SMALL_STATE(7129)] = 211879, - [SMALL_STATE(7130)] = 211892, - [SMALL_STATE(7131)] = 211905, - [SMALL_STATE(7132)] = 211918, - [SMALL_STATE(7133)] = 211931, - [SMALL_STATE(7134)] = 211944, - [SMALL_STATE(7135)] = 211957, - [SMALL_STATE(7136)] = 211970, - [SMALL_STATE(7137)] = 211983, - [SMALL_STATE(7138)] = 211996, - [SMALL_STATE(7139)] = 212009, - [SMALL_STATE(7140)] = 212022, - [SMALL_STATE(7141)] = 212035, - [SMALL_STATE(7142)] = 212048, - [SMALL_STATE(7143)] = 212061, - [SMALL_STATE(7144)] = 212074, - [SMALL_STATE(7145)] = 212087, - [SMALL_STATE(7146)] = 212100, - [SMALL_STATE(7147)] = 212113, - [SMALL_STATE(7148)] = 212126, - [SMALL_STATE(7149)] = 212139, - [SMALL_STATE(7150)] = 212152, - [SMALL_STATE(7151)] = 212165, - [SMALL_STATE(7152)] = 212178, - [SMALL_STATE(7153)] = 212191, - [SMALL_STATE(7154)] = 212204, - [SMALL_STATE(7155)] = 212217, - [SMALL_STATE(7156)] = 212230, - [SMALL_STATE(7157)] = 212243, - [SMALL_STATE(7158)] = 212256, - [SMALL_STATE(7159)] = 212269, - [SMALL_STATE(7160)] = 212282, - [SMALL_STATE(7161)] = 212295, - [SMALL_STATE(7162)] = 212308, - [SMALL_STATE(7163)] = 212321, - [SMALL_STATE(7164)] = 212334, - [SMALL_STATE(7165)] = 212347, - [SMALL_STATE(7166)] = 212360, - [SMALL_STATE(7167)] = 212373, - [SMALL_STATE(7168)] = 212386, - [SMALL_STATE(7169)] = 212399, - [SMALL_STATE(7170)] = 212412, - [SMALL_STATE(7171)] = 212425, - [SMALL_STATE(7172)] = 212438, - [SMALL_STATE(7173)] = 212451, - [SMALL_STATE(7174)] = 212464, - [SMALL_STATE(7175)] = 212477, - [SMALL_STATE(7176)] = 212490, - [SMALL_STATE(7177)] = 212503, - [SMALL_STATE(7178)] = 212516, - [SMALL_STATE(7179)] = 212529, - [SMALL_STATE(7180)] = 212542, - [SMALL_STATE(7181)] = 212555, - [SMALL_STATE(7182)] = 212568, - [SMALL_STATE(7183)] = 212581, - [SMALL_STATE(7184)] = 212594, - [SMALL_STATE(7185)] = 212607, - [SMALL_STATE(7186)] = 212620, - [SMALL_STATE(7187)] = 212633, - [SMALL_STATE(7188)] = 212646, - [SMALL_STATE(7189)] = 212659, - [SMALL_STATE(7190)] = 212672, - [SMALL_STATE(7191)] = 212685, - [SMALL_STATE(7192)] = 212698, - [SMALL_STATE(7193)] = 212711, - [SMALL_STATE(7194)] = 212724, - [SMALL_STATE(7195)] = 212737, - [SMALL_STATE(7196)] = 212750, - [SMALL_STATE(7197)] = 212763, - [SMALL_STATE(7198)] = 212776, - [SMALL_STATE(7199)] = 212789, - [SMALL_STATE(7200)] = 212802, - [SMALL_STATE(7201)] = 212815, - [SMALL_STATE(7202)] = 212828, - [SMALL_STATE(7203)] = 212841, - [SMALL_STATE(7204)] = 212854, - [SMALL_STATE(7205)] = 212867, - [SMALL_STATE(7206)] = 212880, - [SMALL_STATE(7207)] = 212893, - [SMALL_STATE(7208)] = 212906, - [SMALL_STATE(7209)] = 212919, - [SMALL_STATE(7210)] = 212932, - [SMALL_STATE(7211)] = 212945, - [SMALL_STATE(7212)] = 212958, - [SMALL_STATE(7213)] = 212971, - [SMALL_STATE(7214)] = 212984, - [SMALL_STATE(7215)] = 212997, - [SMALL_STATE(7216)] = 213010, - [SMALL_STATE(7217)] = 213023, - [SMALL_STATE(7218)] = 213036, - [SMALL_STATE(7219)] = 213049, - [SMALL_STATE(7220)] = 213062, - [SMALL_STATE(7221)] = 213075, - [SMALL_STATE(7222)] = 213088, - [SMALL_STATE(7223)] = 213101, - [SMALL_STATE(7224)] = 213114, - [SMALL_STATE(7225)] = 213127, - [SMALL_STATE(7226)] = 213140, - [SMALL_STATE(7227)] = 213153, - [SMALL_STATE(7228)] = 213166, - [SMALL_STATE(7229)] = 213179, - [SMALL_STATE(7230)] = 213192, - [SMALL_STATE(7231)] = 213205, - [SMALL_STATE(7232)] = 213218, - [SMALL_STATE(7233)] = 213231, - [SMALL_STATE(7234)] = 213244, - [SMALL_STATE(7235)] = 213257, - [SMALL_STATE(7236)] = 213270, - [SMALL_STATE(7237)] = 213283, - [SMALL_STATE(7238)] = 213296, - [SMALL_STATE(7239)] = 213309, - [SMALL_STATE(7240)] = 213322, - [SMALL_STATE(7241)] = 213335, - [SMALL_STATE(7242)] = 213348, - [SMALL_STATE(7243)] = 213361, - [SMALL_STATE(7244)] = 213374, - [SMALL_STATE(7245)] = 213387, - [SMALL_STATE(7246)] = 213400, - [SMALL_STATE(7247)] = 213413, - [SMALL_STATE(7248)] = 213426, - [SMALL_STATE(7249)] = 213439, - [SMALL_STATE(7250)] = 213452, - [SMALL_STATE(7251)] = 213465, - [SMALL_STATE(7252)] = 213478, - [SMALL_STATE(7253)] = 213491, - [SMALL_STATE(7254)] = 213504, - [SMALL_STATE(7255)] = 213517, - [SMALL_STATE(7256)] = 213530, - [SMALL_STATE(7257)] = 213543, - [SMALL_STATE(7258)] = 213556, - [SMALL_STATE(7259)] = 213569, - [SMALL_STATE(7260)] = 213582, - [SMALL_STATE(7261)] = 213595, - [SMALL_STATE(7262)] = 213608, - [SMALL_STATE(7263)] = 213621, - [SMALL_STATE(7264)] = 213634, - [SMALL_STATE(7265)] = 213647, - [SMALL_STATE(7266)] = 213660, - [SMALL_STATE(7267)] = 213673, - [SMALL_STATE(7268)] = 213686, - [SMALL_STATE(7269)] = 213699, - [SMALL_STATE(7270)] = 213712, - [SMALL_STATE(7271)] = 213725, - [SMALL_STATE(7272)] = 213738, - [SMALL_STATE(7273)] = 213751, - [SMALL_STATE(7274)] = 213764, - [SMALL_STATE(7275)] = 213777, - [SMALL_STATE(7276)] = 213790, - [SMALL_STATE(7277)] = 213803, - [SMALL_STATE(7278)] = 213816, - [SMALL_STATE(7279)] = 213829, - [SMALL_STATE(7280)] = 213842, - [SMALL_STATE(7281)] = 213855, - [SMALL_STATE(7282)] = 213868, - [SMALL_STATE(7283)] = 213881, - [SMALL_STATE(7284)] = 213894, - [SMALL_STATE(7285)] = 213907, - [SMALL_STATE(7286)] = 213920, - [SMALL_STATE(7287)] = 213933, - [SMALL_STATE(7288)] = 213946, - [SMALL_STATE(7289)] = 213959, - [SMALL_STATE(7290)] = 213972, - [SMALL_STATE(7291)] = 213985, - [SMALL_STATE(7292)] = 213998, - [SMALL_STATE(7293)] = 214011, - [SMALL_STATE(7294)] = 214024, - [SMALL_STATE(7295)] = 214037, - [SMALL_STATE(7296)] = 214050, - [SMALL_STATE(7297)] = 214063, - [SMALL_STATE(7298)] = 214076, - [SMALL_STATE(7299)] = 214089, - [SMALL_STATE(7300)] = 214102, - [SMALL_STATE(7301)] = 214115, - [SMALL_STATE(7302)] = 214128, - [SMALL_STATE(7303)] = 214141, - [SMALL_STATE(7304)] = 214154, - [SMALL_STATE(7305)] = 214167, - [SMALL_STATE(7306)] = 214180, - [SMALL_STATE(7307)] = 214193, - [SMALL_STATE(7308)] = 214206, - [SMALL_STATE(7309)] = 214219, - [SMALL_STATE(7310)] = 214232, - [SMALL_STATE(7311)] = 214245, - [SMALL_STATE(7312)] = 214258, - [SMALL_STATE(7313)] = 214271, - [SMALL_STATE(7314)] = 214284, - [SMALL_STATE(7315)] = 214297, - [SMALL_STATE(7316)] = 214310, - [SMALL_STATE(7317)] = 214323, - [SMALL_STATE(7318)] = 214336, - [SMALL_STATE(7319)] = 214349, - [SMALL_STATE(7320)] = 214362, - [SMALL_STATE(7321)] = 214375, - [SMALL_STATE(7322)] = 214388, - [SMALL_STATE(7323)] = 214401, - [SMALL_STATE(7324)] = 214414, - [SMALL_STATE(7325)] = 214427, - [SMALL_STATE(7326)] = 214440, - [SMALL_STATE(7327)] = 214453, - [SMALL_STATE(7328)] = 214466, - [SMALL_STATE(7329)] = 214479, - [SMALL_STATE(7330)] = 214492, - [SMALL_STATE(7331)] = 214505, - [SMALL_STATE(7332)] = 214518, - [SMALL_STATE(7333)] = 214531, - [SMALL_STATE(7334)] = 214544, - [SMALL_STATE(7335)] = 214557, - [SMALL_STATE(7336)] = 214570, - [SMALL_STATE(7337)] = 214583, - [SMALL_STATE(7338)] = 214596, - [SMALL_STATE(7339)] = 214609, - [SMALL_STATE(7340)] = 214622, - [SMALL_STATE(7341)] = 214635, - [SMALL_STATE(7342)] = 214648, - [SMALL_STATE(7343)] = 214661, - [SMALL_STATE(7344)] = 214674, - [SMALL_STATE(7345)] = 214687, - [SMALL_STATE(7346)] = 214700, - [SMALL_STATE(7347)] = 214713, - [SMALL_STATE(7348)] = 214726, - [SMALL_STATE(7349)] = 214739, - [SMALL_STATE(7350)] = 214752, - [SMALL_STATE(7351)] = 214765, - [SMALL_STATE(7352)] = 214778, - [SMALL_STATE(7353)] = 214791, - [SMALL_STATE(7354)] = 214804, - [SMALL_STATE(7355)] = 214817, - [SMALL_STATE(7356)] = 214830, - [SMALL_STATE(7357)] = 214843, - [SMALL_STATE(7358)] = 214856, - [SMALL_STATE(7359)] = 214869, - [SMALL_STATE(7360)] = 214882, - [SMALL_STATE(7361)] = 214895, - [SMALL_STATE(7362)] = 214908, - [SMALL_STATE(7363)] = 214921, - [SMALL_STATE(7364)] = 214934, - [SMALL_STATE(7365)] = 214947, - [SMALL_STATE(7366)] = 214960, - [SMALL_STATE(7367)] = 214973, - [SMALL_STATE(7368)] = 214986, - [SMALL_STATE(7369)] = 214999, - [SMALL_STATE(7370)] = 215012, - [SMALL_STATE(7371)] = 215025, - [SMALL_STATE(7372)] = 215038, - [SMALL_STATE(7373)] = 215051, - [SMALL_STATE(7374)] = 215064, - [SMALL_STATE(7375)] = 215077, - [SMALL_STATE(7376)] = 215090, - [SMALL_STATE(7377)] = 215103, - [SMALL_STATE(7378)] = 215116, - [SMALL_STATE(7379)] = 215129, - [SMALL_STATE(7380)] = 215142, - [SMALL_STATE(7381)] = 215155, - [SMALL_STATE(7382)] = 215168, - [SMALL_STATE(7383)] = 215181, - [SMALL_STATE(7384)] = 215194, - [SMALL_STATE(7385)] = 215207, - [SMALL_STATE(7386)] = 215220, - [SMALL_STATE(7387)] = 215233, - [SMALL_STATE(7388)] = 215246, - [SMALL_STATE(7389)] = 215259, - [SMALL_STATE(7390)] = 215272, - [SMALL_STATE(7391)] = 215285, - [SMALL_STATE(7392)] = 215298, - [SMALL_STATE(7393)] = 215311, - [SMALL_STATE(7394)] = 215324, - [SMALL_STATE(7395)] = 215337, - [SMALL_STATE(7396)] = 215350, - [SMALL_STATE(7397)] = 215363, - [SMALL_STATE(7398)] = 215376, - [SMALL_STATE(7399)] = 215389, - [SMALL_STATE(7400)] = 215402, - [SMALL_STATE(7401)] = 215415, - [SMALL_STATE(7402)] = 215428, - [SMALL_STATE(7403)] = 215441, - [SMALL_STATE(7404)] = 215454, - [SMALL_STATE(7405)] = 215467, - [SMALL_STATE(7406)] = 215480, - [SMALL_STATE(7407)] = 215493, - [SMALL_STATE(7408)] = 215506, - [SMALL_STATE(7409)] = 215519, - [SMALL_STATE(7410)] = 215532, - [SMALL_STATE(7411)] = 215545, - [SMALL_STATE(7412)] = 215558, - [SMALL_STATE(7413)] = 215571, - [SMALL_STATE(7414)] = 215584, - [SMALL_STATE(7415)] = 215597, - [SMALL_STATE(7416)] = 215610, - [SMALL_STATE(7417)] = 215623, - [SMALL_STATE(7418)] = 215636, - [SMALL_STATE(7419)] = 215649, - [SMALL_STATE(7420)] = 215662, - [SMALL_STATE(7421)] = 215675, - [SMALL_STATE(7422)] = 215688, - [SMALL_STATE(7423)] = 215701, - [SMALL_STATE(7424)] = 215714, - [SMALL_STATE(7425)] = 215727, - [SMALL_STATE(7426)] = 215740, + [SMALL_STATE(4637)] = 167224, + [SMALL_STATE(4638)] = 167251, + [SMALL_STATE(4639)] = 167282, + [SMALL_STATE(4640)] = 167311, + [SMALL_STATE(4641)] = 167342, + [SMALL_STATE(4642)] = 167371, + [SMALL_STATE(4643)] = 167402, + [SMALL_STATE(4644)] = 167429, + [SMALL_STATE(4645)] = 167456, + [SMALL_STATE(4646)] = 167483, + [SMALL_STATE(4647)] = 167510, + [SMALL_STATE(4648)] = 167541, + [SMALL_STATE(4649)] = 167568, + [SMALL_STATE(4650)] = 167595, + [SMALL_STATE(4651)] = 167626, + [SMALL_STATE(4652)] = 167657, + [SMALL_STATE(4653)] = 167686, + [SMALL_STATE(4654)] = 167705, + [SMALL_STATE(4655)] = 167724, + [SMALL_STATE(4656)] = 167746, + [SMALL_STATE(4657)] = 167768, + [SMALL_STATE(4658)] = 167792, + [SMALL_STATE(4659)] = 167814, + [SMALL_STATE(4660)] = 167840, + [SMALL_STATE(4661)] = 167868, + [SMALL_STATE(4662)] = 167890, + [SMALL_STATE(4663)] = 167918, + [SMALL_STATE(4664)] = 167946, + [SMALL_STATE(4665)] = 167972, + [SMALL_STATE(4666)] = 167998, + [SMALL_STATE(4667)] = 168024, + [SMALL_STATE(4668)] = 168046, + [SMALL_STATE(4669)] = 168068, + [SMALL_STATE(4670)] = 168096, + [SMALL_STATE(4671)] = 168124, + [SMALL_STATE(4672)] = 168152, + [SMALL_STATE(4673)] = 168174, + [SMALL_STATE(4674)] = 168202, + [SMALL_STATE(4675)] = 168230, + [SMALL_STATE(4676)] = 168252, + [SMALL_STATE(4677)] = 168280, + [SMALL_STATE(4678)] = 168302, + [SMALL_STATE(4679)] = 168324, + [SMALL_STATE(4680)] = 168352, + [SMALL_STATE(4681)] = 168372, + [SMALL_STATE(4682)] = 168394, + [SMALL_STATE(4683)] = 168416, + [SMALL_STATE(4684)] = 168442, + [SMALL_STATE(4685)] = 168468, + [SMALL_STATE(4686)] = 168490, + [SMALL_STATE(4687)] = 168518, + [SMALL_STATE(4688)] = 168546, + [SMALL_STATE(4689)] = 168568, + [SMALL_STATE(4690)] = 168596, + [SMALL_STATE(4691)] = 168614, + [SMALL_STATE(4692)] = 168642, + [SMALL_STATE(4693)] = 168664, + [SMALL_STATE(4694)] = 168692, + [SMALL_STATE(4695)] = 168720, + [SMALL_STATE(4696)] = 168748, + [SMALL_STATE(4697)] = 168776, + [SMALL_STATE(4698)] = 168804, + [SMALL_STATE(4699)] = 168832, + [SMALL_STATE(4700)] = 168854, + [SMALL_STATE(4701)] = 168876, + [SMALL_STATE(4702)] = 168904, + [SMALL_STATE(4703)] = 168932, + [SMALL_STATE(4704)] = 168960, + [SMALL_STATE(4705)] = 168982, + [SMALL_STATE(4706)] = 169004, + [SMALL_STATE(4707)] = 169026, + [SMALL_STATE(4708)] = 169050, + [SMALL_STATE(4709)] = 169072, + [SMALL_STATE(4710)] = 169094, + [SMALL_STATE(4711)] = 169116, + [SMALL_STATE(4712)] = 169144, + [SMALL_STATE(4713)] = 169166, + [SMALL_STATE(4714)] = 169194, + [SMALL_STATE(4715)] = 169216, + [SMALL_STATE(4716)] = 169238, + [SMALL_STATE(4717)] = 169260, + [SMALL_STATE(4718)] = 169278, + [SMALL_STATE(4719)] = 169300, + [SMALL_STATE(4720)] = 169322, + [SMALL_STATE(4721)] = 169340, + [SMALL_STATE(4722)] = 169368, + [SMALL_STATE(4723)] = 169396, + [SMALL_STATE(4724)] = 169424, + [SMALL_STATE(4725)] = 169452, + [SMALL_STATE(4726)] = 169474, + [SMALL_STATE(4727)] = 169500, + [SMALL_STATE(4728)] = 169522, + [SMALL_STATE(4729)] = 169544, + [SMALL_STATE(4730)] = 169566, + [SMALL_STATE(4731)] = 169594, + [SMALL_STATE(4732)] = 169622, + [SMALL_STATE(4733)] = 169650, + [SMALL_STATE(4734)] = 169678, + [SMALL_STATE(4735)] = 169704, + [SMALL_STATE(4736)] = 169730, + [SMALL_STATE(4737)] = 169758, + [SMALL_STATE(4738)] = 169786, + [SMALL_STATE(4739)] = 169814, + [SMALL_STATE(4740)] = 169836, + [SMALL_STATE(4741)] = 169864, + [SMALL_STATE(4742)] = 169892, + [SMALL_STATE(4743)] = 169918, + [SMALL_STATE(4744)] = 169940, + [SMALL_STATE(4745)] = 169962, + [SMALL_STATE(4746)] = 169984, + [SMALL_STATE(4747)] = 170012, + [SMALL_STATE(4748)] = 170040, + [SMALL_STATE(4749)] = 170066, + [SMALL_STATE(4750)] = 170084, + [SMALL_STATE(4751)] = 170106, + [SMALL_STATE(4752)] = 170128, + [SMALL_STATE(4753)] = 170150, + [SMALL_STATE(4754)] = 170168, + [SMALL_STATE(4755)] = 170194, + [SMALL_STATE(4756)] = 170216, + [SMALL_STATE(4757)] = 170238, + [SMALL_STATE(4758)] = 170264, + [SMALL_STATE(4759)] = 170284, + [SMALL_STATE(4760)] = 170312, + [SMALL_STATE(4761)] = 170334, + [SMALL_STATE(4762)] = 170356, + [SMALL_STATE(4763)] = 170384, + [SMALL_STATE(4764)] = 170406, + [SMALL_STATE(4765)] = 170434, + [SMALL_STATE(4766)] = 170460, + [SMALL_STATE(4767)] = 170482, + [SMALL_STATE(4768)] = 170504, + [SMALL_STATE(4769)] = 170532, + [SMALL_STATE(4770)] = 170558, + [SMALL_STATE(4771)] = 170586, + [SMALL_STATE(4772)] = 170608, + [SMALL_STATE(4773)] = 170634, + [SMALL_STATE(4774)] = 170662, + [SMALL_STATE(4775)] = 170688, + [SMALL_STATE(4776)] = 170706, + [SMALL_STATE(4777)] = 170730, + [SMALL_STATE(4778)] = 170758, + [SMALL_STATE(4779)] = 170784, + [SMALL_STATE(4780)] = 170810, + [SMALL_STATE(4781)] = 170838, + [SMALL_STATE(4782)] = 170860, + [SMALL_STATE(4783)] = 170888, + [SMALL_STATE(4784)] = 170908, + [SMALL_STATE(4785)] = 170936, + [SMALL_STATE(4786)] = 170964, + [SMALL_STATE(4787)] = 170992, + [SMALL_STATE(4788)] = 171020, + [SMALL_STATE(4789)] = 171038, + [SMALL_STATE(4790)] = 171066, + [SMALL_STATE(4791)] = 171094, + [SMALL_STATE(4792)] = 171122, + [SMALL_STATE(4793)] = 171144, + [SMALL_STATE(4794)] = 171172, + [SMALL_STATE(4795)] = 171200, + [SMALL_STATE(4796)] = 171222, + [SMALL_STATE(4797)] = 171248, + [SMALL_STATE(4798)] = 171276, + [SMALL_STATE(4799)] = 171302, + [SMALL_STATE(4800)] = 171330, + [SMALL_STATE(4801)] = 171356, + [SMALL_STATE(4802)] = 171384, + [SMALL_STATE(4803)] = 171406, + [SMALL_STATE(4804)] = 171434, + [SMALL_STATE(4805)] = 171462, + [SMALL_STATE(4806)] = 171484, + [SMALL_STATE(4807)] = 171502, + [SMALL_STATE(4808)] = 171530, + [SMALL_STATE(4809)] = 171558, + [SMALL_STATE(4810)] = 171586, + [SMALL_STATE(4811)] = 171608, + [SMALL_STATE(4812)] = 171636, + [SMALL_STATE(4813)] = 171656, + [SMALL_STATE(4814)] = 171684, + [SMALL_STATE(4815)] = 171706, + [SMALL_STATE(4816)] = 171734, + [SMALL_STATE(4817)] = 171756, + [SMALL_STATE(4818)] = 171778, + [SMALL_STATE(4819)] = 171804, + [SMALL_STATE(4820)] = 171822, + [SMALL_STATE(4821)] = 171850, + [SMALL_STATE(4822)] = 171878, + [SMALL_STATE(4823)] = 171906, + [SMALL_STATE(4824)] = 171924, + [SMALL_STATE(4825)] = 171952, + [SMALL_STATE(4826)] = 171974, + [SMALL_STATE(4827)] = 172002, + [SMALL_STATE(4828)] = 172024, + [SMALL_STATE(4829)] = 172052, + [SMALL_STATE(4830)] = 172080, + [SMALL_STATE(4831)] = 172108, + [SMALL_STATE(4832)] = 172128, + [SMALL_STATE(4833)] = 172156, + [SMALL_STATE(4834)] = 172178, + [SMALL_STATE(4835)] = 172196, + [SMALL_STATE(4836)] = 172222, + [SMALL_STATE(4837)] = 172250, + [SMALL_STATE(4838)] = 172268, + [SMALL_STATE(4839)] = 172288, + [SMALL_STATE(4840)] = 172314, + [SMALL_STATE(4841)] = 172334, + [SMALL_STATE(4842)] = 172354, + [SMALL_STATE(4843)] = 172382, + [SMALL_STATE(4844)] = 172402, + [SMALL_STATE(4845)] = 172430, + [SMALL_STATE(4846)] = 172458, + [SMALL_STATE(4847)] = 172480, + [SMALL_STATE(4848)] = 172498, + [SMALL_STATE(4849)] = 172519, + [SMALL_STATE(4850)] = 172544, + [SMALL_STATE(4851)] = 172561, + [SMALL_STATE(4852)] = 172578, + [SMALL_STATE(4853)] = 172603, + [SMALL_STATE(4854)] = 172628, + [SMALL_STATE(4855)] = 172647, + [SMALL_STATE(4856)] = 172668, + [SMALL_STATE(4857)] = 172689, + [SMALL_STATE(4858)] = 172712, + [SMALL_STATE(4859)] = 172737, + [SMALL_STATE(4860)] = 172760, + [SMALL_STATE(4861)] = 172781, + [SMALL_STATE(4862)] = 172798, + [SMALL_STATE(4863)] = 172823, + [SMALL_STATE(4864)] = 172840, + [SMALL_STATE(4865)] = 172857, + [SMALL_STATE(4866)] = 172878, + [SMALL_STATE(4867)] = 172899, + [SMALL_STATE(4868)] = 172924, + [SMALL_STATE(4869)] = 172941, + [SMALL_STATE(4870)] = 172958, + [SMALL_STATE(4871)] = 172975, + [SMALL_STATE(4872)] = 172992, + [SMALL_STATE(4873)] = 173017, + [SMALL_STATE(4874)] = 173034, + [SMALL_STATE(4875)] = 173051, + [SMALL_STATE(4876)] = 173074, + [SMALL_STATE(4877)] = 173091, + [SMALL_STATE(4878)] = 173108, + [SMALL_STATE(4879)] = 173129, + [SMALL_STATE(4880)] = 173150, + [SMALL_STATE(4881)] = 173173, + [SMALL_STATE(4882)] = 173190, + [SMALL_STATE(4883)] = 173207, + [SMALL_STATE(4884)] = 173224, + [SMALL_STATE(4885)] = 173241, + [SMALL_STATE(4886)] = 173262, + [SMALL_STATE(4887)] = 173279, + [SMALL_STATE(4888)] = 173300, + [SMALL_STATE(4889)] = 173317, + [SMALL_STATE(4890)] = 173342, + [SMALL_STATE(4891)] = 173361, + [SMALL_STATE(4892)] = 173378, + [SMALL_STATE(4893)] = 173399, + [SMALL_STATE(4894)] = 173420, + [SMALL_STATE(4895)] = 173437, + [SMALL_STATE(4896)] = 173454, + [SMALL_STATE(4897)] = 173475, + [SMALL_STATE(4898)] = 173496, + [SMALL_STATE(4899)] = 173513, + [SMALL_STATE(4900)] = 173530, + [SMALL_STATE(4901)] = 173547, + [SMALL_STATE(4902)] = 173564, + [SMALL_STATE(4903)] = 173589, + [SMALL_STATE(4904)] = 173606, + [SMALL_STATE(4905)] = 173627, + [SMALL_STATE(4906)] = 173644, + [SMALL_STATE(4907)] = 173661, + [SMALL_STATE(4908)] = 173678, + [SMALL_STATE(4909)] = 173695, + [SMALL_STATE(4910)] = 173712, + [SMALL_STATE(4911)] = 173729, + [SMALL_STATE(4912)] = 173750, + [SMALL_STATE(4913)] = 173771, + [SMALL_STATE(4914)] = 173788, + [SMALL_STATE(4915)] = 173813, + [SMALL_STATE(4916)] = 173838, + [SMALL_STATE(4917)] = 173859, + [SMALL_STATE(4918)] = 173876, + [SMALL_STATE(4919)] = 173893, + [SMALL_STATE(4920)] = 173910, + [SMALL_STATE(4921)] = 173927, + [SMALL_STATE(4922)] = 173948, + [SMALL_STATE(4923)] = 173965, + [SMALL_STATE(4924)] = 173982, + [SMALL_STATE(4925)] = 173999, + [SMALL_STATE(4926)] = 174016, + [SMALL_STATE(4927)] = 174033, + [SMALL_STATE(4928)] = 174050, + [SMALL_STATE(4929)] = 174067, + [SMALL_STATE(4930)] = 174084, + [SMALL_STATE(4931)] = 174101, + [SMALL_STATE(4932)] = 174118, + [SMALL_STATE(4933)] = 174135, + [SMALL_STATE(4934)] = 174152, + [SMALL_STATE(4935)] = 174169, + [SMALL_STATE(4936)] = 174186, + [SMALL_STATE(4937)] = 174203, + [SMALL_STATE(4938)] = 174224, + [SMALL_STATE(4939)] = 174245, + [SMALL_STATE(4940)] = 174262, + [SMALL_STATE(4941)] = 174283, + [SMALL_STATE(4942)] = 174304, + [SMALL_STATE(4943)] = 174321, + [SMALL_STATE(4944)] = 174338, + [SMALL_STATE(4945)] = 174355, + [SMALL_STATE(4946)] = 174372, + [SMALL_STATE(4947)] = 174389, + [SMALL_STATE(4948)] = 174410, + [SMALL_STATE(4949)] = 174431, + [SMALL_STATE(4950)] = 174448, + [SMALL_STATE(4951)] = 174465, + [SMALL_STATE(4952)] = 174486, + [SMALL_STATE(4953)] = 174507, + [SMALL_STATE(4954)] = 174524, + [SMALL_STATE(4955)] = 174549, + [SMALL_STATE(4956)] = 174574, + [SMALL_STATE(4957)] = 174591, + [SMALL_STATE(4958)] = 174616, + [SMALL_STATE(4959)] = 174637, + [SMALL_STATE(4960)] = 174654, + [SMALL_STATE(4961)] = 174671, + [SMALL_STATE(4962)] = 174696, + [SMALL_STATE(4963)] = 174717, + [SMALL_STATE(4964)] = 174734, + [SMALL_STATE(4965)] = 174759, + [SMALL_STATE(4966)] = 174776, + [SMALL_STATE(4967)] = 174797, + [SMALL_STATE(4968)] = 174814, + [SMALL_STATE(4969)] = 174831, + [SMALL_STATE(4970)] = 174854, + [SMALL_STATE(4971)] = 174875, + [SMALL_STATE(4972)] = 174900, + [SMALL_STATE(4973)] = 174919, + [SMALL_STATE(4974)] = 174944, + [SMALL_STATE(4975)] = 174965, + [SMALL_STATE(4976)] = 174986, + [SMALL_STATE(4977)] = 175003, + [SMALL_STATE(4978)] = 175020, + [SMALL_STATE(4979)] = 175045, + [SMALL_STATE(4980)] = 175062, + [SMALL_STATE(4981)] = 175083, + [SMALL_STATE(4982)] = 175108, + [SMALL_STATE(4983)] = 175129, + [SMALL_STATE(4984)] = 175154, + [SMALL_STATE(4985)] = 175175, + [SMALL_STATE(4986)] = 175192, + [SMALL_STATE(4987)] = 175209, + [SMALL_STATE(4988)] = 175226, + [SMALL_STATE(4989)] = 175243, + [SMALL_STATE(4990)] = 175260, + [SMALL_STATE(4991)] = 175277, + [SMALL_STATE(4992)] = 175294, + [SMALL_STATE(4993)] = 175311, + [SMALL_STATE(4994)] = 175332, + [SMALL_STATE(4995)] = 175353, + [SMALL_STATE(4996)] = 175370, + [SMALL_STATE(4997)] = 175387, + [SMALL_STATE(4998)] = 175408, + [SMALL_STATE(4999)] = 175427, + [SMALL_STATE(5000)] = 175452, + [SMALL_STATE(5001)] = 175477, + [SMALL_STATE(5002)] = 175494, + [SMALL_STATE(5003)] = 175515, + [SMALL_STATE(5004)] = 175536, + [SMALL_STATE(5005)] = 175557, + [SMALL_STATE(5006)] = 175582, + [SMALL_STATE(5007)] = 175603, + [SMALL_STATE(5008)] = 175624, + [SMALL_STATE(5009)] = 175649, + [SMALL_STATE(5010)] = 175674, + [SMALL_STATE(5011)] = 175699, + [SMALL_STATE(5012)] = 175716, + [SMALL_STATE(5013)] = 175737, + [SMALL_STATE(5014)] = 175758, + [SMALL_STATE(5015)] = 175775, + [SMALL_STATE(5016)] = 175800, + [SMALL_STATE(5017)] = 175825, + [SMALL_STATE(5018)] = 175846, + [SMALL_STATE(5019)] = 175871, + [SMALL_STATE(5020)] = 175892, + [SMALL_STATE(5021)] = 175913, + [SMALL_STATE(5022)] = 175934, + [SMALL_STATE(5023)] = 175951, + [SMALL_STATE(5024)] = 175976, + [SMALL_STATE(5025)] = 176001, + [SMALL_STATE(5026)] = 176026, + [SMALL_STATE(5027)] = 176049, + [SMALL_STATE(5028)] = 176070, + [SMALL_STATE(5029)] = 176095, + [SMALL_STATE(5030)] = 176120, + [SMALL_STATE(5031)] = 176141, + [SMALL_STATE(5032)] = 176166, + [SMALL_STATE(5033)] = 176191, + [SMALL_STATE(5034)] = 176216, + [SMALL_STATE(5035)] = 176239, + [SMALL_STATE(5036)] = 176264, + [SMALL_STATE(5037)] = 176289, + [SMALL_STATE(5038)] = 176314, + [SMALL_STATE(5039)] = 176339, + [SMALL_STATE(5040)] = 176364, + [SMALL_STATE(5041)] = 176389, + [SMALL_STATE(5042)] = 176414, + [SMALL_STATE(5043)] = 176439, + [SMALL_STATE(5044)] = 176464, + [SMALL_STATE(5045)] = 176489, + [SMALL_STATE(5046)] = 176514, + [SMALL_STATE(5047)] = 176539, + [SMALL_STATE(5048)] = 176560, + [SMALL_STATE(5049)] = 176581, + [SMALL_STATE(5050)] = 176602, + [SMALL_STATE(5051)] = 176627, + [SMALL_STATE(5052)] = 176648, + [SMALL_STATE(5053)] = 176673, + [SMALL_STATE(5054)] = 176694, + [SMALL_STATE(5055)] = 176719, + [SMALL_STATE(5056)] = 176744, + [SMALL_STATE(5057)] = 176769, + [SMALL_STATE(5058)] = 176794, + [SMALL_STATE(5059)] = 176819, + [SMALL_STATE(5060)] = 176840, + [SMALL_STATE(5061)] = 176865, + [SMALL_STATE(5062)] = 176890, + [SMALL_STATE(5063)] = 176915, + [SMALL_STATE(5064)] = 176940, + [SMALL_STATE(5065)] = 176961, + [SMALL_STATE(5066)] = 176986, + [SMALL_STATE(5067)] = 177011, + [SMALL_STATE(5068)] = 177028, + [SMALL_STATE(5069)] = 177049, + [SMALL_STATE(5070)] = 177066, + [SMALL_STATE(5071)] = 177083, + [SMALL_STATE(5072)] = 177100, + [SMALL_STATE(5073)] = 177121, + [SMALL_STATE(5074)] = 177146, + [SMALL_STATE(5075)] = 177171, + [SMALL_STATE(5076)] = 177194, + [SMALL_STATE(5077)] = 177219, + [SMALL_STATE(5078)] = 177244, + [SMALL_STATE(5079)] = 177269, + [SMALL_STATE(5080)] = 177294, + [SMALL_STATE(5081)] = 177315, + [SMALL_STATE(5082)] = 177340, + [SMALL_STATE(5083)] = 177365, + [SMALL_STATE(5084)] = 177386, + [SMALL_STATE(5085)] = 177407, + [SMALL_STATE(5086)] = 177432, + [SMALL_STATE(5087)] = 177457, + [SMALL_STATE(5088)] = 177482, + [SMALL_STATE(5089)] = 177507, + [SMALL_STATE(5090)] = 177532, + [SMALL_STATE(5091)] = 177553, + [SMALL_STATE(5092)] = 177570, + [SMALL_STATE(5093)] = 177587, + [SMALL_STATE(5094)] = 177610, + [SMALL_STATE(5095)] = 177635, + [SMALL_STATE(5096)] = 177652, + [SMALL_STATE(5097)] = 177673, + [SMALL_STATE(5098)] = 177694, + [SMALL_STATE(5099)] = 177715, + [SMALL_STATE(5100)] = 177736, + [SMALL_STATE(5101)] = 177759, + [SMALL_STATE(5102)] = 177780, + [SMALL_STATE(5103)] = 177801, + [SMALL_STATE(5104)] = 177822, + [SMALL_STATE(5105)] = 177845, + [SMALL_STATE(5106)] = 177868, + [SMALL_STATE(5107)] = 177891, + [SMALL_STATE(5108)] = 177914, + [SMALL_STATE(5109)] = 177935, + [SMALL_STATE(5110)] = 177956, + [SMALL_STATE(5111)] = 177973, + [SMALL_STATE(5112)] = 177994, + [SMALL_STATE(5113)] = 178019, + [SMALL_STATE(5114)] = 178040, + [SMALL_STATE(5115)] = 178061, + [SMALL_STATE(5116)] = 178086, + [SMALL_STATE(5117)] = 178111, + [SMALL_STATE(5118)] = 178136, + [SMALL_STATE(5119)] = 178161, + [SMALL_STATE(5120)] = 178184, + [SMALL_STATE(5121)] = 178209, + [SMALL_STATE(5122)] = 178234, + [SMALL_STATE(5123)] = 178259, + [SMALL_STATE(5124)] = 178284, + [SMALL_STATE(5125)] = 178309, + [SMALL_STATE(5126)] = 178334, + [SMALL_STATE(5127)] = 178355, + [SMALL_STATE(5128)] = 178376, + [SMALL_STATE(5129)] = 178401, + [SMALL_STATE(5130)] = 178426, + [SMALL_STATE(5131)] = 178451, + [SMALL_STATE(5132)] = 178476, + [SMALL_STATE(5133)] = 178493, + [SMALL_STATE(5134)] = 178518, + [SMALL_STATE(5135)] = 178539, + [SMALL_STATE(5136)] = 178560, + [SMALL_STATE(5137)] = 178577, + [SMALL_STATE(5138)] = 178594, + [SMALL_STATE(5139)] = 178611, + [SMALL_STATE(5140)] = 178628, + [SMALL_STATE(5141)] = 178645, + [SMALL_STATE(5142)] = 178670, + [SMALL_STATE(5143)] = 178691, + [SMALL_STATE(5144)] = 178716, + [SMALL_STATE(5145)] = 178737, + [SMALL_STATE(5146)] = 178760, + [SMALL_STATE(5147)] = 178781, + [SMALL_STATE(5148)] = 178806, + [SMALL_STATE(5149)] = 178829, + [SMALL_STATE(5150)] = 178854, + [SMALL_STATE(5151)] = 178871, + [SMALL_STATE(5152)] = 178888, + [SMALL_STATE(5153)] = 178905, + [SMALL_STATE(5154)] = 178930, + [SMALL_STATE(5155)] = 178947, + [SMALL_STATE(5156)] = 178964, + [SMALL_STATE(5157)] = 178981, + [SMALL_STATE(5158)] = 178998, + [SMALL_STATE(5159)] = 179019, + [SMALL_STATE(5160)] = 179036, + [SMALL_STATE(5161)] = 179053, + [SMALL_STATE(5162)] = 179070, + [SMALL_STATE(5163)] = 179095, + [SMALL_STATE(5164)] = 179112, + [SMALL_STATE(5165)] = 179137, + [SMALL_STATE(5166)] = 179154, + [SMALL_STATE(5167)] = 179179, + [SMALL_STATE(5168)] = 179200, + [SMALL_STATE(5169)] = 179225, + [SMALL_STATE(5170)] = 179250, + [SMALL_STATE(5171)] = 179267, + [SMALL_STATE(5172)] = 179292, + [SMALL_STATE(5173)] = 179317, + [SMALL_STATE(5174)] = 179342, + [SMALL_STATE(5175)] = 179363, + [SMALL_STATE(5176)] = 179388, + [SMALL_STATE(5177)] = 179409, + [SMALL_STATE(5178)] = 179434, + [SMALL_STATE(5179)] = 179459, + [SMALL_STATE(5180)] = 179484, + [SMALL_STATE(5181)] = 179505, + [SMALL_STATE(5182)] = 179530, + [SMALL_STATE(5183)] = 179555, + [SMALL_STATE(5184)] = 179580, + [SMALL_STATE(5185)] = 179601, + [SMALL_STATE(5186)] = 179622, + [SMALL_STATE(5187)] = 179647, + [SMALL_STATE(5188)] = 179668, + [SMALL_STATE(5189)] = 179689, + [SMALL_STATE(5190)] = 179710, + [SMALL_STATE(5191)] = 179735, + [SMALL_STATE(5192)] = 179756, + [SMALL_STATE(5193)] = 179781, + [SMALL_STATE(5194)] = 179806, + [SMALL_STATE(5195)] = 179831, + [SMALL_STATE(5196)] = 179852, + [SMALL_STATE(5197)] = 179873, + [SMALL_STATE(5198)] = 179890, + [SMALL_STATE(5199)] = 179915, + [SMALL_STATE(5200)] = 179932, + [SMALL_STATE(5201)] = 179953, + [SMALL_STATE(5202)] = 179974, + [SMALL_STATE(5203)] = 179999, + [SMALL_STATE(5204)] = 180024, + [SMALL_STATE(5205)] = 180041, + [SMALL_STATE(5206)] = 180066, + [SMALL_STATE(5207)] = 180091, + [SMALL_STATE(5208)] = 180108, + [SMALL_STATE(5209)] = 180125, + [SMALL_STATE(5210)] = 180142, + [SMALL_STATE(5211)] = 180159, + [SMALL_STATE(5212)] = 180184, + [SMALL_STATE(5213)] = 180201, + [SMALL_STATE(5214)] = 180218, + [SMALL_STATE(5215)] = 180235, + [SMALL_STATE(5216)] = 180260, + [SMALL_STATE(5217)] = 180277, + [SMALL_STATE(5218)] = 180302, + [SMALL_STATE(5219)] = 180327, + [SMALL_STATE(5220)] = 180350, + [SMALL_STATE(5221)] = 180371, + [SMALL_STATE(5222)] = 180394, + [SMALL_STATE(5223)] = 180417, + [SMALL_STATE(5224)] = 180438, + [SMALL_STATE(5225)] = 180459, + [SMALL_STATE(5226)] = 180480, + [SMALL_STATE(5227)] = 180505, + [SMALL_STATE(5228)] = 180530, + [SMALL_STATE(5229)] = 180551, + [SMALL_STATE(5230)] = 180572, + [SMALL_STATE(5231)] = 180597, + [SMALL_STATE(5232)] = 180618, + [SMALL_STATE(5233)] = 180639, + [SMALL_STATE(5234)] = 180660, + [SMALL_STATE(5235)] = 180677, + [SMALL_STATE(5236)] = 180702, + [SMALL_STATE(5237)] = 180723, + [SMALL_STATE(5238)] = 180744, + [SMALL_STATE(5239)] = 180765, + [SMALL_STATE(5240)] = 180786, + [SMALL_STATE(5241)] = 180807, + [SMALL_STATE(5242)] = 180828, + [SMALL_STATE(5243)] = 180849, + [SMALL_STATE(5244)] = 180870, + [SMALL_STATE(5245)] = 180891, + [SMALL_STATE(5246)] = 180912, + [SMALL_STATE(5247)] = 180933, + [SMALL_STATE(5248)] = 180954, + [SMALL_STATE(5249)] = 180975, + [SMALL_STATE(5250)] = 180996, + [SMALL_STATE(5251)] = 181017, + [SMALL_STATE(5252)] = 181042, + [SMALL_STATE(5253)] = 181063, + [SMALL_STATE(5254)] = 181084, + [SMALL_STATE(5255)] = 181105, + [SMALL_STATE(5256)] = 181126, + [SMALL_STATE(5257)] = 181147, + [SMALL_STATE(5258)] = 181172, + [SMALL_STATE(5259)] = 181193, + [SMALL_STATE(5260)] = 181218, + [SMALL_STATE(5261)] = 181239, + [SMALL_STATE(5262)] = 181260, + [SMALL_STATE(5263)] = 181281, + [SMALL_STATE(5264)] = 181302, + [SMALL_STATE(5265)] = 181323, + [SMALL_STATE(5266)] = 181348, + [SMALL_STATE(5267)] = 181373, + [SMALL_STATE(5268)] = 181390, + [SMALL_STATE(5269)] = 181411, + [SMALL_STATE(5270)] = 181436, + [SMALL_STATE(5271)] = 181457, + [SMALL_STATE(5272)] = 181480, + [SMALL_STATE(5273)] = 181501, + [SMALL_STATE(5274)] = 181522, + [SMALL_STATE(5275)] = 181543, + [SMALL_STATE(5276)] = 181564, + [SMALL_STATE(5277)] = 181585, + [SMALL_STATE(5278)] = 181606, + [SMALL_STATE(5279)] = 181631, + [SMALL_STATE(5280)] = 181654, + [SMALL_STATE(5281)] = 181671, + [SMALL_STATE(5282)] = 181688, + [SMALL_STATE(5283)] = 181709, + [SMALL_STATE(5284)] = 181730, + [SMALL_STATE(5285)] = 181751, + [SMALL_STATE(5286)] = 181772, + [SMALL_STATE(5287)] = 181797, + [SMALL_STATE(5288)] = 181818, + [SMALL_STATE(5289)] = 181839, + [SMALL_STATE(5290)] = 181860, + [SMALL_STATE(5291)] = 181885, + [SMALL_STATE(5292)] = 181902, + [SMALL_STATE(5293)] = 181927, + [SMALL_STATE(5294)] = 181944, + [SMALL_STATE(5295)] = 181969, + [SMALL_STATE(5296)] = 181986, + [SMALL_STATE(5297)] = 182003, + [SMALL_STATE(5298)] = 182028, + [SMALL_STATE(5299)] = 182045, + [SMALL_STATE(5300)] = 182062, + [SMALL_STATE(5301)] = 182079, + [SMALL_STATE(5302)] = 182104, + [SMALL_STATE(5303)] = 182125, + [SMALL_STATE(5304)] = 182146, + [SMALL_STATE(5305)] = 182163, + [SMALL_STATE(5306)] = 182188, + [SMALL_STATE(5307)] = 182209, + [SMALL_STATE(5308)] = 182226, + [SMALL_STATE(5309)] = 182251, + [SMALL_STATE(5310)] = 182272, + [SMALL_STATE(5311)] = 182295, + [SMALL_STATE(5312)] = 182316, + [SMALL_STATE(5313)] = 182333, + [SMALL_STATE(5314)] = 182350, + [SMALL_STATE(5315)] = 182367, + [SMALL_STATE(5316)] = 182392, + [SMALL_STATE(5317)] = 182413, + [SMALL_STATE(5318)] = 182434, + [SMALL_STATE(5319)] = 182459, + [SMALL_STATE(5320)] = 182480, + [SMALL_STATE(5321)] = 182501, + [SMALL_STATE(5322)] = 182518, + [SMALL_STATE(5323)] = 182535, + [SMALL_STATE(5324)] = 182560, + [SMALL_STATE(5325)] = 182581, + [SMALL_STATE(5326)] = 182602, + [SMALL_STATE(5327)] = 182623, + [SMALL_STATE(5328)] = 182640, + [SMALL_STATE(5329)] = 182663, + [SMALL_STATE(5330)] = 182684, + [SMALL_STATE(5331)] = 182705, + [SMALL_STATE(5332)] = 182726, + [SMALL_STATE(5333)] = 182747, + [SMALL_STATE(5334)] = 182768, + [SMALL_STATE(5335)] = 182789, + [SMALL_STATE(5336)] = 182810, + [SMALL_STATE(5337)] = 182833, + [SMALL_STATE(5338)] = 182854, + [SMALL_STATE(5339)] = 182875, + [SMALL_STATE(5340)] = 182894, + [SMALL_STATE(5341)] = 182917, + [SMALL_STATE(5342)] = 182934, + [SMALL_STATE(5343)] = 182953, + [SMALL_STATE(5344)] = 182972, + [SMALL_STATE(5345)] = 182997, + [SMALL_STATE(5346)] = 183016, + [SMALL_STATE(5347)] = 183037, + [SMALL_STATE(5348)] = 183058, + [SMALL_STATE(5349)] = 183083, + [SMALL_STATE(5350)] = 183104, + [SMALL_STATE(5351)] = 183125, + [SMALL_STATE(5352)] = 183146, + [SMALL_STATE(5353)] = 183167, + [SMALL_STATE(5354)] = 183192, + [SMALL_STATE(5355)] = 183213, + [SMALL_STATE(5356)] = 183236, + [SMALL_STATE(5357)] = 183257, + [SMALL_STATE(5358)] = 183278, + [SMALL_STATE(5359)] = 183303, + [SMALL_STATE(5360)] = 183324, + [SMALL_STATE(5361)] = 183349, + [SMALL_STATE(5362)] = 183370, + [SMALL_STATE(5363)] = 183391, + [SMALL_STATE(5364)] = 183412, + [SMALL_STATE(5365)] = 183433, + [SMALL_STATE(5366)] = 183458, + [SMALL_STATE(5367)] = 183479, + [SMALL_STATE(5368)] = 183500, + [SMALL_STATE(5369)] = 183521, + [SMALL_STATE(5370)] = 183542, + [SMALL_STATE(5371)] = 183563, + [SMALL_STATE(5372)] = 183584, + [SMALL_STATE(5373)] = 183605, + [SMALL_STATE(5374)] = 183626, + [SMALL_STATE(5375)] = 183647, + [SMALL_STATE(5376)] = 183669, + [SMALL_STATE(5377)] = 183689, + [SMALL_STATE(5378)] = 183709, + [SMALL_STATE(5379)] = 183729, + [SMALL_STATE(5380)] = 183749, + [SMALL_STATE(5381)] = 183769, + [SMALL_STATE(5382)] = 183789, + [SMALL_STATE(5383)] = 183809, + [SMALL_STATE(5384)] = 183829, + [SMALL_STATE(5385)] = 183849, + [SMALL_STATE(5386)] = 183869, + [SMALL_STATE(5387)] = 183889, + [SMALL_STATE(5388)] = 183909, + [SMALL_STATE(5389)] = 183929, + [SMALL_STATE(5390)] = 183949, + [SMALL_STATE(5391)] = 183969, + [SMALL_STATE(5392)] = 183989, + [SMALL_STATE(5393)] = 184009, + [SMALL_STATE(5394)] = 184029, + [SMALL_STATE(5395)] = 184051, + [SMALL_STATE(5396)] = 184073, + [SMALL_STATE(5397)] = 184093, + [SMALL_STATE(5398)] = 184113, + [SMALL_STATE(5399)] = 184135, + [SMALL_STATE(5400)] = 184157, + [SMALL_STATE(5401)] = 184179, + [SMALL_STATE(5402)] = 184199, + [SMALL_STATE(5403)] = 184219, + [SMALL_STATE(5404)] = 184239, + [SMALL_STATE(5405)] = 184261, + [SMALL_STATE(5406)] = 184281, + [SMALL_STATE(5407)] = 184303, + [SMALL_STATE(5408)] = 184323, + [SMALL_STATE(5409)] = 184343, + [SMALL_STATE(5410)] = 184363, + [SMALL_STATE(5411)] = 184383, + [SMALL_STATE(5412)] = 184403, + [SMALL_STATE(5413)] = 184423, + [SMALL_STATE(5414)] = 184445, + [SMALL_STATE(5415)] = 184465, + [SMALL_STATE(5416)] = 184485, + [SMALL_STATE(5417)] = 184505, + [SMALL_STATE(5418)] = 184527, + [SMALL_STATE(5419)] = 184547, + [SMALL_STATE(5420)] = 184567, + [SMALL_STATE(5421)] = 184587, + [SMALL_STATE(5422)] = 184607, + [SMALL_STATE(5423)] = 184627, + [SMALL_STATE(5424)] = 184647, + [SMALL_STATE(5425)] = 184667, + [SMALL_STATE(5426)] = 184687, + [SMALL_STATE(5427)] = 184707, + [SMALL_STATE(5428)] = 184727, + [SMALL_STATE(5429)] = 184747, + [SMALL_STATE(5430)] = 184767, + [SMALL_STATE(5431)] = 184787, + [SMALL_STATE(5432)] = 184809, + [SMALL_STATE(5433)] = 184829, + [SMALL_STATE(5434)] = 184849, + [SMALL_STATE(5435)] = 184869, + [SMALL_STATE(5436)] = 184891, + [SMALL_STATE(5437)] = 184911, + [SMALL_STATE(5438)] = 184933, + [SMALL_STATE(5439)] = 184953, + [SMALL_STATE(5440)] = 184973, + [SMALL_STATE(5441)] = 184993, + [SMALL_STATE(5442)] = 185013, + [SMALL_STATE(5443)] = 185035, + [SMALL_STATE(5444)] = 185057, + [SMALL_STATE(5445)] = 185077, + [SMALL_STATE(5446)] = 185097, + [SMALL_STATE(5447)] = 185119, + [SMALL_STATE(5448)] = 185141, + [SMALL_STATE(5449)] = 185161, + [SMALL_STATE(5450)] = 185181, + [SMALL_STATE(5451)] = 185201, + [SMALL_STATE(5452)] = 185223, + [SMALL_STATE(5453)] = 185245, + [SMALL_STATE(5454)] = 185267, + [SMALL_STATE(5455)] = 185289, + [SMALL_STATE(5456)] = 185311, + [SMALL_STATE(5457)] = 185329, + [SMALL_STATE(5458)] = 185351, + [SMALL_STATE(5459)] = 185373, + [SMALL_STATE(5460)] = 185395, + [SMALL_STATE(5461)] = 185417, + [SMALL_STATE(5462)] = 185439, + [SMALL_STATE(5463)] = 185461, + [SMALL_STATE(5464)] = 185483, + [SMALL_STATE(5465)] = 185501, + [SMALL_STATE(5466)] = 185521, + [SMALL_STATE(5467)] = 185543, + [SMALL_STATE(5468)] = 185565, + [SMALL_STATE(5469)] = 185585, + [SMALL_STATE(5470)] = 185605, + [SMALL_STATE(5471)] = 185627, + [SMALL_STATE(5472)] = 185647, + [SMALL_STATE(5473)] = 185667, + [SMALL_STATE(5474)] = 185687, + [SMALL_STATE(5475)] = 185707, + [SMALL_STATE(5476)] = 185729, + [SMALL_STATE(5477)] = 185745, + [SMALL_STATE(5478)] = 185765, + [SMALL_STATE(5479)] = 185781, + [SMALL_STATE(5480)] = 185801, + [SMALL_STATE(5481)] = 185823, + [SMALL_STATE(5482)] = 185845, + [SMALL_STATE(5483)] = 185865, + [SMALL_STATE(5484)] = 185885, + [SMALL_STATE(5485)] = 185907, + [SMALL_STATE(5486)] = 185929, + [SMALL_STATE(5487)] = 185947, + [SMALL_STATE(5488)] = 185965, + [SMALL_STATE(5489)] = 185985, + [SMALL_STATE(5490)] = 186005, + [SMALL_STATE(5491)] = 186027, + [SMALL_STATE(5492)] = 186047, + [SMALL_STATE(5493)] = 186069, + [SMALL_STATE(5494)] = 186089, + [SMALL_STATE(5495)] = 186109, + [SMALL_STATE(5496)] = 186131, + [SMALL_STATE(5497)] = 186153, + [SMALL_STATE(5498)] = 186175, + [SMALL_STATE(5499)] = 186197, + [SMALL_STATE(5500)] = 186219, + [SMALL_STATE(5501)] = 186239, + [SMALL_STATE(5502)] = 186259, + [SMALL_STATE(5503)] = 186277, + [SMALL_STATE(5504)] = 186299, + [SMALL_STATE(5505)] = 186321, + [SMALL_STATE(5506)] = 186343, + [SMALL_STATE(5507)] = 186363, + [SMALL_STATE(5508)] = 186383, + [SMALL_STATE(5509)] = 186405, + [SMALL_STATE(5510)] = 186427, + [SMALL_STATE(5511)] = 186449, + [SMALL_STATE(5512)] = 186469, + [SMALL_STATE(5513)] = 186489, + [SMALL_STATE(5514)] = 186509, + [SMALL_STATE(5515)] = 186529, + [SMALL_STATE(5516)] = 186551, + [SMALL_STATE(5517)] = 186573, + [SMALL_STATE(5518)] = 186591, + [SMALL_STATE(5519)] = 186613, + [SMALL_STATE(5520)] = 186629, + [SMALL_STATE(5521)] = 186651, + [SMALL_STATE(5522)] = 186673, + [SMALL_STATE(5523)] = 186695, + [SMALL_STATE(5524)] = 186715, + [SMALL_STATE(5525)] = 186735, + [SMALL_STATE(5526)] = 186757, + [SMALL_STATE(5527)] = 186779, + [SMALL_STATE(5528)] = 186801, + [SMALL_STATE(5529)] = 186823, + [SMALL_STATE(5530)] = 186843, + [SMALL_STATE(5531)] = 186859, + [SMALL_STATE(5532)] = 186881, + [SMALL_STATE(5533)] = 186903, + [SMALL_STATE(5534)] = 186921, + [SMALL_STATE(5535)] = 186941, + [SMALL_STATE(5536)] = 186961, + [SMALL_STATE(5537)] = 186979, + [SMALL_STATE(5538)] = 187001, + [SMALL_STATE(5539)] = 187021, + [SMALL_STATE(5540)] = 187041, + [SMALL_STATE(5541)] = 187061, + [SMALL_STATE(5542)] = 187081, + [SMALL_STATE(5543)] = 187101, + [SMALL_STATE(5544)] = 187121, + [SMALL_STATE(5545)] = 187141, + [SMALL_STATE(5546)] = 187163, + [SMALL_STATE(5547)] = 187185, + [SMALL_STATE(5548)] = 187205, + [SMALL_STATE(5549)] = 187225, + [SMALL_STATE(5550)] = 187245, + [SMALL_STATE(5551)] = 187265, + [SMALL_STATE(5552)] = 187287, + [SMALL_STATE(5553)] = 187305, + [SMALL_STATE(5554)] = 187323, + [SMALL_STATE(5555)] = 187345, + [SMALL_STATE(5556)] = 187365, + [SMALL_STATE(5557)] = 187385, + [SMALL_STATE(5558)] = 187407, + [SMALL_STATE(5559)] = 187423, + [SMALL_STATE(5560)] = 187443, + [SMALL_STATE(5561)] = 187463, + [SMALL_STATE(5562)] = 187483, + [SMALL_STATE(5563)] = 187503, + [SMALL_STATE(5564)] = 187523, + [SMALL_STATE(5565)] = 187545, + [SMALL_STATE(5566)] = 187565, + [SMALL_STATE(5567)] = 187585, + [SMALL_STATE(5568)] = 187605, + [SMALL_STATE(5569)] = 187625, + [SMALL_STATE(5570)] = 187645, + [SMALL_STATE(5571)] = 187665, + [SMALL_STATE(5572)] = 187685, + [SMALL_STATE(5573)] = 187701, + [SMALL_STATE(5574)] = 187717, + [SMALL_STATE(5575)] = 187737, + [SMALL_STATE(5576)] = 187757, + [SMALL_STATE(5577)] = 187777, + [SMALL_STATE(5578)] = 187799, + [SMALL_STATE(5579)] = 187819, + [SMALL_STATE(5580)] = 187841, + [SMALL_STATE(5581)] = 187861, + [SMALL_STATE(5582)] = 187881, + [SMALL_STATE(5583)] = 187901, + [SMALL_STATE(5584)] = 187923, + [SMALL_STATE(5585)] = 187945, + [SMALL_STATE(5586)] = 187965, + [SMALL_STATE(5587)] = 187985, + [SMALL_STATE(5588)] = 188005, + [SMALL_STATE(5589)] = 188025, + [SMALL_STATE(5590)] = 188041, + [SMALL_STATE(5591)] = 188057, + [SMALL_STATE(5592)] = 188079, + [SMALL_STATE(5593)] = 188099, + [SMALL_STATE(5594)] = 188121, + [SMALL_STATE(5595)] = 188143, + [SMALL_STATE(5596)] = 188159, + [SMALL_STATE(5597)] = 188175, + [SMALL_STATE(5598)] = 188197, + [SMALL_STATE(5599)] = 188217, + [SMALL_STATE(5600)] = 188233, + [SMALL_STATE(5601)] = 188255, + [SMALL_STATE(5602)] = 188277, + [SMALL_STATE(5603)] = 188295, + [SMALL_STATE(5604)] = 188315, + [SMALL_STATE(5605)] = 188335, + [SMALL_STATE(5606)] = 188354, + [SMALL_STATE(5607)] = 188369, + [SMALL_STATE(5608)] = 188384, + [SMALL_STATE(5609)] = 188403, + [SMALL_STATE(5610)] = 188422, + [SMALL_STATE(5611)] = 188441, + [SMALL_STATE(5612)] = 188458, + [SMALL_STATE(5613)] = 188473, + [SMALL_STATE(5614)] = 188492, + [SMALL_STATE(5615)] = 188509, + [SMALL_STATE(5616)] = 188524, + [SMALL_STATE(5617)] = 188541, + [SMALL_STATE(5618)] = 188558, + [SMALL_STATE(5619)] = 188577, + [SMALL_STATE(5620)] = 188596, + [SMALL_STATE(5621)] = 188615, + [SMALL_STATE(5622)] = 188632, + [SMALL_STATE(5623)] = 188649, + [SMALL_STATE(5624)] = 188666, + [SMALL_STATE(5625)] = 188683, + [SMALL_STATE(5626)] = 188702, + [SMALL_STATE(5627)] = 188717, + [SMALL_STATE(5628)] = 188734, + [SMALL_STATE(5629)] = 188753, + [SMALL_STATE(5630)] = 188768, + [SMALL_STATE(5631)] = 188787, + [SMALL_STATE(5632)] = 188802, + [SMALL_STATE(5633)] = 188821, + [SMALL_STATE(5634)] = 188840, + [SMALL_STATE(5635)] = 188859, + [SMALL_STATE(5636)] = 188874, + [SMALL_STATE(5637)] = 188891, + [SMALL_STATE(5638)] = 188910, + [SMALL_STATE(5639)] = 188927, + [SMALL_STATE(5640)] = 188944, + [SMALL_STATE(5641)] = 188961, + [SMALL_STATE(5642)] = 188978, + [SMALL_STATE(5643)] = 188995, + [SMALL_STATE(5644)] = 189014, + [SMALL_STATE(5645)] = 189031, + [SMALL_STATE(5646)] = 189050, + [SMALL_STATE(5647)] = 189065, + [SMALL_STATE(5648)] = 189084, + [SMALL_STATE(5649)] = 189103, + [SMALL_STATE(5650)] = 189122, + [SMALL_STATE(5651)] = 189141, + [SMALL_STATE(5652)] = 189156, + [SMALL_STATE(5653)] = 189171, + [SMALL_STATE(5654)] = 189190, + [SMALL_STATE(5655)] = 189209, + [SMALL_STATE(5656)] = 189228, + [SMALL_STATE(5657)] = 189243, + [SMALL_STATE(5658)] = 189258, + [SMALL_STATE(5659)] = 189275, + [SMALL_STATE(5660)] = 189294, + [SMALL_STATE(5661)] = 189313, + [SMALL_STATE(5662)] = 189330, + [SMALL_STATE(5663)] = 189349, + [SMALL_STATE(5664)] = 189368, + [SMALL_STATE(5665)] = 189387, + [SMALL_STATE(5666)] = 189402, + [SMALL_STATE(5667)] = 189419, + [SMALL_STATE(5668)] = 189434, + [SMALL_STATE(5669)] = 189449, + [SMALL_STATE(5670)] = 189464, + [SMALL_STATE(5671)] = 189479, + [SMALL_STATE(5672)] = 189494, + [SMALL_STATE(5673)] = 189509, + [SMALL_STATE(5674)] = 189524, + [SMALL_STATE(5675)] = 189539, + [SMALL_STATE(5676)] = 189556, + [SMALL_STATE(5677)] = 189571, + [SMALL_STATE(5678)] = 189586, + [SMALL_STATE(5679)] = 189601, + [SMALL_STATE(5680)] = 189616, + [SMALL_STATE(5681)] = 189631, + [SMALL_STATE(5682)] = 189650, + [SMALL_STATE(5683)] = 189665, + [SMALL_STATE(5684)] = 189684, + [SMALL_STATE(5685)] = 189699, + [SMALL_STATE(5686)] = 189714, + [SMALL_STATE(5687)] = 189733, + [SMALL_STATE(5688)] = 189748, + [SMALL_STATE(5689)] = 189763, + [SMALL_STATE(5690)] = 189778, + [SMALL_STATE(5691)] = 189793, + [SMALL_STATE(5692)] = 189808, + [SMALL_STATE(5693)] = 189823, + [SMALL_STATE(5694)] = 189838, + [SMALL_STATE(5695)] = 189853, + [SMALL_STATE(5696)] = 189868, + [SMALL_STATE(5697)] = 189883, + [SMALL_STATE(5698)] = 189898, + [SMALL_STATE(5699)] = 189917, + [SMALL_STATE(5700)] = 189932, + [SMALL_STATE(5701)] = 189951, + [SMALL_STATE(5702)] = 189966, + [SMALL_STATE(5703)] = 189985, + [SMALL_STATE(5704)] = 190004, + [SMALL_STATE(5705)] = 190023, + [SMALL_STATE(5706)] = 190042, + [SMALL_STATE(5707)] = 190061, + [SMALL_STATE(5708)] = 190076, + [SMALL_STATE(5709)] = 190091, + [SMALL_STATE(5710)] = 190106, + [SMALL_STATE(5711)] = 190125, + [SMALL_STATE(5712)] = 190144, + [SMALL_STATE(5713)] = 190159, + [SMALL_STATE(5714)] = 190178, + [SMALL_STATE(5715)] = 190195, + [SMALL_STATE(5716)] = 190210, + [SMALL_STATE(5717)] = 190229, + [SMALL_STATE(5718)] = 190244, + [SMALL_STATE(5719)] = 190263, + [SMALL_STATE(5720)] = 190282, + [SMALL_STATE(5721)] = 190297, + [SMALL_STATE(5722)] = 190316, + [SMALL_STATE(5723)] = 190335, + [SMALL_STATE(5724)] = 190350, + [SMALL_STATE(5725)] = 190365, + [SMALL_STATE(5726)] = 190380, + [SMALL_STATE(5727)] = 190399, + [SMALL_STATE(5728)] = 190418, + [SMALL_STATE(5729)] = 190433, + [SMALL_STATE(5730)] = 190448, + [SMALL_STATE(5731)] = 190463, + [SMALL_STATE(5732)] = 190478, + [SMALL_STATE(5733)] = 190495, + [SMALL_STATE(5734)] = 190514, + [SMALL_STATE(5735)] = 190529, + [SMALL_STATE(5736)] = 190544, + [SMALL_STATE(5737)] = 190559, + [SMALL_STATE(5738)] = 190578, + [SMALL_STATE(5739)] = 190597, + [SMALL_STATE(5740)] = 190612, + [SMALL_STATE(5741)] = 190631, + [SMALL_STATE(5742)] = 190650, + [SMALL_STATE(5743)] = 190669, + [SMALL_STATE(5744)] = 190688, + [SMALL_STATE(5745)] = 190703, + [SMALL_STATE(5746)] = 190722, + [SMALL_STATE(5747)] = 190739, + [SMALL_STATE(5748)] = 190758, + [SMALL_STATE(5749)] = 190773, + [SMALL_STATE(5750)] = 190790, + [SMALL_STATE(5751)] = 190805, + [SMALL_STATE(5752)] = 190820, + [SMALL_STATE(5753)] = 190837, + [SMALL_STATE(5754)] = 190852, + [SMALL_STATE(5755)] = 190869, + [SMALL_STATE(5756)] = 190886, + [SMALL_STATE(5757)] = 190901, + [SMALL_STATE(5758)] = 190920, + [SMALL_STATE(5759)] = 190935, + [SMALL_STATE(5760)] = 190950, + [SMALL_STATE(5761)] = 190969, + [SMALL_STATE(5762)] = 190984, + [SMALL_STATE(5763)] = 190999, + [SMALL_STATE(5764)] = 191014, + [SMALL_STATE(5765)] = 191031, + [SMALL_STATE(5766)] = 191046, + [SMALL_STATE(5767)] = 191061, + [SMALL_STATE(5768)] = 191076, + [SMALL_STATE(5769)] = 191095, + [SMALL_STATE(5770)] = 191114, + [SMALL_STATE(5771)] = 191133, + [SMALL_STATE(5772)] = 191148, + [SMALL_STATE(5773)] = 191163, + [SMALL_STATE(5774)] = 191180, + [SMALL_STATE(5775)] = 191195, + [SMALL_STATE(5776)] = 191210, + [SMALL_STATE(5777)] = 191229, + [SMALL_STATE(5778)] = 191248, + [SMALL_STATE(5779)] = 191265, + [SMALL_STATE(5780)] = 191280, + [SMALL_STATE(5781)] = 191295, + [SMALL_STATE(5782)] = 191312, + [SMALL_STATE(5783)] = 191327, + [SMALL_STATE(5784)] = 191342, + [SMALL_STATE(5785)] = 191357, + [SMALL_STATE(5786)] = 191372, + [SMALL_STATE(5787)] = 191387, + [SMALL_STATE(5788)] = 191402, + [SMALL_STATE(5789)] = 191421, + [SMALL_STATE(5790)] = 191436, + [SMALL_STATE(5791)] = 191455, + [SMALL_STATE(5792)] = 191474, + [SMALL_STATE(5793)] = 191489, + [SMALL_STATE(5794)] = 191508, + [SMALL_STATE(5795)] = 191523, + [SMALL_STATE(5796)] = 191538, + [SMALL_STATE(5797)] = 191557, + [SMALL_STATE(5798)] = 191576, + [SMALL_STATE(5799)] = 191595, + [SMALL_STATE(5800)] = 191614, + [SMALL_STATE(5801)] = 191633, + [SMALL_STATE(5802)] = 191648, + [SMALL_STATE(5803)] = 191667, + [SMALL_STATE(5804)] = 191684, + [SMALL_STATE(5805)] = 191703, + [SMALL_STATE(5806)] = 191718, + [SMALL_STATE(5807)] = 191737, + [SMALL_STATE(5808)] = 191756, + [SMALL_STATE(5809)] = 191771, + [SMALL_STATE(5810)] = 191790, + [SMALL_STATE(5811)] = 191805, + [SMALL_STATE(5812)] = 191820, + [SMALL_STATE(5813)] = 191839, + [SMALL_STATE(5814)] = 191854, + [SMALL_STATE(5815)] = 191873, + [SMALL_STATE(5816)] = 191888, + [SMALL_STATE(5817)] = 191907, + [SMALL_STATE(5818)] = 191922, + [SMALL_STATE(5819)] = 191939, + [SMALL_STATE(5820)] = 191958, + [SMALL_STATE(5821)] = 191975, + [SMALL_STATE(5822)] = 191994, + [SMALL_STATE(5823)] = 192009, + [SMALL_STATE(5824)] = 192028, + [SMALL_STATE(5825)] = 192047, + [SMALL_STATE(5826)] = 192062, + [SMALL_STATE(5827)] = 192081, + [SMALL_STATE(5828)] = 192096, + [SMALL_STATE(5829)] = 192115, + [SMALL_STATE(5830)] = 192130, + [SMALL_STATE(5831)] = 192149, + [SMALL_STATE(5832)] = 192164, + [SMALL_STATE(5833)] = 192181, + [SMALL_STATE(5834)] = 192196, + [SMALL_STATE(5835)] = 192215, + [SMALL_STATE(5836)] = 192230, + [SMALL_STATE(5837)] = 192245, + [SMALL_STATE(5838)] = 192264, + [SMALL_STATE(5839)] = 192283, + [SMALL_STATE(5840)] = 192302, + [SMALL_STATE(5841)] = 192317, + [SMALL_STATE(5842)] = 192332, + [SMALL_STATE(5843)] = 192347, + [SMALL_STATE(5844)] = 192362, + [SMALL_STATE(5845)] = 192381, + [SMALL_STATE(5846)] = 192400, + [SMALL_STATE(5847)] = 192417, + [SMALL_STATE(5848)] = 192436, + [SMALL_STATE(5849)] = 192455, + [SMALL_STATE(5850)] = 192470, + [SMALL_STATE(5851)] = 192487, + [SMALL_STATE(5852)] = 192506, + [SMALL_STATE(5853)] = 192523, + [SMALL_STATE(5854)] = 192542, + [SMALL_STATE(5855)] = 192559, + [SMALL_STATE(5856)] = 192576, + [SMALL_STATE(5857)] = 192595, + [SMALL_STATE(5858)] = 192612, + [SMALL_STATE(5859)] = 192627, + [SMALL_STATE(5860)] = 192646, + [SMALL_STATE(5861)] = 192661, + [SMALL_STATE(5862)] = 192680, + [SMALL_STATE(5863)] = 192695, + [SMALL_STATE(5864)] = 192710, + [SMALL_STATE(5865)] = 192725, + [SMALL_STATE(5866)] = 192744, + [SMALL_STATE(5867)] = 192761, + [SMALL_STATE(5868)] = 192780, + [SMALL_STATE(5869)] = 192797, + [SMALL_STATE(5870)] = 192812, + [SMALL_STATE(5871)] = 192827, + [SMALL_STATE(5872)] = 192842, + [SMALL_STATE(5873)] = 192857, + [SMALL_STATE(5874)] = 192872, + [SMALL_STATE(5875)] = 192887, + [SMALL_STATE(5876)] = 192906, + [SMALL_STATE(5877)] = 192921, + [SMALL_STATE(5878)] = 192940, + [SMALL_STATE(5879)] = 192959, + [SMALL_STATE(5880)] = 192978, + [SMALL_STATE(5881)] = 192993, + [SMALL_STATE(5882)] = 193008, + [SMALL_STATE(5883)] = 193023, + [SMALL_STATE(5884)] = 193038, + [SMALL_STATE(5885)] = 193053, + [SMALL_STATE(5886)] = 193068, + [SMALL_STATE(5887)] = 193087, + [SMALL_STATE(5888)] = 193102, + [SMALL_STATE(5889)] = 193121, + [SMALL_STATE(5890)] = 193140, + [SMALL_STATE(5891)] = 193155, + [SMALL_STATE(5892)] = 193174, + [SMALL_STATE(5893)] = 193189, + [SMALL_STATE(5894)] = 193208, + [SMALL_STATE(5895)] = 193223, + [SMALL_STATE(5896)] = 193238, + [SMALL_STATE(5897)] = 193255, + [SMALL_STATE(5898)] = 193274, + [SMALL_STATE(5899)] = 193293, + [SMALL_STATE(5900)] = 193312, + [SMALL_STATE(5901)] = 193327, + [SMALL_STATE(5902)] = 193342, + [SMALL_STATE(5903)] = 193361, + [SMALL_STATE(5904)] = 193376, + [SMALL_STATE(5905)] = 193391, + [SMALL_STATE(5906)] = 193410, + [SMALL_STATE(5907)] = 193425, + [SMALL_STATE(5908)] = 193444, + [SMALL_STATE(5909)] = 193463, + [SMALL_STATE(5910)] = 193482, + [SMALL_STATE(5911)] = 193501, + [SMALL_STATE(5912)] = 193520, + [SMALL_STATE(5913)] = 193539, + [SMALL_STATE(5914)] = 193558, + [SMALL_STATE(5915)] = 193577, + [SMALL_STATE(5916)] = 193596, + [SMALL_STATE(5917)] = 193615, + [SMALL_STATE(5918)] = 193634, + [SMALL_STATE(5919)] = 193649, + [SMALL_STATE(5920)] = 193668, + [SMALL_STATE(5921)] = 193687, + [SMALL_STATE(5922)] = 193702, + [SMALL_STATE(5923)] = 193721, + [SMALL_STATE(5924)] = 193736, + [SMALL_STATE(5925)] = 193755, + [SMALL_STATE(5926)] = 193772, + [SMALL_STATE(5927)] = 193791, + [SMALL_STATE(5928)] = 193806, + [SMALL_STATE(5929)] = 193823, + [SMALL_STATE(5930)] = 193842, + [SMALL_STATE(5931)] = 193861, + [SMALL_STATE(5932)] = 193878, + [SMALL_STATE(5933)] = 193895, + [SMALL_STATE(5934)] = 193912, + [SMALL_STATE(5935)] = 193929, + [SMALL_STATE(5936)] = 193948, + [SMALL_STATE(5937)] = 193965, + [SMALL_STATE(5938)] = 193984, + [SMALL_STATE(5939)] = 194003, + [SMALL_STATE(5940)] = 194022, + [SMALL_STATE(5941)] = 194041, + [SMALL_STATE(5942)] = 194060, + [SMALL_STATE(5943)] = 194075, + [SMALL_STATE(5944)] = 194090, + [SMALL_STATE(5945)] = 194107, + [SMALL_STATE(5946)] = 194126, + [SMALL_STATE(5947)] = 194143, + [SMALL_STATE(5948)] = 194160, + [SMALL_STATE(5949)] = 194175, + [SMALL_STATE(5950)] = 194194, + [SMALL_STATE(5951)] = 194209, + [SMALL_STATE(5952)] = 194224, + [SMALL_STATE(5953)] = 194239, + [SMALL_STATE(5954)] = 194254, + [SMALL_STATE(5955)] = 194273, + [SMALL_STATE(5956)] = 194292, + [SMALL_STATE(5957)] = 194307, + [SMALL_STATE(5958)] = 194326, + [SMALL_STATE(5959)] = 194345, + [SMALL_STATE(5960)] = 194362, + [SMALL_STATE(5961)] = 194379, + [SMALL_STATE(5962)] = 194398, + [SMALL_STATE(5963)] = 194417, + [SMALL_STATE(5964)] = 194436, + [SMALL_STATE(5965)] = 194451, + [SMALL_STATE(5966)] = 194466, + [SMALL_STATE(5967)] = 194485, + [SMALL_STATE(5968)] = 194504, + [SMALL_STATE(5969)] = 194519, + [SMALL_STATE(5970)] = 194534, + [SMALL_STATE(5971)] = 194549, + [SMALL_STATE(5972)] = 194564, + [SMALL_STATE(5973)] = 194579, + [SMALL_STATE(5974)] = 194598, + [SMALL_STATE(5975)] = 194613, + [SMALL_STATE(5976)] = 194628, + [SMALL_STATE(5977)] = 194643, + [SMALL_STATE(5978)] = 194658, + [SMALL_STATE(5979)] = 194673, + [SMALL_STATE(5980)] = 194688, + [SMALL_STATE(5981)] = 194703, + [SMALL_STATE(5982)] = 194718, + [SMALL_STATE(5983)] = 194733, + [SMALL_STATE(5984)] = 194748, + [SMALL_STATE(5985)] = 194763, + [SMALL_STATE(5986)] = 194778, + [SMALL_STATE(5987)] = 194793, + [SMALL_STATE(5988)] = 194808, + [SMALL_STATE(5989)] = 194823, + [SMALL_STATE(5990)] = 194838, + [SMALL_STATE(5991)] = 194853, + [SMALL_STATE(5992)] = 194868, + [SMALL_STATE(5993)] = 194883, + [SMALL_STATE(5994)] = 194898, + [SMALL_STATE(5995)] = 194913, + [SMALL_STATE(5996)] = 194928, + [SMALL_STATE(5997)] = 194945, + [SMALL_STATE(5998)] = 194962, + [SMALL_STATE(5999)] = 194979, + [SMALL_STATE(6000)] = 194996, + [SMALL_STATE(6001)] = 195011, + [SMALL_STATE(6002)] = 195028, + [SMALL_STATE(6003)] = 195043, + [SMALL_STATE(6004)] = 195058, + [SMALL_STATE(6005)] = 195073, + [SMALL_STATE(6006)] = 195088, + [SMALL_STATE(6007)] = 195103, + [SMALL_STATE(6008)] = 195120, + [SMALL_STATE(6009)] = 195139, + [SMALL_STATE(6010)] = 195154, + [SMALL_STATE(6011)] = 195169, + [SMALL_STATE(6012)] = 195186, + [SMALL_STATE(6013)] = 195203, + [SMALL_STATE(6014)] = 195222, + [SMALL_STATE(6015)] = 195241, + [SMALL_STATE(6016)] = 195256, + [SMALL_STATE(6017)] = 195271, + [SMALL_STATE(6018)] = 195286, + [SMALL_STATE(6019)] = 195305, + [SMALL_STATE(6020)] = 195320, + [SMALL_STATE(6021)] = 195335, + [SMALL_STATE(6022)] = 195350, + [SMALL_STATE(6023)] = 195367, + [SMALL_STATE(6024)] = 195382, + [SMALL_STATE(6025)] = 195397, + [SMALL_STATE(6026)] = 195412, + [SMALL_STATE(6027)] = 195427, + [SMALL_STATE(6028)] = 195442, + [SMALL_STATE(6029)] = 195457, + [SMALL_STATE(6030)] = 195472, + [SMALL_STATE(6031)] = 195487, + [SMALL_STATE(6032)] = 195502, + [SMALL_STATE(6033)] = 195517, + [SMALL_STATE(6034)] = 195532, + [SMALL_STATE(6035)] = 195547, + [SMALL_STATE(6036)] = 195566, + [SMALL_STATE(6037)] = 195581, + [SMALL_STATE(6038)] = 195596, + [SMALL_STATE(6039)] = 195611, + [SMALL_STATE(6040)] = 195626, + [SMALL_STATE(6041)] = 195641, + [SMALL_STATE(6042)] = 195656, + [SMALL_STATE(6043)] = 195671, + [SMALL_STATE(6044)] = 195686, + [SMALL_STATE(6045)] = 195705, + [SMALL_STATE(6046)] = 195720, + [SMALL_STATE(6047)] = 195735, + [SMALL_STATE(6048)] = 195750, + [SMALL_STATE(6049)] = 195765, + [SMALL_STATE(6050)] = 195780, + [SMALL_STATE(6051)] = 195799, + [SMALL_STATE(6052)] = 195814, + [SMALL_STATE(6053)] = 195829, + [SMALL_STATE(6054)] = 195848, + [SMALL_STATE(6055)] = 195863, + [SMALL_STATE(6056)] = 195882, + [SMALL_STATE(6057)] = 195901, + [SMALL_STATE(6058)] = 195920, + [SMALL_STATE(6059)] = 195937, + [SMALL_STATE(6060)] = 195952, + [SMALL_STATE(6061)] = 195969, + [SMALL_STATE(6062)] = 195984, + [SMALL_STATE(6063)] = 196003, + [SMALL_STATE(6064)] = 196018, + [SMALL_STATE(6065)] = 196033, + [SMALL_STATE(6066)] = 196048, + [SMALL_STATE(6067)] = 196063, + [SMALL_STATE(6068)] = 196078, + [SMALL_STATE(6069)] = 196093, + [SMALL_STATE(6070)] = 196108, + [SMALL_STATE(6071)] = 196123, + [SMALL_STATE(6072)] = 196138, + [SMALL_STATE(6073)] = 196157, + [SMALL_STATE(6074)] = 196172, + [SMALL_STATE(6075)] = 196191, + [SMALL_STATE(6076)] = 196206, + [SMALL_STATE(6077)] = 196225, + [SMALL_STATE(6078)] = 196244, + [SMALL_STATE(6079)] = 196263, + [SMALL_STATE(6080)] = 196282, + [SMALL_STATE(6081)] = 196297, + [SMALL_STATE(6082)] = 196316, + [SMALL_STATE(6083)] = 196331, + [SMALL_STATE(6084)] = 196350, + [SMALL_STATE(6085)] = 196365, + [SMALL_STATE(6086)] = 196380, + [SMALL_STATE(6087)] = 196395, + [SMALL_STATE(6088)] = 196414, + [SMALL_STATE(6089)] = 196429, + [SMALL_STATE(6090)] = 196444, + [SMALL_STATE(6091)] = 196459, + [SMALL_STATE(6092)] = 196478, + [SMALL_STATE(6093)] = 196497, + [SMALL_STATE(6094)] = 196512, + [SMALL_STATE(6095)] = 196527, + [SMALL_STATE(6096)] = 196542, + [SMALL_STATE(6097)] = 196557, + [SMALL_STATE(6098)] = 196572, + [SMALL_STATE(6099)] = 196587, + [SMALL_STATE(6100)] = 196602, + [SMALL_STATE(6101)] = 196617, + [SMALL_STATE(6102)] = 196632, + [SMALL_STATE(6103)] = 196647, + [SMALL_STATE(6104)] = 196666, + [SMALL_STATE(6105)] = 196681, + [SMALL_STATE(6106)] = 196696, + [SMALL_STATE(6107)] = 196711, + [SMALL_STATE(6108)] = 196728, + [SMALL_STATE(6109)] = 196745, + [SMALL_STATE(6110)] = 196760, + [SMALL_STATE(6111)] = 196779, + [SMALL_STATE(6112)] = 196794, + [SMALL_STATE(6113)] = 196809, + [SMALL_STATE(6114)] = 196824, + [SMALL_STATE(6115)] = 196839, + [SMALL_STATE(6116)] = 196854, + [SMALL_STATE(6117)] = 196869, + [SMALL_STATE(6118)] = 196884, + [SMALL_STATE(6119)] = 196899, + [SMALL_STATE(6120)] = 196918, + [SMALL_STATE(6121)] = 196933, + [SMALL_STATE(6122)] = 196952, + [SMALL_STATE(6123)] = 196967, + [SMALL_STATE(6124)] = 196986, + [SMALL_STATE(6125)] = 197001, + [SMALL_STATE(6126)] = 197020, + [SMALL_STATE(6127)] = 197035, + [SMALL_STATE(6128)] = 197050, + [SMALL_STATE(6129)] = 197069, + [SMALL_STATE(6130)] = 197084, + [SMALL_STATE(6131)] = 197099, + [SMALL_STATE(6132)] = 197114, + [SMALL_STATE(6133)] = 197129, + [SMALL_STATE(6134)] = 197144, + [SMALL_STATE(6135)] = 197159, + [SMALL_STATE(6136)] = 197174, + [SMALL_STATE(6137)] = 197189, + [SMALL_STATE(6138)] = 197208, + [SMALL_STATE(6139)] = 197223, + [SMALL_STATE(6140)] = 197242, + [SMALL_STATE(6141)] = 197261, + [SMALL_STATE(6142)] = 197278, + [SMALL_STATE(6143)] = 197293, + [SMALL_STATE(6144)] = 197308, + [SMALL_STATE(6145)] = 197323, + [SMALL_STATE(6146)] = 197338, + [SMALL_STATE(6147)] = 197353, + [SMALL_STATE(6148)] = 197368, + [SMALL_STATE(6149)] = 197383, + [SMALL_STATE(6150)] = 197398, + [SMALL_STATE(6151)] = 197417, + [SMALL_STATE(6152)] = 197432, + [SMALL_STATE(6153)] = 197447, + [SMALL_STATE(6154)] = 197466, + [SMALL_STATE(6155)] = 197481, + [SMALL_STATE(6156)] = 197496, + [SMALL_STATE(6157)] = 197511, + [SMALL_STATE(6158)] = 197526, + [SMALL_STATE(6159)] = 197541, + [SMALL_STATE(6160)] = 197556, + [SMALL_STATE(6161)] = 197571, + [SMALL_STATE(6162)] = 197586, + [SMALL_STATE(6163)] = 197601, + [SMALL_STATE(6164)] = 197616, + [SMALL_STATE(6165)] = 197631, + [SMALL_STATE(6166)] = 197646, + [SMALL_STATE(6167)] = 197661, + [SMALL_STATE(6168)] = 197676, + [SMALL_STATE(6169)] = 197691, + [SMALL_STATE(6170)] = 197706, + [SMALL_STATE(6171)] = 197721, + [SMALL_STATE(6172)] = 197736, + [SMALL_STATE(6173)] = 197751, + [SMALL_STATE(6174)] = 197770, + [SMALL_STATE(6175)] = 197787, + [SMALL_STATE(6176)] = 197806, + [SMALL_STATE(6177)] = 197821, + [SMALL_STATE(6178)] = 197836, + [SMALL_STATE(6179)] = 197851, + [SMALL_STATE(6180)] = 197866, + [SMALL_STATE(6181)] = 197883, + [SMALL_STATE(6182)] = 197900, + [SMALL_STATE(6183)] = 197919, + [SMALL_STATE(6184)] = 197938, + [SMALL_STATE(6185)] = 197953, + [SMALL_STATE(6186)] = 197968, + [SMALL_STATE(6187)] = 197983, + [SMALL_STATE(6188)] = 197998, + [SMALL_STATE(6189)] = 198013, + [SMALL_STATE(6190)] = 198032, + [SMALL_STATE(6191)] = 198051, + [SMALL_STATE(6192)] = 198066, + [SMALL_STATE(6193)] = 198085, + [SMALL_STATE(6194)] = 198100, + [SMALL_STATE(6195)] = 198119, + [SMALL_STATE(6196)] = 198134, + [SMALL_STATE(6197)] = 198153, + [SMALL_STATE(6198)] = 198168, + [SMALL_STATE(6199)] = 198183, + [SMALL_STATE(6200)] = 198198, + [SMALL_STATE(6201)] = 198213, + [SMALL_STATE(6202)] = 198232, + [SMALL_STATE(6203)] = 198247, + [SMALL_STATE(6204)] = 198262, + [SMALL_STATE(6205)] = 198277, + [SMALL_STATE(6206)] = 198292, + [SMALL_STATE(6207)] = 198307, + [SMALL_STATE(6208)] = 198322, + [SMALL_STATE(6209)] = 198337, + [SMALL_STATE(6210)] = 198352, + [SMALL_STATE(6211)] = 198367, + [SMALL_STATE(6212)] = 198382, + [SMALL_STATE(6213)] = 198397, + [SMALL_STATE(6214)] = 198416, + [SMALL_STATE(6215)] = 198431, + [SMALL_STATE(6216)] = 198446, + [SMALL_STATE(6217)] = 198461, + [SMALL_STATE(6218)] = 198476, + [SMALL_STATE(6219)] = 198491, + [SMALL_STATE(6220)] = 198506, + [SMALL_STATE(6221)] = 198521, + [SMALL_STATE(6222)] = 198536, + [SMALL_STATE(6223)] = 198551, + [SMALL_STATE(6224)] = 198566, + [SMALL_STATE(6225)] = 198581, + [SMALL_STATE(6226)] = 198600, + [SMALL_STATE(6227)] = 198619, + [SMALL_STATE(6228)] = 198634, + [SMALL_STATE(6229)] = 198649, + [SMALL_STATE(6230)] = 198664, + [SMALL_STATE(6231)] = 198679, + [SMALL_STATE(6232)] = 198694, + [SMALL_STATE(6233)] = 198709, + [SMALL_STATE(6234)] = 198724, + [SMALL_STATE(6235)] = 198739, + [SMALL_STATE(6236)] = 198754, + [SMALL_STATE(6237)] = 198769, + [SMALL_STATE(6238)] = 198788, + [SMALL_STATE(6239)] = 198803, + [SMALL_STATE(6240)] = 198818, + [SMALL_STATE(6241)] = 198833, + [SMALL_STATE(6242)] = 198848, + [SMALL_STATE(6243)] = 198863, + [SMALL_STATE(6244)] = 198878, + [SMALL_STATE(6245)] = 198897, + [SMALL_STATE(6246)] = 198912, + [SMALL_STATE(6247)] = 198931, + [SMALL_STATE(6248)] = 198946, + [SMALL_STATE(6249)] = 198961, + [SMALL_STATE(6250)] = 198976, + [SMALL_STATE(6251)] = 198991, + [SMALL_STATE(6252)] = 199006, + [SMALL_STATE(6253)] = 199021, + [SMALL_STATE(6254)] = 199036, + [SMALL_STATE(6255)] = 199051, + [SMALL_STATE(6256)] = 199066, + [SMALL_STATE(6257)] = 199081, + [SMALL_STATE(6258)] = 199096, + [SMALL_STATE(6259)] = 199111, + [SMALL_STATE(6260)] = 199126, + [SMALL_STATE(6261)] = 199145, + [SMALL_STATE(6262)] = 199160, + [SMALL_STATE(6263)] = 199179, + [SMALL_STATE(6264)] = 199194, + [SMALL_STATE(6265)] = 199213, + [SMALL_STATE(6266)] = 199228, + [SMALL_STATE(6267)] = 199247, + [SMALL_STATE(6268)] = 199262, + [SMALL_STATE(6269)] = 199277, + [SMALL_STATE(6270)] = 199292, + [SMALL_STATE(6271)] = 199311, + [SMALL_STATE(6272)] = 199330, + [SMALL_STATE(6273)] = 199345, + [SMALL_STATE(6274)] = 199360, + [SMALL_STATE(6275)] = 199375, + [SMALL_STATE(6276)] = 199390, + [SMALL_STATE(6277)] = 199405, + [SMALL_STATE(6278)] = 199422, + [SMALL_STATE(6279)] = 199439, + [SMALL_STATE(6280)] = 199454, + [SMALL_STATE(6281)] = 199469, + [SMALL_STATE(6282)] = 199484, + [SMALL_STATE(6283)] = 199499, + [SMALL_STATE(6284)] = 199514, + [SMALL_STATE(6285)] = 199529, + [SMALL_STATE(6286)] = 199544, + [SMALL_STATE(6287)] = 199559, + [SMALL_STATE(6288)] = 199574, + [SMALL_STATE(6289)] = 199593, + [SMALL_STATE(6290)] = 199608, + [SMALL_STATE(6291)] = 199627, + [SMALL_STATE(6292)] = 199646, + [SMALL_STATE(6293)] = 199661, + [SMALL_STATE(6294)] = 199676, + [SMALL_STATE(6295)] = 199691, + [SMALL_STATE(6296)] = 199706, + [SMALL_STATE(6297)] = 199720, + [SMALL_STATE(6298)] = 199736, + [SMALL_STATE(6299)] = 199752, + [SMALL_STATE(6300)] = 199768, + [SMALL_STATE(6301)] = 199784, + [SMALL_STATE(6302)] = 199800, + [SMALL_STATE(6303)] = 199816, + [SMALL_STATE(6304)] = 199832, + [SMALL_STATE(6305)] = 199848, + [SMALL_STATE(6306)] = 199864, + [SMALL_STATE(6307)] = 199878, + [SMALL_STATE(6308)] = 199894, + [SMALL_STATE(6309)] = 199910, + [SMALL_STATE(6310)] = 199924, + [SMALL_STATE(6311)] = 199940, + [SMALL_STATE(6312)] = 199956, + [SMALL_STATE(6313)] = 199972, + [SMALL_STATE(6314)] = 199988, + [SMALL_STATE(6315)] = 200004, + [SMALL_STATE(6316)] = 200020, + [SMALL_STATE(6317)] = 200036, + [SMALL_STATE(6318)] = 200052, + [SMALL_STATE(6319)] = 200068, + [SMALL_STATE(6320)] = 200084, + [SMALL_STATE(6321)] = 200100, + [SMALL_STATE(6322)] = 200116, + [SMALL_STATE(6323)] = 200132, + [SMALL_STATE(6324)] = 200148, + [SMALL_STATE(6325)] = 200164, + [SMALL_STATE(6326)] = 200180, + [SMALL_STATE(6327)] = 200196, + [SMALL_STATE(6328)] = 200212, + [SMALL_STATE(6329)] = 200226, + [SMALL_STATE(6330)] = 200240, + [SMALL_STATE(6331)] = 200254, + [SMALL_STATE(6332)] = 200270, + [SMALL_STATE(6333)] = 200284, + [SMALL_STATE(6334)] = 200298, + [SMALL_STATE(6335)] = 200314, + [SMALL_STATE(6336)] = 200330, + [SMALL_STATE(6337)] = 200346, + [SMALL_STATE(6338)] = 200360, + [SMALL_STATE(6339)] = 200374, + [SMALL_STATE(6340)] = 200390, + [SMALL_STATE(6341)] = 200404, + [SMALL_STATE(6342)] = 200418, + [SMALL_STATE(6343)] = 200432, + [SMALL_STATE(6344)] = 200448, + [SMALL_STATE(6345)] = 200464, + [SMALL_STATE(6346)] = 200480, + [SMALL_STATE(6347)] = 200494, + [SMALL_STATE(6348)] = 200508, + [SMALL_STATE(6349)] = 200522, + [SMALL_STATE(6350)] = 200536, + [SMALL_STATE(6351)] = 200550, + [SMALL_STATE(6352)] = 200564, + [SMALL_STATE(6353)] = 200580, + [SMALL_STATE(6354)] = 200594, + [SMALL_STATE(6355)] = 200610, + [SMALL_STATE(6356)] = 200624, + [SMALL_STATE(6357)] = 200640, + [SMALL_STATE(6358)] = 200656, + [SMALL_STATE(6359)] = 200672, + [SMALL_STATE(6360)] = 200686, + [SMALL_STATE(6361)] = 200702, + [SMALL_STATE(6362)] = 200716, + [SMALL_STATE(6363)] = 200730, + [SMALL_STATE(6364)] = 200746, + [SMALL_STATE(6365)] = 200762, + [SMALL_STATE(6366)] = 200778, + [SMALL_STATE(6367)] = 200792, + [SMALL_STATE(6368)] = 200808, + [SMALL_STATE(6369)] = 200824, + [SMALL_STATE(6370)] = 200840, + [SMALL_STATE(6371)] = 200854, + [SMALL_STATE(6372)] = 200870, + [SMALL_STATE(6373)] = 200886, + [SMALL_STATE(6374)] = 200902, + [SMALL_STATE(6375)] = 200916, + [SMALL_STATE(6376)] = 200930, + [SMALL_STATE(6377)] = 200944, + [SMALL_STATE(6378)] = 200958, + [SMALL_STATE(6379)] = 200974, + [SMALL_STATE(6380)] = 200988, + [SMALL_STATE(6381)] = 201004, + [SMALL_STATE(6382)] = 201018, + [SMALL_STATE(6383)] = 201034, + [SMALL_STATE(6384)] = 201048, + [SMALL_STATE(6385)] = 201062, + [SMALL_STATE(6386)] = 201076, + [SMALL_STATE(6387)] = 201092, + [SMALL_STATE(6388)] = 201108, + [SMALL_STATE(6389)] = 201124, + [SMALL_STATE(6390)] = 201140, + [SMALL_STATE(6391)] = 201154, + [SMALL_STATE(6392)] = 201168, + [SMALL_STATE(6393)] = 201184, + [SMALL_STATE(6394)] = 201198, + [SMALL_STATE(6395)] = 201212, + [SMALL_STATE(6396)] = 201226, + [SMALL_STATE(6397)] = 201242, + [SMALL_STATE(6398)] = 201256, + [SMALL_STATE(6399)] = 201272, + [SMALL_STATE(6400)] = 201286, + [SMALL_STATE(6401)] = 201302, + [SMALL_STATE(6402)] = 201318, + [SMALL_STATE(6403)] = 201334, + [SMALL_STATE(6404)] = 201348, + [SMALL_STATE(6405)] = 201364, + [SMALL_STATE(6406)] = 201380, + [SMALL_STATE(6407)] = 201396, + [SMALL_STATE(6408)] = 201412, + [SMALL_STATE(6409)] = 201426, + [SMALL_STATE(6410)] = 201442, + [SMALL_STATE(6411)] = 201458, + [SMALL_STATE(6412)] = 201474, + [SMALL_STATE(6413)] = 201490, + [SMALL_STATE(6414)] = 201506, + [SMALL_STATE(6415)] = 201522, + [SMALL_STATE(6416)] = 201538, + [SMALL_STATE(6417)] = 201554, + [SMALL_STATE(6418)] = 201570, + [SMALL_STATE(6419)] = 201586, + [SMALL_STATE(6420)] = 201602, + [SMALL_STATE(6421)] = 201618, + [SMALL_STATE(6422)] = 201634, + [SMALL_STATE(6423)] = 201650, + [SMALL_STATE(6424)] = 201666, + [SMALL_STATE(6425)] = 201682, + [SMALL_STATE(6426)] = 201698, + [SMALL_STATE(6427)] = 201714, + [SMALL_STATE(6428)] = 201730, + [SMALL_STATE(6429)] = 201746, + [SMALL_STATE(6430)] = 201760, + [SMALL_STATE(6431)] = 201774, + [SMALL_STATE(6432)] = 201788, + [SMALL_STATE(6433)] = 201802, + [SMALL_STATE(6434)] = 201816, + [SMALL_STATE(6435)] = 201832, + [SMALL_STATE(6436)] = 201848, + [SMALL_STATE(6437)] = 201864, + [SMALL_STATE(6438)] = 201880, + [SMALL_STATE(6439)] = 201894, + [SMALL_STATE(6440)] = 201910, + [SMALL_STATE(6441)] = 201924, + [SMALL_STATE(6442)] = 201938, + [SMALL_STATE(6443)] = 201954, + [SMALL_STATE(6444)] = 201970, + [SMALL_STATE(6445)] = 201986, + [SMALL_STATE(6446)] = 202002, + [SMALL_STATE(6447)] = 202018, + [SMALL_STATE(6448)] = 202032, + [SMALL_STATE(6449)] = 202048, + [SMALL_STATE(6450)] = 202064, + [SMALL_STATE(6451)] = 202080, + [SMALL_STATE(6452)] = 202096, + [SMALL_STATE(6453)] = 202112, + [SMALL_STATE(6454)] = 202128, + [SMALL_STATE(6455)] = 202144, + [SMALL_STATE(6456)] = 202160, + [SMALL_STATE(6457)] = 202176, + [SMALL_STATE(6458)] = 202190, + [SMALL_STATE(6459)] = 202204, + [SMALL_STATE(6460)] = 202220, + [SMALL_STATE(6461)] = 202234, + [SMALL_STATE(6462)] = 202250, + [SMALL_STATE(6463)] = 202266, + [SMALL_STATE(6464)] = 202280, + [SMALL_STATE(6465)] = 202296, + [SMALL_STATE(6466)] = 202312, + [SMALL_STATE(6467)] = 202326, + [SMALL_STATE(6468)] = 202342, + [SMALL_STATE(6469)] = 202358, + [SMALL_STATE(6470)] = 202372, + [SMALL_STATE(6471)] = 202388, + [SMALL_STATE(6472)] = 202404, + [SMALL_STATE(6473)] = 202420, + [SMALL_STATE(6474)] = 202436, + [SMALL_STATE(6475)] = 202452, + [SMALL_STATE(6476)] = 202468, + [SMALL_STATE(6477)] = 202484, + [SMALL_STATE(6478)] = 202500, + [SMALL_STATE(6479)] = 202514, + [SMALL_STATE(6480)] = 202530, + [SMALL_STATE(6481)] = 202546, + [SMALL_STATE(6482)] = 202560, + [SMALL_STATE(6483)] = 202576, + [SMALL_STATE(6484)] = 202592, + [SMALL_STATE(6485)] = 202608, + [SMALL_STATE(6486)] = 202624, + [SMALL_STATE(6487)] = 202640, + [SMALL_STATE(6488)] = 202656, + [SMALL_STATE(6489)] = 202670, + [SMALL_STATE(6490)] = 202686, + [SMALL_STATE(6491)] = 202702, + [SMALL_STATE(6492)] = 202718, + [SMALL_STATE(6493)] = 202734, + [SMALL_STATE(6494)] = 202750, + [SMALL_STATE(6495)] = 202766, + [SMALL_STATE(6496)] = 202782, + [SMALL_STATE(6497)] = 202798, + [SMALL_STATE(6498)] = 202814, + [SMALL_STATE(6499)] = 202830, + [SMALL_STATE(6500)] = 202844, + [SMALL_STATE(6501)] = 202858, + [SMALL_STATE(6502)] = 202872, + [SMALL_STATE(6503)] = 202888, + [SMALL_STATE(6504)] = 202904, + [SMALL_STATE(6505)] = 202920, + [SMALL_STATE(6506)] = 202936, + [SMALL_STATE(6507)] = 202950, + [SMALL_STATE(6508)] = 202966, + [SMALL_STATE(6509)] = 202982, + [SMALL_STATE(6510)] = 202996, + [SMALL_STATE(6511)] = 203010, + [SMALL_STATE(6512)] = 203026, + [SMALL_STATE(6513)] = 203042, + [SMALL_STATE(6514)] = 203058, + [SMALL_STATE(6515)] = 203074, + [SMALL_STATE(6516)] = 203090, + [SMALL_STATE(6517)] = 203104, + [SMALL_STATE(6518)] = 203118, + [SMALL_STATE(6519)] = 203132, + [SMALL_STATE(6520)] = 203146, + [SMALL_STATE(6521)] = 203162, + [SMALL_STATE(6522)] = 203178, + [SMALL_STATE(6523)] = 203194, + [SMALL_STATE(6524)] = 203208, + [SMALL_STATE(6525)] = 203224, + [SMALL_STATE(6526)] = 203240, + [SMALL_STATE(6527)] = 203254, + [SMALL_STATE(6528)] = 203270, + [SMALL_STATE(6529)] = 203284, + [SMALL_STATE(6530)] = 203300, + [SMALL_STATE(6531)] = 203316, + [SMALL_STATE(6532)] = 203332, + [SMALL_STATE(6533)] = 203348, + [SMALL_STATE(6534)] = 203364, + [SMALL_STATE(6535)] = 203380, + [SMALL_STATE(6536)] = 203394, + [SMALL_STATE(6537)] = 203410, + [SMALL_STATE(6538)] = 203424, + [SMALL_STATE(6539)] = 203438, + [SMALL_STATE(6540)] = 203454, + [SMALL_STATE(6541)] = 203470, + [SMALL_STATE(6542)] = 203484, + [SMALL_STATE(6543)] = 203500, + [SMALL_STATE(6544)] = 203514, + [SMALL_STATE(6545)] = 203530, + [SMALL_STATE(6546)] = 203546, + [SMALL_STATE(6547)] = 203560, + [SMALL_STATE(6548)] = 203576, + [SMALL_STATE(6549)] = 203590, + [SMALL_STATE(6550)] = 203606, + [SMALL_STATE(6551)] = 203620, + [SMALL_STATE(6552)] = 203634, + [SMALL_STATE(6553)] = 203648, + [SMALL_STATE(6554)] = 203664, + [SMALL_STATE(6555)] = 203680, + [SMALL_STATE(6556)] = 203696, + [SMALL_STATE(6557)] = 203712, + [SMALL_STATE(6558)] = 203728, + [SMALL_STATE(6559)] = 203744, + [SMALL_STATE(6560)] = 203758, + [SMALL_STATE(6561)] = 203772, + [SMALL_STATE(6562)] = 203786, + [SMALL_STATE(6563)] = 203800, + [SMALL_STATE(6564)] = 203816, + [SMALL_STATE(6565)] = 203830, + [SMALL_STATE(6566)] = 203846, + [SMALL_STATE(6567)] = 203862, + [SMALL_STATE(6568)] = 203878, + [SMALL_STATE(6569)] = 203894, + [SMALL_STATE(6570)] = 203908, + [SMALL_STATE(6571)] = 203922, + [SMALL_STATE(6572)] = 203938, + [SMALL_STATE(6573)] = 203954, + [SMALL_STATE(6574)] = 203970, + [SMALL_STATE(6575)] = 203986, + [SMALL_STATE(6576)] = 204002, + [SMALL_STATE(6577)] = 204016, + [SMALL_STATE(6578)] = 204032, + [SMALL_STATE(6579)] = 204048, + [SMALL_STATE(6580)] = 204064, + [SMALL_STATE(6581)] = 204078, + [SMALL_STATE(6582)] = 204094, + [SMALL_STATE(6583)] = 204110, + [SMALL_STATE(6584)] = 204124, + [SMALL_STATE(6585)] = 204138, + [SMALL_STATE(6586)] = 204154, + [SMALL_STATE(6587)] = 204170, + [SMALL_STATE(6588)] = 204184, + [SMALL_STATE(6589)] = 204200, + [SMALL_STATE(6590)] = 204216, + [SMALL_STATE(6591)] = 204230, + [SMALL_STATE(6592)] = 204244, + [SMALL_STATE(6593)] = 204258, + [SMALL_STATE(6594)] = 204272, + [SMALL_STATE(6595)] = 204288, + [SMALL_STATE(6596)] = 204304, + [SMALL_STATE(6597)] = 204318, + [SMALL_STATE(6598)] = 204334, + [SMALL_STATE(6599)] = 204350, + [SMALL_STATE(6600)] = 204364, + [SMALL_STATE(6601)] = 204380, + [SMALL_STATE(6602)] = 204396, + [SMALL_STATE(6603)] = 204410, + [SMALL_STATE(6604)] = 204424, + [SMALL_STATE(6605)] = 204440, + [SMALL_STATE(6606)] = 204454, + [SMALL_STATE(6607)] = 204470, + [SMALL_STATE(6608)] = 204484, + [SMALL_STATE(6609)] = 204500, + [SMALL_STATE(6610)] = 204514, + [SMALL_STATE(6611)] = 204530, + [SMALL_STATE(6612)] = 204546, + [SMALL_STATE(6613)] = 204560, + [SMALL_STATE(6614)] = 204574, + [SMALL_STATE(6615)] = 204590, + [SMALL_STATE(6616)] = 204606, + [SMALL_STATE(6617)] = 204622, + [SMALL_STATE(6618)] = 204638, + [SMALL_STATE(6619)] = 204652, + [SMALL_STATE(6620)] = 204666, + [SMALL_STATE(6621)] = 204680, + [SMALL_STATE(6622)] = 204694, + [SMALL_STATE(6623)] = 204710, + [SMALL_STATE(6624)] = 204726, + [SMALL_STATE(6625)] = 204742, + [SMALL_STATE(6626)] = 204758, + [SMALL_STATE(6627)] = 204774, + [SMALL_STATE(6628)] = 204788, + [SMALL_STATE(6629)] = 204804, + [SMALL_STATE(6630)] = 204820, + [SMALL_STATE(6631)] = 204836, + [SMALL_STATE(6632)] = 204852, + [SMALL_STATE(6633)] = 204868, + [SMALL_STATE(6634)] = 204884, + [SMALL_STATE(6635)] = 204900, + [SMALL_STATE(6636)] = 204914, + [SMALL_STATE(6637)] = 204928, + [SMALL_STATE(6638)] = 204944, + [SMALL_STATE(6639)] = 204960, + [SMALL_STATE(6640)] = 204976, + [SMALL_STATE(6641)] = 204992, + [SMALL_STATE(6642)] = 205008, + [SMALL_STATE(6643)] = 205022, + [SMALL_STATE(6644)] = 205036, + [SMALL_STATE(6645)] = 205052, + [SMALL_STATE(6646)] = 205068, + [SMALL_STATE(6647)] = 205082, + [SMALL_STATE(6648)] = 205096, + [SMALL_STATE(6649)] = 205110, + [SMALL_STATE(6650)] = 205124, + [SMALL_STATE(6651)] = 205140, + [SMALL_STATE(6652)] = 205154, + [SMALL_STATE(6653)] = 205170, + [SMALL_STATE(6654)] = 205186, + [SMALL_STATE(6655)] = 205200, + [SMALL_STATE(6656)] = 205216, + [SMALL_STATE(6657)] = 205232, + [SMALL_STATE(6658)] = 205246, + [SMALL_STATE(6659)] = 205260, + [SMALL_STATE(6660)] = 205276, + [SMALL_STATE(6661)] = 205292, + [SMALL_STATE(6662)] = 205306, + [SMALL_STATE(6663)] = 205322, + [SMALL_STATE(6664)] = 205338, + [SMALL_STATE(6665)] = 205352, + [SMALL_STATE(6666)] = 205368, + [SMALL_STATE(6667)] = 205384, + [SMALL_STATE(6668)] = 205398, + [SMALL_STATE(6669)] = 205414, + [SMALL_STATE(6670)] = 205428, + [SMALL_STATE(6671)] = 205444, + [SMALL_STATE(6672)] = 205460, + [SMALL_STATE(6673)] = 205476, + [SMALL_STATE(6674)] = 205490, + [SMALL_STATE(6675)] = 205506, + [SMALL_STATE(6676)] = 205522, + [SMALL_STATE(6677)] = 205536, + [SMALL_STATE(6678)] = 205552, + [SMALL_STATE(6679)] = 205566, + [SMALL_STATE(6680)] = 205580, + [SMALL_STATE(6681)] = 205596, + [SMALL_STATE(6682)] = 205610, + [SMALL_STATE(6683)] = 205626, + [SMALL_STATE(6684)] = 205642, + [SMALL_STATE(6685)] = 205658, + [SMALL_STATE(6686)] = 205672, + [SMALL_STATE(6687)] = 205688, + [SMALL_STATE(6688)] = 205704, + [SMALL_STATE(6689)] = 205720, + [SMALL_STATE(6690)] = 205734, + [SMALL_STATE(6691)] = 205748, + [SMALL_STATE(6692)] = 205762, + [SMALL_STATE(6693)] = 205776, + [SMALL_STATE(6694)] = 205792, + [SMALL_STATE(6695)] = 205806, + [SMALL_STATE(6696)] = 205822, + [SMALL_STATE(6697)] = 205836, + [SMALL_STATE(6698)] = 205850, + [SMALL_STATE(6699)] = 205864, + [SMALL_STATE(6700)] = 205878, + [SMALL_STATE(6701)] = 205894, + [SMALL_STATE(6702)] = 205908, + [SMALL_STATE(6703)] = 205922, + [SMALL_STATE(6704)] = 205938, + [SMALL_STATE(6705)] = 205952, + [SMALL_STATE(6706)] = 205968, + [SMALL_STATE(6707)] = 205984, + [SMALL_STATE(6708)] = 205998, + [SMALL_STATE(6709)] = 206012, + [SMALL_STATE(6710)] = 206026, + [SMALL_STATE(6711)] = 206042, + [SMALL_STATE(6712)] = 206056, + [SMALL_STATE(6713)] = 206072, + [SMALL_STATE(6714)] = 206086, + [SMALL_STATE(6715)] = 206102, + [SMALL_STATE(6716)] = 206118, + [SMALL_STATE(6717)] = 206132, + [SMALL_STATE(6718)] = 206148, + [SMALL_STATE(6719)] = 206164, + [SMALL_STATE(6720)] = 206180, + [SMALL_STATE(6721)] = 206196, + [SMALL_STATE(6722)] = 206210, + [SMALL_STATE(6723)] = 206226, + [SMALL_STATE(6724)] = 206242, + [SMALL_STATE(6725)] = 206256, + [SMALL_STATE(6726)] = 206272, + [SMALL_STATE(6727)] = 206288, + [SMALL_STATE(6728)] = 206304, + [SMALL_STATE(6729)] = 206320, + [SMALL_STATE(6730)] = 206334, + [SMALL_STATE(6731)] = 206350, + [SMALL_STATE(6732)] = 206364, + [SMALL_STATE(6733)] = 206380, + [SMALL_STATE(6734)] = 206394, + [SMALL_STATE(6735)] = 206410, + [SMALL_STATE(6736)] = 206424, + [SMALL_STATE(6737)] = 206440, + [SMALL_STATE(6738)] = 206456, + [SMALL_STATE(6739)] = 206470, + [SMALL_STATE(6740)] = 206486, + [SMALL_STATE(6741)] = 206502, + [SMALL_STATE(6742)] = 206518, + [SMALL_STATE(6743)] = 206534, + [SMALL_STATE(6744)] = 206548, + [SMALL_STATE(6745)] = 206562, + [SMALL_STATE(6746)] = 206578, + [SMALL_STATE(6747)] = 206592, + [SMALL_STATE(6748)] = 206608, + [SMALL_STATE(6749)] = 206624, + [SMALL_STATE(6750)] = 206638, + [SMALL_STATE(6751)] = 206654, + [SMALL_STATE(6752)] = 206670, + [SMALL_STATE(6753)] = 206684, + [SMALL_STATE(6754)] = 206698, + [SMALL_STATE(6755)] = 206714, + [SMALL_STATE(6756)] = 206728, + [SMALL_STATE(6757)] = 206744, + [SMALL_STATE(6758)] = 206758, + [SMALL_STATE(6759)] = 206772, + [SMALL_STATE(6760)] = 206786, + [SMALL_STATE(6761)] = 206802, + [SMALL_STATE(6762)] = 206816, + [SMALL_STATE(6763)] = 206832, + [SMALL_STATE(6764)] = 206846, + [SMALL_STATE(6765)] = 206862, + [SMALL_STATE(6766)] = 206876, + [SMALL_STATE(6767)] = 206890, + [SMALL_STATE(6768)] = 206906, + [SMALL_STATE(6769)] = 206922, + [SMALL_STATE(6770)] = 206938, + [SMALL_STATE(6771)] = 206952, + [SMALL_STATE(6772)] = 206968, + [SMALL_STATE(6773)] = 206982, + [SMALL_STATE(6774)] = 206996, + [SMALL_STATE(6775)] = 207012, + [SMALL_STATE(6776)] = 207028, + [SMALL_STATE(6777)] = 207042, + [SMALL_STATE(6778)] = 207058, + [SMALL_STATE(6779)] = 207072, + [SMALL_STATE(6780)] = 207086, + [SMALL_STATE(6781)] = 207102, + [SMALL_STATE(6782)] = 207118, + [SMALL_STATE(6783)] = 207132, + [SMALL_STATE(6784)] = 207148, + [SMALL_STATE(6785)] = 207164, + [SMALL_STATE(6786)] = 207180, + [SMALL_STATE(6787)] = 207196, + [SMALL_STATE(6788)] = 207212, + [SMALL_STATE(6789)] = 207226, + [SMALL_STATE(6790)] = 207240, + [SMALL_STATE(6791)] = 207256, + [SMALL_STATE(6792)] = 207272, + [SMALL_STATE(6793)] = 207286, + [SMALL_STATE(6794)] = 207302, + [SMALL_STATE(6795)] = 207316, + [SMALL_STATE(6796)] = 207330, + [SMALL_STATE(6797)] = 207346, + [SMALL_STATE(6798)] = 207360, + [SMALL_STATE(6799)] = 207374, + [SMALL_STATE(6800)] = 207390, + [SMALL_STATE(6801)] = 207404, + [SMALL_STATE(6802)] = 207420, + [SMALL_STATE(6803)] = 207434, + [SMALL_STATE(6804)] = 207450, + [SMALL_STATE(6805)] = 207466, + [SMALL_STATE(6806)] = 207480, + [SMALL_STATE(6807)] = 207496, + [SMALL_STATE(6808)] = 207510, + [SMALL_STATE(6809)] = 207524, + [SMALL_STATE(6810)] = 207540, + [SMALL_STATE(6811)] = 207556, + [SMALL_STATE(6812)] = 207572, + [SMALL_STATE(6813)] = 207588, + [SMALL_STATE(6814)] = 207604, + [SMALL_STATE(6815)] = 207618, + [SMALL_STATE(6816)] = 207632, + [SMALL_STATE(6817)] = 207648, + [SMALL_STATE(6818)] = 207662, + [SMALL_STATE(6819)] = 207678, + [SMALL_STATE(6820)] = 207692, + [SMALL_STATE(6821)] = 207706, + [SMALL_STATE(6822)] = 207720, + [SMALL_STATE(6823)] = 207736, + [SMALL_STATE(6824)] = 207752, + [SMALL_STATE(6825)] = 207768, + [SMALL_STATE(6826)] = 207782, + [SMALL_STATE(6827)] = 207798, + [SMALL_STATE(6828)] = 207814, + [SMALL_STATE(6829)] = 207830, + [SMALL_STATE(6830)] = 207844, + [SMALL_STATE(6831)] = 207858, + [SMALL_STATE(6832)] = 207874, + [SMALL_STATE(6833)] = 207890, + [SMALL_STATE(6834)] = 207906, + [SMALL_STATE(6835)] = 207922, + [SMALL_STATE(6836)] = 207936, + [SMALL_STATE(6837)] = 207952, + [SMALL_STATE(6838)] = 207966, + [SMALL_STATE(6839)] = 207980, + [SMALL_STATE(6840)] = 207996, + [SMALL_STATE(6841)] = 208010, + [SMALL_STATE(6842)] = 208026, + [SMALL_STATE(6843)] = 208040, + [SMALL_STATE(6844)] = 208054, + [SMALL_STATE(6845)] = 208068, + [SMALL_STATE(6846)] = 208084, + [SMALL_STATE(6847)] = 208100, + [SMALL_STATE(6848)] = 208114, + [SMALL_STATE(6849)] = 208128, + [SMALL_STATE(6850)] = 208144, + [SMALL_STATE(6851)] = 208158, + [SMALL_STATE(6852)] = 208172, + [SMALL_STATE(6853)] = 208188, + [SMALL_STATE(6854)] = 208204, + [SMALL_STATE(6855)] = 208220, + [SMALL_STATE(6856)] = 208236, + [SMALL_STATE(6857)] = 208250, + [SMALL_STATE(6858)] = 208264, + [SMALL_STATE(6859)] = 208280, + [SMALL_STATE(6860)] = 208296, + [SMALL_STATE(6861)] = 208310, + [SMALL_STATE(6862)] = 208324, + [SMALL_STATE(6863)] = 208340, + [SMALL_STATE(6864)] = 208356, + [SMALL_STATE(6865)] = 208372, + [SMALL_STATE(6866)] = 208388, + [SMALL_STATE(6867)] = 208404, + [SMALL_STATE(6868)] = 208420, + [SMALL_STATE(6869)] = 208436, + [SMALL_STATE(6870)] = 208452, + [SMALL_STATE(6871)] = 208468, + [SMALL_STATE(6872)] = 208484, + [SMALL_STATE(6873)] = 208498, + [SMALL_STATE(6874)] = 208512, + [SMALL_STATE(6875)] = 208528, + [SMALL_STATE(6876)] = 208542, + [SMALL_STATE(6877)] = 208558, + [SMALL_STATE(6878)] = 208574, + [SMALL_STATE(6879)] = 208590, + [SMALL_STATE(6880)] = 208606, + [SMALL_STATE(6881)] = 208622, + [SMALL_STATE(6882)] = 208636, + [SMALL_STATE(6883)] = 208652, + [SMALL_STATE(6884)] = 208668, + [SMALL_STATE(6885)] = 208684, + [SMALL_STATE(6886)] = 208698, + [SMALL_STATE(6887)] = 208714, + [SMALL_STATE(6888)] = 208730, + [SMALL_STATE(6889)] = 208744, + [SMALL_STATE(6890)] = 208758, + [SMALL_STATE(6891)] = 208774, + [SMALL_STATE(6892)] = 208790, + [SMALL_STATE(6893)] = 208806, + [SMALL_STATE(6894)] = 208822, + [SMALL_STATE(6895)] = 208838, + [SMALL_STATE(6896)] = 208854, + [SMALL_STATE(6897)] = 208870, + [SMALL_STATE(6898)] = 208884, + [SMALL_STATE(6899)] = 208898, + [SMALL_STATE(6900)] = 208914, + [SMALL_STATE(6901)] = 208930, + [SMALL_STATE(6902)] = 208946, + [SMALL_STATE(6903)] = 208960, + [SMALL_STATE(6904)] = 208976, + [SMALL_STATE(6905)] = 208992, + [SMALL_STATE(6906)] = 209008, + [SMALL_STATE(6907)] = 209024, + [SMALL_STATE(6908)] = 209040, + [SMALL_STATE(6909)] = 209056, + [SMALL_STATE(6910)] = 209072, + [SMALL_STATE(6911)] = 209086, + [SMALL_STATE(6912)] = 209102, + [SMALL_STATE(6913)] = 209116, + [SMALL_STATE(6914)] = 209130, + [SMALL_STATE(6915)] = 209146, + [SMALL_STATE(6916)] = 209160, + [SMALL_STATE(6917)] = 209174, + [SMALL_STATE(6918)] = 209190, + [SMALL_STATE(6919)] = 209204, + [SMALL_STATE(6920)] = 209220, + [SMALL_STATE(6921)] = 209234, + [SMALL_STATE(6922)] = 209250, + [SMALL_STATE(6923)] = 209266, + [SMALL_STATE(6924)] = 209282, + [SMALL_STATE(6925)] = 209296, + [SMALL_STATE(6926)] = 209312, + [SMALL_STATE(6927)] = 209326, + [SMALL_STATE(6928)] = 209342, + [SMALL_STATE(6929)] = 209356, + [SMALL_STATE(6930)] = 209372, + [SMALL_STATE(6931)] = 209388, + [SMALL_STATE(6932)] = 209404, + [SMALL_STATE(6933)] = 209420, + [SMALL_STATE(6934)] = 209436, + [SMALL_STATE(6935)] = 209452, + [SMALL_STATE(6936)] = 209468, + [SMALL_STATE(6937)] = 209484, + [SMALL_STATE(6938)] = 209498, + [SMALL_STATE(6939)] = 209512, + [SMALL_STATE(6940)] = 209526, + [SMALL_STATE(6941)] = 209540, + [SMALL_STATE(6942)] = 209556, + [SMALL_STATE(6943)] = 209572, + [SMALL_STATE(6944)] = 209588, + [SMALL_STATE(6945)] = 209604, + [SMALL_STATE(6946)] = 209617, + [SMALL_STATE(6947)] = 209630, + [SMALL_STATE(6948)] = 209643, + [SMALL_STATE(6949)] = 209656, + [SMALL_STATE(6950)] = 209669, + [SMALL_STATE(6951)] = 209682, + [SMALL_STATE(6952)] = 209695, + [SMALL_STATE(6953)] = 209708, + [SMALL_STATE(6954)] = 209721, + [SMALL_STATE(6955)] = 209734, + [SMALL_STATE(6956)] = 209747, + [SMALL_STATE(6957)] = 209760, + [SMALL_STATE(6958)] = 209773, + [SMALL_STATE(6959)] = 209786, + [SMALL_STATE(6960)] = 209799, + [SMALL_STATE(6961)] = 209812, + [SMALL_STATE(6962)] = 209825, + [SMALL_STATE(6963)] = 209838, + [SMALL_STATE(6964)] = 209851, + [SMALL_STATE(6965)] = 209864, + [SMALL_STATE(6966)] = 209877, + [SMALL_STATE(6967)] = 209890, + [SMALL_STATE(6968)] = 209903, + [SMALL_STATE(6969)] = 209916, + [SMALL_STATE(6970)] = 209929, + [SMALL_STATE(6971)] = 209942, + [SMALL_STATE(6972)] = 209955, + [SMALL_STATE(6973)] = 209968, + [SMALL_STATE(6974)] = 209981, + [SMALL_STATE(6975)] = 209994, + [SMALL_STATE(6976)] = 210007, + [SMALL_STATE(6977)] = 210020, + [SMALL_STATE(6978)] = 210033, + [SMALL_STATE(6979)] = 210046, + [SMALL_STATE(6980)] = 210059, + [SMALL_STATE(6981)] = 210072, + [SMALL_STATE(6982)] = 210085, + [SMALL_STATE(6983)] = 210098, + [SMALL_STATE(6984)] = 210111, + [SMALL_STATE(6985)] = 210124, + [SMALL_STATE(6986)] = 210137, + [SMALL_STATE(6987)] = 210150, + [SMALL_STATE(6988)] = 210163, + [SMALL_STATE(6989)] = 210176, + [SMALL_STATE(6990)] = 210189, + [SMALL_STATE(6991)] = 210202, + [SMALL_STATE(6992)] = 210215, + [SMALL_STATE(6993)] = 210228, + [SMALL_STATE(6994)] = 210241, + [SMALL_STATE(6995)] = 210254, + [SMALL_STATE(6996)] = 210267, + [SMALL_STATE(6997)] = 210280, + [SMALL_STATE(6998)] = 210293, + [SMALL_STATE(6999)] = 210306, + [SMALL_STATE(7000)] = 210319, + [SMALL_STATE(7001)] = 210332, + [SMALL_STATE(7002)] = 210345, + [SMALL_STATE(7003)] = 210358, + [SMALL_STATE(7004)] = 210371, + [SMALL_STATE(7005)] = 210384, + [SMALL_STATE(7006)] = 210397, + [SMALL_STATE(7007)] = 210410, + [SMALL_STATE(7008)] = 210423, + [SMALL_STATE(7009)] = 210436, + [SMALL_STATE(7010)] = 210449, + [SMALL_STATE(7011)] = 210462, + [SMALL_STATE(7012)] = 210475, + [SMALL_STATE(7013)] = 210488, + [SMALL_STATE(7014)] = 210501, + [SMALL_STATE(7015)] = 210514, + [SMALL_STATE(7016)] = 210527, + [SMALL_STATE(7017)] = 210540, + [SMALL_STATE(7018)] = 210553, + [SMALL_STATE(7019)] = 210566, + [SMALL_STATE(7020)] = 210579, + [SMALL_STATE(7021)] = 210592, + [SMALL_STATE(7022)] = 210605, + [SMALL_STATE(7023)] = 210618, + [SMALL_STATE(7024)] = 210631, + [SMALL_STATE(7025)] = 210644, + [SMALL_STATE(7026)] = 210657, + [SMALL_STATE(7027)] = 210670, + [SMALL_STATE(7028)] = 210683, + [SMALL_STATE(7029)] = 210696, + [SMALL_STATE(7030)] = 210709, + [SMALL_STATE(7031)] = 210722, + [SMALL_STATE(7032)] = 210735, + [SMALL_STATE(7033)] = 210748, + [SMALL_STATE(7034)] = 210761, + [SMALL_STATE(7035)] = 210774, + [SMALL_STATE(7036)] = 210787, + [SMALL_STATE(7037)] = 210800, + [SMALL_STATE(7038)] = 210813, + [SMALL_STATE(7039)] = 210826, + [SMALL_STATE(7040)] = 210839, + [SMALL_STATE(7041)] = 210852, + [SMALL_STATE(7042)] = 210865, + [SMALL_STATE(7043)] = 210878, + [SMALL_STATE(7044)] = 210891, + [SMALL_STATE(7045)] = 210904, + [SMALL_STATE(7046)] = 210917, + [SMALL_STATE(7047)] = 210930, + [SMALL_STATE(7048)] = 210943, + [SMALL_STATE(7049)] = 210956, + [SMALL_STATE(7050)] = 210969, + [SMALL_STATE(7051)] = 210982, + [SMALL_STATE(7052)] = 210995, + [SMALL_STATE(7053)] = 211008, + [SMALL_STATE(7054)] = 211021, + [SMALL_STATE(7055)] = 211034, + [SMALL_STATE(7056)] = 211047, + [SMALL_STATE(7057)] = 211060, + [SMALL_STATE(7058)] = 211073, + [SMALL_STATE(7059)] = 211086, + [SMALL_STATE(7060)] = 211099, + [SMALL_STATE(7061)] = 211112, + [SMALL_STATE(7062)] = 211125, + [SMALL_STATE(7063)] = 211138, + [SMALL_STATE(7064)] = 211151, + [SMALL_STATE(7065)] = 211164, + [SMALL_STATE(7066)] = 211177, + [SMALL_STATE(7067)] = 211190, + [SMALL_STATE(7068)] = 211203, + [SMALL_STATE(7069)] = 211216, + [SMALL_STATE(7070)] = 211229, + [SMALL_STATE(7071)] = 211242, + [SMALL_STATE(7072)] = 211255, + [SMALL_STATE(7073)] = 211268, + [SMALL_STATE(7074)] = 211281, + [SMALL_STATE(7075)] = 211294, + [SMALL_STATE(7076)] = 211307, + [SMALL_STATE(7077)] = 211320, + [SMALL_STATE(7078)] = 211333, + [SMALL_STATE(7079)] = 211346, + [SMALL_STATE(7080)] = 211359, + [SMALL_STATE(7081)] = 211372, + [SMALL_STATE(7082)] = 211385, + [SMALL_STATE(7083)] = 211398, + [SMALL_STATE(7084)] = 211411, + [SMALL_STATE(7085)] = 211424, + [SMALL_STATE(7086)] = 211437, + [SMALL_STATE(7087)] = 211450, + [SMALL_STATE(7088)] = 211463, + [SMALL_STATE(7089)] = 211476, + [SMALL_STATE(7090)] = 211489, + [SMALL_STATE(7091)] = 211502, + [SMALL_STATE(7092)] = 211515, + [SMALL_STATE(7093)] = 211528, + [SMALL_STATE(7094)] = 211541, + [SMALL_STATE(7095)] = 211554, + [SMALL_STATE(7096)] = 211567, + [SMALL_STATE(7097)] = 211580, + [SMALL_STATE(7098)] = 211593, + [SMALL_STATE(7099)] = 211606, + [SMALL_STATE(7100)] = 211619, + [SMALL_STATE(7101)] = 211632, + [SMALL_STATE(7102)] = 211645, + [SMALL_STATE(7103)] = 211658, + [SMALL_STATE(7104)] = 211671, + [SMALL_STATE(7105)] = 211684, + [SMALL_STATE(7106)] = 211697, + [SMALL_STATE(7107)] = 211710, + [SMALL_STATE(7108)] = 211723, + [SMALL_STATE(7109)] = 211736, + [SMALL_STATE(7110)] = 211749, + [SMALL_STATE(7111)] = 211762, + [SMALL_STATE(7112)] = 211775, + [SMALL_STATE(7113)] = 211788, + [SMALL_STATE(7114)] = 211801, + [SMALL_STATE(7115)] = 211814, + [SMALL_STATE(7116)] = 211827, + [SMALL_STATE(7117)] = 211840, + [SMALL_STATE(7118)] = 211853, + [SMALL_STATE(7119)] = 211866, + [SMALL_STATE(7120)] = 211879, + [SMALL_STATE(7121)] = 211892, + [SMALL_STATE(7122)] = 211905, + [SMALL_STATE(7123)] = 211918, + [SMALL_STATE(7124)] = 211931, + [SMALL_STATE(7125)] = 211944, + [SMALL_STATE(7126)] = 211957, + [SMALL_STATE(7127)] = 211970, + [SMALL_STATE(7128)] = 211983, + [SMALL_STATE(7129)] = 211996, + [SMALL_STATE(7130)] = 212009, + [SMALL_STATE(7131)] = 212022, + [SMALL_STATE(7132)] = 212035, + [SMALL_STATE(7133)] = 212048, + [SMALL_STATE(7134)] = 212061, + [SMALL_STATE(7135)] = 212074, + [SMALL_STATE(7136)] = 212087, + [SMALL_STATE(7137)] = 212100, + [SMALL_STATE(7138)] = 212113, + [SMALL_STATE(7139)] = 212126, + [SMALL_STATE(7140)] = 212139, + [SMALL_STATE(7141)] = 212152, + [SMALL_STATE(7142)] = 212165, + [SMALL_STATE(7143)] = 212178, + [SMALL_STATE(7144)] = 212191, + [SMALL_STATE(7145)] = 212204, + [SMALL_STATE(7146)] = 212217, + [SMALL_STATE(7147)] = 212230, + [SMALL_STATE(7148)] = 212243, + [SMALL_STATE(7149)] = 212256, + [SMALL_STATE(7150)] = 212269, + [SMALL_STATE(7151)] = 212282, + [SMALL_STATE(7152)] = 212295, + [SMALL_STATE(7153)] = 212308, + [SMALL_STATE(7154)] = 212321, + [SMALL_STATE(7155)] = 212334, + [SMALL_STATE(7156)] = 212347, + [SMALL_STATE(7157)] = 212360, + [SMALL_STATE(7158)] = 212373, + [SMALL_STATE(7159)] = 212386, + [SMALL_STATE(7160)] = 212399, + [SMALL_STATE(7161)] = 212412, + [SMALL_STATE(7162)] = 212425, + [SMALL_STATE(7163)] = 212438, + [SMALL_STATE(7164)] = 212451, + [SMALL_STATE(7165)] = 212464, + [SMALL_STATE(7166)] = 212477, + [SMALL_STATE(7167)] = 212490, + [SMALL_STATE(7168)] = 212503, + [SMALL_STATE(7169)] = 212516, + [SMALL_STATE(7170)] = 212529, + [SMALL_STATE(7171)] = 212542, + [SMALL_STATE(7172)] = 212555, + [SMALL_STATE(7173)] = 212568, + [SMALL_STATE(7174)] = 212581, + [SMALL_STATE(7175)] = 212594, + [SMALL_STATE(7176)] = 212607, + [SMALL_STATE(7177)] = 212620, + [SMALL_STATE(7178)] = 212633, + [SMALL_STATE(7179)] = 212646, + [SMALL_STATE(7180)] = 212659, + [SMALL_STATE(7181)] = 212672, + [SMALL_STATE(7182)] = 212685, + [SMALL_STATE(7183)] = 212698, + [SMALL_STATE(7184)] = 212711, + [SMALL_STATE(7185)] = 212724, + [SMALL_STATE(7186)] = 212737, + [SMALL_STATE(7187)] = 212750, + [SMALL_STATE(7188)] = 212763, + [SMALL_STATE(7189)] = 212776, + [SMALL_STATE(7190)] = 212789, + [SMALL_STATE(7191)] = 212802, + [SMALL_STATE(7192)] = 212815, + [SMALL_STATE(7193)] = 212828, + [SMALL_STATE(7194)] = 212841, + [SMALL_STATE(7195)] = 212854, + [SMALL_STATE(7196)] = 212867, + [SMALL_STATE(7197)] = 212880, + [SMALL_STATE(7198)] = 212893, + [SMALL_STATE(7199)] = 212906, + [SMALL_STATE(7200)] = 212919, + [SMALL_STATE(7201)] = 212932, + [SMALL_STATE(7202)] = 212945, + [SMALL_STATE(7203)] = 212958, + [SMALL_STATE(7204)] = 212971, + [SMALL_STATE(7205)] = 212984, + [SMALL_STATE(7206)] = 212997, + [SMALL_STATE(7207)] = 213010, + [SMALL_STATE(7208)] = 213023, + [SMALL_STATE(7209)] = 213036, + [SMALL_STATE(7210)] = 213049, + [SMALL_STATE(7211)] = 213062, + [SMALL_STATE(7212)] = 213075, + [SMALL_STATE(7213)] = 213088, + [SMALL_STATE(7214)] = 213101, + [SMALL_STATE(7215)] = 213114, + [SMALL_STATE(7216)] = 213127, + [SMALL_STATE(7217)] = 213140, + [SMALL_STATE(7218)] = 213153, + [SMALL_STATE(7219)] = 213166, + [SMALL_STATE(7220)] = 213179, + [SMALL_STATE(7221)] = 213192, + [SMALL_STATE(7222)] = 213205, + [SMALL_STATE(7223)] = 213218, + [SMALL_STATE(7224)] = 213231, + [SMALL_STATE(7225)] = 213244, + [SMALL_STATE(7226)] = 213257, + [SMALL_STATE(7227)] = 213270, + [SMALL_STATE(7228)] = 213283, + [SMALL_STATE(7229)] = 213296, + [SMALL_STATE(7230)] = 213309, + [SMALL_STATE(7231)] = 213322, + [SMALL_STATE(7232)] = 213335, + [SMALL_STATE(7233)] = 213348, + [SMALL_STATE(7234)] = 213361, + [SMALL_STATE(7235)] = 213374, + [SMALL_STATE(7236)] = 213387, + [SMALL_STATE(7237)] = 213400, + [SMALL_STATE(7238)] = 213413, + [SMALL_STATE(7239)] = 213426, + [SMALL_STATE(7240)] = 213439, + [SMALL_STATE(7241)] = 213452, + [SMALL_STATE(7242)] = 213465, + [SMALL_STATE(7243)] = 213478, + [SMALL_STATE(7244)] = 213491, + [SMALL_STATE(7245)] = 213504, + [SMALL_STATE(7246)] = 213517, + [SMALL_STATE(7247)] = 213530, + [SMALL_STATE(7248)] = 213543, + [SMALL_STATE(7249)] = 213556, + [SMALL_STATE(7250)] = 213569, + [SMALL_STATE(7251)] = 213582, + [SMALL_STATE(7252)] = 213595, + [SMALL_STATE(7253)] = 213608, + [SMALL_STATE(7254)] = 213621, + [SMALL_STATE(7255)] = 213634, + [SMALL_STATE(7256)] = 213647, + [SMALL_STATE(7257)] = 213660, + [SMALL_STATE(7258)] = 213673, + [SMALL_STATE(7259)] = 213686, + [SMALL_STATE(7260)] = 213699, + [SMALL_STATE(7261)] = 213712, + [SMALL_STATE(7262)] = 213725, + [SMALL_STATE(7263)] = 213738, + [SMALL_STATE(7264)] = 213751, + [SMALL_STATE(7265)] = 213764, + [SMALL_STATE(7266)] = 213777, + [SMALL_STATE(7267)] = 213790, + [SMALL_STATE(7268)] = 213803, + [SMALL_STATE(7269)] = 213816, + [SMALL_STATE(7270)] = 213829, + [SMALL_STATE(7271)] = 213842, + [SMALL_STATE(7272)] = 213855, + [SMALL_STATE(7273)] = 213868, + [SMALL_STATE(7274)] = 213881, + [SMALL_STATE(7275)] = 213894, + [SMALL_STATE(7276)] = 213907, + [SMALL_STATE(7277)] = 213920, + [SMALL_STATE(7278)] = 213933, + [SMALL_STATE(7279)] = 213946, + [SMALL_STATE(7280)] = 213959, + [SMALL_STATE(7281)] = 213972, + [SMALL_STATE(7282)] = 213985, + [SMALL_STATE(7283)] = 213998, + [SMALL_STATE(7284)] = 214011, + [SMALL_STATE(7285)] = 214024, + [SMALL_STATE(7286)] = 214037, + [SMALL_STATE(7287)] = 214050, + [SMALL_STATE(7288)] = 214063, + [SMALL_STATE(7289)] = 214076, + [SMALL_STATE(7290)] = 214089, + [SMALL_STATE(7291)] = 214102, + [SMALL_STATE(7292)] = 214115, + [SMALL_STATE(7293)] = 214128, + [SMALL_STATE(7294)] = 214141, + [SMALL_STATE(7295)] = 214154, + [SMALL_STATE(7296)] = 214167, + [SMALL_STATE(7297)] = 214180, + [SMALL_STATE(7298)] = 214193, + [SMALL_STATE(7299)] = 214206, + [SMALL_STATE(7300)] = 214219, + [SMALL_STATE(7301)] = 214232, + [SMALL_STATE(7302)] = 214245, + [SMALL_STATE(7303)] = 214258, + [SMALL_STATE(7304)] = 214271, + [SMALL_STATE(7305)] = 214284, + [SMALL_STATE(7306)] = 214297, + [SMALL_STATE(7307)] = 214310, + [SMALL_STATE(7308)] = 214323, + [SMALL_STATE(7309)] = 214336, + [SMALL_STATE(7310)] = 214349, + [SMALL_STATE(7311)] = 214362, + [SMALL_STATE(7312)] = 214375, + [SMALL_STATE(7313)] = 214388, + [SMALL_STATE(7314)] = 214401, + [SMALL_STATE(7315)] = 214414, + [SMALL_STATE(7316)] = 214427, + [SMALL_STATE(7317)] = 214440, + [SMALL_STATE(7318)] = 214453, + [SMALL_STATE(7319)] = 214466, + [SMALL_STATE(7320)] = 214479, + [SMALL_STATE(7321)] = 214492, + [SMALL_STATE(7322)] = 214505, + [SMALL_STATE(7323)] = 214518, + [SMALL_STATE(7324)] = 214531, + [SMALL_STATE(7325)] = 214544, + [SMALL_STATE(7326)] = 214557, + [SMALL_STATE(7327)] = 214570, + [SMALL_STATE(7328)] = 214583, + [SMALL_STATE(7329)] = 214596, + [SMALL_STATE(7330)] = 214609, + [SMALL_STATE(7331)] = 214622, + [SMALL_STATE(7332)] = 214635, + [SMALL_STATE(7333)] = 214648, + [SMALL_STATE(7334)] = 214661, + [SMALL_STATE(7335)] = 214674, + [SMALL_STATE(7336)] = 214687, + [SMALL_STATE(7337)] = 214700, + [SMALL_STATE(7338)] = 214713, + [SMALL_STATE(7339)] = 214726, + [SMALL_STATE(7340)] = 214739, + [SMALL_STATE(7341)] = 214752, + [SMALL_STATE(7342)] = 214765, + [SMALL_STATE(7343)] = 214778, + [SMALL_STATE(7344)] = 214791, + [SMALL_STATE(7345)] = 214804, + [SMALL_STATE(7346)] = 214817, + [SMALL_STATE(7347)] = 214830, + [SMALL_STATE(7348)] = 214843, + [SMALL_STATE(7349)] = 214856, + [SMALL_STATE(7350)] = 214869, + [SMALL_STATE(7351)] = 214882, + [SMALL_STATE(7352)] = 214895, + [SMALL_STATE(7353)] = 214908, + [SMALL_STATE(7354)] = 214921, + [SMALL_STATE(7355)] = 214934, + [SMALL_STATE(7356)] = 214947, + [SMALL_STATE(7357)] = 214960, + [SMALL_STATE(7358)] = 214973, + [SMALL_STATE(7359)] = 214986, + [SMALL_STATE(7360)] = 214999, + [SMALL_STATE(7361)] = 215012, + [SMALL_STATE(7362)] = 215025, + [SMALL_STATE(7363)] = 215038, + [SMALL_STATE(7364)] = 215051, + [SMALL_STATE(7365)] = 215064, + [SMALL_STATE(7366)] = 215077, + [SMALL_STATE(7367)] = 215090, + [SMALL_STATE(7368)] = 215103, + [SMALL_STATE(7369)] = 215116, + [SMALL_STATE(7370)] = 215129, + [SMALL_STATE(7371)] = 215142, + [SMALL_STATE(7372)] = 215155, + [SMALL_STATE(7373)] = 215168, + [SMALL_STATE(7374)] = 215181, + [SMALL_STATE(7375)] = 215194, + [SMALL_STATE(7376)] = 215207, + [SMALL_STATE(7377)] = 215220, + [SMALL_STATE(7378)] = 215233, + [SMALL_STATE(7379)] = 215246, + [SMALL_STATE(7380)] = 215259, + [SMALL_STATE(7381)] = 215272, + [SMALL_STATE(7382)] = 215285, + [SMALL_STATE(7383)] = 215298, + [SMALL_STATE(7384)] = 215311, + [SMALL_STATE(7385)] = 215324, + [SMALL_STATE(7386)] = 215337, + [SMALL_STATE(7387)] = 215350, + [SMALL_STATE(7388)] = 215363, + [SMALL_STATE(7389)] = 215376, + [SMALL_STATE(7390)] = 215389, + [SMALL_STATE(7391)] = 215402, + [SMALL_STATE(7392)] = 215415, + [SMALL_STATE(7393)] = 215428, + [SMALL_STATE(7394)] = 215441, + [SMALL_STATE(7395)] = 215454, + [SMALL_STATE(7396)] = 215467, + [SMALL_STATE(7397)] = 215480, + [SMALL_STATE(7398)] = 215493, + [SMALL_STATE(7399)] = 215506, + [SMALL_STATE(7400)] = 215519, + [SMALL_STATE(7401)] = 215532, + [SMALL_STATE(7402)] = 215545, + [SMALL_STATE(7403)] = 215558, + [SMALL_STATE(7404)] = 215571, + [SMALL_STATE(7405)] = 215584, + [SMALL_STATE(7406)] = 215597, + [SMALL_STATE(7407)] = 215610, + [SMALL_STATE(7408)] = 215623, + [SMALL_STATE(7409)] = 215636, + [SMALL_STATE(7410)] = 215649, + [SMALL_STATE(7411)] = 215662, + [SMALL_STATE(7412)] = 215675, + [SMALL_STATE(7413)] = 215688, + [SMALL_STATE(7414)] = 215701, + [SMALL_STATE(7415)] = 215714, + [SMALL_STATE(7416)] = 215727, + [SMALL_STATE(7417)] = 215740, + [SMALL_STATE(7418)] = 215753, + [SMALL_STATE(7419)] = 215766, + [SMALL_STATE(7420)] = 215779, + [SMALL_STATE(7421)] = 215792, + [SMALL_STATE(7422)] = 215805, + [SMALL_STATE(7423)] = 215818, + [SMALL_STATE(7424)] = 215831, + [SMALL_STATE(7425)] = 215844, + [SMALL_STATE(7426)] = 215857, + [SMALL_STATE(7427)] = 215870, + [SMALL_STATE(7428)] = 215883, + [SMALL_STATE(7429)] = 215896, + [SMALL_STATE(7430)] = 215909, + [SMALL_STATE(7431)] = 215922, + [SMALL_STATE(7432)] = 215935, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), [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(2033), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(780), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(755), [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(656), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7231), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(643), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(664), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(575), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7233), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(701), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(571), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6448), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4478), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4346), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5694), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6452), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6471), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5601), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5600), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4450), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7402), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(629), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4833), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5611), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7340), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6943), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2012), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3747), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6750), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6871), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(730), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6474), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5704), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6481), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4147), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7408), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3010), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7346), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6308), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4615), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4352), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6309), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5605), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6321), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5607), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7397), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7395), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3744), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6310), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4365), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6314), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6335), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5609), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4405), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7404), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7403), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(114), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(262), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(283), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(260), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1678), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4748), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1665), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4665), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 31), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(490), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(526), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(649), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(601), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(666), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2122] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4065), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [2138] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3808), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 74), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 28), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 28), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 48), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 48), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [2132] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3805), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2148] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4081), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 28), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 28), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(114), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3672), - [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(274), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(622), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [2819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5684), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3692), + [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(272), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(804), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [2819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5681), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(274), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5684), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(272), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5681), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 268), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 239), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 73), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 32), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 33), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 38), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 44), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 72), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 47), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 47), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 32), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 26), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 36), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 39), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 48), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 36), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 263), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 24), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 268), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 239), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 32), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 33), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 44), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 47), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 32), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 24), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 239), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 263), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), @@ -391005,3926 +391185,3930 @@ static const TSParseActionEntry ts_parse_actions[] = { [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 48), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 36), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 32), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 73), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 72), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 47), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 47), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 44), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 39), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 38), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 36), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 33), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 32), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 26), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 24), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 32), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 47), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 44), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 33), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 32), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 24), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 267), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 267), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 74), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 74), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(609), - [4293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7103), - [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1707), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6858), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7024), - [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1710), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(797), - [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), - [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT(4137), - [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5748), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(718), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(295), - [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 31), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [4401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 74), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 74), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), + [4303] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), + [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7024), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1710), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7109), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1713), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6862), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 31), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(775), + [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(300), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(752), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5747), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT(4135), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [4411] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4434] = {.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, 31), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(488), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 59), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(682), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2294), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2491), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3324), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2885), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2693), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4104), - [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3677), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3533), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(565), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5374), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5375), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3113), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(7131), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4102), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(6212), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2636), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2901), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3326), - [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2663), - [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3398), - [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3352), - [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3607), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4907] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 15), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 66), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 66), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 19), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 19), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2294), - [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3324), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 65), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 65), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 59), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4435] = {.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, 31), + [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(525), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 59), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), + [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(820), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2296), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2716), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2572), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3310), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2622), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2817), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4117), + [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3660), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3526), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(565), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5379), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5380), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3181), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(7137), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4056), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(6213), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2591), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2962), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3361), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2692), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3386), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3360), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3616), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4909] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 15), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 16), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 16), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2296), + [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3310), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2693), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), - [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 67), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 67), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 17), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 17), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 65), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 65), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), - [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 62), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 62), - [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 262), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 262), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), - [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), - [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 289), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 289), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 16), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 16), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2491), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), - [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2885), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), - [5413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 27), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 25), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 69), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 70), - [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 71), - [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), - [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), - [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 30), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(218), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 25), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(217), - [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(215), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 69), - [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), REDUCE(sym_assignment_expression, 3, 0, 69), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), - [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 27), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 71), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 20), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 20), - [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 18), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 18), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(218), - [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), - [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(217), - [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(218), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), - [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(672), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), - [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(217), - [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), - [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), - [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), - [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), - [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [5813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 70), - [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), - [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 78), - [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 78), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(217), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 29), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 29), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6924), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), - [5861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), - [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(218), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), - [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 80), - [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 80), - [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), - [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(219), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 49), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(219), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(219), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 30), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 59), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2622), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 67), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 67), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 65), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 65), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), + [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2817), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2572), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), + [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 17), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 17), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 62), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 62), + [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 65), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 65), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2716), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 69), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 71), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(215), + [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(683), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(223), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(218), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 25), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(218), + [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(218), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 25), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(223), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 69), + [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), REDUCE(sym_assignment_expression, 3, 0, 69), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), + [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 30), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 29), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 29), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(218), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(223), + [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6929), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(223), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 18), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 18), + [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 78), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 78), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(222), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 69), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(222), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(222), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 49), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(219), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 69), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), - [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), - [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(216), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6025] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 30), + [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(222), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(216), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6014] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [6018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), [6031] = {.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), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [6037] = {.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), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [6116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(220), - [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(220), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), - [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 40), - [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 40), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 40), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [6158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(220), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [6172] = {.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, 15), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [6182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(220), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 43), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 43), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6384] = {.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), - [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(221), - [6412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(221), - [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(221), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), - [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(222), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), - [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(748), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(222), - [6616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(222), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(222), - [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(214), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(221), - [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(223), - [6681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(223), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(223), - [6697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(223), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [6738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), - [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [6761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), - [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), - [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [6793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), - [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 265), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 265), - [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [6035] = {.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), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(221), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 40), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 40), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(221), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6176] = {.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, 15), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(221), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 40), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(221), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(219), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(219), + [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(219), + [6371] = {.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), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [6377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(214), + [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(839), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [6495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(219), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(220), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(220), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(220), + [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(220), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [6587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [6609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(217), + [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(217), + [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(217), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [6718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(217), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [6765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 266), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 266), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), - [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 290), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 290), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 325), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 325), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), - [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 310), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 310), - [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 309), - [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 309), - [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 291), - [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 291), - [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 266), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 266), - [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), - [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(3518), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), - [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3524), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 290), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 290), + [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(3531), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 265), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 265), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3537), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 310), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 310), + [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 325), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 325), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 291), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 291), + [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 309), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 309), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [6937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(6212), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(1789), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 249), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), - [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6858), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 249), - [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), - [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), - [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 30), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 59), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [7903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 308), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), - [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 59), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(718), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 327), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 241), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 318), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 313), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 281), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 240), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 292), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 293), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 273), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 274), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), - [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5611), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 21), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [8479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6951), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [8484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [8513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [8518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 312), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 311), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(6213), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(1819), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 249), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 249), + [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6862), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 30), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [7823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 59), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 274), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 308), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 240), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 241), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 327), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 281), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [8073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 273), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 59), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 292), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 293), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 313), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 318), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(752), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6953), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [8229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5613), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 21), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [8342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), + [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 312), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 311), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 298), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(797), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 56), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1718), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(775), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 56), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1725), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1719), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 35), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1799), - [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1724), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), - [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 298), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), - [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 296), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), - [8803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1806), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 295), - [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 280), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1830), - [8837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1723), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 277), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), - [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 243), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 248), - [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1873), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1719), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 35), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1834), + [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1717), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [8756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 298), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 296), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 295), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1807), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 280), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 277), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1873), + [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1722), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [8862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 243), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 248), + [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1836), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 243), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 257), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 269), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 272), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), - [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 270), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), - [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [9079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(5460), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [9104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), - [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(481), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 243), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 257), + [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 269), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 272), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 270), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [9079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(5462), + [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(516), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 78), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4457), - [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [9215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 50), - [9238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5682), - [9243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5672), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(609), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), - [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 320), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), - [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 314), - [9457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(682), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [9474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3222), - [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [9675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6505), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), + [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 50), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [9246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5675), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [9255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [9308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(603), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 320), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 314), + [9465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(820), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), + [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6500), [9678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 32), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 32), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(281), [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 34), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), - [9861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), - [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [9877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4367), - [9880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4228), - [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), - [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 292), - [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 297), - [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 50), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [9935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), - [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), - [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 34), + [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), + [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [9870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), + [9873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [9890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 292), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 297), + [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 50), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [10007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(3623), - [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), - [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 242), + [9985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [9995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(3624), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 242), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 240), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 241), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [10115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 275), - [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 276), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), - [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), - [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 273), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 274), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 326), - [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 329), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 332), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [10237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [10353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 41), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), - [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 240), + [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 241), + [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [10106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 275), + [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 276), + [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), + [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 273), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 274), + [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 326), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 329), + [10155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 332), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [10241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [10273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [10349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 41), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [10485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 34), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), [10497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), [10499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [10547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [10583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [10589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [10551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [10631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [10647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 35), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 35), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [10651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), - [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [10689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [10711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), - [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), - [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [10719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [11107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [11507] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11519] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers {